This commit is contained in:
friendica 2012-09-30 02:08:56 -07:00
commit 84199e6e71
58 changed files with 29249 additions and 8519 deletions

View file

@ -350,6 +350,8 @@ if(! class_exists('App')) {
public $plugins;
public $apps = array();
public $identities;
public $is_mobile;
public $is_tablet;
public $nav_sel;
@ -491,6 +493,14 @@ if(! class_exists('App')) {
if($this->pager['start'] < 0)
$this->pager['start'] = 0;
$this->pager['total'] = 0;
/**
* Detect mobile devices
*/
$mobile_detect = new Mobile_Detect();
$this->is_mobile = $mobile_detect->isMobile();
$this->is_tablet = $mobile_detect->isTablet();
}
function get_baseurl($ssl = false) {
@ -1288,14 +1298,14 @@ if(! function_exists('get_birthdays')) {
$a = get_app();
$o = '';
if(! local_user())
if(! local_user() || $a->is_mobile || $a->is_tablet)
return $o;
$mobile_detect = new Mobile_Detect();
$is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
// $mobile_detect = new Mobile_Detect();
// $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
if($is_mobile)
return $o;
// if($is_mobile)
// return $o;
$bd_format = t('g A l F d') ; // 8 AM Friday January 18
$bd_short = t('F d');
@ -1373,15 +1383,15 @@ if(! function_exists('get_events')) {
$a = get_app();
if(! local_user())
if(! local_user() || $a->is_mobile || $a->is_tablet)
return $o;
$mobile_detect = new Mobile_Detect();
$is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
// $mobile_detect = new Mobile_Detect();
// $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
if($is_mobile)
return $o;
// if($is_mobile)
// return $o;
$bd_format = t('g A l F d') ; // 8 AM Friday January 18
$bd_short = t('F d');
@ -1507,8 +1517,9 @@ if(! function_exists('current_theme')) {
$a = get_app();
$mobile_detect = new Mobile_Detect();
$is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
// $mobile_detect = new Mobile_Detect();
// $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
$is_mobile = $a->is_mobile || $a->is_tablet;
if($is_mobile) {
if(isset($_SESSION['show-mobile']) && !$_SESSION['show-mobile']) {

View file

@ -458,10 +458,10 @@ function probe_url($url, $mode = PROBE_NORMAL) {
$poll = 'email ' . random_string();
$priority = 0;
$x = email_msg_meta($mbox,$msgs[0]);
if(stristr($x->from,$orig_url))
$adr = imap_rfc822_parse_adrlist($x->from,'');
elseif(stristr($x->to,$orig_url))
$adr = imap_rfc822_parse_adrlist($x->to,'');
if(stristr($x[0]->from,$orig_url))
$adr = imap_rfc822_parse_adrlist($x[0]->from,'');
elseif(stristr($x[0]->to,$orig_url))
$adr = imap_rfc822_parse_adrlist($x[0]->to,'');
if(isset($adr)) {
foreach($adr as $feadr) {
if((strcasecmp($feadr->mailbox,$name) == 0)
@ -554,6 +554,13 @@ function probe_url($url, $mode = PROBE_NORMAL) {
logger('probe_url: scrape_vcard: ' . print_r($vcard,true), LOGGER_DATA);
}
if($diaspora && $addr) {
// Diaspora returns the name as the nick. As the nick will never be updated,
// let's use the Diaspora nickname (the first part of the handle) as the nick instead
$addr_parts = explode('@', $addr);
$vcard['nick'] = $addr_parts[0];
}
if($twitter) {
logger('twitter: setup');
$tid = basename($url);

View file

@ -141,6 +141,17 @@ function diaspora_get_contact_by_handle($uid,$handle) {
);
if($r && count($r))
return $r[0];
$handle_parts = explode("@", $handle);
$nurl_sql = '%%://' . $handle_parts[1] . '%%/profile/' . $handle_parts[0];
$r = q("SELECT * FROM contact WHERE network = '%s' AND uid = %d AND nurl LIKE '%s' LIMIT 1",
dbesc(NETWORK_DFRN),
intval($uid),
dbesc($nurl_sql)
);
if($r && count($r))
return $r[0];
return false;
}
@ -1949,7 +1960,7 @@ function diaspora_signed_retraction($importer,$xml,$msg) {
$contact = diaspora_get_contact_by_handle($importer['uid'],$diaspora_handle);
if(! $contact) {
logger('diaspora_signed_retraction: no contact');
logger('diaspora_signed_retraction: no contact ' . $diaspora_handle . ' for ' . $importer['uid']);
return;
}

View file

@ -48,8 +48,8 @@ function construct_mailbox_name($mailacct) {
function email_msg_meta($mbox,$uid) {
$ret = (($mbox && $uid) ? @imap_fetch_overview($mbox,$uid,FT_UID) : array(array()));
return ((count($ret)) ? $ret[0] : array());
$ret = (($mbox && $uid) ? @imap_fetch_overview($mbox,$uid,FT_UID) : array(array())); // POSSIBLE CLEANUP --> array(array()) is probably redundant now
return ((count($ret)) ? $ret : array());
}
function email_msg_headers($mbox,$uid) {

View file

@ -40,7 +40,7 @@ function group_add($uid,$name) {
function group_rmv($uid,$name) {
$ret = false;
if(x($uid) && x($name)) {
$r = q("SELECT * FROM `group` WHERE `uid` = %d AND `name` = '%s' LIMIT 1",
$r = q("SELECT id FROM `group` WHERE `uid` = %d AND `name` = '%s' LIMIT 1",
intval($uid),
dbesc($name)
);
@ -49,6 +49,37 @@ function group_rmv($uid,$name) {
if(! $group_id)
return false;
// remove group from default posting lists
$r = q("SELECT def_gid, allow_gid, deny_gid FROM user WHERE uid = %d LIMIT 1",
intval($uid)
);
if($r) {
$user_info = $r[0];
$change = false;
if($user_info['def_gid'] == $group_id) {
$user_info['def_gid'] = 0;
$change = true;
}
if(strpos($user_info['allow_gid'], '<' . $group_id . '>') !== false) {
$user_info['allow_gid'] = str_replace('<' . $group_id . '>', '', $user_info['allow_gid']);
$change = true;
}
if(strpos($user_info['deny_gid'], '<' . $group_id . '>') !== false) {
$user_info['deny_gid'] = str_replace('<' . $group_id . '>', '', $user_info['deny_gid']);
$change = true;
}
if($change) {
q("UPDATE user SET def_gid = %d, allow_gid = '%s', deny_gid = '%s' WHERE uid = %d",
intval($user_info['def_gid']),
dbesc($user_info['allow_gid']),
dbesc($user_info['deny_gid']),
intval($uid)
);
}
}
// remove all members
$r = q("DELETE FROM `group_member` WHERE `uid` = %d AND `gid` = %d ",
intval($uid),
@ -103,7 +134,7 @@ function group_add_member($uid,$name,$member,$gid = 0) {
if((! $gid) || (! $uid) || (! $member))
return false;
$r = q("SELECT * FROM `group_member` WHERE `uid` = %d AND `id` = %d AND `contact-id` = %d LIMIT 1",
$r = q("SELECT * FROM `group_member` WHERE `uid` = %d AND `gid` = %d AND `contact-id` = %d LIMIT 1",
intval($uid),
intval($gid),
intval($member)

View file

@ -291,36 +291,17 @@ function onepoll_run($argv, $argc){
if(count($msgs)) {
logger("Mail: Parsing ".count($msgs)." mails for ".$mailconf[0]['user'], LOGGER_DEBUG);
foreach($msgs as $msg_uid) {
$metas = email_msg_meta($mbox,implode(',',$msgs));
$msgs = array_combine($msgs, $metas);
foreach($msgs as $msg_uid => $meta) {
logger("Mail: Parsing mail ".$msg_uid, LOGGER_DATA);
$datarray = array();
$meta = email_msg_meta($mbox,$msg_uid);
$headers = email_msg_headers($mbox,$msg_uid);
// $meta = email_msg_meta($mbox,$msg_uid);
// $headers = email_msg_headers($mbox,$msg_uid);
// look for a 'references' header and try and match with a parent item we have locally.
$raw_refs = ((x($headers,'references')) ? str_replace("\t",'',$headers['references']) : '');
$datarray['uri'] = msgid2iri(trim($meta->message_id,'<>'));
if($raw_refs) {
$refs_arr = explode(' ', $raw_refs);
if(count($refs_arr)) {
for($x = 0; $x < count($refs_arr); $x ++)
$refs_arr[$x] = "'" . msgid2iri(str_replace(array('<','>',' '),array('','',''),dbesc($refs_arr[$x]))) . "'";
}
$qstr = implode(',',$refs_arr);
$r = q("SELECT `uri` , `parent-uri` FROM `item` WHERE `uri` IN ( $qstr ) AND `uid` = %d LIMIT 1",
intval($importer_uid)
);
if(count($r))
$datarray['parent-uri'] = $r[0]['uri'];
}
if(! x($datarray,'parent-uri'))
$datarray['parent-uri'] = $datarray['uri'];
// Have we seen it before?
$r = q("SELECT * FROM `item` WHERE `uid` = %d AND `uri` = '%s' LIMIT 1",
intval($importer_uid),
@ -328,15 +309,16 @@ function onepoll_run($argv, $argc){
);
if(count($r)) {
// logger("Mail: Seen before ".$msg_uid);
logger("Mail: Seen before ".$msg_uid." for ".$mailconf[0]['user']);
if($meta->deleted && ! $r[0]['deleted']) {
q("UPDATE `item` SET `deleted` = 1, `changed` = '%s' WHERE `id` = %d LIMIT 1",
dbesc(datetime_convert()),
intval($r[0]['id'])
);
}
switch ($mailconf[0]['action']) {
/*switch ($mailconf[0]['action']) {
case 0:
logger("Mail: Seen before ".$msg_uid." for ".$mailconf[0]['user'].". Doing nothing.", LOGGER_DEBUG);
break;
case 1:
logger("Mail: Deleting ".$msg_uid." for ".$mailconf[0]['user']);
@ -352,10 +334,38 @@ function onepoll_run($argv, $argc){
if ($mailconf[0]['movetofolder'] != "")
imap_mail_move($mbox, $msg_uid, $mailconf[0]['movetofolder'], FT_UID);
break;
}
}*/
continue;
}
// look for a 'references' or an 'in-reply-to' header and try to match with a parent item we have locally.
// $raw_refs = ((x($headers,'references')) ? str_replace("\t",'',$headers['references']) : '');
$raw_refs = ((property_exists($meta,'references')) ? str_replace("\t",'',$meta->references) : '');
if(! trim($raw_refs))
$raw_refs = ((property_exists($meta,'in_reply_to')) ? str_replace("\t",'',$meta->in_reply_to) : '');
$raw_refs = trim($raw_refs); // Don't allow a blank reference in $refs_arr
if($raw_refs) {
$refs_arr = explode(' ', $raw_refs);
if(count($refs_arr)) {
for($x = 0; $x < count($refs_arr); $x ++)
$refs_arr[$x] = "'" . msgid2iri(str_replace(array('<','>',' '),array('','',''),dbesc($refs_arr[$x]))) . "'";
}
$qstr = implode(',',$refs_arr);
$r = q("SELECT `uri` , `parent-uri` FROM `item` WHERE `uri` IN ( $qstr ) AND `uid` = %d LIMIT 1",
intval($importer_uid)
);
if(count($r))
$datarray['parent-uri'] = $r[0]['parent-uri']; // Set the parent as the top-level item
// $datarray['parent-uri'] = $r[0]['uri'];
}
if(! x($datarray,'parent-uri'))
$datarray['parent-uri'] = $datarray['uri'];
// Decoding the header
$subject = imap_mime_header_decode($meta->subject);
$datarray['title'] = "";
@ -421,6 +431,7 @@ function onepoll_run($argv, $argc){
);
switch ($mailconf[0]['action']) {
case 0:
logger("Mail: Seen before ".$msg_uid." for ".$mailconf[0]['user'].". Doing nothing.", LOGGER_DEBUG);
break;
case 1:
logger("Mail: Deleting ".$msg_uid." for ".$mailconf[0]['user']);

View file

@ -214,7 +214,7 @@ function permissions_sql($owner_id,$remote_verified = false,$groups = null) {
$gs .= '|<' . intval($g) . '>';
}
$sql = sprintf(
/*$sql = sprintf(
" AND ( allow_cid = '' OR allow_cid REGEXP '<%d>' )
AND ( deny_cid = '' OR NOT deny_cid REGEXP '<%d>' )
AND ( allow_gid = '' OR allow_gid REGEXP '%s' )
@ -224,6 +224,16 @@ function permissions_sql($owner_id,$remote_verified = false,$groups = null) {
intval($remote_user),
dbesc($gs),
dbesc($gs)
);*/
$sql = sprintf(
" AND ( NOT (deny_cid REGEXP '<%d>' OR deny_gid REGEXP '%s')
AND ( allow_cid REGEXP '<%d>' OR allow_gid REGEXP '%s' OR ( allow_cid = '' AND allow_gid = '') )
)
",
intval($remote_user),
dbesc($gs),
intval($remote_user),
dbesc($gs)
);
}
}

View file

@ -366,6 +366,19 @@ if($a->module != 'install') {
$a->page['htmlhead'] = replace_macros($a->page['htmlhead'], array('$stylesheet' => current_theme_url()));
if($a->is_mobile || $a->is_tablet) {
if(isset($_SESSION['show-mobile']) && !$_SESSION['show-mobile']) {
$link = $a->get_baseurl() . '/toggle_mobile?address=' . curPageURL();
}
else {
$link = $a->get_baseurl() . '/toggle_mobile?off=1&address=' . curPageURL();
}
$a->page['footer'] = replace_macros(get_markup_template("toggle_mobile_footer.tpl"), array(
'$toggle_link' => $link,
'$toggle_text' => t('toggle mobile')
));
}
$page = $a->page;
$profile = $a->profile;

View file

@ -994,7 +994,25 @@ function handle_tag($a, &$body, &$inform, &$str_tags, $profile_uid, $tag) {
intval($tagcid),
intval($profile_uid)
);
} elseif(strstr($name,'_') || strstr($name,' ')) { //no id
else {
$newname = str_replace('_',' ',$name);
//select someone from this user's contacts by name
$r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `uid` = %d LIMIT 1",
dbesc($newname),
intval($profile_uid)
);
if(! $r) {
//select someone by attag or nick and the name passed in
$r = q("SELECT * FROM `contact` WHERE `attag` = '%s' OR `nick` = '%s' AND `uid` = %d ORDER BY `attag` DESC LIMIT 1",
dbesc($name),
dbesc($name),
intval($profile_uid)
);
}
}
/* } elseif(strstr($name,'_') || strstr($name,' ')) { //no id
//get the real name
$newname = str_replace('_',' ',$name);
//select someone from this user's contacts by name
@ -1009,7 +1027,7 @@ function handle_tag($a, &$body, &$inform, &$str_tags, $profile_uid, $tag) {
dbesc($name),
intval($profile_uid)
);
}
}*/
//$r is set, if someone could be selected
if(count($r)) {
$profile = $r[0]['url'];

View file

@ -28,11 +28,6 @@ function lockview_content(&$a) {
killme();
$allowed_users = expand_acl($item['allow_cid']);
$allowed_groups = expand_acl($item['allow_gid']);
$deny_users = expand_acl($item['deny_cid']);
$deny_groups = expand_acl($item['deny_gid']);
if(($item['private'] == 1) && (! strlen($item['allow_cid'])) && (! strlen($item['allow_gid']))
&& (! strlen($item['deny_cid'])) && (! strlen($item['deny_gid']))) {
@ -40,6 +35,11 @@ function lockview_content(&$a) {
killme();
}
$allowed_users = expand_acl($item['allow_cid']);
$allowed_groups = expand_acl($item['allow_gid']);
$deny_users = expand_acl($item['deny_cid']);
$deny_groups = expand_acl($item['deny_gid']);
$o = t('Visible to:') . '<br />';
$l = array();

View file

@ -18,13 +18,92 @@ function network_init(&$a) {
}
}
// convert query string to array and remove first element (wich is friendica args)
// convert query string to array and remove first element (which is friendica args)
$query_array = array();
parse_str($a->query_string, $query_array);
array_shift($query_array);
// fetch last used tab and redirect if needed
$sel_tabs = network_query_get_sel_tab($a);
// fetch last used network view and redirect if needed
if(! $is_a_date_query) {
$sel_tabs = network_query_get_sel_tab($a);
$sel_nets = network_query_get_sel_net();
$sel_groups = network_query_get_sel_group($a);
$last_sel_tabs = get_pconfig(local_user(), 'network.view','tab.selected');
$last_sel_nets = get_pconfig(local_user(), 'network.view', 'net.selected');
$last_sel_groups = get_pconfig(local_user(), 'network.view', 'group.selected');
$remember_tab = ($sel_tabs[0] === 'active' && is_array($last_sel_tabs) && $last_sel_tabs[0] !== 'active');
$remember_net = ($sel_nets === false && $last_sel_nets && $last_sel_nets !== 'all');
$remember_group = ($sel_groups === false && $last_sel_groups && $last_sel_groups != 0);
$net_baseurl = '/network';
$net_args = array();
if($remember_group) {
$net_baseurl .= '/' . $last_sel_groups; // Note that the group number must come before the "/new" tab selection
}
else if($sel_groups !== false) {
$net_baseurl .= '/' . $sel_groups;
}
if($remember_tab) {
// redirect if current selected tab is '/network' and
// last selected tab is _not_ '/network?f=&order=comment'.
// and this isn't a date query
$tab_baseurls = array(
'', //all
'', //postord
'', //conv
'/new', //new
'', //starred
'', //bookmarked
'', //spam
);
$tab_args = array(
'f=&order=comment', //all
'f=&order=post', //postord
'f=&conv=1', //conv
'', //new
'f=&star=1', //starred
'f=&bmark=1', //bookmarked
'f=&spam=1', //spam
);
$k = array_search('active', $last_sel_tabs);
$net_baseurl .= $tab_baseurls[$k];
// parse out tab queries
$dest_qa = array();
$dest_qs = $tab_args[$k];
parse_str( $dest_qs, $dest_qa);
$net_args = array_merge($net_args, $dest_qa);
}
else if($sel_tabs[4] === 'active') {
// The '/new' tab is selected
$net_baseurl .= '/new';
}
if($remember_net) {
$net_args['nets'] = $last_sel_nets;
}
if($remember_tab || $remember_net || $remember_group) {
$net_args = array_merge($query_array, $net_args);
$net_queries = build_querystring($net_args);
// groups filter is in form of "network/nnn". Add it to $dest_url, if it's possible
//if ($a->argc==2 && is_numeric($a->argv[1]) && strpos($net_baseurl, "/",1)===false){
// $net_baseurl .= "/".$a->argv[1];
//}
$redir_url = ($net_queries ? $net_baseurl."?".$net_queries : $net_baseurl);
goaway($a->get_baseurl() . $redir_url);
}
}
/* $sel_tabs = network_query_get_sel_tab($a);
$last_sel_tabs = get_pconfig(local_user(), 'network.view','tab.selected');
if (is_array($last_sel_tabs)){
$tab_urls = array(
@ -58,9 +137,14 @@ function network_init(&$a) {
goaway($a->get_baseurl() . $dest_url."?".$dest_qs);
}
}
}*/
if(x($_GET['nets']) && $_GET['nets'] === 'all')
unset($_GET['nets']);
$group_id = (($a->argc > 1 && intval($a->argv[1])) ? intval($a->argv[1]) : 0);
set_pconfig(local_user(), 'network.view', 'group.selected', $group_id);
require_once('include/group.php');
require_once('include/contact_widgets.php');
@ -97,7 +181,7 @@ function network_init(&$a) {
$a->page['content'] .= '<h2>' . t('Search Results For:') . ' ' . $search . '</h2>';
}
$a->page['aside'] .= group_side('network','network',true,$group_id);
$a->page['aside'] .= group_side('network/0','network',true,$group_id);
$a->page['aside'] .= posted_date_widget($a->get_baseurl() . '/network',local_user(),false);
$a->page['aside'] .= networks_widget($a->get_baseurl(true) . '/network',(x($_GET, 'nets') ? $_GET['nets'] : ''));
$a->page['aside'] .= saved_searches($search);
@ -225,6 +309,29 @@ function network_query_get_sel_tab($a) {
return array($no_active, $all_active, $postord_active, $conv_active, $new_active, $starred_active, $bookmarked_active, $spam_active);
}
/**
* Return selected network from query
*/
function network_query_get_sel_net() {
$network = false;
if(x($_GET,'nets')) {
$network = $_GET['nets'];
}
return $network;
}
function network_query_get_sel_group($a) {
$group = false;
if($a->argc >= 2 && is_numeric($a->argv[1])) {
$group = $a->argv[1];
}
return $group;
}
function network_content(&$a, $update = 0) {
@ -381,6 +488,7 @@ function network_content(&$a, $update = 0) {
if(strlen($str))
$def_acl = array('allow_cid' => $str);
}
set_pconfig(local_user(), 'network.view', 'net.selected', ($nets ? $nets : 'all'));
if(! $update) {
if($group) {
@ -607,6 +715,7 @@ function network_content(&$a, $update = 0) {
intval($_SESSION['uid'])
);
$update_unseen = ' WHERE uid = ' . intval($_SESSION['uid']) . " AND unseen = 1 $sql_extra $sql_nets";
}
else {
@ -673,6 +782,9 @@ function network_content(&$a, $update = 0) {
} else {
$items = array();
}
if($parents_str)
$update_unseen = ' WHERE uid = ' . intval(local_user()) . ' AND unseen = 1 AND parent IN ( ' . dbesc($parents_str) . ' )';
}
@ -680,12 +792,15 @@ function network_content(&$a, $update = 0) {
// level which items you've seen and which you haven't. If you're looking
// at the top level network page just mark everything seen.
if((! $group) && (! $cid) && (! $star)) {
/* if((! $group) && (! $cid) && (! $star)) {
$r = q("UPDATE `item` SET `unseen` = 0
WHERE `unseen` = 1 AND `uid` = %d",
intval(local_user())
);
}
}*/
if($update_unseen)
$r = q("UPDATE `item` SET `unseen` = 0 $update_unseen");
// Set this so that the conversation function can find out contact info for our wall-wall items
$a->page_contact = $a->contact;
@ -695,7 +810,7 @@ function network_content(&$a, $update = 0) {
$o .= conversation($a,$items,$mode,$update);
if(! $update) {
if(! get_pconfig(local_user(),'system','alt_pager')) {
if(! get_pconfig(local_user(),'system','alt_pager')) {
$o .= paginate($a);
}
else {

View file

@ -481,7 +481,25 @@ function photos_post(&$a) {
intval($profile_uid)
);
}
elseif(strstr($name,'_') || strstr($name,' ')) {
else {
$newname = str_replace('_',' ',$name);
//select someone from this user's contacts by name
$r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `uid` = %d LIMIT 1",
dbesc($newname),
intval($page_owner_uid)
);
if(! $r) {
//select someone by attag or nick and the name passed in
$r = q("SELECT * FROM `contact` WHERE `attag` = '%s' OR `nick` = '%s' AND `uid` = %d ORDER BY `attag` DESC LIMIT 1",
dbesc($name),
dbesc($name),
intval($page_owner_uid)
);
}
}
/* elseif(strstr($name,'_') || strstr($name,' ')) {
$newname = str_replace('_',' ',$name);
$r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `uid` = %d LIMIT 1",
dbesc($newname),
@ -494,7 +512,7 @@ function photos_post(&$a) {
dbesc($name),
intval($page_owner_uid)
);
}
}*/
if(count($r)) {
$newname = $r[0]['name'];
$profile = $r[0]['url'];

View file

@ -101,7 +101,7 @@ function profiles_post(&$a) {
}
else {
$newname = $lookup;
if(strstr($lookup,' ')) {
/* if(strstr($lookup,' ')) {
$r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `uid` = %d LIMIT 1",
dbesc($newname),
intval(local_user())
@ -112,6 +112,17 @@ function profiles_post(&$a) {
dbesc($lookup),
intval(local_user())
);
}*/
$r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `uid` = %d LIMIT 1",
dbesc($newname),
intval(local_user())
);
if(! $r) {
$r = q("SELECT * FROM `contact` WHERE `nick` = '%s' AND `uid` = %d LIMIT 1",
dbesc($lookup),
intval(local_user())
);
}
if(count($r)) {
$prf = $r[0]['url'];

View file

@ -692,7 +692,7 @@ function settings_content(&$a) {
'$mail_pass' => array('mail_pass', t('Email password:'), '', ''),
'$mail_replyto' => array('mail_replyto', t('Reply-to address:'), '', 'Optional'),
'$mail_pubmail' => array('mail_pubmail', t('Send public posts to all email contacts:'), $mail_pubmail, ''),
'$mail_action' => array('mail_action', t('Action after import:'), $mail_action, '', array(0=>t('None'), 1=>t('Delete'), 2=>t('Mark as seen'), 3=>t('Move to folder'))),
'$mail_action' => array('mail_action', t('Action after import:'), $mail_action, '', array(0=>t('None'), /*1=>t('Delete'),*/ 2=>t('Mark as seen'), 3=>t('Move to folder'))),
'$mail_movetofolder' => array('mail_movetofolder', t('Move to folder:'), $mail_movetofolder, ''),
'$submit' => t('Submit'),

View file

@ -22,8 +22,8 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
"POT-Creation-Date: 2012-09-25 10:00-0700\n"
"PO-Revision-Date: 2012-09-27 04:19+0000\n"
"POT-Creation-Date: 2012-09-27 10:00-0700\n"
"PO-Revision-Date: 2012-09-30 06:05+0000\n"
"Last-Translator: bavatar <tobias.diekershoff@gmx.net>\n"
"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n"
"MIME-Version: 1.0\n"
@ -73,7 +73,7 @@ msgstr "Konnte den Kontakt nicht aktualisieren."
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510
#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159
#: ../../addon/fbpost/fbpost.php:165
#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3908
#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3913
#: ../../index.php:317
msgid "Permission denied."
msgstr "Zugriff verweigert."
@ -163,7 +163,7 @@ msgstr "Neues Foto von dieser URL"
#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93
#: ../../addon/drpost/drpost.php:110 ../../addon/startpage/startpage.php:92
#: ../../addon/geonames/geonames.php:187 ../../addon/oembed.old/oembed.php:41
#: ../../addon/forumlist/forumlist.php:169
#: ../../addon/forumlist/forumlist.php:163
#: ../../addon/impressum/impressum.php:83
#: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57
#: ../../addon/qcomment/qcomment.php:61
@ -191,7 +191,7 @@ msgstr "Neues Foto von dieser URL"
#: ../../view/theme/diabook/theme.php:757
#: ../../view/theme/diabook/config.php:190
#: ../../view/theme/quattro/config.php:53 ../../view/theme/dispy/config.php:70
#: ../../include/conversation.php:607 ../../object/Item.php:559
#: ../../object/Item.php:560
msgid "Submit"
msgstr "Senden"
@ -322,7 +322,7 @@ msgstr "Veranstaltung teilen"
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:136
#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:544
#: ../../mod/settings.php:570 ../../addon/js_upload/js_upload.php:45
#: ../../include/conversation.php:1307
#: ../../include/conversation.php:935
msgid "Cancel"
msgstr "Abbrechen"
@ -552,7 +552,7 @@ msgid "Use as profile photo"
msgstr "Als Profilbild verwenden"
#: ../../mod/photos.php:1224 ../../mod/content.php:603
#: ../../include/conversation.php:436 ../../object/Item.php:103
#: ../../object/Item.php:103
msgid "Private Message"
msgstr "Private Nachricht"
@ -594,52 +594,49 @@ msgid ""
msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
#: ../../mod/photos.php:1356 ../../mod/content.php:667
#: ../../include/conversation.php:581 ../../object/Item.php:195
#: ../../object/Item.php:196
msgid "I like this (toggle)"
msgstr "Ich mag das (toggle)"
#: ../../mod/photos.php:1357 ../../mod/content.php:668
#: ../../include/conversation.php:582 ../../object/Item.php:196
#: ../../object/Item.php:197
msgid "I don't like this (toggle)"
msgstr "Ich mag das nicht (toggle)"
#: ../../mod/photos.php:1358 ../../include/conversation.php:1268
#: ../../mod/photos.php:1358 ../../include/conversation.php:896
msgid "Share"
msgstr "Teilen"
#: ../../mod/photos.php:1359 ../../mod/editpost.php:112
#: ../../mod/content.php:482 ../../mod/content.php:845
#: ../../mod/wallmessage.php:152 ../../mod/message.php:293
#: ../../mod/message.php:481 ../../include/conversation.php:686
#: ../../include/conversation.php:944 ../../include/conversation.php:1287
#: ../../object/Item.php:257
#: ../../mod/message.php:481 ../../include/conversation.php:570
#: ../../include/conversation.php:915 ../../object/Item.php:258
msgid "Please wait"
msgstr "Bitte warten"
#: ../../mod/photos.php:1375 ../../mod/photos.php:1416
#: ../../mod/photos.php:1448 ../../mod/content.php:690
#: ../../include/conversation.php:604 ../../object/Item.php:556
#: ../../object/Item.php:557
msgid "This is you"
msgstr "Das bist du"
#: ../../mod/photos.php:1377 ../../mod/photos.php:1418
#: ../../mod/photos.php:1450 ../../mod/content.php:692
#: ../../include/conversation.php:606 ../../boot.php:574
#: ../../object/Item.php:558
#: ../../mod/photos.php:1450 ../../mod/content.php:692 ../../boot.php:574
#: ../../object/Item.php:559
msgid "Comment"
msgstr "Kommentar"
#: ../../mod/photos.php:1379 ../../mod/editpost.php:133
#: ../../mod/content.php:702 ../../include/conversation.php:616
#: ../../include/conversation.php:1305 ../../object/Item.php:568
#: ../../mod/content.php:702 ../../include/conversation.php:933
#: ../../object/Item.php:569
msgid "Preview"
msgstr "Vorschau"
#: ../../mod/photos.php:1479 ../../mod/content.php:439
#: ../../mod/content.php:723 ../../mod/settings.php:606
#: ../../mod/settings.php:695 ../../mod/group.php:168 ../../mod/admin.php:696
#: ../../include/conversation.php:448 ../../include/conversation.php:889
#: ../../object/Item.php:116
#: ../../include/conversation.php:515 ../../object/Item.php:117
msgid "Delete"
msgstr "Löschen"
@ -705,29 +702,28 @@ msgstr "Beitrag nicht gefunden"
msgid "Edit post"
msgstr "Beitrag bearbeiten"
#: ../../mod/editpost.php:88 ../../include/conversation.php:1254
#: ../../mod/editpost.php:88 ../../include/conversation.php:882
msgid "Post to Email"
msgstr "An E-Mail senden"
#: ../../mod/editpost.php:103 ../../mod/content.php:710
#: ../../mod/settings.php:605 ../../include/conversation.php:441
#: ../../object/Item.php:107
#: ../../mod/settings.php:605 ../../object/Item.php:107
msgid "Edit"
msgstr "Bearbeiten"
#: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150
#: ../../mod/message.php:291 ../../mod/message.php:478
#: ../../include/conversation.php:1269
#: ../../include/conversation.php:897
msgid "Upload photo"
msgstr "Foto hochladen"
#: ../../mod/editpost.php:105 ../../include/conversation.php:1271
#: ../../mod/editpost.php:105 ../../include/conversation.php:899
msgid "Attach file"
msgstr "Datei anhängen"
#: ../../mod/editpost.php:106 ../../mod/wallmessage.php:151
#: ../../mod/message.php:292 ../../mod/message.php:479
#: ../../include/conversation.php:1273
#: ../../include/conversation.php:901
msgid "Insert web link"
msgstr "einen Link einfügen"
@ -743,35 +739,35 @@ msgstr "Vorbis [.ogg] Video einfügen"
msgid "Insert Vorbis [.ogg] audio"
msgstr "Vorbis [.ogg] Audio einfügen"
#: ../../mod/editpost.php:110 ../../include/conversation.php:1279
#: ../../mod/editpost.php:110 ../../include/conversation.php:907
msgid "Set your location"
msgstr "Deinen Standort festlegen"
#: ../../mod/editpost.php:111 ../../include/conversation.php:1281
#: ../../mod/editpost.php:111 ../../include/conversation.php:909
msgid "Clear browser location"
msgstr "Browser-Standort leeren"
#: ../../mod/editpost.php:113 ../../include/conversation.php:1288
#: ../../mod/editpost.php:113 ../../include/conversation.php:916
msgid "Permission settings"
msgstr "Berechtigungseinstellungen"
#: ../../mod/editpost.php:121 ../../include/conversation.php:1297
#: ../../mod/editpost.php:121 ../../include/conversation.php:925
msgid "CC: email addresses"
msgstr "Cc:-E-Mail-Addressen"
#: ../../mod/editpost.php:122 ../../include/conversation.php:1298
#: ../../mod/editpost.php:122 ../../include/conversation.php:926
msgid "Public post"
msgstr "Öffentlicher Beitrag"
#: ../../mod/editpost.php:125 ../../include/conversation.php:1284
#: ../../mod/editpost.php:125 ../../include/conversation.php:912
msgid "Set title"
msgstr "Titel setzen"
#: ../../mod/editpost.php:127 ../../include/conversation.php:1286
#: ../../mod/editpost.php:127 ../../include/conversation.php:914
msgid "Categories (comma-separated list)"
msgstr "Kategorien (kommasepariert)"
#: ../../mod/editpost.php:128 ../../include/conversation.php:1300
#: ../../mod/editpost.php:128 ../../include/conversation.php:928
msgid "Example: bob@example.com, mary@example.com"
msgstr "Z.B.: bob@example.com, mary@example.com"
@ -892,7 +888,7 @@ msgstr "Bitte bestätige deine Kontaktanfrage bei %s."
msgid "Confirm"
msgstr "Bestätigen"
#: ../../mod/dfrn_request.php:715 ../../include/items.php:3287
#: ../../mod/dfrn_request.php:715 ../../include/items.php:3292
msgid "[Name Withheld]"
msgstr "[Name unterdrückt]"
@ -1314,32 +1310,28 @@ msgid "Group: "
msgstr "Gruppe: "
#: ../../mod/content.php:438 ../../mod/content.php:722
#: ../../include/conversation.php:447 ../../include/conversation.php:888
#: ../../object/Item.php:115
#: ../../include/conversation.php:514 ../../object/Item.php:116
msgid "Select"
msgstr "Auswählen"
#: ../../mod/content.php:455 ../../mod/content.php:815
#: ../../mod/content.php:816 ../../include/conversation.php:654
#: ../../include/conversation.php:655 ../../include/conversation.php:907
#: ../../object/Item.php:226 ../../object/Item.php:227
#: ../../mod/content.php:816 ../../include/conversation.php:533
#: ../../object/Item.php:227 ../../object/Item.php:228
#, php-format
msgid "View %s's profile @ %s"
msgstr "Das Profil von %s auf %s betrachten."
#: ../../mod/content.php:465 ../../mod/content.php:827
#: ../../include/conversation.php:668 ../../include/conversation.php:927
#: ../../object/Item.php:239
#: ../../include/conversation.php:553 ../../object/Item.php:240
#, php-format
msgid "%s from %s"
msgstr "%s von %s"
#: ../../mod/content.php:480 ../../include/conversation.php:942
#: ../../mod/content.php:480 ../../include/conversation.php:568
msgid "View in context"
msgstr "Im Zusammenhang betrachten"
#: ../../mod/content.php:586 ../../include/conversation.php:695
#: ../../object/Item.php:276
#: ../../mod/content.php:586 ../../object/Item.php:277
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
@ -1347,8 +1339,7 @@ msgstr[0] "%d Kommentar"
msgstr[1] "%d Kommentare"
#: ../../mod/content.php:588 ../../include/text.php:1443
#: ../../include/conversation.php:697 ../../object/Item.php:278
#: ../../object/Item.php:291
#: ../../object/Item.php:279 ../../object/Item.php:292
msgid "comment"
msgid_plural "comments"
msgstr[0] ""
@ -1356,113 +1347,92 @@ msgstr[1] "Kommentar"
#: ../../mod/content.php:589 ../../addon/page/page.php:76
#: ../../addon/page/page.php:110 ../../addon/showmore/showmore.php:119
#: ../../include/contact_widgets.php:195 ../../include/conversation.php:698
#: ../../boot.php:575 ../../object/Item.php:279
#: ../../include/contact_widgets.php:195 ../../boot.php:575
#: ../../object/Item.php:280
msgid "show more"
msgstr "mehr anzeigen"
#: ../../mod/content.php:667 ../../include/conversation.php:581
#: ../../object/Item.php:195
#: ../../mod/content.php:667 ../../object/Item.php:196
msgid "like"
msgstr "mag ich"
#: ../../mod/content.php:668 ../../include/conversation.php:582
#: ../../object/Item.php:196
#: ../../mod/content.php:668 ../../object/Item.php:197
msgid "dislike"
msgstr "mag ich nicht"
#: ../../mod/content.php:670 ../../include/conversation.php:584
#: ../../object/Item.php:198
#: ../../mod/content.php:670 ../../object/Item.php:199
msgid "Share this"
msgstr "Weitersagen"
#: ../../mod/content.php:670 ../../include/conversation.php:584
#: ../../object/Item.php:198
#: ../../mod/content.php:670 ../../object/Item.php:199
msgid "share"
msgstr "Teilen"
#: ../../mod/content.php:694 ../../include/conversation.php:608
#: ../../object/Item.php:560
#: ../../mod/content.php:694 ../../object/Item.php:561
msgid "Bold"
msgstr "Fett"
#: ../../mod/content.php:695 ../../include/conversation.php:609
#: ../../object/Item.php:561
#: ../../mod/content.php:695 ../../object/Item.php:562
msgid "Italic"
msgstr "Kursiv"
#: ../../mod/content.php:696 ../../include/conversation.php:610
#: ../../object/Item.php:562
#: ../../mod/content.php:696 ../../object/Item.php:563
msgid "Underline"
msgstr "Unterstrichen"
#: ../../mod/content.php:697 ../../include/conversation.php:611
#: ../../object/Item.php:563
#: ../../mod/content.php:697 ../../object/Item.php:564
msgid "Quote"
msgstr "Zitat"
#: ../../mod/content.php:698 ../../include/conversation.php:612
#: ../../object/Item.php:564
#: ../../mod/content.php:698 ../../object/Item.php:565
msgid "Code"
msgstr "Code"
#: ../../mod/content.php:699 ../../include/conversation.php:613
#: ../../object/Item.php:565
#: ../../mod/content.php:699 ../../object/Item.php:566
msgid "Image"
msgstr "Bild"
#: ../../mod/content.php:700 ../../include/conversation.php:614
#: ../../object/Item.php:566
#: ../../mod/content.php:700 ../../object/Item.php:567
msgid "Link"
msgstr "Verweis"
#: ../../mod/content.php:701 ../../include/conversation.php:615
#: ../../object/Item.php:567
#: ../../mod/content.php:701 ../../object/Item.php:568
msgid "Video"
msgstr "Video"
#: ../../mod/content.php:735 ../../include/conversation.php:545
#: ../../object/Item.php:179
#: ../../mod/content.php:735 ../../object/Item.php:180
msgid "add star"
msgstr "markieren"
#: ../../mod/content.php:736 ../../include/conversation.php:546
#: ../../object/Item.php:180
#: ../../mod/content.php:736 ../../object/Item.php:181
msgid "remove star"
msgstr "Markierung entfernen"
#: ../../mod/content.php:737 ../../include/conversation.php:547
#: ../../object/Item.php:181
#: ../../mod/content.php:737 ../../object/Item.php:182
msgid "toggle star status"
msgstr "Markierung umschalten"
#: ../../mod/content.php:740 ../../include/conversation.php:550
#: ../../object/Item.php:184
#: ../../mod/content.php:740 ../../object/Item.php:185
msgid "starred"
msgstr "markiert"
#: ../../mod/content.php:741 ../../include/conversation.php:551
#: ../../object/Item.php:185
#: ../../mod/content.php:741 ../../object/Item.php:186
msgid "add tag"
msgstr "Tag hinzufügen"
#: ../../mod/content.php:745 ../../include/conversation.php:451
#: ../../object/Item.php:119
#: ../../mod/content.php:745 ../../object/Item.php:120
msgid "save to folder"
msgstr "In Ordner speichern"
#: ../../mod/content.php:817 ../../include/conversation.php:656
#: ../../object/Item.php:228
#: ../../mod/content.php:817 ../../object/Item.php:229
msgid "to"
msgstr "zu"
#: ../../mod/content.php:818 ../../include/conversation.php:657
#: ../../object/Item.php:229
#: ../../mod/content.php:818 ../../object/Item.php:230
msgid "Wall-to-Wall"
msgstr "Wall-to-Wall"
#: ../../mod/content.php:819 ../../include/conversation.php:658
#: ../../object/Item.php:230
#: ../../mod/content.php:819 ../../object/Item.php:231
msgid "via Wall-To-Wall:"
msgstr "via Wall-To-Wall:"
@ -1980,7 +1950,7 @@ msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
#: ../../addon/facebook/facebook.php:702
#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661
#: ../../addon/public_server/public_server.php:62
#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3296
#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3301
#: ../../boot.php:788
msgid "Administrator"
msgstr "Administrator"
@ -2713,7 +2683,7 @@ msgstr "Kein Empfänger."
#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131
#: ../../mod/message.php:242 ../../mod/message.php:250
#: ../../include/conversation.php:1205 ../../include/conversation.php:1222
#: ../../include/conversation.php:833 ../../include/conversation.php:850
msgid "Please enter a link URL:"
msgstr "Bitte gib die URL des Links ein:"
@ -3139,7 +3109,7 @@ msgstr "%1$s mag %2$ss %3$s nicht"
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159
#: ../../mod/admin.php:734 ../../mod/admin.php:933 ../../mod/display.php:29
#: ../../mod/display.php:145 ../../include/items.php:3774
#: ../../mod/display.php:145 ../../include/items.php:3779
msgid "Item not found."
msgstr "Beitrag nicht gefunden."
@ -4036,48 +4006,48 @@ msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
msgid "Tips for New Members"
msgstr "Tipps für neue Nutzer"
#: ../../mod/ping.php:235
#: ../../mod/ping.php:238
msgid "{0} wants to be your friend"
msgstr "{0} möchte mit dir in Kontakt treten"
#: ../../mod/ping.php:240
#: ../../mod/ping.php:243
msgid "{0} sent you a message"
msgstr "{0} hat dir eine Nachricht geschickt"
#: ../../mod/ping.php:245
#: ../../mod/ping.php:248
msgid "{0} requested registration"
msgstr "{0} möchte sich registrieren"
#: ../../mod/ping.php:251
#: ../../mod/ping.php:254
#, php-format
msgid "{0} commented %s's post"
msgstr "{0} kommentierte einen Beitrag von %s"
#: ../../mod/ping.php:256
#: ../../mod/ping.php:259
#, php-format
msgid "{0} liked %s's post"
msgstr "{0} mag %ss Beitrag"
#: ../../mod/ping.php:261
#: ../../mod/ping.php:264
#, php-format
msgid "{0} disliked %s's post"
msgstr "{0} mag %ss Beitrag nicht"
#: ../../mod/ping.php:266
#: ../../mod/ping.php:269
#, php-format
msgid "{0} is now friends with %s"
msgstr "{0} ist jetzt mit %s befreundet"
#: ../../mod/ping.php:271
#: ../../mod/ping.php:274
msgid "{0} posted"
msgstr "{0} hat etwas veröffentlicht"
#: ../../mod/ping.php:276
#: ../../mod/ping.php:279
#, php-format
msgid "{0} tagged %s's post with #%s"
msgstr "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen"
#: ../../mod/ping.php:282
#: ../../mod/ping.php:285
msgid "{0} mentioned you in a post"
msgstr "{0} hat dich in einem Beitrag erwähnt"
@ -4439,8 +4409,8 @@ msgstr "sichtbar für jeden"
msgid "Edit visibility"
msgstr "Sichtbarkeit bearbeiten"
#: ../../mod/filer.php:29 ../../include/conversation.php:1209
#: ../../include/conversation.php:1226
#: ../../mod/filer.php:29 ../../include/conversation.php:837
#: ../../include/conversation.php:854
msgid "Save to Folder:"
msgstr "In diesen Ordner verschieben:"
@ -5303,11 +5273,11 @@ msgid "%s - Click to open/close"
msgstr "%s Zum Öffnen/Schließen klicken"
#: ../../addon/page/page.php:61 ../../addon/page/page.php:91
#: ../../addon/forumlist/forumlist.php:54
#: ../../addon/forumlist/forumlist.php:55
msgid "Forums"
msgstr "Foren"
#: ../../addon/page/page.php:129 ../../addon/forumlist/forumlist.php:88
#: ../../addon/page/page.php:129 ../../addon/forumlist/forumlist.php:89
msgid "Forums:"
msgstr "Foren:"
@ -5319,7 +5289,7 @@ msgstr "Seiteneinstellungen aktualisiert."
msgid "Page Settings"
msgstr "Seiteneinstellungen"
#: ../../addon/page/page.php:196 ../../addon/forumlist/forumlist.php:155
#: ../../addon/page/page.php:196
msgid "How many forums to display on sidebar without paging"
msgstr "Wie viele Foren sollen in der Seitenleiste ohne Umblättern angezeigt werden"
@ -6152,7 +6122,7 @@ msgstr "OEmbed für Youtube Videos verwenden"
msgid "URL to embed:"
msgstr "URL zum Einbetten:"
#: ../../addon/forumlist/forumlist.php:57
#: ../../addon/forumlist/forumlist.php:58
msgid "show/hide"
msgstr "anzeigen/verbergen"
@ -6160,21 +6130,21 @@ msgstr "anzeigen/verbergen"
msgid "No forum subscriptions"
msgstr "Keine Foren-Mitgliedschaften."
#: ../../addon/forumlist/forumlist.php:124
#: ../../addon/forumlist/forumlist.php:125
msgid "Forumlist settings updated."
msgstr "Einstellungen zur Foren-Liste aktualisiert."
#: ../../addon/forumlist/forumlist.php:153
#: ../../addon/forumlist/forumlist.php:150
msgid "Forumlist Settings"
msgstr "Foren-Liste Einstellungen"
#: ../../addon/forumlist/forumlist.php:158
msgid "Randomise Forumlist/Forum list"
#: ../../addon/forumlist/forumlist.php:152
msgid "Randomise forum list"
msgstr "Zufällige Zusammenstellung der Foren-Liste"
#: ../../addon/forumlist/forumlist.php:161
msgid "Show forumlists/forums on profile forumlist"
msgstr "Liste der Foren deren Abonnement du bist in deinem Profil anzeigen:"
#: ../../addon/forumlist/forumlist.php:155
msgid "Show forums on profile page"
msgstr "Zeige die Liste der Foren auf der Profilseite"
#: ../../addon/impressum/impressum.php:37
msgid "Impressum"
@ -8156,12 +8126,12 @@ msgstr "Sekunden"
msgid "%1$d %2$s ago"
msgstr "%1$d %2$s her"
#: ../../include/datetime.php:472 ../../include/items.php:1683
#: ../../include/datetime.php:472 ../../include/items.php:1688
#, php-format
msgid "%s's birthday"
msgstr "%ss Geburtstag"
#: ../../include/datetime.php:473 ../../include/items.php:1684
#: ../../include/datetime.php:473 ../../include/items.php:1689
#, php-format
msgid "Happy Birthday %s"
msgstr "Herzlichen Glückwunsch %s"
@ -8436,15 +8406,15 @@ msgstr "Konnte die Kontaktinformationen nicht empfangen."
msgid "following"
msgstr "folgen"
#: ../../include/items.php:3294
#: ../../include/items.php:3299
msgid "A new person is sharing with you at "
msgstr "Eine neue Person teilt mit dir auf "
#: ../../include/items.php:3294
#: ../../include/items.php:3299
msgid "You have a new follower at "
msgstr "Du hast einen neuen Kontakt auf "
#: ../../include/items.php:3975
#: ../../include/items.php:3980
msgid "Archives"
msgstr "Archiv"
@ -8538,34 +8508,34 @@ msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das
msgid "stopped following"
msgstr "wird nicht mehr gefolgt"
#: ../../include/Contact.php:220 ../../include/conversation.php:1106
#: ../../include/Contact.php:220 ../../include/conversation.php:734
msgid "Poke"
msgstr "Anstupsen"
#: ../../include/Contact.php:221 ../../include/conversation.php:1100
#: ../../include/Contact.php:221 ../../include/conversation.php:728
msgid "View Status"
msgstr "Pinnwand anschauen"
#: ../../include/Contact.php:222 ../../include/conversation.php:1101
#: ../../include/Contact.php:222 ../../include/conversation.php:729
msgid "View Profile"
msgstr "Profil anschauen"
#: ../../include/Contact.php:223 ../../include/conversation.php:1102
#: ../../include/Contact.php:223 ../../include/conversation.php:730
msgid "View Photos"
msgstr "Bilder anschauen"
#: ../../include/Contact.php:224 ../../include/Contact.php:237
#: ../../include/conversation.php:1103
#: ../../include/conversation.php:731
msgid "Network Posts"
msgstr "Netzwerkbeiträge"
#: ../../include/Contact.php:225 ../../include/Contact.php:237
#: ../../include/conversation.php:1104
#: ../../include/conversation.php:732
msgid "Edit Contact"
msgstr "Kontakt bearbeiten"
#: ../../include/Contact.php:226 ../../include/Contact.php:237
#: ../../include/conversation.php:1105
#: ../../include/conversation.php:733
msgid "Send PM"
msgstr "Private Nachricht senden"
@ -8583,120 +8553,118 @@ msgstr "Nachricht/Beitrag"
msgid "%1$s marked %2$s's %3$s as favorite"
msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert"
#: ../../include/conversation.php:645 ../../include/conversation.php:919
#: ../../object/Item.php:217
#: ../../include/conversation.php:545 ../../object/Item.php:218
msgid "Categories:"
msgstr "Kategorien"
#: ../../include/conversation.php:646 ../../include/conversation.php:920
#: ../../object/Item.php:218
#: ../../include/conversation.php:546 ../../object/Item.php:219
msgid "Filed under:"
msgstr "Abgelegt unter:"
#: ../../include/conversation.php:1002
#: ../../include/conversation.php:630
msgid "remove"
msgstr "löschen"
#: ../../include/conversation.php:1006
#: ../../include/conversation.php:634
msgid "Delete Selected Items"
msgstr "Lösche die markierten Beiträge"
#: ../../include/conversation.php:1164
#: ../../include/conversation.php:792
#, php-format
msgid "%s likes this."
msgstr "%s mag das."
#: ../../include/conversation.php:1164
#: ../../include/conversation.php:792
#, php-format
msgid "%s doesn't like this."
msgstr "%s mag das nicht."
#: ../../include/conversation.php:1168
#: ../../include/conversation.php:796
#, php-format
msgid "<span %1$s>%2$d people</span> like this."
msgstr "<span %1$s>%2$d Leute</span> mögen das."
#: ../../include/conversation.php:1170
#: ../../include/conversation.php:798
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this."
msgstr "<span %1$s>%2$d Leute</span> mögen das nicht."
#: ../../include/conversation.php:1176
#: ../../include/conversation.php:804
msgid "and"
msgstr "und"
#: ../../include/conversation.php:1179
#: ../../include/conversation.php:807
#, php-format
msgid ", and %d other people"
msgstr " und %d andere"
#: ../../include/conversation.php:1180
#: ../../include/conversation.php:808
#, php-format
msgid "%s like this."
msgstr "%s mögen das."
#: ../../include/conversation.php:1180
#: ../../include/conversation.php:808
#, php-format
msgid "%s don't like this."
msgstr "%s mögen das nicht."
#: ../../include/conversation.php:1204 ../../include/conversation.php:1221
#: ../../include/conversation.php:832 ../../include/conversation.php:849
msgid "Visible to <strong>everybody</strong>"
msgstr "Für <strong>jedermann</strong> sichtbar"
#: ../../include/conversation.php:1206 ../../include/conversation.php:1223
#: ../../include/conversation.php:834 ../../include/conversation.php:851
msgid "Please enter a video link/URL:"
msgstr "Bitte Link/URL zum Video einfügen:"
#: ../../include/conversation.php:1207 ../../include/conversation.php:1224
#: ../../include/conversation.php:835 ../../include/conversation.php:852
msgid "Please enter an audio link/URL:"
msgstr "Bitte Link/URL zum Audio einfügen:"
#: ../../include/conversation.php:1208 ../../include/conversation.php:1225
#: ../../include/conversation.php:836 ../../include/conversation.php:853
msgid "Tag term:"
msgstr "Tag:"
#: ../../include/conversation.php:1210 ../../include/conversation.php:1227
#: ../../include/conversation.php:838 ../../include/conversation.php:855
msgid "Where are you right now?"
msgstr "Wo hältst du dich jetzt gerade auf?"
#: ../../include/conversation.php:1270
#: ../../include/conversation.php:898
msgid "upload photo"
msgstr "Bild hochladen"
#: ../../include/conversation.php:1272
#: ../../include/conversation.php:900
msgid "attach file"
msgstr "Datei anhängen"
#: ../../include/conversation.php:1274
#: ../../include/conversation.php:902
msgid "web link"
msgstr "Weblink"
#: ../../include/conversation.php:1275
#: ../../include/conversation.php:903
msgid "Insert video link"
msgstr "Video-Adresse einfügen"
#: ../../include/conversation.php:1276
#: ../../include/conversation.php:904
msgid "video link"
msgstr "Video-Link"
#: ../../include/conversation.php:1277
#: ../../include/conversation.php:905
msgid "Insert audio link"
msgstr "Audio-Adresse einfügen"
#: ../../include/conversation.php:1278
#: ../../include/conversation.php:906
msgid "audio link"
msgstr "Audio-Link"
#: ../../include/conversation.php:1280
#: ../../include/conversation.php:908
msgid "set location"
msgstr "Ort setzen"
#: ../../include/conversation.php:1282
#: ../../include/conversation.php:910
msgid "clear location"
msgstr "Ort löschen"
#: ../../include/conversation.php:1289
#: ../../include/conversation.php:917
msgid "permissions"
msgstr "Zugriffsrechte"

View file

@ -1391,8 +1391,8 @@ $a->strings["show/hide"] = "anzeigen/verbergen";
$a->strings["No forum subscriptions"] = "Keine Foren-Mitgliedschaften.";
$a->strings["Forumlist settings updated."] = "Einstellungen zur Foren-Liste aktualisiert.";
$a->strings["Forumlist Settings"] = "Foren-Liste Einstellungen";
$a->strings["Randomise Forumlist/Forum list"] = "Zufällige Zusammenstellung der Foren-Liste";
$a->strings["Show forumlists/forums on profile forumlist"] = "Liste der Foren deren Abonnement du bist in deinem Profil anzeigen:";
$a->strings["Randomise forum list"] = "Zufällige Zusammenstellung der Foren-Liste";
$a->strings["Show forums on profile page"] = "Zeige die Liste der Foren auf der Profilseite";
$a->strings["Impressum"] = "Impressum";
$a->strings["Site Owner"] = "Betreiber der Seite";
$a->strings["Email Address"] = "Email Adresse";

View file

@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
"POT-Creation-Date: 2012-09-26 10:00-0700\n"
"PO-Revision-Date: 2012-09-27 12:16+0000\n"
"POT-Creation-Date: 2012-09-27 10:00-0700\n"
"PO-Revision-Date: 2012-09-28 14:23+0000\n"
"Last-Translator: Olivier <olivier+transifex@migeot.org>\n"
"Language-Team: French (http://www.transifex.com/projects/p/friendica/language/fr/)\n"
"MIME-Version: 1.0\n"
@ -60,7 +60,7 @@ msgstr "Impossible d'appliquer les réglages."
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510
#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159
#: ../../addon/fbpost/fbpost.php:165
#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3908
#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3913
#: ../../index.php:317
msgid "Permission denied."
msgstr "Permission refusée."
@ -150,7 +150,7 @@ msgstr "Nouvelle photo depuis cette URL"
#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93
#: ../../addon/drpost/drpost.php:110 ../../addon/startpage/startpage.php:92
#: ../../addon/geonames/geonames.php:187 ../../addon/oembed.old/oembed.php:41
#: ../../addon/forumlist/forumlist.php:169
#: ../../addon/forumlist/forumlist.php:163
#: ../../addon/impressum/impressum.php:83
#: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57
#: ../../addon/qcomment/qcomment.php:61
@ -875,7 +875,7 @@ msgstr "Merci de confirmer votre demande d'introduction auprès de %s."
msgid "Confirm"
msgstr "Confirmer"
#: ../../mod/dfrn_request.php:715 ../../include/items.php:3287
#: ../../mod/dfrn_request.php:715 ../../include/items.php:3292
msgid "[Name Withheld]"
msgstr "[Nom non-publié]"
@ -937,7 +937,7 @@ msgstr "Diaspora"
msgid ""
" - please do not use this form. Instead, enter %s into your Diaspora search"
" bar."
msgstr " - merci de ne pas utiliser ce formulaire. Entrez plutôt %s dans votre barre de rechercher Diaspora."
msgstr " - merci de ne pas utiliser ce formulaire. Entrez plutôt %s dans votre barre de recherche Diaspora."
#: ../../mod/dfrn_request.php:843
msgid "Your Identity Address:"
@ -1937,7 +1937,7 @@ msgstr "Requête de réinitialisation de mot de passe à %s"
#: ../../addon/facebook/facebook.php:702
#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661
#: ../../addon/public_server/public_server.php:62
#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3296
#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3301
#: ../../boot.php:788
msgid "Administrator"
msgstr "Administrateur"
@ -2552,7 +2552,7 @@ msgstr "Retirer le terme"
#: ../../mod/network.php:146 ../../mod/search.php:13
msgid "Saved Searches"
msgstr "Recherches sauvées"
msgstr "Recherches"
#: ../../mod/network.php:147 ../../include/group.php:244
msgid "add"
@ -3096,7 +3096,7 @@ msgstr "%1$s n'aime pas %3$s de %2$s"
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159
#: ../../mod/admin.php:734 ../../mod/admin.php:933 ../../mod/display.php:29
#: ../../mod/display.php:145 ../../include/items.php:3774
#: ../../mod/display.php:145 ../../include/items.php:3779
msgid "Item not found."
msgstr "Élément introuvable."
@ -5260,11 +5260,11 @@ msgid "%s - Click to open/close"
msgstr "%s - cliquer pour ouvrir/fermer"
#: ../../addon/page/page.php:61 ../../addon/page/page.php:91
#: ../../addon/forumlist/forumlist.php:54
#: ../../addon/forumlist/forumlist.php:55
msgid "Forums"
msgstr "Forums"
#: ../../addon/page/page.php:129 ../../addon/forumlist/forumlist.php:88
#: ../../addon/page/page.php:129 ../../addon/forumlist/forumlist.php:89
msgid "Forums:"
msgstr "Forums:"
@ -5276,7 +5276,7 @@ msgstr "Paramètres des pages mis à jour."
msgid "Page Settings"
msgstr "Paramètres des pages"
#: ../../addon/page/page.php:196 ../../addon/forumlist/forumlist.php:155
#: ../../addon/page/page.php:196
msgid "How many forums to display on sidebar without paging"
msgstr "Nombre de forums à afficher sur la barre de côté sans changer de page"
@ -6109,7 +6109,7 @@ msgstr "Utiliser OEmbed pour les vidéos Youtube"
msgid "URL to embed:"
msgstr "URL à incorporer:"
#: ../../addon/forumlist/forumlist.php:57
#: ../../addon/forumlist/forumlist.php:58
msgid "show/hide"
msgstr "Montrer/cacher"
@ -6117,20 +6117,20 @@ msgstr "Montrer/cacher"
msgid "No forum subscriptions"
msgstr "Pas d'abonnement au forum"
#: ../../addon/forumlist/forumlist.php:124
#: ../../addon/forumlist/forumlist.php:125
msgid "Forumlist settings updated."
msgstr "Paramètres de la liste des forums mis à jour."
#: ../../addon/forumlist/forumlist.php:153
#: ../../addon/forumlist/forumlist.php:150
msgid "Forumlist Settings"
msgstr "Paramètres de la liste des forums"
#: ../../addon/forumlist/forumlist.php:158
msgid "Randomise Forumlist/Forum list"
#: ../../addon/forumlist/forumlist.php:152
msgid "Randomise forum list"
msgstr ""
#: ../../addon/forumlist/forumlist.php:161
msgid "Show forumlists/forums on profile forumlist"
#: ../../addon/forumlist/forumlist.php:155
msgid "Show forums on profile page"
msgstr ""
#: ../../addon/impressum/impressum.php:37
@ -7607,7 +7607,7 @@ msgstr "Plus récent"
#: ../../include/text.php:299
msgid "older"
msgstr "Plus ancient"
msgstr "Plus ancien"
#: ../../include/text.php:597
msgid "No contacts"
@ -8113,12 +8113,12 @@ msgstr "secondes"
msgid "%1$d %2$s ago"
msgstr "%1$d %2$s auparavant"
#: ../../include/datetime.php:472 ../../include/items.php:1683
#: ../../include/datetime.php:472 ../../include/items.php:1688
#, php-format
msgid "%s's birthday"
msgstr "Anniversaire de %s's"
#: ../../include/datetime.php:473 ../../include/items.php:1684
#: ../../include/datetime.php:473 ../../include/items.php:1689
#, php-format
msgid "Happy Birthday %s"
msgstr "Joyeux anniversaire, %s !"
@ -8393,15 +8393,15 @@ msgstr "Impossible de récupérer les informations du contact."
msgid "following"
msgstr "following"
#: ../../include/items.php:3294
#: ../../include/items.php:3299
msgid "A new person is sharing with you at "
msgstr "Une nouvelle personne partage avec vous à "
#: ../../include/items.php:3294
#: ../../include/items.php:3299
msgid "You have a new follower at "
msgstr "Vous avez un nouvel abonné à "
#: ../../include/items.php:3975
#: ../../include/items.php:3980
msgid "Archives"
msgstr "Archives"

View file

@ -190,7 +190,7 @@ $a->strings["Add a personal note:"] = "Ajouter une note personnelle:";
$a->strings["Friendica"] = "Friendica";
$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
$a->strings["Diaspora"] = "Diaspora";
$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - merci de ne pas utiliser ce formulaire. Entrez plutôt %s dans votre barre de rechercher Diaspora.";
$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - merci de ne pas utiliser ce formulaire. Entrez plutôt %s dans votre barre de recherche Diaspora.";
$a->strings["Your Identity Address:"] = "Votre adresse d'identité:";
$a->strings["Submit Request"] = "Envoyer la requête";
$a->strings["Friendica Social Communications Server - Setup"] = "Serveur de communications sociales Friendica - Installation";
@ -571,7 +571,7 @@ $a->strings["Toggle between different identities or community/group pages which
$a->strings["Select an identity to manage: "] = "Choisir une identité à gérer: ";
$a->strings["Search Results For:"] = "Résultats pour:";
$a->strings["Remove term"] = "Retirer le terme";
$a->strings["Saved Searches"] = "Recherches sauvées";
$a->strings["Saved Searches"] = "Recherches";
$a->strings["add"] = "ajouter";
$a->strings["Commented Order"] = "Dans l'ordre des commentaires";
$a->strings["Sort by Comment Date"] = "Trier par date de commentaire";
@ -1391,8 +1391,8 @@ $a->strings["show/hide"] = "Montrer/cacher";
$a->strings["No forum subscriptions"] = "Pas d'abonnement au forum";
$a->strings["Forumlist settings updated."] = "Paramètres de la liste des forums mis à jour.";
$a->strings["Forumlist Settings"] = "Paramètres de la liste des forums";
$a->strings["Randomise Forumlist/Forum list"] = "";
$a->strings["Show forumlists/forums on profile forumlist"] = "";
$a->strings["Randomise forum list"] = "";
$a->strings["Show forums on profile page"] = "";
$a->strings["Impressum"] = "Impressum";
$a->strings["Site Owner"] = "Propriétaire du site";
$a->strings["Email Address"] = "Adresse courriel";
@ -1727,7 +1727,7 @@ $a->strings["first"] = "premier";
$a->strings["last"] = "dernier";
$a->strings["next"] = "suivant";
$a->strings["newer"] = "Plus récent";
$a->strings["older"] = "Plus ancient";
$a->strings["older"] = "Plus ancien";
$a->strings["No contacts"] = "Aucun contact";
$a->strings["%d Contact"] = array(
0 => "%d contact",

View file

@ -1,14 +1,14 @@
Caro/a $myname,
Ciao $[myname],
Hai un nuovo seguace a $sitename - '$requestor'.
Un nuovo utente ha iniziato a seguirti su $[sitename] - '$[requestor]'.
Puoi visitare il suo profilo a $url.
Puoi vedere il suo profilo su $[url].
Accedi al tuo sito per approvare o ignorare/cancellare la richiesta.
Accedi sul tuo sito per approvare o ignorare la richiesta.
$siteurl
$[siteurl]
Saluti,
L'amministratore di $sitename
L'amministratore di $[sitename]

View file

@ -1,23 +1,22 @@
Caro/a $username,
Ciao $[username],
Grandi notizie... '$fn' a '$dfrn_url' ha accettato la tua richiesta di
di connessione a '$sitename'.
Ottime notizie... '$[fn]' di '$[dfrn_url]' ha accettato
la tua richiesta di connessione su '$[sitename]'.
Ora siete amici a vicenda e potete scambiarvi aggiornamenti di stato, foto e
email senza restrizioni.
Adesso siete amici reciproci e potete scambiarvi aggiornamenti di stato, foto ed email
senza restrizioni.
Visita la tua pagina 'Contatti' su $sitename se vuoi fare una qualsiasi modifica
a questa relazione.
Vai nella pagina 'Contatti' di $[sitename] se vuoi effettuare
qualche modifica riguardo questa relazione
$siteurl
$[siteurl]
[Per esempio, puoi voler creare un profilo separato con informazioni che non
sono disponibili al pubblico generico, e assegnarne i diritti di lettura a
'$fn'].
[Ad esempio, potresti creare un profilo separato con le informazioni che non
sono disponibili pubblicamente - ed permettere di vederlo a '$[fn]'].
Sinceramente tuo,
Saluti,
L'amministratore di $sitename
l'amministratore di $[sitename]

View file

@ -1,22 +1,22 @@
Caro/a $username,
Ciao $[username],
'$fn' a '$dfrn_url' ha accettato la tua richiesta di
connessione a '$sitename'.
'$[fn]' di '$[dfrn_url]' ha accettato
la tua richiesta di connessione a '$[sitename]'.
'$fn' ha scelto di accertarti come "fan", che limita alcune forme di
comunicazione, come i messaggi privati e alcune interazioni con il profilo.
Se e' una celebrita' o una pagina di community, queste impostazioni
sono applicate automaticamente.
'$[fn]' ha deciso di accettarti come "fan", il che restringe
alcune forme di comunicazione - come i messaggi privati e alcune
interazioni. Se è la pagina di una persona famosa o di una comunità, queste impostazioni saranno
applicate automaticamente.
'$fn' puo' decidere di estendere in una relazione piu' permissiva
nel futuro.
'$[fn]' potrebbe decidere di estendere questa relazione in una comunicazione bidirezionale o ancora più permissiva
.
Comincerai a rivecere gli aggiornamenti pubblici da '$fn',
che apparira' sulla tua pagina 'Rete' su
Inizierai a ricevere gli aggiornamenti di stato pubblici da '$[fn]',
che apparirà nella tua pagina 'Rete'
$siteurl
$[siteurl]
Saluti,
L'amministratore di $sitename
l'amministratore di $[sitename]

View file

@ -1,34 +1,32 @@
Caro/a $username,
E' arrivata recentemente una richiesta di resettare la password del tuo
account su $sitename. Per confermare questa richiesta, clicca sul link di
verifica qui sotto o incollalo nella barra dell'indirizzo del tuo browser web.
Ciao $[username],
Su $[sitename] è stata ricevuta una richiesta di azzeramento di password per un account.
Per confermare la richiesta, clicca sul link di verifica
qui in fondo oppure copialo nella barra degli indirizzi del tuo browser.
Se NON hai richiesto questa modifica, NON seguire il link e ignora e cancella
questa mail.
Se NON hai richiesto l'azzeramento, NON seguire il link
e ignora e/o cancella questa email.
La tua password non verrà cambiata finchè non verifichiame che hai richiesto tu
la modifica.
La tua password non sarà modificata finché non avremo verificato che
hai fatto questa richiesta.
Segui questo link per verificare la tua identità:
Per verificare la tua identità clicca su:
$reset_link
$[reset_link]
Riceverai un messaggio contenente la nuova password.
Dopo la verifica riceverai un messaggio di risposta con la nuova password.
Potrai cambiare questa password dalla pagina delle impostazioni del tuo account
dopo aver effettuato l'accesso.
Potrai cambiare la password dalla pagina delle impostazioni dopo aver effettuato l'accesso.
I dettagli d'accesso sono i seguenti:
I dati di accesso sono i seguenti:
Sito: $siteurl
Nome: $email
Sito:»$[siteurl]
Nome utente:»$[email]
Saluti,
L'amministratore di $sitename
l'amministratore di $[sitename]

View file

@ -1,1447 +1,1211 @@
# FRIENDICA Distributed Social Network
# Copyright (C) 2010, 2011 Mike Macgirvin
# This file is distributed under the same license as the Friendika package.
# Copyright (C) 2010, 2011 the Friendica Project
# This file is distributed under the same license as the Friendica package.
#
# Translators:
# fabrixxm <fabrix.xm@gmail.com>, 2011.
# <fabrix.xm@gmail.com>, 2011.
# <fabrix.xm@gmail.com>, 2011, 2012.
# Francesco Apruzzese <cescoap@gmail.com>, 2012.
# <marco@carnazzo.it>, 2012.
# Paolo Pa <pynolo@tarine.net>, 2012.
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
"POT-Creation-Date: 2011-11-15 17:20+0100\n"
"PO-Revision-Date: 2011-11-15 18:40+0000\n"
"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
"Language-Team: Italian (http://www.transifex.net/projects/p/friendica/team/it/)\n"
"POT-Creation-Date: 2012-09-27 10:00-0700\n"
"PO-Revision-Date: 2012-09-28 08:27+0000\n"
"Last-Translator: ufic <marco@carnazzo.it>\n"
"Language-Team: Italian (http://www.transifex.com/projects/p/friendica/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"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: ../../index.php:213 ../../mod/help.php:38
msgid "Not Found"
msgstr "Non Trovato"
#: ../../mod/oexchange.php:25
msgid "Post successful."
msgstr "Inviato!"
#: ../../index.php:216 ../../mod/help.php:41
msgid "Page not found."
msgstr "Pagina non trovata."
#: ../../mod/update_notes.php:41 ../../mod/update_community.php:18
#: ../../mod/update_network.php:22 ../../mod/update_profile.php:41
msgid "[Embedded content - reload page to view]"
msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"
#: ../../index.php:279 ../../mod/profperm.php:19 ../../mod/group.php:67
msgid "Permission denied"
msgstr "Permesso negato"
#: ../../mod/crepair.php:102
msgid "Contact settings applied."
msgstr "Contatto modificato."
#: ../../index.php:280 ../../mod/manage.php:75 ../../mod/wall_upload.php:42
#: ../../mod/follow.php:8 ../../mod/profile_photo.php:19
#: ../../mod/profile_photo.php:137 ../../mod/profile_photo.php:148
#: ../../mod/profile_photo.php:159 ../../mod/wall_attach.php:43
#: ../../mod/suggest.php:28 ../../mod/regmod.php:111 ../../mod/profiles.php:7
#: ../../mod/profiles.php:229 ../../mod/settings.php:41
#: ../../mod/settings.php:46 ../../mod/settings.php:376
#: ../../mod/photos.php:123 ../../mod/photos.php:858 ../../mod/display.php:111
#: ../../mod/editpost.php:10 ../../mod/invite.php:13 ../../mod/invite.php:81
#: ../../mod/contacts.php:115 ../../mod/register.php:27
#: ../../mod/allfriends.php:9 ../../mod/install.php:96 ../../mod/network.php:6
#: ../../mod/events.php:109 ../../mod/notifications.php:62
#: ../../mod/crepair.php:113 ../../mod/api.php:26 ../../mod/api.php:31
#: ../../mod/notes.php:20 ../../mod/fsuggest.php:78 ../../mod/item.php:113
#: ../../mod/message.php:9 ../../mod/message.php:42
#: ../../mod/dfrn_confirm.php:53 ../../mod/viewcontacts.php:21
#: ../../mod/group.php:19 ../../mod/attach.php:33 ../../mod/common.php:9
#: ../../addon/facebook/facebook.php:331 ../../include/items.php:2874
#: ../../mod/crepair.php:104
msgid "Contact update failed."
msgstr "Le modifiche al contatto non sono state salvate."
#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:55
#: ../../mod/fsuggest.php:78 ../../mod/events.php:140 ../../mod/api.php:26
#: ../../mod/api.php:31 ../../mod/photos.php:128 ../../mod/photos.php:972
#: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135
#: ../../mod/notifications.php:66 ../../mod/contacts.php:146
#: ../../mod/settings.php:86 ../../mod/settings.php:525
#: ../../mod/settings.php:530 ../../mod/manage.php:87 ../../mod/network.php:6
#: ../../mod/notes.php:20 ../../mod/wallmessage.php:9
#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
#: ../../mod/wallmessage.php:103 ../../mod/attach.php:33
#: ../../mod/group.php:19 ../../mod/viewcontacts.php:22
#: ../../mod/register.php:38 ../../mod/regmod.php:116 ../../mod/item.php:126
#: ../../mod/item.php:142 ../../mod/mood.php:114
#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
#: ../../mod/message.php:38 ../../mod/message.php:168
#: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25
#: ../../mod/wall_upload.php:64 ../../mod/follow.php:9
#: ../../mod/display.php:141 ../../mod/profiles.php:7
#: ../../mod/profiles.php:413 ../../mod/delegate.php:6
#: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510
#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159
#: ../../addon/fbpost/fbpost.php:165
#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3913
#: ../../index.php:317
msgid "Permission denied."
msgstr "Permesso negato."
#: ../../boot.php:419
msgid "Delete this item?"
msgstr "Cancellare questo elemento?"
#: ../../mod/crepair.php:129 ../../mod/fsuggest.php:20
#: ../../mod/fsuggest.php:92 ../../mod/dfrn_confirm.php:118
msgid "Contact not found."
msgstr "Contatto non trovato."
#: ../../boot.php:420 ../../mod/photos.php:1202 ../../mod/photos.php:1241
#: ../../mod/photos.php:1272 ../../include/conversation.php:433
msgid "Comment"
msgstr "Commento"
#: ../../mod/crepair.php:135
msgid "Repair Contact Settings"
msgstr "Ripara il contatto"
#: ../../boot.php:662
msgid "Create a New Account"
msgstr "Crea un Nuovo Account"
#: ../../boot.php:663 ../../mod/register.php:530 ../../include/nav.php:77
msgid "Register"
msgstr "Regitrati"
#: ../../boot.php:679 ../../include/nav.php:44
msgid "Logout"
msgstr "Esci"
#: ../../boot.php:680 ../../addon/communityhome/communityhome.php:28
#: ../../addon/communityhome/communityhome.php:34 ../../include/nav.php:62
msgid "Login"
msgstr "Accedi"
#: ../../boot.php:682
msgid "Nickname or Email address: "
msgstr "Soprannome o indirizzo Email: "
#: ../../boot.php:683
msgid "Password: "
msgstr "Password: "
#: ../../boot.php:686
msgid "OpenID: "
msgstr "OpenID:"
#: ../../boot.php:692
msgid "Forgot your password?"
msgstr "Dimenticata la password?"
#: ../../boot.php:693 ../../mod/lostpass.php:82
msgid "Password Reset"
msgstr "Resetta password"
#: ../../boot.php:815 ../../mod/profile.php:10 ../../mod/hcard.php:10
msgid "No profile"
msgstr "Nessun profilo"
#: ../../boot.php:839
msgid "Edit profile"
msgstr "Modifica il profilo"
#: ../../boot.php:890 ../../include/contact_widgets.php:9
msgid "Connect"
msgstr "Connetti"
#: ../../boot.php:900 ../../include/nav.php:129
msgid "Profiles"
msgstr "Profili"
#: ../../boot.php:900 ../../include/nav.php:129
msgid "Manage/edit profiles"
msgstr "Gestisci/modifica i profili"
#: ../../boot.php:906 ../../mod/profiles.php:462
msgid "Change profile photo"
msgstr "Cambia la foto del profilo"
#: ../../boot.php:907 ../../mod/profiles.php:463
msgid "Create New Profile"
msgstr "Crea un nuovo profilo"
#: ../../boot.php:917 ../../mod/profiles.php:473
msgid "Profile Image"
msgstr "Immagine del Profilo"
#: ../../boot.php:920 ../../mod/profiles.php:475
msgid "visible to everybody"
msgstr "visibile a tutti"
#: ../../boot.php:921 ../../mod/profiles.php:476
msgid "Edit visibility"
msgstr "Modifica visibilità"
#: ../../boot.php:940 ../../mod/events.php:325 ../../include/event.php:37
#: ../../include/bb2diaspora.php:249
msgid "Location:"
msgstr "Posizione:"
#: ../../boot.php:942 ../../include/profile_advanced.php:17
msgid "Gender:"
msgstr "Genere:"
#: ../../boot.php:945 ../../include/profile_advanced.php:37
msgid "Status:"
msgstr "Stato:"
#: ../../boot.php:947 ../../include/profile_advanced.php:45
msgid "Homepage:"
msgstr "Homepage:"
#: ../../boot.php:1006 ../../boot.php:1068
msgid "g A l F d"
msgstr "g A l d F"
#: ../../boot.php:1007 ../../boot.php:1069
msgid "F d"
msgstr "d F"
#: ../../boot.php:1030
msgid "Birthday Reminders"
msgstr "Promemoria Compleanni"
#: ../../boot.php:1031
msgid "Birthdays this week:"
msgstr "Compleanni questa settimana:"
#: ../../boot.php:1047 ../../boot.php:1111
msgid "[today]"
msgstr "[oggi]"
#: ../../boot.php:1092
msgid "Event Reminders"
msgstr "Promemoria"
#: ../../boot.php:1093
msgid "Events this week:"
msgstr "Eventi di questa settimana:"
#: ../../boot.php:1105
msgid "[No description]"
msgstr "[Nessuna descrizione]"
#: ../../boot.php:1282 ../../include/nav.php:47
msgid "Status"
msgstr "Stato"
#: ../../boot.php:1287 ../../mod/profperm.php:103
#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:74
#: ../../include/nav.php:48
msgid "Profile"
msgstr "Profilo"
#: ../../boot.php:1292 ../../include/nav.php:49
msgid "Photos"
msgstr "Foto"
#: ../../boot.php:1300 ../../mod/events.php:117 ../../include/nav.php:50
msgid "Events"
msgstr "Eventi"
#: ../../boot.php:1305 ../../mod/notes.php:44
msgid "Personal Notes"
msgstr "Note personali"
#: ../../mod/manage.php:37
#, php-format
msgid "Welcome back %s"
msgstr "Bentornato %s"
#: ../../mod/manage.php:87
msgid "Manage Identities and/or Pages"
msgstr "Gestisci Indentità e/o Pagine"
#: ../../mod/manage.php:90
#: ../../mod/crepair.php:137
msgid ""
"(Toggle between different identities or community/group pages which share "
"your account details.)"
msgstr ""
"(Passa tra diverse identità o pagine di comunità/gruppi che condividono i "
"dettagli del tuo account.)"
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
" information your communications with this contact may stop working."
msgstr "<strong>ATTENZIONE: Queste sono impostazioni avanzate</strong> e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più"
#: ../../mod/manage.php:92
msgid "Select an identity to manage: "
msgstr "Seleziona una identità da gestire:"
#: ../../mod/manage.php:106 ../../mod/profiles.php:375
#: ../../mod/settings.php:420 ../../mod/settings.php:559
#: ../../mod/settings.php:707 ../../mod/photos.php:886
#: ../../mod/photos.php:944 ../../mod/photos.php:1163
#: ../../mod/photos.php:1203 ../../mod/photos.php:1242
#: ../../mod/photos.php:1273 ../../mod/localtime.php:45
#: ../../mod/invite.php:106 ../../mod/contacts.php:306
#: ../../mod/install.php:137 ../../mod/events.php:330
#: ../../mod/crepair.php:162 ../../mod/fsuggest.php:107
#: ../../mod/admin.php:296 ../../mod/admin.php:461 ../../mod/admin.php:587
#: ../../mod/admin.php:652 ../../mod/group.php:84 ../../mod/group.php:167
#: ../../addon/tumblr/tumblr.php:89 ../../addon/twitter/twitter.php:179
#: ../../addon/twitter/twitter.php:202 ../../addon/twitter/twitter.php:299
#: ../../addon/statusnet/statusnet.php:282
#: ../../addon/statusnet/statusnet.php:296
#: ../../addon/statusnet/statusnet.php:322
#: ../../addon/statusnet/statusnet.php:329
#: ../../addon/statusnet/statusnet.php:351
#: ../../addon/statusnet/statusnet.php:486 ../../addon/oembed/oembed.php:41
#: ../../addon/uhremotestorage/uhremotestorage.php:58
#: ../../addon/impressum/impressum.php:69
#: ../../addon/facebook/facebook.php:404 ../../addon/nsfw/nsfw.php:53
#: ../../addon/randplace/randplace.php:178 ../../addon/piwik/piwik.php:81
#: ../../addon/wppost/wppost.php:101 ../../include/conversation.php:434
msgid "Submit"
msgstr "Invia"
#: ../../mod/dirfind.php:23
msgid "People Search"
msgstr "Cerca persone"
#: ../../mod/dirfind.php:57 ../../mod/match.php:57
msgid "No matches"
msgstr "Nessun risultato"
#: ../../mod/wall_upload.php:56 ../../mod/profile_photo.php:113
#, php-format
msgid "Image exceeds size limit of %d"
msgstr "La dimensionde dell'immagine supera il limite di %d"
#: ../../mod/wall_upload.php:65 ../../mod/profile_photo.php:122
#: ../../mod/photos.php:647
msgid "Unable to process image."
msgstr "Impossibile elaborare l'immagine."
#: ../../mod/wall_upload.php:81 ../../mod/wall_upload.php:90
#: ../../mod/wall_upload.php:97 ../../mod/item.php:299
#: ../../include/message.php:82
msgid "Wall Photos"
msgstr "Foto Bacheca"
#: ../../mod/wall_upload.php:84 ../../mod/profile_photo.php:251
#: ../../mod/photos.php:667
msgid "Image upload failed."
msgstr "Caricamento immagine fallito."
#: ../../mod/profile.php:105 ../../mod/display.php:66
msgid "Access to this profile has been restricted."
msgstr "L'accesso a questo profilo è stato limitato."
#: ../../mod/profile.php:127
msgid "Tips for New Members"
msgstr "Consigli per i Nuovi Utenti"
#: ../../mod/follow.php:20 ../../mod/dfrn_request.php:340
msgid "Disallowed profile URL."
msgstr "Indirizzo profilo non permesso."
#: ../../mod/follow.php:39
#: ../../mod/crepair.php:138
msgid ""
"This site is not configured to allow communications with other networks."
msgstr ""
"Questo sito non è configurato per permettere la comunicazione con altri "
"network."
"Please use your browser 'Back' button <strong>now</strong> if you are "
"uncertain what to do on this page."
msgstr "Usa <strong>ora</strong> il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina."
#: ../../mod/follow.php:40 ../../mod/follow.php:50
msgid "No compatible communication protocols or feeds were discovered."
msgstr ""
"Non sono stati trovati nessun protocollo di comunicazione o feed "
"compatibili."
#: ../../mod/crepair.php:144
msgid "Return to contact editor"
msgstr "Ritorna alla modifica contatto"
#: ../../mod/follow.php:48
msgid "The profile address specified does not provide adequate information."
msgstr ""
"L'indirizzo del profilo specificato non fornisce adeguate informazioni."
#: ../../mod/follow.php:52
msgid "An author or name was not found."
msgstr "Non è stato trovato un nome dell'autore"
#: ../../mod/follow.php:54
msgid "No browser URL could be matched to this address."
msgstr "Nessun URL puo' essere associato a questo indirizzo."
#: ../../mod/follow.php:61
msgid ""
"The profile address specified belongs to a network which has been disabled "
"on this site."
msgstr ""
"L'indirizzo del profilo specificato appartiene a un network che è stato "
"disabilitato su questo sito."
#: ../../mod/follow.php:66
msgid ""
"Limited profile. This person will be unable to receive direct/personal "
"notifications from you."
msgstr ""
"Profilo limitato. Questa persona non sarà in grado di ricevere nofiche "
"dirette/personali da te."
#: ../../mod/follow.php:133
msgid "Unable to retrieve contact information."
msgstr "Impossibile recuperare informazioni sul contatto."
#: ../../mod/follow.php:179
msgid "following"
msgstr "segue"
#: ../../mod/profile_photo.php:28
msgid "Image uploaded but image cropping failed."
msgstr "L'immagine è stata caricata, ma il ritaglio è fallito."
#: ../../mod/profile_photo.php:58 ../../mod/profile_photo.php:65
#: ../../mod/profile_photo.php:72 ../../mod/profile_photo.php:170
#: ../../mod/profile_photo.php:246 ../../mod/profile_photo.php:255
#: ../../mod/photos.php:144 ../../mod/photos.php:591 ../../mod/photos.php:936
#: ../../mod/photos.php:951 ../../mod/register.php:318
#: ../../mod/register.php:325 ../../mod/register.php:332
#: ../../addon/communityhome/communityhome.php:111
msgid "Profile Photos"
msgstr "Foto del profilo"
#: ../../mod/profile_photo.php:61 ../../mod/profile_photo.php:68
#: ../../mod/profile_photo.php:75 ../../mod/profile_photo.php:258
#, php-format
msgid "Image size reduction [%s] failed."
msgstr "Riduzione della dimensione dell'immagine [%s] fallito."
#: ../../mod/profile_photo.php:89
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:99
msgid "Unable to process image"
msgstr "Impossibile elaborare l'immagine"
#: ../../mod/profile_photo.php:203
msgid "Upload File:"
msgstr "Carica un file:"
#: ../../mod/profile_photo.php:204
msgid "Upload Profile Photo"
msgstr "Carica la Foto del Profilo"
#: ../../mod/profile_photo.php:205
msgid "Upload"
msgstr "Carica"
#: ../../mod/profile_photo.php:206 ../../mod/settings.php:686
msgid "or"
msgstr "o"
#: ../../mod/profile_photo.php:206
msgid "skip this step"
msgstr "salta questo passaggio"
#: ../../mod/profile_photo.php:206
msgid "select a photo from your photo albums"
msgstr "seleziona una foto dai tuoi album"
#: ../../mod/profile_photo.php:219
msgid "Crop Image"
msgstr "Ritaglia immagine"
#: ../../mod/profile_photo.php:220
msgid "Please adjust the image cropping for optimum viewing."
msgstr "Sistema il ritaglio dell'imagine per una visualizzazione ottimale."
#: ../../mod/profile_photo.php:221
msgid "Done Editing"
msgstr "Fatto"
#: ../../mod/profile_photo.php:249
msgid "Image uploaded successfully."
msgstr "Immagine caricata con successo."
#: ../../mod/home.php:23 ../../addon/communityhome/communityhome.php:179
#, php-format
msgid "Welcome to %s"
msgstr "Benvenuto su %s"
#: ../../mod/update_community.php:18 ../../mod/update_network.php:22
#: ../../mod/update_profile.php:41 ../../mod/update_notes.php:41
msgid "[Embedded content - reload page to view]"
msgstr "[Contenuto incorporato - ricarica la pagina per vederlo]"
#: ../../mod/wall_attach.php:57
#, php-format
msgid "File exceeds size limit of %d"
msgstr "Il file supera il limite di dimensione di %d"
#: ../../mod/wall_attach.php:87 ../../mod/wall_attach.php:98
msgid "File upload failed."
msgstr "Caricamento del file non riuscito."
#: ../../mod/suggest.php:36 ../../include/contact_widgets.php:35
msgid "Friend Suggestions"
msgstr "Contatti suggeriti"
#: ../../mod/suggest.php:42
msgid ""
"No suggestions. This works best when you have more than one contact/friend."
msgstr "Nessun suggerimento. Funziona meglio quando si ha più di un contatto."
#: ../../mod/suggest.php:55
msgid "Ignore/Hide"
msgstr "Ignora / Nascondi"
#: ../../mod/regmod.php:52 ../../mod/register.php:369
#, php-format
msgid "Registration details for %s"
msgstr "Dettagli registrazione per %s"
#: ../../mod/regmod.php:54 ../../mod/register.php:371
#: ../../mod/register.php:425 ../../mod/dfrn_request.php:553
#: ../../mod/lostpass.php:44 ../../mod/lostpass.php:106
#: ../../mod/dfrn_confirm.php:703 ../../include/items.php:1767
#: ../../include/items.php:2114 ../../include/items.php:2440
msgid "Administrator"
msgstr "Amministratore"
#: ../../mod/regmod.php:61
msgid "Account approved."
msgstr "Account approvato."
#: ../../mod/regmod.php:93
#, php-format
msgid "Registration revoked for %s"
msgstr "Registrazione revocata per %s"
#: ../../mod/regmod.php:105
msgid "Please login."
msgstr "Accedi."
#: ../../mod/profiles.php:21 ../../mod/profiles.php:239
#: ../../mod/profiles.php:344 ../../mod/dfrn_confirm.php:62
msgid "Profile not found."
msgstr "Profilo non trovato."
#: ../../mod/profiles.php:28
msgid "Profile Name is required."
msgstr "Il Nome Profilo è richiesto ."
#: ../../mod/profiles.php:198
msgid "Profile updated."
msgstr "Profilo aggiornato."
#: ../../mod/profiles.php:256
msgid "Profile deleted."
msgstr "Profilo elminato."
#: ../../mod/profiles.php:272 ../../mod/profiles.php:303
msgid "Profile-"
msgstr "Profilo-"
#: ../../mod/profiles.php:291 ../../mod/profiles.php:330
msgid "New profile created."
msgstr "Nuovo profilo creato."
#: ../../mod/profiles.php:309
msgid "Profile unavailable to clone."
msgstr "Impossibile duplicare il plrofilo."
#: ../../mod/profiles.php:356
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:357 ../../mod/settings.php:629
#: ../../mod/settings.php:635 ../../mod/settings.php:643
#: ../../mod/settings.php:647 ../../mod/settings.php:652
#: ../../mod/settings.php:658 ../../mod/register.php:500
#: ../../mod/dfrn_request.php:645 ../../mod/api.php:105
msgid "Yes"
msgstr "Si"
#: ../../mod/profiles.php:358 ../../mod/settings.php:629
#: ../../mod/settings.php:635 ../../mod/settings.php:643
#: ../../mod/settings.php:647 ../../mod/settings.php:652
#: ../../mod/settings.php:658 ../../mod/register.php:501
#: ../../mod/dfrn_request.php:646 ../../mod/api.php:106
msgid "No"
msgstr "No"
#: ../../mod/profiles.php:374
msgid "Edit Profile Details"
msgstr "Modifica i Dettagli del Profilo"
#: ../../mod/profiles.php:376
msgid "View this profile"
msgstr "Visualizza questo profilo"
#: ../../mod/profiles.php:377
msgid "Create a new profile using these settings"
msgstr "Crea un nuovo profilo usando queste impostazioni"
#: ../../mod/profiles.php:378
msgid "Clone this profile"
msgstr "Clona questo profilo"
#: ../../mod/profiles.php:379
msgid "Delete this profile"
msgstr "Cancella questo profilo"
#: ../../mod/profiles.php:380
msgid "Profile Name:"
msgstr "Nome del profilo:"
#: ../../mod/profiles.php:381
msgid "Your Full Name:"
msgstr "Il tuo nome completo:"
#: ../../mod/profiles.php:382
msgid "Title/Description:"
msgstr "Breve descrizione (es. titolo, posizione, altro):"
#: ../../mod/profiles.php:383
msgid "Your Gender:"
msgstr "Il tuo sesso:"
#: ../../mod/profiles.php:384
#, php-format
msgid "Birthday (%s):"
msgstr "Compleanno (%s)"
#: ../../mod/profiles.php:385
msgid "Street Address:"
msgstr "Indirizzo:"
#: ../../mod/profiles.php:386
msgid "Locality/City:"
msgstr "Località/Città:"
#: ../../mod/profiles.php:387
msgid "Postal/Zip Code:"
msgstr "CAP:"
#: ../../mod/profiles.php:388
msgid "Country:"
msgstr "Nazione:"
#: ../../mod/profiles.php:389
msgid "Region/State:"
msgstr "Regione/Stato:"
#: ../../mod/profiles.php:390
msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
msgstr "<span class=\"heart\">&hearts;</span> Stato sentimentale:"
#: ../../mod/profiles.php:391
msgid "Who: (if applicable)"
msgstr "Con chi: (se possibile)"
#: ../../mod/profiles.php:392
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com"
#: ../../mod/profiles.php:393 ../../include/profile_advanced.php:43
msgid "Sexual Preference:"
msgstr "Preferenza sessuale:"
#: ../../mod/profiles.php:394
msgid "Homepage URL:"
msgstr "Indirizzo homepage:"
#: ../../mod/profiles.php:395 ../../include/profile_advanced.php:47
msgid "Political Views:"
msgstr "Orientamento politico:"
#: ../../mod/profiles.php:396
msgid "Religious Views:"
msgstr "Orientamento religioso:"
#: ../../mod/profiles.php:397
msgid "Public Keywords:"
msgstr "Parole chiave pubbliche:"
#: ../../mod/profiles.php:398
msgid "Private Keywords:"
msgstr "Parole chiave private:"
#: ../../mod/profiles.php:399
msgid "Example: fishing photography software"
msgstr "Esempio: pesca fotografia programmazione"
#: ../../mod/profiles.php:400
msgid "(Used for suggesting potential friends, can be seen by others)"
msgstr ""
"(Utilizzato per suggerire potenziali amici, può essere visto da altri)"
#: ../../mod/profiles.php:401
msgid "(Used for searching profiles, never shown to others)"
msgstr "(Usato per cercare tra i profili, mai mostrato ad altri)"
#: ../../mod/profiles.php:402
msgid "Tell us about yourself..."
msgstr "Racconta di te..."
#: ../../mod/profiles.php:403
msgid "Hobbies/Interests"
msgstr "Hobbie/Interessi"
#: ../../mod/profiles.php:404
msgid "Contact information and Social Networks"
msgstr "Informazioni su contatti e Social network"
#: ../../mod/profiles.php:405
msgid "Musical interests"
msgstr "Interessi musicali"
#: ../../mod/profiles.php:406
msgid "Books, literature"
msgstr "Libri, letteratura"
#: ../../mod/profiles.php:407
msgid "Television"
msgstr "Televisione"
#: ../../mod/profiles.php:408
msgid "Film/dance/culture/entertainment"
msgstr "Film/danza/cultura/intrattenimento"
#: ../../mod/profiles.php:409
msgid "Love/romance"
msgstr "Amore/romanticismo"
#: ../../mod/profiles.php:410
msgid "Work/employment"
msgstr "Lavoro/impiego"
#: ../../mod/profiles.php:411
msgid "School/education"
msgstr "Scuola/educazione"
#: ../../mod/profiles.php:416
msgid ""
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
"be visible to anybody using the internet."
msgstr ""
"Questo è il tuo profilo <strong>publico</strong>.<br "
"/><strong>Potrebbe</strong> essere visto da chiunque attraverso internet."
#: ../../mod/profiles.php:426 ../../mod/directory.php:122
msgid "Age: "
msgstr "Età : "
#: ../../mod/profiles.php:461
msgid "Edit/Manage Profiles"
msgstr "Modifica / Gestisci profili"
#: ../../mod/notice.php:15 ../../mod/display.php:28 ../../mod/display.php:115
#: ../../mod/viewsrc.php:15 ../../mod/admin.php:111 ../../mod/admin.php:502
#: ../../include/items.php:2786
msgid "Item not found."
msgstr "Elemento non trovato."
#: ../../mod/settings.php:9 ../../mod/photos.php:62
msgid "everybody"
msgstr "tutti"
#: ../../mod/settings.php:67
msgid "Missing some important data!"
msgstr "Mancano alcuni dati importanti!"
#: ../../mod/settings.php:70 ../../mod/settings.php:446 ../../mod/admin.php:62
msgid "Update"
msgstr "Aggiorna"
#: ../../mod/settings.php:165
msgid "Failed to connect with email account using the settings provided."
msgstr "Impossibile collegarsi all'account email con i parametri forniti."
#: ../../mod/settings.php:170
msgid "Email settings updated."
msgstr "Impostazioni e-mail aggiornate."
#: ../../mod/settings.php:188
msgid "Passwords do not match. Password unchanged."
msgstr "Le password non corrispondono. Passoword non cambiata."
#: ../../mod/settings.php:193
msgid "Empty passwords are not allowed. Password unchanged."
msgstr "Password vuote non sono consentite. Password non cambiata."
#: ../../mod/settings.php:204
msgid "Password changed."
msgstr "Password cambiata."
#: ../../mod/settings.php:206
msgid "Password update failed. Please try again."
msgstr "Aggiornamento password fallito. Prova ancora."
#: ../../mod/settings.php:253
msgid " Please use a shorter name."
msgstr " Usa un nome più corto."
#: ../../mod/settings.php:255
msgid " Name too short."
msgstr " Nome troppo corto."
#: ../../mod/settings.php:261
msgid " Not valid email."
msgstr " Email non valida."
#: ../../mod/settings.php:263
msgid " Cannot change to that email."
msgstr "Non puoi usare quella email."
#: ../../mod/settings.php:323 ../../addon/twitter/twitter.php:294
#: ../../addon/impressum/impressum.php:64
#: ../../addon/facebook/facebook.php:320 ../../addon/piwik/piwik.php:94
msgid "Settings updated."
msgstr "Impostazioni aggiornate."
#: ../../mod/settings.php:382 ../../include/nav.php:128
msgid "Account settings"
msgstr "Parametri account"
#: ../../mod/settings.php:387
msgid "Connector settings"
msgstr "Impostazioni connettori"
#: ../../mod/settings.php:392
msgid "Plugin settings"
msgstr "Impostazioni plugin"
#: ../../mod/settings.php:397
msgid "Connections"
msgstr "Connessioni"
#: ../../mod/settings.php:402
msgid "Export personal data"
msgstr "Esporta dati personali"
#: ../../mod/settings.php:419 ../../mod/settings.php:445
#: ../../mod/settings.php:478
msgid "Add application"
msgstr "Aggiungi applicazione"
#: ../../mod/settings.php:421 ../../mod/settings.php:447
#: ../../mod/dfrn_request.php:655 ../../mod/tagrm.php:11
#: ../../mod/tagrm.php:94 ../../addon/js_upload/js_upload.php:45
msgid "Cancel"
msgstr "Annulla"
#: ../../mod/settings.php:422 ../../mod/settings.php:448
#: ../../mod/crepair.php:144 ../../mod/admin.php:464 ../../mod/admin.php:473
#: ../../mod/crepair.php:148 ../../mod/settings.php:545
#: ../../mod/settings.php:571 ../../mod/admin.php:692 ../../mod/admin.php:702
msgid "Name"
msgstr "Nome"
#: ../../mod/settings.php:423 ../../mod/settings.php:449
#: ../../addon/statusnet/statusnet.php:480
msgid "Consumer Key"
msgstr "Consumer Key"
#: ../../mod/crepair.php:149
msgid "Account Nickname"
msgstr "Nome utente"
#: ../../mod/settings.php:424 ../../mod/settings.php:450
#: ../../addon/statusnet/statusnet.php:479
msgid "Consumer Secret"
msgstr "Consumer Secret"
#: ../../mod/crepair.php:150
msgid "@Tagname - overrides Name/Nickname"
msgstr "@TagName - al posto del nome utente"
#: ../../mod/settings.php:425 ../../mod/settings.php:451
msgid "Redirect"
msgstr "Redirect"
#: ../../mod/crepair.php:151
msgid "Account URL"
msgstr "URL dell'utente"
#: ../../mod/settings.php:426 ../../mod/settings.php:452
msgid "Icon url"
msgstr "Url icona"
#: ../../mod/crepair.php:152
msgid "Friend Request URL"
msgstr "URL Richiesta Amicizia"
#: ../../mod/settings.php:437
msgid "You can't edit this application."
msgstr "Non puoi modificare questa applicazione."
#: ../../mod/crepair.php:153
msgid "Friend Confirm URL"
msgstr "URL Conferma Amicizia"
#: ../../mod/settings.php:477
msgid "Connected Apps"
msgstr "Applicazioni Collegate"
#: ../../mod/crepair.php:154
msgid "Notification Endpoint URL"
msgstr "URL Notifiche"
#: ../../mod/settings.php:479 ../../mod/editpost.php:90
#: ../../include/conversation.php:441 ../../include/group.php:190
msgid "Edit"
msgstr "Modifica"
#: ../../mod/crepair.php:155
msgid "Poll/Feed URL"
msgstr "URL Feed"
#: ../../mod/settings.php:480 ../../mod/photos.php:1300
#: ../../mod/admin.php:468 ../../mod/group.php:154
#: ../../include/conversation.php:211 ../../include/conversation.php:454
msgid "Delete"
msgstr "Cancella"
#: ../../mod/crepair.php:156
msgid "New photo from this URL"
msgstr "Nuova foto da questo URL"
#: ../../mod/settings.php:481
msgid "Client key starts with"
msgstr "Chiave del client inizia con"
#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
#: ../../mod/events.php:455 ../../mod/photos.php:1005
#: ../../mod/photos.php:1081 ../../mod/photos.php:1338
#: ../../mod/photos.php:1378 ../../mod/photos.php:1419
#: ../../mod/photos.php:1451 ../../mod/install.php:246
#: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199
#: ../../mod/content.php:693 ../../mod/contacts.php:348
#: ../../mod/settings.php:543 ../../mod/settings.php:697
#: ../../mod/settings.php:769 ../../mod/settings.php:976
#: ../../mod/group.php:85 ../../mod/mood.php:137 ../../mod/message.php:294
#: ../../mod/message.php:480 ../../mod/admin.php:443 ../../mod/admin.php:689
#: ../../mod/admin.php:826 ../../mod/admin.php:1025 ../../mod/admin.php:1112
#: ../../mod/profiles.php:583 ../../mod/invite.php:119
#: ../../addon/fromgplus/fromgplus.php:40
#: ../../addon/facebook/facebook.php:619
#: ../../addon/snautofollow/snautofollow.php:64 ../../addon/bg/bg.php:90
#: ../../addon/fbpost/fbpost.php:226 ../../addon/yourls/yourls.php:76
#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:88
#: ../../addon/page/page.php:210 ../../addon/planets/planets.php:158
#: ../../addon/uhremotestorage/uhremotestorage.php:89
#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93
#: ../../addon/drpost/drpost.php:110 ../../addon/startpage/startpage.php:92
#: ../../addon/geonames/geonames.php:187 ../../addon/oembed.old/oembed.php:41
#: ../../addon/forumlist/forumlist.php:163
#: ../../addon/impressum/impressum.php:83
#: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57
#: ../../addon/qcomment/qcomment.php:61
#: ../../addon/openstreetmap/openstreetmap.php:70
#: ../../addon/group_text/group_text.php:84
#: ../../addon/libravatar/libravatar.php:99
#: ../../addon/libertree/libertree.php:90 ../../addon/altpager/altpager.php:87
#: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84
#: ../../addon/blackout/blackout.php:98 ../../addon/gravatar/gravatar.php:95
#: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93
#: ../../addon/jappixmini/jappixmini.php:307
#: ../../addon/statusnet/statusnet.php:278
#: ../../addon/statusnet/statusnet.php:292
#: ../../addon/statusnet/statusnet.php:318
#: ../../addon/statusnet/statusnet.php:325
#: ../../addon/statusnet/statusnet.php:353
#: ../../addon/statusnet/statusnet.php:576 ../../addon/tumblr/tumblr.php:90
#: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88
#: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48
#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180
#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:394
#: ../../addon/irc/irc.php:55 ../../addon/fromapp/fromapp.php:77
#: ../../addon/blogger/blogger.php:102 ../../addon/posterous/posterous.php:103
#: ../../view/theme/cleanzero/config.php:80
#: ../../view/theme/diabook/theme.php:757
#: ../../view/theme/diabook/config.php:190
#: ../../view/theme/quattro/config.php:53 ../../view/theme/dispy/config.php:70
#: ../../object/Item.php:560
msgid "Submit"
msgstr "Invia"
#: ../../mod/settings.php:482
msgid "No name"
msgstr "Nessun nome"
#: ../../mod/help.php:30
msgid "Help:"
msgstr "Guida:"
#: ../../mod/settings.php:483
msgid "Remove authorization"
msgstr "Rimuovi l'autorizzazione"
#: ../../mod/help.php:34 ../../addon/dav/friendica/layout.fnk.php:225
#: ../../include/nav.php:86
msgid "Help"
msgstr "Guida"
#: ../../mod/settings.php:495
msgid "No Plugin settings configured"
msgstr "Nessun Plugin ha delle configurazioni che puoi modificare"
#: ../../mod/help.php:38 ../../index.php:226
msgid "Not Found"
msgstr "Non trovato"
#: ../../mod/settings.php:502 ../../addon/widgets/widgets.php:122
msgid "Plugin Settings"
msgstr "Impostazioni Plugin"
#: ../../mod/help.php:41 ../../index.php:229
msgid "Page not found."
msgstr "Pagina non trovata."
#: ../../mod/settings.php:515 ../../mod/settings.php:516
#: ../../mod/wall_attach.php:69
#, php-format
msgid "Built-in support for %s connectivity is %s"
msgstr "Il supporto integrato per la connettività con %s è %s"
msgid "File exceeds size limit of %d"
msgstr "Il file supera la dimensione massima di %d"
#: ../../mod/settings.php:515 ../../mod/dfrn_request.php:651
#: ../../include/contact_selectors.php:78
msgid "Diaspora"
msgstr "Diaspora"
#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
msgid "File upload failed."
msgstr "Caricamento del file non riuscito."
#: ../../mod/settings.php:515 ../../mod/settings.php:516
msgid "enabled"
msgstr "abilitato"
#: ../../mod/fsuggest.php:63
msgid "Friend suggestion sent."
msgstr "Suggerimento di amicizia inviato."
#: ../../mod/settings.php:515 ../../mod/settings.php:516
msgid "disabled"
msgstr "disabilitato"
#: ../../mod/fsuggest.php:97
msgid "Suggest Friends"
msgstr "Suggerisci amici"
#: ../../mod/settings.php:516
msgid "StatusNet"
msgstr "StatusNet"
#: ../../mod/fsuggest.php:99
#, php-format
msgid "Suggest a friend for %s"
msgstr "Suggerisci un amico a %s"
#: ../../mod/settings.php:542
msgid "Connector Settings"
msgstr "Impostazioni Connettore"
#: ../../mod/events.php:66
msgid "Event title and start time are required."
msgstr ""
#: ../../mod/settings.php:548
msgid "Email/Mailbox Setup"
msgstr "Impostazioni Email"
#: ../../mod/events.php:279
msgid "l, F j"
msgstr "l j F"
#: ../../mod/settings.php:549
#: ../../mod/events.php:301
msgid "Edit event"
msgstr "Modifca l'evento"
#: ../../mod/events.php:323 ../../include/text.php:1187
msgid "link to source"
msgstr "Collegamento all'originale"
#: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:131
#: ../../include/nav.php:52 ../../boot.php:1689
msgid "Events"
msgstr "Eventi"
#: ../../mod/events.php:348
msgid "Create New Event"
msgstr "Crea un nuovo evento"
#: ../../mod/events.php:349 ../../addon/dav/friendica/layout.fnk.php:263
msgid "Previous"
msgstr "Precendente"
#: ../../mod/events.php:350 ../../mod/install.php:205
#: ../../addon/dav/friendica/layout.fnk.php:266
msgid "Next"
msgstr "Successivo"
#: ../../mod/events.php:423
msgid "hour:minute"
msgstr "ora:minuti"
#: ../../mod/events.php:433
msgid "Event details"
msgstr "Dettagli dell'evento"
#: ../../mod/events.php:434
#, php-format
msgid "Format is %s %s. Starting date and Title are required."
msgstr ""
#: ../../mod/events.php:436
msgid "Event Starts:"
msgstr "L'evento inizia:"
#: ../../mod/events.php:436 ../../mod/events.php:450
msgid "Required"
msgstr ""
#: ../../mod/events.php:439
msgid "Finish date/time is not known or not relevant"
msgstr "La data/ora di fine non è definita"
#: ../../mod/events.php:441
msgid "Event Finishes:"
msgstr "L'evento finisce:"
#: ../../mod/events.php:444
msgid "Adjust for viewer timezone"
msgstr "Visualizza con il fuso orario di chi legge"
#: ../../mod/events.php:446
msgid "Description:"
msgstr "Descrizione:"
#: ../../mod/events.php:448 ../../mod/directory.php:134
#: ../../include/event.php:40 ../../include/bb2diaspora.php:412
#: ../../boot.php:1226
msgid "Location:"
msgstr "Posizione:"
#: ../../mod/events.php:450
msgid "Title:"
msgstr ""
#: ../../mod/events.php:452
msgid "Share this event"
msgstr "Condividi questo evento"
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:136
#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:544
#: ../../mod/settings.php:570 ../../addon/js_upload/js_upload.php:45
#: ../../include/conversation.php:935
msgid "Cancel"
msgstr "Annulla"
#: ../../mod/tagrm.php:41
msgid "Tag removed"
msgstr "Tag rimosso"
#: ../../mod/tagrm.php:79
msgid "Remove Item Tag"
msgstr "Rimuovi il tag"
#: ../../mod/tagrm.php:81
msgid "Select a tag to remove: "
msgstr "Seleziona un tag da rimuovere: "
#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
#: ../../addon/dav/common/wdcal_edit.inc.php:468
msgid "Remove"
msgstr "Rimuovi"
#: ../../mod/dfrn_poll.php:99 ../../mod/dfrn_poll.php:530
#, php-format
msgid "%s welcomes %s"
msgstr "%s dà il benvenuto a %s"
#: ../../mod/api.php:76 ../../mod/api.php:102
msgid "Authorize application connection"
msgstr "Autorizza la connessione dell'applicazione"
#: ../../mod/api.php:77
msgid "Return to your app and insert this Securty Code:"
msgstr "Torna alla tua applicazione e inserisci questo codice di sicurezza:"
#: ../../mod/api.php:89
msgid "Please login to continue."
msgstr "Effettua il login per continuare."
#: ../../mod/api.php:104
msgid ""
"If you wish to communicate with email contacts using this service "
"(optional), please specify how to connect to your mailbox."
msgstr ""
"Se vuoi comunicare con i contatti email usando questo servizio, specifica "
"come collegarti alla tua casella di posta. (opzionale)"
"Do you want to authorize this application to access your posts and contacts,"
" and/or create new posts for you?"
msgstr "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?"
#: ../../mod/settings.php:550
msgid "Last successful email check:"
msgstr "Ultimo controllo email eseguito con successo:"
#: ../../mod/api.php:105 ../../mod/dfrn_request.php:835
#: ../../mod/settings.php:892 ../../mod/settings.php:898
#: ../../mod/settings.php:906 ../../mod/settings.php:910
#: ../../mod/settings.php:915 ../../mod/settings.php:921
#: ../../mod/settings.php:927 ../../mod/settings.php:933
#: ../../mod/settings.php:963 ../../mod/settings.php:964
#: ../../mod/settings.php:965 ../../mod/settings.php:966
#: ../../mod/settings.php:967 ../../mod/register.php:236
#: ../../mod/profiles.php:563
msgid "Yes"
msgstr "Si"
#: ../../mod/settings.php:551
msgid "Email access is disabled on this site."
msgstr "L'accesso Email è disabilitato su questo sito."
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:836
#: ../../mod/settings.php:892 ../../mod/settings.php:898
#: ../../mod/settings.php:906 ../../mod/settings.php:910
#: ../../mod/settings.php:915 ../../mod/settings.php:921
#: ../../mod/settings.php:927 ../../mod/settings.php:933
#: ../../mod/settings.php:963 ../../mod/settings.php:964
#: ../../mod/settings.php:965 ../../mod/settings.php:966
#: ../../mod/settings.php:967 ../../mod/register.php:237
#: ../../mod/profiles.php:564
msgid "No"
msgstr "No"
#: ../../mod/settings.php:552
msgid "IMAP server name:"
msgstr "Nome server IMAP:"
#: ../../mod/settings.php:553
msgid "IMAP port:"
msgstr "Porta IMAP:"
#: ../../mod/settings.php:554
msgid "Security:"
msgstr "Sicurezza:"
#: ../../mod/settings.php:554
msgid "None"
msgstr "Nessuna"
#: ../../mod/settings.php:555
msgid "Email login name:"
msgstr "Nome utente Email:"
#: ../../mod/settings.php:556
msgid "Email password:"
msgstr "Password Email:"
#: ../../mod/settings.php:557
msgid "Reply-to address:"
msgstr "Indirizzo di risposta:"
#: ../../mod/settings.php:558
msgid "Send public posts to all email contacts:"
msgstr "Invia i messaggi pubblici ai contatti email:"
#: ../../mod/settings.php:596 ../../mod/admin.php:126 ../../mod/admin.php:443
msgid "Normal Account"
msgstr "Account normale"
#: ../../mod/settings.php:597
msgid "This account is a normal personal profile"
msgstr "Questo account è un normale profilo personale"
#: ../../mod/settings.php:600 ../../mod/admin.php:127 ../../mod/admin.php:444
msgid "Soapbox Account"
msgstr "Account Palco"
#: ../../mod/settings.php:601
msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr ""
"Accetta automaticamente le richieste di connessione/amicizia come fan che "
"possono solamente leggere"
#: ../../mod/settings.php:604 ../../mod/admin.php:128 ../../mod/admin.php:445
msgid "Community/Celebrity Account"
msgstr "Account Celebrità/Comunità"
#: ../../mod/settings.php:605
msgid ""
"Automatically approve all connection/friend requests as read-write fans"
msgstr ""
"Accetta automaticamente le richieste di connessione/amicizia come fan che "
"possono scrivere in bacheca"
#: ../../mod/settings.php:608 ../../mod/admin.php:129 ../../mod/admin.php:446
msgid "Automatic Friend Account"
msgstr "Account Amico Automatico"
#: ../../mod/settings.php:609
msgid "Automatically approve all connection/friend requests as friends"
msgstr ""
"Accetta automaticamente le richieste di connessione/amicizia come amici"
#: ../../mod/settings.php:619
msgid "OpenID:"
msgstr "OpenID:"
#: ../../mod/settings.php:619
msgid "(Optional) Allow this OpenID to login to this account."
msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID"
#: ../../mod/settings.php:629
msgid "Publish your default profile in your local site directory?"
msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito"
#: ../../mod/settings.php:635
msgid "Publish your default profile in the global social directory?"
msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale"
#: ../../mod/settings.php:643
msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr ""
"Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo "
"predefinito"
#: ../../mod/settings.php:647
msgid "Hide profile details and all your messages from unknown viewers?"
msgstr ""
"Nascondi i dettagli del profilo e tutti i tuoi messaggi ai visitatori "
"sconosciuti?"
#: ../../mod/settings.php:652
msgid "Allow friends to post to your profile page?"
msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?"
#: ../../mod/settings.php:658
msgid "Allow friends to tag your posts?"
msgstr "Permetti agli amici di taggare i tuoi messaggi?"
#: ../../mod/settings.php:667
msgid "Profile is <strong>not published</strong>."
msgstr "Il profilo <strong>non è pubblicato</strong>."
#: ../../mod/settings.php:691
msgid "Your Identity Address is"
msgstr "Il tuo Indirizzo Identità è"
#: ../../mod/settings.php:705
msgid "Account Settings"
msgstr "Impostazioni Account"
#: ../../mod/settings.php:713
msgid "Password Settings"
msgstr "Impostazioni Password"
#: ../../mod/settings.php:714
msgid "New Password:"
msgstr "Nuova Password:"
#: ../../mod/settings.php:715
msgid "Confirm:"
msgstr "Conferma:"
#: ../../mod/settings.php:715
msgid "Leave password fields blank unless changing"
msgstr ""
"Lascia questi campi in bianco per non effettuare variazioni alla password"
#: ../../mod/settings.php:719
msgid "Basic Settings"
msgstr "Impostazioni base"
#: ../../mod/settings.php:720 ../../include/profile_advanced.php:15
msgid "Full Name:"
msgstr "Nome completo:"
#: ../../mod/settings.php:721
msgid "Email Address:"
msgstr "Indirizzo Email:"
#: ../../mod/settings.php:722
msgid "Your Timezone:"
msgstr "Il tuo fuso orario:"
#: ../../mod/settings.php:723
msgid "Default Post Location:"
msgstr "Località di default per l'invio:"
#: ../../mod/settings.php:724
msgid "Use Browser Location:"
msgstr "Usa la località rilevata dal browser:"
#: ../../mod/settings.php:725
msgid "Display Theme:"
msgstr "Tema:"
#: ../../mod/settings.php:729
msgid "Security and Privacy Settings"
msgstr "Impostazioni di Sicurezza e Privacy"
#: ../../mod/settings.php:731
msgid "Maximum Friend Requests/Day:"
msgstr "Numero massimo di richieste di amicizia per giorno:"
#: ../../mod/settings.php:731
msgid "(to prevent spam abuse)"
msgstr "(per prevenire lo spam)"
#: ../../mod/settings.php:732
msgid "Default Post Permissions"
msgstr "Permessi di default per i messaggi"
#: ../../mod/settings.php:733
msgid "(click to open/close)"
msgstr "(clicca per aprire/chiudere)"
#: ../../mod/settings.php:739
msgid "Automatically expire posts after days:"
msgstr "Cancella automaticamente i messaggi dopo giorni:"
#: ../../mod/settings.php:739
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr "Se lasciato vuoto, i messaggi non verranno cancellati."
#: ../../mod/settings.php:748
msgid "Notification Settings"
msgstr "Impostazioni Notifiche"
#: ../../mod/settings.php:749
msgid "Send a notification email when:"
msgstr "Invia una mail di notifica quando:"
#: ../../mod/settings.php:750
msgid "You receive an introduction"
msgstr "Ricevi una presentazione"
#: ../../mod/settings.php:751
msgid "Your introductions are confirmed"
msgstr "Le tue presentazioni sono confermate"
#: ../../mod/settings.php:752
msgid "Someone writes on your profile wall"
msgstr "Qualcuno scrive sulla bacheca del tuo profilo"
#: ../../mod/settings.php:753
msgid "Someone writes a followup comment"
msgstr "Qualcuno scrive un commento a un tuo messaggio"
#: ../../mod/settings.php:754
msgid "You receive a private message"
msgstr "Ricevi un messaggio privato"
#: ../../mod/settings.php:758
msgid "Advanced Page Settings"
msgstr "Impostazioni Avanzate Account"
#: ../../mod/search.php:13 ../../mod/network.php:75
msgid "Saved Searches"
msgstr "Ricerche salvate"
#: ../../mod/search.php:16 ../../mod/network.php:81
msgid "Remove term"
msgstr "Rimuovi termine"
#: ../../mod/search.php:71 ../../mod/photos.php:752 ../../mod/display.php:7
#: ../../mod/dfrn_request.php:594 ../../mod/directory.php:31
#: ../../mod/viewcontacts.php:16 ../../mod/community.php:16
msgid "Public access denied."
msgstr "Accesso pubblico non consentito."
#: ../../mod/search.php:83
msgid "Search This Site"
msgstr "Cerca nel sito"
#: ../../mod/search.php:125 ../../mod/community.php:60
msgid "No results."
msgstr "Nessun risultato."
#: ../../mod/photos.php:42
#: ../../mod/photos.php:46 ../../boot.php:1682
msgid "Photo Albums"
msgstr "Album Foto"
msgstr "Album foto"
#: ../../mod/photos.php:50 ../../mod/photos.php:144 ../../mod/photos.php:866
#: ../../mod/photos.php:936 ../../mod/photos.php:951 ../../mod/photos.php:1351
#: ../../mod/photos.php:1363 ../../addon/communityhome/communityhome.php:110
#: ../../mod/photos.php:54 ../../mod/photos.php:149 ../../mod/photos.php:986
#: ../../mod/photos.php:1073 ../../mod/photos.php:1088
#: ../../mod/photos.php:1530 ../../mod/photos.php:1542
#: ../../addon/communityhome/communityhome.php:110
#: ../../view/theme/diabook/theme.php:598
msgid "Contact Photos"
msgstr "Foto dei contatti"
#: ../../mod/photos.php:133
msgid "Contact information unavailable"
msgstr "Informazione sul contatto non disponibile"
#: ../../mod/photos.php:61 ../../mod/photos.php:1104 ../../mod/photos.php:1580
msgid "Upload New Photos"
msgstr "Carica nuove foto"
#: ../../mod/photos.php:154
#: ../../mod/photos.php:74 ../../mod/settings.php:23
msgid "everybody"
msgstr "tutti"
#: ../../mod/photos.php:138
msgid "Contact information unavailable"
msgstr "I dati di questo contatto non sono disponibili"
#: ../../mod/photos.php:149 ../../mod/photos.php:653 ../../mod/photos.php:1073
#: ../../mod/photos.php:1088 ../../mod/profile_photo.php:74
#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88
#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296
#: ../../mod/profile_photo.php:305
#: ../../addon/communityhome/communityhome.php:111
#: ../../view/theme/diabook/theme.php:599 ../../include/user.php:324
#: ../../include/user.php:331 ../../include/user.php:338
msgid "Profile Photos"
msgstr "Foto del profilo"
#: ../../mod/photos.php:159
msgid "Album not found."
msgstr "Album non trovato."
#: ../../mod/photos.php:172 ../../mod/photos.php:945
#: ../../mod/photos.php:177 ../../mod/photos.php:1082
msgid "Delete Album"
msgstr "Elimina album"
msgstr "Rimuovi album"
#: ../../mod/photos.php:235 ../../mod/photos.php:1164
#: ../../mod/photos.php:240 ../../mod/photos.php:1339
msgid "Delete Photo"
msgstr "Elimina foto"
msgstr "Rimuovi foto"
#: ../../mod/photos.php:522
#: ../../mod/photos.php:584
msgid "was tagged in a"
msgstr "è stato taggato in"
msgstr "è stato taggato in una"
#: ../../mod/photos.php:522 ../../mod/tagger.php:70 ../../mod/like.php:127
#: ../../mod/photos.php:584 ../../mod/like.php:145 ../../mod/tagger.php:62
#: ../../addon/communityhome/communityhome.php:163
#: ../../include/conversation.php:31 ../../include/diaspora.php:1211
#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1439
#: ../../include/diaspora.php:1824 ../../include/conversation.php:125
#: ../../include/conversation.php:253
msgid "photo"
msgstr "foto"
#: ../../mod/photos.php:522
#: ../../mod/photos.php:584
msgid "by"
msgstr "da"
#: ../../mod/photos.php:625 ../../addon/js_upload/js_upload.php:312
#: ../../mod/photos.php:689 ../../addon/js_upload/js_upload.php:315
msgid "Image exceeds size limit of "
msgstr "L'immagine supera il limite di dimensione di "
msgstr "L'immagine supera il limite di"
#: ../../mod/photos.php:633
#: ../../mod/photos.php:697
msgid "Image file is empty."
msgstr "Il file dell'immagine è vuoto."
#: ../../mod/photos.php:762
#: ../../mod/photos.php:729 ../../mod/profile_photo.php:153
#: ../../mod/wall_upload.php:110
msgid "Unable to process image."
msgstr "Impossibile caricare l'immagine."
#: ../../mod/photos.php:756 ../../mod/profile_photo.php:301
#: ../../mod/wall_upload.php:136
msgid "Image upload failed."
msgstr "Caricamento immagine fallito."
#: ../../mod/photos.php:842 ../../mod/community.php:18
#: ../../mod/dfrn_request.php:760 ../../mod/viewcontacts.php:17
#: ../../mod/display.php:7 ../../mod/search.php:73 ../../mod/directory.php:31
msgid "Public access denied."
msgstr "Accesso negato."
#: ../../mod/photos.php:852
msgid "No photos selected"
msgstr "Nessuna foto selezionata"
#: ../../mod/photos.php:839
#: ../../mod/photos.php:953
msgid "Access to this item is restricted."
msgstr "L'accesso a questo elemento è limitato."
msgstr "Questo oggetto non è visibile a tutti."
#: ../../mod/photos.php:893
#: ../../mod/photos.php:1015
#, php-format
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgstr ""
#: ../../mod/photos.php:1018
#, php-format
msgid "You have used %1$.2f Mbytes of photo storage."
msgstr ""
#: ../../mod/photos.php:1024
msgid "Upload Photos"
msgstr "Carica foto"
#: ../../mod/photos.php:896 ../../mod/photos.php:940
#: ../../mod/photos.php:1028 ../../mod/photos.php:1077
msgid "New album name: "
msgstr "Nome nuovo album: "
#: ../../mod/photos.php:897
#: ../../mod/photos.php:1029
msgid "or existing album name: "
msgstr "o nome di un album esistente: "
#: ../../mod/photos.php:898
#: ../../mod/photos.php:1030
msgid "Do not show a status post for this upload"
msgstr "Non creare un post per questo upload"
#: ../../mod/photos.php:900 ../../mod/photos.php:1159
#: ../../mod/photos.php:1032 ../../mod/photos.php:1334
msgid "Permissions"
msgstr "Permessi"
#: ../../mod/photos.php:955
#: ../../mod/photos.php:1092
msgid "Edit Album"
msgstr "Modifica album"
#: ../../mod/photos.php:965 ../../mod/photos.php:1381
#: ../../mod/photos.php:1098
msgid "Show Newest First"
msgstr ""
#: ../../mod/photos.php:1100
msgid "Show Oldest First"
msgstr ""
#: ../../mod/photos.php:1124 ../../mod/photos.php:1563
msgid "View Photo"
msgstr "Vedi foto"
#: ../../mod/photos.php:1000
#: ../../mod/photos.php:1159
msgid "Permission denied. Access to this item may be restricted."
msgstr "Permesso negato. L'accesso a questo elemento può essere limitato."
#: ../../mod/photos.php:1002
#: ../../mod/photos.php:1161
msgid "Photo not available"
msgstr "Foto non disponibile"
#: ../../mod/photos.php:1052
#: ../../mod/photos.php:1217
msgid "View photo"
msgstr "Vedi foto"
#: ../../mod/photos.php:1052
#: ../../mod/photos.php:1217
msgid "Edit photo"
msgstr "Modifica foto"
#: ../../mod/photos.php:1053
#: ../../mod/photos.php:1218
msgid "Use as profile photo"
msgstr "Usa come foto del profilo"
#: ../../mod/photos.php:1059 ../../include/conversation.php:369
#: ../../mod/photos.php:1224 ../../mod/content.php:603
#: ../../object/Item.php:103
msgid "Private Message"
msgstr "Messaggio privato"
#: ../../mod/photos.php:1070
#: ../../mod/photos.php:1243
msgid "View Full Size"
msgstr "Vedi dimensione intera"
#: ../../mod/photos.php:1138
#: ../../mod/photos.php:1311
msgid "Tags: "
msgstr "Tag: "
#: ../../mod/photos.php:1141
#: ../../mod/photos.php:1314
msgid "[Remove any tag]"
msgstr "[Rimuovi tutti i tag]"
#: ../../mod/photos.php:1152
#: ../../mod/photos.php:1324
msgid "Rotate CW (right)"
msgstr ""
#: ../../mod/photos.php:1325
msgid "Rotate CCW (left)"
msgstr ""
#: ../../mod/photos.php:1327
msgid "New album name"
msgstr "Nuovo nome album"
msgstr "Nuovo nome dell'album"
#: ../../mod/photos.php:1155
#: ../../mod/photos.php:1330
msgid "Caption"
msgstr "Didascalia"
msgstr "Titolo"
#: ../../mod/photos.php:1157
#: ../../mod/photos.php:1332
msgid "Add a Tag"
msgstr "Aggiungi un tag"
msgstr "Aggiungi tag"
#: ../../mod/photos.php:1161
#: ../../mod/photos.php:1336
msgid ""
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr ""
"Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
#: ../../mod/photos.php:1181 ../../include/conversation.php:416
#: ../../mod/photos.php:1356 ../../mod/content.php:667
#: ../../object/Item.php:196
msgid "I like this (toggle)"
msgstr "Mi piace questo (metti/togli)"
msgstr "Mi piace (clic per cambiare)"
#: ../../mod/photos.php:1182 ../../include/conversation.php:417
#: ../../mod/photos.php:1357 ../../mod/content.php:668
#: ../../object/Item.php:197
msgid "I don't like this (toggle)"
msgstr "Non mi piace questo (metti/togli)"
msgstr "Non mi piace (clic per cambiare)"
#: ../../mod/photos.php:1183 ../../include/conversation.php:814
#: ../../mod/photos.php:1358 ../../include/conversation.php:896
msgid "Share"
msgstr "Condividi"
#: ../../mod/photos.php:1184 ../../mod/editpost.php:99
#: ../../mod/message.php:137 ../../mod/message.php:270
#: ../../include/conversation.php:251 ../../include/conversation.php:578
#: ../../include/conversation.php:823
#: ../../mod/photos.php:1359 ../../mod/editpost.php:112
#: ../../mod/content.php:482 ../../mod/content.php:845
#: ../../mod/wallmessage.php:152 ../../mod/message.php:293
#: ../../mod/message.php:481 ../../include/conversation.php:570
#: ../../include/conversation.php:915 ../../object/Item.php:258
msgid "Please wait"
msgstr "Attendi"
#: ../../mod/photos.php:1200 ../../mod/photos.php:1239
#: ../../mod/photos.php:1270 ../../include/conversation.php:431
#: ../../mod/photos.php:1375 ../../mod/photos.php:1416
#: ../../mod/photos.php:1448 ../../mod/content.php:690
#: ../../object/Item.php:557
msgid "This is you"
msgstr "Questo sei tu"
#: ../../mod/photos.php:1368
#: ../../mod/photos.php:1377 ../../mod/photos.php:1418
#: ../../mod/photos.php:1450 ../../mod/content.php:692 ../../boot.php:574
#: ../../object/Item.php:559
msgid "Comment"
msgstr "Commento"
#: ../../mod/photos.php:1379 ../../mod/editpost.php:133
#: ../../mod/content.php:702 ../../include/conversation.php:933
#: ../../object/Item.php:569
msgid "Preview"
msgstr "Anteprima"
#: ../../mod/photos.php:1479 ../../mod/content.php:439
#: ../../mod/content.php:723 ../../mod/settings.php:606
#: ../../mod/settings.php:695 ../../mod/group.php:168 ../../mod/admin.php:696
#: ../../include/conversation.php:515 ../../object/Item.php:117
msgid "Delete"
msgstr "Rimuovi"
#: ../../mod/photos.php:1569
msgid "View Album"
msgstr "Sfoglia l'album"
#: ../../mod/photos.php:1578
msgid "Recent Photos"
msgstr "Foto recenti"
#: ../../mod/photos.php:1372
msgid "Upload New Photos"
msgstr "Carica nuova foto"
#: ../../mod/community.php:23
msgid "Not available."
msgstr "Non disponibile."
#: ../../mod/photos.php:1385
msgid "View Album"
msgstr "Vedi album"
#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:133
#: ../../include/nav.php:101
msgid "Community"
msgstr "Comunità"
#: ../../mod/newmember.php:6
msgid "Welcome to Friendika"
msgstr "Benvenuto in Friendika"
#: ../../mod/community.php:63 ../../mod/community.php:88
#: ../../mod/search.php:148 ../../mod/search.php:174
msgid "No results."
msgstr "Nessun risultato."
#: ../../mod/newmember.php:8
msgid "New Member Checklist"
msgstr "Cose da fare per i Nuovi Utenti"
#: ../../mod/friendica.php:55
msgid "This is Friendica, version"
msgstr "Questo è Friendica, versione"
#: ../../mod/newmember.php:12
#: ../../mod/friendica.php:56
msgid "running at web location"
msgstr "in esecuzione sull'indirizzo web"
#: ../../mod/friendica.php:58
msgid ""
"We would like to offer some tips and links to help make your experience "
"enjoyable. Click any item to visit the relevant page."
msgstr ""
"Vorremmo offrire alcuni suggerimenti e link per contribuire a rendere la tua"
" esperienza piacevole. Fai clic su un elemento per visitare la pagina "
"corrispondente."
"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
"more about the Friendica project."
msgstr "Visita <a href=\"http://friendica.com\">Friendica.com</a> per saperne di più sul progetto Friendica."
#: ../../mod/newmember.php:16
msgid ""
"On your <em>Settings</em> page - change your initial password. Also make a "
"note of your Identity Address. This will be useful in making friends."
msgstr ""
"Nella tua pagina <em>Impostazioni</em> - cambia la tua password iniziale. "
"E prendi nota del tuo Indirizzo Identità. Questo tornerà utile nello "
"stringere amicizie."
#: ../../mod/friendica.php:60
msgid "Bug reports and issues: please visit"
msgstr "Segnalazioni di bug e problemi: visita"
#: ../../mod/newmember.php:18
#: ../../mod/friendica.php:61
msgid ""
"Review the other settings, particularly the privacy settings. An unpublished"
" directory listing is like having an unlisted phone number. In general, you "
"should probably publish your listing - unless all of your friends and "
"potential friends know exactly how to find you."
msgstr ""
"Guarda le altre impostazioni, in particolare le impostazioni della privacy. "
"Un profilo non pubblicato è come un numero di telefono non in elenco. In "
"genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e"
" potenziali tali sappiano esattamente come trovarti."
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
"dot com"
msgstr "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com"
#: ../../mod/newmember.php:20
msgid ""
"Upload a profile photo if you have not done so already. Studies have shown "
"that people with real photos of themselves are ten times more likely to make"
" friends than people who do not."
msgstr ""
"Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato "
"che persone che hanno vere foto di se stessi hanno dieci volte più "
"probabilità di fare amicizie rispetto alle persone che non ce l'hanno."
#: ../../mod/friendica.php:75
msgid "Installed plugins/addons/apps:"
msgstr "Plugin/addon/applicazioni instalate"
#: ../../mod/newmember.php:23
msgid ""
"Authorise the Facebook Connector if you currently have a Facebook account "
"and we will (optionally) import all your Facebook friends and conversations."
msgstr ""
"Autorizza il Facebook Connector se hai un account Facebook, e noi "
"(opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da "
"Facebook."
#: ../../mod/friendica.php:88
msgid "No installed plugins/addons/apps"
msgstr "Nessun plugin/addons/applicazione installata"
#: ../../mod/newmember.php:28
msgid ""
"Enter your email access information on your Settings page if you wish to "
"import and interact with friends or mailing lists from your email INBOX"
msgstr ""
"Inserisci i dati per accedere alla tua email nella pagina Impostazioni se "
"vuoi importare e interagire con amici o mailing list dalla posta in arrivo "
"della tua email."
#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
msgid "Item not found"
msgstr "Oggetto non trovato"
#: ../../mod/newmember.php:30
msgid ""
"Edit your <strong>default</strong> profile to your liking. Review the "
"settings for hiding your list of friends and hiding the profile from unknown"
" visitors."
msgstr ""
"Modifica il tuo profilo <strong>predefinito</strong> a piacimento. Rivedi le"
" impostazioni per nascondere la tua lista di amici e nascondere il profilo "
"ai visitatori sconosciuti."
#: ../../mod/editpost.php:36
msgid "Edit post"
msgstr "Modifica messaggio"
#: ../../mod/newmember.php:32
msgid ""
"Set some public keywords for your default profile which describe your "
"interests. We may be able to find other people with similar interests and "
"suggest friendships."
msgstr ""
"Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che "
"descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone"
" con interessi similari e suggerirti delle amicizie."
#: ../../mod/editpost.php:88 ../../include/conversation.php:882
msgid "Post to Email"
msgstr "Invia a email"
#: ../../mod/newmember.php:34
msgid ""
"Your Contacts page is your gateway to managing friendships and connecting "
"with friends on other networks. Typically you enter their address or site "
"URL in the <em>Connect</em> dialog."
msgstr ""
"La pagina Contatti è il centro di controllo per la gestione delle amicizie e"
" per collegarti ad amici su altri network. Basta che inserisci il loro "
"indirizzo o l'URL del sito nel box <em>Connetti</em>."
#: ../../mod/editpost.php:103 ../../mod/content.php:710
#: ../../mod/settings.php:605 ../../object/Item.php:107
msgid "Edit"
msgstr "Modifica"
#: ../../mod/newmember.php:36
msgid ""
"The Directory page lets you find other people in this network or other "
"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
"their profile page. Provide your own Identity Address if requested."
msgstr ""
"La pagina Elenco ti permette di trovare altre persone in questa rete o in "
"altri siti. Cerca un link <em>Connetti</em> o <em>Segui</em> nella loro "
"pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto."
#: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150
#: ../../mod/message.php:291 ../../mod/message.php:478
#: ../../include/conversation.php:897
msgid "Upload photo"
msgstr "Carica foto"
#: ../../mod/newmember.php:38
msgid ""
"Once you have made some friends, organize them into private conversation "
"groups from the sidebar of your Contacts page and then you can interact with"
" each group privately on your Network page."
msgstr ""
"Quando avrai alcuni amici, organizzali in gruppi di conversazioni private "
"dalla barra laterale della tua pagina Contatti. Potrai interagire "
"privatamente con ogni gruppo nella tua pagina Rete"
#: ../../mod/editpost.php:105 ../../include/conversation.php:899
msgid "Attach file"
msgstr "Allega file"
#: ../../mod/newmember.php:40
msgid ""
"Our <strong>help</strong> pages may be consulted for detail on other program"
" features and resources."
#: ../../mod/editpost.php:106 ../../mod/wallmessage.php:151
#: ../../mod/message.php:292 ../../mod/message.php:479
#: ../../include/conversation.php:901
msgid "Insert web link"
msgstr "Inserisci link"
#: ../../mod/editpost.php:107
msgid "Insert YouTube video"
msgstr "Inserisci video da YouTube"
#: ../../mod/editpost.php:108
msgid "Insert Vorbis [.ogg] video"
msgstr "Inserisci video Vorbis [.ogg]"
#: ../../mod/editpost.php:109
msgid "Insert Vorbis [.ogg] audio"
msgstr "Inserisci audio Vorbis [.ogg]"
#: ../../mod/editpost.php:110 ../../include/conversation.php:907
msgid "Set your location"
msgstr "La tua posizione"
#: ../../mod/editpost.php:111 ../../include/conversation.php:909
msgid "Clear browser location"
msgstr "Rimuovi la localizzazione data dal browser"
#: ../../mod/editpost.php:113 ../../include/conversation.php:916
msgid "Permission settings"
msgstr "Impostazioni permessi"
#: ../../mod/editpost.php:121 ../../include/conversation.php:925
msgid "CC: email addresses"
msgstr "CC: indirizzi email"
#: ../../mod/editpost.php:122 ../../include/conversation.php:926
msgid "Public post"
msgstr "Messaggio pubblico"
#: ../../mod/editpost.php:125 ../../include/conversation.php:912
msgid "Set title"
msgstr "Scegli un titolo"
#: ../../mod/editpost.php:127 ../../include/conversation.php:914
msgid "Categories (comma-separated list)"
msgstr "Categorie (lista separata da virgola)"
#: ../../mod/editpost.php:128 ../../include/conversation.php:928
msgid "Example: bob@example.com, mary@example.com"
msgstr "Esempio: bob@example.com, mary@example.com"
#: ../../mod/dfrn_request.php:93
msgid "This introduction has already been accepted."
msgstr "Questa presentazione è già stata accettata."
#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:512
msgid "Profile location is not valid or does not contain profile information."
msgstr "L'indirizzo del profilo non è valido o non contiene un profilo."
#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:517
msgid "Warning: profile location has no identifiable owner name."
msgstr "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario."
#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:519
msgid "Warning: profile location has no profile photo."
msgstr "Attenzione: l'indirizzo del profilo non ha una foto."
#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:522
#, php-format
msgid "%d required parameter was not found at the given location"
msgid_plural "%d required parameters were not found at the given location"
msgstr[0] "%d parametro richiesto non è stato trovato all'indirizzo dato"
msgstr[1] "%d parametri richiesti non sono stati trovati all'indirizzo dato"
#: ../../mod/dfrn_request.php:170
msgid "Introduction complete."
msgstr "Presentazione completa."
#: ../../mod/dfrn_request.php:209
msgid "Unrecoverable protocol error."
msgstr "Errore di comunicazione."
#: ../../mod/dfrn_request.php:237
msgid "Profile unavailable."
msgstr "Profilo non disponibile."
#: ../../mod/dfrn_request.php:262
#, php-format
msgid "%s has received too many connection requests today."
msgstr "%s ha ricevuto troppe richieste di connessione per oggi."
#: ../../mod/dfrn_request.php:263
msgid "Spam protection measures have been invoked."
msgstr "Sono state attivate le misure di protezione contro lo spam."
#: ../../mod/dfrn_request.php:264
msgid "Friends are advised to please try again in 24 hours."
msgstr "Gli amici sono pregati di riprovare tra 24 ore."
#: ../../mod/dfrn_request.php:326
msgid "Invalid locator"
msgstr "Invalid locator"
#: ../../mod/dfrn_request.php:335
msgid "Invalid email address."
msgstr "Indirizzo email non valido."
#: ../../mod/dfrn_request.php:361
msgid "This account has not been configured for email. Request failed."
msgstr ""
"Le nostre pagine della <strong>guida</strong> possono essere consultate per "
"avere dettagli su altre caratteristiche del programma e altre risorse."
#: ../../mod/dfrn_request.php:457
msgid "Unable to resolve your name at the provided location."
msgstr "Impossibile risolvere il tuo nome nella posizione indicata."
#: ../../mod/dfrn_request.php:470
msgid "You have already introduced yourself here."
msgstr "Ti sei già presentato qui."
#: ../../mod/dfrn_request.php:474
#, php-format
msgid "Apparently you are already friends with %s."
msgstr "Pare che tu e %s siate già amici."
#: ../../mod/dfrn_request.php:495
msgid "Invalid profile URL."
msgstr "Indirizzo profilo non valido."
#: ../../mod/dfrn_request.php:501 ../../include/follow.php:27
msgid "Disallowed profile URL."
msgstr "Indirizzo profilo non permesso."
#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:123
msgid "Failed to update contact record."
msgstr "Errore nell'aggiornamento del contatto."
#: ../../mod/dfrn_request.php:591
msgid "Your introduction has been sent."
msgstr "La tua presentazione è stata inviata."
#: ../../mod/dfrn_request.php:644
msgid "Please login to confirm introduction."
msgstr "Accedi per confermare la presentazione."
#: ../../mod/dfrn_request.php:658
msgid ""
"Incorrect identity currently logged in. Please login to "
"<strong>this</strong> profile."
msgstr "Non hai fatto accesso con l'identità corretta. Accedi a <strong>questo</strong> profilo."
#: ../../mod/dfrn_request.php:669
msgid "Hide this contact"
msgstr ""
#: ../../mod/dfrn_request.php:672
#, php-format
msgid "Welcome home %s."
msgstr "Bentornato a casa %s."
#: ../../mod/dfrn_request.php:673
#, php-format
msgid "Please confirm your introduction/connection request to %s."
msgstr "Conferma la tua richiesta di connessione con %s."
#: ../../mod/dfrn_request.php:674
msgid "Confirm"
msgstr "Conferma"
#: ../../mod/dfrn_request.php:715 ../../include/items.php:3292
msgid "[Name Withheld]"
msgstr "[Nome Nascosto]"
#: ../../mod/dfrn_request.php:810
msgid ""
"Please enter your 'Identity Address' from one of the following supported "
"communications networks:"
msgstr "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:"
#: ../../mod/dfrn_request.php:826
msgid "<strike>Connect as an email follower</strike> (Coming soon)"
msgstr "<strike>Connetti un email come follower</strike> (in arrivo)"
#: ../../mod/dfrn_request.php:828
msgid ""
"If you are not yet a member of the free social web, <a "
"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
" Friendica site and join us today</a>."
msgstr "Se non sei un membro del web sociale libero, <a href=\"http://dir.friendica.com/siteinfo\">segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi</a>"
#: ../../mod/dfrn_request.php:831
msgid "Friend/Connection Request"
msgstr "Richieste di amicizia/connessione"
#: ../../mod/dfrn_request.php:832
msgid ""
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca"
msgstr "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
#: ../../mod/dfrn_request.php:833
msgid "Please answer the following:"
msgstr "Rispondi:"
#: ../../mod/dfrn_request.php:834
#, php-format
msgid "Does %s know you?"
msgstr "%s ti conosce?"
#: ../../mod/dfrn_request.php:837
msgid "Add a personal note:"
msgstr "Aggiungi una nota personale:"
#: ../../mod/dfrn_request.php:839 ../../include/contact_selectors.php:76
msgid "Friendica"
msgstr "Friendica"
#: ../../mod/dfrn_request.php:840
msgid "StatusNet/Federated Social Web"
msgstr "StatusNet/Federated Social Web"
#: ../../mod/dfrn_request.php:841 ../../mod/settings.php:640
#: ../../include/contact_selectors.php:80
msgid "Diaspora"
msgstr "Diaspora"
#: ../../mod/dfrn_request.php:842
#, php-format
msgid ""
" - please do not use this form. Instead, enter %s into your Diaspora search"
" bar."
msgstr " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora."
#: ../../mod/dfrn_request.php:843
msgid "Your Identity Address:"
msgstr "L'indirizzo della tua identità:"
#: ../../mod/dfrn_request.php:846
msgid "Submit Request"
msgstr "Invia richiesta"
#: ../../mod/install.php:117
msgid "Friendica Social Communications Server - Setup"
msgstr "Friendica Social Communications Server - Setup"
#: ../../mod/install.php:123
msgid "Could not connect to database."
msgstr " Impossibile collegarsi con il database."
#: ../../mod/install.php:127
msgid "Could not create table."
msgstr "Impossibile creare le tabelle."
#: ../../mod/install.php:133
msgid "Your Friendica site database has been installed."
msgstr "Il tuo Friendica è stato installato."
#: ../../mod/install.php:138
msgid ""
"You may need to import the file \"database.sql\" manually using phpmyadmin "
"or mysql."
msgstr "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql"
#: ../../mod/install.php:139 ../../mod/install.php:204
#: ../../mod/install.php:488
msgid "Please see the file \"INSTALL.txt\"."
msgstr "Leggi il file \"INSTALL.txt\"."
#: ../../mod/install.php:201
msgid "System check"
msgstr "Controllo sistema"
#: ../../mod/install.php:206
msgid "Check again"
msgstr "Controlla ancora"
#: ../../mod/install.php:225
msgid "Database connection"
msgstr "Connessione al database"
#: ../../mod/install.php:226
msgid ""
"In order to install Friendica we need to know how to connect to your "
"database."
msgstr "Per installare Friendica dobbiamo sapere come collegarci al tuo database."
#: ../../mod/install.php:227
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/install.php:228
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "Il database dovrà già esistere. Se non esiste, crealo prima di continuare."
#: ../../mod/install.php:232
msgid "Database Server Name"
msgstr "Nome del database server"
#: ../../mod/install.php:233
msgid "Database Login Name"
msgstr "Nome utente database"
#: ../../mod/install.php:234
msgid "Database Login Password"
msgstr "Password utente database"
#: ../../mod/install.php:235
msgid "Database Name"
msgstr "Nome database"
#: ../../mod/install.php:236 ../../mod/install.php:275
msgid "Site administrator email address"
msgstr "Indirizzo email dell'amministratore del sito"
#: ../../mod/install.php:236 ../../mod/install.php:275
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/install.php:240 ../../mod/install.php:278
msgid "Please select a default timezone for your website"
msgstr "Seleziona il fuso orario predefinito per il tuo sito web"
#: ../../mod/install.php:265
msgid "Site settings"
msgstr "Impostazioni sito"
#: ../../mod/install.php:318
msgid "Could not find a command line version of PHP in the web server PATH."
msgstr "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web"
#: ../../mod/install.php:319
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. See <a "
"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
msgstr ""
#: ../../mod/install.php:323
msgid "PHP executable path"
msgstr "Percorso eseguibile PHP"
#: ../../mod/install.php:323
msgid ""
"Enter full path to php executable. You can leave this blank to continue the "
"installation."
msgstr ""
#: ../../mod/install.php:328
msgid "Command line PHP"
msgstr "PHP da riga di comando"
#: ../../mod/install.php:337
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/install.php:338
msgid "This is required for message delivery to work."
msgstr "E' obbligatorio per far funzionare la consegna dei messaggi."
#: ../../mod/install.php:340
msgid "PHP register_argc_argv"
msgstr "PHP register_argc_argv"
#: ../../mod/install.php:361
msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys"
msgstr "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione"
#: ../../mod/install.php:362
msgid ""
"If running under Windows, please see "
"\"http://www.php.net/manual/en/openssl.installation.php\"."
msgstr "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."
#: ../../mod/install.php:364
msgid "Generate encryption keys"
msgstr "Genera chiavi di criptazione"
#: ../../mod/install.php:371
msgid "libCurl PHP module"
msgstr "modulo PHP libCurl"
#: ../../mod/install.php:372
msgid "GD graphics PHP module"
msgstr "modulo PHP GD graphics"
#: ../../mod/install.php:373
msgid "OpenSSL PHP module"
msgstr "modulo PHP OpenSSL"
#: ../../mod/install.php:374
msgid "mysqli PHP module"
msgstr "modulo PHP mysqli"
#: ../../mod/install.php:375
msgid "mb_string PHP module"
msgstr "modulo PHP mb_string"
#: ../../mod/install.php:380 ../../mod/install.php:382
msgid "Apache mod_rewrite module"
msgstr ""
#: ../../mod/install.php:380
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/install.php:388
msgid "Error: libCURL PHP module required but not installed."
msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato."
#: ../../mod/install.php:392
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/install.php:396
msgid "Error: openssl PHP module required but not installed."
msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato."
#: ../../mod/install.php:400
msgid "Error: mysqli PHP module required but not installed."
msgstr "Errore: il modulo mysqli di PHP è richiesto ma non installato"
#: ../../mod/install.php:404
msgid "Error: mb_string PHP module required but not installed."
msgstr "Errore: il modulo PHP mb_string è richiesto ma non installato."
#: ../../mod/install.php:421
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 principale del tuo web server ma non è in grado di farlo."
#: ../../mod/install.php:422
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 "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server puo' scrivere il file nella tua cartella, anche se tu puoi."
#: ../../mod/install.php:423
msgid ""
"At the end of this procedure, we will give you a text to save in a file "
"named .htconfig.php in your Friendica top folder."
msgstr ""
#: ../../mod/install.php:424
msgid ""
"You can alternatively skip this procedure and perform a manual installation."
" Please see the file \"INSTALL.txt\" for instructions."
msgstr ""
#: ../../mod/install.php:427
msgid ".htconfig.php is writable"
msgstr ".htconfig.php è scrivibile"
#: ../../mod/install.php:439
msgid ""
"Url rewrite in .htaccess is not working. Check your server configuration."
msgstr ""
#: ../../mod/install.php:441
msgid "Url rewrite is working"
msgstr ""
#: ../../mod/install.php:451
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 un file di configurazione nella cartella principale del tuo sito."
#: ../../mod/install.php:475
msgid "Errors encountered creating database tables."
msgstr "La creazione delle tabelle del database ha generato errori."
#: ../../mod/install.php:486
msgid "<h1>What next</h1>"
msgstr ""
#: ../../mod/install.php:487
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
msgstr "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller."
#: ../../mod/localtime.php:12 ../../include/event.php:11
#: ../../include/bb2diaspora.php:227
#: ../../include/bb2diaspora.php:390
msgid "l F d, Y \\@ g:i A"
msgstr "l d F Y \\@ G:i"
@ -1453,9 +1217,7 @@ msgstr "Conversione Ora"
msgid ""
"Friendika provides this service for sharing events with other networks and "
"friends in unknown timezones."
msgstr ""
"Friendika fornisce questo servizio per la condivisione di eventi con altre "
"reti e contatti in fusi orari sconosciuti."
msgstr "Friendika fornisce questo servizio per la condivisione di eventi con altre reti e contatti in fusi orari sconosciuti."
#: ../../mod/localtime.php:30
#, php-format
@ -1476,86 +1238,3327 @@ msgstr "Ora locale convertita: %s"
msgid "Please select your timezone:"
msgstr "Selezionare il tuo fuso orario:"
#: ../../mod/display.php:108
#: ../../mod/poke.php:192
msgid "Poke/Prod"
msgstr ""
#: ../../mod/poke.php:193
msgid "poke, prod or do other things to somebody"
msgstr ""
#: ../../mod/poke.php:194
msgid "Recipient"
msgstr ""
#: ../../mod/poke.php:195
msgid "Choose what you wish to do to recipient"
msgstr ""
#: ../../mod/poke.php:198
msgid "Make this post private"
msgstr ""
#: ../../mod/match.php:12
msgid "Profile Match"
msgstr "Profili corrispondenti"
#: ../../mod/match.php:20
msgid "No keywords to match. Please add keywords to your default profile."
msgstr "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito."
#: ../../mod/match.php:57
msgid "is interested in:"
msgstr "è interessato a:"
#: ../../mod/match.php:58 ../../mod/suggest.php:59
#: ../../include/contact_widgets.php:9 ../../boot.php:1164
msgid "Connect"
msgstr "Connetti"
#: ../../mod/match.php:65 ../../mod/dirfind.php:60
msgid "No matches"
msgstr "Nessun risultato"
#: ../../mod/lockview.php:39
msgid "Remote privacy information not available."
msgstr "Informazioni remote sulla privacy non disponibili."
#: ../../mod/lockview.php:43
msgid "Visible to:"
msgstr "Visibile a:"
#: ../../mod/content.php:119 ../../mod/network.php:436
msgid "No such group"
msgstr "Nessun gruppo"
#: ../../mod/content.php:130 ../../mod/network.php:447
msgid "Group is empty"
msgstr "Il gruppo è vuoto"
#: ../../mod/content.php:134 ../../mod/network.php:451
msgid "Group: "
msgstr "Gruppo: "
#: ../../mod/content.php:438 ../../mod/content.php:722
#: ../../include/conversation.php:514 ../../object/Item.php:116
msgid "Select"
msgstr "Seleziona"
#: ../../mod/content.php:455 ../../mod/content.php:815
#: ../../mod/content.php:816 ../../include/conversation.php:533
#: ../../object/Item.php:227 ../../object/Item.php:228
#, php-format
msgid "View %s's profile @ %s"
msgstr "Vedi il profilo di %s @ %s"
#: ../../mod/content.php:465 ../../mod/content.php:827
#: ../../include/conversation.php:553 ../../object/Item.php:240
#, php-format
msgid "%s from %s"
msgstr "%s da %s"
#: ../../mod/content.php:480 ../../include/conversation.php:568
msgid "View in context"
msgstr "Vedi nel contesto"
#: ../../mod/content.php:586 ../../object/Item.php:277
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
msgstr[0] "%d commento"
msgstr[1] "%d commenti"
#: ../../mod/content.php:588 ../../include/text.php:1443
#: ../../object/Item.php:279 ../../object/Item.php:292
msgid "comment"
msgid_plural "comments"
msgstr[0] ""
msgstr[1] "commento"
#: ../../mod/content.php:589 ../../addon/page/page.php:76
#: ../../addon/page/page.php:110 ../../addon/showmore/showmore.php:119
#: ../../include/contact_widgets.php:195 ../../boot.php:575
#: ../../object/Item.php:280
msgid "show more"
msgstr "mostra di più"
#: ../../mod/content.php:667 ../../object/Item.php:196
msgid "like"
msgstr "mi piace"
#: ../../mod/content.php:668 ../../object/Item.php:197
msgid "dislike"
msgstr "non mi piace"
#: ../../mod/content.php:670 ../../object/Item.php:199
msgid "Share this"
msgstr "Condividi questo"
#: ../../mod/content.php:670 ../../object/Item.php:199
msgid "share"
msgstr "condividi"
#: ../../mod/content.php:694 ../../object/Item.php:561
msgid "Bold"
msgstr ""
#: ../../mod/content.php:695 ../../object/Item.php:562
msgid "Italic"
msgstr ""
#: ../../mod/content.php:696 ../../object/Item.php:563
msgid "Underline"
msgstr ""
#: ../../mod/content.php:697 ../../object/Item.php:564
msgid "Quote"
msgstr ""
#: ../../mod/content.php:698 ../../object/Item.php:565
msgid "Code"
msgstr ""
#: ../../mod/content.php:699 ../../object/Item.php:566
msgid "Image"
msgstr ""
#: ../../mod/content.php:700 ../../object/Item.php:567
msgid "Link"
msgstr ""
#: ../../mod/content.php:701 ../../object/Item.php:568
msgid "Video"
msgstr ""
#: ../../mod/content.php:735 ../../object/Item.php:180
msgid "add star"
msgstr "aggiungi a speciali"
#: ../../mod/content.php:736 ../../object/Item.php:181
msgid "remove star"
msgstr "rimuovi da speciali"
#: ../../mod/content.php:737 ../../object/Item.php:182
msgid "toggle star status"
msgstr "Inverti stato preferito"
#: ../../mod/content.php:740 ../../object/Item.php:185
msgid "starred"
msgstr "preferito"
#: ../../mod/content.php:741 ../../object/Item.php:186
msgid "add tag"
msgstr "aggiungi tag"
#: ../../mod/content.php:745 ../../object/Item.php:120
msgid "save to folder"
msgstr "salva nella cartella"
#: ../../mod/content.php:817 ../../object/Item.php:229
msgid "to"
msgstr "a"
#: ../../mod/content.php:818 ../../object/Item.php:230
msgid "Wall-to-Wall"
msgstr "Da bacheca a bacheca"
#: ../../mod/content.php:819 ../../object/Item.php:231
msgid "via Wall-To-Wall:"
msgstr "da bacheca a bacheca"
#: ../../mod/home.php:28 ../../addon/communityhome/communityhome.php:179
#, php-format
msgid "Welcome to %s"
msgstr "Benvenuto su %s"
#: ../../mod/notifications.php:26
msgid "Invalid request identifier."
msgstr "L'identificativo della richiesta non è valido."
#: ../../mod/notifications.php:35 ../../mod/notifications.php:161
#: ../../mod/notifications.php:207
msgid "Discard"
msgstr "Scarta"
#: ../../mod/notifications.php:51 ../../mod/notifications.php:160
#: ../../mod/notifications.php:206 ../../mod/contacts.php:321
#: ../../mod/contacts.php:375
msgid "Ignore"
msgstr "Ignora"
#: ../../mod/notifications.php:75
msgid "System"
msgstr "Sistema"
#: ../../mod/notifications.php:80 ../../include/nav.php:113
msgid "Network"
msgstr "Rete"
#: ../../mod/notifications.php:85 ../../mod/network.php:300
msgid "Personal"
msgstr "Personale"
#: ../../mod/notifications.php:90 ../../view/theme/diabook/theme.php:127
#: ../../include/nav.php:77 ../../include/nav.php:115
msgid "Home"
msgstr "Home"
#: ../../mod/notifications.php:95 ../../include/nav.php:121
msgid "Introductions"
msgstr "Presentazioni"
#: ../../mod/notifications.php:100 ../../mod/message.php:176
#: ../../include/nav.php:128
msgid "Messages"
msgstr "Messaggi"
#: ../../mod/notifications.php:119
msgid "Show Ignored Requests"
msgstr "Mostra richieste ignorate"
#: ../../mod/notifications.php:119
msgid "Hide Ignored Requests"
msgstr "Nascondi richieste ignorate"
#: ../../mod/notifications.php:145 ../../mod/notifications.php:191
msgid "Notification type: "
msgstr "Tipo di notifica: "
#: ../../mod/notifications.php:146
msgid "Friend Suggestion"
msgstr "Amico suggerito"
#: ../../mod/notifications.php:148
#, php-format
msgid "suggested by %s"
msgstr "sugerito da %s"
#: ../../mod/notifications.php:153 ../../mod/notifications.php:200
#: ../../mod/contacts.php:381
msgid "Hide this contact from others"
msgstr "Nascondi questo contatto agli altri"
#: ../../mod/notifications.php:154 ../../mod/notifications.php:201
msgid "Post a new friend activity"
msgstr "Invia una attività \"è ora amico con\""
#: ../../mod/notifications.php:154 ../../mod/notifications.php:201
msgid "if applicable"
msgstr "se applicabile"
#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
#: ../../mod/admin.php:694
msgid "Approve"
msgstr "Approva"
#: ../../mod/notifications.php:177
msgid "Claims to be known to you: "
msgstr "Dice di conoscerti: "
#: ../../mod/notifications.php:177
msgid "yes"
msgstr "si"
#: ../../mod/notifications.php:177
msgid "no"
msgstr "no"
#: ../../mod/notifications.php:184
msgid "Approve as: "
msgstr "Approva come: "
#: ../../mod/notifications.php:185
msgid "Friend"
msgstr "Amico"
#: ../../mod/notifications.php:186
msgid "Sharer"
msgstr "Condivisore"
#: ../../mod/notifications.php:186
msgid "Fan/Admirer"
msgstr "Fan/Ammiratore"
#: ../../mod/notifications.php:192
msgid "Friend/Connect Request"
msgstr "Richiesta amicizia/connessione"
#: ../../mod/notifications.php:192
msgid "New Follower"
msgstr "Qualcuno inizia a seguirti"
#: ../../mod/notifications.php:213
msgid "No introductions."
msgstr "Nessuna presentazione."
#: ../../mod/notifications.php:216 ../../include/nav.php:122
msgid "Notifications"
msgstr "Notifiche"
#: ../../mod/notifications.php:253 ../../mod/notifications.php:378
#: ../../mod/notifications.php:465
#, php-format
msgid "%s liked %s's post"
msgstr "a %s è piaciuto il messaggio di %s"
#: ../../mod/notifications.php:262 ../../mod/notifications.php:387
#: ../../mod/notifications.php:474
#, php-format
msgid "%s disliked %s's post"
msgstr "a %s non è piaciuto il messaggio di %s"
#: ../../mod/notifications.php:276 ../../mod/notifications.php:401
#: ../../mod/notifications.php:488
#, php-format
msgid "%s is now friends with %s"
msgstr "%s è ora amico di %s"
#: ../../mod/notifications.php:283 ../../mod/notifications.php:408
#, php-format
msgid "%s created a new post"
msgstr "%s a creato un nuovo messaggio"
#: ../../mod/notifications.php:284 ../../mod/notifications.php:409
#: ../../mod/notifications.php:497
#, php-format
msgid "%s commented on %s's post"
msgstr "%s ha commentato il messaggio di %s"
#: ../../mod/notifications.php:298
msgid "No more network notifications."
msgstr "Nessuna nuova."
#: ../../mod/notifications.php:302
msgid "Network Notifications"
msgstr "Notifiche dalla rete"
#: ../../mod/notifications.php:328 ../../mod/notify.php:61
msgid "No more system notifications."
msgstr "Nessuna nuova notifica di sistema."
#: ../../mod/notifications.php:332 ../../mod/notify.php:65
msgid "System Notifications"
msgstr "Notifiche di sistema"
#: ../../mod/notifications.php:423
msgid "No more personal notifications."
msgstr "Nessuna nuova."
#: ../../mod/notifications.php:427
msgid "Personal Notifications"
msgstr "Notifiche personali"
#: ../../mod/notifications.php:504
msgid "No more home notifications."
msgstr "Nessuna nuova."
#: ../../mod/notifications.php:508
msgid "Home Notifications"
msgstr "Notifiche bacheca"
#: ../../mod/contacts.php:84 ../../mod/contacts.php:164
msgid "Could not access contact record."
msgstr "Non è possibile accedere al contatto."
#: ../../mod/contacts.php:98
msgid "Could not locate selected profile."
msgstr "Non riesco a trovare il profilo selezionato."
#: ../../mod/contacts.php:121
msgid "Contact updated."
msgstr "Contatto aggiornato."
#: ../../mod/contacts.php:186
msgid "Contact has been blocked"
msgstr "Il contatto è stato bloccato"
#: ../../mod/contacts.php:186
msgid "Contact has been unblocked"
msgstr "Il contatto è stato sbloccato"
#: ../../mod/contacts.php:200
msgid "Contact has been ignored"
msgstr "Il contatto è ignorato"
#: ../../mod/contacts.php:200
msgid "Contact has been unignored"
msgstr "Il contatto non è più ignorato"
#: ../../mod/contacts.php:216
msgid "Contact has been archived"
msgstr ""
#: ../../mod/contacts.php:216
msgid "Contact has been unarchived"
msgstr ""
#: ../../mod/contacts.php:229
msgid "Contact has been removed."
msgstr "Il contatto è stato rimosso."
#: ../../mod/contacts.php:263
#, php-format
msgid "You are mutual friends with %s"
msgstr "Sei amico reciproco con %s"
#: ../../mod/contacts.php:267
#, php-format
msgid "You are sharing with %s"
msgstr "Stai condividendo con %s"
#: ../../mod/contacts.php:272
#, php-format
msgid "%s is sharing with you"
msgstr "%s sta condividendo con te"
#: ../../mod/contacts.php:289
msgid "Private communications are not available for this contact."
msgstr "Le comunicazioni private non sono disponibili per questo contatto."
#: ../../mod/contacts.php:292
msgid "Never"
msgstr "Mai"
#: ../../mod/contacts.php:296
msgid "(Update was successful)"
msgstr "(L'aggiornamento è stato completato)"
#: ../../mod/contacts.php:296
msgid "(Update was not successful)"
msgstr "(L'aggiornamento non è stato completato)"
#: ../../mod/contacts.php:298
msgid "Suggest friends"
msgstr "Suggerisci amici"
#: ../../mod/contacts.php:302
#, php-format
msgid "Network type: %s"
msgstr "Tipo di rete: %s"
#: ../../mod/contacts.php:305 ../../include/contact_widgets.php:190
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
msgstr[0] "%d contatto in comune"
msgstr[1] "%d contatti in comune"
#: ../../mod/contacts.php:310
msgid "View all contacts"
msgstr "Vedi tutti i contatti"
#: ../../mod/contacts.php:315 ../../mod/contacts.php:374
#: ../../mod/admin.php:698
msgid "Unblock"
msgstr "Sblocca"
#: ../../mod/contacts.php:315 ../../mod/contacts.php:374
#: ../../mod/admin.php:697
msgid "Block"
msgstr "Blocca"
#: ../../mod/contacts.php:318
msgid "Toggle Blocked status"
msgstr ""
#: ../../mod/contacts.php:321 ../../mod/contacts.php:375
msgid "Unignore"
msgstr "Non ignorare"
#: ../../mod/contacts.php:324
msgid "Toggle Ignored status"
msgstr ""
#: ../../mod/contacts.php:328
msgid "Unarchive"
msgstr ""
#: ../../mod/contacts.php:328
msgid "Archive"
msgstr ""
#: ../../mod/contacts.php:331
msgid "Toggle Archive status"
msgstr ""
#: ../../mod/contacts.php:334
msgid "Repair"
msgstr "Ripara"
#: ../../mod/contacts.php:337
msgid "Advanced Contact Settings"
msgstr ""
#: ../../mod/contacts.php:343
msgid "Communications lost with this contact!"
msgstr ""
#: ../../mod/contacts.php:346
msgid "Contact Editor"
msgstr "Editor dei Contatti"
#: ../../mod/contacts.php:349
msgid "Profile Visibility"
msgstr "Visibilità del profilo"
#: ../../mod/contacts.php:350
#, 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/contacts.php:351
msgid "Contact Information / Notes"
msgstr "Informazioni / Note sul contatto"
#: ../../mod/contacts.php:352
msgid "Edit contact notes"
msgstr "Modifica note contatto"
#: ../../mod/contacts.php:357 ../../mod/contacts.php:549
#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Visita il profilo di %s [%s]"
#: ../../mod/contacts.php:358
msgid "Block/Unblock contact"
msgstr "Blocca/Sblocca contatto"
#: ../../mod/contacts.php:359
msgid "Ignore contact"
msgstr "Ignora il contatto"
#: ../../mod/contacts.php:360
msgid "Repair URL settings"
msgstr "Impostazioni riparazione URL"
#: ../../mod/contacts.php:361
msgid "View conversations"
msgstr "Vedi conversazioni"
#: ../../mod/contacts.php:363
msgid "Delete contact"
msgstr "Rimuovi contatto"
#: ../../mod/contacts.php:367
msgid "Last update:"
msgstr "Ultimo aggiornamento:"
#: ../../mod/contacts.php:369
msgid "Update public posts"
msgstr "Aggiorna messaggi pubblici"
#: ../../mod/contacts.php:371 ../../mod/admin.php:1170
msgid "Update now"
msgstr "Aggiorna adesso"
#: ../../mod/contacts.php:378
msgid "Currently blocked"
msgstr "Bloccato"
#: ../../mod/contacts.php:379
msgid "Currently ignored"
msgstr "Ignorato"
#: ../../mod/contacts.php:380
msgid "Currently archived"
msgstr ""
#: ../../mod/contacts.php:381
msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr "Risposte ai tuoi post pubblici <strong>possono</strong> essere comunque visibili"
#: ../../mod/contacts.php:434
msgid "Suggestions"
msgstr "Suggerimenti"
#: ../../mod/contacts.php:437
msgid "Suggest potential friends"
msgstr ""
#: ../../mod/contacts.php:440 ../../mod/group.php:191
msgid "All Contacts"
msgstr "Tutti i contatti"
#: ../../mod/contacts.php:443
msgid "Show all contacts"
msgstr ""
#: ../../mod/contacts.php:446
msgid "Unblocked"
msgstr ""
#: ../../mod/contacts.php:449
msgid "Only show unblocked contacts"
msgstr ""
#: ../../mod/contacts.php:453
msgid "Blocked"
msgstr ""
#: ../../mod/contacts.php:456
msgid "Only show blocked contacts"
msgstr ""
#: ../../mod/contacts.php:460
msgid "Ignored"
msgstr ""
#: ../../mod/contacts.php:463
msgid "Only show ignored contacts"
msgstr ""
#: ../../mod/contacts.php:467
msgid "Archived"
msgstr ""
#: ../../mod/contacts.php:470
msgid "Only show archived contacts"
msgstr ""
#: ../../mod/contacts.php:474
msgid "Hidden"
msgstr ""
#: ../../mod/contacts.php:477
msgid "Only show hidden contacts"
msgstr ""
#: ../../mod/contacts.php:525
msgid "Mutual Friendship"
msgstr "Amicizia reciproca"
#: ../../mod/contacts.php:529
msgid "is a fan of yours"
msgstr "è un tuo fan"
#: ../../mod/contacts.php:533
msgid "you are a fan of"
msgstr "sei un fan di"
#: ../../mod/contacts.php:550 ../../mod/nogroup.php:41
msgid "Edit contact"
msgstr "Modifca contatto"
#: ../../mod/contacts.php:571 ../../view/theme/diabook/theme.php:129
#: ../../include/nav.php:139
msgid "Contacts"
msgstr "Contatti"
#: ../../mod/contacts.php:575
msgid "Search your contacts"
msgstr "Cerca nei tuoi contatti"
#: ../../mod/contacts.php:576 ../../mod/directory.php:59
msgid "Finding: "
msgstr "Ricerca: "
#: ../../mod/contacts.php:577 ../../mod/directory.php:61
#: ../../include/contact_widgets.php:33
msgid "Find"
msgstr "Trova"
#: ../../mod/lostpass.php:16
msgid "No valid account found."
msgstr "Nessun account valido trovato."
#: ../../mod/lostpass.php:32
msgid "Password reset request issued. Check your email."
msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."
#: ../../mod/lostpass.php:43
#, php-format
msgid "Password reset requested at %s"
msgstr "Richiesta reimpostazione password su %s"
#: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107
#: ../../mod/register.php:90 ../../mod/register.php:144
#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752
#: ../../addon/facebook/facebook.php:702
#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661
#: ../../addon/public_server/public_server.php:62
#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3301
#: ../../boot.php:788
msgid "Administrator"
msgstr "Amministratore"
#: ../../mod/lostpass.php:65
msgid ""
"Request could not be verified. (You may have previously submitted it.) "
"Password reset failed."
msgstr "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita."
#: ../../mod/lostpass.php:83 ../../boot.php:925
msgid "Password Reset"
msgstr "Reimpostazione password"
#: ../../mod/lostpass.php:84
msgid "Your password has been reset as requested."
msgstr "La tua password è stata reimpostata come richiesto."
#: ../../mod/lostpass.php:85
msgid "Your new password is"
msgstr "La tua nuova password è"
#: ../../mod/lostpass.php:86
msgid "Save or copy your new password - and then"
msgstr "Salva o copia la tua nuova password, quindi"
#: ../../mod/lostpass.php:87
msgid "click here to login"
msgstr "clicca qui per entrare"
#: ../../mod/lostpass.php:88
msgid ""
"Your password may be changed from the <em>Settings</em> page after "
"successful login."
msgstr "Puoi cambiare la tua password dalla pagina <em>Impostazioni</em> dopo aver effettuato l'accesso."
#: ../../mod/lostpass.php:119
msgid "Forgot your Password?"
msgstr "Hai dimenticato la password?"
#: ../../mod/lostpass.php:120
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."
#: ../../mod/lostpass.php:121
msgid "Nickname or Email: "
msgstr "Nome utente o email: "
#: ../../mod/lostpass.php:122
msgid "Reset"
msgstr "Reimposta"
#: ../../mod/settings.php:30 ../../include/nav.php:137
msgid "Account settings"
msgstr "Parametri account"
#: ../../mod/settings.php:35
msgid "Display settings"
msgstr "Impostazioni grafiche"
#: ../../mod/settings.php:41
msgid "Connector settings"
msgstr "Impostazioni connettori"
#: ../../mod/settings.php:46
msgid "Plugin settings"
msgstr "Impostazioni plugin"
#: ../../mod/settings.php:51
msgid "Connected apps"
msgstr ""
#: ../../mod/settings.php:56
msgid "Export personal data"
msgstr "Esporta dati personali"
#: ../../mod/settings.php:61
msgid "Remove account"
msgstr ""
#: ../../mod/settings.php:69 ../../mod/newmember.php:22
#: ../../mod/admin.php:785 ../../mod/admin.php:990
#: ../../addon/dav/friendica/layout.fnk.php:225
#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:643
#: ../../view/theme/diabook/theme.php:773 ../../include/nav.php:137
msgid "Settings"
msgstr "Impostazioni"
#: ../../mod/settings.php:113
msgid "Missing some important data!"
msgstr "Mancano alcuni dati importanti!"
#: ../../mod/settings.php:116 ../../mod/settings.php:569
msgid "Update"
msgstr "Aggiorna"
#: ../../mod/settings.php:221
msgid "Failed to connect with email account using the settings provided."
msgstr "Impossibile collegarsi all'account email con i parametri forniti."
#: ../../mod/settings.php:226
msgid "Email settings updated."
msgstr "Impostazioni e-mail aggiornate."
#: ../../mod/settings.php:290
msgid "Passwords do not match. Password unchanged."
msgstr "Le password non corrispondono. Password non cambiata."
#: ../../mod/settings.php:295
msgid "Empty passwords are not allowed. Password unchanged."
msgstr "Le password non possono essere vuote. Password non cambiata."
#: ../../mod/settings.php:306
msgid "Password changed."
msgstr "Password cambiata."
#: ../../mod/settings.php:308
msgid "Password update failed. Please try again."
msgstr "Aggiornamento password fallito. Prova ancora."
#: ../../mod/settings.php:373
msgid " Please use a shorter name."
msgstr " Usa un nome più corto."
#: ../../mod/settings.php:375
msgid " Name too short."
msgstr " Nome troppo corto."
#: ../../mod/settings.php:381
msgid " Not valid email."
msgstr " Email non valida."
#: ../../mod/settings.php:383
msgid " Cannot change to that email."
msgstr "Non puoi usare quella email."
#: ../../mod/settings.php:437
msgid "Private forum has no privacy permissions. Using default privacy group."
msgstr ""
#: ../../mod/settings.php:441
msgid "Private forum has no privacy permissions and no default privacy group."
msgstr ""
#: ../../mod/settings.php:471 ../../addon/facebook/facebook.php:495
#: ../../addon/fbpost/fbpost.php:144 ../../addon/impressum/impressum.php:78
#: ../../addon/openstreetmap/openstreetmap.php:80
#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105
#: ../../addon/twitter/twitter.php:389
msgid "Settings updated."
msgstr "Impostazioni aggiornate."
#: ../../mod/settings.php:542 ../../mod/settings.php:568
#: ../../mod/settings.php:604
msgid "Add application"
msgstr "Aggiungi applicazione"
#: ../../mod/settings.php:546 ../../mod/settings.php:572
#: ../../addon/statusnet/statusnet.php:570
msgid "Consumer Key"
msgstr "Consumer Key"
#: ../../mod/settings.php:547 ../../mod/settings.php:573
#: ../../addon/statusnet/statusnet.php:569
msgid "Consumer Secret"
msgstr "Consumer Secret"
#: ../../mod/settings.php:548 ../../mod/settings.php:574
msgid "Redirect"
msgstr "Redirect"
#: ../../mod/settings.php:549 ../../mod/settings.php:575
msgid "Icon url"
msgstr "Url icona"
#: ../../mod/settings.php:560
msgid "You can't edit this application."
msgstr "Non puoi modificare questa applicazione."
#: ../../mod/settings.php:603
msgid "Connected Apps"
msgstr "Applicazioni Collegate"
#: ../../mod/settings.php:607
msgid "Client key starts with"
msgstr "Chiave del client inizia con"
#: ../../mod/settings.php:608
msgid "No name"
msgstr "Nessun nome"
#: ../../mod/settings.php:609
msgid "Remove authorization"
msgstr "Rimuovi l'autorizzazione"
#: ../../mod/settings.php:620
msgid "No Plugin settings configured"
msgstr "Nessun plugin ha impostazioni modificabili"
#: ../../mod/settings.php:628 ../../addon/widgets/widgets.php:123
msgid "Plugin Settings"
msgstr "Impostazioni plugin"
#: ../../mod/settings.php:640 ../../mod/settings.php:641
#, php-format
msgid "Built-in support for %s connectivity is %s"
msgstr "Il supporto integrato per la connettività con %s è %s"
#: ../../mod/settings.php:640 ../../mod/settings.php:641
msgid "enabled"
msgstr "abilitato"
#: ../../mod/settings.php:640 ../../mod/settings.php:641
msgid "disabled"
msgstr "disabilitato"
#: ../../mod/settings.php:641
msgid "StatusNet"
msgstr "StatusNet"
#: ../../mod/settings.php:673
msgid "Email access is disabled on this site."
msgstr "L'accesso email è disabilitato su questo sito."
#: ../../mod/settings.php:679
msgid "Connector Settings"
msgstr "Impostazioni Connettore"
#: ../../mod/settings.php:684
msgid "Email/Mailbox Setup"
msgstr "Impostazioni email"
#: ../../mod/settings.php:685
msgid ""
"If you wish to communicate with email contacts using this service "
"(optional), please specify how to connect to your mailbox."
msgstr "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)"
#: ../../mod/settings.php:686
msgid "Last successful email check:"
msgstr "Ultimo controllo email eseguito con successo:"
#: ../../mod/settings.php:688
msgid "IMAP server name:"
msgstr "Nome server IMAP:"
#: ../../mod/settings.php:689
msgid "IMAP port:"
msgstr "Porta IMAP:"
#: ../../mod/settings.php:690
msgid "Security:"
msgstr "Sicurezza:"
#: ../../mod/settings.php:690 ../../mod/settings.php:695
#: ../../addon/dav/common/wdcal_edit.inc.php:191
msgid "None"
msgstr "Nessuna"
#: ../../mod/settings.php:691
msgid "Email login name:"
msgstr "Nome utente email:"
#: ../../mod/settings.php:692
msgid "Email password:"
msgstr "Password email:"
#: ../../mod/settings.php:693
msgid "Reply-to address:"
msgstr "Indirizzo di risposta:"
#: ../../mod/settings.php:694
msgid "Send public posts to all email contacts:"
msgstr "Invia i messaggi pubblici ai contatti email:"
#: ../../mod/settings.php:695
msgid "Action after import:"
msgstr "Azione post importazione:"
#: ../../mod/settings.php:695
msgid "Mark as seen"
msgstr "Segna come letto"
#: ../../mod/settings.php:695
msgid "Move to folder"
msgstr "Sposta nella cartella"
#: ../../mod/settings.php:696
msgid "Move to folder:"
msgstr "Sposta nella cartella:"
#: ../../mod/settings.php:727 ../../mod/admin.php:402
msgid "No special theme for mobile devices"
msgstr ""
#: ../../mod/settings.php:767
msgid "Display Settings"
msgstr "Impostazioni Grafiche"
#: ../../mod/settings.php:773 ../../mod/settings.php:784
msgid "Display Theme:"
msgstr "Tema:"
#: ../../mod/settings.php:774
msgid "Mobile Theme:"
msgstr ""
#: ../../mod/settings.php:775
msgid "Update browser every xx seconds"
msgstr "Aggiorna il browser ogni x secondi"
#: ../../mod/settings.php:775
msgid "Minimum of 10 seconds, no maximum"
msgstr "Minimo 10 secondi, nessun limite massimo"
#: ../../mod/settings.php:776
msgid "Number of items to display per page:"
msgstr ""
#: ../../mod/settings.php:776
msgid "Maximum of 100 items"
msgstr "Massimo 100 voci"
#: ../../mod/settings.php:777
msgid "Don't show emoticons"
msgstr "Non mostrare le emoticons"
#: ../../mod/settings.php:853
msgid "Normal Account Page"
msgstr ""
#: ../../mod/settings.php:854
msgid "This account is a normal personal profile"
msgstr "Questo account è un normale profilo personale"
#: ../../mod/settings.php:857
msgid "Soapbox Page"
msgstr ""
#: ../../mod/settings.php:858
msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà solamente leggere la bacheca"
#: ../../mod/settings.php:861
msgid "Community Forum/Celebrity Account"
msgstr ""
#: ../../mod/settings.php:862
msgid ""
"Automatically approve all connection/friend requests as read-write fans"
msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà leggere e scrivere sulla bacheca"
#: ../../mod/settings.php:865
msgid "Automatic Friend Page"
msgstr ""
#: ../../mod/settings.php:866
msgid "Automatically approve all connection/friend requests as friends"
msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico"
#: ../../mod/settings.php:869
msgid "Private Forum [Experimental]"
msgstr ""
#: ../../mod/settings.php:870
msgid "Private forum - approved members only"
msgstr ""
#: ../../mod/settings.php:882
msgid "OpenID:"
msgstr "OpenID:"
#: ../../mod/settings.php:882
msgid "(Optional) Allow this OpenID to login to this account."
msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID"
#: ../../mod/settings.php:892
msgid "Publish your default profile in your local site directory?"
msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito"
#: ../../mod/settings.php:898
msgid "Publish your default profile in the global social directory?"
msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale"
#: ../../mod/settings.php:906
msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito"
#: ../../mod/settings.php:910
msgid "Hide your profile details from unknown viewers?"
msgstr "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?"
#: ../../mod/settings.php:915
msgid "Allow friends to post to your profile page?"
msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?"
#: ../../mod/settings.php:921
msgid "Allow friends to tag your posts?"
msgstr "Permetti agli amici di taggare i tuoi messaggi?"
#: ../../mod/settings.php:927
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr "Ci permetti di suggerirti come potenziale amico ai nuovi membri?"
#: ../../mod/settings.php:933
msgid "Permit unknown people to send you private mail?"
msgstr "Permetti a utenti sconosciuti di inviarti messaggi privati?"
#: ../../mod/settings.php:941
msgid "Profile is <strong>not published</strong>."
msgstr "Il profilo <strong>non è pubblicato</strong>."
#: ../../mod/settings.php:944 ../../mod/profile_photo.php:248
msgid "or"
msgstr "o"
#: ../../mod/settings.php:949
msgid "Your Identity Address is"
msgstr "L'indirizzo della tua identità è"
#: ../../mod/settings.php:960
msgid "Automatically expire posts after this many days:"
msgstr "Fai scadere i post automaticamente dopo x giorni:"
#: ../../mod/settings.php:960
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr "Se lasciato vuoto, i messaggi non verranno cancellati."
#: ../../mod/settings.php:961
msgid "Advanced expiration settings"
msgstr "Impostazioni avanzate di scandenza"
#: ../../mod/settings.php:962
msgid "Advanced Expiration"
msgstr "Scadenza avanzata"
#: ../../mod/settings.php:963
msgid "Expire posts:"
msgstr "Fai scadere i post:"
#: ../../mod/settings.php:964
msgid "Expire personal notes:"
msgstr "Fai scadere le Note personali:"
#: ../../mod/settings.php:965
msgid "Expire starred posts:"
msgstr "Fai scadere i post Speciali:"
#: ../../mod/settings.php:966
msgid "Expire photos:"
msgstr "Fai scadere le foto:"
#: ../../mod/settings.php:967
msgid "Only expire posts by others:"
msgstr ""
#: ../../mod/settings.php:974
msgid "Account Settings"
msgstr "Impostazioni account"
#: ../../mod/settings.php:982
msgid "Password Settings"
msgstr "Impostazioni password"
#: ../../mod/settings.php:983
msgid "New Password:"
msgstr "Nuova password:"
#: ../../mod/settings.php:984
msgid "Confirm:"
msgstr "Conferma:"
#: ../../mod/settings.php:984
msgid "Leave password fields blank unless changing"
msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password"
#: ../../mod/settings.php:988
msgid "Basic Settings"
msgstr "Impostazioni base"
#: ../../mod/settings.php:989 ../../include/profile_advanced.php:15
msgid "Full Name:"
msgstr "Nome completo:"
#: ../../mod/settings.php:990
msgid "Email Address:"
msgstr "Indirizzo Email:"
#: ../../mod/settings.php:991
msgid "Your Timezone:"
msgstr "Il tuo fuso orario:"
#: ../../mod/settings.php:992
msgid "Default Post Location:"
msgstr "Località predefinita:"
#: ../../mod/settings.php:993
msgid "Use Browser Location:"
msgstr "Usa la località rilevata dal browser:"
#: ../../mod/settings.php:996
msgid "Security and Privacy Settings"
msgstr "Impostazioni di sicurezza e privacy"
#: ../../mod/settings.php:998
msgid "Maximum Friend Requests/Day:"
msgstr "Numero massimo di richieste di amicizia al giorno:"
#: ../../mod/settings.php:998 ../../mod/settings.php:1017
msgid "(to prevent spam abuse)"
msgstr "(per prevenire lo spam)"
#: ../../mod/settings.php:999
msgid "Default Post Permissions"
msgstr "Permessi predefiniti per i messaggi"
#: ../../mod/settings.php:1000
msgid "(click to open/close)"
msgstr "(clicca per aprire/chiudere)"
#: ../../mod/settings.php:1017
msgid "Maximum private messages per day from unknown people:"
msgstr "Numero massimo di messaggi privati da utenti sconosciuti per giorno:"
#: ../../mod/settings.php:1020
msgid "Notification Settings"
msgstr "Impostazioni notifiche"
#: ../../mod/settings.php:1021
msgid "By default post a status message when:"
msgstr ""
#: ../../mod/settings.php:1022
msgid "accepting a friend request"
msgstr ""
#: ../../mod/settings.php:1023
msgid "joining a forum/community"
msgstr ""
#: ../../mod/settings.php:1024
msgid "making an <em>interesting</em> profile change"
msgstr ""
#: ../../mod/settings.php:1025
msgid "Send a notification email when:"
msgstr "Invia una mail di notifica quando:"
#: ../../mod/settings.php:1026
msgid "You receive an introduction"
msgstr "Ricevi una presentazione"
#: ../../mod/settings.php:1027
msgid "Your introductions are confirmed"
msgstr "Le tue presentazioni sono confermate"
#: ../../mod/settings.php:1028
msgid "Someone writes on your profile wall"
msgstr "Qualcuno scrive sulla bacheca del tuo profilo"
#: ../../mod/settings.php:1029
msgid "Someone writes a followup comment"
msgstr "Qualcuno scrive un commento a un tuo messaggio"
#: ../../mod/settings.php:1030
msgid "You receive a private message"
msgstr "Ricevi un messaggio privato"
#: ../../mod/settings.php:1031
msgid "You receive a friend suggestion"
msgstr "Hai ricevuto un suggerimento di amicizia"
#: ../../mod/settings.php:1032
msgid "You are tagged in a post"
msgstr "Sei stato taggato in un post"
#: ../../mod/settings.php:1033
msgid "You are poked/prodded/etc. in a post"
msgstr ""
#: ../../mod/settings.php:1036
msgid "Advanced Account/Page Type Settings"
msgstr ""
#: ../../mod/settings.php:1037
msgid "Change the behaviour of this account for special situations"
msgstr ""
#: ../../mod/manage.php:91
msgid "Manage Identities and/or Pages"
msgstr "Gestisci indentità e/o pagine"
#: ../../mod/manage.php:94
msgid ""
"Toggle between different identities or community/group pages which share "
"your account details or which you have been granted \"manage\" permissions"
msgstr "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione"
#: ../../mod/manage.php:96
msgid "Select an identity to manage: "
msgstr "Seleziona un'identità da gestire:"
#: ../../mod/network.php:97
msgid "Search Results For:"
msgstr "Cerca risultati per:"
#: ../../mod/network.php:137 ../../mod/search.php:16
msgid "Remove term"
msgstr "Rimuovi termine"
#: ../../mod/network.php:146 ../../mod/search.php:13
msgid "Saved Searches"
msgstr "Ricerche salvate"
#: ../../mod/network.php:147 ../../include/group.php:244
msgid "add"
msgstr "aggiungi"
#: ../../mod/network.php:287
msgid "Commented Order"
msgstr "Ordina per commento"
#: ../../mod/network.php:290
msgid "Sort by Comment Date"
msgstr ""
#: ../../mod/network.php:293
msgid "Posted Order"
msgstr "Ordina per invio"
#: ../../mod/network.php:296
msgid "Sort by Post Date"
msgstr ""
#: ../../mod/network.php:303
msgid "Posts that mention or involve you"
msgstr ""
#: ../../mod/network.php:306
msgid "New"
msgstr "Nuovo"
#: ../../mod/network.php:309
msgid "Activity Stream - by date"
msgstr ""
#: ../../mod/network.php:312
msgid "Starred"
msgstr "Preferiti"
#: ../../mod/network.php:315
msgid "Favourite Posts"
msgstr ""
#: ../../mod/network.php:318
msgid "Shared Links"
msgstr "Links condivisi"
#: ../../mod/network.php:321
msgid "Interesting Links"
msgstr ""
#: ../../mod/network.php:388
#, php-format
msgid "Warning: This group contains %s member from an insecure network."
msgid_plural ""
"Warning: This group contains %s members from an insecure network."
msgstr[0] "Attenzione: questo gruppo contiene %s membro da un network insicuro."
msgstr[1] "Attenzione: questo gruppo contiene %s membri da un network insicuro."
#: ../../mod/network.php:391
msgid "Private messages to this group are at risk of public disclosure."
msgstr "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente."
#: ../../mod/network.php:461
msgid "Contact: "
msgstr "Contatto:"
#: ../../mod/network.php:463
msgid "Private messages to this person are at risk of public disclosure."
msgstr "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente."
#: ../../mod/network.php:468
msgid "Invalid contact."
msgstr "Contatto non valido."
#: ../../mod/notes.php:44 ../../boot.php:1696
msgid "Personal Notes"
msgstr "Note personali"
#: ../../mod/notes.php:63 ../../mod/filer.php:30
#: ../../addon/facebook/facebook.php:770
#: ../../addon/privacy_image_cache/privacy_image_cache.php:263
#: ../../addon/fbpost/fbpost.php:267
#: ../../addon/dav/friendica/layout.fnk.php:441
#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:681
msgid "Save"
msgstr "Salva"
#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
#, php-format
msgid "Number of daily wall messages for %s exceeded. Message failed."
msgstr "Numero giornaliero di messaggi per %s superato. Invio fallito."
#: ../../mod/wallmessage.php:56 ../../mod/message.php:59
msgid "No recipient selected."
msgstr "Nessun destinatario selezionato."
#: ../../mod/wallmessage.php:59
msgid "Unable to check your home location."
msgstr ""
#: ../../mod/wallmessage.php:62 ../../mod/message.php:66
msgid "Message could not be sent."
msgstr "Il messaggio non puo' essere inviato."
#: ../../mod/wallmessage.php:65 ../../mod/message.php:69
msgid "Message collection failure."
msgstr "Errore recuperando il messaggio."
#: ../../mod/wallmessage.php:68 ../../mod/message.php:72
msgid "Message sent."
msgstr "Messaggio inviato."
#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
msgid "No recipient."
msgstr "Nessun destinatario."
#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131
#: ../../mod/message.php:242 ../../mod/message.php:250
#: ../../include/conversation.php:833 ../../include/conversation.php:850
msgid "Please enter a link URL:"
msgstr "Inserisci l'indirizzo del link:"
#: ../../mod/wallmessage.php:138 ../../mod/message.php:278
msgid "Send Private Message"
msgstr "Invia un messaggio privato"
#: ../../mod/wallmessage.php:139
#, php-format
msgid ""
"If you wish for %s to respond, please check that the privacy settings on "
"your site allow private mail from unknown senders."
msgstr "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti."
#: ../../mod/wallmessage.php:140 ../../mod/message.php:279
#: ../../mod/message.php:469
msgid "To:"
msgstr "A:"
#: ../../mod/wallmessage.php:141 ../../mod/message.php:284
#: ../../mod/message.php:471
msgid "Subject:"
msgstr "Oggetto:"
#: ../../mod/wallmessage.php:147 ../../mod/message.php:288
#: ../../mod/message.php:474 ../../mod/invite.php:113
msgid "Your message:"
msgstr "Il tuo messaggio:"
#: ../../mod/newmember.php:6
msgid "Welcome to Friendica"
msgstr "Benvenuto su Friendica"
#: ../../mod/newmember.php:8
msgid "New Member Checklist"
msgstr "Cose da fare per i Nuovi Utenti"
#: ../../mod/newmember.php:12
msgid ""
"We would like to offer some tips and links to help make your experience "
"enjoyable. Click any item to visit the relevant page. A link to this page "
"will be visible from your home page for two weeks after your initial "
"registration and then will quietly disappear."
msgstr "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione."
#: ../../mod/newmember.php:14
msgid "Getting Started"
msgstr ""
#: ../../mod/newmember.php:18
msgid "Friendica Walk-Through"
msgstr ""
#: ../../mod/newmember.php:18
msgid ""
"On your <em>Quick Start</em> page - find a brief introduction to your "
"profile and network tabs, make some new connections, and find some groups to"
" join."
msgstr ""
#: ../../mod/newmember.php:26
msgid "Go to Your Settings"
msgstr ""
#: ../../mod/newmember.php:26
msgid ""
"On your <em>Settings</em> page - change your initial password. Also make a "
"note of your Identity Address. This looks just like an email address - and "
"will be useful in making friends on the free social web."
msgstr "Nella tua pagina <em>Impostazioni</em> - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero."
#: ../../mod/newmember.php:28
msgid ""
"Review the other settings, particularly the privacy settings. An unpublished"
" directory listing is like having an unlisted phone number. In general, you "
"should probably publish your listing - unless all of your friends and "
"potential friends know exactly how to find you."
msgstr "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti."
#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
#: ../../view/theme/diabook/theme.php:128 ../../include/profile_advanced.php:7
#: ../../include/profile_advanced.php:84 ../../include/nav.php:50
#: ../../boot.php:1672
msgid "Profile"
msgstr "Profilo"
#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
msgid "Upload Profile Photo"
msgstr "Carica la foto del profilo"
#: ../../mod/newmember.php:36
msgid ""
"Upload a profile photo if you have not done so already. Studies have shown "
"that people with real photos of themselves are ten times more likely to make"
" friends than people who do not."
msgstr "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno."
#: ../../mod/newmember.php:38
msgid "Edit Your Profile"
msgstr ""
#: ../../mod/newmember.php:38
msgid ""
"Edit your <strong>default</strong> profile to your liking. Review the "
"settings for hiding your list of friends and hiding the profile from unknown"
" visitors."
msgstr "Modifica il tuo profilo <strong>predefinito</strong> a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti."
#: ../../mod/newmember.php:40
msgid "Profile Keywords"
msgstr ""
#: ../../mod/newmember.php:40
msgid ""
"Set some public keywords for your default profile which describe your "
"interests. We may be able to find other people with similar interests and "
"suggest friendships."
msgstr "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie."
#: ../../mod/newmember.php:44
msgid "Connecting"
msgstr ""
#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
#: ../../addon/facebook/facebook.php:728 ../../addon/fbpost/fbpost.php:239
#: ../../include/contact_selectors.php:81
msgid "Facebook"
msgstr "Facebook"
#: ../../mod/newmember.php:49
msgid ""
"Authorise the Facebook Connector if you currently have a Facebook account "
"and we will (optionally) import all your Facebook friends and conversations."
msgstr "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook."
#: ../../mod/newmember.php:51
msgid ""
"<em>If</em> this is your own personal server, installing the Facebook addon "
"may ease your transition to the free social web."
msgstr "<em>Se</em questo è il tuo server personale, installare il plugin per Facebook puo' aiutarti nella transizione verso il web sociale libero."
#: ../../mod/newmember.php:56
msgid "Importing Emails"
msgstr ""
#: ../../mod/newmember.php:56
msgid ""
"Enter your email access information on your Connector Settings page if you "
"wish to import and interact with friends or mailing lists from your email "
"INBOX"
msgstr "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo"
#: ../../mod/newmember.php:58
msgid "Go to Your Contacts Page"
msgstr ""
#: ../../mod/newmember.php:58
msgid ""
"Your Contacts page is your gateway to managing friendships and connecting "
"with friends on other networks. Typically you enter their address or site "
"URL in the <em>Add New Contact</em> dialog."
msgstr "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo <em>Aggiungi Nuovo Contatto</em>"
#: ../../mod/newmember.php:60
msgid "Go to Your Site's Directory"
msgstr ""
#: ../../mod/newmember.php:60
msgid ""
"The Directory page lets you find other people in this network or other "
"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
"their profile page. Provide your own Identity Address if requested."
msgstr "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link <em>Connetti</em> o <em>Segui</em> nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto."
#: ../../mod/newmember.php:62
msgid "Finding New People"
msgstr ""
#: ../../mod/newmember.php:62
msgid ""
"On the side panel of the Contacts page are several tools to find new "
"friends. We can match people by interest, look up people by name or "
"interest, and provide suggestions based on network relationships. On a brand"
" new site, friend suggestions will usually begin to be populated within 24 "
"hours."
msgstr "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore."
#: ../../mod/newmember.php:66 ../../include/group.php:239
msgid "Groups"
msgstr "Grouppi"
#: ../../mod/newmember.php:70
msgid "Group Your Contacts"
msgstr ""
#: ../../mod/newmember.php:70
msgid ""
"Once you have made some friends, organize them into private conversation "
"groups from the sidebar of your Contacts page and then you can interact with"
" each group privately on your Network page."
msgstr "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete"
#: ../../mod/newmember.php:73
msgid "Why Aren't My Posts Public?"
msgstr ""
#: ../../mod/newmember.php:73
msgid ""
"Friendica respects your privacy. By default, your posts will only show up to"
" people you've added as friends. For more information, see the help section "
"from the link above."
msgstr ""
#: ../../mod/newmember.php:78
msgid "Getting Help"
msgstr ""
#: ../../mod/newmember.php:82
msgid "Go to the Help Section"
msgstr ""
#: ../../mod/newmember.php:82
msgid ""
"Our <strong>help</strong> pages may be consulted for detail on other program"
" features and resources."
msgstr "Le nostre pagine della <strong>guida</strong> possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse."
#: ../../mod/attach.php:8
msgid "Item not available."
msgstr "Oggetto non disponibile."
#: ../../mod/attach.php:20
msgid "Item was not found."
msgstr "Oggetto non trovato."
#: ../../mod/group.php:29
msgid "Group created."
msgstr "Gruppo creato."
#: ../../mod/group.php:35
msgid "Could not create group."
msgstr "Impossibile creare il gruppo."
#: ../../mod/group.php:47 ../../mod/group.php:137
msgid "Group not found."
msgstr "Gruppo non trovato."
#: ../../mod/group.php:60
msgid "Group name changed."
msgstr "Il nome del gruppo è cambiato."
#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:316
msgid "Permission denied"
msgstr "Permesso negato"
#: ../../mod/group.php:90
msgid "Create a group of contacts/friends."
msgstr "Crea un gruppo di amici/contatti."
#: ../../mod/group.php:91 ../../mod/group.php:177
msgid "Group Name: "
msgstr "Nome del gruppo:"
#: ../../mod/group.php:110
msgid "Group removed."
msgstr "Gruppo rimosso."
#: ../../mod/group.php:112
msgid "Unable to remove group."
msgstr "Impossibile rimuovere il gruppo."
#: ../../mod/group.php:176
msgid "Group Editor"
msgstr "Modifica gruppo"
#: ../../mod/group.php:189
msgid "Members"
msgstr "Membri"
#: ../../mod/group.php:221 ../../mod/profperm.php:105
msgid "Click on a contact to add or remove."
msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo."
#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
msgid "Invalid profile identifier."
msgstr "Indentificativo del profilo non valido."
#: ../../mod/profperm.php:101
msgid "Profile Visibility Editor"
msgstr "Modifica visibilità del profilo"
#: ../../mod/profperm.php:114
msgid "Visible To"
msgstr "Visibile a"
#: ../../mod/profperm.php:130
msgid "All Contacts (with secure profile access)"
msgstr "Tutti i contatti (con profilo ad accesso sicuro)"
#: ../../mod/viewcontacts.php:39
msgid "No contacts."
msgstr "Nessun contatto."
#: ../../mod/viewcontacts.php:76 ../../include/text.php:618
msgid "View Contacts"
msgstr "Visualizza i contatti"
#: ../../mod/register.php:88 ../../mod/regmod.php:52
#, php-format
msgid "Registration details for %s"
msgstr "Dettagli della registrazione di %s"
#: ../../mod/register.php:96
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr "Registrazione completata. Controlla la tua mail per ulteriori informazioni."
#: ../../mod/register.php:100
msgid "Failed to send email message. Here is the message that failed."
msgstr "Errore nell'invio del messaggio email. Questo è il messaggio non inviato."
#: ../../mod/register.php:105
msgid "Your registration can not be processed."
msgstr "La tua registrazione non puo' essere elaborata."
#: ../../mod/register.php:142
#, php-format
msgid "Registration request at %s"
msgstr "Richiesta di registrazione su %s"
#: ../../mod/register.php:151
msgid "Your registration is pending approval by the site owner."
msgstr "La tua richiesta è in attesa di approvazione da parte del prorietario del sito."
#: ../../mod/register.php:189
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:217
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking 'Register'."
msgstr "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'."
#: ../../mod/register.php:218
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera."
#: ../../mod/register.php:219
msgid "Your OpenID (optional): "
msgstr "Il tuo OpenID (opzionale): "
#: ../../mod/register.php:233
msgid "Include your profile in member directory?"
msgstr "Includi il tuo profilo nell'elenco pubblico?"
#: ../../mod/register.php:255
msgid "Membership on this site is by invitation only."
msgstr "La registrazione su questo sito è solo su invito."
#: ../../mod/register.php:256
msgid "Your invitation ID: "
msgstr "L'ID del tuo invito:"
#: ../../mod/register.php:259 ../../mod/admin.php:444
msgid "Registration"
msgstr "Registrazione"
#: ../../mod/register.php:267
msgid "Your Full Name (e.g. Joe Smith): "
msgstr "Il tuo nome completo (es. Mario Rossi): "
#: ../../mod/register.php:268
msgid "Your Email Address: "
msgstr "Il tuo indirizzo email: "
#: ../../mod/register.php:269
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be "
"'<strong>nickname@$sitename</strong>'."
msgstr "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà '<strong>soprannome@$sitename</strong>'."
#: ../../mod/register.php:270
msgid "Choose a nickname: "
msgstr "Scegli un nome utente: "
#: ../../mod/register.php:273 ../../include/nav.php:81 ../../boot.php:887
msgid "Register"
msgstr "Registrati"
#: ../../mod/dirfind.php:26
msgid "People Search"
msgstr "Cerca persone"
#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/tagger.php:62
#: ../../addon/facebook/facebook.php:1598
#: ../../addon/communityhome/communityhome.php:158
#: ../../addon/communityhome/communityhome.php:167
#: ../../view/theme/diabook/theme.php:565
#: ../../view/theme/diabook/theme.php:574 ../../include/diaspora.php:1824
#: ../../include/conversation.php:120 ../../include/conversation.php:129
#: ../../include/conversation.php:248 ../../include/conversation.php:257
msgid "status"
msgstr "stato"
#: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1602
#: ../../addon/communityhome/communityhome.php:172
#: ../../view/theme/diabook/theme.php:579 ../../include/diaspora.php:1840
#: ../../include/conversation.php:136
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr "A %1$s piace %3$s di %2$s"
#: ../../mod/like.php:164 ../../include/conversation.php:139
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr "A %1$s non piace %3$s di %2$s"
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159
#: ../../mod/admin.php:734 ../../mod/admin.php:933 ../../mod/display.php:29
#: ../../mod/display.php:145 ../../include/items.php:3779
msgid "Item not found."
msgstr "Elemento non trovato."
#: ../../mod/viewsrc.php:7
msgid "Access denied."
msgstr "Accesso negato."
#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:130
#: ../../include/nav.php:51 ../../boot.php:1679
msgid "Photos"
msgstr "Foto"
#: ../../mod/fbrowser.php:96
msgid "Files"
msgstr ""
#: ../../mod/regmod.php:61
msgid "Account approved."
msgstr "Account approvato."
#: ../../mod/regmod.php:98
#, php-format
msgid "Registration revoked for %s"
msgstr "Registrazione revocata per %s"
#: ../../mod/regmod.php:110
msgid "Please login."
msgstr "Accedi."
#: ../../mod/item.php:91
msgid "Unable to locate original post."
msgstr "Impossibile trovare il messaggio originale."
#: ../../mod/item.php:275
msgid "Empty post discarded."
msgstr "Messaggio vuoto scartato."
#: ../../mod/item.php:407 ../../mod/wall_upload.php:133
#: ../../mod/wall_upload.php:142 ../../mod/wall_upload.php:149
#: ../../include/message.php:144
msgid "Wall Photos"
msgstr "Foto della bacheca"
#: ../../mod/item.php:820
msgid "System error. Post not saved."
msgstr "Errore di sistema. Messaggio non salvato."
#: ../../mod/item.php:845
#, php-format
msgid ""
"This message was sent to you by %s, a member of the Friendica social "
"network."
msgstr "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica."
#: ../../mod/item.php:847
#, php-format
msgid "You may visit them online at %s"
msgstr "Puoi visitarli online su %s"
#: ../../mod/item.php:848
msgid ""
"Please contact the sender by replying to this post if you do not wish to "
"receive these messages."
msgstr "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi."
#: ../../mod/item.php:850
#, php-format
msgid "%s posted an update."
msgstr "%s ha inviato un aggiornamento."
#: ../../mod/mood.php:62 ../../include/conversation.php:226
#, php-format
msgid "%1$s is currently %2$s"
msgstr ""
#: ../../mod/mood.php:133
msgid "Mood"
msgstr ""
#: ../../mod/mood.php:134
msgid "Set your current mood and tell your friends"
msgstr ""
#: ../../mod/profile_photo.php:44
msgid "Image uploaded but image cropping failed."
msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."
#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
#, php-format
msgid "Image size reduction [%s] failed."
msgstr "Il ridimensionamento del'immagine [%s] è fallito."
#: ../../mod/profile_photo.php:118
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:128
msgid "Unable to process image"
msgstr "Impossibile elaborare l'immagine"
#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:88
#, 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 "Upload File:"
msgstr "Carica un file:"
#: ../../mod/profile_photo.php:243
msgid "Select a profile:"
msgstr ""
#: ../../mod/profile_photo.php:245
#: ../../addon/dav/friendica/layout.fnk.php:152
msgid "Upload"
msgstr "Carica"
#: ../../mod/profile_photo.php:248
msgid "skip this step"
msgstr "salta questo passaggio"
#: ../../mod/profile_photo.php:248
msgid "select a photo from your photo albums"
msgstr "seleziona una foto dai tuoi album"
#: ../../mod/profile_photo.php:262
msgid "Crop Image"
msgstr "Ritaglia immagine"
#: ../../mod/profile_photo.php:263
msgid "Please adjust the image cropping for optimum viewing."
msgstr "Ritaglia l'imagine per una visualizzazione migliore."
#: ../../mod/profile_photo.php:265
msgid "Done Editing"
msgstr "Finito"
#: ../../mod/profile_photo.php:299
msgid "Image uploaded successfully."
msgstr "Immagine caricata con successo."
#: ../../mod/hcard.php:10
msgid "No profile"
msgstr "Nessun profilo"
#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
msgid "Remove My Account"
msgstr "Rimuovi il mio account"
#: ../../mod/removeme.php:46
msgid ""
"This will completely remove your account. Once this has been done it is not "
"recoverable."
msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo."
#: ../../mod/removeme.php:47
msgid "Please enter your password for verification:"
msgstr "Inserisci la tua password per verifica:"
#: ../../mod/message.php:9 ../../include/nav.php:131
msgid "New Message"
msgstr "Nuovo messaggio"
#: ../../mod/message.php:63
msgid "Unable to locate contact information."
msgstr "Impossibile trovare le informazioni del contatto."
#: ../../mod/message.php:191
msgid "Message deleted."
msgstr "Messaggio eliminato."
#: ../../mod/message.php:221
msgid "Conversation removed."
msgstr "Conversazione rimossa."
#: ../../mod/message.php:327
msgid "No messages."
msgstr "Nessun messaggio."
#: ../../mod/message.php:334
#, php-format
msgid "Unknown sender - %s"
msgstr "Mittente sconosciuto - %s"
#: ../../mod/message.php:337
#, php-format
msgid "You and %s"
msgstr "Tu e %s"
#: ../../mod/message.php:340
#, php-format
msgid "%s and You"
msgstr ""
#: ../../mod/message.php:350 ../../mod/message.php:462
msgid "Delete conversation"
msgstr "Elimina la conversazione"
#: ../../mod/message.php:353
msgid "D, d M Y - g:i A"
msgstr "D d M Y - G:i"
#: ../../mod/message.php:356
#, php-format
msgid "%d message"
msgid_plural "%d messages"
msgstr[0] "%d messaggio"
msgstr[1] "%d messaggi"
#: ../../mod/message.php:391
msgid "Message not available."
msgstr "Messaggio non disponibile."
#: ../../mod/message.php:444
msgid "Delete message"
msgstr "Elimina il messaggio"
#: ../../mod/message.php:464
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr "Nessuna comunicazione sicura disponibile, <strong>Potresti</strong> essere in grado di rispondere dalla pagina del profilo del mittente."
#: ../../mod/message.php:468
msgid "Send Reply"
msgstr "Invia la risposta"
#: ../../mod/allfriends.php:34
#, php-format
msgid "Friends of %s"
msgstr "Amici di %s"
#: ../../mod/allfriends.php:40
msgid "No friends to display."
msgstr "Nessun amico da visualizzare."
#: ../../mod/admin.php:55
msgid "Theme settings updated."
msgstr ""
#: ../../mod/admin.php:96 ../../mod/admin.php:442
msgid "Site"
msgstr "Sito"
#: ../../mod/admin.php:97 ../../mod/admin.php:688 ../../mod/admin.php:701
msgid "Users"
msgstr "Utenti"
#: ../../mod/admin.php:98 ../../mod/admin.php:783 ../../mod/admin.php:825
msgid "Plugins"
msgstr "Plugin"
#: ../../mod/admin.php:99 ../../mod/admin.php:988 ../../mod/admin.php:1024
msgid "Themes"
msgstr "Temi"
#: ../../mod/admin.php:100
msgid "DB updates"
msgstr ""
#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1111
msgid "Logs"
msgstr "Log"
#: ../../mod/admin.php:120 ../../include/nav.php:146
msgid "Admin"
msgstr "Amministrazione"
#: ../../mod/admin.php:121
msgid "Plugin Features"
msgstr ""
#: ../../mod/admin.php:123
msgid "User registrations waiting for confirmation"
msgstr "Utenti registrati in attesa di conferma"
#: ../../mod/admin.php:183 ../../mod/admin.php:669
msgid "Normal Account"
msgstr "Account normale"
#: ../../mod/admin.php:184 ../../mod/admin.php:670
msgid "Soapbox Account"
msgstr "Account per comunicati e annunci"
#: ../../mod/admin.php:185 ../../mod/admin.php:671
msgid "Community/Celebrity Account"
msgstr "Account per celebrità o per comunità"
#: ../../mod/admin.php:186 ../../mod/admin.php:672
msgid "Automatic Friend Account"
msgstr "Account per amicizia automatizzato"
#: ../../mod/admin.php:187
msgid "Blog Account"
msgstr ""
#: ../../mod/admin.php:188
msgid "Private Forum"
msgstr ""
#: ../../mod/admin.php:207
msgid "Message queues"
msgstr ""
#: ../../mod/admin.php:212 ../../mod/admin.php:441 ../../mod/admin.php:687
#: ../../mod/admin.php:782 ../../mod/admin.php:824 ../../mod/admin.php:987
#: ../../mod/admin.php:1023 ../../mod/admin.php:1110
msgid "Administration"
msgstr "Amministrazione"
#: ../../mod/admin.php:213
msgid "Summary"
msgstr "Sommario"
#: ../../mod/admin.php:215
msgid "Registered users"
msgstr "Utenti registrati"
#: ../../mod/admin.php:217
msgid "Pending registrations"
msgstr "Registrazioni in attesa"
#: ../../mod/admin.php:218
msgid "Version"
msgstr "Versione"
#: ../../mod/admin.php:220
msgid "Active plugins"
msgstr "Plugin attivi"
#: ../../mod/admin.php:373
msgid "Site settings updated."
msgstr "Impostazioni del sito aggiornate."
#: ../../mod/admin.php:428
msgid "Closed"
msgstr "Chiusa"
#: ../../mod/admin.php:429
msgid "Requires approval"
msgstr "Richiede l'approvazione"
#: ../../mod/admin.php:430
msgid "Open"
msgstr "Aperta"
#: ../../mod/admin.php:434
msgid "No SSL policy, links will track page SSL state"
msgstr ""
#: ../../mod/admin.php:435
msgid "Force all links to use SSL"
msgstr "Forza tutti i linki ad usare SSL"
#: ../../mod/admin.php:436
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr ""
#: ../../mod/admin.php:445
msgid "File upload"
msgstr "Caricamento file"
#: ../../mod/admin.php:446
msgid "Policies"
msgstr "Politiche"
#: ../../mod/admin.php:447
msgid "Advanced"
msgstr "Avanzate"
#: ../../mod/admin.php:451 ../../addon/statusnet/statusnet.php:567
msgid "Site name"
msgstr "Nome del sito"
#: ../../mod/admin.php:452
msgid "Banner/Logo"
msgstr "Banner/Logo"
#: ../../mod/admin.php:453
msgid "System language"
msgstr "Lingua di sistema"
#: ../../mod/admin.php:454
msgid "System theme"
msgstr "Tema di sistema"
#: ../../mod/admin.php:454
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
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 "SSL link policy"
msgstr ""
#: ../../mod/admin.php:456
msgid "Determines whether generated links should be forced to use SSL"
msgstr ""
#: ../../mod/admin.php:457
msgid "Maximum image size"
msgstr "Massima dimensione immagini"
#: ../../mod/admin.php:457
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:458
msgid "Maximum image length"
msgstr ""
#: ../../mod/admin.php:458
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr ""
#: ../../mod/admin.php:459
msgid "JPEG image quality"
msgstr ""
#: ../../mod/admin.php:459
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr ""
#: ../../mod/admin.php:461
msgid "Register policy"
msgstr "Politica di registrazione"
#: ../../mod/admin.php:462
msgid "Register text"
msgstr "Testo registrazione"
#: ../../mod/admin.php:462
msgid "Will be displayed prominently on the registration page."
msgstr "Sarà mostrato ben visibile nella pagina di registrazione."
#: ../../mod/admin.php:463
msgid "Accounts abandoned after x days"
msgstr "Account abbandonati dopo x giorni"
#: ../../mod/admin.php:463
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo."
#: ../../mod/admin.php:464
msgid "Allowed friend domains"
msgstr "Domini amici consentiti"
#: ../../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 "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."
#: ../../mod/admin.php:465
msgid "Allowed email domains"
msgstr "Domini email consentiti"
#: ../../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 "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:466
msgid "Block public"
msgstr "Blocca pagine pubbliche"
#: ../../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 "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato."
#: ../../mod/admin.php:467
msgid "Force publish"
msgstr "Forza publicazione"
#: ../../mod/admin.php:467
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr "Seleziona per forzare tutti i profili di questo sito ad essere compresi nell'elenco di questo sito."
#: ../../mod/admin.php:468
msgid "Global directory update URL"
msgstr "URL aggiornamento Elenco Globale"
#: ../../mod/admin.php:468
msgid ""
"URL to update the global directory. If this is not set, the global directory"
" is completely unavailable to the application."
msgstr "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato."
#: ../../mod/admin.php:469
msgid "Allow threaded items"
msgstr ""
#: ../../mod/admin.php:469
msgid "Allow infinite level threading for items on this site."
msgstr ""
#: ../../mod/admin.php:470
msgid "Private posts by default for new users"
msgstr ""
#: ../../mod/admin.php:470
msgid ""
"Set default post permissions for all new members to the default privacy "
"group rather than public."
msgstr ""
#: ../../mod/admin.php:472
msgid "Block multiple registrations"
msgstr "Blocca registrazioni multiple"
#: ../../mod/admin.php:472
msgid "Disallow users to register additional accounts for use as pages."
msgstr "Non permette all'utente di registrare account extra da usare come pagine."
#: ../../mod/admin.php:473
msgid "OpenID support"
msgstr "Supporto OpenID"
#: ../../mod/admin.php:473
msgid "OpenID support for registration and logins."
msgstr "Supporta OpenID per la registrazione e il login"
#: ../../mod/admin.php:474
msgid "Fullname check"
msgstr "Controllo nome completo"
#: ../../mod/admin.php:474
msgid ""
"Force users to register with a space between firstname and lastname in Full "
"name, as an antispam measure"
msgstr "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam"
#: ../../mod/admin.php:475
msgid "UTF-8 Regular expressions"
msgstr "Espressioni regolari UTF-8"
#: ../../mod/admin.php:475
msgid "Use PHP UTF8 regular expressions"
msgstr "Usa le espressioni regolari PHP in UTF8"
#: ../../mod/admin.php:476
msgid "Show Community Page"
msgstr "Mostra pagina Comunità"
#: ../../mod/admin.php:476
msgid ""
"Display a Community page showing all recent public postings on this site."
msgstr "Mostra una pagina Comunità con tutti i recenti messaggi pubblici su questo sito."
#: ../../mod/admin.php:477
msgid "Enable OStatus support"
msgstr "Abilita supporto OStatus"
#: ../../mod/admin.php:477
msgid ""
"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
"communications in OStatus are public, so privacy warnings will be "
"occasionally displayed."
msgstr "Fornisce compatibiltà OStatuts (identi.ca, status.net, etc.). Tutte le comunicazioni in OStatus sono pubbliche, per cui avvisi di provacy verranno occasionalmente mostrati."
#: ../../mod/admin.php:478
msgid "Enable Diaspora support"
msgstr "Abilita il supporto a Diaspora"
#: ../../mod/admin.php:478
msgid "Provide built-in Diaspora network compatibility."
msgstr "Fornisce compatibilità con il network Diaspora."
#: ../../mod/admin.php:479
msgid "Only allow Friendica contacts"
msgstr "Permetti solo contatti Friendica"
#: ../../mod/admin.php:479
msgid ""
"All contacts must use Friendica protocols. All other built-in communication "
"protocols disabled."
msgstr "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati."
#: ../../mod/admin.php:480
msgid "Verify SSL"
msgstr "Verifica SSL"
#: ../../mod/admin.php:480
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you"
" cannot connect (at all) to self-signed SSL sites."
msgstr "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati."
#: ../../mod/admin.php:481
msgid "Proxy user"
msgstr "Utente Proxy"
#: ../../mod/admin.php:482
msgid "Proxy URL"
msgstr "URL Proxy"
#: ../../mod/admin.php:483
msgid "Network timeout"
msgstr "Timeout rete"
#: ../../mod/admin.php:483
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)."
#: ../../mod/admin.php:484
msgid "Delivery interval"
msgstr ""
#: ../../mod/admin.php:484
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:485
msgid "Poll interval"
msgstr ""
#: ../../mod/admin.php:485
msgid ""
"Delay background polling processes by this many seconds to reduce system "
"load. If 0, use delivery interval."
msgstr ""
#: ../../mod/admin.php:486
msgid "Maximum Load Average"
msgstr ""
#: ../../mod/admin.php:486
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
msgstr ""
#: ../../mod/admin.php:503
msgid "Update has been marked successful"
msgstr ""
#: ../../mod/admin.php:513
#, php-format
msgid "Executing %s failed. Check system logs."
msgstr ""
#: ../../mod/admin.php:516
#, php-format
msgid "Update %s was successfully applied."
msgstr ""
#: ../../mod/admin.php:520
#, php-format
msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr ""
#: ../../mod/admin.php:523
#, php-format
msgid "Update function %s could not be found."
msgstr ""
#: ../../mod/admin.php:538
msgid "No failed updates."
msgstr ""
#: ../../mod/admin.php:542
msgid "Failed Updates"
msgstr ""
#: ../../mod/admin.php:543
msgid ""
"This does not include updates prior to 1139, which did not return a status."
msgstr ""
#: ../../mod/admin.php:544
msgid "Mark success (if update was manually applied)"
msgstr ""
#: ../../mod/admin.php:545
msgid "Attempt to execute this update step automatically"
msgstr ""
#: ../../mod/admin.php:570
#, php-format
msgid "%s user blocked/unblocked"
msgid_plural "%s users blocked/unblocked"
msgstr[0] ""
msgstr[1] ""
#: ../../mod/admin.php:577
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] "%s utente cancellato"
msgstr[1] "%s utenti cancellati"
#: ../../mod/admin.php:616
#, php-format
msgid "User '%s' deleted"
msgstr "Utente '%s' cancellato"
#: ../../mod/admin.php:624
#, php-format
msgid "User '%s' unblocked"
msgstr "Utente '%s' sbloccato"
#: ../../mod/admin.php:624
#, php-format
msgid "User '%s' blocked"
msgstr "Utente '%s' bloccato"
#: ../../mod/admin.php:690
msgid "select all"
msgstr "seleziona tutti"
#: ../../mod/admin.php:691
msgid "User registrations waiting for confirm"
msgstr "Richieste di registrazione in attesa di conferma"
#: ../../mod/admin.php:692
msgid "Request date"
msgstr "Data richiesta"
#: ../../mod/admin.php:692 ../../mod/admin.php:702
#: ../../include/contact_selectors.php:79
msgid "Email"
msgstr "Email"
#: ../../mod/admin.php:693
msgid "No registrations."
msgstr "Nessuna registrazione."
#: ../../mod/admin.php:695
msgid "Deny"
msgstr "Nega"
#: ../../mod/admin.php:699
msgid "Site admin"
msgstr ""
#: ../../mod/admin.php:702
msgid "Register date"
msgstr "Data registrazione"
#: ../../mod/admin.php:702
msgid "Last login"
msgstr "Ultimo accesso"
#: ../../mod/admin.php:702
msgid "Last item"
msgstr "Ultimo elemento"
#: ../../mod/admin.php:702
msgid "Account"
msgstr "Account"
#: ../../mod/admin.php:704
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?"
#: ../../mod/admin.php:705
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 "L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?"
#: ../../mod/admin.php:746
#, php-format
msgid "Plugin %s disabled."
msgstr "Plugin %s disabilitato."
#: ../../mod/admin.php:750
#, php-format
msgid "Plugin %s enabled."
msgstr "Plugin %s abilitato."
#: ../../mod/admin.php:760 ../../mod/admin.php:958
msgid "Disable"
msgstr "Disabilita"
#: ../../mod/admin.php:762 ../../mod/admin.php:960
msgid "Enable"
msgstr "Abilita"
#: ../../mod/admin.php:784 ../../mod/admin.php:989
msgid "Toggle"
msgstr "Inverti"
#: ../../mod/admin.php:792 ../../mod/admin.php:999
msgid "Author: "
msgstr "Autore: "
#: ../../mod/admin.php:793 ../../mod/admin.php:1000
msgid "Maintainer: "
msgstr "Manutentore: "
#: ../../mod/admin.php:922
msgid "No themes found."
msgstr "Nessun tema trovato."
#: ../../mod/admin.php:981
msgid "Screenshot"
msgstr ""
#: ../../mod/admin.php:1029
msgid "[Experimental]"
msgstr "[Sperimentale]"
#: ../../mod/admin.php:1030
msgid "[Unsupported]"
msgstr "[Non supportato]"
#: ../../mod/admin.php:1057
msgid "Log settings updated."
msgstr "Impostazioni Log aggiornate."
#: ../../mod/admin.php:1113
msgid "Clear"
msgstr "Pulisci"
#: ../../mod/admin.php:1119
msgid "Debugging"
msgstr "Debugging"
#: ../../mod/admin.php:1120
msgid "Log file"
msgstr "File di Log"
#: ../../mod/admin.php:1120
msgid ""
"Must be writable by web server. Relative to your Friendica top-level "
"directory."
msgstr "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica."
#: ../../mod/admin.php:1121
msgid "Log level"
msgstr "Livello di Log"
#: ../../mod/admin.php:1171
msgid "Close"
msgstr "Chiudi"
#: ../../mod/admin.php:1177
msgid "FTP Host"
msgstr "Indirizzo FTP"
#: ../../mod/admin.php:1178
msgid "FTP Path"
msgstr "Percorso FTP"
#: ../../mod/admin.php:1179
msgid "FTP User"
msgstr "Utente FTP"
#: ../../mod/admin.php:1180
msgid "FTP Password"
msgstr "Pasword FTP"
#: ../../mod/profile.php:22 ../../boot.php:1074
msgid "Requested profile is not available."
msgstr "Profilo richiesto non disponibile."
#: ../../mod/profile.php:152 ../../mod/display.php:77
msgid "Access to this profile has been restricted."
msgstr "L'accesso a questo profilo è stato limitato."
#: ../../mod/profile.php:177
msgid "Tips for New Members"
msgstr "Consigli per i Nuovi Utenti"
#: ../../mod/ping.php:238
msgid "{0} wants to be your friend"
msgstr "{0} vuole essere tuo amico"
#: ../../mod/ping.php:243
msgid "{0} sent you a message"
msgstr "{0} ti ha inviato un messaggio"
#: ../../mod/ping.php:248
msgid "{0} requested registration"
msgstr "{0} chiede la registrazione"
#: ../../mod/ping.php:254
#, php-format
msgid "{0} commented %s's post"
msgstr "{0} ha commentato il post di %s"
#: ../../mod/ping.php:259
#, php-format
msgid "{0} liked %s's post"
msgstr "a {0} piace il post di %s"
#: ../../mod/ping.php:264
#, php-format
msgid "{0} disliked %s's post"
msgstr "a {0} non piace il post di %s"
#: ../../mod/ping.php:269
#, php-format
msgid "{0} is now friends with %s"
msgstr "{0} ora è amico di %s"
#: ../../mod/ping.php:274
msgid "{0} posted"
msgstr "{0} ha inviato un nuovo messaggio"
#: ../../mod/ping.php:279
#, php-format
msgid "{0} tagged %s's post with #%s"
msgstr "{0} ha taggato il post di %s con #%s"
#: ../../mod/ping.php:285
msgid "{0} mentioned you in a post"
msgstr "{0} ti ha citato in un post"
#: ../../mod/nogroup.php:58
msgid "Contacts who are not members of a group"
msgstr ""
#: ../../mod/openid.php:24
msgid "OpenID protocol error. No ID returned."
msgstr ""
#: ../../mod/openid.php:53
msgid ""
"Account not found and OpenID registration is not permitted on this site."
msgstr ""
#: ../../mod/openid.php:93 ../../include/auth.php:98
#: ../../include/auth.php:161
msgid "Login failed."
msgstr "Accesso fallito."
#: ../../mod/follow.php:27
msgid "Contact added"
msgstr ""
#: ../../mod/common.php:42
msgid "Common Friends"
msgstr "Amici in comune"
#: ../../mod/common.php:78
msgid "No contacts in common."
msgstr ""
#: ../../mod/share.php:28
msgid "link"
msgstr ""
#: ../../mod/display.php:138
msgid "Item has been removed."
msgstr "L'elemento è stato rimosso."
msgstr "L'oggetto è stato rimosso."
#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
msgid "Item not found"
msgstr "Elemento non trovato"
#: ../../mod/apps.php:4
msgid "Applications"
msgstr "Applicazioni"
#: ../../mod/editpost.php:32
msgid "Edit post"
msgstr "Modifica messaggio"
#: ../../mod/apps.php:7
msgid "No installed applications."
msgstr "Nessuna applicazione installata."
#: ../../mod/editpost.php:75 ../../include/conversation.php:800
msgid "Post to Email"
msgstr "Invia a Email"
#: ../../mod/search.php:85 ../../include/text.php:678
#: ../../include/text.php:679 ../../include/nav.php:91
msgid "Search"
msgstr "Cerca"
#: ../../mod/editpost.php:91 ../../mod/message.php:135
#: ../../mod/message.php:268 ../../include/conversation.php:815
msgid "Upload photo"
msgstr "Carica foto"
#: ../../mod/profiles.php:21 ../../mod/profiles.php:423
#: ../../mod/profiles.php:537 ../../mod/dfrn_confirm.php:62
msgid "Profile not found."
msgstr "Profilo non trovato."
#: ../../mod/editpost.php:92 ../../include/conversation.php:816
msgid "Attach file"
msgstr "Allega file"
#: ../../mod/profiles.php:31
msgid "Profile Name is required."
msgstr "Il nome profilo è obbligatorio ."
#: ../../mod/editpost.php:93 ../../mod/message.php:136
#: ../../mod/message.php:269 ../../include/conversation.php:817
msgid "Insert web link"
msgstr "Inserisci link"
#: ../../mod/profiles.php:160
msgid "Marital Status"
msgstr ""
#: ../../mod/editpost.php:94
msgid "Insert YouTube video"
msgstr "Inserisci video da YouTube"
#: ../../mod/profiles.php:164
msgid "Romantic Partner"
msgstr ""
#: ../../mod/editpost.php:95
msgid "Insert Vorbis [.ogg] video"
msgstr "Inserisci video Theora [.ogg]"
#: ../../mod/profiles.php:168
msgid "Likes"
msgstr ""
#: ../../mod/editpost.php:96
msgid "Insert Vorbis [.ogg] audio"
msgstr "Inserisci audio Vorbis [.ogg]"
#: ../../mod/profiles.php:172
msgid "Dislikes"
msgstr ""
#: ../../mod/editpost.php:97 ../../include/conversation.php:820
msgid "Set your location"
msgstr "Imposta la tua posizione"
#: ../../mod/profiles.php:176
msgid "Work/Employment"
msgstr ""
#: ../../mod/editpost.php:98 ../../include/conversation.php:821
msgid "Clear browser location"
msgstr "Cancella la tua posizione data dal browser"
#: ../../mod/profiles.php:179
msgid "Religion"
msgstr "Religione"
#: ../../mod/editpost.php:100 ../../include/conversation.php:824
msgid "Permission settings"
msgstr "Impostazione permessi"
#: ../../mod/profiles.php:183
msgid "Political Views"
msgstr "Orientamento Politico"
#: ../../mod/editpost.php:108 ../../include/conversation.php:832
msgid "CC: email addresses"
msgstr "CC: indirizzi email"
#: ../../mod/profiles.php:187
msgid "Gender"
msgstr "Sesso"
#: ../../mod/editpost.php:109 ../../include/conversation.php:833
msgid "Public post"
msgstr "Messaggio pubblico"
#: ../../mod/profiles.php:191
msgid "Sexual Preference"
msgstr "Preferenza sessuale"
#: ../../mod/editpost.php:111 ../../include/conversation.php:835
msgid "Example: bob@example.com, mary@example.com"
msgstr "Esempio: bob@example.com, mary@example.com"
#: ../../mod/profiles.php:195
msgid "Homepage"
msgstr "Homepage"
#: ../../mod/profiles.php:199
msgid "Interests"
msgstr "Interessi"
#: ../../mod/profiles.php:203
msgid "Address"
msgstr ""
#: ../../mod/profiles.php:210 ../../addon/dav/common/wdcal_edit.inc.php:183
msgid "Location"
msgstr "Posizione"
#: ../../mod/profiles.php:293
msgid "Profile updated."
msgstr "Profilo aggiornato."
#: ../../mod/profiles.php:360
msgid " and "
msgstr ""
#: ../../mod/profiles.php:368
msgid "public profile"
msgstr "profilo pubblico"
#: ../../mod/profiles.php:371
#, php-format
msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
msgstr ""
#: ../../mod/profiles.php:372
#, php-format
msgid " - Visit %1$s's %2$s"
msgstr ""
#: ../../mod/profiles.php:375
#, php-format
msgid "%1$s has an updated %2$s, changing %3$s."
msgstr "%1$s ha un %2$s aggiornato. Ha cambiato %3$s"
#: ../../mod/profiles.php:442
msgid "Profile deleted."
msgstr "Profilo elminato."
#: ../../mod/profiles.php:460 ../../mod/profiles.php:494
msgid "Profile-"
msgstr "Profilo-"
#: ../../mod/profiles.php:479 ../../mod/profiles.php:521
msgid "New profile created."
msgstr "Il nuovo profilo è stato creato."
#: ../../mod/profiles.php:500
msgid "Profile unavailable to clone."
msgstr "Impossibile duplicare il profilo."
#: ../../mod/profiles.php:562
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:582
msgid "Edit Profile Details"
msgstr "Modifica i dettagli del profilo"
#: ../../mod/profiles.php:584
msgid "View this profile"
msgstr "Visualizza questo profilo"
#: ../../mod/profiles.php:585
msgid "Create a new profile using these settings"
msgstr "Crea un nuovo profilo usando queste impostazioni"
#: ../../mod/profiles.php:586
msgid "Clone this profile"
msgstr "Clona questo profilo"
#: ../../mod/profiles.php:587
msgid "Delete this profile"
msgstr "Elimina questo profilo"
#: ../../mod/profiles.php:588
msgid "Profile Name:"
msgstr "Nome del profilo:"
#: ../../mod/profiles.php:589
msgid "Your Full Name:"
msgstr "Il tuo nome completo:"
#: ../../mod/profiles.php:590
msgid "Title/Description:"
msgstr "Breve descrizione (es. titolo, posizione, altro):"
#: ../../mod/profiles.php:591
msgid "Your Gender:"
msgstr "Il tuo sesso:"
#: ../../mod/profiles.php:592
#, php-format
msgid "Birthday (%s):"
msgstr "Compleanno (%s)"
#: ../../mod/profiles.php:593
msgid "Street Address:"
msgstr "Indirizzo (via/piazza):"
#: ../../mod/profiles.php:594
msgid "Locality/City:"
msgstr "Località:"
#: ../../mod/profiles.php:595
msgid "Postal/Zip Code:"
msgstr "CAP:"
#: ../../mod/profiles.php:596
msgid "Country:"
msgstr "Nazione:"
#: ../../mod/profiles.php:597
msgid "Region/State:"
msgstr "Regione/Stato:"
#: ../../mod/profiles.php:598
msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
msgstr "<span class=\"heart\">&hearts;</span> Stato sentimentale:"
#: ../../mod/profiles.php:599
msgid "Who: (if applicable)"
msgstr "Con chi: (se possibile)"
#: ../../mod/profiles.php:600
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com"
#: ../../mod/profiles.php:601
msgid "Since [date]:"
msgstr ""
#: ../../mod/profiles.php:602 ../../include/profile_advanced.php:46
msgid "Sexual Preference:"
msgstr "Preferenze sessuali:"
#: ../../mod/profiles.php:603
msgid "Homepage URL:"
msgstr "Homepage:"
#: ../../mod/profiles.php:604 ../../include/profile_advanced.php:50
msgid "Hometown:"
msgstr ""
#: ../../mod/profiles.php:605 ../../include/profile_advanced.php:54
msgid "Political Views:"
msgstr "Orientamento politico:"
#: ../../mod/profiles.php:606
msgid "Religious Views:"
msgstr "Orientamento religioso:"
#: ../../mod/profiles.php:607
msgid "Public Keywords:"
msgstr "Parole chiave visibili a tutti:"
#: ../../mod/profiles.php:608
msgid "Private Keywords:"
msgstr "Parole chiave private:"
#: ../../mod/profiles.php:609 ../../include/profile_advanced.php:62
msgid "Likes:"
msgstr ""
#: ../../mod/profiles.php:610 ../../include/profile_advanced.php:64
msgid "Dislikes:"
msgstr ""
#: ../../mod/profiles.php:611
msgid "Example: fishing photography software"
msgstr "Esempio: pesca fotografia programmazione"
#: ../../mod/profiles.php:612
msgid "(Used for suggesting potential friends, can be seen by others)"
msgstr "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)"
#: ../../mod/profiles.php:613
msgid "(Used for searching profiles, never shown to others)"
msgstr "(Usato per cercare tra i profili, non è mai visibile agli altri)"
#: ../../mod/profiles.php:614
msgid "Tell us about yourself..."
msgstr "Raccontaci di te..."
#: ../../mod/profiles.php:615
msgid "Hobbies/Interests"
msgstr "Hobby/interessi"
#: ../../mod/profiles.php:616
msgid "Contact information and Social Networks"
msgstr "Informazioni su contatti e social network"
#: ../../mod/profiles.php:617
msgid "Musical interests"
msgstr "Interessi musicali"
#: ../../mod/profiles.php:618
msgid "Books, literature"
msgstr "Libri, letteratura"
#: ../../mod/profiles.php:619
msgid "Television"
msgstr "Televisione"
#: ../../mod/profiles.php:620
msgid "Film/dance/culture/entertainment"
msgstr "Film/danza/cultura/intrattenimento"
#: ../../mod/profiles.php:621
msgid "Love/romance"
msgstr "Amore"
#: ../../mod/profiles.php:622
msgid "Work/employment"
msgstr "Lavoro/impiego"
#: ../../mod/profiles.php:623
msgid "School/education"
msgstr "Scuola/educazione"
#: ../../mod/profiles.php:628
msgid ""
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
"be visible to anybody using the internet."
msgstr "Questo è il tuo profilo <strong>publico</strong>.<br /><strong>Potrebbe</strong> essere visto da chiunque attraverso internet."
#: ../../mod/profiles.php:638 ../../mod/directory.php:111
msgid "Age: "
msgstr "Età : "
#: ../../mod/profiles.php:677
msgid "Edit/Manage Profiles"
msgstr "Modifica / Gestisci profili"
#: ../../mod/profiles.php:678 ../../boot.php:1192
msgid "Change profile photo"
msgstr "Cambia la foto del profilo"
#: ../../mod/profiles.php:679 ../../boot.php:1193
msgid "Create New Profile"
msgstr "Crea un nuovo profilo"
#: ../../mod/profiles.php:690 ../../boot.php:1203
msgid "Profile Image"
msgstr "Immagine del Profilo"
#: ../../mod/profiles.php:692 ../../boot.php:1206
msgid "visible to everybody"
msgstr "visibile a tutti"
#: ../../mod/profiles.php:693 ../../boot.php:1207
msgid "Edit visibility"
msgstr "Modifica visibilità"
#: ../../mod/filer.php:29 ../../include/conversation.php:837
#: ../../include/conversation.php:854
msgid "Save to Folder:"
msgstr ""
#: ../../mod/filer.php:29
msgid "- select -"
msgstr ""
#: ../../mod/tagger.php:95 ../../include/conversation.php:265
#, 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/delegate.php:95
msgid "No potential page delegates located."
msgstr "Nessun potenziale delegato per la pagina è stato trovato."
#: ../../mod/delegate.php:121
msgid "Delegate Page Management"
msgstr "Gestione delegati per la pagina"
#: ../../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 "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente."
#: ../../mod/delegate.php:124
msgid "Existing Page Managers"
msgstr "Gestori Pagina Esistenti"
#: ../../mod/delegate.php:126
msgid "Existing Page Delegates"
msgstr "Delegati Pagina Esistenti"
#: ../../mod/delegate.php:128
msgid "Potential Delegates"
msgstr "Delegati Potenziali"
#: ../../mod/delegate.php:131
msgid "Add"
msgstr "Aggiungi"
#: ../../mod/delegate.php:132
msgid "No entries."
msgstr "Nessun articolo."
#: ../../mod/babel.php:17
msgid "Source (bbcode) text:"
msgstr ""
#: ../../mod/babel.php:23
msgid "Source (Diaspora) text to convert to BBcode:"
msgstr ""
#: ../../mod/babel.php:31
msgid "Source input: "
msgstr ""
#: ../../mod/babel.php:35
msgid "bb2html: "
msgstr ""
#: ../../mod/babel.php:39
msgid "bb2html2bb: "
msgstr ""
#: ../../mod/babel.php:43
msgid "bb2md: "
msgstr ""
#: ../../mod/babel.php:47
msgid "bb2md2html: "
msgstr ""
#: ../../mod/babel.php:51
msgid "bb2dia2bb: "
msgstr ""
#: ../../mod/babel.php:55
msgid "bb2md2html2bb: "
msgstr ""
#: ../../mod/babel.php:65
msgid "Source input (Diaspora format): "
msgstr ""
#: ../../mod/babel.php:70
msgid "diaspora2bb: "
msgstr ""
#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:626
#: ../../include/contact_widgets.php:34
msgid "Friend Suggestions"
msgstr "Contatti suggeriti"
#: ../../mod/suggest.php:44
msgid ""
"No suggestions available. If this is a new site, please try again in 24 "
"hours."
msgstr "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore."
#: ../../mod/suggest.php:61
msgid "Ignore/Hide"
msgstr "Ignora / Nascondi"
#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:624
msgid "Global Directory"
msgstr "Elenco globale"
#: ../../mod/directory.php:57
msgid "Find on this site"
msgstr "Cerca nel sito"
#: ../../mod/directory.php:60
msgid "Site Directory"
msgstr "Elenco del sito"
#: ../../mod/directory.php:114
msgid "Gender: "
msgstr "Genere:"
#: ../../mod/directory.php:136 ../../include/profile_advanced.php:17
#: ../../boot.php:1228
msgid "Gender:"
msgstr "Genere:"
#: ../../mod/directory.php:138 ../../include/profile_advanced.php:37
#: ../../boot.php:1231
msgid "Status:"
msgstr "Stato:"
#: ../../mod/directory.php:140 ../../include/profile_advanced.php:48
#: ../../boot.php:1233
msgid "Homepage:"
msgstr "Homepage:"
#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
msgid "About:"
msgstr "Informazioni:"
#: ../../mod/directory.php:180
msgid "No entries (some entries may be hidden)."
msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)."
#: ../../mod/invite.php:35
#, php-format
msgid "%s : Not a valid email address."
msgstr "%s: Non è un indirizzo email valido."
msgstr "%s: non è un indirizzo email valido."
#: ../../mod/invite.php:59
#, php-format
msgid "Please join my network on %s"
msgstr "Unisciti al mio social network su %s"
msgid "Please join us on Friendica"
msgstr ""
#: ../../mod/invite.php:69
#, php-format
msgid "%s : Message delivery failed."
msgstr "%s: Consegna del messaggio fallita."
msgstr "%s: la consegna del messaggio fallita."
#: ../../mod/invite.php:73
#, php-format
@ -1568,2371 +4571,1337 @@ msgstr[1] "%d messaggi inviati."
msgid "You have no more invitations available"
msgstr "Non hai altri inviti disponibili"
#: ../../mod/invite.php:99
msgid "Send invitations"
msgstr "Invia inviti"
#: ../../mod/invite.php:100
msgid "Enter email addresses, one per line:"
msgstr "Inserisci gli indirizzi email, uno per riga:"
#: ../../mod/invite.php:101 ../../mod/message.php:132
#: ../../mod/message.php:265
msgid "Your message:"
msgstr "Il tuo messaggio:"
#, php-format
msgid ""
"Visit %s for a list of public sites that you can join. Friendica members on "
"other sites can all connect with each other, as well as with members of many"
" other social networks."
msgstr ""
#: ../../mod/invite.php:102
#, php-format
msgid "Please join my social network on %s"
msgstr "Unisciti al mio social network su %s"
msgid ""
"To accept this invitation, please visit and register at %s or any other "
"public Friendica website."
msgstr ""
#: ../../mod/invite.php:103
msgid "To accept this invitation, please visit:"
msgstr "Per accettare questo invito visita:"
#, php-format
msgid ""
"Friendica sites all inter-connect to create a huge privacy-enhanced social "
"web that is owned and controlled by its members. They can also connect with "
"many traditional social networks. See %s for a list of alternate Friendica "
"sites you can join."
msgstr ""
#: ../../mod/invite.php:104
#: ../../mod/invite.php:106
msgid ""
"Our apologies. This system is not currently configured to connect with other"
" public sites or invite members."
msgstr ""
#: ../../mod/invite.php:111
msgid "Send invitations"
msgstr "Invia inviti"
#: ../../mod/invite.php:112
msgid "Enter email addresses, one per line:"
msgstr "Inserisci gli indirizzi email, uno per riga:"
#: ../../mod/invite.php:114
msgid ""
"You are cordially invited to join me and other close friends on Friendica - "
"and help us to create a better social web."
msgstr ""
#: ../../mod/invite.php:116
msgid "You will need to supply this invitation code: $invite_code"
msgstr "Sarà necessario fornire questo codice invito: $invite_code"
#: ../../mod/invite.php:104
#: ../../mod/invite.php:116
msgid ""
"Once you have registered, please connect with me via my profile page at:"
msgstr "Una volta registrato, connettiti con me sul mio profilo a:"
msgstr "Una volta registrato, connettiti con me dal mio profilo:"
#: ../../mod/ping.php:146
msgid "{0} wants to be your friend"
msgstr "{0} vuole essere tuo amico"
#: ../../mod/ping.php:151
msgid "{0} sent you a message"
msgstr "{0} ti ha inviato un messaggio"
#: ../../mod/ping.php:156
msgid "{0} requested registration"
msgstr "{0} chiede la registrazione"
#: ../../mod/ping.php:162
#, php-format
msgid "{0} commented %s's post"
msgstr "{0} ha commentato il post di %s"
#: ../../mod/ping.php:167
#, php-format
msgid "{0} liked %s's post"
msgstr "a {0} piace il post di %s"
#: ../../mod/ping.php:172
#, php-format
msgid "{0} disliked %s's post"
msgstr "a {0} non piace il post di %s"
#: ../../mod/ping.php:177
#, php-format
msgid "{0} is now friends with %s"
msgstr "{0} ora è amico di %s"
#: ../../mod/ping.php:182
msgid "{0} posted"
msgstr "{0} ha inviato un nuovo messaggio"
#: ../../mod/ping.php:187
#, php-format
msgid "{0} tagged %s's post with #%s"
msgstr "{0} ha taggato il post di %s con #%s"
#: ../../mod/contacts.php:62 ../../mod/contacts.php:133
msgid "Could not access contact record."
msgstr "Non si puo' accedere al contatto."
#: ../../mod/contacts.php:76
msgid "Could not locate selected profile."
msgstr "Non riesco a trovare il profilo selezionato."
#: ../../mod/contacts.php:97
msgid "Contact updated."
msgstr "Contatto aggiornato."
#: ../../mod/contacts.php:99 ../../mod/dfrn_request.php:409
msgid "Failed to update contact record."
msgstr "Errore aggiornando il contatto."
#: ../../mod/contacts.php:155
msgid "Contact has been blocked"
msgstr "Il contatto è stato bloccato"
#: ../../mod/contacts.php:155
msgid "Contact has been unblocked"
msgstr "Il contatto è stato sbloccato"
#: ../../mod/contacts.php:169
msgid "Contact has been ignored"
msgstr "Il contatto è ignorato"
#: ../../mod/contacts.php:169
msgid "Contact has been unignored"
msgstr "Il conttatto è non ignorato"
#: ../../mod/contacts.php:190
msgid "stopped following"
msgstr "tolto dai seguiti"
#: ../../mod/contacts.php:211
msgid "Contact has been removed."
msgstr "Il contatto è stato rimosso."
#: ../../mod/contacts.php:232
#, php-format
msgid "You are mutual friends with %s"
msgstr "Sei amico reciproco con %s"
#: ../../mod/contacts.php:236
#, php-format
msgid "You are sharing with %s"
msgstr "Stai condividendo con %s"
#: ../../mod/contacts.php:241
#, php-format
msgid "%s is sharing with you"
msgstr "%s sta condividendo con te"
#: ../../mod/contacts.php:258
msgid "Private communications are not available for this contact."
msgstr "Le comunicazioni private non sono disponibili per questo contatto."
#: ../../mod/contacts.php:261
msgid "Never"
msgstr "Mai"
#: ../../mod/contacts.php:265
msgid "(Update was successful)"
msgstr "(L'aggiornamento è stato completato)"
#: ../../mod/contacts.php:265
msgid "(Update was not successful)"
msgstr "(L'aggiornamento non è stato completato)"
#: ../../mod/contacts.php:267
msgid "Suggest friends"
msgstr "Suggerisci amici"
#: ../../mod/contacts.php:271
#, php-format
msgid "Network type: %s"
msgstr "Tipo di rete: %s"
#: ../../mod/contacts.php:274
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
msgstr[0] "%d contatto in comune"
msgstr[1] "%d contatti in comune"
#: ../../mod/contacts.php:279
msgid "View all contacts"
msgstr "Vedi tutti i contatti"
#: ../../mod/contacts.php:284 ../../mod/contacts.php:331
#: ../../mod/admin.php:470
msgid "Unblock"
msgstr "Sblocca"
#: ../../mod/contacts.php:284 ../../mod/contacts.php:331
#: ../../mod/admin.php:469
msgid "Block"
msgstr "Blocca"
#: ../../mod/contacts.php:289 ../../mod/contacts.php:332
msgid "Unignore"
msgstr "Non ignorare"
#: ../../mod/contacts.php:289 ../../mod/contacts.php:332
#: ../../mod/notifications.php:47 ../../mod/notifications.php:143
#: ../../mod/notifications.php:187
msgid "Ignore"
msgstr "Ignora"
#: ../../mod/contacts.php:294
msgid "Repair"
msgstr "Ripara"
#: ../../mod/contacts.php:304
msgid "Contact Editor"
msgstr "Editor dei Contatti"
#: ../../mod/contacts.php:307
msgid "Profile Visibility"
msgstr "Visibilità del profilo"
#: ../../mod/contacts.php:308
#, php-format
#: ../../mod/invite.php:118
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
"For more information about the Friendica project and why we feel it is "
"important, please visit http://friendica.com"
msgstr ""
"Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in "
"modo sicuro."
#: ../../mod/contacts.php:309
msgid "Contact Information / Notes"
msgstr "Informazioni / Note sul contatto"
#: ../../mod/contacts.php:310
msgid "Edit contact notes"
msgstr "Modifica note contatto"
#: ../../mod/contacts.php:315 ../../mod/contacts.php:430
#: ../../mod/viewcontacts.php:61
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Visita il profilo di %s [%s]"
#: ../../mod/contacts.php:316
msgid "Block/Unblock contact"
msgstr "Blocca/Sblocca contatto"
#: ../../mod/contacts.php:317
msgid "Ignore contact"
msgstr "Ingnora il contatto"
#: ../../mod/contacts.php:318
msgid "Repair URL settings"
msgstr "Impostazioni riparazione URL"
#: ../../mod/contacts.php:319
msgid "View conversations"
msgstr "Vedi conversazioni"
#: ../../mod/contacts.php:321
msgid "Delete contact"
msgstr "Rimuovi contatto"
#: ../../mod/contacts.php:325
msgid "Last update:"
msgstr "Ultimo aggiornamento:"
#: ../../mod/contacts.php:326
msgid "Update public posts"
msgstr "Aggiorna messaggi pubblici"
#: ../../mod/contacts.php:328 ../../mod/admin.php:701
msgid "Update now"
msgstr "Aggiorna adesso"
#: ../../mod/contacts.php:335
msgid "Currently blocked"
msgstr "Bloccato"
#: ../../mod/contacts.php:336
msgid "Currently ignored"
msgstr "Ignorato"
#: ../../mod/contacts.php:364 ../../include/nav.php:130
msgid "Contacts"
msgstr "Contatti"
#: ../../mod/contacts.php:366
msgid "Show Blocked Connections"
msgstr "Mostra connessioni bloccate"
#: ../../mod/contacts.php:366
msgid "Hide Blocked Connections"
msgstr "Nascondi connessioni bloccate"
#: ../../mod/contacts.php:368
msgid "Search your contacts"
msgstr "Cerca nei tuoi contatti"
#: ../../mod/contacts.php:369 ../../mod/directory.php:65
msgid "Finding: "
msgstr "Cerco: "
#: ../../mod/contacts.php:370 ../../mod/directory.php:67
#: ../../include/contact_widgets.php:34
msgid "Find"
msgstr "Trova"
#: ../../mod/contacts.php:406
msgid "Mutual Friendship"
msgstr "Reciproca amicizia"
#: ../../mod/contacts.php:410
msgid "is a fan of yours"
msgstr "è un tuo fan"
#: ../../mod/contacts.php:414
msgid "you are a fan of"
msgstr "sei un fan di"
#: ../../mod/contacts.php:431 ../../include/Contact.php:129
#: ../../include/conversation.php:679
msgid "Edit contact"
msgstr "Modifca contatto"
#: ../../mod/lockview.php:39
msgid "Remote privacy information not available."
msgstr "Informazioni remote sulla privacy non disponibili."
#: ../../mod/lockview.php:43
msgid "Visible to:"
msgstr "Visibile a:"
#: ../../mod/register.php:53
msgid "An invitation is required."
msgstr "E' richiesto un invito."
#: ../../mod/register.php:58
msgid "Invitation could not be verified."
msgstr "L'invito non puo' essere verificato."
#: ../../mod/register.php:66
msgid "Invalid OpenID url"
msgstr "Url OpenID non valido"
#: ../../mod/register.php:81
msgid "Please enter the required information."
msgstr "Inserisci le informazioni richieste."
#: ../../mod/register.php:95
msgid "Please use a shorter name."
msgstr "Usa un nome più corto."
#: ../../mod/register.php:97
msgid "Name too short."
msgstr "Il Nome è troppo corto."
#: ../../mod/register.php:112
msgid "That doesn't appear to be your full (First Last) name."
msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)."
#: ../../mod/register.php:117
msgid "Your email domain is not among those allowed on this site."
msgstr ""
"Il dominio della tua email non è tra quelli autorizzati su questo sito."
#: ../../mod/register.php:120
msgid "Not a valid email address."
msgstr "Indirizzo email invaildo."
#: ../../mod/register.php:130
msgid "Cannot use that email."
msgstr "Questa email non si puo' usare."
#: ../../mod/register.php:136
#: ../../mod/dfrn_confirm.php:119
msgid ""
"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
"must also begin with a letter."
"This may occasionally happen if contact was requested by both persons and it"
" has already been approved."
msgstr ""
"Il tuo \"soprannome\" puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", "
"e deve cominciare con una lettera."
#: ../../mod/register.php:142 ../../mod/register.php:243
msgid "Nickname is already registered. Please choose another."
msgstr "Soprannome già registrato. Scegline un'altro."
#: ../../mod/register.php:161
msgid "SERIOUS ERROR: Generation of security keys failed."
msgstr "ERRORE GRAVE: Generazione delle chiavi di sicurezza fallito."
#: ../../mod/register.php:229
msgid "An error occurred during registration. Please try again."
msgstr "Si è verificato un errore durante la registrazione. Prova ancora."
#: ../../mod/register.php:265
msgid "An error occurred creating your default profile. Please try again."
msgstr "Si è verificato un errore creando il tuo profilo. Prova ancora."
#: ../../mod/register.php:377
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr ""
"Registrazione completata. Controlla la tua mail per ulteriori informazioni."
#: ../../mod/register.php:381
msgid "Failed to send email message. Here is the message that failed."
msgstr ""
"Errore inviando il messaggio email. Questo è il messaggio non inviato."
#: ../../mod/register.php:386
msgid "Your registration can not be processed."
msgstr "La tua registrazione non puo' essere elaborata."
#: ../../mod/register.php:423
#, php-format
msgid "Registration request at %s"
msgstr "Richiesta di registrazione su %s"
#: ../../mod/register.php:432
msgid "Your registration is pending approval by the site owner."
msgstr ""
"La tua richiesta è in attesa di approvazione da parte del prorietario del "
"sito."
#: ../../mod/register.php:481
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking 'Register'."
msgstr ""
"Puoi (opzionalmente) riempire questa maschera via OpenID inserendo il tuo "
"OpenID e cliccando 'Registra'."
#: ../../mod/register.php:482
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr ""
"Se non hai familiarità con OpenID, lascia quel campo in bianco e riempi il "
"resto della maschera."
#: ../../mod/register.php:483
msgid "Your OpenID (optional): "
msgstr "Il tuo OpenID (opzionale): "
#: ../../mod/register.php:497
msgid "Include your profile in member directory?"
msgstr "Includi il tuo profilo nell'elenco dei membir?"
#: ../../mod/register.php:512
msgid "Membership on this site is by invitation only."
msgstr "La registrazione su questo sito è solo su invito."
#: ../../mod/register.php:513
msgid "Your invitation ID: "
msgstr "L'ID del tuo invito:"
#: ../../mod/register.php:516 ../../mod/admin.php:297
msgid "Registration"
msgstr "Registrazione"
#: ../../mod/register.php:524
msgid "Your Full Name (e.g. Joe Smith): "
msgstr "Il tuo Nome Completo (p.e. Mario Rossi): "
#: ../../mod/register.php:525
msgid "Your Email Address: "
msgstr "Il tuo Indirizzo Email: "
#: ../../mod/register.php:526
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be "
"'<strong>nickname@$sitename</strong>'."
msgstr ""
"Scegli un soprannome. Deve cominciare con un carattere. L'indirizzo del tuo "
"profilo sarà '<strong>soprannome@$sitename</strong>'."
#: ../../mod/register.php:527
msgid "Choose a nickname: "
msgstr "Scegli un soprannome: "
#: ../../mod/oexchange.php:27
msgid "Post successful."
msgstr "Inviato con successo."
#: ../../mod/allfriends.php:34
#, php-format
msgid "Friends of %s"
msgstr "Amici di %s"
#: ../../mod/allfriends.php:40
msgid "No friends to display."
msgstr "Nessun amico da visualizzare."
#: ../../mod/help.php:30
msgid "Help:"
msgstr "Guida:"
#: ../../mod/help.php:34 ../../include/nav.php:82
msgid "Help"
msgstr "Guida"
#: ../../mod/install.php:34
msgid "Could not create/connect to database."
msgstr "Impossibile creare/collegarsi al database."
#: ../../mod/install.php:39
msgid "Connected to database."
msgstr "Collegato al database."
#: ../../mod/install.php:75
msgid "Proceed with Installation"
msgstr "Continua con l'installazione"
#: ../../mod/install.php:77
msgid "Your Friendika site database has been installed."
msgstr "Il database del tuo sito Friendika è stato installato."
#: ../../mod/install.php:78
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
msgstr ""
"IMPORTANTE: Devi impostare manualmente un operazione pianificata per il "
"poller"
#: ../../mod/install.php:79 ../../mod/install.php:89 ../../mod/install.php:207
msgid "Please see the file \"INSTALL.txt\"."
msgstr "Guarda il file \"INSTALL.txt\"."
#: ../../mod/install.php:81
msgid "Proceed to registration"
msgstr "Continua con la registrazione"
#: ../../mod/install.php:87
msgid "Database import failed."
msgstr "Importazione database fallita."
#: ../../mod/install.php:88
msgid ""
"You may need to import the file \"database.sql\" manually using phpmyadmin "
"or mysql."
msgstr ""
"Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin"
" o mysql"
#: ../../mod/install.php:101
msgid "Welcome to Friendika."
msgstr "Benvenuto su Friendika."
#: ../../mod/install.php:124
msgid "Friendika Social Network"
msgstr "Friendika Social Network"
#: ../../mod/install.php:125
msgid "Installation"
msgstr "Installazione"
#: ../../mod/install.php:126
msgid ""
"In order to install Friendika we need to know how to connect to your "
"database."
msgstr ""
"Per instalare Friendika dobbiamo sapere come collegarci al tuo database."
#: ../../mod/install.php:127
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 questi settaggi."
#: ../../mod/install.php:128
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr ""
"Il database dovrà già esistere. Se non esiste, crealo prima di continuare."
#: ../../mod/install.php:129
msgid "Database Server Name"
msgstr "Nome Database Server"
#: ../../mod/install.php:130
msgid "Database Login Name"
msgstr "Nome utente Database"
#: ../../mod/install.php:131
msgid "Database Login Password"
msgstr "Password utente Database"
#: ../../mod/install.php:132
msgid "Database Name"
msgstr "Nome Database"
#: ../../mod/install.php:133
msgid "Please select a default timezone for your website"
msgstr "Seleziona un fuso orario di default per il tuo sito web"
#: ../../mod/install.php:134
msgid ""
"Site administrator email address. Your account email address must match this"
" in order to use the web admin panel."
msgstr ""
"Indirizzo email dell'amministratore del sito. L'email del tuo account deve "
"corrispodere a questa, per poter utilizzare il pannello di amministrazione"
#: ../../mod/install.php:153
msgid "Could not find a command line version of PHP in the web server PATH."
msgstr ""
"Non riesco a trovare una versione da riga di comando di PHP nel PATH del "
"server web"
#: ../../mod/install.php:154
msgid ""
"This is required. Please adjust the configuration file .htconfig.php "
"accordingly."
msgstr "E' richiesto. Aggiorna il file .htconfig.php di conseguenza."
#: ../../mod/install.php:161
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/install.php:162
msgid "This is required for message delivery to work."
msgstr "Ciò è richiesto per far funzionare la consegna dei messaggi."
#: ../../mod/install.php:184
msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys"
msgstr ""
"Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di"
" generare le chiavi di criptazione"
#: ../../mod/install.php:185
msgid ""
"If running under Windows, please see "
"\"http://www.php.net/manual/en/openssl.installation.php\"."
msgstr ""
"Se stai eseguendo friendika su windows, guarda "
"\"http://www.php.net/manual/en/openssl.installation.php\"."
#: ../../mod/install.php:194
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr ""
"Errore: il modulo mod-rewrite di Apache &egreve; richiesto ma non installato"
#: ../../mod/install.php:196
msgid "Error: libCURL PHP module required but not installed."
msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato."
#: ../../mod/install.php:198
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/install.php:200
msgid "Error: openssl PHP module required but not installed."
msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato."
#: ../../mod/install.php:202
msgid "Error: mysqli PHP module required but not installed."
msgstr "Errore: il modulo mysqli di PHP è richiesto ma non installato"
#: ../../mod/install.php:204
msgid "Error: mb_string PHP module required but not installed."
msgstr "Errore: il modulo PHP mb_string è richiesto ma non installato."
#: ../../mod/install.php:216
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 principale del tuo web server ma non è in grado di farlo."
#: ../../mod/install.php:217
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 ""
"Ciò è dovuto spesso a impostazioni di permessi, dato che il web server puo' "
"scrivere il file nella tua cartella, anche se tu puoi."
#: ../../mod/install.php:218
msgid ""
"Please check with your site documentation or support people to see if this "
"situation can be corrected."
msgstr ""
"Controlla la documentazione del tuo sito o con il personale di suporto se la"
" situazione puo' essere corretta."
#: ../../mod/install.php:219
msgid ""
"If not, you may be required to perform a manual installation. Please see the"
" file \"INSTALL.txt\" for instructions."
msgstr ""
"Altrimenti dovrai procedere con l'installazione manuale. Guarda il file "
"\"INSTALL.txt\" per istuzioni"
#: ../../mod/install.php:228
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 un file di configurazione "
"nella cartella principale del tuo sito."
#: ../../mod/install.php:243
msgid "Errors encountered creating database tables."
msgstr "Errori creando le tabelle nel database."
#: ../../mod/network.php:148
msgid "Commented Order"
msgstr "Ordina per commento"
#: ../../mod/network.php:153
msgid "Posted Order"
msgstr "Ordina per invio"
#: ../../mod/network.php:159
msgid "New"
msgstr "Nuovo"
#: ../../mod/network.php:164
msgid "Starred"
msgstr "Speciali"
#: ../../mod/network.php:169
msgid "Bookmarks"
msgstr "Preferiti"
#: ../../mod/network.php:216
#, php-format
msgid "Warning: This group contains %s member from an insecure network."
msgid_plural ""
"Warning: This group contains %s members from an insecure network."
msgstr[0] "Attenzione: questo gruppo contiene %s membro da un network insicuro."
msgstr[1] "Attenzione: questo gruppo contiene %s membri da un network insicuro."
#: ../../mod/network.php:219
msgid "Private messages to this group are at risk of public disclosure."
msgstr ""
"I messaggi privati a questo gruppo sono a rischio di visualizzazione "
"pubblica."
#: ../../mod/network.php:292
msgid "No such group"
msgstr "Nessun gruppo"
#: ../../mod/network.php:303
msgid "Group is empty"
msgstr "Il gruppo è vuoto"
#: ../../mod/network.php:308
msgid "Group: "
msgstr "Gruppo: "
#: ../../mod/network.php:318
msgid "Contact: "
msgstr "Contatto:"
#: ../../mod/network.php:320
msgid "Private messages to this person are at risk of public disclosure."
msgstr ""
"I messaggi privati a questa persona sono a rischio di divulgazione al "
"pubblico."
#: ../../mod/network.php:325
msgid "Invalid contact."
msgstr "Contatto non valido."
#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
msgid "Invalid profile identifier."
msgstr "Indentificativo del profilo non valido."
#: ../../mod/profperm.php:101
msgid "Profile Visibility Editor"
msgstr "Modifica Visibilità del Profilo"
#: ../../mod/profperm.php:105 ../../mod/group.php:164
msgid "Click on a contact to add or remove."
msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo."
#: ../../mod/profperm.php:114
msgid "Visible To"
msgstr "Visibile A"
#: ../../mod/profperm.php:130
msgid "All Contacts (with secure profile access)"
msgstr "Tutti i Contatti (con profilo ad accesso sicuro)"
#: ../../mod/events.php:61
msgid "Event description and start time are required."
msgstr "Descrizione dell'evento e ora di inizio sono obbligatori."
#: ../../mod/events.php:207
msgid "Create New Event"
msgstr "Crea un nuovo Evento"
#: ../../mod/events.php:210
msgid "Previous"
msgstr "Precendente"
#: ../../mod/events.php:213
msgid "Next"
msgstr "Successivo"
#: ../../mod/events.php:220
msgid "l, F j"
msgstr "l j F"
#: ../../mod/events.php:232
msgid "Edit event"
msgstr "Modifca Evento"
#: ../../mod/events.php:234 ../../include/text.php:857
msgid "link to source"
msgstr "Collegamento all'originale"
#: ../../mod/events.php:302
msgid "hour:minute"
msgstr "ora:minuti"
#: ../../mod/events.php:311
msgid "Event details"
msgstr "Dettagli dell'Evento"
#: ../../mod/events.php:312
#, php-format
msgid "Format is %s %s. Starting date and Description are required."
msgstr ""
"Il formato è %s %s. La data di inizio e la descrizione sono obbligatori."
#: ../../mod/events.php:313
msgid "Event Starts:"
msgstr "L'Evento inizia:"
#: ../../mod/events.php:316
msgid "Finish date/time is not known or not relevant"
msgstr "La data/l'ora di fine è sconosciuta o non importante"
#: ../../mod/events.php:318
msgid "Event Finishes:"
msgstr "L'Evento finisce:"
#: ../../mod/events.php:321
msgid "Adjust for viewer timezone"
msgstr "Regola nel fuso orario di chi legge"
#: ../../mod/events.php:323
msgid "Description:"
msgstr "Descrizione"
#: ../../mod/events.php:327
msgid "Share this event"
msgstr "Condividi questo Evento"
#: ../../mod/notifications.php:26
msgid "Invalid request identifier."
msgstr "Identificativo richiesta invalido."
#: ../../mod/notifications.php:35 ../../mod/notifications.php:144
#: ../../mod/notifications.php:188
msgid "Discard"
msgstr "Scarta"
#: ../../mod/notifications.php:71 ../../include/nav.php:109
msgid "Network"
msgstr "Rete"
#: ../../mod/notifications.php:76 ../../include/nav.php:73
#: ../../include/nav.php:111
msgid "Home"
msgstr "Home"
#: ../../mod/notifications.php:81 ../../include/nav.php:117
msgid "Introductions"
msgstr "Presentazioni"
#: ../../mod/notifications.php:86 ../../mod/message.php:72
#: ../../include/nav.php:122
msgid "Messages"
msgstr "Messaggi"
#: ../../mod/notifications.php:105
msgid "Show Ignored Requests"
msgstr "Mostra richieste ignorate"
#: ../../mod/notifications.php:105
msgid "Hide Ignored Requests"
msgstr "Nascondi richieste ignorate"
#: ../../mod/notifications.php:131 ../../mod/notifications.php:174
msgid "Notification type: "
msgstr "Tipo di notifica: "
#: ../../mod/notifications.php:132
msgid "Friend Suggestion"
msgstr "Amico suggerito"
#: ../../mod/notifications.php:134
#, php-format
msgid "suggested by %s"
msgstr "sugerito da %s"
#: ../../mod/notifications.php:140 ../../mod/notifications.php:185
#: ../../mod/admin.php:466
msgid "Approve"
msgstr "Approva"
#: ../../mod/notifications.php:160
msgid "Claims to be known to you: "
msgstr "Dice di conoscerti: "
#: ../../mod/notifications.php:160
msgid "yes"
msgstr "si"
#: ../../mod/notifications.php:160
msgid "no"
msgstr "no"
#: ../../mod/notifications.php:167
msgid "Approve as: "
msgstr "Approva come: "
#: ../../mod/notifications.php:168
msgid "Friend"
msgstr "Amico"
#: ../../mod/notifications.php:169
msgid "Sharer"
msgstr "Condivisore"
#: ../../mod/notifications.php:169
msgid "Fan/Admirer"
msgstr "Fan/Ammiratore"
#: ../../mod/notifications.php:175
msgid "Friend/Connect Request"
msgstr "Richiesta Amicizia/Connessione"
#: ../../mod/notifications.php:175
msgid "New Follower"
msgstr "Nuovo Seguace"
#: ../../mod/notifications.php:194
msgid "No notifications."
msgstr "Nessuna notifica."
#: ../../mod/notifications.php:197 ../../mod/notifications.php:283
#: ../../mod/notifications.php:359 ../../include/nav.php:118
msgid "Notifications"
msgstr "Notifiche"
#: ../../mod/notifications.php:234 ../../mod/notifications.php:316
#, php-format
msgid "%s liked %s's post"
msgstr "a %s è piaciuto il messaggio di %s"
#: ../../mod/notifications.php:243 ../../mod/notifications.php:325
#, php-format
msgid "%s disliked %s's post"
msgstr "a %s non è piaciuto il messaggio di %s"
#: ../../mod/notifications.php:257 ../../mod/notifications.php:339
#, php-format
msgid "%s is now friends with %s"
msgstr "%s è ora amico di %s"
#: ../../mod/notifications.php:264
#, php-format
msgid "%s created a new post"
msgstr "%s a creato un nuovo messaggio"
#: ../../mod/notifications.php:265 ../../mod/notifications.php:348
#, php-format
msgid "%s commented on %s's post"
msgstr "%s ha commentato il messaggio di %s"
#: ../../mod/notifications.php:279 ../../mod/notifications.php:355
msgid "Nothing new!"
msgstr "Niente di nuovo!"
#: ../../mod/crepair.php:100
msgid "Contact settings applied."
msgstr "Impostazioni del contatto applicate."
#: ../../mod/crepair.php:102
msgid "Contact update failed."
msgstr "Aggiornamento del contatto non riuscito."
#: ../../mod/crepair.php:127 ../../mod/fsuggest.php:20
#: ../../mod/fsuggest.php:92 ../../mod/dfrn_confirm.php:114
msgid "Contact not found."
msgstr "Contatto non trovato."
#: ../../mod/crepair.php:133
msgid "Repair Contact Settings"
msgstr "Ripara le Impostazioni del Contatto"
#: ../../mod/crepair.php:135
msgid ""
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
" information your communications with this contact may stop working."
msgstr ""
"<strong>ATTENZIONE: Queste sono impostazioni avanzate</strong> e se "
"inserisci informazioni errate le tue comunicazioni con questo contatto "
"potrebbero non funzionare più"
#: ../../mod/crepair.php:136
msgid ""
"Please use your browser 'Back' button <strong>now</strong> if you are "
"uncertain what to do on this page."
msgstr ""
"Usa <strong>ora</strong> il tasto 'Indietro' del tuo browser se non sei "
"sicuro di cosa fare in questa pagina."
#: ../../mod/crepair.php:145
msgid "Account Nickname"
msgstr "Nickname dell'utente"
#: ../../mod/crepair.php:146
msgid "@Tagname - overrides Name/Nickname"
msgstr "@TagName - rimpiazza il nome / soprannome"
#: ../../mod/crepair.php:147
msgid "Account URL"
msgstr "URL dell'utente"
#: ../../mod/crepair.php:148
msgid "Friend Request URL"
msgstr "URL Richiesta Amicizia"
#: ../../mod/crepair.php:149
msgid "Friend Confirm URL"
msgstr "URL Conferma Amicizia"
#: ../../mod/crepair.php:150
msgid "Notification Endpoint URL"
msgstr "URL Notifiche"
#: ../../mod/crepair.php:151
msgid "Poll/Feed URL"
msgstr "URL Feed"
#: ../../mod/crepair.php:152
msgid "New photo from this URL"
msgstr "Nuova foto da questo URL"
#: ../../mod/dfrn_request.php:92
msgid "This introduction has already been accepted."
msgstr "Questa presentazione è già stata accettata."
#: ../../mod/dfrn_request.php:116 ../../mod/dfrn_request.php:351
msgid "Profile location is not valid or does not contain profile information."
msgstr ""
"La posizione del profilo non è valida o non contiene informazioni di "
"profilo."
#: ../../mod/dfrn_request.php:121 ../../mod/dfrn_request.php:356
msgid "Warning: profile location has no identifiable owner name."
msgstr ""
"Attenzione: la posizione del profilo non ha un identificabile proprietario."
#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:358
msgid "Warning: profile location has no profile photo."
msgstr "Attenzione: la posizione del profilo non ha una foto."
#: ../../mod/dfrn_request.php:126 ../../mod/dfrn_request.php:361
#, php-format
msgid "%d required parameter was not found at the given location"
msgid_plural "%d required parameters were not found at the given location"
msgstr[0] "%d parametro richiesto non è stato trovato nella posizione data"
msgstr[1] "%d parametri richiesti non sono stati trovati nella posizione data"
#: ../../mod/dfrn_request.php:167
msgid "Introduction complete."
msgstr "Presentazione completa."
#: ../../mod/dfrn_request.php:191
msgid "Unrecoverable protocol error."
msgstr "Errore di protocollo non recuperabile."
#: ../../mod/dfrn_request.php:219
msgid "Profile unavailable."
msgstr "Profilo non disponibile."
#: ../../mod/dfrn_request.php:244
#, php-format
msgid "%s has received too many connection requests today."
msgstr "%s ha ricevuto troppe richieste di connessione per oggi."
#: ../../mod/dfrn_request.php:245
msgid "Spam protection measures have been invoked."
msgstr "Sono state attivate le misure di protezione contro lo spam."
#: ../../mod/dfrn_request.php:246
msgid "Friends are advised to please try again in 24 hours."
msgstr "Gli amici sono pregati di riprovare tra 24 ore."
#: ../../mod/dfrn_request.php:276
msgid "Invalid locator"
msgstr "Invalid locator"
#: ../../mod/dfrn_request.php:296
msgid "Unable to resolve your name at the provided location."
msgstr "Impossibile risolvere il tuo nome nella posizione indicata."
#: ../../mod/dfrn_request.php:309
msgid "You have already introduced yourself here."
msgstr "Ti sei già presentato qui."
#: ../../mod/dfrn_request.php:313
#, php-format
msgid "Apparently you are already friends with %s."
msgstr "Sembra che tu sia già amico di %s."
#: ../../mod/dfrn_request.php:334
msgid "Invalid profile URL."
msgstr "Indirizzo profilo invalido."
#: ../../mod/dfrn_request.php:430
msgid "Your introduction has been sent."
msgstr "La tua presentazione è stata inviata."
#: ../../mod/dfrn_request.php:483
msgid "Please login to confirm introduction."
msgstr "Accedi per confermare la presentazione."
#: ../../mod/dfrn_request.php:497
msgid ""
"Incorrect identity currently logged in. Please login to "
"<strong>this</strong> profile."
msgstr ""
"Accesso con identà incorretta. Accedi a <strong>questo</strong> profilo."
#: ../../mod/dfrn_request.php:509
#, php-format
msgid "Welcome home %s."
msgstr "Bentornato a casa %s."
#: ../../mod/dfrn_request.php:510
#, php-format
msgid "Please confirm your introduction/connection request to %s."
msgstr "Conferma la tua richiesta di connessione con %s."
#: ../../mod/dfrn_request.php:511
msgid "Confirm"
msgstr "Conferma"
#: ../../mod/dfrn_request.php:544 ../../include/items.php:2431
msgid "[Name Withheld]"
msgstr "[Nome Nascosto]"
#: ../../mod/dfrn_request.php:551
msgid "Introduction received at "
msgstr "Introduzione ricevuta su "
#: ../../mod/dfrn_request.php:635
#, php-format
msgid ""
"Diaspora members: Please do not use this form. Instead, enter \"%s\" into "
"your Diaspora search bar."
msgstr ""
"Untenti Diaspora: non utilizzate questo modulo. Al contrario, digitate "
"\"%s\" nella barra di ricerca sul vostro pod Diaspora."
#: ../../mod/dfrn_request.php:638
msgid ""
"Please enter your 'Identity Address' from one of the following supported "
"social networks:"
msgstr ""
"Inserisci il tuo \"Indirizzo Identità\" da uno dei social network "
"supportati:"
#: ../../mod/dfrn_request.php:641
msgid "Friend/Connection Request"
msgstr "Richieste di Amicizia/Connessione"
#: ../../mod/dfrn_request.php:642
msgid ""
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca"
msgstr ""
"Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca"
#: ../../mod/dfrn_request.php:643
msgid "Please answer the following:"
msgstr "Rispondi al seguente:"
#: ../../mod/dfrn_request.php:644
#, php-format
msgid "Does %s know you?"
msgstr "%s ti conosce?"
#: ../../mod/dfrn_request.php:647
msgid "Add a personal note:"
msgstr "Aggiungi una nota personale:"
#: ../../mod/dfrn_request.php:649 ../../include/contact_selectors.php:78
msgid "Friendica"
msgstr "Friendica"
#: ../../mod/dfrn_request.php:650
msgid "StatusNet/Federated Social Web"
msgstr "StatusNet/Federated Social Web"
#: ../../mod/dfrn_request.php:652
msgid "- please share from your own site as noted above"
msgstr "- condividere dal tuo sito come osservato in precedenza"
#: ../../mod/dfrn_request.php:653
msgid "Your Identity Address:"
msgstr "Il tuo Indirizzo Identità:"
#: ../../mod/dfrn_request.php:654
msgid "Submit Request"
msgstr "Invia richiesta"
#: ../../mod/api.php:76 ../../mod/api.php:102
msgid "Authorize application connection"
msgstr "Autorizza la connessione dell'applicazione"
#: ../../mod/api.php:77
msgid "Return to your app and insert this Securty Code:"
msgstr "Torna alla tua applicazione e inserisci questo codice di sicurezza:"
#: ../../mod/api.php:89
msgid "Please login to continue."
msgstr "Effettua il login 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 applicazione per accedere ai messaggi e ai contatti,"
" e / o creare nuovi messaggi per te?"
#: ../../mod/tagger.php:70 ../../mod/like.php:127
#: ../../addon/facebook/facebook.php:1024
#: ../../addon/communityhome/communityhome.php:158
#: ../../addon/communityhome/communityhome.php:167
#: ../../include/conversation.php:26 ../../include/conversation.php:35
#: ../../include/diaspora.php:1211
msgid "status"
msgstr "lo stato"
#: ../../mod/tagger.php:103
#, 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/like.php:144 ../../addon/facebook/facebook.php:1028
#: ../../addon/communityhome/communityhome.php:172
#: ../../include/conversation.php:43 ../../include/diaspora.php:1227
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr "A %1$s piace %3$s di %2$s"
#: ../../mod/like.php:146 ../../include/conversation.php:46
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr "A %1$s non piace %3$s di %2$s"
#: ../../mod/lostpass.php:16
msgid "No valid account found."
msgstr "Nessun account valido trovato."
#: ../../mod/lostpass.php:31
msgid "Password reset request issued. Check your email."
msgstr "Richiesta di reimpostazione pasword inviata. Controlla la tua email."
#: ../../mod/lostpass.php:42
#, php-format
msgid "Password reset requested at %s"
msgstr "Richiesta recupero password su %s"
#: ../../mod/lostpass.php:64
msgid ""
"Request could not be verified. (You may have previously submitted it.) "
"Password reset failed."
msgstr ""
"La richiesta non può essere verificata. (Puoi averla già richiesta "
"precendentemente). Reimpostazione password fallita."
#: ../../mod/lostpass.php:83
msgid "Your password has been reset as requested."
msgstr "La tua password è stata reimpostata come richiesto."
#: ../../mod/lostpass.php:84
msgid "Your new password is"
msgstr "La tua nuova password è"
#: ../../mod/lostpass.php:85
msgid "Save or copy your new password - and then"
msgstr "Sava o copa la tua nuova password, quindi"
#: ../../mod/lostpass.php:86
msgid "click here to login"
msgstr "clicca qui per entrare"
#: ../../mod/lostpass.php:87
msgid ""
"Your password may be changed from the <em>Settings</em> page after "
"successful login."
msgstr ""
"Puoi cambiare la tua password dalla pagina <em>Impostazioni</em> dopo essere"
" entrato."
#: ../../mod/lostpass.php:118
msgid "Forgot your Password?"
msgstr "Dimenticato la tua password?"
#: ../../mod/lostpass.php:119
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 richiedere di reimpostare la tua "
"passwork."
#: ../../mod/lostpass.php:120
msgid "Nickname or Email: "
msgstr "Nome utente o Email: "
#: ../../mod/lostpass.php:121
msgid "Reset"
msgstr "Reimposta"
#: ../../mod/friendica.php:43
msgid "This is Friendica, version"
msgstr "Questo è Friendica, versione"
#: ../../mod/friendica.php:44
msgid "running at web location"
msgstr "in esecuzione all'indirizzo"
#: ../../mod/friendica.php:46
msgid ""
"Please visit <a "
"href=\"http://project.friendika.com\">Project.Friendika.com</a> to learn "
"more about the Friendica project."
msgstr ""
"Visita <a href=\"http://friendica.com\">friendica.com</a> per saperne di più"
" sul progetto Friendica."
#: ../../mod/friendica.php:48
msgid "Bug reports and issues: please visit"
msgstr "Segnalazioni di bug e problemi: visita"
#: ../../mod/friendica.php:49
msgid ""
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
"dot com"
msgstr ""
"Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto "
"com"
#: ../../mod/friendica.php:54
msgid "Installed plugins/addons/apps"
msgstr "Plugin/Addon/Applicazioni installate"
#: ../../mod/friendica.php:62
msgid "No installed plugins/addons/apps"
msgstr "Nessuno plugin/addons/applicazione installata"
#: ../../mod/removeme.php:42 ../../mod/removeme.php:45
msgid "Remove My Account"
msgstr "Rimuovi il mio Account"
#: ../../mod/removeme.php:43
msgid ""
"This will completely remove your account. Once this has been done it is not "
"recoverable."
msgstr ""
"Questo rimuoverà completamente il tuo account. Una volta rimosso non si "
"potrà recuperarlo."
#: ../../mod/removeme.php:44
msgid "Please enter your password for verification:"
msgstr "Inserisci la tua password per verifica:"
#: ../../mod/apps.php:4
msgid "Applications"
msgstr "Applicazioni"
#: ../../mod/apps.php:7
msgid "No installed applications."
msgstr "Nessuna applicazione installata."
#: ../../mod/notes.php:63 ../../include/text.php:628
msgid "Save"
msgstr "Salva"
#: ../../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/viewsrc.php:7
msgid "Access denied."
msgstr "Accesso negato."
#: ../../mod/directory.php:49
msgid "Global Directory"
msgstr "Elenco Globale"
#: ../../mod/directory.php:55
msgid "Normal site view"
msgstr "Vista normale"
#: ../../mod/directory.php:57
msgid "Admin - View all site entries"
msgstr "Admin - Visualizza tutte le voci del sito"
#: ../../mod/directory.php:63
msgid "Find on this site"
msgstr "Cerca nel sito"
#: ../../mod/directory.php:66
msgid "Site Directory"
msgstr "Elenco del Sito"
#: ../../mod/directory.php:125
msgid "Gender: "
msgstr "Genere:"
#: ../../mod/directory.php:151
msgid "No entries (some entries may be hidden)."
msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)."
#: ../../mod/admin.php:59 ../../mod/admin.php:295
msgid "Site"
msgstr "Sito"
#: ../../mod/admin.php:60 ../../mod/admin.php:460 ../../mod/admin.php:472
msgid "Users"
msgstr "Utenti"
#: ../../mod/admin.php:61 ../../mod/admin.php:549 ../../mod/admin.php:586
msgid "Plugins"
msgstr "Plugin"
#: ../../mod/admin.php:76 ../../mod/admin.php:651
msgid "Logs"
msgstr "Log"
#: ../../mod/admin.php:81
msgid "User registrations waiting for confirmation"
msgstr "Utenti registrati in attesa di conferma"
#: ../../mod/admin.php:144 ../../mod/admin.php:294 ../../mod/admin.php:459
#: ../../mod/admin.php:548 ../../mod/admin.php:585 ../../mod/admin.php:650
msgid "Administration"
msgstr "Amministrazione"
#: ../../mod/admin.php:145
msgid "Summary"
msgstr "Sommario"
#: ../../mod/admin.php:146
msgid "Registered users"
msgstr "Utenti registrati"
#: ../../mod/admin.php:148
msgid "Pending registrations"
msgstr "Registrazioni in attesa"
#: ../../mod/admin.php:149
msgid "Version"
msgstr "Versione"
#: ../../mod/admin.php:151
msgid "Active plugins"
msgstr "Plugin attivi"
#: ../../mod/admin.php:243
msgid "Site settings updated."
msgstr "Impostazioni del sito aggiornate."
#: ../../mod/admin.php:287
msgid "Closed"
msgstr "Chiusa"
#: ../../mod/admin.php:288
msgid "Requires approval"
msgstr "Richiede l'approvazione"
#: ../../mod/admin.php:289
msgid "Open"
msgstr "Aperta"
#: ../../mod/admin.php:298
msgid "File upload"
msgstr "Caricamento file"
#: ../../mod/admin.php:299
msgid "Policies"
msgstr "Politiche"
#: ../../mod/admin.php:300
msgid "Advanced"
msgstr "Avanzate"
#: ../../mod/admin.php:304 ../../addon/statusnet/statusnet.php:477
msgid "Site name"
msgstr "Nome del sito"
#: ../../mod/admin.php:305
msgid "Banner/Logo"
msgstr "Banner/Logo"
#: ../../mod/admin.php:306
msgid "System language"
msgstr "Lingua di sistema"
#: ../../mod/admin.php:307
msgid "System theme"
msgstr "Tema di sistema"
#: ../../mod/admin.php:309
msgid "Maximum image size"
msgstr "Massima dimensione immagini"
#: ../../mod/admin.php:311
msgid "Register policy"
msgstr "Politica di registrazione"
#: ../../mod/admin.php:312
msgid "Register text"
msgstr "Testo registrazione"
#: ../../mod/admin.php:313
msgid "Accounts abandoned after x days"
msgstr "Account abbandonati dopo x giorni"
#: ../../mod/admin.php:313
msgid ""
"Will not waste system resources polling external sites for abandoned "
"accounts. Enter 0 for no time limit."
msgstr ""
"Non spreca risorse di sistema controllando siti esterni per gli account "
"abbandonati. Immettere 0 per nessun limite di tempo."
#: ../../mod/admin.php:314
msgid "Allowed friend domains"
msgstr "Domini amici consentiti"
#: ../../mod/admin.php:315
msgid "Allowed email domains"
msgstr "Domini email consentiti"
#: ../../mod/admin.php:316
msgid "Block public"
msgstr "Blocca pagine pubbliche"
#: ../../mod/admin.php:317
msgid "Force publish"
msgstr "Forza publicazione"
#: ../../mod/admin.php:318
msgid "Global directory update URL"
msgstr "URL aggiornamento Elenco Globale"
#: ../../mod/admin.php:320
msgid "Block multiple registrations"
msgstr "Blocca registrazioni multiple"
#: ../../mod/admin.php:321
msgid "OpenID support"
msgstr "Supporto OpenID"
#: ../../mod/admin.php:322
msgid "Gravatar support"
msgstr "Supporto Gravatar"
#: ../../mod/admin.php:323
msgid "Fullname check"
msgstr "Controllo nome completo"
#: ../../mod/admin.php:324
msgid "UTF-8 Regular expressions"
msgstr "Espressioni regolari UTF-8"
#: ../../mod/admin.php:325
msgid "Show Community Page"
msgstr "Mostra pagina Comunità"
#: ../../mod/admin.php:326
msgid "Enable OStatus support"
msgstr "Abilita supporto OStatus"
#: ../../mod/admin.php:327
msgid "Enable Diaspora support"
msgstr "Abilita il supporto a Diaspora"
#: ../../mod/admin.php:328
msgid "Only allow Friendika contacts"
msgstr "Permetti solo contatti Friendika"
#: ../../mod/admin.php:329
msgid "Verify SSL"
msgstr "Verifica SSL"
#: ../../mod/admin.php:330
msgid "Proxy user"
msgstr "Utente Proxy"
#: ../../mod/admin.php:331
msgid "Proxy URL"
msgstr "URL Proxy"
#: ../../mod/admin.php:332
msgid "Network timeout"
msgstr "Timeout rete"
#: ../../mod/admin.php:353
#, php-format
msgid "%s user blocked"
msgid_plural "%s users blocked/unblocked"
msgstr[0] "%s utente bloccato"
msgstr[1] "%s utenti bloccati/sbloccati"
#: ../../mod/admin.php:360
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] "%s utente cancellato"
msgstr[1] "%s utenti cancellati"
#: ../../mod/admin.php:394
#, php-format
msgid "User '%s' deleted"
msgstr "Utente '%s' cancellato"
#: ../../mod/admin.php:401
#, php-format
msgid "User '%s' unblocked"
msgstr "Utente '%s' sbloccato"
#: ../../mod/admin.php:401
#, php-format
msgid "User '%s' blocked"
msgstr "Utente '%s' bloccato"
#: ../../mod/admin.php:462
msgid "select all"
msgstr "seleziona tutti"
#: ../../mod/admin.php:463
msgid "User registrations waiting for confirm"
msgstr "Richieste di registrazione in attesa di conferma"
#: ../../mod/admin.php:464
msgid "Request date"
msgstr "Data richiesta"
#: ../../mod/admin.php:464 ../../mod/admin.php:473
#: ../../include/contact_selectors.php:78
msgid "Email"
msgstr "Email"
#: ../../mod/admin.php:465
msgid "No registrations."
msgstr "Nessuna registrazione."
#: ../../mod/admin.php:467
msgid "Deny"
msgstr "Nega"
#: ../../mod/admin.php:473
msgid "Register date"
msgstr "Data registrazione"
#: ../../mod/admin.php:473
msgid "Last login"
msgstr "Ultimo accesso"
#: ../../mod/admin.php:473
msgid "Last item"
msgstr "Ultimo elemento"
#: ../../mod/admin.php:473
msgid "Account"
msgstr "Account"
#: ../../mod/admin.php:475
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr ""
"Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti "
"hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei "
"sicuro?"
#: ../../mod/admin.php:476
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 ""
"L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo "
"sito sarà permanentemente canellato!\\n\\nSei sicuro?"
#: ../../mod/admin.php:512
#, php-format
msgid "Plugin %s disabled."
msgstr "Plugin %s disabilitato."
#: ../../mod/admin.php:516
#, php-format
msgid "Plugin %s enabled."
msgstr "Plugin %s abilitato."
#: ../../mod/admin.php:526
msgid "Disable"
msgstr "Disabilita"
#: ../../mod/admin.php:528
msgid "Enable"
msgstr "Abilita"
#: ../../mod/admin.php:550
msgid "Toggle"
msgstr "Inverti"
#: ../../mod/admin.php:551 ../../include/nav.php:128
msgid "Settings"
msgstr "Impostazioni"
#: ../../mod/admin.php:613
msgid "Log settings updated."
msgstr "Impostazioni Log aggiornate."
#: ../../mod/admin.php:653
msgid "Clear"
msgstr "Pulisci"
#: ../../mod/admin.php:659
msgid "Debugging"
msgstr "Debugging"
#: ../../mod/admin.php:660
msgid "Log file"
msgstr "File di Log"
#: ../../mod/admin.php:660
msgid "Must be writable by web server. Relative to your Friendika index.php."
msgstr ""
"Deve essere scrivibile dal server web. Relativo al file index.php della tua "
"installazione Friendika."
#: ../../mod/admin.php:661
msgid "Log level"
msgstr "Livello di Log"
#: ../../mod/admin.php:702
msgid "Close"
msgstr "Chiudi"
#: ../../mod/admin.php:708
msgid "FTP Host"
msgstr "Indirizzo FTP"
#: ../../mod/admin.php:709
msgid "FTP Path"
msgstr "Percorso FTP"
#: ../../mod/admin.php:710
msgid "FTP User"
msgstr "Utente FTP"
#: ../../mod/admin.php:711
msgid "FTP Password"
msgstr "Pasword FTP"
#: ../../mod/item.php:84
msgid "Unable to locate original post."
msgstr "Impossibile trovare il messaggio originale."
#: ../../mod/item.php:199
msgid "Empty post discarded."
msgstr "Messaggio vuoto scartato."
#: ../../mod/item.php:675 ../../mod/item.php:720 ../../mod/item.php:764
#: ../../mod/item.php:807 ../../include/items.php:1769
#: ../../include/items.php:2068 ../../include/items.php:2115
#: ../../include/items.php:2227 ../../include/items.php:2273
msgid "noreply"
msgstr "nessuna risposta"
#: ../../mod/item.php:719 ../../mod/item.php:806 ../../include/items.php:2272
msgid "Administrator@"
msgstr "Amministratore@"
#: ../../mod/item.php:722 ../../include/items.php:2117
#: ../../include/items.php:2275
#, php-format
msgid "%s commented on an item at %s"
msgstr "%s ha commentato un elemento su %s"
#: ../../mod/item.php:809
#, php-format
msgid "%s posted to your profile wall at %s"
msgstr "%s ha scritto sulla tua bacheca su %s"
#: ../../mod/item.php:843
msgid "System error. Post not saved."
msgstr "Errore di sistema. Messaggio non salvato."
#: ../../mod/item.php:868
#, php-format
msgid ""
"This message was sent to you by %s, a member of the Friendika social "
"network."
msgstr ""
"Questo messaggio ti è stato inviato da %s, un membro del social network "
"Friendika."
#: ../../mod/item.php:870
#, php-format
msgid "You may visit them online at %s"
msgstr "Puoi visitarli online presso %s"
#: ../../mod/item.php:871
msgid ""
"Please contact the sender by replying to this post if you do not wish to "
"receive these messages."
msgstr ""
"Contatta il mittente rispondendo a questo post se non vuoi ricevere questi "
"messaggi."
#: ../../mod/item.php:873
#, php-format
msgid "%s posted an update."
msgstr "%s ha inviato un aggiornamento."
#: ../../mod/tagrm.php:41
msgid "Tag removed"
msgstr "TAg rimosso"
#: ../../mod/tagrm.php:79
msgid "Remove Item Tag"
msgstr "Rimuovi tag dall'elemento"
#: ../../mod/tagrm.php:81
msgid "Select a tag to remove: "
msgstr "Seleziona un tag da rimuovere: "
#: ../../mod/tagrm.php:93
msgid "Remove"
msgstr "Rimuovi"
#: ../../mod/message.php:23
msgid "No recipient selected."
msgstr "Nessun destinatario selezionato."
#: ../../mod/message.php:26
msgid "Unable to locate contact information."
msgstr "Impossibile trovare le informazioni del contatto."
#: ../../mod/message.php:29
msgid "Message could not be sent."
msgstr "Il messaggio non puo' essere inviato."
#: ../../mod/message.php:31
msgid "Message sent."
msgstr "Messaggio inviato."
#: ../../mod/message.php:51
msgid "Inbox"
msgstr "In arrivo"
#: ../../mod/message.php:56
msgid "Outbox"
msgstr "Inviati"
#: ../../mod/message.php:61
msgid "New Message"
msgstr "Nuovo messaggio"
#: ../../mod/message.php:87
msgid "Message deleted."
msgstr "Messaggio cancellato."
#: ../../mod/message.php:103
msgid "Conversation removed."
msgstr "Conversazione rimossa."
#: ../../mod/message.php:119 ../../include/conversation.php:767
msgid "Please enter a link URL:"
msgstr "Inserisci l'indirizzo del link:"
#: ../../mod/message.php:127
msgid "Send Private Message"
msgstr "Invia messaggio privato"
#: ../../mod/message.php:128 ../../mod/message.php:261
msgid "To:"
msgstr "A:"
#: ../../mod/message.php:129 ../../mod/message.php:262
msgid "Subject:"
msgstr "Oggetto:"
#: ../../mod/message.php:170
msgid "No messages."
msgstr "Nessun messaggio."
#: ../../mod/message.php:183
msgid "Delete conversation"
msgstr "Cancella conversazione"
#: ../../mod/message.php:186
msgid "D, d M Y - g:i A"
msgstr "D d M Y - G:i"
#: ../../mod/message.php:213
msgid "Message not available."
msgstr "Messaggio non disponibile."
#: ../../mod/message.php:250
msgid "Delete message"
msgstr "Cancella messaggio"
#: ../../mod/message.php:260
msgid "Send Reply"
msgstr "Invia risposta"
#: ../../mod/dfrn_confirm.php:234
#: ../../mod/dfrn_confirm.php:237
msgid "Response from remote site was not understood."
msgstr "La risposta dal sito remota non è stata capita."
msgstr "Errore di comunicazione con l'altro sito."
#: ../../mod/dfrn_confirm.php:243
#: ../../mod/dfrn_confirm.php:246
msgid "Unexpected response from remote site: "
msgstr "Risposta dal sito remoto inaspettata: "
msgstr "La risposta dell'altro sito non può essere gestita: "
#: ../../mod/dfrn_confirm.php:251
#: ../../mod/dfrn_confirm.php:254
msgid "Confirmation completed successfully."
msgstr "Conferma completata con successo."
#: ../../mod/dfrn_confirm.php:253 ../../mod/dfrn_confirm.php:267
#: ../../mod/dfrn_confirm.php:274
#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
#: ../../mod/dfrn_confirm.php:277
msgid "Remote site reported: "
msgstr "Il sito remoto riporta: "
#: ../../mod/dfrn_confirm.php:265
#: ../../mod/dfrn_confirm.php:268
msgid "Temporary failure. Please wait and try again."
msgstr "Errore temporaneo. Attendi e riprova."
msgstr "Problema temporaneo. Attendi e riprova."
#: ../../mod/dfrn_confirm.php:272
#: ../../mod/dfrn_confirm.php:275
msgid "Introduction failed or was revoked."
msgstr "La presentazione è fallita o è stata revocata."
msgstr "La presentazione ha generato un errore o è stata revocata."
#: ../../mod/dfrn_confirm.php:409
#: ../../mod/dfrn_confirm.php:420
msgid "Unable to set contact photo."
msgstr "Impossibile impostare la foto del contatto."
#: ../../mod/dfrn_confirm.php:459 ../../include/conversation.php:79
#: ../../include/diaspora.php:477
#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:608
#: ../../include/conversation.php:171
#, php-format
msgid "%1$s is now friends with %2$s"
msgstr "%1$s è ora amico di %2$s"
msgstr "%1$s e %2$s adesso sono amici"
#: ../../mod/dfrn_confirm.php:530
#: ../../mod/dfrn_confirm.php:562
#, php-format
msgid "No user record found for '%s' "
msgstr "Nessun utente trovato per '%s'"
#: ../../mod/dfrn_confirm.php:540
msgid "Our site encryption key is apparently messed up."
msgstr "La nostra chiave di criptazione del sito è apparentemente incasinata."
#: ../../mod/dfrn_confirm.php:551
msgid "Empty site URL was provided or URL could not be decrypted by us."
msgstr ""
"E' stato fornito un indirizzo vuoto o non possiamo decriptare l'indirizzo."
msgstr "Nessun utente trovato '%s'"
#: ../../mod/dfrn_confirm.php:572
msgid "Our site encryption key is apparently messed up."
msgstr "La nostra chiave di criptazione del sito sembra essere corrotta."
#: ../../mod/dfrn_confirm.php:583
msgid "Empty site URL was provided or URL could not be decrypted by us."
msgstr "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo."
#: ../../mod/dfrn_confirm.php:604
msgid "Contact record was not found for you on our site."
msgstr "Il contatto non è stato trovato sul nostro sito."
#: ../../mod/dfrn_confirm.php:586
#: ../../mod/dfrn_confirm.php:618
#, php-format
msgid "Site public key not available in contact record for URL %s."
msgstr "La chiave pubblica del sito non è disponibile per l'URL %s"
#: ../../mod/dfrn_confirm.php:606
#: ../../mod/dfrn_confirm.php:638
msgid ""
"The ID provided by your system is a duplicate on our system. It should work "
"if you try again."
msgstr ""
"L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Dovrebbe "
"funzionare se provi ancora."
msgstr "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare."
#: ../../mod/dfrn_confirm.php:617
#: ../../mod/dfrn_confirm.php:649
msgid "Unable to set your contact credentials on our system."
msgstr ""
"Impossibile impostare le credenziali del tuo contatto sul nostro sistema."
msgstr "Impossibile impostare le credenziali del tuo contatto sul nostro sistema."
#: ../../mod/dfrn_confirm.php:671
#: ../../mod/dfrn_confirm.php:716
msgid "Unable to update your contact profile details on our system"
msgstr "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema"
#: ../../mod/dfrn_confirm.php:701
#: ../../mod/dfrn_confirm.php:750
#, php-format
msgid "Connection accepted at %s"
msgstr "Connession accettata su %s"
#: ../../mod/openid.php:63 ../../mod/openid.php:123 ../../include/auth.php:122
#: ../../include/auth.php:147 ../../include/auth.php:201
msgid "Login failed."
msgstr "Accesso fallito."
#: ../../mod/openid.php:79 ../../include/auth.php:217
msgid "Welcome "
msgstr "Benvenuto"
#: ../../mod/openid.php:80 ../../include/auth.php:218
msgid "Please upload a profile photo."
msgstr "Carica una foto per il profilo."
#: ../../mod/openid.php:83 ../../include/auth.php:221
msgid "Welcome back "
msgstr "Bentornato "
#: ../../mod/dfrn_poll.php:90 ../../mod/dfrn_poll.php:516
#: ../../mod/dfrn_confirm.php:799
#, php-format
msgid "%s welcomes %s"
msgstr "%s da il benvenuto a %s"
#: ../../mod/viewcontacts.php:25 ../../include/text.php:567
msgid "View Contacts"
msgstr "Guarda contatti"
#: ../../mod/viewcontacts.php:40
msgid "No contacts."
msgstr "Nessuno contatto."
#: ../../mod/group.php:27
msgid "Group created."
msgstr "Gruppo creato."
#: ../../mod/group.php:33
msgid "Could not create group."
msgstr "Impossibile creare il gruppo."
#: ../../mod/group.php:43 ../../mod/group.php:123
msgid "Group not found."
msgstr "Gruppo non trovato."
#: ../../mod/group.php:56
msgid "Group name changed."
msgstr "Il nome del gruppo è cambiato."
#: ../../mod/group.php:82
msgid "Create a group of contacts/friends."
msgstr "Crea un gruppo di amici/contatti."
#: ../../mod/group.php:83 ../../mod/group.php:166
msgid "Group Name: "
msgstr "Nome del gruppo:"
#: ../../mod/group.php:98
msgid "Group removed."
msgstr "Gruppo rimosso."
#: ../../mod/group.php:100
msgid "Unable to remove group."
msgstr "Impossibile rimuovere il gruppo."
#: ../../mod/group.php:165
msgid "Group Editor"
msgstr "Modifica gruppo"
#: ../../mod/group.php:179
msgid "Members"
msgstr "Membri"
#: ../../mod/group.php:194
msgid "All Contacts"
msgstr "Tutti i Contatti"
#: ../../mod/attach.php:8
msgid "Item not available."
msgstr "Elemento non disponibile."
#: ../../mod/attach.php:20
msgid "Item was not found."
msgstr "Elemento non trovato."
#: ../../mod/common.php:34
msgid "Common Friends"
msgstr "Amici in comune"
#: ../../mod/common.php:42
msgid "No friends in common."
msgstr "Non ci sono amici in comune."
#: ../../mod/match.php:10
msgid "Profile Match"
msgstr "Profili combacianti"
#: ../../mod/match.php:18
msgid "No keywords to match. Please add keywords to your default profile."
msgid "%1$s has joined %2$s"
msgstr ""
"Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo "
"profilo predefinito."
#: ../../mod/community.php:21
msgid "Not available."
msgstr "Non disponibile."
#: ../../addon/fromgplus/fromgplus.php:29
msgid "Google+ Import Settings"
msgstr ""
#: ../../mod/community.php:30 ../../include/nav.php:97
msgid "Community"
msgstr "Comunità"
#: ../../addon/fromgplus/fromgplus.php:32
msgid "Enable Google+ Import"
msgstr ""
#: ../../mod/community.php:87
#: ../../addon/fromgplus/fromgplus.php:35
msgid "Google Account ID"
msgstr ""
#: ../../addon/fromgplus/fromgplus.php:55
msgid "Google+ Import Settings saved."
msgstr ""
#: ../../addon/facebook/facebook.php:523
msgid "Facebook disabled"
msgstr "Facebook disabilitato"
#: ../../addon/facebook/facebook.php:528
msgid "Updating contacts"
msgstr "Aggiornamento contatti"
#: ../../addon/facebook/facebook.php:551 ../../addon/fbpost/fbpost.php:192
msgid "Facebook API key is missing."
msgstr "Chiave API Facebook mancante."
#: ../../addon/facebook/facebook.php:558
msgid "Facebook Connect"
msgstr "Facebook Connect"
#: ../../addon/facebook/facebook.php:564
msgid "Install Facebook connector for this account."
msgstr "Installa Facebook connector per questo account"
#: ../../addon/facebook/facebook.php:571
msgid "Remove Facebook connector"
msgstr "Rimuovi Facebook connector"
#: ../../addon/facebook/facebook.php:576 ../../addon/fbpost/fbpost.php:217
msgid ""
"Shared content is covered by the <a "
"href=\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons "
"Attribution 3.0</a> license."
msgstr ""
"Il contenuto in comune è coperto dalla licenza <a "
"href=\"http://creativecommons.org/licenses/by/3.0/deed.it\">Creative Commons"
" Attribuzione 3.0</a>."
"Re-authenticate [This is necessary whenever your Facebook password is "
"changed.]"
msgstr "Ri-autentica [Questo è necessario ogni volta che cambia la password di Facebook.]"
#: ../../addon/tumblr/tumblr.php:35
msgid "Post to Tumblr"
msgstr "Pubblica su Tumblr"
#: ../../addon/facebook/facebook.php:583 ../../addon/fbpost/fbpost.php:224
msgid "Post to Facebook by default"
msgstr "Invia sempre a Facebook"
#: ../../addon/tumblr/tumblr.php:66
msgid "Tumblr Post Settings"
msgstr "Impostazioni di invio a Tumblr"
#: ../../addon/tumblr/tumblr.php:68
msgid "Enable Tumblr Post Plugin"
msgstr "Abilita Plugin Tumblr"
#: ../../addon/tumblr/tumblr.php:73
msgid "Tumblr login"
msgstr "Tumblr login"
#: ../../addon/tumblr/tumblr.php:78
msgid "Tumblr password"
msgstr "Tumblr password"
#: ../../addon/tumblr/tumblr.php:83
msgid "Post to Tumblr by default"
msgstr "Pubblica su Tumblr di default"
#: ../../addon/tumblr/tumblr.php:174 ../../addon/wppost/wppost.php:171
msgid "Post from Friendica"
msgstr "Messaggio da Friendica"
#: ../../addon/twitter/twitter.php:78
msgid "Post to Twitter"
msgstr "Inva a Twitter"
#: ../../addon/twitter/twitter.php:123
msgid "Twitter settings updated."
msgstr "Impostazioni di Twitter aggiornate."
#: ../../addon/twitter/twitter.php:145
msgid "Twitter Posting Settings"
msgstr "Impostazioni Invio a Twitter"
#: ../../addon/twitter/twitter.php:152
#: ../../addon/facebook/facebook.php:589
msgid ""
"No consumer key pair for Twitter found. Please contact your site "
"administrator."
"Facebook friend linking has been disabled on this site. The following "
"settings will have no effect."
msgstr ""
"Nessuna coopia di chiavi per Twitter trovata. Contatta il tuo amministratore"
" del sito."
#: ../../addon/twitter/twitter.php:171
#: ../../addon/facebook/facebook.php:593
msgid ""
"At this Friendika 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 <strong>public</strong> posts will"
" be posted to Twitter."
"Facebook friend linking has been disabled on this site. If you disable it, "
"you will be unable to re-enable it."
msgstr ""
"Questa installazione di Friendika ha il plugin Twitter abilitato, ma non hai"
" ancora collegato il tuo account locale con il tuo account su Twitter. Per "
"farlo, clicca il bottone qui sotto per ottenere un PIN da Twitter, che "
"dovrai copiare nel box più sotto per poi inviare la form. Solo i tuoi "
"messaggi <strong>pubblici</strong> verranno inviati anche su Twitter."
#: ../../addon/twitter/twitter.php:172
msgid "Log in with Twitter"
msgstr "Accedi con Twitter"
#: ../../addon/facebook/facebook.php:596
msgid "Link all your Facebook friends and conversations on this website"
msgstr "Collega tutti i tuoi amici di Facebook e le conversazioni su questo sito"
#: ../../addon/twitter/twitter.php:174
msgid "Copy the PIN from Twitter here"
msgstr "Copia il PIN da Twitter qui"
#: ../../addon/twitter/twitter.php:188 ../../addon/statusnet/statusnet.php:337
msgid "Currently connected to: "
msgstr "Al momento collegato con:"
#: ../../addon/twitter/twitter.php:189
#: ../../addon/facebook/facebook.php:598
msgid ""
"If enabled all your <strong>public</strong> postings can be posted to the "
"associated Twitter account. You can choose to do so by default (here) or for"
" every posting separately in the posting options when writing the entry."
msgstr ""
"Se abilitato tutti i tuoi messaggi <strong>pubblici</strong> possono essere "
"inviati all'account Twitter associato. Puoi scegliere di farlo sempre (qui) "
"o ogni volta che invii, nelle impostazioni di privacy del messaggio."
"Facebook conversations consist of your <em>profile wall</em> and your friend"
" <em>stream</em>."
msgstr "Le conversazione su Facebook sono composte dai i tuoi messsaggi in bacheca e dai messaggi dei tuoi amici"
#: ../../addon/twitter/twitter.php:191
msgid "Allow posting to Twitter"
msgstr "Permetti l'invio a Twitter"
#: ../../addon/facebook/facebook.php:599
msgid "On this website, your Facebook friend stream is only visible to you."
msgstr "Su questo sito, i messaggi dai vostri amici su Facebook è visibile solo a te."
#: ../../addon/twitter/twitter.php:194
msgid "Send public postings to Twitter by default"
msgstr "Invia sempre i messaggi pubblici a Twitter"
#: ../../addon/twitter/twitter.php:199 ../../addon/statusnet/statusnet.php:348
msgid "Clear OAuth configuration"
msgstr "Cancella la configurazione OAuth"
#: ../../addon/twitter/twitter.php:301
msgid "Consumer key"
msgstr "Consumer key"
#: ../../addon/twitter/twitter.php:302
msgid "Consumer secret"
msgstr "Consumer secret"
#: ../../addon/statusnet/statusnet.php:141
msgid "Post to StatusNet"
msgstr "Invia a StatusNet"
#: ../../addon/statusnet/statusnet.php:183
#: ../../addon/facebook/facebook.php:600
msgid ""
"Please contact your site administrator.<br />The provided API URL is not "
"valid."
msgstr ""
"Contatta l'amministratore del sito.<br/>L'URL delle API fornito non è "
"valido."
"The following settings determine the privacy of your Facebook profile wall "
"on this website."
msgstr "Le seguenti impostazioni determinano la privacy della vostra bacheca di Facebook su questo sito."
#: ../../addon/statusnet/statusnet.php:211
msgid "We could not contact the StatusNet API with the Path you entered."
msgstr ""
"Non possiamo conttattare le API di StatusNet con il percorso che hai "
"inserito."
#: ../../addon/statusnet/statusnet.php:238
msgid "StatusNet settings updated."
msgstr "Impostazioni StatusNet aggiornate."
#: ../../addon/statusnet/statusnet.php:261
msgid "StatusNet Posting Settings"
msgstr "Impostazioni di invio a StatusNet"
#: ../../addon/statusnet/statusnet.php:275
msgid "Globally Available StatusNet OAuthKeys"
msgstr "Chiavi OAuth StatusNet disponibili sul sito"
#: ../../addon/statusnet/statusnet.php:276
#: ../../addon/facebook/facebook.php:604
msgid ""
"There are preconfigured OAuth key pairs for some StatusNet servers "
"available. If you are useing one of them, please use these credentials. If "
"not feel free to connect to any other StatusNet instance (see below)."
msgstr ""
"Queste sono chiavi OAuth precofigurate disponibili per alcuni server "
"StatusNet. Se stai usando uno di questi server, per favore usa queste "
"credenziali. Altrimenti sei libero di collegarti a un'altra installazione di"
" StatusNet (vedi sotto)."
"On this website your Facebook profile wall conversations will only be "
"visible to you"
msgstr "Su questo sito, le conversazioni sulla tua bacheca di Facebook saranno visibili solo a te"
#: ../../addon/statusnet/statusnet.php:284
msgid "Provide your own OAuth Credentials"
msgstr "Fornisci le tue credenziali OAuth"
#: ../../addon/facebook/facebook.php:609
msgid "Do not import your Facebook profile wall conversations"
msgstr "Non importare le conversazione sulla tua bacheca di Facebook"
#: ../../addon/statusnet/statusnet.php:285
#: ../../addon/facebook/facebook.php:611
msgid ""
"No consumer key pair for StatusNet found. Register your Friendika Account as"
" an desktop client on your StatusNet account, copy the consumer key pair "
"here and enter the API base root.<br />Before you register your own OAuth "
"key pair ask the administrator if there is already a key pair for this "
"Friendika installation at your favorited StatusNet installation."
msgstr ""
"Nessuna coppia di chiavi consumer per StatusNet trovata. Regitstra il tuo "
"Account Friendika come un client desktop sul tuo account StatusNet, copia la"
" coppia di chiavi qui e inserisci l'url di base delle API.<br />Prima di "
"registrare la tua coppia di chiavi OAuth, chiedi all'amministratore se "
"esiste già una coppia di chiavi per questa installazione di Friendika sulla "
"installazione di StatusNet che ti interessa."
"If you choose to link conversations and leave both of these boxes unchecked,"
" your Facebook profile wall will be merged with your profile wall on this "
"website and your privacy settings on this website will be used to determine "
"who may see the conversations."
msgstr "Se scegli di collegare le conversazioni e lasci entrambi questi box non segnati, la tua bacheca di Facebook sarà fusa con la tua bacheca su questao sito, e le impostazioni di privacy su questo sito saranno usate per decidere chi potrà vedere le conversazioni."
#: ../../addon/statusnet/statusnet.php:287
msgid "OAuth Consumer Key"
msgstr "OAuth Consumer Key"
#: ../../addon/facebook/facebook.php:616
msgid "Comma separated applications to ignore"
msgstr "Elenco separato da virgola di applicazioni da ignorare"
#: ../../addon/statusnet/statusnet.php:290
msgid "OAuth Consumer Secret"
msgstr "OAuth Consumer Secret"
#: ../../addon/facebook/facebook.php:700
msgid "Problems with Facebook Real-Time Updates"
msgstr "Problemi con gli aggiornamenti in tempo reale con Facebook"
#: ../../addon/statusnet/statusnet.php:293
msgid "Base API Path (remember the trailing /)"
msgstr "Indirizzo di base per le API (ricorda la / alla fine)"
#: ../../addon/facebook/facebook.php:729
msgid "Facebook Connector Settings"
msgstr "Impostazioni del connettore Facebook"
#: ../../addon/statusnet/statusnet.php:314
#: ../../addon/facebook/facebook.php:744 ../../addon/fbpost/fbpost.php:255
msgid "Facebook API Key"
msgstr "Facebook API Key"
#: ../../addon/facebook/facebook.php:754 ../../addon/fbpost/fbpost.php:262
msgid ""
"To connect to your StatusNet account click the button below to get a "
"security code from StatusNet which you have to copy into the input box below"
" and submit the form. Only your <strong>public</strong> posts will be posted"
" to StatusNet."
msgstr ""
"Per collegare il tuo account StatusNet, clicca sul bottone qui sotto per "
"ottenere un codice di sicurezza da StatusNet, che dovrai copiare nel box più"
" sotto per poi inviare la form. Solo i tuoi messaggi "
"<strong>pubblci</strong> saranno inviati a StatusNet."
"Error: it appears that you have specified the App-ID and -Secret in your "
".htconfig.php file. As long as they are specified there, they cannot be set "
"using this form.<br><br>"
msgstr "Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"
#: ../../addon/statusnet/statusnet.php:315
msgid "Log in with StatusNet"
msgstr "Login con StatuNet"
#: ../../addon/statusnet/statusnet.php:317
msgid "Copy the security code from StatusNet here"
msgstr "Copia il codice di sicurezza da StatusNet qui"
#: ../../addon/statusnet/statusnet.php:323
msgid "Cancel Connection Process"
msgstr "Annulla il processo di connessione"
#: ../../addon/statusnet/statusnet.php:325
msgid "Current StatusNet API is"
msgstr "Le API StatusNet correnti sono"
#: ../../addon/statusnet/statusnet.php:326
msgid "Cancel StatusNet Connection"
msgstr "Annulla la connessione a StatusNet"
#: ../../addon/statusnet/statusnet.php:338
#: ../../addon/facebook/facebook.php:759
msgid ""
"If enabled all your <strong>public</strong> postings can be posted to the "
"associated StatusNet account. You can choose to do so by default (here) or "
"for every posting separately in the posting options when writing the entry."
"Error: the given API Key seems to be incorrect (the application access token"
" could not be retrieved)."
msgstr "Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."
#: ../../addon/facebook/facebook.php:761
msgid "The given API Key seems to work correctly."
msgstr "L' API Key fornita sembra funzionare correttamente."
#: ../../addon/facebook/facebook.php:763
msgid ""
"The correctness of the API Key could not be detected. Something strange's "
"going on."
msgstr ""
"Se abilitato tutti i tuoi messaggi <strong>pubblici</strong> possono essere "
"inviati all'account StatusNet associato. Puoi scegliere di farlo sempre "
"(qui) o ogni volta che invii, nelle impostazioni di privacy del messaggio."
#: ../../addon/statusnet/statusnet.php:340
msgid "Allow posting to StatusNet"
msgstr "Permetti l'invio a StatusNet"
#: ../../addon/facebook/facebook.php:766 ../../addon/fbpost/fbpost.php:264
msgid "App-ID / API-Key"
msgstr "App-ID / API-Key"
#: ../../addon/statusnet/statusnet.php:343
msgid "Send public postings to StatusNet by default"
msgstr "Di default invia i messaggi pubblici a StatusNet"
#: ../../addon/facebook/facebook.php:767 ../../addon/fbpost/fbpost.php:265
msgid "Application secret"
msgstr "Application secret"
#: ../../addon/statusnet/statusnet.php:478
msgid "API URL"
msgstr "API URL"
#: ../../addon/facebook/facebook.php:768
#, php-format
msgid "Polling Interval in minutes (minimum %1$s minutes)"
msgstr ""
#: ../../addon/oembed/oembed.php:30
msgid "OEmbed settings updated"
msgstr "Impostazioni OEmbed aggiornate"
#: ../../addon/facebook/facebook.php:769
msgid ""
"Synchronize comments (no comments on Facebook are missed, at the cost of "
"increased system load)"
msgstr ""
#: ../../addon/oembed/oembed.php:43
msgid "Use OEmbed for YouTube videos"
msgstr "Usa OEmbed per i video di YouTube"
#: ../../addon/facebook/facebook.php:773
msgid "Real-Time Updates"
msgstr "Aggiornamenti Real-Time"
#: ../../addon/oembed/oembed.php:71
msgid "URL to embed:"
msgstr "URL da incorporare:"
#: ../../addon/facebook/facebook.php:777
msgid "Real-Time Updates are activated."
msgstr "Gli aggiornamenti in tempo reale sono attivi"
#: ../../addon/facebook/facebook.php:778
msgid "Deactivate Real-Time Updates"
msgstr "Disattiva gli aggiornamenti in tempo reale"
#: ../../addon/facebook/facebook.php:780
msgid "Real-Time Updates not activated."
msgstr "Gli aggiornamenti in tempo reale non sono attivi"
#: ../../addon/facebook/facebook.php:780
msgid "Activate Real-Time Updates"
msgstr "Attiva gli aggiornamenti in tempo reale"
#: ../../addon/facebook/facebook.php:799 ../../addon/fbpost/fbpost.php:282
#: ../../addon/dav/friendica/layout.fnk.php:361
msgid "The new values have been saved."
msgstr "I nuovi valori sono stati salvati."
#: ../../addon/facebook/facebook.php:823 ../../addon/fbpost/fbpost.php:301
msgid "Post to Facebook"
msgstr "Invia a Facebook"
#: ../../addon/facebook/facebook.php:921 ../../addon/fbpost/fbpost.php:399
msgid ""
"Post to Facebook cancelled because of multi-network access permission "
"conflict."
msgstr "Invio su Facebook annullato per un conflitto nei permessi di accesso."
#: ../../addon/facebook/facebook.php:1149 ../../addon/fbpost/fbpost.php:610
msgid "View on Friendica"
msgstr "Vedi su Friendica"
#: ../../addon/facebook/facebook.php:1182 ../../addon/fbpost/fbpost.php:643
msgid "Facebook post failed. Queued for retry."
msgstr "Invio a Facebook fallito. In attesa di riprovare."
#: ../../addon/facebook/facebook.php:1222 ../../addon/fbpost/fbpost.php:683
msgid "Your Facebook connection became invalid. Please Re-authenticate."
msgstr ""
#: ../../addon/facebook/facebook.php:1223 ../../addon/fbpost/fbpost.php:684
msgid "Facebook connection became invalid"
msgstr ""
#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:685
#, php-format
msgid ""
"Hi %1$s,\n"
"\n"
"The connection between your accounts on %2$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3$sre-authenticate the Facebook-connector%4$s."
msgstr ""
#: ../../addon/snautofollow/snautofollow.php:32
msgid "StatusNet AutoFollow settings updated."
msgstr ""
#: ../../addon/snautofollow/snautofollow.php:56
msgid "StatusNet AutoFollow Settings"
msgstr ""
#: ../../addon/snautofollow/snautofollow.php:58
msgid "Automatically follow any StatusNet followers/mentioners"
msgstr ""
#: ../../addon/bg/bg.php:51
msgid "Bg settings updated."
msgstr ""
#: ../../addon/bg/bg.php:82
msgid "Bg Settings"
msgstr ""
#: ../../addon/bg/bg.php:84 ../../addon/numfriends/numfriends.php:79
msgid "How many contacts to display on profile sidebar"
msgstr "Quanti contatti visualizzare nella barra laterale del profilo"
#: ../../addon/privacy_image_cache/privacy_image_cache.php:260
msgid "Lifetime of the cache (in hours)"
msgstr ""
#: ../../addon/privacy_image_cache/privacy_image_cache.php:265
msgid "Cache Statistics"
msgstr ""
#: ../../addon/privacy_image_cache/privacy_image_cache.php:268
msgid "Number of items"
msgstr ""
#: ../../addon/privacy_image_cache/privacy_image_cache.php:270
msgid "Size of the cache"
msgstr ""
#: ../../addon/privacy_image_cache/privacy_image_cache.php:272
msgid "Delete the whole cache"
msgstr ""
#: ../../addon/fbpost/fbpost.php:172
msgid "Facebook Post disabled"
msgstr ""
#: ../../addon/fbpost/fbpost.php:199
msgid "Facebook Post"
msgstr ""
#: ../../addon/fbpost/fbpost.php:205
msgid "Install Facebook Post connector for this account."
msgstr ""
#: ../../addon/fbpost/fbpost.php:212
msgid "Remove Facebook Post connector"
msgstr ""
#: ../../addon/fbpost/fbpost.php:240
msgid "Facebook Post Settings"
msgstr ""
#: ../../addon/widgets/widget_like.php:58
#, php-format
msgid "%d person likes this"
msgid_plural "%d people like this"
msgstr[0] "piace a %d persona"
msgstr[1] "piace a %d persone"
#: ../../addon/widgets/widget_like.php:61
#, php-format
msgid "%d person doesn't like this"
msgid_plural "%d people don't like this"
msgstr[0] "non piace a %d persona"
msgstr[1] "non piace a %d persone"
#: ../../addon/widgets/widget_friendheader.php:40
msgid "Get added to this list!"
msgstr ""
#: ../../addon/widgets/widgets.php:56
msgid "Generate new key"
msgstr "Genera una nuova chiave"
#: ../../addon/widgets/widgets.php:59
msgid "Widgets key"
msgstr "Chiave Widget"
#: ../../addon/widgets/widgets.php:61
msgid "Widgets available"
msgstr "Widget disponibili"
#: ../../addon/widgets/widget_friends.php:40
msgid "Connect on Friendica!"
msgstr "Connettiti su Friendica!"
#: ../../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 "do something obscenely biological to"
msgstr ""
#: ../../addon/morepokes/morepokes.php:21
msgid "did something obscenely biological to"
msgstr ""
#: ../../addon/morepokes/morepokes.php:22
msgid "point out the poke feature to"
msgstr ""
#: ../../addon/morepokes/morepokes.php:22
msgid "pointed out the poke feature to"
msgstr ""
#: ../../addon/morepokes/morepokes.php:23
msgid "declare undying love for"
msgstr ""
#: ../../addon/morepokes/morepokes.php:23
msgid "declared undying love for"
msgstr ""
#: ../../addon/morepokes/morepokes.php:24
msgid "patent"
msgstr ""
#: ../../addon/morepokes/morepokes.php:24
msgid "patented"
msgstr ""
#: ../../addon/morepokes/morepokes.php:25
msgid "stroke beard"
msgstr ""
#: ../../addon/morepokes/morepokes.php:25
msgid "stroked their beard at"
msgstr ""
#: ../../addon/morepokes/morepokes.php:26
msgid ""
"bemoan the declining standards of modern secondary and tertiary education to"
msgstr ""
#: ../../addon/morepokes/morepokes.php:26
msgid ""
"bemoans the declining standards of modern secondary and tertiary education "
"to"
msgstr ""
#: ../../addon/morepokes/morepokes.php:27
msgid "hug"
msgstr ""
#: ../../addon/morepokes/morepokes.php:27
msgid "hugged"
msgstr ""
#: ../../addon/morepokes/morepokes.php:28
msgid "kiss"
msgstr ""
#: ../../addon/morepokes/morepokes.php:28
msgid "kissed"
msgstr ""
#: ../../addon/morepokes/morepokes.php:29
msgid "raise eyebrows at"
msgstr ""
#: ../../addon/morepokes/morepokes.php:29
msgid "raised their eyebrows at"
msgstr ""
#: ../../addon/morepokes/morepokes.php:30
msgid "insult"
msgstr ""
#: ../../addon/morepokes/morepokes.php:30
msgid "insulted"
msgstr ""
#: ../../addon/morepokes/morepokes.php:31
msgid "praise"
msgstr ""
#: ../../addon/morepokes/morepokes.php:31
msgid "praised"
msgstr ""
#: ../../addon/morepokes/morepokes.php:32
msgid "be dubious of"
msgstr ""
#: ../../addon/morepokes/morepokes.php:32
msgid "was dubious of"
msgstr ""
#: ../../addon/morepokes/morepokes.php:33
msgid "eat"
msgstr ""
#: ../../addon/morepokes/morepokes.php:33
msgid "ate"
msgstr ""
#: ../../addon/morepokes/morepokes.php:34
msgid "giggle and fawn at"
msgstr ""
#: ../../addon/morepokes/morepokes.php:34
msgid "giggled and fawned at"
msgstr ""
#: ../../addon/morepokes/morepokes.php:35
msgid "doubt"
msgstr ""
#: ../../addon/morepokes/morepokes.php:35
msgid "doubted"
msgstr ""
#: ../../addon/morepokes/morepokes.php:36
msgid "glare"
msgstr ""
#: ../../addon/morepokes/morepokes.php:36
msgid "glared at"
msgstr ""
#: ../../addon/yourls/yourls.php:55
msgid "YourLS Settings"
msgstr "Impostazioni YourLS"
#: ../../addon/yourls/yourls.php:57
msgid "URL: http://"
msgstr "URL: http://"
#: ../../addon/yourls/yourls.php:62
msgid "Username:"
msgstr "Nome utente:"
#: ../../addon/yourls/yourls.php:67
msgid "Password:"
msgstr "Password:"
#: ../../addon/yourls/yourls.php:72
msgid "Use SSL "
msgstr "Usa SSL"
#: ../../addon/yourls/yourls.php:92
msgid "yourls Settings saved."
msgstr "Impostazioni yourls salvate."
#: ../../addon/ljpost/ljpost.php:39
msgid "Post to LiveJournal"
msgstr "Posta su LiveJournal"
#: ../../addon/ljpost/ljpost.php:70
msgid "LiveJournal Post Settings"
msgstr "Impostazioni post LiveJournal"
#: ../../addon/ljpost/ljpost.php:72
msgid "Enable LiveJournal Post Plugin"
msgstr "Abilita il plugin LiveJournal"
#: ../../addon/ljpost/ljpost.php:77
msgid "LiveJournal username"
msgstr "LiveJournal username"
#: ../../addon/ljpost/ljpost.php:82
msgid "LiveJournal password"
msgstr "LiveJournal password"
#: ../../addon/ljpost/ljpost.php:87
msgid "Post to LiveJournal by default"
msgstr "Posta su LiveJournal di default"
#: ../../addon/nsfw/nsfw.php:78
msgid "Not Safe For Work (General Purpose Content Filter) settings"
msgstr "Impostazioni per NSWF (Filtro Contenuti Generico)"
#: ../../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 "Questo plugin cerca nei messagi le parole/testo che inserisci qui sotto, e collassa i messaggi che li contengono, per non mostrare contenuto inappropriato nel momento sbagliato, come contenuto a sfondo sessuale che puo' essere inappropriato in un ambiente di lavoro. E' educato (e consigliato) taggare i messaggi che contengono nudità con #NSFW (Not Safe For Work: Non Sicuro Per il Lavoro). Questo filtro puo' cercare anche qualsiasi parola che inserisci, quindi puo' essere usato come filtro di contenuti generico."
#: ../../addon/nsfw/nsfw.php:81
msgid "Enable Content filter"
msgstr "Abilita il Filtro Contenuti"
#: ../../addon/nsfw/nsfw.php:84
msgid "Comma separated list of keywords to hide"
msgstr "Elenco separato da virgole di parole da nascondere"
#: ../../addon/nsfw/nsfw.php:89
msgid "Use /expression/ to provide regular expressions"
msgstr "Utilizza /espressione/ per inserire espressioni regolari"
#: ../../addon/nsfw/nsfw.php:105
msgid "NSFW Settings saved."
msgstr "Impostazioni NSFW salvate."
#: ../../addon/nsfw/nsfw.php:157
#, php-format
msgid "%s - Click to open/close"
msgstr "%s - Clicca per aprire / chiudere"
#: ../../addon/page/page.php:61 ../../addon/page/page.php:91
#: ../../addon/forumlist/forumlist.php:55
msgid "Forums"
msgstr "Forum"
#: ../../addon/page/page.php:129 ../../addon/forumlist/forumlist.php:89
msgid "Forums:"
msgstr ""
#: ../../addon/page/page.php:165
msgid "Page settings updated."
msgstr ""
#: ../../addon/page/page.php:194
msgid "Page Settings"
msgstr ""
#: ../../addon/page/page.php:196
msgid "How many forums to display on sidebar without paging"
msgstr ""
#: ../../addon/page/page.php:199
msgid "Randomise Page/Forum list"
msgstr ""
#: ../../addon/page/page.php:202
msgid "Show pages/forums on profile page"
msgstr ""
#: ../../addon/planets/planets.php:150
msgid "Planets Settings"
msgstr ""
#: ../../addon/planets/planets.php:152
msgid "Enable Planets Plugin"
msgstr ""
#: ../../addon/communityhome/communityhome.php:28
#: ../../addon/communityhome/communityhome.php:34
#: ../../addon/communityhome/twillingham/communityhome.php:28
#: ../../addon/communityhome/twillingham/communityhome.php:34
#: ../../include/nav.php:64 ../../boot.php:912
msgid "Login"
msgstr "Accedi"
#: ../../addon/communityhome/communityhome.php:29
#: ../../addon/communityhome/twillingham/communityhome.php:29
msgid "OpenID"
msgstr "OpenID"
#: ../../addon/communityhome/communityhome.php:38
#: ../../addon/communityhome/twillingham/communityhome.php:38
msgid "Latest users"
msgstr "Ultimi utenti"
#: ../../addon/communityhome/communityhome.php:81
#: ../../addon/communityhome/twillingham/communityhome.php:81
msgid "Most active users"
msgstr "Utenti più attivi"
#: ../../addon/communityhome/communityhome.php:98
msgid "Latest photos"
msgstr "Ultime foto"
#: ../../addon/communityhome/communityhome.php:133
msgid "Latest likes"
msgstr "Ultimi \"mi piace\""
#: ../../addon/communityhome/communityhome.php:155
#: ../../view/theme/diabook/theme.php:562 ../../include/text.php:1437
#: ../../include/conversation.php:117 ../../include/conversation.php:245
msgid "event"
msgstr "l'evento"
#: ../../addon/dav/common/wdcal_backend.inc.php:92
#: ../../addon/dav/common/wdcal_backend.inc.php:166
#: ../../addon/dav/common/wdcal_backend.inc.php:178
#: ../../addon/dav/common/wdcal_backend.inc.php:206
#: ../../addon/dav/common/wdcal_backend.inc.php:214
#: ../../addon/dav/common/wdcal_backend.inc.php:229
msgid "No access"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:30
#: ../../addon/dav/common/wdcal_edit.inc.php:738
msgid "Could not open component for editing"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:140
#: ../../addon/dav/friendica/layout.fnk.php:143
#: ../../addon/dav/friendica/layout.fnk.php:422
msgid "Go back to the calendar"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:144
msgid "Event data"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:146
#: ../../addon/dav/friendica/main.php:239
msgid "Calendar"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:163
msgid "Special color"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:169
msgid "Subject"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:173
msgid "Starts"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:178
msgid "Ends"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:185
msgid "Description"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:188
msgid "Recurrence"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:190
msgid "Frequency"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:194
#: ../../include/contact_selectors.php:59
msgid "Daily"
msgstr "Giornalmente"
#: ../../addon/dav/common/wdcal_edit.inc.php:197
#: ../../include/contact_selectors.php:60
msgid "Weekly"
msgstr "Settimanalmente"
#: ../../addon/dav/common/wdcal_edit.inc.php:200
#: ../../include/contact_selectors.php:61
msgid "Monthly"
msgstr "Mensilmente"
#: ../../addon/dav/common/wdcal_edit.inc.php:203
msgid "Yearly"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:214
#: ../../include/datetime.php:288
msgid "days"
msgstr "giorni"
#: ../../addon/dav/common/wdcal_edit.inc.php:215
#: ../../include/datetime.php:287
msgid "weeks"
msgstr "settimane"
#: ../../addon/dav/common/wdcal_edit.inc.php:216
#: ../../include/datetime.php:286
msgid "months"
msgstr "mesi"
#: ../../addon/dav/common/wdcal_edit.inc.php:217
#: ../../include/datetime.php:285
msgid "years"
msgstr "anni"
#: ../../addon/dav/common/wdcal_edit.inc.php:218
msgid "Interval"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:218
msgid "All %select% %time%"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:222
#: ../../addon/dav/common/wdcal_edit.inc.php:260
#: ../../addon/dav/common/wdcal_edit.inc.php:481
msgid "Days"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:231
#: ../../addon/dav/common/wdcal_edit.inc.php:254
#: ../../addon/dav/common/wdcal_edit.inc.php:270
#: ../../addon/dav/common/wdcal_edit.inc.php:293
#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:917
msgid "Sunday"
msgstr "Domenica"
#: ../../addon/dav/common/wdcal_edit.inc.php:235
#: ../../addon/dav/common/wdcal_edit.inc.php:274
#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:917
msgid "Monday"
msgstr "Lunedì"
#: ../../addon/dav/common/wdcal_edit.inc.php:238
#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:917
msgid "Tuesday"
msgstr "Martedì"
#: ../../addon/dav/common/wdcal_edit.inc.php:241
#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:917
msgid "Wednesday"
msgstr "Mercoledì"
#: ../../addon/dav/common/wdcal_edit.inc.php:244
#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:917
msgid "Thursday"
msgstr "Giovedì"
#: ../../addon/dav/common/wdcal_edit.inc.php:247
#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:917
msgid "Friday"
msgstr "Venerdì"
#: ../../addon/dav/common/wdcal_edit.inc.php:250
#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:917
msgid "Saturday"
msgstr "Sabato"
#: ../../addon/dav/common/wdcal_edit.inc.php:297
msgid "First day of week:"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:350
#: ../../addon/dav/common/wdcal_edit.inc.php:373
msgid "Day of month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:354
msgid "#num#th of each month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:357
msgid "#num#th-last of each month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:360
msgid "#num#th #wkday# of each month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:363
msgid "#num#th-last #wkday# of each month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:372
#: ../../addon/dav/friendica/layout.fnk.php:255
msgid "Month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:377
msgid "#num#th of the given month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:380
msgid "#num#th-last of the given month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:383
msgid "#num#th #wkday# of the given month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:386
msgid "#num#th-last #wkday# of the given month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:413
msgid "Repeat until"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:417
msgid "Infinite"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:420
msgid "Until the following date"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:423
msgid "Number of times"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:429
msgid "Exceptions"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:432
msgid "none"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:449
msgid "Notification"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:466
msgid "Notify by"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:469
msgid "E-Mail"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:470
msgid "On Friendica / Display"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:474
msgid "Time"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:478
msgid "Hours"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:479
msgid "Minutes"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:480
msgid "Seconds"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:482
msgid "Weeks"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:485
msgid "before the"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:486
msgid "start of the event"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:487
msgid "end of the event"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:492
msgid "Add a notification"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:687
msgid "The event #name# will start at #date"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:696
msgid "#name# is about to begin."
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:769
msgid "Saved"
msgstr ""
#: ../../addon/dav/common/wdcal_configuration.php:148
msgid "U.S. Time Format (mm/dd/YYYY)"
msgstr ""
#: ../../addon/dav/common/wdcal_configuration.php:243
msgid "German Time Format (dd.mm.YYYY)"
msgstr ""
#: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39
msgid "Private Events"
msgstr ""
#: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46
msgid "Private Addressbooks"
msgstr ""
#: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
msgid "Friendica-Native events"
msgstr ""
#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
msgid "Friendica-Contacts"
msgstr ""
#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
msgid "Your Friendica-Contacts"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:99
#: ../../addon/dav/friendica/layout.fnk.php:136
msgid ""
"Something went wrong when trying to import the file. Sorry. Maybe some "
"events were imported anyway."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:131
msgid "Something went wrong when trying to import the file. Sorry."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:134
msgid "The ICS-File has been imported."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:138
msgid "No file was uploaded."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:147
msgid "Import a ICS-file"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:150
msgid "ICS-File"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:151
msgid "Overwrite all #num# existing events"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:228
msgid "New event"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:232
msgid "Today"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:241
msgid "Day"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:248
msgid "Week"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:260
msgid "Reload"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:271
msgid "Date"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:313
msgid "Error"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:380
msgid "The calendar has been updated."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:393
msgid "The new calendar has been created."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:417
msgid "The calendar has been deleted."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:424
msgid "Calendar Settings"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:430
msgid "Date format"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:439
msgid "Time zone"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:445
msgid "Calendars"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:487
msgid "Create a new calendar"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:496
msgid "Limitations"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:500
#: ../../addon/libravatar/libravatar.php:82
msgid "Warning"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:504
msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:511
msgid "Synchronizing this calendar with the iPhone"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:522
msgid "Synchronizing your Friendica-Contacts with the iPhone"
msgstr ""
#: ../../addon/dav/friendica/main.php:202
msgid ""
"The current version of this plugin has not been set up correctly. Please "
"contact the system administrator of your installation of friendica to fix "
"this."
msgstr ""
#: ../../addon/dav/friendica/main.php:242
msgid "Extended calendar with CalDAV-support"
msgstr ""
#: ../../addon/dav/friendica/main.php:279
#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:464
#: ../../include/enotify.php:28 ../../include/notifier.php:710
msgid "noreply"
msgstr "nessuna risposta"
#: ../../addon/dav/friendica/main.php:282
msgid "Notification: "
msgstr ""
#: ../../addon/dav/friendica/main.php:309
msgid "The database tables have been installed."
msgstr ""
#: ../../addon/dav/friendica/main.php:310
msgid "An error occurred during the installation."
msgstr ""
#: ../../addon/dav/friendica/main.php:316
msgid "The database tables have been updated."
msgstr ""
#: ../../addon/dav/friendica/main.php:317
msgid "An error occurred during the update."
msgstr ""
#: ../../addon/dav/friendica/main.php:333
msgid "No system-wide settings yet."
msgstr ""
#: ../../addon/dav/friendica/main.php:336
msgid "Database status"
msgstr ""
#: ../../addon/dav/friendica/main.php:339
msgid "Installed"
msgstr ""
#: ../../addon/dav/friendica/main.php:343
msgid "Upgrade needed"
msgstr ""
#: ../../addon/dav/friendica/main.php:343
msgid ""
"Please back up all calendar data (the tables beginning with dav_*) before "
"proceeding. While all calendar events <i>should</i> be converted to the new "
"database structure, it's always safe to have a backup. Below, you can have a"
" look at the database-queries that will be made when pressing the "
"'update'-button."
msgstr ""
#: ../../addon/dav/friendica/main.php:343
msgid "Upgrade"
msgstr ""
#: ../../addon/dav/friendica/main.php:346
msgid "Not installed"
msgstr ""
#: ../../addon/dav/friendica/main.php:346
msgid "Install"
msgstr ""
#: ../../addon/dav/friendica/main.php:350
msgid "Unknown"
msgstr ""
#: ../../addon/dav/friendica/main.php:350
msgid ""
"Something really went wrong. I cannot recover from this state automatically,"
" sorry. Please go to the database backend, back up the data, and delete all "
"tables beginning with 'dav_' manually. Afterwards, this installation routine"
" should be able to reinitialize the tables automatically."
msgstr ""
#: ../../addon/dav/friendica/main.php:355
msgid "Troubleshooting"
msgstr ""
#: ../../addon/dav/friendica/main.php:356
msgid "Manual creation of the database tables:"
msgstr ""
#: ../../addon/dav/friendica/main.php:357
msgid "Show SQL-statements"
msgstr ""
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206
msgid "Private Calendar"
msgstr ""
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207
msgid "Friendica Events: Mine"
msgstr ""
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208
msgid "Friendica Events: Contacts"
msgstr ""
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248
msgid "Private Addresses"
msgstr ""
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249
msgid "Friendica Contacts"
msgstr ""
#: ../../addon/uhremotestorage/uhremotestorage.php:84
#, php-format
msgid ""
"Allow to use your friendica id (%s) to connecto to external unhosted-enabled"
" storage (like ownCloud). See <a "
"href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage"
" WebFinger</a>"
msgstr "Permette di usare il tuo id friendica (%s) per collegarsi a storage esterni che supportano unhosted (come ownCloud). Vedi <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"
#: ../../addon/uhremotestorage/uhremotestorage.php:85
msgid "Template URL (with {category})"
msgstr "Template URL (con {category})"
#: ../../addon/uhremotestorage/uhremotestorage.php:86
msgid "OAuth end-point"
msgstr "OAuth end-point"
#: ../../addon/uhremotestorage/uhremotestorage.php:87
msgid "Api"
msgstr "Api"
#: ../../addon/membersince/membersince.php:18
msgid "Member since:"
msgstr "Membro dal:"
#: ../../addon/tictac/tictac.php:20
msgid "Three Dimensional Tic-Tac-Toe"
@ -3944,36 +5913,29 @@ msgstr "3D Tic-Tac-Toe"
#: ../../addon/tictac/tictac.php:58
msgid "New game"
msgstr "Nuovo gioco"
msgstr "Nuova partita"
#: ../../addon/tictac/tictac.php:59
msgid "New game with handicap"
msgstr "Nuovo gioco con l'handicap"
msgstr "Nuova partita con handicap"
#: ../../addon/tictac/tictac.php:60
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 tridimensionale è come il gioco tradizionale, solo che si gioca "
"su livelli multipli contemporaneamente."
msgstr "Tic-tac-toe tridimensionale è come il gioco tradizionale, solo che si gioca su livelli multipli contemporaneamente."
#: ../../addon/tictac/tictac.php:61
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 questo caso ci sono tra livelli. Puoi vincere facendo tre caselle in fila"
" su ogni livello, anche verso l'alto, il basso e diagonalmente anche "
"attraverso i diversi livelli."
msgstr "In questo caso ci sono tre livelli. Puoi vincere mettendo tre segni in fila su ogni livello, anche verso l'alto, il basso e diagonalmente anche attraverso i diversi livelli."
#: ../../addon/tictac/tictac.php:63
msgid ""
"The handicap game disables the center position on the middle level because "
"the player claiming this square often has an unfair advantage."
msgstr ""
"L'handicap disabilita la casella centrale sul livello di mezzo, perchè il "
"giocatore che si prende quella casella spesso ha un deciso vantaggio."
msgstr "L'handicap disabilita la casella centrale sul livello di mezzo, perchè il giocatore che si prende quella casella spesso ha un deciso vantaggio."
#: ../../addon/tictac/tictac.php:182
msgid "You go first..."
@ -3995,291 +5957,120 @@ msgstr "Stallo!"
msgid "I won!"
msgstr "Ho vinto!"
#: ../../addon/uhremotestorage/uhremotestorage.php:56
#, php-format
msgid ""
"Allow to use your friendika id (%s) to connecto to external unhosted-enabled"
" storage (like ownCloud)"
msgstr ""
#: ../../addon/uhremotestorage/uhremotestorage.php:57
msgid "Unhosted DAV storage url"
msgstr ""
#: ../../addon/impressum/impressum.php:25
msgid "Impressum"
msgstr "Impressum"
#: ../../addon/impressum/impressum.php:38
#: ../../addon/impressum/impressum.php:40
#: ../../addon/impressum/impressum.php:70
msgid "Site Owner"
msgstr "Proprietario del sito"
#: ../../addon/impressum/impressum.php:38
#: ../../addon/impressum/impressum.php:74
msgid "Email Address"
msgstr "Indirizzo email"
#: ../../addon/impressum/impressum.php:43
#: ../../addon/impressum/impressum.php:72
msgid "Postal Address"
msgstr "Indirizzo"
#: ../../addon/impressum/impressum.php:49
msgid ""
"The impressum addon needs to be configured!<br />Please add at least the "
"<tt>owner</tt> variable to your config file. For other variables please "
"refer to the README file of the addon."
msgstr ""
"Il plugin Impressum deve essere configurato!<br>Aggiungi almeno il "
"Proprietario del sito."
#: ../../addon/impressum/impressum.php:71
msgid "Site Owners Profile"
msgstr "Profilo del proprietario del sito"
#: ../../addon/impressum/impressum.php:73
msgid "Notes"
msgstr "Note"
#: ../../addon/facebook/facebook.php:337
msgid "Facebook disabled"
msgstr "Facebook disabilitato"
#: ../../addon/facebook/facebook.php:342
msgid "Updating contacts"
msgstr "Aggiornamento contatti"
#: ../../addon/facebook/facebook.php:351
msgid "Facebook API key is missing."
msgstr "Chiave API Facebook mancante."
#: ../../addon/facebook/facebook.php:358
msgid "Facebook Connect"
msgstr "Facebook Connect"
#: ../../addon/facebook/facebook.php:364
msgid "Install Facebook connector for this account."
msgstr "Installa Facebook connector per questo account"
#: ../../addon/facebook/facebook.php:371
msgid "Remove Facebook connector"
msgstr "Rimuovi Facebook connector"
#: ../../addon/facebook/facebook.php:376
msgid ""
"Re-authenticate [This is necessary whenever your Facebook password is "
"changed.]"
msgstr ""
"Ri-autentica [Questo è necessario ogni volta che cambia la password di "
"Facebook.]"
#: ../../addon/facebook/facebook.php:383
msgid "Post to Facebook by default"
msgstr "Invia su Facebook di default"
#: ../../addon/facebook/facebook.php:387
msgid "Link all your Facebook friends and conversations on this website"
msgstr ""
"Collega tutti i tuoi amici di Facebook e le conversazioni su questo sito"
#: ../../addon/facebook/facebook.php:389
msgid ""
"Facebook conversations consist of your <em>profile wall</em> and your friend"
" <em>stream</em>."
msgstr ""
"Le conversazione su Facebook sono composte dai i tuoi messsaggi in bacheca e"
" dai messaggi dei tuoi amici"
#: ../../addon/facebook/facebook.php:390
msgid "On this website, your Facebook friend stream is only visible to you."
msgstr ""
"Su questo sito, i messaggi dai vostri amici su Facebook è visibile solo a "
"te."
#: ../../addon/facebook/facebook.php:391
msgid ""
"The following settings determine the privacy of your Facebook profile wall "
"on this website."
msgstr ""
"Le seguenti impostazioni determinano la privacy della vostra bacheca di "
"Facebook su questo sito."
#: ../../addon/facebook/facebook.php:395
msgid ""
"On this website your Facebook profile wall conversations will only be "
"visible to you"
msgstr ""
"Su questo sito, le conversazioni sulla tua bacheca di Facebook saranno "
"visibili solo a te"
#: ../../addon/facebook/facebook.php:400
msgid "Do not import your Facebook profile wall conversations"
msgstr "Non importare le conversazione sulla tua bacheca di Facebook"
#: ../../addon/facebook/facebook.php:402
msgid ""
"If you choose to link conversations and leave both of these boxes unchecked,"
" your Facebook profile wall will be merged with your profile wall on this "
"website and your privacy settings on this website will be used to determine "
"who may see the conversations."
msgstr ""
"Se scegli di collegare le conversazioni e lasci entrambi questi box non "
"segnati, la tua bacheca di Facebook sarà fusa con la tua bacheca su questao "
"sito, e le impostazioni di privacy su questo sito saranno usate per decidere"
" chi potrà vedere le conversazioni."
#: ../../addon/facebook/facebook.php:469
#: ../../include/contact_selectors.php:78
msgid "Facebook"
msgstr "Facebook"
#: ../../addon/facebook/facebook.php:470
msgid "Facebook Connector Settings"
msgstr "Impostazioni Connettore Facebook"
#: ../../addon/facebook/facebook.php:484
msgid "Post to Facebook"
msgstr "Invia a Facebook"
#: ../../addon/facebook/facebook.php:561
msgid ""
"Post to Facebook cancelled because of multi-network access permission "
"conflict."
msgstr "Invio su Facebook annullato per un conflitto nei permessi di accesso."
#: ../../addon/facebook/facebook.php:624
msgid "Image: "
msgstr "Immagine: "
#: ../../addon/facebook/facebook.php:700
msgid "View on Friendika"
msgstr "Vedi su Friendika"
#: ../../addon/facebook/facebook.php:724
msgid "Facebook post failed. Queued for retry."
msgstr "Invio a Facebook fallito. In attesa di riprovare."
#: ../../addon/widgets/widgets.php:55
msgid "Generate new key"
msgstr "Genera una nuova chiave"
#: ../../addon/widgets/widgets.php:58
msgid "Widgets key"
msgstr "Chiave Widget"
#: ../../addon/widgets/widgets.php:60
msgid "Widgets available"
msgstr "Widget disponibili"
#: ../../addon/widgets/widget_friends.php:40
msgid "Connect on Friendika!"
msgstr "Connettiti su Friendika!"
#: ../../addon/widgets/widget_like.php:58
#, php-format
msgid "%d person likes this"
msgid_plural "%d people like this"
msgstr[0] "piace a %d persona"
msgstr[1] "piace a %d persone"
#: ../../addon/widgets/widget_like.php:61
#, php-format
msgid "%d person doesn't like this"
msgid_plural "%d people don't like this"
msgstr[0] "non piace a %d persona"
msgstr[1] "non piace a %d persone"
#: ../../addon/buglink/buglink.php:15
msgid "Report Bug"
msgstr "Segnala un Bug"
#: ../../addon/nsfw/nsfw.php:47
msgid "\"Not Safe For Work\" Settings"
msgstr "Impostazioni \"Non sicuro per il lavoro\" (NSFW)"
#: ../../addon/nsfw/nsfw.php:49
msgid "Comma separated words to treat as NSFW"
msgstr "Lista di parole, separate da virgola, da trattare come NSFW"
#: ../../addon/nsfw/nsfw.php:66
msgid "NSFW Settings saved."
msgstr "Impostazioni NSFW salvate."
#: ../../addon/nsfw/nsfw.php:102
#, php-format
msgid "%s - Click to open/close"
msgstr "%s - Clicca per aprire / chiudere"
#: ../../addon/communityhome/communityhome.php:29
msgid "OpenID"
msgstr "OpenID"
#: ../../addon/communityhome/communityhome.php:38
msgid "Last users"
msgstr "Ultimi utenti"
#: ../../addon/communityhome/communityhome.php:81
msgid "Most active users"
msgstr "Utenti più attivi"
#: ../../addon/communityhome/communityhome.php:98
msgid "Last photos"
msgstr "Ultime foto"
#: ../../addon/communityhome/communityhome.php:133
msgid "Last likes"
msgstr "Ultimi \"mi piace\""
#: ../../addon/communityhome/communityhome.php:155
#: ../../include/conversation.php:23
msgid "event"
msgstr "l'evento"
#: ../../addon/membersince/membersince.php:17
#, php-format
msgid " - Member since: %s"
msgstr "- Iscritto dal: %s"
#: ../../addon/randplace/randplace.php:170
#: ../../addon/randplace/randplace.php:169
msgid "Randplace Settings"
msgstr "Impostazioni Randplace"
#: ../../addon/randplace/randplace.php:172
#: ../../addon/randplace/randplace.php:171
msgid "Enable Randplace Plugin"
msgstr "Abilita il plugin Randplace"
#: ../../addon/piwik/piwik.php:70
msgid ""
"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
"analytics tool."
msgstr ""
"Questo sito è monitorato con lo strumento di analisi <a "
"href='http://www.piwik.org'>Piwik</a>."
#: ../../addon/dwpost/dwpost.php:39
msgid "Post to Dreamwidth"
msgstr "Posta su Dreamwidth"
#: ../../addon/piwik/piwik.php:73
#: ../../addon/dwpost/dwpost.php:70
msgid "Dreamwidth Post Settings"
msgstr "Impostazioni post Dreamwidth"
#: ../../addon/dwpost/dwpost.php:72
msgid "Enable dreamwidth Post Plugin"
msgstr "Abilita il plugin dreamwidth"
#: ../../addon/dwpost/dwpost.php:77
msgid "dreamwidth username"
msgstr "dreamwidth username"
#: ../../addon/dwpost/dwpost.php:82
msgid "dreamwidth password"
msgstr "Password dreamwidth"
#: ../../addon/dwpost/dwpost.php:87
msgid "Post to dreamwidth by default"
msgstr "Invia a dreamwidth per impostazione predefinita"
#: ../../addon/drpost/drpost.php:35
msgid "Post to Drupal"
msgstr "Invia a Drupal"
#: ../../addon/drpost/drpost.php:72
msgid "Drupal Post Settings"
msgstr "Impostazioni invio a Drupal"
#: ../../addon/drpost/drpost.php:74
msgid "Enable Drupal Post Plugin"
msgstr "Abilita il plugin di invio a Drupal"
#: ../../addon/drpost/drpost.php:79
msgid "Drupal username"
msgstr "Drupal username"
#: ../../addon/drpost/drpost.php:84
msgid "Drupal password"
msgstr "Drupal password"
#: ../../addon/drpost/drpost.php:89
msgid "Post Type - article,page,or blog"
msgstr "Tipo di post - article,page o blog"
#: ../../addon/drpost/drpost.php:94
msgid "Drupal site URL"
msgstr "Indirizzo del sito Drupal"
#: ../../addon/drpost/drpost.php:99
msgid "Drupal site uses clean URLS"
msgstr "Il sito Drupal usa URL puliti"
#: ../../addon/drpost/drpost.php:104
msgid "Post to Drupal by default"
msgstr "Invia a Drupal per impostazione predefinita"
#: ../../addon/drpost/drpost.php:184 ../../addon/wppost/wppost.php:201
#: ../../addon/blogger/blogger.php:172 ../../addon/posterous/posterous.php:189
msgid "Post from Friendica"
msgstr "Messaggio da Friendica"
#: ../../addon/startpage/startpage.php:83
msgid "Startpage Settings"
msgstr ""
#: ../../addon/startpage/startpage.php:85
msgid "Home page to load after login - leave blank for profile wall"
msgstr ""
#: ../../addon/startpage/startpage.php:88
msgid "Examples: &quot;network&quot; or &quot;notifications/system&quot;"
msgstr ""
#: ../../addon/geonames/geonames.php:143
msgid "Geonames settings updated."
msgstr "Impostazioni di geonames aggiornate."
#: ../../addon/geonames/geonames.php:179
msgid "Geonames Settings"
msgstr "Impostazioni Geonames"
#: ../../addon/geonames/geonames.php:181
msgid "Enable Geonames Plugin"
msgstr "Abilita plugin Geonames"
#: ../../addon/public_server/public_server.php:126
#: ../../addon/testdrive/testdrive.php:94
#, php-format
msgid "Your account on %s will expire in a few days."
msgstr ""
#: ../../addon/public_server/public_server.php:127
msgid "Your Friendica account is about to expire."
msgstr ""
#: ../../addon/public_server/public_server.php:128
#, php-format
msgid ""
"If you do not want that your visits are logged this way you <a href='%s'>can"
" set a cookie to prevent Piwik from tracking further visits of the site</a> "
"(opt-out)."
"Hi %1$s,\n"
"\n"
"Your account on %2$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"
msgstr ""
"Se non vuoi che le tue visite vengono registrate in questo modo è possibile"
" <a href='%s'>impostare un cookie per evitare che Piwik rintracci ulteriori "
"visite del sito</a> (opt-out)."
#: ../../addon/piwik/piwik.php:82
msgid "Piwik Base URL"
msgstr "Piwik Base URL"
#: ../../addon/piwik/piwik.php:83
msgid "Site ID"
msgstr "Site ID"
#: ../../addon/piwik/piwik.php:84
msgid "Show opt-out cookie link?"
msgstr "Mostra il link per il cookie opt-out?"
#: ../../addon/js_upload/js_upload.php:43
msgid "Upload a file"
@ -4291,56 +6082,1202 @@ msgstr "Trascina un file qui per caricarlo"
#: ../../addon/js_upload/js_upload.php:46
msgid "Failed"
msgstr "Fallito"
msgstr "Caricamento fallito"
#: ../../addon/js_upload/js_upload.php:294
#: ../../addon/js_upload/js_upload.php:297
msgid "No files were uploaded."
msgstr "Nessun file è stato caricato."
#: ../../addon/js_upload/js_upload.php:300
#: ../../addon/js_upload/js_upload.php:303
msgid "Uploaded file is empty"
msgstr "Il file caricato è vuoto"
#: ../../addon/js_upload/js_upload.php:323
#: ../../addon/js_upload/js_upload.php:326
msgid "File has an invalid extension, it should be one of "
msgstr "Il file ha una estensione non valida, dovrebbe essere una di "
msgstr "Il file ha un'estensione non valida, dovrebbe essere una tra "
#: ../../addon/js_upload/js_upload.php:334
#: ../../addon/js_upload/js_upload.php:337
msgid "Upload was cancelled, or server error encountered"
msgstr ""
"Il caricamento è stato cancellato, o si è verificato un errore sul server"
msgstr "Il caricamento è stato cancellato, o si è verificato un errore sul server"
#: ../../addon/wppost/wppost.php:41
#: ../../addon/oembed.old/oembed.php:30
msgid "OEmbed settings updated"
msgstr "Impostazioni OEmbed aggiornate"
#: ../../addon/oembed.old/oembed.php:43
msgid "Use OEmbed for YouTube videos"
msgstr "Usa OEmbed per i video di YouTube"
#: ../../addon/oembed.old/oembed.php:71
msgid "URL to embed:"
msgstr "URL da incorporare:"
#: ../../addon/forumlist/forumlist.php:58
msgid "show/hide"
msgstr ""
#: ../../addon/forumlist/forumlist.php:72
msgid "No forum subscriptions"
msgstr ""
#: ../../addon/forumlist/forumlist.php:125
msgid "Forumlist settings updated."
msgstr ""
#: ../../addon/forumlist/forumlist.php:150
msgid "Forumlist Settings"
msgstr ""
#: ../../addon/forumlist/forumlist.php:152
msgid "Randomise forum list"
msgstr ""
#: ../../addon/forumlist/forumlist.php:155
msgid "Show forums on profile page"
msgstr ""
#: ../../addon/impressum/impressum.php:37
msgid "Impressum"
msgstr "Impressum"
#: ../../addon/impressum/impressum.php:50
#: ../../addon/impressum/impressum.php:52
#: ../../addon/impressum/impressum.php:84
msgid "Site Owner"
msgstr "Proprietario del sito"
#: ../../addon/impressum/impressum.php:50
#: ../../addon/impressum/impressum.php:88
msgid "Email Address"
msgstr "Indirizzo email"
#: ../../addon/impressum/impressum.php:55
#: ../../addon/impressum/impressum.php:86
msgid "Postal Address"
msgstr "Indirizzo"
#: ../../addon/impressum/impressum.php:61
msgid ""
"The impressum addon needs to be configured!<br />Please add at least the "
"<tt>owner</tt> variable to your config file. For other variables please "
"refer to the README file of the addon."
msgstr "Il plugin Impressum deve essere configurato!<br>Aggiungi almeno il Proprietario del sito."
#: ../../addon/impressum/impressum.php:84
msgid "The page operators name."
msgstr "Nome del gestore della pagina."
#: ../../addon/impressum/impressum.php:85
msgid "Site Owners Profile"
msgstr "Profilo del proprietario del sito"
#: ../../addon/impressum/impressum.php:85
msgid "Profile address of the operator."
msgstr "Indirizzo del profilo del gestore della pagina"
#: ../../addon/impressum/impressum.php:86
msgid "How to contact the operator via snail mail. You can use BBCode here."
msgstr ""
#: ../../addon/impressum/impressum.php:87
msgid "Notes"
msgstr "Note"
#: ../../addon/impressum/impressum.php:87
msgid ""
"Additional notes that are displayed beneath the contact information. You can"
" use BBCode here."
msgstr ""
#: ../../addon/impressum/impressum.php:88
msgid "How to contact the operator via email. (will be displayed obfuscated)"
msgstr ""
#: ../../addon/impressum/impressum.php:89
msgid "Footer note"
msgstr "Footer delle note"
#: ../../addon/impressum/impressum.php:89
msgid "Text for the footer. You can use BBCode here."
msgstr ""
#: ../../addon/buglink/buglink.php:15
msgid "Report Bug"
msgstr "Segnala un Bug"
#: ../../addon/notimeline/notimeline.php:32
msgid "No Timeline settings updated."
msgstr ""
#: ../../addon/notimeline/notimeline.php:56
msgid "No Timeline Settings"
msgstr ""
#: ../../addon/notimeline/notimeline.php:58
msgid "Disable Archive selector on profile wall"
msgstr ""
#: ../../addon/blockem/blockem.php:51
msgid "\"Blockem\" Settings"
msgstr "Impostazioni \"Blockem\""
#: ../../addon/blockem/blockem.php:53
msgid "Comma separated profile URLS to block"
msgstr "Lista, separata da virgola, di indirizzi da bloccare"
#: ../../addon/blockem/blockem.php:70
msgid "BLOCKEM Settings saved."
msgstr "Impostazioni salvate."
#: ../../addon/blockem/blockem.php:105
#, php-format
msgid "Blocked %s - Click to open/close"
msgstr "%s bloccato - Clicca per aprire/chiudere"
#: ../../addon/blockem/blockem.php:160
msgid "Unblock Author"
msgstr "Sblocca autore"
#: ../../addon/blockem/blockem.php:162
msgid "Block Author"
msgstr "Blocca autore"
#: ../../addon/blockem/blockem.php:194
msgid "blockem settings updated"
msgstr "Impostazioni 'blockem' aggiornate."
#: ../../addon/qcomment/qcomment.php:51
msgid ":-)"
msgstr ":-)"
#: ../../addon/qcomment/qcomment.php:51
msgid ":-("
msgstr ":-("
#: ../../addon/qcomment/qcomment.php:51
msgid "lol"
msgstr "lol"
#: ../../addon/qcomment/qcomment.php:54
msgid "Quick Comment Settings"
msgstr "Impostazioni commento rapido"
#: ../../addon/qcomment/qcomment.php:56
msgid ""
"Quick comments are found near comment boxes, sometimes hidden. Click them to"
" provide simple replies."
msgstr "Trovi i commenti rapidi vicino al box dei commenti, a volte nascosti. Cliccali per inviare semplici risposte."
#: ../../addon/qcomment/qcomment.php:57
msgid "Enter quick comments, one per line"
msgstr "Inserire un commento rapido, uno per linea"
#: ../../addon/qcomment/qcomment.php:75
msgid "Quick Comment settings saved."
msgstr "Impostazioni commento rapido salvate."
#: ../../addon/openstreetmap/openstreetmap.php:71
msgid "Tile Server URL"
msgstr ""
#: ../../addon/openstreetmap/openstreetmap.php:71
msgid ""
"A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" "
"target=\"_blank\">public tile servers</a>"
msgstr ""
#: ../../addon/openstreetmap/openstreetmap.php:72
msgid "Default zoom"
msgstr "Default zoom"
#: ../../addon/openstreetmap/openstreetmap.php:72
msgid "The default zoom level. (1:world, 18:highest)"
msgstr ""
#: ../../addon/group_text/group_text.php:46
#: ../../addon/editplain/editplain.php:46
msgid "Editplain settings updated."
msgstr "Impostazioni 'Editplain' aggiornate."
#: ../../addon/group_text/group_text.php:76
msgid "Group Text"
msgstr ""
#: ../../addon/group_text/group_text.php:78
msgid "Use a text only (non-image) group selector in the \"group edit\" menu"
msgstr ""
#: ../../addon/libravatar/libravatar.php:14
msgid "Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"
msgstr ""
#: ../../addon/libravatar/libravatar.php:73
#: ../../addon/gravatar/gravatar.php:71
msgid "generic profile image"
msgstr "immagine generica del profilo"
#: ../../addon/libravatar/libravatar.php:74
#: ../../addon/gravatar/gravatar.php:72
msgid "random geometric pattern"
msgstr ""
#: ../../addon/libravatar/libravatar.php:75
#: ../../addon/gravatar/gravatar.php:73
msgid "monster face"
msgstr ""
#: ../../addon/libravatar/libravatar.php:76
#: ../../addon/gravatar/gravatar.php:74
msgid "computer generated face"
msgstr ""
#: ../../addon/libravatar/libravatar.php:77
#: ../../addon/gravatar/gravatar.php:75
msgid "retro arcade style face"
msgstr ""
#: ../../addon/libravatar/libravatar.php:83
#, php-format
msgid "Your PHP version %s is lower than the required PHP >= 5.3."
msgstr ""
#: ../../addon/libravatar/libravatar.php:84
msgid "This addon is not functional on your server."
msgstr ""
#: ../../addon/libravatar/libravatar.php:93
#: ../../addon/gravatar/gravatar.php:89
msgid "Information"
msgstr ""
#: ../../addon/libravatar/libravatar.php:93
msgid ""
"Gravatar addon is installed. Please disable the Gravatar addon.<br>The "
"Libravatar addon will fall back to Gravatar if nothing was found at "
"Libravatar."
msgstr ""
#: ../../addon/libravatar/libravatar.php:100
#: ../../addon/gravatar/gravatar.php:96
msgid "Default avatar image"
msgstr ""
#: ../../addon/libravatar/libravatar.php:100
msgid "Select default avatar image if none was found. See README"
msgstr ""
#: ../../addon/libravatar/libravatar.php:112
msgid "Libravatar settings updated."
msgstr ""
#: ../../addon/libertree/libertree.php:36
msgid "Post to libertree"
msgstr ""
#: ../../addon/libertree/libertree.php:67
msgid "libertree Post Settings"
msgstr ""
#: ../../addon/libertree/libertree.php:69
msgid "Enable Libertree Post Plugin"
msgstr ""
#: ../../addon/libertree/libertree.php:74
msgid "Libertree API token"
msgstr ""
#: ../../addon/libertree/libertree.php:79
msgid "Libertree site URL"
msgstr ""
#: ../../addon/libertree/libertree.php:84
msgid "Post to Libertree by default"
msgstr ""
#: ../../addon/altpager/altpager.php:46
msgid "Altpager settings updated."
msgstr ""
#: ../../addon/altpager/altpager.php:79
msgid "Alternate Pagination Setting"
msgstr ""
#: ../../addon/altpager/altpager.php:81
msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?"
msgstr ""
#: ../../addon/mathjax/mathjax.php:37
msgid ""
"The MathJax addon renders mathematical formulae written using the LaTeX "
"syntax surrounded by the usual $$ or an eqnarray block in the postings of "
"your wall,network tab and private mail."
msgstr ""
#: ../../addon/mathjax/mathjax.php:38
msgid "Use the MathJax renderer"
msgstr ""
#: ../../addon/mathjax/mathjax.php:74
msgid "MathJax Base URL"
msgstr ""
#: ../../addon/mathjax/mathjax.php:74
msgid ""
"The URL for the javascript file that should be included to use MathJax. Can "
"be either the MathJax CDN or another installation of MathJax."
msgstr ""
#: ../../addon/editplain/editplain.php:76
msgid "Editplain Settings"
msgstr "Impostazioni Editplain"
#: ../../addon/editplain/editplain.php:78
msgid "Disable richtext status editor"
msgstr "Disabilita l'editor di testo visuale"
#: ../../addon/gravatar/gravatar.php:89
msgid ""
"Libravatar addon is installed, too. Please disable Libravatar addon or this "
"Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if "
"nothing was found at Libravatar."
msgstr ""
#: ../../addon/gravatar/gravatar.php:96
msgid "Select default avatar image if none was found at Gravatar. See README"
msgstr ""
#: ../../addon/gravatar/gravatar.php:97
msgid "Rating of images"
msgstr ""
#: ../../addon/gravatar/gravatar.php:97
msgid "Select the appropriate avatar rating for your site. See README"
msgstr ""
#: ../../addon/gravatar/gravatar.php:111
msgid "Gravatar settings updated."
msgstr ""
#: ../../addon/testdrive/testdrive.php:95
msgid "Your Friendica test account is about to expire."
msgstr ""
#: ../../addon/testdrive/testdrive.php:96
#, php-format
msgid ""
"Hi %1$s,\n"
"\n"
"Your test account on %2$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."
msgstr ""
#: ../../addon/pageheader/pageheader.php:50
msgid "\"pageheader\" Settings"
msgstr "Impostazioni \"pageheader\""
#: ../../addon/pageheader/pageheader.php:68
msgid "pageheader Settings saved."
msgstr "Impostazioni salvate."
#: ../../addon/ijpost/ijpost.php:39
msgid "Post to Insanejournal"
msgstr ""
#: ../../addon/ijpost/ijpost.php:70
msgid "InsaneJournal Post Settings"
msgstr ""
#: ../../addon/ijpost/ijpost.php:72
msgid "Enable InsaneJournal Post Plugin"
msgstr ""
#: ../../addon/ijpost/ijpost.php:77
msgid "InsaneJournal username"
msgstr ""
#: ../../addon/ijpost/ijpost.php:82
msgid "InsaneJournal password"
msgstr ""
#: ../../addon/ijpost/ijpost.php:87
msgid "Post to InsaneJournal by default"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:266
msgid "Jappix Mini addon settings"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:268
msgid "Activate addon"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:271
msgid ""
"Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:274
msgid "Jabber username"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:277
msgid "Jabber server"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:281
msgid "Jabber BOSH host"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:285
msgid "Jabber password"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:290
msgid "Encrypt Jabber password with Friendica password (recommended)"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:293
msgid "Friendica password"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:296
msgid "Approve subscription requests from Friendica contacts automatically"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:299
msgid "Subscribe to Friendica contacts automatically"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:302
msgid "Purge internal list of jabber addresses of contacts"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:308
msgid "Add contact"
msgstr ""
#: ../../addon/viewsrc/viewsrc.php:37
msgid "View Source"
msgstr "Vedi sorgente"
#: ../../addon/statusnet/statusnet.php:134
msgid "Post to StatusNet"
msgstr "Invia a StatusNet"
#: ../../addon/statusnet/statusnet.php:176
msgid ""
"Please contact your site administrator.<br />The provided API URL is not "
"valid."
msgstr "Contatta l'amministratore del sito.<br/>L'URL delle API fornito non è valido."
#: ../../addon/statusnet/statusnet.php:204
msgid "We could not contact the StatusNet API with the Path you entered."
msgstr "Non possiamo conttattare le API di StatusNet con il percorso che hai inserito."
#: ../../addon/statusnet/statusnet.php:232
msgid "StatusNet settings updated."
msgstr "Impostazioni StatusNet aggiornate."
#: ../../addon/statusnet/statusnet.php:257
msgid "StatusNet Posting Settings"
msgstr "Impostazioni di invio a StatusNet"
#: ../../addon/statusnet/statusnet.php:271
msgid "Globally Available StatusNet OAuthKeys"
msgstr "OAuthKeys globali di StatusNet"
#: ../../addon/statusnet/statusnet.php:272
msgid ""
"There are preconfigured OAuth key pairs for some StatusNet servers "
"available. If you are useing one of them, please use these credentials. If "
"not feel free to connect to any other StatusNet instance (see below)."
msgstr "Esistono coppie di chiavi OAuth precofigurate per alcuni server StatusNet. Se usi uno di questi server, per favore scegli queste credenziali. Altrimenti sei libero di collegarti a un'altra installazione di StatusNet (vedi sotto)."
#: ../../addon/statusnet/statusnet.php:280
msgid "Provide your own OAuth Credentials"
msgstr "Fornisci le tue credenziali OAuth"
#: ../../addon/statusnet/statusnet.php:281
msgid ""
"No consumer key pair for StatusNet found. Register your Friendica Account as"
" an desktop client on your StatusNet account, copy the consumer key pair "
"here and enter the API base root.<br />Before you register your own OAuth "
"key pair ask the administrator if there is already a key pair for this "
"Friendica installation at your favorited StatusNet installation."
msgstr "Nessuna coppia di chiavi consumer trovate per StatusNet. Registra il tuo account Friendica come un client desktop nel tuo account StatusNet, copia la coppia di chiavi consumer qui e inserisci l'url base delle API.<br/>Prima di registrare la tua coppia di chiavi OAuth, chiedi all'amministratore se esiste già una coppia di chiavi per questo sito Friendica presso la tua installazione StatusNet preferita."
#: ../../addon/statusnet/statusnet.php:283
msgid "OAuth Consumer Key"
msgstr "OAuth Consumer Key"
#: ../../addon/statusnet/statusnet.php:286
msgid "OAuth Consumer Secret"
msgstr "OAuth Consumer Secret"
#: ../../addon/statusnet/statusnet.php:289
msgid "Base API Path (remember the trailing /)"
msgstr "Indirizzo di base per le API (ricorda la / alla fine)"
#: ../../addon/statusnet/statusnet.php:310
msgid ""
"To connect to your StatusNet account click the button below to get a "
"security code from StatusNet which you have to copy into the input box below"
" and submit the form. Only your <strong>public</strong> posts will be posted"
" to StatusNet."
msgstr "Per collegare il tuo account StatusNet, clicca sul bottone per ottenere un codice di sicurezza da StatusNet, che dovrai copiare nel box sottostante e poi inviare la form. Solo i tuoi messaggi <strong>pubblici</strong> saranno inviati a StatusNet."
#: ../../addon/statusnet/statusnet.php:311
msgid "Log in with StatusNet"
msgstr "Accedi con StatuNet"
#: ../../addon/statusnet/statusnet.php:313
msgid "Copy the security code from StatusNet here"
msgstr "Copia il codice di sicurezza da StatusNet qui"
#: ../../addon/statusnet/statusnet.php:319
msgid "Cancel Connection Process"
msgstr "Annulla il processo di connessione"
#: ../../addon/statusnet/statusnet.php:321
msgid "Current StatusNet API is"
msgstr "Le API StatusNet correnti sono"
#: ../../addon/statusnet/statusnet.php:322
msgid "Cancel StatusNet Connection"
msgstr "Annulla la connessione a StatusNet"
#: ../../addon/statusnet/statusnet.php:333 ../../addon/twitter/twitter.php:189
msgid "Currently connected to: "
msgstr "Al momento connesso con:"
#: ../../addon/statusnet/statusnet.php:334
msgid ""
"If enabled all your <strong>public</strong> postings can be posted to the "
"associated StatusNet account. You can choose to do so by default (here) or "
"for every posting separately in the posting options when writing the entry."
msgstr "Se abilitato tutti i tuoi messaggi <strong>pubblici</strong> possono essere inviati all'account StatusNet associato. Puoi scegliere di farlo sempre (qui) o ogni volta che invii, nelle impostazioni di privacy del messaggio."
#: ../../addon/statusnet/statusnet.php:336
msgid ""
"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
"details from unknown viewers?</em>) the link potentially included in public "
"postings relayed to StatusNet 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:339
msgid "Allow posting to StatusNet"
msgstr "Permetti l'invio a StatusNet"
#: ../../addon/statusnet/statusnet.php:342
msgid "Send public postings to StatusNet by default"
msgstr "Invia sempre i messaggi pubblici a StatusNet"
#: ../../addon/statusnet/statusnet.php:345
msgid "Send linked #-tags and @-names to StatusNet"
msgstr ""
#: ../../addon/statusnet/statusnet.php:350 ../../addon/twitter/twitter.php:206
msgid "Clear OAuth configuration"
msgstr "Rimuovi la configurazione OAuth"
#: ../../addon/statusnet/statusnet.php:568
msgid "API URL"
msgstr "API URL"
#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
msgid "Infinite Improbability Drive"
msgstr ""
#: ../../addon/tumblr/tumblr.php:36
msgid "Post to Tumblr"
msgstr "Pubblica su Tumblr"
#: ../../addon/tumblr/tumblr.php:67
msgid "Tumblr Post Settings"
msgstr "Impostazioni di invio a Tumblr"
#: ../../addon/tumblr/tumblr.php:69
msgid "Enable Tumblr Post Plugin"
msgstr "Abilita Plugin Tumblr"
#: ../../addon/tumblr/tumblr.php:74
msgid "Tumblr login"
msgstr "Tumblr login"
#: ../../addon/tumblr/tumblr.php:79
msgid "Tumblr password"
msgstr "Tumblr password"
#: ../../addon/tumblr/tumblr.php:84
msgid "Post to Tumblr by default"
msgstr "Pubblica su Tumblr di default"
#: ../../addon/numfriends/numfriends.php:46
msgid "Numfriends settings updated."
msgstr "Impostazioni \"Numfriends' aggiornate."
#: ../../addon/numfriends/numfriends.php:77
msgid "Numfriends Settings"
msgstr "Impostazioni Numfriends"
#: ../../addon/gnot/gnot.php:48
msgid "Gnot settings updated."
msgstr "Impostazioni di \"Gnot\" aggiornate."
#: ../../addon/gnot/gnot.php:79
msgid "Gnot Settings"
msgstr "Impostazioni Gnot"
#: ../../addon/gnot/gnot.php:81
msgid ""
"Allows threading of email comment notifications on Gmail and anonymising the"
" subject line."
msgstr "Permetti di raggruppare le notifiche dei commenti in thread su Gmail e anonimizza l'oggetto"
#: ../../addon/gnot/gnot.php:82
msgid "Enable this plugin/addon?"
msgstr "Abilita questo plugin?"
#: ../../addon/gnot/gnot.php:97
#, php-format
msgid "[Friendica:Notify] Comment to conversation #%d"
msgstr "[Friendica:Notifica] Commento alla conversazione #%d"
#: ../../addon/wppost/wppost.php:42
msgid "Post to Wordpress"
msgstr "Pubblica su Wordpress"
#: ../../addon/wppost/wppost.php:73
#: ../../addon/wppost/wppost.php:76
msgid "WordPress Post Settings"
msgstr "Impostazioni invio a WordPress"
#: ../../addon/wppost/wppost.php:75
#: ../../addon/wppost/wppost.php:78
msgid "Enable WordPress Post Plugin"
msgstr "Abilita plugin \"invia a WordPress\""
#: ../../addon/wppost/wppost.php:80
#: ../../addon/wppost/wppost.php:83
msgid "WordPress username"
msgstr "nome utente WordPress"
#: ../../addon/wppost/wppost.php:85
#: ../../addon/wppost/wppost.php:88
msgid "WordPress password"
msgstr "password WordPress"
#: ../../addon/wppost/wppost.php:90
#: ../../addon/wppost/wppost.php:93
msgid "WordPress API URL"
msgstr "WordPress API URL"
#: ../../addon/wppost/wppost.php:95
#: ../../addon/wppost/wppost.php:98
msgid "Post to WordPress by default"
msgstr "Pubblica su WordPress di default"
#: ../../include/notifier.php:616 ../../include/delivery.php:415
msgid "(no subject)"
msgstr "(nessun oggetto)"
#: ../../addon/wppost/wppost.php:103
msgid "Provide a backlink to the Friendica post"
msgstr ""
#: ../../addon/wppost/wppost.php:207
msgid "Read the original post and comment stream on Friendica"
msgstr ""
#: ../../addon/showmore/showmore.php:38
msgid "\"Show more\" Settings"
msgstr "Impostazioni \"Mostra altro\""
#: ../../addon/showmore/showmore.php:41
msgid "Enable Show More"
msgstr "Abilita \"Mostra altro\""
#: ../../addon/showmore/showmore.php:44
msgid "Cutting posts after how much characters"
msgstr ""
#: ../../addon/showmore/showmore.php:65
msgid "Show More Settings saved."
msgstr "Impostazioni \"Mostra altro\" salvate."
#: ../../addon/piwik/piwik.php:79
msgid ""
"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
"analytics tool."
msgstr "Questo sito è monitorato con lo strumento di analisi <a href='http://www.piwik.org'>Piwik</a>."
#: ../../addon/piwik/piwik.php:82
#, php-format
msgid ""
"If you do not want that your visits are logged this way you <a href='%s'>can"
" set a cookie to prevent Piwik from tracking further visits of the site</a> "
"(opt-out)."
msgstr "Se non vuoi che le tue visite vengono registrate in questo modo è possibile <a href='%s'>impostare un cookie per evitare che Piwik rintracci ulteriori visite del sito</a> (opt-out)."
#: ../../addon/piwik/piwik.php:90
msgid "Piwik Base URL"
msgstr "Piwik Base URL"
#: ../../addon/piwik/piwik.php:90
msgid ""
"Absolute path to your Piwik installation. (without protocol (http/s), with "
"trailing slash)"
msgstr ""
#: ../../addon/piwik/piwik.php:91
msgid "Site ID"
msgstr "Site ID"
#: ../../addon/piwik/piwik.php:92
msgid "Show opt-out cookie link?"
msgstr "Mostra il link per il cookie opt-out?"
#: ../../addon/piwik/piwik.php:93
msgid "Asynchronous tracking"
msgstr ""
#: ../../addon/twitter/twitter.php:73
msgid "Post to Twitter"
msgstr "Invia a Twitter"
#: ../../addon/twitter/twitter.php:122
msgid "Twitter settings updated."
msgstr "Impostazioni di Twitter aggiornate."
#: ../../addon/twitter/twitter.php:146
msgid "Twitter Posting Settings"
msgstr "Impostazioni di invio a Twitter"
#: ../../addon/twitter/twitter.php:153
msgid ""
"No consumer key pair for Twitter found. Please contact your site "
"administrator."
msgstr "Nessuna coppia di chiavi per Twitter trovata. Contatta l'amministratore del sito."
#: ../../addon/twitter/twitter.php:172
msgid ""
"At this Friendica 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 <strong>public</strong> posts will"
" be posted to Twitter."
msgstr "Il plugin Twitter è abilitato ma non hai ancora collegato i tuoi account Friendica e Twitter. Per farlo, clicca il bottone qui sotto per ricevere un PIN da Twitter che dovrai copiare nel campo qui sotto. Solo i tuoi post <strong>pubblici</strong> saranno inviati a Twitter."
#: ../../addon/twitter/twitter.php:173
msgid "Log in with Twitter"
msgstr "Accedi con Twitter"
#: ../../addon/twitter/twitter.php:175
msgid "Copy the PIN from Twitter here"
msgstr "Copia il PIN da Twitter qui"
#: ../../addon/twitter/twitter.php:190
msgid ""
"If enabled all your <strong>public</strong> postings can be posted to the "
"associated Twitter account. You can choose to do so by default (here) or for"
" every posting separately in the posting options when writing the entry."
msgstr "Se abilitato tutti i tuoi messaggi <strong>pubblici</strong> possono essere inviati all'account Twitter associato. Puoi scegliere di farlo sempre (qui) o ogni volta che invii, nelle impostazioni di privacy del messaggio."
#: ../../addon/twitter/twitter.php:192
msgid ""
"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
"details from unknown viewers?</em>) 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:195
msgid "Allow posting to Twitter"
msgstr "Permetti l'invio a Twitter"
#: ../../addon/twitter/twitter.php:198
msgid "Send public postings to Twitter by default"
msgstr "Invia sempre i messaggi pubblici a Twitter"
#: ../../addon/twitter/twitter.php:201
msgid "Send linked #-tags and @-names to Twitter"
msgstr ""
#: ../../addon/twitter/twitter.php:396
msgid "Consumer key"
msgstr "Consumer key"
#: ../../addon/twitter/twitter.php:397
msgid "Consumer secret"
msgstr "Consumer secret"
#: ../../addon/irc/irc.php:44
msgid "IRC Settings"
msgstr "Impostazioni IRC"
#: ../../addon/irc/irc.php:46
msgid "Channel(s) to auto connect (comma separated)"
msgstr "Canali a cui autocollegarsi (separati da virgola)"
#: ../../addon/irc/irc.php:51
msgid "Popular Channels (comma separated)"
msgstr "Canali popolari (separati da virgola)"
#: ../../addon/irc/irc.php:69
msgid "IRC settings saved."
msgstr "Impostazioni IRC salvate."
#: ../../addon/irc/irc.php:74
msgid "IRC Chatroom"
msgstr "Stanza IRC"
#: ../../addon/irc/irc.php:96
msgid "Popular Channels"
msgstr "Canali Popolari"
#: ../../addon/fromapp/fromapp.php:38
msgid "Fromapp settings updated."
msgstr ""
#: ../../addon/fromapp/fromapp.php:64
msgid "FromApp Settings"
msgstr ""
#: ../../addon/fromapp/fromapp.php:66
msgid ""
"The application name you would like to show your posts originating from."
msgstr ""
#: ../../addon/fromapp/fromapp.php:70
msgid "Use this application name even if another application was used."
msgstr ""
#: ../../addon/blogger/blogger.php:42
msgid "Post to blogger"
msgstr "Posta su blogger"
#: ../../addon/blogger/blogger.php:74
msgid "Blogger Post Settings"
msgstr "Impostazioni post per blogger"
#: ../../addon/blogger/blogger.php:76
msgid "Enable Blogger Post Plugin"
msgstr "Abilita il plugin Blogger"
#: ../../addon/blogger/blogger.php:81
msgid "Blogger username"
msgstr "Blogger username"
#: ../../addon/blogger/blogger.php:86
msgid "Blogger password"
msgstr "Blogger password"
#: ../../addon/blogger/blogger.php:91
msgid "Blogger API URL"
msgstr "Blogger API URL"
#: ../../addon/blogger/blogger.php:96
msgid "Post to Blogger by default"
msgstr ""
#: ../../addon/posterous/posterous.php:37
msgid "Post to Posterous"
msgstr "Invia a Posterous"
#: ../../addon/posterous/posterous.php:70
msgid "Posterous Post Settings"
msgstr "Impostazioni di invio a Posterous"
#: ../../addon/posterous/posterous.php:72
msgid "Enable Posterous Post Plugin"
msgstr "Abilita il plugin di invio a Posterous"
#: ../../addon/posterous/posterous.php:77
msgid "Posterous login"
msgstr "Posterous login"
#: ../../addon/posterous/posterous.php:82
msgid "Posterous password"
msgstr "Posterous password"
#: ../../addon/posterous/posterous.php:87
msgid "Posterous site ID"
msgstr ""
#: ../../addon/posterous/posterous.php:92
msgid "Posterous API token"
msgstr ""
#: ../../addon/posterous/posterous.php:97
msgid "Post to Posterous by default"
msgstr "Invia sempre a Posterous"
#: ../../view/theme/cleanzero/config.php:82
#: ../../view/theme/diabook/config.php:192
#: ../../view/theme/quattro/config.php:55 ../../view/theme/dispy/config.php:72
msgid "Theme settings"
msgstr "Impostazioni tema"
#: ../../view/theme/cleanzero/config.php:83
msgid "Set resize level for images in posts and comments (width and height)"
msgstr ""
#: ../../view/theme/cleanzero/config.php:84
#: ../../view/theme/diabook/config.php:193
#: ../../view/theme/dispy/config.php:73
msgid "Set font-size for posts and comments"
msgstr ""
#: ../../view/theme/cleanzero/config.php:85
msgid "Set theme width"
msgstr ""
#: ../../view/theme/cleanzero/config.php:86
#: ../../view/theme/quattro/config.php:57
msgid "Color scheme"
msgstr "Schema colori"
#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:49
#: ../../include/nav.php:115
msgid "Your posts and conversations"
msgstr "I tuoi messaggi e le tue conversazioni"
#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:50
msgid "Your profile page"
msgstr "Pagina del tuo profilo"
#: ../../view/theme/diabook/theme.php:129
msgid "Your contacts"
msgstr ""
#: ../../view/theme/diabook/theme.php:130 ../../include/nav.php:51
msgid "Your photos"
msgstr "Le tue foto"
#: ../../view/theme/diabook/theme.php:131 ../../include/nav.php:52
msgid "Your events"
msgstr "I tuoi eventi"
#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53
msgid "Personal notes"
msgstr "Note personali"
#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53
msgid "Your personal photos"
msgstr "Le tue foto personali"
#: ../../view/theme/diabook/theme.php:134
#: ../../view/theme/diabook/theme.php:643
#: ../../view/theme/diabook/theme.php:747
#: ../../view/theme/diabook/config.php:201
msgid "Community Pages"
msgstr ""
#: ../../view/theme/diabook/theme.php:490
#: ../../view/theme/diabook/theme.php:749
#: ../../view/theme/diabook/config.php:203
msgid "Community Profiles"
msgstr ""
#: ../../view/theme/diabook/theme.php:511
#: ../../view/theme/diabook/theme.php:754
#: ../../view/theme/diabook/config.php:208
msgid "Last users"
msgstr "Ultimi utenti"
#: ../../view/theme/diabook/theme.php:540
#: ../../view/theme/diabook/theme.php:756
#: ../../view/theme/diabook/config.php:210
msgid "Last likes"
msgstr "Ultimi \"mi piace\""
#: ../../view/theme/diabook/theme.php:585
#: ../../view/theme/diabook/theme.php:755
#: ../../view/theme/diabook/config.php:209
msgid "Last photos"
msgstr "Ultime foto"
#: ../../view/theme/diabook/theme.php:622
#: ../../view/theme/diabook/theme.php:752
#: ../../view/theme/diabook/config.php:206
msgid "Find Friends"
msgstr "Trova Amici"
#: ../../view/theme/diabook/theme.php:623
msgid "Local Directory"
msgstr "Elenco Locale"
#: ../../view/theme/diabook/theme.php:625 ../../include/contact_widgets.php:35
msgid "Similar Interests"
msgstr "Interessi simili"
#: ../../view/theme/diabook/theme.php:627 ../../include/contact_widgets.php:37
msgid "Invite Friends"
msgstr "Invita amici"
#: ../../view/theme/diabook/theme.php:678
#: ../../view/theme/diabook/theme.php:748
#: ../../view/theme/diabook/config.php:202
msgid "Earth Layers"
msgstr ""
#: ../../view/theme/diabook/theme.php:683
msgid "Set zoomfactor for Earth Layers"
msgstr ""
#: ../../view/theme/diabook/theme.php:684
#: ../../view/theme/diabook/config.php:199
msgid "Set longitude (X) for Earth Layers"
msgstr ""
#: ../../view/theme/diabook/theme.php:685
#: ../../view/theme/diabook/config.php:200
msgid "Set latitude (Y) for Earth Layers"
msgstr ""
#: ../../view/theme/diabook/theme.php:698
#: ../../view/theme/diabook/theme.php:750
#: ../../view/theme/diabook/config.php:204
msgid "Help or @NewHere ?"
msgstr "Serve aiuto? Sei nuovo?"
#: ../../view/theme/diabook/theme.php:705
#: ../../view/theme/diabook/theme.php:751
#: ../../view/theme/diabook/config.php:205
msgid "Connect Services"
msgstr "Servizi di conessione"
#: ../../view/theme/diabook/theme.php:712
#: ../../view/theme/diabook/theme.php:753
msgid "Last Tweets"
msgstr ""
#: ../../view/theme/diabook/theme.php:715
#: ../../view/theme/diabook/config.php:197
msgid "Set twitter search term"
msgstr ""
#: ../../view/theme/diabook/theme.php:735
#: ../../view/theme/diabook/theme.php:736
#: ../../view/theme/diabook/theme.php:737
#: ../../view/theme/diabook/theme.php:738
#: ../../view/theme/diabook/theme.php:739
#: ../../view/theme/diabook/theme.php:740
#: ../../view/theme/diabook/theme.php:741
#: ../../view/theme/diabook/theme.php:742
#: ../../view/theme/diabook/theme.php:743
#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:288
msgid "don't show"
msgstr "non mostrare"
#: ../../view/theme/diabook/theme.php:735
#: ../../view/theme/diabook/theme.php:736
#: ../../view/theme/diabook/theme.php:737
#: ../../view/theme/diabook/theme.php:738
#: ../../view/theme/diabook/theme.php:739
#: ../../view/theme/diabook/theme.php:740
#: ../../view/theme/diabook/theme.php:741
#: ../../view/theme/diabook/theme.php:742
#: ../../view/theme/diabook/theme.php:743
#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:287
msgid "show"
msgstr "mostra"
#: ../../view/theme/diabook/theme.php:745
msgid "Show/hide boxes at right-hand column:"
msgstr ""
#: ../../view/theme/diabook/config.php:194
#: ../../view/theme/dispy/config.php:74
msgid "Set line-height for posts and comments"
msgstr ""
#: ../../view/theme/diabook/config.php:195
msgid "Set resolution for middle column"
msgstr ""
#: ../../view/theme/diabook/config.php:196
msgid "Set color scheme"
msgstr ""
#: ../../view/theme/diabook/config.php:198
msgid "Set zoomfactor for Earth Layer"
msgstr ""
#: ../../view/theme/diabook/config.php:207
msgid "Last tweets"
msgstr ""
#: ../../view/theme/quattro/config.php:56
msgid "Alignment"
msgstr "Allineamento"
#: ../../view/theme/quattro/config.php:56
msgid "Left"
msgstr "Sinistra"
#: ../../view/theme/quattro/config.php:56
msgid "Center"
msgstr "Centrato"
#: ../../view/theme/dispy/config.php:75
msgid "Set colour scheme"
msgstr ""
#: ../../include/profile_advanced.php:22
msgid "j F, Y"
msgstr "j F Y"
#: ../../include/profile_advanced.php:23
msgid "j F"
msgstr "j F"
#: ../../include/profile_advanced.php:30
msgid "Birthday:"
msgstr "Compleanno:"
#: ../../include/profile_advanced.php:34
msgid "Age:"
msgstr "Età:"
#: ../../include/profile_advanced.php:43
#, php-format
msgid "for %1$d %2$s"
msgstr ""
#: ../../include/profile_advanced.php:52
msgid "Tags:"
msgstr "Tag:"
#: ../../include/profile_advanced.php:56
msgid "Religion:"
msgstr "Religione:"
#: ../../include/profile_advanced.php:60
msgid "Hobbies/Interests:"
msgstr "Hobby/Interessi:"
#: ../../include/profile_advanced.php:67
msgid "Contact information and Social Networks:"
msgstr "Informazioni su contatti e social network:"
#: ../../include/profile_advanced.php:69
msgid "Musical interests:"
msgstr "Interessi musicali:"
#: ../../include/profile_advanced.php:71
msgid "Books, literature:"
msgstr "Libri, letteratura:"
#: ../../include/profile_advanced.php:73
msgid "Television:"
msgstr "Televisione:"
#: ../../include/profile_advanced.php:75
msgid "Film/dance/culture/entertainment:"
msgstr "Film/danza/cultura/intrattenimento:"
#: ../../include/profile_advanced.php:77
msgid "Love/Romance:"
msgstr "Amore:"
#: ../../include/profile_advanced.php:79
msgid "Work/employment:"
msgstr "Lavoro:"
#: ../../include/profile_advanced.php:81
msgid "School/education:"
msgstr "Scuola:"
#: ../../include/contact_selectors.php:32
msgid "Unknown | Not categorised"
@ -4356,7 +7293,7 @@ msgstr "Shady, spammer, self-marketer"
#: ../../include/contact_selectors.php:35
msgid "Known to me, but no opinion"
msgstr "Lo conosco, ma non ho oppinioni"
msgstr "Lo conosco, ma non ho un'opinione particolare"
#: ../../include/contact_selectors.php:36
msgid "OK, probably harmless"
@ -4378,19 +7315,7 @@ msgstr "Ogni ora"
msgid "Twice daily"
msgstr "Due volte al dì"
#: ../../include/contact_selectors.php:59
msgid "Daily"
msgstr "Giornalmente"
#: ../../include/contact_selectors.php:60
msgid "Weekly"
msgstr "Settimanalmente"
#: ../../include/contact_selectors.php:61
msgid "Monthly"
msgstr "Mensilmente"
#: ../../include/contact_selectors.php:78
#: ../../include/contact_selectors.php:77
msgid "OStatus"
msgstr "Ostatus"
@ -4398,10 +7323,22 @@ msgstr "Ostatus"
msgid "RSS/Atom"
msgstr "RSS / Atom"
#: ../../include/contact_selectors.php:78
#: ../../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/profile_selectors.php:6
msgid "Male"
msgstr "Maschio"
@ -4428,15 +7365,15 @@ msgstr "Prevalentemente femmina"
#: ../../include/profile_selectors.php:6
msgid "Transgender"
msgstr "Transgenere"
msgstr "Transgender"
#: ../../include/profile_selectors.php:6
msgid "Intersex"
msgstr "Bisessuale"
msgstr "Intersex"
#: ../../include/profile_selectors.php:6
msgid "Transsexual"
msgstr "Transsessuale"
msgstr "Transessuale"
#: ../../include/profile_selectors.php:6
msgid "Hermaphrodite"
@ -4448,7 +7385,7 @@ msgstr "Neutro"
#: ../../include/profile_selectors.php:6
msgid "Non-specific"
msgstr "Non-specifico"
msgstr "Non specificato"
#: ../../include/profile_selectors.php:6
msgid "Other"
@ -4458,735 +7395,596 @@ msgstr "Altro"
msgid "Undecided"
msgstr "Indeciso"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:23
msgid "Males"
msgstr "Maschi"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:23
msgid "Females"
msgstr "Femmine"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:23
msgid "Gay"
msgstr "Gay"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:23
msgid "Lesbian"
msgstr "Lesbica"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:23
msgid "No Preference"
msgstr "Nessuna preferenza"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:23
msgid "Bisexual"
msgstr "Bisessuale"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:23
msgid "Autosexual"
msgstr "Autosessuale"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:23
msgid "Abstinent"
msgstr "Astinente"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:23
msgid "Virgin"
msgstr "Vergine"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:23
msgid "Deviant"
msgstr "Deviato"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:23
msgid "Fetish"
msgstr "Fetish"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:23
msgid "Oodles"
msgstr "Un sacco"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:23
msgid "Nonsexual"
msgstr "Asessuato"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Single"
msgstr "Single"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Lonely"
msgstr "Solitario"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Available"
msgstr "Disoponibile"
msgstr "Disponibile"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Unavailable"
msgstr "Non disponibile"
#: ../../include/profile_selectors.php:33
msgid "Dating"
msgstr "Incontro"
#: ../../include/profile_selectors.php:42
msgid "Has crush"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Infatuated"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Dating"
msgstr "Disponibile a un incontro"
#: ../../include/profile_selectors.php:42
msgid "Unfaithful"
msgstr "Infedele"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Sex Addict"
msgstr "Sesso-dipendente"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42 ../../include/user.php:278
#: ../../include/user.php:282
msgid "Friends"
msgstr "Amici"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Friends/Benefits"
msgstr "Amici con benefici"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Casual"
msgstr "Casual"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Engaged"
msgstr "Impegnato"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Married"
msgstr "Sposato"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Imaginarily married"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Partners"
msgstr "Partners"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Cohabiting"
msgstr "Coinquilino"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Common law"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Happy"
msgstr "Felice"
#: ../../include/profile_selectors.php:33
msgid "Not Looking"
msgstr "Non in cerca"
#: ../../include/profile_selectors.php:42
msgid "Not looking"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Swinger"
msgstr "Scambista"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Betrayed"
msgstr "Tradito"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Separated"
msgstr "Separato"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Unstable"
msgstr "Instabile"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Divorced"
msgstr "Divorziato"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Imaginarily divorced"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Widowed"
msgstr "Vedovo"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Uncertain"
msgstr "Incerto"
#: ../../include/profile_selectors.php:33
msgid "Complicated"
msgstr "Complicato"
#: ../../include/profile_selectors.php:42
msgid "It's complicated"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Don't care"
msgstr "Non interessa"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Ask me"
msgstr "Chiedimelo"
#: ../../include/event.php:17 ../../include/bb2diaspora.php:233
#: ../../include/event.php:20 ../../include/bb2diaspora.php:396
msgid "Starts:"
msgstr "Inizia:"
#: ../../include/event.php:27 ../../include/bb2diaspora.php:241
#: ../../include/event.php:30 ../../include/bb2diaspora.php:404
msgid "Finishes:"
msgstr "Finisce:"
#: ../../include/acl_selectors.php:279
msgid "Visible to everybody"
msgstr "Visibile a tutti"
#: ../../include/delivery.php:457 ../../include/notifier.php:703
msgid "(no subject)"
msgstr "(nessun oggetto)"
#: ../../include/acl_selectors.php:280
msgid "show"
msgstr "mostra"
#: ../../include/Scrape.php:576
msgid " on Last.fm"
msgstr ""
#: ../../include/acl_selectors.php:281
msgid "don't show"
msgstr "non mostrare"
#: ../../include/auth.php:27
msgid "Logged out."
msgstr "Sei uscito."
#: ../../include/bbcode.php:147
msgid "Image/photo"
msgstr "Immagine/foto"
#: ../../include/poller.php:457
msgid "From: "
msgstr "Da: "
#: ../../include/Contact.php:125 ../../include/conversation.php:675
msgid "View status"
msgstr "Vedi stato"
#: ../../include/Contact.php:126 ../../include/conversation.php:676
msgid "View profile"
msgstr "Vedi profilo"
#: ../../include/Contact.php:127 ../../include/conversation.php:677
msgid "View photos"
msgstr "Vedi foto"
#: ../../include/Contact.php:128 ../../include/Contact.php:141
#: ../../include/conversation.php:678
msgid "View recent"
msgstr "Visualizza recente"
#: ../../include/Contact.php:130 ../../include/Contact.php:141
#: ../../include/conversation.php:680
msgid "Send PM"
msgstr "Invia messaggio privato"
#: ../../include/datetime.php:44 ../../include/datetime.php:46
msgid "Miscellaneous"
msgstr "Varie"
#: ../../include/datetime.php:105 ../../include/datetime.php:237
msgid "year"
msgstr "anno"
#: ../../include/datetime.php:110 ../../include/datetime.php:238
msgid "month"
msgstr "mese"
#: ../../include/datetime.php:115 ../../include/datetime.php:240
msgid "day"
msgstr "giorno"
#: ../../include/datetime.php:228
msgid "never"
msgstr "mai"
#: ../../include/datetime.php:234
msgid "less than a second ago"
msgstr "meno di un secondo fa"
#: ../../include/datetime.php:237
msgid "years"
msgstr "anni"
#: ../../include/datetime.php:238
msgid "months"
msgstr "mesi"
#: ../../include/datetime.php:239
msgid "week"
msgstr "settimana"
#: ../../include/datetime.php:239
msgid "weeks"
msgstr "settimane"
#: ../../include/datetime.php:240
msgid "days"
msgstr "giorni"
#: ../../include/datetime.php:241
msgid "hour"
msgstr "ora"
#: ../../include/datetime.php:241
msgid "hours"
msgstr "ore"
#: ../../include/datetime.php:242
msgid "minute"
msgstr "minuto"
#: ../../include/datetime.php:242
msgid "minutes"
msgstr "minuti"
#: ../../include/datetime.php:243
msgid "second"
msgstr "secondo"
#: ../../include/datetime.php:243
msgid "seconds"
msgstr "secondi"
#: ../../include/datetime.php:250
msgid " ago"
msgstr " fa"
#: ../../include/datetime.php:421 ../../include/profile_advanced.php:30
#: ../../include/items.php:1215
msgid "Birthday:"
msgstr "Compleanno:"
#: ../../include/profile_advanced.php:22
msgid "j F, Y"
msgstr "j F Y"
#: ../../include/profile_advanced.php:23
msgid "j F"
msgstr "j F"
#: ../../include/profile_advanced.php:34
msgid "Age:"
msgstr "Età:"
#: ../../include/profile_advanced.php:49
msgid "Religion:"
msgstr "Religione:"
#: ../../include/profile_advanced.php:51
msgid "About:"
msgstr "Informazioni:"
#: ../../include/profile_advanced.php:53
msgid "Hobbies/Interests:"
msgstr "Hobbie/Interessi:"
#: ../../include/profile_advanced.php:55
msgid "Contact information and Social Networks:"
msgstr "Informazioni su contatti e Social network:"
#: ../../include/profile_advanced.php:57
msgid "Musical interests:"
msgstr "Interessi musicali:"
#: ../../include/profile_advanced.php:59
msgid "Books, literature:"
msgstr "Libri, letteratura:"
#: ../../include/profile_advanced.php:61
msgid "Television:"
msgstr "Televisione:"
#: ../../include/profile_advanced.php:63
msgid "Film/dance/culture/entertainment:"
msgstr "Film/danza/cultura/intrattenimento:"
#: ../../include/profile_advanced.php:65
msgid "Love/Romance:"
msgstr "Amore/romanticismo:"
#: ../../include/profile_advanced.php:67
msgid "Work/employment:"
msgstr "Lavoro/impiego:"
#: ../../include/profile_advanced.php:69
msgid "School/education:"
msgstr "Scuola/educazione:"
#: ../../include/text.php:232
#: ../../include/text.php:243
msgid "prev"
msgstr "prec"
#: ../../include/text.php:234
#: ../../include/text.php:245
msgid "first"
msgstr "primo"
#: ../../include/text.php:263
#: ../../include/text.php:274
msgid "last"
msgstr "ultimo"
#: ../../include/text.php:266
#: ../../include/text.php:277
msgid "next"
msgstr "succ"
#: ../../include/text.php:546
#: ../../include/text.php:295
msgid "newer"
msgstr ""
#: ../../include/text.php:299
msgid "older"
msgstr ""
#: ../../include/text.php:597
msgid "No contacts"
msgstr "Nessun contatto"
#: ../../include/text.php:555
#: ../../include/text.php:606
#, php-format
msgid "%d Contact"
msgid_plural "%d Contacts"
msgstr[0] "%d Contatto"
msgstr[1] "%d Contatti"
msgstr[0] "%d contatto"
msgstr[1] "%d contatti"
#: ../../include/text.php:626 ../../include/nav.php:87
msgid "Search"
msgstr "Cerca"
#: ../../include/text.php:719
msgid "poke"
msgstr ""
#: ../../include/text.php:709
msgid "Monday"
msgstr "Lunedì"
#: ../../include/text.php:719 ../../include/conversation.php:210
msgid "poked"
msgstr ""
#: ../../include/text.php:709
msgid "Tuesday"
msgstr "Martedì"
#: ../../include/text.php:720
msgid "ping"
msgstr ""
#: ../../include/text.php:709
msgid "Wednesday"
msgstr "Mercoledì"
#: ../../include/text.php:720
msgid "pinged"
msgstr ""
#: ../../include/text.php:709
msgid "Thursday"
msgstr "Giovedì"
#: ../../include/text.php:721
msgid "prod"
msgstr ""
#: ../../include/text.php:709
msgid "Friday"
msgstr "Venerdì"
#: ../../include/text.php:721
msgid "prodded"
msgstr ""
#: ../../include/text.php:709
msgid "Saturday"
msgstr "Sabato"
#: ../../include/text.php:722
msgid "slap"
msgstr ""
#: ../../include/text.php:709
msgid "Sunday"
msgstr "Domenica"
#: ../../include/text.php:722
msgid "slapped"
msgstr ""
#: ../../include/text.php:713
#: ../../include/text.php:723
msgid "finger"
msgstr ""
#: ../../include/text.php:723
msgid "fingered"
msgstr ""
#: ../../include/text.php:724
msgid "rebuff"
msgstr ""
#: ../../include/text.php:724
msgid "rebuffed"
msgstr ""
#: ../../include/text.php:736
msgid "happy"
msgstr ""
#: ../../include/text.php:737
msgid "sad"
msgstr ""
#: ../../include/text.php:738
msgid "mellow"
msgstr ""
#: ../../include/text.php:739
msgid "tired"
msgstr ""
#: ../../include/text.php:740
msgid "perky"
msgstr ""
#: ../../include/text.php:741
msgid "angry"
msgstr ""
#: ../../include/text.php:742
msgid "stupified"
msgstr ""
#: ../../include/text.php:743
msgid "puzzled"
msgstr ""
#: ../../include/text.php:744
msgid "interested"
msgstr ""
#: ../../include/text.php:745
msgid "bitter"
msgstr ""
#: ../../include/text.php:746
msgid "cheerful"
msgstr ""
#: ../../include/text.php:747
msgid "alive"
msgstr ""
#: ../../include/text.php:748
msgid "annoyed"
msgstr ""
#: ../../include/text.php:749
msgid "anxious"
msgstr ""
#: ../../include/text.php:750
msgid "cranky"
msgstr ""
#: ../../include/text.php:751
msgid "disturbed"
msgstr ""
#: ../../include/text.php:752
msgid "frustrated"
msgstr ""
#: ../../include/text.php:753
msgid "motivated"
msgstr ""
#: ../../include/text.php:754
msgid "relaxed"
msgstr ""
#: ../../include/text.php:755
msgid "surprised"
msgstr ""
#: ../../include/text.php:921
msgid "January"
msgstr "Gennaio"
#: ../../include/text.php:713
#: ../../include/text.php:921
msgid "February"
msgstr "Febbraio"
#: ../../include/text.php:713
#: ../../include/text.php:921
msgid "March"
msgstr "Marzo"
#: ../../include/text.php:713
#: ../../include/text.php:921
msgid "April"
msgstr "Aprile"
#: ../../include/text.php:713
#: ../../include/text.php:921
msgid "May"
msgstr "Maggio"
#: ../../include/text.php:713
#: ../../include/text.php:921
msgid "June"
msgstr "Giugno"
#: ../../include/text.php:713
#: ../../include/text.php:921
msgid "July"
msgstr "Luglio"
#: ../../include/text.php:713
#: ../../include/text.php:921
msgid "August"
msgstr "Agosto"
#: ../../include/text.php:713
#: ../../include/text.php:921
msgid "September"
msgstr "Settembre"
#: ../../include/text.php:713
#: ../../include/text.php:921
msgid "October"
msgstr "Ottobre"
#: ../../include/text.php:713
#: ../../include/text.php:921
msgid "November"
msgstr "Novembre"
#: ../../include/text.php:713
#: ../../include/text.php:921
msgid "December"
msgstr "Dicembre"
#: ../../include/text.php:783
#: ../../include/text.php:1007
msgid "bytes"
msgstr "bytes"
#: ../../include/text.php:875
msgid "Select an alternate language"
msgstr "Seleziona una diversa lingua"
#: ../../include/text.php:1034 ../../include/text.php:1046
msgid "Click to open/close"
msgstr "Clicca per aprire/chiudere"
#: ../../include/text.php:887
#: ../../include/text.php:1219 ../../include/user.php:236
msgid "default"
msgstr "default"
#: ../../include/nav.php:44
msgid "End this session"
msgstr "Finisci questa sessione"
#: ../../include/text.php:1231
msgid "Select an alternate language"
msgstr "Seleziona una diversa lingua"
#: ../../include/nav.php:47 ../../include/nav.php:111
msgid "Your posts and conversations"
msgstr "I tuoi messaggi e le tue conversazioni"
#: ../../include/text.php:1441
msgid "activity"
msgstr "attività"
#: ../../include/nav.php:48
msgid "Your profile page"
msgstr "Pagina del tuo profilo"
#: ../../include/text.php:1444
msgid "post"
msgstr "messaggio"
#: ../../include/nav.php:49
msgid "Your photos"
msgstr "Le tue foto"
#: ../../include/text.php:1599
msgid "Item filed"
msgstr ""
#: ../../include/nav.php:50
msgid "Your events"
msgstr "I tuoi eventi"
#: ../../include/diaspora.php:691
msgid "Sharing notification from Diaspora network"
msgstr "Notifica di condivisione dal network Diaspora*"
#: ../../include/nav.php:51
msgid "Personal notes"
msgstr "Note personali"
#: ../../include/diaspora.php:2211
msgid "Attachments:"
msgstr "Allegati:"
#: ../../include/nav.php:51
msgid "Your personal photos"
msgstr "Le tue foto personali"
#: ../../include/nav.php:62
msgid "Sign in"
msgstr "Entra"
#: ../../include/nav.php:73
msgid "Home Page"
msgstr "Home Page"
#: ../../include/nav.php:77
msgid "Create an account"
msgstr "Crea un account"
#: ../../include/nav.php:82
msgid "Help and documentation"
msgstr "Guida e documentazione"
#: ../../include/nav.php:85
msgid "Apps"
msgstr "Applicazioni"
#: ../../include/nav.php:85
msgid "Addon applications, utilities, games"
msgstr "Applicazioni, utilità e giochi aggiuntivi"
#: ../../include/nav.php:87
msgid "Search site content"
msgstr "Cerca nel contenuto del sito"
#: ../../include/nav.php:97
msgid "Conversations on this site"
msgstr "Conversazioni su questo sito"
#: ../../include/nav.php:99
msgid "Directory"
msgstr "Elenco"
#: ../../include/nav.php:99
msgid "People directory"
msgstr "Elenco delle persone"
#: ../../include/nav.php:109
msgid "Conversations from your friends"
msgstr "Conversazioni dai tuoi amici"
#: ../../include/nav.php:117
msgid "Friend Requests"
msgstr "Richieste di amicizia"
#: ../../include/nav.php:122
msgid "Private mail"
msgstr "Posta privata"
#: ../../include/nav.php:125
msgid "Manage"
msgstr "Gestisci"
#: ../../include/nav.php:125
msgid "Manage other pages"
msgstr "Gestisci altre pagine"
#: ../../include/nav.php:130
msgid "Manage/edit friends and contacts"
msgstr "Gestisci/modifica amici e contatti"
#: ../../include/nav.php:137
msgid "Admin"
msgstr "Amministrazione"
#: ../../include/nav.php:137
msgid "Site setup and configuration"
msgstr "Configurazione del sito"
#: ../../include/nav.php:160
msgid "Nothing new here"
msgstr "Niente di nuovo qui"
#: ../../include/conversation.php:210 ../../include/conversation.php:453
msgid "Select"
msgstr "Seleziona"
#: ../../include/conversation.php:225 ../../include/conversation.php:550
#: ../../include/conversation.php:551
#, php-format
msgid "View %s's profile @ %s"
msgstr "Vedi il profilo di %s @ %s"
#: ../../include/conversation.php:234 ../../include/conversation.php:562
#, php-format
msgid "%s from %s"
msgstr "%s da %s"
#: ../../include/conversation.php:250
msgid "View in context"
msgstr "Vedi nel contesto"
#: ../../include/conversation.php:356
#, php-format
msgid "See all %d comments"
msgstr "Vedi tutti i %d commenti"
#: ../../include/conversation.php:416
msgid "like"
msgstr "mi piace"
#: ../../include/conversation.php:417
msgid "dislike"
msgstr "non mi piace"
#: ../../include/conversation.php:419
msgid "Share this"
msgstr "Condividi questo"
#: ../../include/conversation.php:419
msgid "share"
msgstr "condividi"
#: ../../include/conversation.php:463
msgid "add star"
msgstr "aggiungi a speciali"
#: ../../include/conversation.php:464
msgid "remove star"
msgstr "rimuovi da speciali"
#: ../../include/conversation.php:465
msgid "toggle star status"
msgstr "Inverti stato preferito"
#: ../../include/conversation.php:468
msgid "starred"
msgstr "speciale"
#: ../../include/conversation.php:469
msgid "add tag"
msgstr "aggiungi tag"
#: ../../include/conversation.php:552
msgid "to"
msgstr "a"
#: ../../include/conversation.php:553
msgid "Wall-to-Wall"
msgstr "Bacheca-A-Bacheca"
#: ../../include/conversation.php:554
msgid "via Wall-To-Wall:"
msgstr "sulla sua Bacheca"
#: ../../include/conversation.php:600
msgid "Delete Selected Items"
msgstr "Cancella elementi selezionati"
#: ../../include/conversation.php:730
#, php-format
msgid "%s likes this."
msgstr "Piace a %s."
#: ../../include/conversation.php:730
#, php-format
msgid "%s doesn't like this."
msgstr "Non piace a %s."
#: ../../include/conversation.php:734
#, php-format
msgid "<span %1$s>%2$d people</span> like this."
msgstr "Piace a <span %1$s>%2$d persone</span>."
#: ../../include/conversation.php:736
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this."
msgstr "Non piace a <span %1$s>%2$d persone</span>."
#: ../../include/conversation.php:742
msgid "and"
msgstr "e"
#: ../../include/conversation.php:745
#, php-format
msgid ", and %d other people"
msgstr ", e altre %d persone"
#: ../../include/conversation.php:746
#, php-format
msgid "%s like this."
msgstr "Piace a %s."
#: ../../include/conversation.php:746
#, php-format
msgid "%s don't like this."
msgstr "Non piace a %s."
#: ../../include/conversation.php:766
msgid "Visible to <strong>everybody</strong>"
msgstr "Vsibile a <strong>tutti</strong>"
#: ../../include/conversation.php:768
msgid "Please enter a video link/URL:"
msgstr "Inserisci un collegamento video / URL:"
#: ../../include/conversation.php:769
msgid "Please enter an audio link/URL:"
msgstr "Inserisci un collegamento audio / URL:"
#: ../../include/conversation.php:770
msgid "Tag term:"
msgstr "Tag:"
#: ../../include/conversation.php:771
msgid "Where are you right now?"
msgstr "Dove sei ora?"
#: ../../include/conversation.php:772
msgid "Enter a title for this item"
msgstr "Inserisci un titolo per questo elemento"
#: ../../include/conversation.php:818
msgid "Insert video link"
msgstr "Inserire collegamento video"
#: ../../include/conversation.php:819
msgid "Insert audio link"
msgstr "Inserisci collegamento audio"
#: ../../include/conversation.php:822
msgid "Set title"
msgstr "Imposta il titolo"
#: ../../include/bb2diaspora.php:51
#: ../../include/network.php:849
msgid "view full size"
msgstr "vedi a schermo intero"
#: ../../include/bb2diaspora.php:102
msgid "image/photo"
msgstr "immagine / foto"
#: ../../include/oembed.php:137
msgid "Embedded content"
msgstr "Contenuto incorporato"
#: ../../include/dba.php:31
#, php-format
msgid "Cannot locate DNS info for database server '%s'"
msgstr "Non trovo le informazioni DNS per il database server '%s'"
#: ../../include/oembed.php:146
msgid "Embedding disabled"
msgstr "Embed disabilitato"
#: ../../include/group.php:25
msgid ""
"A deleted group with this name was revived. Existing item permissions "
"<strong>may</strong> apply to this group and any future members. If this is "
"not what you intended, please create another group with a different name."
msgstr "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento <strong>possono</strong> essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso."
#: ../../include/group.php:176
msgid "Default privacy group for new contacts"
msgstr ""
#: ../../include/group.php:195
msgid "Everybody"
msgstr "Tutti"
#: ../../include/group.php:218
msgid "edit"
msgstr "modifica"
#: ../../include/group.php:240
msgid "Edit group"
msgstr "Modifica gruppo"
#: ../../include/group.php:241
msgid "Create a new group"
msgstr "Crea un nuovo gruppo"
#: ../../include/group.php:242
msgid "Contacts not in any group"
msgstr "Contatti in nessun gruppo."
#: ../../include/nav.php:46 ../../boot.php:911
msgid "Logout"
msgstr "Esci"
#: ../../include/nav.php:46
msgid "End this session"
msgstr "Finisci questa sessione"
#: ../../include/nav.php:49 ../../boot.php:1665
msgid "Status"
msgstr "Stato"
#: ../../include/nav.php:64
msgid "Sign in"
msgstr "Entra"
#: ../../include/nav.php:77
msgid "Home Page"
msgstr "Home Page"
#: ../../include/nav.php:81
msgid "Create an account"
msgstr "Crea un account"
#: ../../include/nav.php:86
msgid "Help and documentation"
msgstr "Guida e documentazione"
#: ../../include/nav.php:89
msgid "Apps"
msgstr "Applicazioni"
#: ../../include/nav.php:89
msgid "Addon applications, utilities, games"
msgstr "Applicazioni, utilità e giochi aggiuntivi"
#: ../../include/nav.php:91
msgid "Search site content"
msgstr "Cerca nel contenuto del sito"
#: ../../include/nav.php:101
msgid "Conversations on this site"
msgstr "Conversazioni su questo sito"
#: ../../include/nav.php:103
msgid "Directory"
msgstr "Elenco"
#: ../../include/nav.php:103
msgid "People directory"
msgstr "Elenco delle persone"
#: ../../include/nav.php:113
msgid "Conversations from your friends"
msgstr "Conversazioni dai tuoi amici"
#: ../../include/nav.php:121
msgid "Friend Requests"
msgstr "Richieste di amicizia"
#: ../../include/nav.php:123
msgid "See all notifications"
msgstr "Vedi tutte le notifiche"
#: ../../include/nav.php:124
msgid "Mark all system notifications seen"
msgstr ""
#: ../../include/nav.php:128
msgid "Private mail"
msgstr "Posta privata"
#: ../../include/nav.php:129
msgid "Inbox"
msgstr "In arrivo"
#: ../../include/nav.php:130
msgid "Outbox"
msgstr "Inviati"
#: ../../include/nav.php:134
msgid "Manage"
msgstr "Gestisci"
#: ../../include/nav.php:134
msgid "Manage other pages"
msgstr "Gestisci altre pagine"
#: ../../include/nav.php:138 ../../boot.php:1186
msgid "Profiles"
msgstr "Profili"
#: ../../include/nav.php:138 ../../boot.php:1186
msgid "Manage/edit profiles"
msgstr "Gestisci/modifica i profili"
#: ../../include/nav.php:139
msgid "Manage/edit friends and contacts"
msgstr "Gestisci/modifica amici e contatti"
#: ../../include/nav.php:146
msgid "Site setup and configuration"
msgstr "Configurazione del sito"
#: ../../include/nav.php:170
msgid "Nothing new here"
msgstr "Niente di nuovo qui"
#: ../../include/contact_widgets.php:6
msgid "Add New Contact"
@ -5200,91 +7998,772 @@ msgstr "Inserisci posizione o indirizzo web"
msgid "Example: bob@example.com, http://example.com/barbara"
msgstr "Esempio: bob@example.com, http://example.com/barbara"
#: ../../include/contact_widgets.php:18
msgid "Invite Friends"
msgstr "Invita Amici"
#: ../../include/contact_widgets.php:24
#: ../../include/contact_widgets.php:23
#, 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:30
#: ../../include/contact_widgets.php:29
msgid "Find People"
msgstr "Trova persone"
#: ../../include/contact_widgets.php:31
#: ../../include/contact_widgets.php:30
msgid "Enter name or interest"
msgstr "Inserisci un nome o un interesse"
#: ../../include/contact_widgets.php:32
#: ../../include/contact_widgets.php:31
msgid "Connect/Follow"
msgstr "Connetti/Segui"
msgstr "Connetti/segui"
#: ../../include/contact_widgets.php:33
#: ../../include/contact_widgets.php:32
msgid "Examples: Robert Morgenstein, Fishing"
msgstr "Esempi: Mario Rossi, Pesca"
#: ../../include/contact_widgets.php:36
msgid "Similar Interests"
msgstr "Interessi simili"
msgid "Random Profile"
msgstr "Profilo causale"
#: ../../include/items.php:1829
msgid "New mail received at "
msgstr "Nuova mail ricevuta su "
#: ../../include/contact_widgets.php:68
msgid "Networks"
msgstr "Reti"
#: ../../include/items.php:2438
msgid "A new person is sharing with you at "
msgstr "Una nuova persona sta condividendo con te da "
#: ../../include/contact_widgets.php:71
msgid "All Networks"
msgstr "Tutte le Reti"
#: ../../include/items.php:2438
msgid "You have a new follower at "
msgstr "Hai un nuovo seguace su "
#: ../../include/contact_widgets.php:98
msgid "Saved Folders"
msgstr "Cartelle Salvate"
#: ../../include/message.php:13
#: ../../include/contact_widgets.php:101 ../../include/contact_widgets.php:129
msgid "Everything"
msgstr "Tutto"
#: ../../include/contact_widgets.php:126
msgid "Categories"
msgstr "Categorie"
#: ../../include/auth.php:35
msgid "Logged out."
msgstr "Uscita effettuata."
#: ../../include/auth.php:114
msgid ""
"We encountered a problem while logging in with the OpenID you provided. "
"Please check the correct spelling of the ID."
msgstr "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto."
#: ../../include/auth.php:114
msgid "The error message was:"
msgstr "Il messaggio riportato era:"
#: ../../include/datetime.php:43 ../../include/datetime.php:45
msgid "Miscellaneous"
msgstr "Varie"
#: ../../include/datetime.php:153 ../../include/datetime.php:285
msgid "year"
msgstr "anno"
#: ../../include/datetime.php:158 ../../include/datetime.php:286
msgid "month"
msgstr "mese"
#: ../../include/datetime.php:163 ../../include/datetime.php:288
msgid "day"
msgstr "giorno"
#: ../../include/datetime.php:276
msgid "never"
msgstr "mai"
#: ../../include/datetime.php:282
msgid "less than a second ago"
msgstr "meno di un secondo fa"
#: ../../include/datetime.php:287
msgid "week"
msgstr "settimana"
#: ../../include/datetime.php:289
msgid "hour"
msgstr "ora"
#: ../../include/datetime.php:289
msgid "hours"
msgstr "ore"
#: ../../include/datetime.php:290
msgid "minute"
msgstr "minuto"
#: ../../include/datetime.php:290
msgid "minutes"
msgstr "minuti"
#: ../../include/datetime.php:291
msgid "second"
msgstr "secondo"
#: ../../include/datetime.php:291
msgid "seconds"
msgstr "secondi"
#: ../../include/datetime.php:300
#, php-format
msgid "%1$d %2$s ago"
msgstr "%1$d %2$s fa"
#: ../../include/datetime.php:472 ../../include/items.php:1688
#, php-format
msgid "%s's birthday"
msgstr ""
#: ../../include/datetime.php:473 ../../include/items.php:1689
#, php-format
msgid "Happy Birthday %s"
msgstr ""
#: ../../include/onepoll.php:399
msgid "From: "
msgstr "Da: "
#: ../../include/bbcode.php:185 ../../include/bbcode.php:406
msgid "Image/photo"
msgstr "Immagine/foto"
#: ../../include/bbcode.php:371 ../../include/bbcode.php:391
msgid "$1 wrote:"
msgstr "$1 ha scritto:"
#: ../../include/bbcode.php:410 ../../include/bbcode.php:411
msgid "Encrypted content"
msgstr ""
#: ../../include/dba.php:41
#, php-format
msgid "Cannot locate DNS info for database server '%s'"
msgstr "Non trovo le informazioni DNS per il database server '%s'"
#: ../../include/message.php:15 ../../include/message.php:171
msgid "[no subject]"
msgstr "[nessun oggetto]"
#: ../../include/group.php:25
msgid ""
"A deleted group with this name was revived. Existing item permissions "
"<strong>may</strong> apply to this group and any future members. If this is "
"not what you intended, please create another group with a different name."
msgstr ""
"Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti "
"su un elemento <strong>possono</strong> essere applicati a questo gruppo e "
"tutti i membri futuri. Se questo non è ciò che si intende, si prega di "
"creare un altro gruppo con un nome diverso."
#: ../../include/acl_selectors.php:286
msgid "Visible to everybody"
msgstr "Visibile a tutti"
#: ../../include/group.php:165
msgid "Create a new group"
msgstr "Crea un nuovo gruppo"
#: ../../include/enotify.php:16
msgid "Friendica Notification"
msgstr "Notifica Friendica"
#: ../../include/group.php:166
msgid "Everybody"
msgstr "Tutti"
#: ../../include/enotify.php:19
msgid "Thank You,"
msgstr "Grazie,"
#: ../../include/diaspora.php:544
msgid "Sharing notification from Diaspora network"
msgstr "Notifica di condivisione dal network Diaspora*"
#: ../../include/diaspora.php:1527
msgid "Attachments:"
msgstr "Allegati:"
#: ../../include/diaspora.php:1710
#: ../../include/enotify.php:21
#, php-format
msgid "[Relayed] Comment authored by %s from network %s"
msgstr "[Inoltrato] Commento scritto da %s dalla rete %s"
msgid "%s Administrator"
msgstr "Amministratore %s"
#: ../../include/oembed.php:122
msgid "Embedded content"
msgstr "Contenuto incorporato"
#: ../../include/enotify.php:40
#, php-format
msgid "%s <!item_type!>"
msgstr "%s <!item_type!>"
#: ../../include/oembed.php:131
msgid "Embedding disabled"
msgstr "Inclusione disabilitata"
#: ../../include/enotify.php:44
#, php-format
msgid "[Friendica:Notify] New mail received at %s"
msgstr "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s"
#: ../../include/enotify.php:46
#, php-format
msgid "%1$s sent you a new private message at %2$s."
msgstr ""
#: ../../include/enotify.php:47
#, php-format
msgid "%1$s sent you %2$s."
msgstr ""
#: ../../include/enotify.php:47
msgid "a private message"
msgstr "un messaggio privato"
#: ../../include/enotify.php:48
#, php-format
msgid "Please visit %s to view and/or reply to your private messages."
msgstr "Visita %s per vedere e/o rispodere ai tuoi messaggi privati."
#: ../../include/enotify.php:89
#, php-format
msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
msgstr ""
#: ../../include/enotify.php:96
#, php-format
msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
msgstr ""
#: ../../include/enotify.php:104
#, php-format
msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
msgstr ""
#: ../../include/enotify.php:114
#, php-format
msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
msgstr ""
#: ../../include/enotify.php:115
#, php-format
msgid "%s commented on an item/conversation you have been following."
msgstr "%s ha commentato un elemento che stavi seguendo."
#: ../../include/enotify.php:118 ../../include/enotify.php:133
#: ../../include/enotify.php:146 ../../include/enotify.php:164
#: ../../include/enotify.php:177
#, php-format
msgid "Please visit %s to view and/or reply to the conversation."
msgstr "Visita %s per vedere e/o commentare la conversazione"
#: ../../include/enotify.php:125
#, php-format
msgid "[Friendica:Notify] %s posted to your profile wall"
msgstr "[Friendica:Notifica] %s ha scritto sulla tua bacheca"
#: ../../include/enotify.php:127
#, php-format
msgid "%1$s posted to your profile wall at %2$s"
msgstr ""
#: ../../include/enotify.php:129
#, php-format
msgid "%1$s posted to [url=%2$s]your wall[/url]"
msgstr ""
#: ../../include/enotify.php:140
#, php-format
msgid "[Friendica:Notify] %s tagged you"
msgstr "[Friendica:Notifica] %s ti ha taggato"
#: ../../include/enotify.php:141
#, php-format
msgid "%1$s tagged you at %2$s"
msgstr ""
#: ../../include/enotify.php:142
#, php-format
msgid "%1$s [url=%2$s]tagged you[/url]."
msgstr ""
#: ../../include/enotify.php:154
#, php-format
msgid "[Friendica:Notify] %1$s poked you"
msgstr ""
#: ../../include/enotify.php:155
#, php-format
msgid "%1$s poked you at %2$s"
msgstr ""
#: ../../include/enotify.php:156
#, php-format
msgid "%1$s [url=%2$s]poked you[/url]."
msgstr ""
#: ../../include/enotify.php:171
#, php-format
msgid "[Friendica:Notify] %s tagged your post"
msgstr "[Friendica:Notifica] %s ha taggato un tuo messaggio"
#: ../../include/enotify.php:172
#, php-format
msgid "%1$s tagged your post at %2$s"
msgstr ""
#: ../../include/enotify.php:173
#, php-format
msgid "%1$s tagged [url=%2$s]your post[/url]"
msgstr ""
#: ../../include/enotify.php:184
msgid "[Friendica:Notify] Introduction received"
msgstr "[Friendica:Notifica] Hai ricevuto una presentazione"
#: ../../include/enotify.php:185
#, php-format
msgid "You've received an introduction from '%1$s' at %2$s"
msgstr ""
#: ../../include/enotify.php:186
#, php-format
msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
msgstr ""
#: ../../include/enotify.php:189 ../../include/enotify.php:207
#, php-format
msgid "You may visit their profile at %s"
msgstr "Puoi visitare il suo profilo presso %s"
#: ../../include/enotify.php:191
#, php-format
msgid "Please visit %s to approve or reject the introduction."
msgstr "Visita %s per approvare o rifiutare la presentazione."
#: ../../include/enotify.php:198
msgid "[Friendica:Notify] Friend suggestion received"
msgstr "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia"
#: ../../include/enotify.php:199
#, php-format
msgid "You've received a friend suggestion from '%1$s' at %2$s"
msgstr ""
#: ../../include/enotify.php:200
#, php-format
msgid ""
"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
msgstr ""
#: ../../include/enotify.php:205
msgid "Name:"
msgstr "Nome:"
#: ../../include/enotify.php:206
msgid "Photo:"
msgstr "Foto:"
#: ../../include/enotify.php:209
#, php-format
msgid "Please visit %s to approve or reject the suggestion."
msgstr "Visita %s per approvare o rifiutare il suggerimento."
#: ../../include/follow.php:32
msgid "Connect URL missing."
msgstr "URL di connessione mancante."
#: ../../include/follow.php:59
msgid ""
"This site is not configured to allow communications with other networks."
msgstr "Questo sito non è configurato per permettere la comunicazione con altri network."
#: ../../include/follow.php:60 ../../include/follow.php:80
msgid "No compatible communication protocols or feeds were discovered."
msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili."
#: ../../include/follow.php:78
msgid "The profile address specified does not provide adequate information."
msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni."
#: ../../include/follow.php:82
msgid "An author or name was not found."
msgstr "Non è stato trovato un nome o un autore"
#: ../../include/follow.php:84
msgid "No browser URL could be matched to this address."
msgstr "Nessun URL puo' essere associato a questo indirizzo."
#: ../../include/follow.php:86
msgid ""
"Unable to match @-style Identity Address with a known protocol or email "
"contact."
msgstr ""
#: ../../include/follow.php:87
msgid "Use mailto: in front of address to force email check."
msgstr ""
#: ../../include/follow.php:93
msgid ""
"The profile address specified belongs to a network which has been disabled "
"on this site."
msgstr "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito."
#: ../../include/follow.php:103
msgid ""
"Limited profile. This person will be unable to receive direct/personal "
"notifications from you."
msgstr "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te."
#: ../../include/follow.php:205
msgid "Unable to retrieve contact information."
msgstr "Impossibile recuperare informazioni sul contatto."
#: ../../include/follow.php:259
msgid "following"
msgstr "segue"
#: ../../include/items.php:3299
msgid "A new person is sharing with you at "
msgstr "Una nuova persona sta condividendo con te da "
#: ../../include/items.php:3299
msgid "You have a new follower at "
msgstr "Una nuova persona ti segue su "
#: ../../include/items.php:3980
msgid "Archives"
msgstr ""
#: ../../include/user.php:38
msgid "An invitation is required."
msgstr "E' richiesto un invito."
#: ../../include/user.php:43
msgid "Invitation could not be verified."
msgstr "L'invito non puo' essere verificato."
#: ../../include/user.php:51
msgid "Invalid OpenID url"
msgstr "Url OpenID non valido"
#: ../../include/user.php:66
msgid "Please enter the required information."
msgstr "Inserisci le informazioni richieste."
#: ../../include/user.php:80
msgid "Please use a shorter name."
msgstr "Usa un nome più corto."
#: ../../include/user.php:82
msgid "Name too short."
msgstr "Il nome è troppo corto."
#: ../../include/user.php:97
msgid "That doesn't appear to be your full (First Last) name."
msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)."
#: ../../include/user.php:102
msgid "Your email domain is not among those allowed on this site."
msgstr "Il dominio della tua email non è tra quelli autorizzati su questo sito."
#: ../../include/user.php:105
msgid "Not a valid email address."
msgstr "L'indirizzo email non è valido."
#: ../../include/user.php:115
msgid "Cannot use that email."
msgstr "Non puoi usare quell'email."
#: ../../include/user.php:121
msgid ""
"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
"must also begin with a letter."
msgstr "Il tuo nome utente puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera."
#: ../../include/user.php:127 ../../include/user.php:225
msgid "Nickname is already registered. Please choose another."
msgstr "Nome utente già registrato. Scegline un altro."
#: ../../include/user.php:137
msgid ""
"Nickname was once registered here and may not be re-used. Please choose "
"another."
msgstr "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo."
#: ../../include/user.php:153
msgid "SERIOUS ERROR: Generation of security keys failed."
msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita."
#: ../../include/user.php:211
msgid "An error occurred during registration. Please try again."
msgstr "C'è stato un errore durante la registrazione. Prova ancora."
#: ../../include/user.php:246
msgid "An error occurred creating your default profile. Please try again."
msgstr "C'è stato un errore nella creazione del tuo profilo. Prova ancora."
#: ../../include/security.php:22
msgid "Welcome "
msgstr "Ciao"
#: ../../include/security.php:23
msgid "Please upload a profile photo."
msgstr "Carica una foto per il profilo."
#: ../../include/security.php:26
msgid "Welcome back "
msgstr "Ciao "
#: ../../include/security.php:344
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.php:111
msgid "stopped following"
msgstr ""
#: ../../include/Contact.php:220 ../../include/conversation.php:734
msgid "Poke"
msgstr ""
#: ../../include/Contact.php:221 ../../include/conversation.php:728
msgid "View Status"
msgstr "Visualizza stato"
#: ../../include/Contact.php:222 ../../include/conversation.php:729
msgid "View Profile"
msgstr "Visualizza profilo"
#: ../../include/Contact.php:223 ../../include/conversation.php:730
msgid "View Photos"
msgstr "Visualizza foto"
#: ../../include/Contact.php:224 ../../include/Contact.php:237
#: ../../include/conversation.php:731
msgid "Network Posts"
msgstr ""
#: ../../include/Contact.php:225 ../../include/Contact.php:237
#: ../../include/conversation.php:732
msgid "Edit Contact"
msgstr "Modifica contatti"
#: ../../include/Contact.php:226 ../../include/Contact.php:237
#: ../../include/conversation.php:733
msgid "Send PM"
msgstr "Invia messaggio privato"
#: ../../include/conversation.php:206
#, php-format
msgid "%1$s poked %2$s"
msgstr ""
#: ../../include/conversation.php:290
msgid "post/item"
msgstr "post/elemento"
#: ../../include/conversation.php:291
#, php-format
msgid "%1$s marked %2$s's %3$s as favorite"
msgstr "%1$s ha segnato il/la %3$s di %2$s come preferito"
#: ../../include/conversation.php:545 ../../object/Item.php:218
msgid "Categories:"
msgstr ""
#: ../../include/conversation.php:546 ../../object/Item.php:219
msgid "Filed under:"
msgstr ""
#: ../../include/conversation.php:630
msgid "remove"
msgstr "rimuovi"
#: ../../include/conversation.php:634
msgid "Delete Selected Items"
msgstr "Cancella elementi selezionati"
#: ../../include/conversation.php:792
#, php-format
msgid "%s likes this."
msgstr "Piace a %s."
#: ../../include/conversation.php:792
#, php-format
msgid "%s doesn't like this."
msgstr "Non piace a %s."
#: ../../include/conversation.php:796
#, php-format
msgid "<span %1$s>%2$d people</span> like this."
msgstr "Piace a <span %1$s>%2$d persone</span>."
#: ../../include/conversation.php:798
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this."
msgstr "Non piace a <span %1$s>%2$d persone</span>."
#: ../../include/conversation.php:804
msgid "and"
msgstr "e"
#: ../../include/conversation.php:807
#, php-format
msgid ", and %d other people"
msgstr "e altre %d persone"
#: ../../include/conversation.php:808
#, php-format
msgid "%s like this."
msgstr "Piace a %s."
#: ../../include/conversation.php:808
#, php-format
msgid "%s don't like this."
msgstr "Non piace a %s."
#: ../../include/conversation.php:832 ../../include/conversation.php:849
msgid "Visible to <strong>everybody</strong>"
msgstr "Visibile a <strong>tutti</strong>"
#: ../../include/conversation.php:834 ../../include/conversation.php:851
msgid "Please enter a video link/URL:"
msgstr "Inserisci un collegamento video / URL:"
#: ../../include/conversation.php:835 ../../include/conversation.php:852
msgid "Please enter an audio link/URL:"
msgstr "Inserisci un collegamento audio / URL:"
#: ../../include/conversation.php:836 ../../include/conversation.php:853
msgid "Tag term:"
msgstr "Tag:"
#: ../../include/conversation.php:838 ../../include/conversation.php:855
msgid "Where are you right now?"
msgstr "Dove sei ora?"
#: ../../include/conversation.php:898
msgid "upload photo"
msgstr "carica foto"
#: ../../include/conversation.php:900
msgid "attach file"
msgstr "allega file"
#: ../../include/conversation.php:902
msgid "web link"
msgstr "link web"
#: ../../include/conversation.php:903
msgid "Insert video link"
msgstr "Inserire collegamento video"
#: ../../include/conversation.php:904
msgid "video link"
msgstr "link video"
#: ../../include/conversation.php:905
msgid "Insert audio link"
msgstr "Inserisci collegamento audio"
#: ../../include/conversation.php:906
msgid "audio link"
msgstr "link audio"
#: ../../include/conversation.php:908
msgid "set location"
msgstr "posizione"
#: ../../include/conversation.php:910
msgid "clear location"
msgstr "canc. pos."
#: ../../include/conversation.php:917
msgid "permissions"
msgstr "permessi"
#: ../../include/plugin.php:389 ../../include/plugin.php:391
msgid "Click here to upgrade."
msgstr ""
#: ../../include/plugin.php:397
msgid "This action exceeds the limits set by your subscription plan."
msgstr ""
#: ../../include/plugin.php:402
msgid "This action is not available under your subscription plan."
msgstr ""
#: ../../boot.php:573
msgid "Delete this item?"
msgstr "Cancellare questo elemento?"
#: ../../boot.php:576
msgid "show fewer"
msgstr "mostra di meno"
#: ../../boot.php:783
#, php-format
msgid "Update %s failed. See error logs."
msgstr ""
#: ../../boot.php:785
#, php-format
msgid "Update Error at %s"
msgstr ""
#: ../../boot.php:886
msgid "Create a New Account"
msgstr "Crea un nuovo account"
#: ../../boot.php:914
msgid "Nickname or Email address: "
msgstr "Nome utente o indirizzo email: "
#: ../../boot.php:915
msgid "Password: "
msgstr "Password: "
#: ../../boot.php:918
msgid "Or login using OpenID: "
msgstr "O entra con OpenID:"
#: ../../boot.php:924
msgid "Forgot your password?"
msgstr "Hai dimenticato la password?"
#: ../../boot.php:1035
msgid "Requested account is not available."
msgstr ""
#: ../../boot.php:1112
msgid "Edit profile"
msgstr "Modifica il profilo"
#: ../../boot.php:1178
msgid "Message"
msgstr "Messaggio"
#: ../../boot.php:1300 ../../boot.php:1386
msgid "g A l F d"
msgstr "g A l d F"
#: ../../boot.php:1301 ../../boot.php:1387
msgid "F d"
msgstr "d F"
#: ../../boot.php:1346 ../../boot.php:1427
msgid "[today]"
msgstr "[oggi]"
#: ../../boot.php:1358
msgid "Birthday Reminders"
msgstr "Promemoria compleanni"
#: ../../boot.php:1359
msgid "Birthdays this week:"
msgstr "Compleanni questa settimana:"
#: ../../boot.php:1420
msgid "[No description]"
msgstr "[Nessuna descrizione]"
#: ../../boot.php:1438
msgid "Event Reminders"
msgstr "Promemoria"
#: ../../boot.php:1439
msgid "Events this week:"
msgstr "Eventi di questa settimana:"
#: ../../boot.php:1668
msgid "Status Messages and Posts"
msgstr ""
#: ../../boot.php:1675
msgid "Profile Details"
msgstr ""
#: ../../boot.php:1692
msgid "Events and Calendar"
msgstr ""
#: ../../boot.php:1699
msgid "Only You Can See This"
msgstr ""

View file

@ -1,20 +1,20 @@
Caro/a $username,
La tua password è stata cambiata come richiesto. Segnati questa informazione
(o cambia immediatamente la password con qualcosa che ti ricorderai).
Ciao $[username],
La tua password è cambiata come hai richiesto. Conserva queste
informazioni (oppure cambia immediatamente la password con
qualcosa che ti è più facile ricordare).
I tui dati di accesso sono i seguenti:
I tuoi dati di access sono i seguenti:
Sito: $siteurl
Nome: $email
Password: $new_password
Sito:»$[siteurl]
Nome utente:»$[email]
Password:»$[new_password]
Puoi cambiare la password dalla pagina delle impostazioni del tuo profilo dopo
aver effetuato l'accesso.
Puoi cambiare la tua password dalla pagina delle impostazioni dopo aver effettuato l'accesso.
Saluti,
L'amministratore di $sitename
l'amministratore di $[sitename]

View file

@ -1,22 +1,34 @@
Caro/a $username,
Grazie per la tua registrazione a $sitename. Il tuo account è stato creato.
I dati di accesso sono i seguenti:
Ciao $[username],
Grazie per aver effettuato la registrazione a $[sitename]. Il tuo account è stato creato.
I dettagli di accesso sono i seguenti
Sito: $siteurl
Nome: $email
Password: $password
Sito:»$[siteurl]
Nome utente:»$[email]
Password:»$[password]
Puoi cambiare la tua password dall pagina "Impostazioni" del tuo account dopo
aver effettuato l'accesso.
Puoi cambiare la tua password dalla pagina "Impostazioni" del tuo profilo dopo aver effettuato l'accesso
.
Prenditi un momento per rivedere le altre impostazioni dell'account su quella
pagina.
Prenditi un momento per dare un'occhiata alle altre impostazioni del tuo profilo nella stessa pagina.
Grazie e benventuo su $sitename.
Potrest voler aggiungere alcune informazioni di base a quelle predefinite del profilo
(nella pagina "Profilo") per rendere agli altri più facile trovarti.
Sinceramente,
L'amministratore di $sitename
Noi raccomandiamo di impostare il tuo nome completo, di aggiungere una foto,
di aggiungere alcune "parole chiavi" (molto utili per farsi nuovi amici) - e
magari il paese dove vivi; se non vuoi essere più dettagliato
di così.
Noi rispettiamo il tuo diritto alla privacy e nessuna di queste informazioni è indispensabile.
Se ancora non conosci nessuno qui, potrebbe esserti di aiuto
per farti nuovi e interessanti amici.
Grazie. Siamo contenti di darti il benvenuto su $[sitename]
Saluti,
l'amministratore di $[sitename]

View file

@ -1,23 +1,25 @@
E' stata ricevuta la richiesta di registrazione di un nuovo utente su
$sitename che richiede la tua approvazione.
I dettagli di login sono i seguenti:
Nome Completo: $username
Sito: $siteurl
Nome: $email
Su $[sitename] è stata ricevuta una nuova richiesta di registrazione da parte di un utente che richiede
la tua approvazione.
Per approvare la richiesta, visita il link:
I tuoi dati di accesso sono i seguenti:
$siteurl/regmod/allow/$hash
Nome completo:»$[username]
Sito:»$[siteurl]
Nome utente:»$[email]
Per rifiutare la richiesta e rimuovere l'account, visita:
Per approvare questa richiesta clicca su:
$siteurl/regmod/deny/$hash
$[siteurl]/regmod/allow/$[hash]
Per negare la richiesta e rimuove il profilo, clicca su:
$[siteurl]/regmod/deny/$[hash]
Grazie.

View file

@ -1,16 +1,17 @@
Caro/a $myname,
Ciao $[myname],
Hai appena ricevuto una richiesta di connessione su $sitename
da '$requestor'.
Hai appena ricevuto una richiesta di connessione da $[sitename]
Puoi visitare il suo profilo a $url.
da '$[requestor]'.
Accedi al tuo sito per vedere la completa presentazione e approvare o
ignorare/cancellare la richiesta.
Puoi visitare il suo profilo su $[url].
$siteurl
Accedi al tuo sito per vedere la richiesta completa
e approva o ignora/annulla la richiesta.
$[siteurl]
Saluti,
L'amministratore di $sitename
l'amministratore di $[sitename]

View file

@ -1,274 +1,99 @@
<?php
function string_plural_select_it($n){
return ($n != 1);
return ($n != 1);;
}
;
$a->strings["Not Found"] = "Non Trovato";
$a->strings["Page not found."] = "Pagina non trovata.";
$a->strings["Permission denied"] = "Permesso negato";
$a->strings["Post successful."] = "Inviato!";
$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]";
$a->strings["Contact settings applied."] = "Contatto modificato.";
$a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate.";
$a->strings["Permission denied."] = "Permesso negato.";
$a->strings["Delete this item?"] = "Cancellare questo elemento?";
$a->strings["Comment"] = "Commento";
$a->strings["Create a New Account"] = "Crea un Nuovo Account";
$a->strings["Register"] = "Regitrati";
$a->strings["Logout"] = "Esci";
$a->strings["Login"] = "Accedi";
$a->strings["Nickname or Email address: "] = "Soprannome o indirizzo Email: ";
$a->strings["Password: "] = "Password: ";
$a->strings["OpenID: "] = "OpenID:";
$a->strings["Forgot your password?"] = "Dimenticata la password?";
$a->strings["Password Reset"] = "Resetta password";
$a->strings["No profile"] = "Nessun profilo";
$a->strings["Edit profile"] = "Modifica il profilo";
$a->strings["Connect"] = "Connetti";
$a->strings["Profiles"] = "Profili";
$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili";
$a->strings["Change profile photo"] = "Cambia la foto del profilo";
$a->strings["Create New Profile"] = "Crea un nuovo profilo";
$a->strings["Profile Image"] = "Immagine del Profilo";
$a->strings["visible to everybody"] = "visibile a tutti";
$a->strings["Edit visibility"] = "Modifica visibilità";
$a->strings["Location:"] = "Posizione:";
$a->strings["Gender:"] = "Genere:";
$a->strings["Status:"] = "Stato:";
$a->strings["Homepage:"] = "Homepage:";
$a->strings["g A l F d"] = "g A l d F";
$a->strings["F d"] = "d F";
$a->strings["Birthday Reminders"] = "Promemoria Compleanni";
$a->strings["Birthdays this week:"] = "Compleanni questa settimana:";
$a->strings["[today]"] = "[oggi]";
$a->strings["Event Reminders"] = "Promemoria";
$a->strings["Events this week:"] = "Eventi di questa settimana:";
$a->strings["[No description]"] = "[Nessuna descrizione]";
$a->strings["Status"] = "Stato";
$a->strings["Profile"] = "Profilo";
$a->strings["Photos"] = "Foto";
$a->strings["Events"] = "Eventi";
$a->strings["Personal Notes"] = "Note personali";
$a->strings["Welcome back %s"] = "Bentornato %s";
$a->strings["Manage Identities and/or Pages"] = "Gestisci Indentità e/o Pagine";
$a->strings["(Toggle between different identities or community/group pages which share your account details.)"] = "(Passa tra diverse identità o pagine di comunità/gruppi che condividono i dettagli del tuo account.)";
$a->strings["Select an identity to manage: "] = "Seleziona una identità da gestire:";
$a->strings["Contact not found."] = "Contatto non trovato.";
$a->strings["Repair Contact Settings"] = "Ripara il contatto";
$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ATTENZIONE: Queste sono impostazioni avanzate</strong> e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più";
$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Usa <strong>ora</strong> il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina.";
$a->strings["Return to contact editor"] = "Ritorna alla modifica contatto";
$a->strings["Name"] = "Nome";
$a->strings["Account Nickname"] = "Nome utente";
$a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - al posto del nome utente";
$a->strings["Account URL"] = "URL dell'utente";
$a->strings["Friend Request URL"] = "URL Richiesta Amicizia";
$a->strings["Friend Confirm URL"] = "URL Conferma Amicizia";
$a->strings["Notification Endpoint URL"] = "URL Notifiche";
$a->strings["Poll/Feed URL"] = "URL Feed";
$a->strings["New photo from this URL"] = "Nuova foto da questo URL";
$a->strings["Submit"] = "Invia";
$a->strings["People Search"] = "Cerca persone";
$a->strings["No matches"] = "Nessun risultato";
$a->strings["Image exceeds size limit of %d"] = "La dimensionde dell'immagine supera il limite di %d";
$a->strings["Unable to process image."] = "Impossibile elaborare l'immagine.";
$a->strings["Wall Photos"] = "Foto Bacheca";
$a->strings["Image upload failed."] = "Caricamento immagine fallito.";
$a->strings["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato.";
$a->strings["Tips for New Members"] = "Consigli per i Nuovi Utenti";
$a->strings["Disallowed profile URL."] = "Indirizzo profilo non permesso.";
$a->strings["This site is not configured to allow communications with other networks."] = "Questo sito non è configurato per permettere la comunicazione con altri network.";
$a->strings["No compatible communication protocols or feeds were discovered."] = "Non sono stati trovati nessun protocollo di comunicazione o feed compatibili.";
$a->strings["The profile address specified does not provide adequate information."] = "L'indirizzo del profilo specificato non fornisce adeguate informazioni.";
$a->strings["An author or name was not found."] = "Non è stato trovato un nome dell'autore";
$a->strings["No browser URL could be matched to this address."] = "Nessun URL puo' essere associato a questo indirizzo.";
$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito.";
$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profilo limitato. Questa persona non sarà in grado di ricevere nofiche dirette/personali da te.";
$a->strings["Unable to retrieve contact information."] = "Impossibile recuperare informazioni sul contatto.";
$a->strings["following"] = "segue";
$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il ritaglio è fallito.";
$a->strings["Profile Photos"] = "Foto del profilo";
$a->strings["Image size reduction [%s] failed."] = "Riduzione della dimensione dell'immagine [%s] fallito.";
$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente.";
$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine";
$a->strings["Upload File:"] = "Carica un file:";
$a->strings["Upload Profile Photo"] = "Carica la Foto del Profilo";
$a->strings["Upload"] = "Carica";
$a->strings["or"] = "o";
$a->strings["skip this step"] = "salta questo passaggio";
$a->strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album";
$a->strings["Crop Image"] = "Ritaglia immagine";
$a->strings["Please adjust the image cropping for optimum viewing."] = "Sistema il ritaglio dell'imagine per una visualizzazione ottimale.";
$a->strings["Done Editing"] = "Fatto";
$a->strings["Image uploaded successfully."] = "Immagine caricata con successo.";
$a->strings["Welcome to %s"] = "Benvenuto su %s";
$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per vederlo]";
$a->strings["File exceeds size limit of %d"] = "Il file supera il limite di dimensione di %d";
$a->strings["Help:"] = "Guida:";
$a->strings["Help"] = "Guida";
$a->strings["Not Found"] = "Non trovato";
$a->strings["Page not found."] = "Pagina non trovata.";
$a->strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d";
$a->strings["File upload failed."] = "Caricamento del file non riuscito.";
$a->strings["Friend Suggestions"] = "Contatti suggeriti";
$a->strings["No suggestions. This works best when you have more than one contact/friend."] = "Nessun suggerimento. Funziona meglio quando si ha più di un contatto.";
$a->strings["Ignore/Hide"] = "Ignora / Nascondi";
$a->strings["Registration details for %s"] = "Dettagli registrazione per %s";
$a->strings["Administrator"] = "Amministratore";
$a->strings["Account approved."] = "Account approvato.";
$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s";
$a->strings["Please login."] = "Accedi.";
$a->strings["Profile not found."] = "Profilo non trovato.";
$a->strings["Profile Name is required."] = "Il Nome Profilo è richiesto .";
$a->strings["Profile updated."] = "Profilo aggiornato.";
$a->strings["Profile deleted."] = "Profilo elminato.";
$a->strings["Profile-"] = "Profilo-";
$a->strings["New profile created."] = "Nuovo profilo creato.";
$a->strings["Profile unavailable to clone."] = "Impossibile duplicare il plrofilo.";
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?";
$a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato.";
$a->strings["Suggest Friends"] = "Suggerisci amici";
$a->strings["Suggest a friend for %s"] = "Suggerisci un amico a %s";
$a->strings["Event title and start time are required."] = "";
$a->strings["l, F j"] = "l j F";
$a->strings["Edit event"] = "Modifca l'evento";
$a->strings["link to source"] = "Collegamento all'originale";
$a->strings["Events"] = "Eventi";
$a->strings["Create New Event"] = "Crea un nuovo evento";
$a->strings["Previous"] = "Precendente";
$a->strings["Next"] = "Successivo";
$a->strings["hour:minute"] = "ora:minuti";
$a->strings["Event details"] = "Dettagli dell'evento";
$a->strings["Format is %s %s. Starting date and Title are required."] = "";
$a->strings["Event Starts:"] = "L'evento inizia:";
$a->strings["Required"] = "";
$a->strings["Finish date/time is not known or not relevant"] = "La data/ora di fine non è definita";
$a->strings["Event Finishes:"] = "L'evento finisce:";
$a->strings["Adjust for viewer timezone"] = "Visualizza con il fuso orario di chi legge";
$a->strings["Description:"] = "Descrizione:";
$a->strings["Location:"] = "Posizione:";
$a->strings["Title:"] = "";
$a->strings["Share this event"] = "Condividi questo evento";
$a->strings["Cancel"] = "Annulla";
$a->strings["Tag removed"] = "Tag rimosso";
$a->strings["Remove Item Tag"] = "Rimuovi il tag";
$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: ";
$a->strings["Remove"] = "Rimuovi";
$a->strings["%s welcomes %s"] = "%s dà il benvenuto a %s";
$a->strings["Authorize application connection"] = "Autorizza la connessione dell'applicazione";
$a->strings["Return to your app and insert this Securty Code:"] = "Torna alla tua applicazione e inserisci questo codice di sicurezza:";
$a->strings["Please login to continue."] = "Effettua il login per continuare.";
$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?";
$a->strings["Yes"] = "Si";
$a->strings["No"] = "No";
$a->strings["Edit Profile Details"] = "Modifica i Dettagli del Profilo";
$a->strings["View this profile"] = "Visualizza questo profilo";
$a->strings["Create a new profile using these settings"] = "Crea un nuovo profilo usando queste impostazioni";
$a->strings["Clone this profile"] = "Clona questo profilo";
$a->strings["Delete this profile"] = "Cancella questo profilo";
$a->strings["Profile Name:"] = "Nome del profilo:";
$a->strings["Your Full Name:"] = "Il tuo nome completo:";
$a->strings["Title/Description:"] = "Breve descrizione (es. titolo, posizione, altro):";
$a->strings["Your Gender:"] = "Il tuo sesso:";
$a->strings["Birthday (%s):"] = "Compleanno (%s)";
$a->strings["Street Address:"] = "Indirizzo:";
$a->strings["Locality/City:"] = "Località/Città:";
$a->strings["Postal/Zip Code:"] = "CAP:";
$a->strings["Country:"] = "Nazione:";
$a->strings["Region/State:"] = "Regione/Stato:";
$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Stato sentimentale:";
$a->strings["Who: (if applicable)"] = "Con chi: (se possibile)";
$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Esempio: cathy123, Cathy Williams, cathy@example.com";
$a->strings["Sexual Preference:"] = "Preferenza sessuale:";
$a->strings["Homepage URL:"] = "Indirizzo homepage:";
$a->strings["Political Views:"] = "Orientamento politico:";
$a->strings["Religious Views:"] = "Orientamento religioso:";
$a->strings["Public Keywords:"] = "Parole chiave pubbliche:";
$a->strings["Private Keywords:"] = "Parole chiave private:";
$a->strings["Example: fishing photography software"] = "Esempio: pesca fotografia programmazione";
$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Utilizzato per suggerire potenziali amici, può essere visto da altri)";
$a->strings["(Used for searching profiles, never shown to others)"] = "(Usato per cercare tra i profili, mai mostrato ad altri)";
$a->strings["Tell us about yourself..."] = "Racconta di te...";
$a->strings["Hobbies/Interests"] = "Hobbie/Interessi";
$a->strings["Contact information and Social Networks"] = "Informazioni su contatti e Social network";
$a->strings["Musical interests"] = "Interessi musicali";
$a->strings["Books, literature"] = "Libri, letteratura";
$a->strings["Television"] = "Televisione";
$a->strings["Film/dance/culture/entertainment"] = "Film/danza/cultura/intrattenimento";
$a->strings["Love/romance"] = "Amore/romanticismo";
$a->strings["Work/employment"] = "Lavoro/impiego";
$a->strings["School/education"] = "Scuola/educazione";
$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Questo è il tuo profilo <strong>publico</strong>.<br /><strong>Potrebbe</strong> essere visto da chiunque attraverso internet.";
$a->strings["Age: "] = "Età : ";
$a->strings["Edit/Manage Profiles"] = "Modifica / Gestisci profili";
$a->strings["Item not found."] = "Elemento non trovato.";
$a->strings["everybody"] = "tutti";
$a->strings["Missing some important data!"] = "Mancano alcuni dati importanti!";
$a->strings["Update"] = "Aggiorna";
$a->strings["Failed to connect with email account using the settings provided."] = "Impossibile collegarsi all'account email con i parametri forniti.";
$a->strings["Email settings updated."] = "Impostazioni e-mail aggiornate.";
$a->strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Passoword non cambiata.";
$a->strings["Empty passwords are not allowed. Password unchanged."] = "Password vuote non sono consentite. Password non cambiata.";
$a->strings["Password changed."] = "Password cambiata.";
$a->strings["Password update failed. Please try again."] = "Aggiornamento password fallito. Prova ancora.";
$a->strings[" Please use a shorter name."] = " Usa un nome più corto.";
$a->strings[" Name too short."] = " Nome troppo corto.";
$a->strings[" Not valid email."] = " Email non valida.";
$a->strings[" Cannot change to that email."] = "Non puoi usare quella email.";
$a->strings["Settings updated."] = "Impostazioni aggiornate.";
$a->strings["Account settings"] = "Parametri account";
$a->strings["Connector settings"] = "Impostazioni connettori";
$a->strings["Plugin settings"] = "Impostazioni plugin";
$a->strings["Connections"] = "Connessioni";
$a->strings["Export personal data"] = "Esporta dati personali";
$a->strings["Add application"] = "Aggiungi applicazione";
$a->strings["Cancel"] = "Annulla";
$a->strings["Name"] = "Nome";
$a->strings["Consumer Key"] = "Consumer Key";
$a->strings["Consumer Secret"] = "Consumer Secret";
$a->strings["Redirect"] = "Redirect";
$a->strings["Icon url"] = "Url icona";
$a->strings["You can't edit this application."] = "Non puoi modificare questa applicazione.";
$a->strings["Connected Apps"] = "Applicazioni Collegate";
$a->strings["Edit"] = "Modifica";
$a->strings["Delete"] = "Cancella";
$a->strings["Client key starts with"] = "Chiave del client inizia con";
$a->strings["No name"] = "Nessun nome";
$a->strings["Remove authorization"] = "Rimuovi l'autorizzazione";
$a->strings["No Plugin settings configured"] = "Nessun Plugin ha delle configurazioni che puoi modificare";
$a->strings["Plugin Settings"] = "Impostazioni Plugin";
$a->strings["Built-in support for %s connectivity is %s"] = "Il supporto integrato per la connettività con %s è %s";
$a->strings["Diaspora"] = "Diaspora";
$a->strings["enabled"] = "abilitato";
$a->strings["disabled"] = "disabilitato";
$a->strings["StatusNet"] = "StatusNet";
$a->strings["Connector Settings"] = "Impostazioni Connettore";
$a->strings["Email/Mailbox Setup"] = "Impostazioni Email";
$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)";
$a->strings["Last successful email check:"] = "Ultimo controllo email eseguito con successo:";
$a->strings["Email access is disabled on this site."] = "L'accesso Email è disabilitato su questo sito.";
$a->strings["IMAP server name:"] = "Nome server IMAP:";
$a->strings["IMAP port:"] = "Porta IMAP:";
$a->strings["Security:"] = "Sicurezza:";
$a->strings["None"] = "Nessuna";
$a->strings["Email login name:"] = "Nome utente Email:";
$a->strings["Email password:"] = "Password Email:";
$a->strings["Reply-to address:"] = "Indirizzo di risposta:";
$a->strings["Send public posts to all email contacts:"] = "Invia i messaggi pubblici ai contatti email:";
$a->strings["Normal Account"] = "Account normale";
$a->strings["This account is a normal personal profile"] = "Questo account è un normale profilo personale";
$a->strings["Soapbox Account"] = "Account Palco";
$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Accetta automaticamente le richieste di connessione/amicizia come fan che possono solamente leggere";
$a->strings["Community/Celebrity Account"] = "Account Celebrità/Comunità";
$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Accetta automaticamente le richieste di connessione/amicizia come fan che possono scrivere in bacheca";
$a->strings["Automatic Friend Account"] = "Account Amico Automatico";
$a->strings["Automatically approve all connection/friend requests as friends"] = "Accetta automaticamente le richieste di connessione/amicizia come amici";
$a->strings["OpenID:"] = "OpenID:";
$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opzionale) Consente di loggarti in questo account con questo OpenID";
$a->strings["Publish your default profile in your local site directory?"] = "Pubblica il tuo profilo predefinito nell'elenco locale del sito";
$a->strings["Publish your default profile in the global social directory?"] = "Pubblica il tuo profilo predefinito nell'elenco sociale globale";
$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito";
$a->strings["Hide profile details and all your messages from unknown viewers?"] = "Nascondi i dettagli del profilo e tutti i tuoi messaggi ai visitatori sconosciuti?";
$a->strings["Allow friends to post to your profile page?"] = "Permetti agli amici di scrivere sulla tua pagina profilo?";
$a->strings["Allow friends to tag your posts?"] = "Permetti agli amici di taggare i tuoi messaggi?";
$a->strings["Profile is <strong>not published</strong>."] = "Il profilo <strong>non è pubblicato</strong>.";
$a->strings["Your Identity Address is"] = "Il tuo Indirizzo Identità è";
$a->strings["Account Settings"] = "Impostazioni Account";
$a->strings["Password Settings"] = "Impostazioni Password";
$a->strings["New Password:"] = "Nuova Password:";
$a->strings["Confirm:"] = "Conferma:";
$a->strings["Leave password fields blank unless changing"] = "Lascia questi campi in bianco per non effettuare variazioni alla password";
$a->strings["Basic Settings"] = "Impostazioni base";
$a->strings["Full Name:"] = "Nome completo:";
$a->strings["Email Address:"] = "Indirizzo Email:";
$a->strings["Your Timezone:"] = "Il tuo fuso orario:";
$a->strings["Default Post Location:"] = "Località di default per l'invio:";
$a->strings["Use Browser Location:"] = "Usa la località rilevata dal browser:";
$a->strings["Display Theme:"] = "Tema:";
$a->strings["Security and Privacy Settings"] = "Impostazioni di Sicurezza e Privacy";
$a->strings["Maximum Friend Requests/Day:"] = "Numero massimo di richieste di amicizia per giorno:";
$a->strings["(to prevent spam abuse)"] = "(per prevenire lo spam)";
$a->strings["Default Post Permissions"] = "Permessi di default per i messaggi";
$a->strings["(click to open/close)"] = "(clicca per aprire/chiudere)";
$a->strings["Automatically expire posts after days:"] = "Cancella automaticamente i messaggi dopo giorni:";
$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Se lasciato vuoto, i messaggi non verranno cancellati.";
$a->strings["Notification Settings"] = "Impostazioni Notifiche";
$a->strings["Send a notification email when:"] = "Invia una mail di notifica quando:";
$a->strings["You receive an introduction"] = "Ricevi una presentazione";
$a->strings["Your introductions are confirmed"] = "Le tue presentazioni sono confermate";
$a->strings["Someone writes on your profile wall"] = "Qualcuno scrive sulla bacheca del tuo profilo";
$a->strings["Someone writes a followup comment"] = "Qualcuno scrive un commento a un tuo messaggio";
$a->strings["You receive a private message"] = "Ricevi un messaggio privato";
$a->strings["Advanced Page Settings"] = "Impostazioni Avanzate Account";
$a->strings["Saved Searches"] = "Ricerche salvate";
$a->strings["Remove term"] = "Rimuovi termine";
$a->strings["Public access denied."] = "Accesso pubblico non consentito.";
$a->strings["Search This Site"] = "Cerca nel sito";
$a->strings["No results."] = "Nessun risultato.";
$a->strings["Photo Albums"] = "Album Foto";
$a->strings["Photo Albums"] = "Album foto";
$a->strings["Contact Photos"] = "Foto dei contatti";
$a->strings["Contact information unavailable"] = "Informazione sul contatto non disponibile";
$a->strings["Upload New Photos"] = "Carica nuove foto";
$a->strings["everybody"] = "tutti";
$a->strings["Contact information unavailable"] = "I dati di questo contatto non sono disponibili";
$a->strings["Profile Photos"] = "Foto del profilo";
$a->strings["Album not found."] = "Album non trovato.";
$a->strings["Delete Album"] = "Elimina album";
$a->strings["Delete Photo"] = "Elimina foto";
$a->strings["was tagged in a"] = "è stato taggato in";
$a->strings["Delete Album"] = "Rimuovi album";
$a->strings["Delete Photo"] = "Rimuovi foto";
$a->strings["was tagged in a"] = "è stato taggato in una";
$a->strings["photo"] = "foto";
$a->strings["by"] = "da";
$a->strings["Image exceeds size limit of "] = "L'immagine supera il limite di dimensione di ";
$a->strings["Image exceeds size limit of "] = "L'immagine supera il limite di";
$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto.";
$a->strings["Unable to process image."] = "Impossibile caricare l'immagine.";
$a->strings["Image upload failed."] = "Caricamento immagine fallito.";
$a->strings["Public access denied."] = "Accesso negato.";
$a->strings["No photos selected"] = "Nessuna foto selezionata";
$a->strings["Access to this item is restricted."] = "L'accesso a questo elemento è limitato.";
$a->strings["Access to this item is restricted."] = "Questo oggetto non è visibile a tutti.";
$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "";
$a->strings["You have used %1$.2f Mbytes of photo storage."] = "";
$a->strings["Upload Photos"] = "Carica foto";
$a->strings["New album name: "] = "Nome nuovo album: ";
$a->strings["or existing album name: "] = "o nome di un album esistente: ";
$a->strings["Do not show a status post for this upload"] = "Non creare un post per questo upload";
$a->strings["Permissions"] = "Permessi";
$a->strings["Edit Album"] = "Modifica album";
$a->strings["Show Newest First"] = "";
$a->strings["Show Oldest First"] = "";
$a->strings["View Photo"] = "Vedi foto";
$a->strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere limitato.";
$a->strings["Photo not available"] = "Foto non disponibile";
@ -279,32 +104,149 @@ $a->strings["Private Message"] = "Messaggio privato";
$a->strings["View Full Size"] = "Vedi dimensione intera";
$a->strings["Tags: "] = "Tag: ";
$a->strings["[Remove any tag]"] = "[Rimuovi tutti i tag]";
$a->strings["New album name"] = "Nuovo nome album";
$a->strings["Caption"] = "Didascalia";
$a->strings["Add a Tag"] = "Aggiungi un tag";
$a->strings["Rotate CW (right)"] = "";
$a->strings["Rotate CCW (left)"] = "";
$a->strings["New album name"] = "Nuovo nome dell'album";
$a->strings["Caption"] = "Titolo";
$a->strings["Add a Tag"] = "Aggiungi tag";
$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
$a->strings["I like this (toggle)"] = "Mi piace questo (metti/togli)";
$a->strings["I don't like this (toggle)"] = "Non mi piace questo (metti/togli)";
$a->strings["I like this (toggle)"] = "Mi piace (clic per cambiare)";
$a->strings["I don't like this (toggle)"] = "Non mi piace (clic per cambiare)";
$a->strings["Share"] = "Condividi";
$a->strings["Please wait"] = "Attendi";
$a->strings["This is you"] = "Questo sei tu";
$a->strings["Comment"] = "Commento";
$a->strings["Preview"] = "Anteprima";
$a->strings["Delete"] = "Rimuovi";
$a->strings["View Album"] = "Sfoglia l'album";
$a->strings["Recent Photos"] = "Foto recenti";
$a->strings["Upload New Photos"] = "Carica nuova foto";
$a->strings["View Album"] = "Vedi album";
$a->strings["Welcome to Friendika"] = "Benvenuto in Friendika";
$a->strings["New Member Checklist"] = "Cose da fare per i Nuovi Utenti";
$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page."] = "Vorremmo offrire alcuni suggerimenti e link per contribuire a rendere la tua esperienza piacevole. Fai clic su un elemento per visitare la pagina corrispondente.";
$a->strings["On your <em>Settings</em> page - change your initial password. Also make a note of your Identity Address. This will be useful in making friends."] = "Nella tua pagina <em>Impostazioni</em> - cambia la tua password iniziale. E prendi nota del tuo Indirizzo Identità. Questo tornerà utile nello stringere amicizie.";
$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti.";
$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno.";
$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook.";
$a->strings["Enter your email access information on your Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Inserisci i dati per accedere alla tua email nella pagina Impostazioni se vuoi importare e interagire con amici o mailing list dalla posta in arrivo della tua email.";
$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Modifica il tuo profilo <strong>predefinito</strong> a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti.";
$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie.";
$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Connect</em> dialog."] = "La pagina Contatti è il centro di controllo per la gestione delle amicizie e per collegarti ad amici su altri network. Basta che inserisci il loro indirizzo o l'URL del sito nel box <em>Connetti</em>.";
$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link <em>Connetti</em> o <em>Segui</em> nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto.";
$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete";
$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della <strong>guida</strong> possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse.";
$a->strings["Not available."] = "Non disponibile.";
$a->strings["Community"] = "Comunità";
$a->strings["No results."] = "Nessun risultato.";
$a->strings["This is Friendica, version"] = "Questo è Friendica, versione";
$a->strings["running at web location"] = "in esecuzione sull'indirizzo web";
$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Visita <a href=\"http://friendica.com\">Friendica.com</a> per saperne di più sul progetto Friendica.";
$a->strings["Bug reports and issues: please visit"] = "Segnalazioni di bug e problemi: visita";
$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com";
$a->strings["Installed plugins/addons/apps:"] = "Plugin/addon/applicazioni instalate";
$a->strings["No installed plugins/addons/apps"] = "Nessun plugin/addons/applicazione installata";
$a->strings["Item not found"] = "Oggetto non trovato";
$a->strings["Edit post"] = "Modifica messaggio";
$a->strings["Post to Email"] = "Invia a email";
$a->strings["Edit"] = "Modifica";
$a->strings["Upload photo"] = "Carica foto";
$a->strings["Attach file"] = "Allega file";
$a->strings["Insert web link"] = "Inserisci link";
$a->strings["Insert YouTube video"] = "Inserisci video da YouTube";
$a->strings["Insert Vorbis [.ogg] video"] = "Inserisci video Vorbis [.ogg]";
$a->strings["Insert Vorbis [.ogg] audio"] = "Inserisci audio Vorbis [.ogg]";
$a->strings["Set your location"] = "La tua posizione";
$a->strings["Clear browser location"] = "Rimuovi la localizzazione data dal browser";
$a->strings["Permission settings"] = "Impostazioni permessi";
$a->strings["CC: email addresses"] = "CC: indirizzi email";
$a->strings["Public post"] = "Messaggio pubblico";
$a->strings["Set title"] = "Scegli un titolo";
$a->strings["Categories (comma-separated list)"] = "Categorie (lista separata da virgola)";
$a->strings["Example: bob@example.com, mary@example.com"] = "Esempio: bob@example.com, mary@example.com";
$a->strings["This introduction has already been accepted."] = "Questa presentazione è già stata accettata.";
$a->strings["Profile location is not valid or does not contain profile information."] = "L'indirizzo del profilo non è valido o non contiene un profilo.";
$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario.";
$a->strings["Warning: profile location has no profile photo."] = "Attenzione: l'indirizzo del profilo non ha una foto.";
$a->strings["%d required parameter was not found at the given location"] = array(
0 => "%d parametro richiesto non è stato trovato all'indirizzo dato",
1 => "%d parametri richiesti non sono stati trovati all'indirizzo dato",
);
$a->strings["Introduction complete."] = "Presentazione completa.";
$a->strings["Unrecoverable protocol error."] = "Errore di comunicazione.";
$a->strings["Profile unavailable."] = "Profilo non disponibile.";
$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessione per oggi.";
$a->strings["Spam protection measures have been invoked."] = "Sono state attivate le misure di protezione contro lo spam.";
$a->strings["Friends are advised to please try again in 24 hours."] = "Gli amici sono pregati di riprovare tra 24 ore.";
$a->strings["Invalid locator"] = "Invalid locator";
$a->strings["Invalid email address."] = "Indirizzo email non valido.";
$a->strings["This account has not been configured for email. Request failed."] = "";
$a->strings["Unable to resolve your name at the provided location."] = "Impossibile risolvere il tuo nome nella posizione indicata.";
$a->strings["You have already introduced yourself here."] = "Ti sei già presentato qui.";
$a->strings["Apparently you are already friends with %s."] = "Pare che tu e %s siate già amici.";
$a->strings["Invalid profile URL."] = "Indirizzo profilo non valido.";
$a->strings["Disallowed profile URL."] = "Indirizzo profilo non permesso.";
$a->strings["Failed to update contact record."] = "Errore nell'aggiornamento del contatto.";
$a->strings["Your introduction has been sent."] = "La tua presentazione è stata inviata.";
$a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione.";
$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a <strong>questo</strong> profilo.";
$a->strings["Hide this contact"] = "";
$a->strings["Welcome home %s."] = "Bentornato a casa %s.";
$a->strings["Please confirm your introduction/connection request to %s."] = "Conferma la tua richiesta di connessione con %s.";
$a->strings["Confirm"] = "Conferma";
$a->strings["[Name Withheld]"] = "[Nome Nascosto]";
$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:";
$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Connetti un email come follower</strike> (in arrivo)";
$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Se non sei un membro del web sociale libero, <a href=\"http://dir.friendica.com/siteinfo\">segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi</a>";
$a->strings["Friend/Connection Request"] = "Richieste di amicizia/connessione";
$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
$a->strings["Please answer the following:"] = "Rispondi:";
$a->strings["Does %s know you?"] = "%s ti conosce?";
$a->strings["Add a personal note:"] = "Aggiungi una nota personale:";
$a->strings["Friendica"] = "Friendica";
$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
$a->strings["Diaspora"] = "Diaspora";
$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora.";
$a->strings["Your Identity Address:"] = "L'indirizzo della tua identità:";
$a->strings["Submit Request"] = "Invia richiesta";
$a->strings["Friendica Social Communications Server - Setup"] = "Friendica Social Communications Server - Setup";
$a->strings["Could not connect to database."] = " Impossibile collegarsi con il database.";
$a->strings["Could not create table."] = "Impossibile creare le tabelle.";
$a->strings["Your Friendica site database has been installed."] = "Il tuo Friendica è stato installato.";
$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql";
$a->strings["Please see the file \"INSTALL.txt\"."] = "Leggi il file \"INSTALL.txt\".";
$a->strings["System check"] = "Controllo sistema";
$a->strings["Check again"] = "Controlla ancora";
$a->strings["Database connection"] = "Connessione al database";
$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Per installare Friendica dobbiamo sapere come collegarci al tuo database.";
$a->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.";
$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Il database dovrà già esistere. Se non esiste, crealo prima di continuare.";
$a->strings["Database Server Name"] = "Nome del database server";
$a->strings["Database Login Name"] = "Nome utente database";
$a->strings["Database Login Password"] = "Password utente database";
$a->strings["Database Name"] = "Nome database";
$a->strings["Site administrator email address"] = "Indirizzo email dell'amministratore del sito";
$a->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.";
$a->strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo sito web";
$a->strings["Site settings"] = "Impostazioni sito";
$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web";
$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "";
$a->strings["PHP executable path"] = "Percorso eseguibile PHP";
$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "";
$a->strings["Command line PHP"] = "PHP da riga di comando";
$a->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\".";
$a->strings["This is required for message delivery to work."] = "E' obbligatorio per far funzionare la consegna dei messaggi.";
$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione";
$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\".";
$a->strings["Generate encryption keys"] = "Genera chiavi di criptazione";
$a->strings["libCurl PHP module"] = "modulo PHP libCurl";
$a->strings["GD graphics PHP module"] = "modulo PHP GD graphics";
$a->strings["OpenSSL PHP module"] = "modulo PHP OpenSSL";
$a->strings["mysqli PHP module"] = "modulo PHP mysqli";
$a->strings["mb_string PHP module"] = "modulo PHP mb_string";
$a->strings["Apache mod_rewrite module"] = "";
$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato";
$a->strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto ma non installato.";
$a->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.";
$a->strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto ma non installato.";
$a->strings["Error: mysqli PHP module required but not installed."] = "Errore: il modulo mysqli di PHP è richiesto ma non installato";
$a->strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto ma non installato.";
$a->strings["The web installer needs to be able to create a file called \".htconfig.php\ in the top folder of your web server and it is unable to do so."] = "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo.";
$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server puo' scrivere il file nella tua cartella, anche se tu puoi.";
$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "";
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "";
$a->strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile";
$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
$a->strings["Url rewrite is working"] = "";
$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito.";
$a->strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori.";
$a->strings["<h1>What next</h1>"] = "";
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller.";
$a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i";
$a->strings["Time Conversion"] = "Conversione Ora";
$a->strings["Friendika provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendika fornisce questo servizio per la condivisione di eventi con altre reti e contatti in fusi orari sconosciuti.";
@ -312,55 +254,107 @@ $a->strings["UTC time: %s"] = "Ora UTC: %s";
$a->strings["Current timezone: %s"] = "Fuso orario corrente: %s";
$a->strings["Converted localtime: %s"] = "Ora locale convertita: %s";
$a->strings["Please select your timezone:"] = "Selezionare il tuo fuso orario:";
$a->strings["Item has been removed."] = "L'elemento è stato rimosso.";
$a->strings["Item not found"] = "Elemento non trovato";
$a->strings["Edit post"] = "Modifica messaggio";
$a->strings["Post to Email"] = "Invia a Email";
$a->strings["Upload photo"] = "Carica foto";
$a->strings["Attach file"] = "Allega file";
$a->strings["Insert web link"] = "Inserisci link";
$a->strings["Insert YouTube video"] = "Inserisci video da YouTube";
$a->strings["Insert Vorbis [.ogg] video"] = "Inserisci video Theora [.ogg]";
$a->strings["Insert Vorbis [.ogg] audio"] = "Inserisci audio Vorbis [.ogg]";
$a->strings["Set your location"] = "Imposta la tua posizione";
$a->strings["Clear browser location"] = "Cancella la tua posizione data dal browser";
$a->strings["Permission settings"] = "Impostazione permessi";
$a->strings["CC: email addresses"] = "CC: indirizzi email";
$a->strings["Public post"] = "Messaggio pubblico";
$a->strings["Example: bob@example.com, mary@example.com"] = "Esempio: bob@example.com, mary@example.com";
$a->strings["%s : Not a valid email address."] = "%s: Non è un indirizzo email valido.";
$a->strings["Please join my network on %s"] = "Unisciti al mio social network su %s";
$a->strings["%s : Message delivery failed."] = "%s: Consegna del messaggio fallita.";
$a->strings["%d message sent."] = array(
0 => "%d messaggio inviato.",
1 => "%d messaggi inviati.",
$a->strings["Poke/Prod"] = "";
$a->strings["poke, prod or do other things to somebody"] = "";
$a->strings["Recipient"] = "";
$a->strings["Choose what you wish to do to recipient"] = "";
$a->strings["Make this post private"] = "";
$a->strings["Profile Match"] = "Profili corrispondenti";
$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito.";
$a->strings["is interested in:"] = "è interessato a:";
$a->strings["Connect"] = "Connetti";
$a->strings["No matches"] = "Nessun risultato";
$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili.";
$a->strings["Visible to:"] = "Visibile a:";
$a->strings["No such group"] = "Nessun gruppo";
$a->strings["Group is empty"] = "Il gruppo è vuoto";
$a->strings["Group: "] = "Gruppo: ";
$a->strings["Select"] = "Seleziona";
$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s";
$a->strings["%s from %s"] = "%s da %s";
$a->strings["View in context"] = "Vedi nel contesto";
$a->strings["%d comment"] = array(
0 => "%d commento",
1 => "%d commenti",
);
$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili";
$a->strings["Send invitations"] = "Invia inviti";
$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:";
$a->strings["Your message:"] = "Il tuo messaggio:";
$a->strings["Please join my social network on %s"] = "Unisciti al mio social network su %s";
$a->strings["To accept this invitation, please visit:"] = "Per accettare questo invito visita:";
$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code";
$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una volta registrato, connettiti con me sul mio profilo a:";
$a->strings["{0} wants to be your friend"] = "{0} vuole essere tuo amico";
$a->strings["{0} sent you a message"] = "{0} ti ha inviato un messaggio";
$a->strings["{0} requested registration"] = "{0} chiede la registrazione";
$a->strings["{0} commented %s's post"] = "{0} ha commentato il post di %s";
$a->strings["{0} liked %s's post"] = "a {0} piace il post di %s";
$a->strings["{0} disliked %s's post"] = "a {0} non piace il post di %s";
$a->strings["{0} is now friends with %s"] = "{0} ora è amico di %s";
$a->strings["{0} posted"] = "{0} ha inviato un nuovo messaggio";
$a->strings["{0} tagged %s's post with #%s"] = "{0} ha taggato il post di %s con #%s";
$a->strings["Could not access contact record."] = "Non si puo' accedere al contatto.";
$a->strings["comment"] = array(
0 => "",
1 => "commento",
);
$a->strings["show more"] = "mostra di più";
$a->strings["like"] = "mi piace";
$a->strings["dislike"] = "non mi piace";
$a->strings["Share this"] = "Condividi questo";
$a->strings["share"] = "condividi";
$a->strings["Bold"] = "";
$a->strings["Italic"] = "";
$a->strings["Underline"] = "";
$a->strings["Quote"] = "";
$a->strings["Code"] = "";
$a->strings["Image"] = "";
$a->strings["Link"] = "";
$a->strings["Video"] = "";
$a->strings["add star"] = "aggiungi a speciali";
$a->strings["remove star"] = "rimuovi da speciali";
$a->strings["toggle star status"] = "Inverti stato preferito";
$a->strings["starred"] = "preferito";
$a->strings["add tag"] = "aggiungi tag";
$a->strings["save to folder"] = "salva nella cartella";
$a->strings["to"] = "a";
$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca";
$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca";
$a->strings["Welcome to %s"] = "Benvenuto su %s";
$a->strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido.";
$a->strings["Discard"] = "Scarta";
$a->strings["Ignore"] = "Ignora";
$a->strings["System"] = "Sistema";
$a->strings["Network"] = "Rete";
$a->strings["Personal"] = "Personale";
$a->strings["Home"] = "Home";
$a->strings["Introductions"] = "Presentazioni";
$a->strings["Messages"] = "Messaggi";
$a->strings["Show Ignored Requests"] = "Mostra richieste ignorate";
$a->strings["Hide Ignored Requests"] = "Nascondi richieste ignorate";
$a->strings["Notification type: "] = "Tipo di notifica: ";
$a->strings["Friend Suggestion"] = "Amico suggerito";
$a->strings["suggested by %s"] = "sugerito da %s";
$a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri";
$a->strings["Post a new friend activity"] = "Invia una attività \"è ora amico con\"";
$a->strings["if applicable"] = "se applicabile";
$a->strings["Approve"] = "Approva";
$a->strings["Claims to be known to you: "] = "Dice di conoscerti: ";
$a->strings["yes"] = "si";
$a->strings["no"] = "no";
$a->strings["Approve as: "] = "Approva come: ";
$a->strings["Friend"] = "Amico";
$a->strings["Sharer"] = "Condivisore";
$a->strings["Fan/Admirer"] = "Fan/Ammiratore";
$a->strings["Friend/Connect Request"] = "Richiesta amicizia/connessione";
$a->strings["New Follower"] = "Qualcuno inizia a seguirti";
$a->strings["No introductions."] = "Nessuna presentazione.";
$a->strings["Notifications"] = "Notifiche";
$a->strings["%s liked %s's post"] = "a %s è piaciuto il messaggio di %s";
$a->strings["%s disliked %s's post"] = "a %s non è piaciuto il messaggio di %s";
$a->strings["%s is now friends with %s"] = "%s è ora amico di %s";
$a->strings["%s created a new post"] = "%s a creato un nuovo messaggio";
$a->strings["%s commented on %s's post"] = "%s ha commentato il messaggio di %s";
$a->strings["No more network notifications."] = "Nessuna nuova.";
$a->strings["Network Notifications"] = "Notifiche dalla rete";
$a->strings["No more system notifications."] = "Nessuna nuova notifica di sistema.";
$a->strings["System Notifications"] = "Notifiche di sistema";
$a->strings["No more personal notifications."] = "Nessuna nuova.";
$a->strings["Personal Notifications"] = "Notifiche personali";
$a->strings["No more home notifications."] = "Nessuna nuova.";
$a->strings["Home Notifications"] = "Notifiche bacheca";
$a->strings["Could not access contact record."] = "Non è possibile accedere al contatto.";
$a->strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato.";
$a->strings["Contact updated."] = "Contatto aggiornato.";
$a->strings["Failed to update contact record."] = "Errore aggiornando il contatto.";
$a->strings["Contact has been blocked"] = "Il contatto è stato bloccato";
$a->strings["Contact has been unblocked"] = "Il contatto è stato sbloccato";
$a->strings["Contact has been ignored"] = "Il contatto è ignorato";
$a->strings["Contact has been unignored"] = "Il conttatto è non ignorato";
$a->strings["stopped following"] = "tolto dai seguiti";
$a->strings["Contact has been unignored"] = "Il contatto non è più ignorato";
$a->strings["Contact has been archived"] = "";
$a->strings["Contact has been unarchived"] = "";
$a->strings["Contact has been removed."] = "Il contatto è stato rimosso.";
$a->strings["You are mutual friends with %s"] = "Sei amico reciproco con %s";
$a->strings["You are sharing with %s"] = "Stai condividendo con %s";
@ -378,9 +372,15 @@ $a->strings["%d contact in common"] = array(
$a->strings["View all contacts"] = "Vedi tutti i contatti";
$a->strings["Unblock"] = "Sblocca";
$a->strings["Block"] = "Blocca";
$a->strings["Toggle Blocked status"] = "";
$a->strings["Unignore"] = "Non ignorare";
$a->strings["Ignore"] = "Ignora";
$a->strings["Toggle Ignored status"] = "";
$a->strings["Unarchive"] = "";
$a->strings["Archive"] = "";
$a->strings["Toggle Archive status"] = "";
$a->strings["Repair"] = "Ripara";
$a->strings["Advanced Contact Settings"] = "";
$a->strings["Communications lost with this contact!"] = "";
$a->strings["Contact Editor"] = "Editor dei Contatti";
$a->strings["Profile Visibility"] = "Visibilità del profilo";
$a->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.";
@ -388,7 +388,7 @@ $a->strings["Contact Information / Notes"] = "Informazioni / Note sul contatto";
$a->strings["Edit contact notes"] = "Modifica note contatto";
$a->strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]";
$a->strings["Block/Unblock contact"] = "Blocca/Sblocca contatto";
$a->strings["Ignore contact"] = "Ingnora il contatto";
$a->strings["Ignore contact"] = "Ignora il contatto";
$a->strings["Repair URL settings"] = "Impostazioni riparazione URL";
$a->strings["View conversations"] = "Vedi conversazioni";
$a->strings["Delete contact"] = "Rimuovi contatto";
@ -397,262 +397,368 @@ $a->strings["Update public posts"] = "Aggiorna messaggi pubblici";
$a->strings["Update now"] = "Aggiorna adesso";
$a->strings["Currently blocked"] = "Bloccato";
$a->strings["Currently ignored"] = "Ignorato";
$a->strings["Contacts"] = "Contatti";
$a->strings["Show Blocked Connections"] = "Mostra connessioni bloccate";
$a->strings["Hide Blocked Connections"] = "Nascondi connessioni bloccate";
$a->strings["Search your contacts"] = "Cerca nei tuoi contatti";
$a->strings["Finding: "] = "Cerco: ";
$a->strings["Find"] = "Trova";
$a->strings["Mutual Friendship"] = "Reciproca amicizia";
$a->strings["Currently archived"] = "";
$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Risposte ai tuoi post pubblici <strong>possono</strong> essere comunque visibili";
$a->strings["Suggestions"] = "Suggerimenti";
$a->strings["Suggest potential friends"] = "";
$a->strings["All Contacts"] = "Tutti i contatti";
$a->strings["Show all contacts"] = "";
$a->strings["Unblocked"] = "";
$a->strings["Only show unblocked contacts"] = "";
$a->strings["Blocked"] = "";
$a->strings["Only show blocked contacts"] = "";
$a->strings["Ignored"] = "";
$a->strings["Only show ignored contacts"] = "";
$a->strings["Archived"] = "";
$a->strings["Only show archived contacts"] = "";
$a->strings["Hidden"] = "";
$a->strings["Only show hidden contacts"] = "";
$a->strings["Mutual Friendship"] = "Amicizia reciproca";
$a->strings["is a fan of yours"] = "è un tuo fan";
$a->strings["you are a fan of"] = "sei un fan di";
$a->strings["Edit contact"] = "Modifca contatto";
$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili.";
$a->strings["Visible to:"] = "Visibile a:";
$a->strings["An invitation is required."] = "E' richiesto un invito.";
$a->strings["Invitation could not be verified."] = "L'invito non puo' essere verificato.";
$a->strings["Invalid OpenID url"] = "Url OpenID non valido";
$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste.";
$a->strings["Please use a shorter name."] = "Usa un nome più corto.";
$a->strings["Name too short."] = "Il Nome è troppo corto.";
$a->strings["That doesn't appear to be your full (First Last) name."] = "Questo non sembra essere il tuo nome completo (Nome Cognome).";
$a->strings["Your email domain is not among those allowed on this site."] = "Il dominio della tua email non è tra quelli autorizzati su questo sito.";
$a->strings["Not a valid email address."] = "Indirizzo email invaildo.";
$a->strings["Cannot use that email."] = "Questa email non si puo' usare.";
$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Il tuo \"soprannome\" puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera.";
$a->strings["Nickname is already registered. Please choose another."] = "Soprannome già registrato. Scegline un'altro.";
$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRORE GRAVE: Generazione delle chiavi di sicurezza fallito.";
$a->strings["An error occurred during registration. Please try again."] = "Si è verificato un errore durante la registrazione. Prova ancora.";
$a->strings["An error occurred creating your default profile. Please try again."] = "Si è verificato un errore creando il tuo profilo. Prova ancora.";
$a->strings["Registration successful. Please check your email for further instructions."] = "Registrazione completata. Controlla la tua mail per ulteriori informazioni.";
$a->strings["Failed to send email message. Here is the message that failed."] = "Errore inviando il messaggio email. Questo è il messaggio non inviato.";
$a->strings["Your registration can not be processed."] = "La tua registrazione non puo' essere elaborata.";
$a->strings["Registration request at %s"] = "Richiesta di registrazione su %s";
$a->strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte del prorietario del sito.";
$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Puoi (opzionalmente) riempire questa maschera via OpenID inserendo il tuo OpenID e cliccando 'Registra'.";
$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se non hai familiarità con OpenID, lascia quel campo in bianco e riempi il resto della maschera.";
$a->strings["Your OpenID (optional): "] = "Il tuo OpenID (opzionale): ";
$a->strings["Include your profile in member directory?"] = "Includi il tuo profilo nell'elenco dei membir?";
$a->strings["Membership on this site is by invitation only."] = "La registrazione su questo sito è solo su invito.";
$a->strings["Your invitation ID: "] = "L'ID del tuo invito:";
$a->strings["Registration"] = "Registrazione";
$a->strings["Your Full Name (e.g. Joe Smith): "] = "Il tuo Nome Completo (p.e. Mario Rossi): ";
$a->strings["Your Email Address: "] = "Il tuo Indirizzo Email: ";
$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Scegli un soprannome. Deve cominciare con un carattere. L'indirizzo del tuo profilo sarà '<strong>soprannome@\$sitename</strong>'.";
$a->strings["Choose a nickname: "] = "Scegli un soprannome: ";
$a->strings["Post successful."] = "Inviato con successo.";
$a->strings["Friends of %s"] = "Amici di %s";
$a->strings["No friends to display."] = "Nessun amico da visualizzare.";
$a->strings["Help:"] = "Guida:";
$a->strings["Help"] = "Guida";
$a->strings["Could not create/connect to database."] = "Impossibile creare/collegarsi al database.";
$a->strings["Connected to database."] = "Collegato al database.";
$a->strings["Proceed with Installation"] = "Continua con l'installazione";
$a->strings["Your Friendika site database has been installed."] = "Il database del tuo sito Friendika è stato installato.";
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi impostare manualmente un operazione pianificata per il poller";
$a->strings["Please see the file \"INSTALL.txt\"."] = "Guarda il file \"INSTALL.txt\".";
$a->strings["Proceed to registration"] = "Continua con la registrazione";
$a->strings["Database import failed."] = "Importazione database fallita.";
$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql";
$a->strings["Welcome to Friendika."] = "Benvenuto su Friendika.";
$a->strings["Friendika Social Network"] = "Friendika Social Network";
$a->strings["Installation"] = "Installazione";
$a->strings["In order to install Friendika we need to know how to connect to your database."] = "Per instalare Friendika dobbiamo sapere come collegarci al tuo database.";
$a->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 questi settaggi.";
$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Il database dovrà già esistere. Se non esiste, crealo prima di continuare.";
$a->strings["Database Server Name"] = "Nome Database Server";
$a->strings["Database Login Name"] = "Nome utente Database";
$a->strings["Database Login Password"] = "Password utente Database";
$a->strings["Database Name"] = "Nome Database";
$a->strings["Please select a default timezone for your website"] = "Seleziona un fuso orario di default per il tuo sito web";
$a->strings["Site administrator email address. Your account email address must match this in order to use the web admin panel."] = "Indirizzo email dell'amministratore del sito. L'email del tuo account deve corrispodere a questa, per poter utilizzare il pannello di amministrazione";
$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Non riesco a trovare una versione da riga di comando di PHP nel PATH del server web";
$a->strings["This is required. Please adjust the configuration file .htconfig.php accordingly."] = "E' richiesto. Aggiorna il file .htconfig.php di conseguenza.";
$a->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\".";
$a->strings["This is required for message delivery to work."] = "Ciò è richiesto per far funzionare la consegna dei messaggi.";
$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione";
$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\".";
$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: il modulo mod-rewrite di Apache &egreve; richiesto ma non installato";
$a->strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto ma non installato.";
$a->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.";
$a->strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto ma non installato.";
$a->strings["Error: mysqli PHP module required but not installed."] = "Errore: il modulo mysqli di PHP è richiesto ma non installato";
$a->strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto ma non installato.";
$a->strings["The web installer needs to be able to create a file called \".htconfig.php\ in the top folder of your web server and it is unable to do so."] = "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo.";
$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server puo' scrivere il file nella tua cartella, anche se tu puoi.";
$a->strings["Please check with your site documentation or support people to see if this situation can be corrected."] = "Controlla la documentazione del tuo sito o con il personale di suporto se la situazione puo' essere corretta.";
$a->strings["If not, you may be required to perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Altrimenti dovrai procedere con l'installazione manuale. Guarda il file \"INSTALL.txt\" per istuzioni";
$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito.";
$a->strings["Errors encountered creating database tables."] = "Errori creando le tabelle nel database.";
$a->strings["Contacts"] = "Contatti";
$a->strings["Search your contacts"] = "Cerca nei tuoi contatti";
$a->strings["Finding: "] = "Ricerca: ";
$a->strings["Find"] = "Trova";
$a->strings["No valid account found."] = "Nessun account valido trovato.";
$a->strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email.";
$a->strings["Password reset requested at %s"] = "Richiesta reimpostazione password su %s";
$a->strings["Administrator"] = "Amministratore";
$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita.";
$a->strings["Password Reset"] = "Reimpostazione password";
$a->strings["Your password has been reset as requested."] = "La tua password è stata reimpostata come richiesto.";
$a->strings["Your new password is"] = "La tua nuova password è";
$a->strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi";
$a->strings["click here to login"] = "clicca qui per entrare";
$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Puoi cambiare la tua password dalla pagina <em>Impostazioni</em> dopo aver effettuato l'accesso.";
$a->strings["Forgot your Password?"] = "Hai dimenticato la password?";
$a->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.";
$a->strings["Nickname or Email: "] = "Nome utente o email: ";
$a->strings["Reset"] = "Reimposta";
$a->strings["Account settings"] = "Parametri account";
$a->strings["Display settings"] = "Impostazioni grafiche";
$a->strings["Connector settings"] = "Impostazioni connettori";
$a->strings["Plugin settings"] = "Impostazioni plugin";
$a->strings["Connected apps"] = "";
$a->strings["Export personal data"] = "Esporta dati personali";
$a->strings["Remove account"] = "";
$a->strings["Settings"] = "Impostazioni";
$a->strings["Missing some important data!"] = "Mancano alcuni dati importanti!";
$a->strings["Update"] = "Aggiorna";
$a->strings["Failed to connect with email account using the settings provided."] = "Impossibile collegarsi all'account email con i parametri forniti.";
$a->strings["Email settings updated."] = "Impostazioni e-mail aggiornate.";
$a->strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata.";
$a->strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata.";
$a->strings["Password changed."] = "Password cambiata.";
$a->strings["Password update failed. Please try again."] = "Aggiornamento password fallito. Prova ancora.";
$a->strings[" Please use a shorter name."] = " Usa un nome più corto.";
$a->strings[" Name too short."] = " Nome troppo corto.";
$a->strings[" Not valid email."] = " Email non valida.";
$a->strings[" Cannot change to that email."] = "Non puoi usare quella email.";
$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "";
$a->strings["Private forum has no privacy permissions and no default privacy group."] = "";
$a->strings["Settings updated."] = "Impostazioni aggiornate.";
$a->strings["Add application"] = "Aggiungi applicazione";
$a->strings["Consumer Key"] = "Consumer Key";
$a->strings["Consumer Secret"] = "Consumer Secret";
$a->strings["Redirect"] = "Redirect";
$a->strings["Icon url"] = "Url icona";
$a->strings["You can't edit this application."] = "Non puoi modificare questa applicazione.";
$a->strings["Connected Apps"] = "Applicazioni Collegate";
$a->strings["Client key starts with"] = "Chiave del client inizia con";
$a->strings["No name"] = "Nessun nome";
$a->strings["Remove authorization"] = "Rimuovi l'autorizzazione";
$a->strings["No Plugin settings configured"] = "Nessun plugin ha impostazioni modificabili";
$a->strings["Plugin Settings"] = "Impostazioni plugin";
$a->strings["Built-in support for %s connectivity is %s"] = "Il supporto integrato per la connettività con %s è %s";
$a->strings["enabled"] = "abilitato";
$a->strings["disabled"] = "disabilitato";
$a->strings["StatusNet"] = "StatusNet";
$a->strings["Email access is disabled on this site."] = "L'accesso email è disabilitato su questo sito.";
$a->strings["Connector Settings"] = "Impostazioni Connettore";
$a->strings["Email/Mailbox Setup"] = "Impostazioni email";
$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)";
$a->strings["Last successful email check:"] = "Ultimo controllo email eseguito con successo:";
$a->strings["IMAP server name:"] = "Nome server IMAP:";
$a->strings["IMAP port:"] = "Porta IMAP:";
$a->strings["Security:"] = "Sicurezza:";
$a->strings["None"] = "Nessuna";
$a->strings["Email login name:"] = "Nome utente email:";
$a->strings["Email password:"] = "Password email:";
$a->strings["Reply-to address:"] = "Indirizzo di risposta:";
$a->strings["Send public posts to all email contacts:"] = "Invia i messaggi pubblici ai contatti email:";
$a->strings["Action after import:"] = "Azione post importazione:";
$a->strings["Mark as seen"] = "Segna come letto";
$a->strings["Move to folder"] = "Sposta nella cartella";
$a->strings["Move to folder:"] = "Sposta nella cartella:";
$a->strings["No special theme for mobile devices"] = "";
$a->strings["Display Settings"] = "Impostazioni Grafiche";
$a->strings["Display Theme:"] = "Tema:";
$a->strings["Mobile Theme:"] = "";
$a->strings["Update browser every xx seconds"] = "Aggiorna il browser ogni x secondi";
$a->strings["Minimum of 10 seconds, no maximum"] = "Minimo 10 secondi, nessun limite massimo";
$a->strings["Number of items to display per page:"] = "";
$a->strings["Maximum of 100 items"] = "Massimo 100 voci";
$a->strings["Don't show emoticons"] = "Non mostrare le emoticons";
$a->strings["Normal Account Page"] = "";
$a->strings["This account is a normal personal profile"] = "Questo account è un normale profilo personale";
$a->strings["Soapbox Page"] = "";
$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà solamente leggere la bacheca";
$a->strings["Community Forum/Celebrity Account"] = "";
$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà leggere e scrivere sulla bacheca";
$a->strings["Automatic Friend Page"] = "";
$a->strings["Automatically approve all connection/friend requests as friends"] = "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico";
$a->strings["Private Forum [Experimental]"] = "";
$a->strings["Private forum - approved members only"] = "";
$a->strings["OpenID:"] = "OpenID:";
$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opzionale) Consente di loggarti in questo account con questo OpenID";
$a->strings["Publish your default profile in your local site directory?"] = "Pubblica il tuo profilo predefinito nell'elenco locale del sito";
$a->strings["Publish your default profile in the global social directory?"] = "Pubblica il tuo profilo predefinito nell'elenco sociale globale";
$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito";
$a->strings["Hide your profile details from unknown viewers?"] = "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?";
$a->strings["Allow friends to post to your profile page?"] = "Permetti agli amici di scrivere sulla tua pagina profilo?";
$a->strings["Allow friends to tag your posts?"] = "Permetti agli amici di taggare i tuoi messaggi?";
$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Ci permetti di suggerirti come potenziale amico ai nuovi membri?";
$a->strings["Permit unknown people to send you private mail?"] = "Permetti a utenti sconosciuti di inviarti messaggi privati?";
$a->strings["Profile is <strong>not published</strong>."] = "Il profilo <strong>non è pubblicato</strong>.";
$a->strings["or"] = "o";
$a->strings["Your Identity Address is"] = "L'indirizzo della tua identità è";
$a->strings["Automatically expire posts after this many days:"] = "Fai scadere i post automaticamente dopo x giorni:";
$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Se lasciato vuoto, i messaggi non verranno cancellati.";
$a->strings["Advanced expiration settings"] = "Impostazioni avanzate di scandenza";
$a->strings["Advanced Expiration"] = "Scadenza avanzata";
$a->strings["Expire posts:"] = "Fai scadere i post:";
$a->strings["Expire personal notes:"] = "Fai scadere le Note personali:";
$a->strings["Expire starred posts:"] = "Fai scadere i post Speciali:";
$a->strings["Expire photos:"] = "Fai scadere le foto:";
$a->strings["Only expire posts by others:"] = "";
$a->strings["Account Settings"] = "Impostazioni account";
$a->strings["Password Settings"] = "Impostazioni password";
$a->strings["New Password:"] = "Nuova password:";
$a->strings["Confirm:"] = "Conferma:";
$a->strings["Leave password fields blank unless changing"] = "Lascia questi campi in bianco per non effettuare variazioni alla password";
$a->strings["Basic Settings"] = "Impostazioni base";
$a->strings["Full Name:"] = "Nome completo:";
$a->strings["Email Address:"] = "Indirizzo Email:";
$a->strings["Your Timezone:"] = "Il tuo fuso orario:";
$a->strings["Default Post Location:"] = "Località predefinita:";
$a->strings["Use Browser Location:"] = "Usa la località rilevata dal browser:";
$a->strings["Security and Privacy Settings"] = "Impostazioni di sicurezza e privacy";
$a->strings["Maximum Friend Requests/Day:"] = "Numero massimo di richieste di amicizia al giorno:";
$a->strings["(to prevent spam abuse)"] = "(per prevenire lo spam)";
$a->strings["Default Post Permissions"] = "Permessi predefiniti per i messaggi";
$a->strings["(click to open/close)"] = "(clicca per aprire/chiudere)";
$a->strings["Maximum private messages per day from unknown people:"] = "Numero massimo di messaggi privati da utenti sconosciuti per giorno:";
$a->strings["Notification Settings"] = "Impostazioni notifiche";
$a->strings["By default post a status message when:"] = "";
$a->strings["accepting a friend request"] = "";
$a->strings["joining a forum/community"] = "";
$a->strings["making an <em>interesting</em> profile change"] = "";
$a->strings["Send a notification email when:"] = "Invia una mail di notifica quando:";
$a->strings["You receive an introduction"] = "Ricevi una presentazione";
$a->strings["Your introductions are confirmed"] = "Le tue presentazioni sono confermate";
$a->strings["Someone writes on your profile wall"] = "Qualcuno scrive sulla bacheca del tuo profilo";
$a->strings["Someone writes a followup comment"] = "Qualcuno scrive un commento a un tuo messaggio";
$a->strings["You receive a private message"] = "Ricevi un messaggio privato";
$a->strings["You receive a friend suggestion"] = "Hai ricevuto un suggerimento di amicizia";
$a->strings["You are tagged in a post"] = "Sei stato taggato in un post";
$a->strings["You are poked/prodded/etc. in a post"] = "";
$a->strings["Advanced Account/Page Type Settings"] = "";
$a->strings["Change the behaviour of this account for special situations"] = "";
$a->strings["Manage Identities and/or Pages"] = "Gestisci indentità e/o pagine";
$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione";
$a->strings["Select an identity to manage: "] = "Seleziona un'identità da gestire:";
$a->strings["Search Results For:"] = "Cerca risultati per:";
$a->strings["Remove term"] = "Rimuovi termine";
$a->strings["Saved Searches"] = "Ricerche salvate";
$a->strings["add"] = "aggiungi";
$a->strings["Commented Order"] = "Ordina per commento";
$a->strings["Sort by Comment Date"] = "";
$a->strings["Posted Order"] = "Ordina per invio";
$a->strings["Sort by Post Date"] = "";
$a->strings["Posts that mention or involve you"] = "";
$a->strings["New"] = "Nuovo";
$a->strings["Starred"] = "Speciali";
$a->strings["Bookmarks"] = "Preferiti";
$a->strings["Activity Stream - by date"] = "";
$a->strings["Starred"] = "Preferiti";
$a->strings["Favourite Posts"] = "";
$a->strings["Shared Links"] = "Links condivisi";
$a->strings["Interesting Links"] = "";
$a->strings["Warning: This group contains %s member from an insecure network."] = array(
0 => "Attenzione: questo gruppo contiene %s membro da un network insicuro.",
1 => "Attenzione: questo gruppo contiene %s membri da un network insicuro.",
);
$a->strings["Private messages to this group are at risk of public disclosure."] = "I messaggi privati a questo gruppo sono a rischio di visualizzazione pubblica.";
$a->strings["No such group"] = "Nessun gruppo";
$a->strings["Group is empty"] = "Il gruppo è vuoto";
$a->strings["Group: "] = "Gruppo: ";
$a->strings["Private messages to this group are at risk of public disclosure."] = "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente.";
$a->strings["Contact: "] = "Contatto:";
$a->strings["Private messages to this person are at risk of public disclosure."] = "I messaggi privati a questa persona sono a rischio di divulgazione al pubblico.";
$a->strings["Private messages to this person are at risk of public disclosure."] = "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente.";
$a->strings["Invalid contact."] = "Contatto non valido.";
$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido.";
$a->strings["Profile Visibility Editor"] = "Modifica Visibilità del Profilo";
$a->strings["Personal Notes"] = "Note personali";
$a->strings["Save"] = "Salva";
$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Numero giornaliero di messaggi per %s superato. Invio fallito.";
$a->strings["No recipient selected."] = "Nessun destinatario selezionato.";
$a->strings["Unable to check your home location."] = "";
$a->strings["Message could not be sent."] = "Il messaggio non puo' essere inviato.";
$a->strings["Message collection failure."] = "Errore recuperando il messaggio.";
$a->strings["Message sent."] = "Messaggio inviato.";
$a->strings["No recipient."] = "Nessun destinatario.";
$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:";
$a->strings["Send Private Message"] = "Invia un messaggio privato";
$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti.";
$a->strings["To:"] = "A:";
$a->strings["Subject:"] = "Oggetto:";
$a->strings["Your message:"] = "Il tuo messaggio:";
$a->strings["Welcome to Friendica"] = "Benvenuto su Friendica";
$a->strings["New Member Checklist"] = "Cose da fare per i Nuovi Utenti";
$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione.";
$a->strings["Getting Started"] = "";
$a->strings["Friendica Walk-Through"] = "";
$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "";
$a->strings["Go to Your Settings"] = "";
$a->strings["On your <em>Settings</em> page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Nella tua pagina <em>Impostazioni</em> - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero.";
$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti.";
$a->strings["Profile"] = "Profilo";
$a->strings["Upload Profile Photo"] = "Carica la foto del profilo";
$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno.";
$a->strings["Edit Your Profile"] = "";
$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Modifica il tuo profilo <strong>predefinito</strong> a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti.";
$a->strings["Profile Keywords"] = "";
$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie.";
$a->strings["Connecting"] = "";
$a->strings["Facebook"] = "Facebook";
$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook.";
$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Se</em questo è il tuo server personale, installare il plugin per Facebook puo' aiutarti nella transizione verso il web sociale libero.";
$a->strings["Importing Emails"] = "";
$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo";
$a->strings["Go to Your Contacts Page"] = "";
$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo <em>Aggiungi Nuovo Contatto</em>";
$a->strings["Go to Your Site's Directory"] = "";
$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link <em>Connetti</em> o <em>Segui</em> nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto.";
$a->strings["Finding New People"] = "";
$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore.";
$a->strings["Groups"] = "Grouppi";
$a->strings["Group Your Contacts"] = "";
$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete";
$a->strings["Why Aren't My Posts Public?"] = "";
$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "";
$a->strings["Getting Help"] = "";
$a->strings["Go to the Help Section"] = "";
$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della <strong>guida</strong> possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse.";
$a->strings["Item not available."] = "Oggetto non disponibile.";
$a->strings["Item was not found."] = "Oggetto non trovato.";
$a->strings["Group created."] = "Gruppo creato.";
$a->strings["Could not create group."] = "Impossibile creare il gruppo.";
$a->strings["Group not found."] = "Gruppo non trovato.";
$a->strings["Group name changed."] = "Il nome del gruppo è cambiato.";
$a->strings["Permission denied"] = "Permesso negato";
$a->strings["Create a group of contacts/friends."] = "Crea un gruppo di amici/contatti.";
$a->strings["Group Name: "] = "Nome del gruppo:";
$a->strings["Group removed."] = "Gruppo rimosso.";
$a->strings["Unable to remove group."] = "Impossibile rimuovere il gruppo.";
$a->strings["Group Editor"] = "Modifica gruppo";
$a->strings["Members"] = "Membri";
$a->strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo.";
$a->strings["Visible To"] = "Visibile A";
$a->strings["All Contacts (with secure profile access)"] = "Tutti i Contatti (con profilo ad accesso sicuro)";
$a->strings["Event description and start time are required."] = "Descrizione dell'evento e ora di inizio sono obbligatori.";
$a->strings["Create New Event"] = "Crea un nuovo Evento";
$a->strings["Previous"] = "Precendente";
$a->strings["Next"] = "Successivo";
$a->strings["l, F j"] = "l j F";
$a->strings["Edit event"] = "Modifca Evento";
$a->strings["link to source"] = "Collegamento all'originale";
$a->strings["hour:minute"] = "ora:minuti";
$a->strings["Event details"] = "Dettagli dell'Evento";
$a->strings["Format is %s %s. Starting date and Description are required."] = "Il formato è %s %s. La data di inizio e la descrizione sono obbligatori.";
$a->strings["Event Starts:"] = "L'Evento inizia:";
$a->strings["Finish date/time is not known or not relevant"] = "La data/l'ora di fine è sconosciuta o non importante";
$a->strings["Event Finishes:"] = "L'Evento finisce:";
$a->strings["Adjust for viewer timezone"] = "Regola nel fuso orario di chi legge";
$a->strings["Description:"] = "Descrizione";
$a->strings["Share this event"] = "Condividi questo Evento";
$a->strings["Invalid request identifier."] = "Identificativo richiesta invalido.";
$a->strings["Discard"] = "Scarta";
$a->strings["Network"] = "Rete";
$a->strings["Home"] = "Home";
$a->strings["Introductions"] = "Presentazioni";
$a->strings["Messages"] = "Messaggi";
$a->strings["Show Ignored Requests"] = "Mostra richieste ignorate";
$a->strings["Hide Ignored Requests"] = "Nascondi richieste ignorate";
$a->strings["Notification type: "] = "Tipo di notifica: ";
$a->strings["Friend Suggestion"] = "Amico suggerito";
$a->strings["suggested by %s"] = "sugerito da %s";
$a->strings["Approve"] = "Approva";
$a->strings["Claims to be known to you: "] = "Dice di conoscerti: ";
$a->strings["yes"] = "si";
$a->strings["no"] = "no";
$a->strings["Approve as: "] = "Approva come: ";
$a->strings["Friend"] = "Amico";
$a->strings["Sharer"] = "Condivisore";
$a->strings["Fan/Admirer"] = "Fan/Ammiratore";
$a->strings["Friend/Connect Request"] = "Richiesta Amicizia/Connessione";
$a->strings["New Follower"] = "Nuovo Seguace";
$a->strings["No notifications."] = "Nessuna notifica.";
$a->strings["Notifications"] = "Notifiche";
$a->strings["%s liked %s's post"] = "a %s è piaciuto il messaggio di %s";
$a->strings["%s disliked %s's post"] = "a %s non è piaciuto il messaggio di %s";
$a->strings["%s is now friends with %s"] = "%s è ora amico di %s";
$a->strings["%s created a new post"] = "%s a creato un nuovo messaggio";
$a->strings["%s commented on %s's post"] = "%s ha commentato il messaggio di %s";
$a->strings["Nothing new!"] = "Niente di nuovo!";
$a->strings["Contact settings applied."] = "Impostazioni del contatto applicate.";
$a->strings["Contact update failed."] = "Aggiornamento del contatto non riuscito.";
$a->strings["Contact not found."] = "Contatto non trovato.";
$a->strings["Repair Contact Settings"] = "Ripara le Impostazioni del Contatto";
$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ATTENZIONE: Queste sono impostazioni avanzate</strong> e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più";
$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Usa <strong>ora</strong> il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina.";
$a->strings["Account Nickname"] = "Nickname dell'utente";
$a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - rimpiazza il nome / soprannome";
$a->strings["Account URL"] = "URL dell'utente";
$a->strings["Friend Request URL"] = "URL Richiesta Amicizia";
$a->strings["Friend Confirm URL"] = "URL Conferma Amicizia";
$a->strings["Notification Endpoint URL"] = "URL Notifiche";
$a->strings["Poll/Feed URL"] = "URL Feed";
$a->strings["New photo from this URL"] = "Nuova foto da questo URL";
$a->strings["This introduction has already been accepted."] = "Questa presentazione è già stata accettata.";
$a->strings["Profile location is not valid or does not contain profile information."] = "La posizione del profilo non è valida o non contiene informazioni di profilo.";
$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: la posizione del profilo non ha un identificabile proprietario.";
$a->strings["Warning: profile location has no profile photo."] = "Attenzione: la posizione del profilo non ha una foto.";
$a->strings["%d required parameter was not found at the given location"] = array(
0 => "%d parametro richiesto non è stato trovato nella posizione data",
1 => "%d parametri richiesti non sono stati trovati nella posizione data",
);
$a->strings["Introduction complete."] = "Presentazione completa.";
$a->strings["Unrecoverable protocol error."] = "Errore di protocollo non recuperabile.";
$a->strings["Profile unavailable."] = "Profilo non disponibile.";
$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessione per oggi.";
$a->strings["Spam protection measures have been invoked."] = "Sono state attivate le misure di protezione contro lo spam.";
$a->strings["Friends are advised to please try again in 24 hours."] = "Gli amici sono pregati di riprovare tra 24 ore.";
$a->strings["Invalid locator"] = "Invalid locator";
$a->strings["Unable to resolve your name at the provided location."] = "Impossibile risolvere il tuo nome nella posizione indicata.";
$a->strings["You have already introduced yourself here."] = "Ti sei già presentato qui.";
$a->strings["Apparently you are already friends with %s."] = "Sembra che tu sia già amico di %s.";
$a->strings["Invalid profile URL."] = "Indirizzo profilo invalido.";
$a->strings["Your introduction has been sent."] = "La tua presentazione è stata inviata.";
$a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione.";
$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Accesso con identà incorretta. Accedi a <strong>questo</strong> profilo.";
$a->strings["Welcome home %s."] = "Bentornato a casa %s.";
$a->strings["Please confirm your introduction/connection request to %s."] = "Conferma la tua richiesta di connessione con %s.";
$a->strings["Confirm"] = "Conferma";
$a->strings["[Name Withheld]"] = "[Nome Nascosto]";
$a->strings["Introduction received at "] = "Introduzione ricevuta su ";
$a->strings["Diaspora members: Please do not use this form. Instead, enter \"%s\" into your Diaspora search bar."] = "Untenti Diaspora: non utilizzate questo modulo. Al contrario, digitate \"%s\" nella barra di ricerca sul vostro pod Diaspora.";
$a->strings["Please enter your 'Identity Address' from one of the following supported social networks:"] = "Inserisci il tuo \"Indirizzo Identità\" da uno dei social network supportati:";
$a->strings["Friend/Connection Request"] = "Richieste di Amicizia/Connessione";
$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
$a->strings["Please answer the following:"] = "Rispondi al seguente:";
$a->strings["Does %s know you?"] = "%s ti conosce?";
$a->strings["Add a personal note:"] = "Aggiungi una nota personale:";
$a->strings["Friendica"] = "Friendica";
$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
$a->strings["- please share from your own site as noted above"] = "- condividere dal tuo sito come osservato in precedenza";
$a->strings["Your Identity Address:"] = "Il tuo Indirizzo Identità:";
$a->strings["Submit Request"] = "Invia richiesta";
$a->strings["Authorize application connection"] = "Autorizza la connessione dell'applicazione";
$a->strings["Return to your app and insert this Securty Code:"] = "Torna alla tua applicazione e inserisci questo codice di sicurezza:";
$a->strings["Please login to continue."] = "Effettua il login per continuare.";
$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?";
$a->strings["status"] = "lo stato";
$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s";
$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido.";
$a->strings["Profile Visibility Editor"] = "Modifica visibilità del profilo";
$a->strings["Visible To"] = "Visibile a";
$a->strings["All Contacts (with secure profile access)"] = "Tutti i contatti (con profilo ad accesso sicuro)";
$a->strings["No contacts."] = "Nessun contatto.";
$a->strings["View Contacts"] = "Visualizza i contatti";
$a->strings["Registration details for %s"] = "Dettagli della registrazione di %s";
$a->strings["Registration successful. Please check your email for further instructions."] = "Registrazione completata. Controlla la tua mail per ulteriori informazioni.";
$a->strings["Failed to send email message. Here is the message that failed."] = "Errore nell'invio del messaggio email. Questo è il messaggio non inviato.";
$a->strings["Your registration can not be processed."] = "La tua registrazione non puo' essere elaborata.";
$a->strings["Registration request at %s"] = "Richiesta di registrazione su %s";
$a->strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte del prorietario del sito.";
$a->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.";
$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'.";
$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera.";
$a->strings["Your OpenID (optional): "] = "Il tuo OpenID (opzionale): ";
$a->strings["Include your profile in member directory?"] = "Includi il tuo profilo nell'elenco pubblico?";
$a->strings["Membership on this site is by invitation only."] = "La registrazione su questo sito è solo su invito.";
$a->strings["Your invitation ID: "] = "L'ID del tuo invito:";
$a->strings["Registration"] = "Registrazione";
$a->strings["Your Full Name (e.g. Joe Smith): "] = "Il tuo nome completo (es. Mario Rossi): ";
$a->strings["Your Email Address: "] = "Il tuo indirizzo email: ";
$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà '<strong>soprannome@\$sitename</strong>'.";
$a->strings["Choose a nickname: "] = "Scegli un nome utente: ";
$a->strings["Register"] = "Registrati";
$a->strings["People Search"] = "Cerca persone";
$a->strings["status"] = "stato";
$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s";
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s";
$a->strings["No valid account found."] = "Nessun account valido trovato.";
$a->strings["Password reset request issued. Check your email."] = "Richiesta di reimpostazione pasword inviata. Controlla la tua email.";
$a->strings["Password reset requested at %s"] = "Richiesta recupero password su %s";
$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita.";
$a->strings["Your password has been reset as requested."] = "La tua password è stata reimpostata come richiesto.";
$a->strings["Your new password is"] = "La tua nuova password è";
$a->strings["Save or copy your new password - and then"] = "Sava o copa la tua nuova password, quindi";
$a->strings["click here to login"] = "clicca qui per entrare";
$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Puoi cambiare la tua password dalla pagina <em>Impostazioni</em> dopo essere entrato.";
$a->strings["Forgot your Password?"] = "Dimenticato la tua password?";
$a->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 richiedere di reimpostare la tua passwork.";
$a->strings["Nickname or Email: "] = "Nome utente o Email: ";
$a->strings["Reset"] = "Reimposta";
$a->strings["This is Friendica, version"] = "Questo è Friendica, versione";
$a->strings["running at web location"] = "in esecuzione all'indirizzo";
$a->strings["Please visit <a href=\"http://project.friendika.com\">Project.Friendika.com</a> to learn more about the Friendica project."] = "Visita <a href=\"http://friendica.com\">friendica.com</a> per saperne di più sul progetto Friendica.";
$a->strings["Bug reports and issues: please visit"] = "Segnalazioni di bug e problemi: visita";
$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com";
$a->strings["Installed plugins/addons/apps"] = "Plugin/Addon/Applicazioni installate";
$a->strings["No installed plugins/addons/apps"] = "Nessuno plugin/addons/applicazione installata";
$a->strings["Remove My Account"] = "Rimuovi il mio Account";
$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Questo rimuoverà completamente il tuo account. Una volta rimosso non si potrà recuperarlo.";
$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:";
$a->strings["Applications"] = "Applicazioni";
$a->strings["No installed applications."] = "Nessuna applicazione installata.";
$a->strings["Save"] = "Salva";
$a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato.";
$a->strings["Suggest Friends"] = "Suggerisci Amici";
$a->strings["Suggest a friend for %s"] = "Suggerisci un amico a %s";
$a->strings["Item not found."] = "Elemento non trovato.";
$a->strings["Access denied."] = "Accesso negato.";
$a->strings["Global Directory"] = "Elenco Globale";
$a->strings["Normal site view"] = "Vista normale";
$a->strings["Admin - View all site entries"] = "Admin - Visualizza tutte le voci del sito";
$a->strings["Find on this site"] = "Cerca nel sito";
$a->strings["Site Directory"] = "Elenco del Sito";
$a->strings["Gender: "] = "Genere:";
$a->strings["No entries (some entries may be hidden)."] = "Nessuna voce (qualche voce potrebbe essere nascosta).";
$a->strings["Photos"] = "Foto";
$a->strings["Files"] = "";
$a->strings["Account approved."] = "Account approvato.";
$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s";
$a->strings["Please login."] = "Accedi.";
$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale.";
$a->strings["Empty post discarded."] = "Messaggio vuoto scartato.";
$a->strings["Wall Photos"] = "Foto della bacheca";
$a->strings["System error. Post not saved."] = "Errore di sistema. Messaggio non salvato.";
$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica.";
$a->strings["You may visit them online at %s"] = "Puoi visitarli online su %s";
$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi.";
$a->strings["%s posted an update."] = "%s ha inviato un aggiornamento.";
$a->strings["%1\$s is currently %2\$s"] = "";
$a->strings["Mood"] = "";
$a->strings["Set your current mood and tell your friends"] = "";
$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla.";
$a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito.";
$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente.";
$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine";
$a->strings["Image exceeds size limit of %d"] = "La dimensione dell'immagine supera il limite di %d";
$a->strings["Upload File:"] = "Carica un file:";
$a->strings["Select a profile:"] = "";
$a->strings["Upload"] = "Carica";
$a->strings["skip this step"] = "salta questo passaggio";
$a->strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album";
$a->strings["Crop Image"] = "Ritaglia immagine";
$a->strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'imagine per una visualizzazione migliore.";
$a->strings["Done Editing"] = "Finito";
$a->strings["Image uploaded successfully."] = "Immagine caricata con successo.";
$a->strings["No profile"] = "Nessun profilo";
$a->strings["Remove My Account"] = "Rimuovi il mio account";
$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo.";
$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:";
$a->strings["New Message"] = "Nuovo messaggio";
$a->strings["Unable to locate contact information."] = "Impossibile trovare le informazioni del contatto.";
$a->strings["Message deleted."] = "Messaggio eliminato.";
$a->strings["Conversation removed."] = "Conversazione rimossa.";
$a->strings["No messages."] = "Nessun messaggio.";
$a->strings["Unknown sender - %s"] = "Mittente sconosciuto - %s";
$a->strings["You and %s"] = "Tu e %s";
$a->strings["%s and You"] = "";
$a->strings["Delete conversation"] = "Elimina la conversazione";
$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i";
$a->strings["%d message"] = array(
0 => "%d messaggio",
1 => "%d messaggi",
);
$a->strings["Message not available."] = "Messaggio non disponibile.";
$a->strings["Delete message"] = "Elimina il messaggio";
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Nessuna comunicazione sicura disponibile, <strong>Potresti</strong> essere in grado di rispondere dalla pagina del profilo del mittente.";
$a->strings["Send Reply"] = "Invia la risposta";
$a->strings["Friends of %s"] = "Amici di %s";
$a->strings["No friends to display."] = "Nessun amico da visualizzare.";
$a->strings["Theme settings updated."] = "";
$a->strings["Site"] = "Sito";
$a->strings["Users"] = "Utenti";
$a->strings["Plugins"] = "Plugin";
$a->strings["Themes"] = "Temi";
$a->strings["DB updates"] = "";
$a->strings["Logs"] = "Log";
$a->strings["Admin"] = "Amministrazione";
$a->strings["Plugin Features"] = "";
$a->strings["User registrations waiting for confirmation"] = "Utenti registrati in attesa di conferma";
$a->strings["Normal Account"] = "Account normale";
$a->strings["Soapbox Account"] = "Account per comunicati e annunci";
$a->strings["Community/Celebrity Account"] = "Account per celebrità o per comunità";
$a->strings["Automatic Friend Account"] = "Account per amicizia automatizzato";
$a->strings["Blog Account"] = "";
$a->strings["Private Forum"] = "";
$a->strings["Message queues"] = "";
$a->strings["Administration"] = "Amministrazione";
$a->strings["Summary"] = "Sommario";
$a->strings["Registered users"] = "Utenti registrati";
@ -663,6 +769,9 @@ $a->strings["Site settings updated."] = "Impostazioni del sito aggiornate.";
$a->strings["Closed"] = "Chiusa";
$a->strings["Requires approval"] = "Richiede l'approvazione";
$a->strings["Open"] = "Aperta";
$a->strings["No SSL policy, links will track page SSL state"] = "";
$a->strings["Force all links to use SSL"] = "Forza tutti i linki ad usare SSL";
$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "";
$a->strings["File upload"] = "Caricamento file";
$a->strings["Policies"] = "Politiche";
$a->strings["Advanced"] = "Avanzate";
@ -670,32 +779,77 @@ $a->strings["Site name"] = "Nome del sito";
$a->strings["Banner/Logo"] = "Banner/Logo";
$a->strings["System language"] = "Lingua di sistema";
$a->strings["System theme"] = "Tema di sistema";
$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "";
$a->strings["Mobile system theme"] = "";
$a->strings["Theme for mobile devices"] = "";
$a->strings["SSL link policy"] = "";
$a->strings["Determines whether generated links should be forced to use SSL"] = "";
$a->strings["Maximum image size"] = "Massima dimensione immagini";
$a->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.";
$a->strings["Maximum image length"] = "";
$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "";
$a->strings["JPEG image quality"] = "";
$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "";
$a->strings["Register policy"] = "Politica di registrazione";
$a->strings["Register text"] = "Testo registrazione";
$a->strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione.";
$a->strings["Accounts abandoned after x days"] = "Account abbandonati dopo x giorni";
$a->strings["Will not waste system resources polling external sites for abandoned accounts. Enter 0 for no time limit."] = "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo.";
$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo.";
$a->strings["Allowed friend domains"] = "Domini amici consentiti";
$a->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. Lascalo vuoto per accettare qualsiasi dominio.";
$a->strings["Allowed email domains"] = "Domini email consentiti";
$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "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.";
$a->strings["Block public"] = "Blocca pagine pubbliche";
$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato.";
$a->strings["Force publish"] = "Forza publicazione";
$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per forzare tutti i profili di questo sito ad essere compresi nell'elenco di questo sito.";
$a->strings["Global directory update URL"] = "URL aggiornamento Elenco Globale";
$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato.";
$a->strings["Allow threaded items"] = "";
$a->strings["Allow infinite level threading for items on this site."] = "";
$a->strings["Private posts by default for new users"] = "";
$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "";
$a->strings["Block multiple registrations"] = "Blocca registrazioni multiple";
$a->strings["Disallow users to register additional accounts for use as pages."] = "Non permette all'utente di registrare account extra da usare come pagine.";
$a->strings["OpenID support"] = "Supporto OpenID";
$a->strings["Gravatar support"] = "Supporto Gravatar";
$a->strings["OpenID support for registration and logins."] = "Supporta OpenID per la registrazione e il login";
$a->strings["Fullname check"] = "Controllo nome completo";
$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam";
$a->strings["UTF-8 Regular expressions"] = "Espressioni regolari UTF-8";
$a->strings["Use PHP UTF8 regular expressions"] = "Usa le espressioni regolari PHP in UTF8";
$a->strings["Show Community Page"] = "Mostra pagina Comunità";
$a->strings["Display a Community page showing all recent public postings on this site."] = "Mostra una pagina Comunità con tutti i recenti messaggi pubblici su questo sito.";
$a->strings["Enable OStatus support"] = "Abilita supporto OStatus";
$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Fornisce compatibiltà OStatuts (identi.ca, status.net, etc.). Tutte le comunicazioni in OStatus sono pubbliche, per cui avvisi di provacy verranno occasionalmente mostrati.";
$a->strings["Enable Diaspora support"] = "Abilita il supporto a Diaspora";
$a->strings["Only allow Friendika contacts"] = "Permetti solo contatti Friendika";
$a->strings["Provide built-in Diaspora network compatibility."] = "Fornisce compatibilità con il network Diaspora.";
$a->strings["Only allow Friendica contacts"] = "Permetti solo contatti Friendica";
$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati.";
$a->strings["Verify SSL"] = "Verifica SSL";
$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati.";
$a->strings["Proxy user"] = "Utente Proxy";
$a->strings["Proxy URL"] = "URL Proxy";
$a->strings["Network timeout"] = "Timeout rete";
$a->strings["%s user blocked"] = array(
0 => "%s utente bloccato",
1 => "%s utenti bloccati/sbloccati",
$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valore in secondi. Imposta a 0 per illimitato (non raccomandato).";
$a->strings["Delivery interval"] = "";
$a->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."] = "";
$a->strings["Poll interval"] = "";
$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "";
$a->strings["Maximum Load Average"] = "";
$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "";
$a->strings["Update has been marked successful"] = "";
$a->strings["Executing %s failed. Check system logs."] = "";
$a->strings["Update %s was successfully applied."] = "";
$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "";
$a->strings["Update function %s could not be found."] = "";
$a->strings["No failed updates."] = "";
$a->strings["Failed Updates"] = "";
$a->strings["This does not include updates prior to 1139, which did not return a status."] = "";
$a->strings["Mark success (if update was manually applied)"] = "";
$a->strings["Attempt to execute this update step automatically"] = "";
$a->strings["%s user blocked/unblocked"] = array(
0 => "",
1 => "",
);
$a->strings["%s user deleted"] = array(
0 => "%s utente cancellato",
@ -710,6 +864,7 @@ $a->strings["Request date"] = "Data richiesta";
$a->strings["Email"] = "Email";
$a->strings["No registrations."] = "Nessuna registrazione.";
$a->strings["Deny"] = "Nega";
$a->strings["Site admin"] = "";
$a->strings["Register date"] = "Data registrazione";
$a->strings["Last login"] = "Ultimo accesso";
$a->strings["Last item"] = "Ultimo elemento";
@ -721,163 +876,198 @@ $a->strings["Plugin %s enabled."] = "Plugin %s abilitato.";
$a->strings["Disable"] = "Disabilita";
$a->strings["Enable"] = "Abilita";
$a->strings["Toggle"] = "Inverti";
$a->strings["Settings"] = "Impostazioni";
$a->strings["Author: "] = "Autore: ";
$a->strings["Maintainer: "] = "Manutentore: ";
$a->strings["No themes found."] = "Nessun tema trovato.";
$a->strings["Screenshot"] = "";
$a->strings["[Experimental]"] = "[Sperimentale]";
$a->strings["[Unsupported]"] = "[Non supportato]";
$a->strings["Log settings updated."] = "Impostazioni Log aggiornate.";
$a->strings["Clear"] = "Pulisci";
$a->strings["Debugging"] = "Debugging";
$a->strings["Log file"] = "File di Log";
$a->strings["Must be writable by web server. Relative to your Friendika index.php."] = "Deve essere scrivibile dal server web. Relativo al file index.php della tua installazione Friendika.";
$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica.";
$a->strings["Log level"] = "Livello di Log";
$a->strings["Close"] = "Chiudi";
$a->strings["FTP Host"] = "Indirizzo FTP";
$a->strings["FTP Path"] = "Percorso FTP";
$a->strings["FTP User"] = "Utente FTP";
$a->strings["FTP Password"] = "Pasword FTP";
$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale.";
$a->strings["Empty post discarded."] = "Messaggio vuoto scartato.";
$a->strings["noreply"] = "nessuna risposta";
$a->strings["Administrator@"] = "Amministratore@";
$a->strings["%s commented on an item at %s"] = "%s ha commentato un elemento su %s";
$a->strings["%s posted to your profile wall at %s"] = "%s ha scritto sulla tua bacheca su %s";
$a->strings["System error. Post not saved."] = "Errore di sistema. Messaggio non salvato.";
$a->strings["This message was sent to you by %s, a member of the Friendika social network."] = "Questo messaggio ti è stato inviato da %s, un membro del social network Friendika.";
$a->strings["You may visit them online at %s"] = "Puoi visitarli online presso %s";
$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi.";
$a->strings["%s posted an update."] = "%s ha inviato un aggiornamento.";
$a->strings["Tag removed"] = "TAg rimosso";
$a->strings["Remove Item Tag"] = "Rimuovi tag dall'elemento";
$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: ";
$a->strings["Remove"] = "Rimuovi";
$a->strings["No recipient selected."] = "Nessun destinatario selezionato.";
$a->strings["Unable to locate contact information."] = "Impossibile trovare le informazioni del contatto.";
$a->strings["Message could not be sent."] = "Il messaggio non puo' essere inviato.";
$a->strings["Message sent."] = "Messaggio inviato.";
$a->strings["Inbox"] = "In arrivo";
$a->strings["Outbox"] = "Inviati";
$a->strings["New Message"] = "Nuovo messaggio";
$a->strings["Message deleted."] = "Messaggio cancellato.";
$a->strings["Conversation removed."] = "Conversazione rimossa.";
$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:";
$a->strings["Send Private Message"] = "Invia messaggio privato";
$a->strings["To:"] = "A:";
$a->strings["Subject:"] = "Oggetto:";
$a->strings["No messages."] = "Nessun messaggio.";
$a->strings["Delete conversation"] = "Cancella conversazione";
$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i";
$a->strings["Message not available."] = "Messaggio non disponibile.";
$a->strings["Delete message"] = "Cancella messaggio";
$a->strings["Send Reply"] = "Invia risposta";
$a->strings["Response from remote site was not understood."] = "La risposta dal sito remota non è stata capita.";
$a->strings["Unexpected response from remote site: "] = "Risposta dal sito remoto inaspettata: ";
$a->strings["Requested profile is not available."] = "Profilo richiesto non disponibile.";
$a->strings["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato.";
$a->strings["Tips for New Members"] = "Consigli per i Nuovi Utenti";
$a->strings["{0} wants to be your friend"] = "{0} vuole essere tuo amico";
$a->strings["{0} sent you a message"] = "{0} ti ha inviato un messaggio";
$a->strings["{0} requested registration"] = "{0} chiede la registrazione";
$a->strings["{0} commented %s's post"] = "{0} ha commentato il post di %s";
$a->strings["{0} liked %s's post"] = "a {0} piace il post di %s";
$a->strings["{0} disliked %s's post"] = "a {0} non piace il post di %s";
$a->strings["{0} is now friends with %s"] = "{0} ora è amico di %s";
$a->strings["{0} posted"] = "{0} ha inviato un nuovo messaggio";
$a->strings["{0} tagged %s's post with #%s"] = "{0} ha taggato il post di %s con #%s";
$a->strings["{0} mentioned you in a post"] = "{0} ti ha citato in un post";
$a->strings["Contacts who are not members of a group"] = "";
$a->strings["OpenID protocol error. No ID returned."] = "";
$a->strings["Account not found and OpenID registration is not permitted on this site."] = "";
$a->strings["Login failed."] = "Accesso fallito.";
$a->strings["Contact added"] = "";
$a->strings["Common Friends"] = "Amici in comune";
$a->strings["No contacts in common."] = "";
$a->strings["link"] = "";
$a->strings["Item has been removed."] = "L'oggetto è stato rimosso.";
$a->strings["Applications"] = "Applicazioni";
$a->strings["No installed applications."] = "Nessuna applicazione installata.";
$a->strings["Search"] = "Cerca";
$a->strings["Profile not found."] = "Profilo non trovato.";
$a->strings["Profile Name is required."] = "Il nome profilo è obbligatorio .";
$a->strings["Marital Status"] = "";
$a->strings["Romantic Partner"] = "";
$a->strings["Likes"] = "";
$a->strings["Dislikes"] = "";
$a->strings["Work/Employment"] = "";
$a->strings["Religion"] = "Religione";
$a->strings["Political Views"] = "Orientamento Politico";
$a->strings["Gender"] = "Sesso";
$a->strings["Sexual Preference"] = "Preferenza sessuale";
$a->strings["Homepage"] = "Homepage";
$a->strings["Interests"] = "Interessi";
$a->strings["Address"] = "";
$a->strings["Location"] = "Posizione";
$a->strings["Profile updated."] = "Profilo aggiornato.";
$a->strings[" and "] = "";
$a->strings["public profile"] = "profilo pubblico";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "";
$a->strings[" - Visit %1\$s's %2\$s"] = "";
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha un %2\$s aggiornato. Ha cambiato %3\$s";
$a->strings["Profile deleted."] = "Profilo elminato.";
$a->strings["Profile-"] = "Profilo-";
$a->strings["New profile created."] = "Il nuovo profilo è stato creato.";
$a->strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo.";
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?";
$a->strings["Edit Profile Details"] = "Modifica i dettagli del profilo";
$a->strings["View this profile"] = "Visualizza questo profilo";
$a->strings["Create a new profile using these settings"] = "Crea un nuovo profilo usando queste impostazioni";
$a->strings["Clone this profile"] = "Clona questo profilo";
$a->strings["Delete this profile"] = "Elimina questo profilo";
$a->strings["Profile Name:"] = "Nome del profilo:";
$a->strings["Your Full Name:"] = "Il tuo nome completo:";
$a->strings["Title/Description:"] = "Breve descrizione (es. titolo, posizione, altro):";
$a->strings["Your Gender:"] = "Il tuo sesso:";
$a->strings["Birthday (%s):"] = "Compleanno (%s)";
$a->strings["Street Address:"] = "Indirizzo (via/piazza):";
$a->strings["Locality/City:"] = "Località:";
$a->strings["Postal/Zip Code:"] = "CAP:";
$a->strings["Country:"] = "Nazione:";
$a->strings["Region/State:"] = "Regione/Stato:";
$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Stato sentimentale:";
$a->strings["Who: (if applicable)"] = "Con chi: (se possibile)";
$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Esempio: cathy123, Cathy Williams, cathy@example.com";
$a->strings["Since [date]:"] = "";
$a->strings["Sexual Preference:"] = "Preferenze sessuali:";
$a->strings["Homepage URL:"] = "Homepage:";
$a->strings["Hometown:"] = "";
$a->strings["Political Views:"] = "Orientamento politico:";
$a->strings["Religious Views:"] = "Orientamento religioso:";
$a->strings["Public Keywords:"] = "Parole chiave visibili a tutti:";
$a->strings["Private Keywords:"] = "Parole chiave private:";
$a->strings["Likes:"] = "";
$a->strings["Dislikes:"] = "";
$a->strings["Example: fishing photography software"] = "Esempio: pesca fotografia programmazione";
$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)";
$a->strings["(Used for searching profiles, never shown to others)"] = "(Usato per cercare tra i profili, non è mai visibile agli altri)";
$a->strings["Tell us about yourself..."] = "Raccontaci di te...";
$a->strings["Hobbies/Interests"] = "Hobby/interessi";
$a->strings["Contact information and Social Networks"] = "Informazioni su contatti e social network";
$a->strings["Musical interests"] = "Interessi musicali";
$a->strings["Books, literature"] = "Libri, letteratura";
$a->strings["Television"] = "Televisione";
$a->strings["Film/dance/culture/entertainment"] = "Film/danza/cultura/intrattenimento";
$a->strings["Love/romance"] = "Amore";
$a->strings["Work/employment"] = "Lavoro/impiego";
$a->strings["School/education"] = "Scuola/educazione";
$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Questo è il tuo profilo <strong>publico</strong>.<br /><strong>Potrebbe</strong> essere visto da chiunque attraverso internet.";
$a->strings["Age: "] = "Età : ";
$a->strings["Edit/Manage Profiles"] = "Modifica / Gestisci profili";
$a->strings["Change profile photo"] = "Cambia la foto del profilo";
$a->strings["Create New Profile"] = "Crea un nuovo profilo";
$a->strings["Profile Image"] = "Immagine del Profilo";
$a->strings["visible to everybody"] = "visibile a tutti";
$a->strings["Edit visibility"] = "Modifica visibilità";
$a->strings["Save to Folder:"] = "";
$a->strings["- select -"] = "";
$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s";
$a->strings["No potential page delegates located."] = "Nessun potenziale delegato per la pagina è stato trovato.";
$a->strings["Delegate Page Management"] = "Gestione delegati per la pagina";
$a->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."] = "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente.";
$a->strings["Existing Page Managers"] = "Gestori Pagina Esistenti";
$a->strings["Existing Page Delegates"] = "Delegati Pagina Esistenti";
$a->strings["Potential Delegates"] = "Delegati Potenziali";
$a->strings["Add"] = "Aggiungi";
$a->strings["No entries."] = "Nessun articolo.";
$a->strings["Source (bbcode) text:"] = "";
$a->strings["Source (Diaspora) text to convert to BBcode:"] = "";
$a->strings["Source input: "] = "";
$a->strings["bb2html: "] = "";
$a->strings["bb2html2bb: "] = "";
$a->strings["bb2md: "] = "";
$a->strings["bb2md2html: "] = "";
$a->strings["bb2dia2bb: "] = "";
$a->strings["bb2md2html2bb: "] = "";
$a->strings["Source input (Diaspora format): "] = "";
$a->strings["diaspora2bb: "] = "";
$a->strings["Friend Suggestions"] = "Contatti suggeriti";
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore.";
$a->strings["Ignore/Hide"] = "Ignora / Nascondi";
$a->strings["Global Directory"] = "Elenco globale";
$a->strings["Find on this site"] = "Cerca nel sito";
$a->strings["Site Directory"] = "Elenco del sito";
$a->strings["Gender: "] = "Genere:";
$a->strings["Gender:"] = "Genere:";
$a->strings["Status:"] = "Stato:";
$a->strings["Homepage:"] = "Homepage:";
$a->strings["About:"] = "Informazioni:";
$a->strings["No entries (some entries may be hidden)."] = "Nessuna voce (qualche voce potrebbe essere nascosta).";
$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido.";
$a->strings["Please join us on Friendica"] = "";
$a->strings["%s : Message delivery failed."] = "%s: la consegna del messaggio fallita.";
$a->strings["%d message sent."] = array(
0 => "%d messaggio inviato.",
1 => "%d messaggi inviati.",
);
$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili";
$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "";
$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "";
$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "";
$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "";
$a->strings["Send invitations"] = "Invia inviti";
$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:";
$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "";
$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code";
$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una volta registrato, connettiti con me dal mio profilo:";
$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "";
$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "";
$a->strings["Response from remote site was not understood."] = "Errore di comunicazione con l'altro sito.";
$a->strings["Unexpected response from remote site: "] = "La risposta dell'altro sito non può essere gestita: ";
$a->strings["Confirmation completed successfully."] = "Conferma completata con successo.";
$a->strings["Remote site reported: "] = "Il sito remoto riporta: ";
$a->strings["Temporary failure. Please wait and try again."] = "Errore temporaneo. Attendi e riprova.";
$a->strings["Introduction failed or was revoked."] = "La presentazione è fallita o è stata revocata.";
$a->strings["Temporary failure. Please wait and try again."] = "Problema temporaneo. Attendi e riprova.";
$a->strings["Introduction failed or was revoked."] = "La presentazione ha generato un errore o è stata revocata.";
$a->strings["Unable to set contact photo."] = "Impossibile impostare la foto del contatto.";
$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s è ora amico di %2\$s";
$a->strings["No user record found for '%s' "] = "Nessun utente trovato per '%s'";
$a->strings["Our site encryption key is apparently messed up."] = "La nostra chiave di criptazione del sito è apparentemente incasinata.";
$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "E' stato fornito un indirizzo vuoto o non possiamo decriptare l'indirizzo.";
$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s e %2\$s adesso sono amici";
$a->strings["No user record found for '%s' "] = "Nessun utente trovato '%s'";
$a->strings["Our site encryption key is apparently messed up."] = "La nostra chiave di criptazione del sito sembra essere corrotta.";
$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo.";
$a->strings["Contact record was not found for you on our site."] = "Il contatto non è stato trovato sul nostro sito.";
$a->strings["Site public key not available in contact record for URL %s."] = "La chiave pubblica del sito non è disponibile per l'URL %s";
$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Dovrebbe funzionare se provi ancora.";
$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare.";
$a->strings["Unable to set your contact credentials on our system."] = "Impossibile impostare le credenziali del tuo contatto sul nostro sistema.";
$a->strings["Unable to update your contact profile details on our system"] = "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema";
$a->strings["Connection accepted at %s"] = "Connession accettata su %s";
$a->strings["Login failed."] = "Accesso fallito.";
$a->strings["Welcome "] = "Benvenuto";
$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo.";
$a->strings["Welcome back "] = "Bentornato ";
$a->strings["%s welcomes %s"] = "%s da il benvenuto a %s";
$a->strings["View Contacts"] = "Guarda contatti";
$a->strings["No contacts."] = "Nessuno contatto.";
$a->strings["Group created."] = "Gruppo creato.";
$a->strings["Could not create group."] = "Impossibile creare il gruppo.";
$a->strings["Group not found."] = "Gruppo non trovato.";
$a->strings["Group name changed."] = "Il nome del gruppo è cambiato.";
$a->strings["Create a group of contacts/friends."] = "Crea un gruppo di amici/contatti.";
$a->strings["Group Name: "] = "Nome del gruppo:";
$a->strings["Group removed."] = "Gruppo rimosso.";
$a->strings["Unable to remove group."] = "Impossibile rimuovere il gruppo.";
$a->strings["Group Editor"] = "Modifica gruppo";
$a->strings["Members"] = "Membri";
$a->strings["All Contacts"] = "Tutti i Contatti";
$a->strings["Item not available."] = "Elemento non disponibile.";
$a->strings["Item was not found."] = "Elemento non trovato.";
$a->strings["Common Friends"] = "Amici in comune";
$a->strings["No friends in common."] = "Non ci sono amici in comune.";
$a->strings["Profile Match"] = "Profili combacianti";
$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito.";
$a->strings["Not available."] = "Non disponibile.";
$a->strings["Community"] = "Comunità";
$a->strings["Shared content is covered by the <a href=\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons Attribution 3.0</a> license."] = "Il contenuto in comune è coperto dalla licenza <a href=\"http://creativecommons.org/licenses/by/3.0/deed.it\">Creative Commons Attribuzione 3.0</a>.";
$a->strings["Post to Tumblr"] = "Pubblica su Tumblr";
$a->strings["Tumblr Post Settings"] = "Impostazioni di invio a Tumblr";
$a->strings["Enable Tumblr Post Plugin"] = "Abilita Plugin Tumblr";
$a->strings["Tumblr login"] = "Tumblr login";
$a->strings["Tumblr password"] = "Tumblr password";
$a->strings["Post to Tumblr by default"] = "Pubblica su Tumblr di default";
$a->strings["Post from Friendica"] = "Messaggio da Friendica";
$a->strings["Post to Twitter"] = "Inva a Twitter";
$a->strings["Twitter settings updated."] = "Impostazioni di Twitter aggiornate.";
$a->strings["Twitter Posting Settings"] = "Impostazioni Invio a Twitter";
$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Nessuna coopia di chiavi per Twitter trovata. Contatta il tuo amministratore del sito.";
$a->strings["At this Friendika 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 <strong>public</strong> posts will be posted to Twitter."] = "Questa installazione di Friendika ha il plugin Twitter abilitato, ma non hai ancora collegato il tuo account locale con il tuo account su Twitter. Per farlo, clicca il bottone qui sotto per ottenere un PIN da Twitter, che dovrai copiare nel box più sotto per poi inviare la form. Solo i tuoi messaggi <strong>pubblici</strong> verranno inviati anche su Twitter.";
$a->strings["Log in with Twitter"] = "Accedi con Twitter";
$a->strings["Copy the PIN from Twitter here"] = "Copia il PIN da Twitter qui";
$a->strings["Currently connected to: "] = "Al momento collegato con:";
$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Se abilitato tutti i tuoi messaggi <strong>pubblici</strong> possono essere inviati all'account Twitter associato. Puoi scegliere di farlo sempre (qui) o ogni volta che invii, nelle impostazioni di privacy del messaggio.";
$a->strings["Allow posting to Twitter"] = "Permetti l'invio a Twitter";
$a->strings["Send public postings to Twitter by default"] = "Invia sempre i messaggi pubblici a Twitter";
$a->strings["Clear OAuth configuration"] = "Cancella la configurazione OAuth";
$a->strings["Consumer key"] = "Consumer key";
$a->strings["Consumer secret"] = "Consumer secret";
$a->strings["Post to StatusNet"] = "Invia a StatusNet";
$a->strings["Please contact your site administrator.<br />The provided API URL is not valid."] = "Contatta l'amministratore del sito.<br/>L'URL delle API fornito non è valido.";
$a->strings["We could not contact the StatusNet API with the Path you entered."] = "Non possiamo conttattare le API di StatusNet con il percorso che hai inserito.";
$a->strings["StatusNet settings updated."] = "Impostazioni StatusNet aggiornate.";
$a->strings["StatusNet Posting Settings"] = "Impostazioni di invio a StatusNet";
$a->strings["Globally Available StatusNet OAuthKeys"] = "Chiavi OAuth StatusNet disponibili sul sito";
$a->strings["There are preconfigured OAuth key pairs for some StatusNet servers available. If you are useing one of them, please use these credentials. If not feel free to connect to any other StatusNet instance (see below)."] = "Queste sono chiavi OAuth precofigurate disponibili per alcuni server StatusNet. Se stai usando uno di questi server, per favore usa queste credenziali. Altrimenti sei libero di collegarti a un'altra installazione di StatusNet (vedi sotto).";
$a->strings["Provide your own OAuth Credentials"] = "Fornisci le tue credenziali OAuth";
$a->strings["No consumer key pair for StatusNet found. Register your Friendika Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendika installation at your favorited StatusNet installation."] = "Nessuna coppia di chiavi consumer per StatusNet trovata. Regitstra il tuo Account Friendika come un client desktop sul tuo account StatusNet, copia la coppia di chiavi qui e inserisci l'url di base delle API.<br />Prima di registrare la tua coppia di chiavi OAuth, chiedi all'amministratore se esiste già una coppia di chiavi per questa installazione di Friendika sulla installazione di StatusNet che ti interessa.";
$a->strings["OAuth Consumer Key"] = "OAuth Consumer Key";
$a->strings["OAuth Consumer Secret"] = "OAuth Consumer Secret";
$a->strings["Base API Path (remember the trailing /)"] = "Indirizzo di base per le API (ricorda la / alla fine)";
$a->strings["To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to StatusNet."] = "Per collegare il tuo account StatusNet, clicca sul bottone qui sotto per ottenere un codice di sicurezza da StatusNet, che dovrai copiare nel box più sotto per poi inviare la form. Solo i tuoi messaggi <strong>pubblci</strong> saranno inviati a StatusNet.";
$a->strings["Log in with StatusNet"] = "Login con StatuNet";
$a->strings["Copy the security code from StatusNet here"] = "Copia il codice di sicurezza da StatusNet qui";
$a->strings["Cancel Connection Process"] = "Annulla il processo di connessione";
$a->strings["Current StatusNet API is"] = "Le API StatusNet correnti sono";
$a->strings["Cancel StatusNet Connection"] = "Annulla la connessione a StatusNet";
$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated StatusNet account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Se abilitato tutti i tuoi messaggi <strong>pubblici</strong> possono essere inviati all'account StatusNet associato. Puoi scegliere di farlo sempre (qui) o ogni volta che invii, nelle impostazioni di privacy del messaggio.";
$a->strings["Allow posting to StatusNet"] = "Permetti l'invio a StatusNet";
$a->strings["Send public postings to StatusNet by default"] = "Di default invia i messaggi pubblici a StatusNet";
$a->strings["API URL"] = "API URL";
$a->strings["OEmbed settings updated"] = "Impostazioni OEmbed aggiornate";
$a->strings["Use OEmbed for YouTube videos"] = "Usa OEmbed per i video di YouTube";
$a->strings["URL to embed:"] = "URL da incorporare:";
$a->strings["Three Dimensional Tic-Tac-Toe"] = "Tic-Tac-Toe tridimensionale";
$a->strings["3D Tic-Tac-Toe"] = "3D Tic-Tac-Toe";
$a->strings["New game"] = "Nuovo gioco";
$a->strings["New game with handicap"] = "Nuovo gioco con l'handicap";
$a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "Tic-tac-toe tridimensionale è come il gioco tradizionale, solo che si gioca su livelli multipli contemporaneamente.";
$a->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 questo caso ci sono tra livelli. Puoi vincere facendo tre caselle in fila su ogni livello, anche verso l'alto, il basso e diagonalmente anche attraverso i diversi livelli.";
$a->strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "L'handicap disabilita la casella centrale sul livello di mezzo, perchè il giocatore che si prende quella casella spesso ha un deciso vantaggio.";
$a->strings["You go first..."] = "Cominci tu...";
$a->strings["I'm going first this time..."] = "Comincio io questa volta...";
$a->strings["You won!"] = "Hai vinto!";
$a->strings["\"Cat\" game!"] = "Stallo!";
$a->strings["I won!"] = "Ho vinto!";
$a->strings["Allow to use your friendika id (%s) to connecto to external unhosted-enabled storage (like ownCloud)"] = "";
$a->strings["Unhosted DAV storage url"] = "";
$a->strings["Impressum"] = "Impressum";
$a->strings["Site Owner"] = "Proprietario del sito";
$a->strings["Email Address"] = "Indirizzo email";
$a->strings["Postal Address"] = "Indirizzo";
$a->strings["The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "Il plugin Impressum deve essere configurato!<br>Aggiungi almeno il Proprietario del sito.";
$a->strings["Site Owners Profile"] = "Profilo del proprietario del sito";
$a->strings["Notes"] = "Note";
$a->strings["%1\$s has joined %2\$s"] = "";
$a->strings["Google+ Import Settings"] = "";
$a->strings["Enable Google+ Import"] = "";
$a->strings["Google Account ID"] = "";
$a->strings["Google+ Import Settings saved."] = "";
$a->strings["Facebook disabled"] = "Facebook disabilitato";
$a->strings["Updating contacts"] = "Aggiornamento contatti";
$a->strings["Facebook API key is missing."] = "Chiave API Facebook mancante.";
@ -885,7 +1075,9 @@ $a->strings["Facebook Connect"] = "Facebook Connect";
$a->strings["Install Facebook connector for this account."] = "Installa Facebook connector per questo account";
$a->strings["Remove Facebook connector"] = "Rimuovi Facebook connector";
$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Ri-autentica [Questo è necessario ogni volta che cambia la password di Facebook.]";
$a->strings["Post to Facebook by default"] = "Invia su Facebook di default";
$a->strings["Post to Facebook by default"] = "Invia sempre a Facebook";
$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "";
$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "";
$a->strings["Link all your Facebook friends and conversations on this website"] = "Collega tutti i tuoi amici di Facebook e le conversazioni su questo sito";
$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "Le conversazione su Facebook sono composte dai i tuoi messsaggi in bacheca e dai messaggi dei tuoi amici";
$a->strings["On this website, your Facebook friend stream is only visible to you."] = "Su questo sito, i messaggi dai vostri amici su Facebook è visibile solo a te.";
@ -893,17 +1085,47 @@ $a->strings["The following settings determine the privacy of your Facebook profi
$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "Su questo sito, le conversazioni sulla tua bacheca di Facebook saranno visibili solo a te";
$a->strings["Do not import your Facebook profile wall conversations"] = "Non importare le conversazione sulla tua bacheca di Facebook";
$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "Se scegli di collegare le conversazioni e lasci entrambi questi box non segnati, la tua bacheca di Facebook sarà fusa con la tua bacheca su questao sito, e le impostazioni di privacy su questo sito saranno usate per decidere chi potrà vedere le conversazioni.";
$a->strings["Facebook"] = "Facebook";
$a->strings["Facebook Connector Settings"] = "Impostazioni Connettore Facebook";
$a->strings["Comma separated applications to ignore"] = "Elenco separato da virgola di applicazioni da ignorare";
$a->strings["Problems with Facebook Real-Time Updates"] = "Problemi con gli aggiornamenti in tempo reale con Facebook";
$a->strings["Facebook Connector Settings"] = "Impostazioni del connettore Facebook";
$a->strings["Facebook API Key"] = "Facebook API Key";
$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>";
$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "Error: the given API Key seems to be incorrect (the application access token could not be retrieved).";
$a->strings["The given API Key seems to work correctly."] = "L' API Key fornita sembra funzionare correttamente.";
$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "";
$a->strings["App-ID / API-Key"] = "App-ID / API-Key";
$a->strings["Application secret"] = "Application secret";
$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "";
$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "";
$a->strings["Real-Time Updates"] = "Aggiornamenti Real-Time";
$a->strings["Real-Time Updates are activated."] = "Gli aggiornamenti in tempo reale sono attivi";
$a->strings["Deactivate Real-Time Updates"] = "Disattiva gli aggiornamenti in tempo reale";
$a->strings["Real-Time Updates not activated."] = "Gli aggiornamenti in tempo reale non sono attivi";
$a->strings["Activate Real-Time Updates"] = "Attiva gli aggiornamenti in tempo reale";
$a->strings["The new values have been saved."] = "I nuovi valori sono stati salvati.";
$a->strings["Post to Facebook"] = "Invia a Facebook";
$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Invio su Facebook annullato per un conflitto nei permessi di accesso.";
$a->strings["Image: "] = "Immagine: ";
$a->strings["View on Friendika"] = "Vedi su Friendika";
$a->strings["View on Friendica"] = "Vedi su Friendica";
$a->strings["Facebook post failed. Queued for retry."] = "Invio a Facebook fallito. In attesa di riprovare.";
$a->strings["Generate new key"] = "Genera una nuova chiave";
$a->strings["Widgets key"] = "Chiave Widget";
$a->strings["Widgets available"] = "Widget disponibili";
$a->strings["Connect on Friendika!"] = "Connettiti su Friendika!";
$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "";
$a->strings["Facebook connection became invalid"] = "";
$a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."] = "";
$a->strings["StatusNet AutoFollow settings updated."] = "";
$a->strings["StatusNet AutoFollow Settings"] = "";
$a->strings["Automatically follow any StatusNet followers/mentioners"] = "";
$a->strings["Bg settings updated."] = "";
$a->strings["Bg Settings"] = "";
$a->strings["How many contacts to display on profile sidebar"] = "Quanti contatti visualizzare nella barra laterale del profilo";
$a->strings["Lifetime of the cache (in hours)"] = "";
$a->strings["Cache Statistics"] = "";
$a->strings["Number of items"] = "";
$a->strings["Size of the cache"] = "";
$a->strings["Delete the whole cache"] = "";
$a->strings["Facebook Post disabled"] = "";
$a->strings["Facebook Post"] = "";
$a->strings["Install Facebook Post connector for this account."] = "";
$a->strings["Remove Facebook Post connector"] = "";
$a->strings["Facebook Post Settings"] = "";
$a->strings["%d person likes this"] = array(
0 => "piace a %d persona",
1 => "piace a %d persone",
@ -912,32 +1134,401 @@ $a->strings["%d person doesn't like this"] = array(
0 => "non piace a %d persona",
1 => "non piace a %d persone",
);
$a->strings["Report Bug"] = "Segnala un Bug";
$a->strings["\"Not Safe For Work\" Settings"] = "Impostazioni \"Non sicuro per il lavoro\" (NSFW)";
$a->strings["Comma separated words to treat as NSFW"] = "Lista di parole, separate da virgola, da trattare come NSFW";
$a->strings["Get added to this list!"] = "";
$a->strings["Generate new key"] = "Genera una nuova chiave";
$a->strings["Widgets key"] = "Chiave Widget";
$a->strings["Widgets available"] = "Widget disponibili";
$a->strings["Connect on Friendica!"] = "Connettiti su Friendica!";
$a->strings["bitchslap"] = "";
$a->strings["bitchslapped"] = "";
$a->strings["shag"] = "";
$a->strings["shagged"] = "";
$a->strings["do something obscenely biological to"] = "";
$a->strings["did something obscenely biological to"] = "";
$a->strings["point out the poke feature to"] = "";
$a->strings["pointed out the poke feature to"] = "";
$a->strings["declare undying love for"] = "";
$a->strings["declared undying love for"] = "";
$a->strings["patent"] = "";
$a->strings["patented"] = "";
$a->strings["stroke beard"] = "";
$a->strings["stroked their beard at"] = "";
$a->strings["bemoan the declining standards of modern secondary and tertiary education to"] = "";
$a->strings["bemoans the declining standards of modern secondary and tertiary education to"] = "";
$a->strings["hug"] = "";
$a->strings["hugged"] = "";
$a->strings["kiss"] = "";
$a->strings["kissed"] = "";
$a->strings["raise eyebrows at"] = "";
$a->strings["raised their eyebrows at"] = "";
$a->strings["insult"] = "";
$a->strings["insulted"] = "";
$a->strings["praise"] = "";
$a->strings["praised"] = "";
$a->strings["be dubious of"] = "";
$a->strings["was dubious of"] = "";
$a->strings["eat"] = "";
$a->strings["ate"] = "";
$a->strings["giggle and fawn at"] = "";
$a->strings["giggled and fawned at"] = "";
$a->strings["doubt"] = "";
$a->strings["doubted"] = "";
$a->strings["glare"] = "";
$a->strings["glared at"] = "";
$a->strings["YourLS Settings"] = "Impostazioni YourLS";
$a->strings["URL: http://"] = "URL: http://";
$a->strings["Username:"] = "Nome utente:";
$a->strings["Password:"] = "Password:";
$a->strings["Use SSL "] = "Usa SSL";
$a->strings["yourls Settings saved."] = "Impostazioni yourls salvate.";
$a->strings["Post to LiveJournal"] = "Posta su LiveJournal";
$a->strings["LiveJournal Post Settings"] = "Impostazioni post LiveJournal";
$a->strings["Enable LiveJournal Post Plugin"] = "Abilita il plugin LiveJournal";
$a->strings["LiveJournal username"] = "LiveJournal username";
$a->strings["LiveJournal password"] = "LiveJournal password";
$a->strings["Post to LiveJournal by default"] = "Posta su LiveJournal di default";
$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "Impostazioni per NSWF (Filtro Contenuti Generico)";
$a->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."] = "Questo plugin cerca nei messagi le parole/testo che inserisci qui sotto, e collassa i messaggi che li contengono, per non mostrare contenuto inappropriato nel momento sbagliato, come contenuto a sfondo sessuale che puo' essere inappropriato in un ambiente di lavoro. E' educato (e consigliato) taggare i messaggi che contengono nudità con #NSFW (Not Safe For Work: Non Sicuro Per il Lavoro). Questo filtro puo' cercare anche qualsiasi parola che inserisci, quindi puo' essere usato come filtro di contenuti generico.";
$a->strings["Enable Content filter"] = "Abilita il Filtro Contenuti";
$a->strings["Comma separated list of keywords to hide"] = "Elenco separato da virgole di parole da nascondere";
$a->strings["Use /expression/ to provide regular expressions"] = "Utilizza /espressione/ per inserire espressioni regolari";
$a->strings["NSFW Settings saved."] = "Impostazioni NSFW salvate.";
$a->strings["%s - Click to open/close"] = "%s - Clicca per aprire / chiudere";
$a->strings["Forums"] = "Forum";
$a->strings["Forums:"] = "";
$a->strings["Page settings updated."] = "";
$a->strings["Page Settings"] = "";
$a->strings["How many forums to display on sidebar without paging"] = "";
$a->strings["Randomise Page/Forum list"] = "";
$a->strings["Show pages/forums on profile page"] = "";
$a->strings["Planets Settings"] = "";
$a->strings["Enable Planets Plugin"] = "";
$a->strings["Login"] = "Accedi";
$a->strings["OpenID"] = "OpenID";
$a->strings["Last users"] = "Ultimi utenti";
$a->strings["Latest users"] = "Ultimi utenti";
$a->strings["Most active users"] = "Utenti più attivi";
$a->strings["Last photos"] = "Ultime foto";
$a->strings["Last likes"] = "Ultimi \"mi piace\"";
$a->strings["Latest photos"] = "Ultime foto";
$a->strings["Latest likes"] = "Ultimi \"mi piace\"";
$a->strings["event"] = "l'evento";
$a->strings[" - Member since: %s"] = "- Iscritto dal: %s";
$a->strings["No access"] = "";
$a->strings["Could not open component for editing"] = "";
$a->strings["Go back to the calendar"] = "";
$a->strings["Event data"] = "";
$a->strings["Calendar"] = "";
$a->strings["Special color"] = "";
$a->strings["Subject"] = "";
$a->strings["Starts"] = "";
$a->strings["Ends"] = "";
$a->strings["Description"] = "";
$a->strings["Recurrence"] = "";
$a->strings["Frequency"] = "";
$a->strings["Daily"] = "Giornalmente";
$a->strings["Weekly"] = "Settimanalmente";
$a->strings["Monthly"] = "Mensilmente";
$a->strings["Yearly"] = "";
$a->strings["days"] = "giorni";
$a->strings["weeks"] = "settimane";
$a->strings["months"] = "mesi";
$a->strings["years"] = "anni";
$a->strings["Interval"] = "";
$a->strings["All %select% %time%"] = "";
$a->strings["Days"] = "";
$a->strings["Sunday"] = "Domenica";
$a->strings["Monday"] = "Lunedì";
$a->strings["Tuesday"] = "Martedì";
$a->strings["Wednesday"] = "Mercoledì";
$a->strings["Thursday"] = "Giovedì";
$a->strings["Friday"] = "Venerdì";
$a->strings["Saturday"] = "Sabato";
$a->strings["First day of week:"] = "";
$a->strings["Day of month"] = "";
$a->strings["#num#th of each month"] = "";
$a->strings["#num#th-last of each month"] = "";
$a->strings["#num#th #wkday# of each month"] = "";
$a->strings["#num#th-last #wkday# of each month"] = "";
$a->strings["Month"] = "";
$a->strings["#num#th of the given month"] = "";
$a->strings["#num#th-last of the given month"] = "";
$a->strings["#num#th #wkday# of the given month"] = "";
$a->strings["#num#th-last #wkday# of the given month"] = "";
$a->strings["Repeat until"] = "";
$a->strings["Infinite"] = "";
$a->strings["Until the following date"] = "";
$a->strings["Number of times"] = "";
$a->strings["Exceptions"] = "";
$a->strings["none"] = "";
$a->strings["Notification"] = "";
$a->strings["Notify by"] = "";
$a->strings["E-Mail"] = "";
$a->strings["On Friendica / Display"] = "";
$a->strings["Time"] = "";
$a->strings["Hours"] = "";
$a->strings["Minutes"] = "";
$a->strings["Seconds"] = "";
$a->strings["Weeks"] = "";
$a->strings["before the"] = "";
$a->strings["start of the event"] = "";
$a->strings["end of the event"] = "";
$a->strings["Add a notification"] = "";
$a->strings["The event #name# will start at #date"] = "";
$a->strings["#name# is about to begin."] = "";
$a->strings["Saved"] = "";
$a->strings["U.S. Time Format (mm/dd/YYYY)"] = "";
$a->strings["German Time Format (dd.mm.YYYY)"] = "";
$a->strings["Private Events"] = "";
$a->strings["Private Addressbooks"] = "";
$a->strings["Friendica-Native events"] = "";
$a->strings["Friendica-Contacts"] = "";
$a->strings["Your Friendica-Contacts"] = "";
$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = "";
$a->strings["Something went wrong when trying to import the file. Sorry."] = "";
$a->strings["The ICS-File has been imported."] = "";
$a->strings["No file was uploaded."] = "";
$a->strings["Import a ICS-file"] = "";
$a->strings["ICS-File"] = "";
$a->strings["Overwrite all #num# existing events"] = "";
$a->strings["New event"] = "";
$a->strings["Today"] = "";
$a->strings["Day"] = "";
$a->strings["Week"] = "";
$a->strings["Reload"] = "";
$a->strings["Date"] = "";
$a->strings["Error"] = "";
$a->strings["The calendar has been updated."] = "";
$a->strings["The new calendar has been created."] = "";
$a->strings["The calendar has been deleted."] = "";
$a->strings["Calendar Settings"] = "";
$a->strings["Date format"] = "";
$a->strings["Time zone"] = "";
$a->strings["Calendars"] = "";
$a->strings["Create a new calendar"] = "";
$a->strings["Limitations"] = "";
$a->strings["Warning"] = "";
$a->strings["Synchronization (iPhone, Thunderbird Lightning, Android, ...)"] = "";
$a->strings["Synchronizing this calendar with the iPhone"] = "";
$a->strings["Synchronizing your Friendica-Contacts with the iPhone"] = "";
$a->strings["The current version of this plugin has not been set up correctly. Please contact the system administrator of your installation of friendica to fix this."] = "";
$a->strings["Extended calendar with CalDAV-support"] = "";
$a->strings["noreply"] = "nessuna risposta";
$a->strings["Notification: "] = "";
$a->strings["The database tables have been installed."] = "";
$a->strings["An error occurred during the installation."] = "";
$a->strings["The database tables have been updated."] = "";
$a->strings["An error occurred during the update."] = "";
$a->strings["No system-wide settings yet."] = "";
$a->strings["Database status"] = "";
$a->strings["Installed"] = "";
$a->strings["Upgrade needed"] = "";
$a->strings["Please back up all calendar data (the tables beginning with dav_*) before proceeding. While all calendar events <i>should</i> be converted to the new database structure, it's always safe to have a backup. Below, you can have a look at the database-queries that will be made when pressing the 'update'-button."] = "";
$a->strings["Upgrade"] = "";
$a->strings["Not installed"] = "";
$a->strings["Install"] = "";
$a->strings["Unknown"] = "";
$a->strings["Something really went wrong. I cannot recover from this state automatically, sorry. Please go to the database backend, back up the data, and delete all tables beginning with 'dav_' manually. Afterwards, this installation routine should be able to reinitialize the tables automatically."] = "";
$a->strings["Troubleshooting"] = "";
$a->strings["Manual creation of the database tables:"] = "";
$a->strings["Show SQL-statements"] = "";
$a->strings["Private Calendar"] = "";
$a->strings["Friendica Events: Mine"] = "";
$a->strings["Friendica Events: Contacts"] = "";
$a->strings["Private Addresses"] = "";
$a->strings["Friendica Contacts"] = "";
$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"] = "Permette di usare il tuo id friendica (%s) per collegarsi a storage esterni che supportano unhosted (come ownCloud). Vedi <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>";
$a->strings["Template URL (with {category})"] = "Template URL (con {category})";
$a->strings["OAuth end-point"] = "OAuth end-point";
$a->strings["Api"] = "Api";
$a->strings["Member since:"] = "Membro dal:";
$a->strings["Three Dimensional Tic-Tac-Toe"] = "Tic-Tac-Toe tridimensionale";
$a->strings["3D Tic-Tac-Toe"] = "3D Tic-Tac-Toe";
$a->strings["New game"] = "Nuova partita";
$a->strings["New game with handicap"] = "Nuova partita con handicap";
$a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "Tic-tac-toe tridimensionale è come il gioco tradizionale, solo che si gioca su livelli multipli contemporaneamente.";
$a->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 questo caso ci sono tre livelli. Puoi vincere mettendo tre segni in fila su ogni livello, anche verso l'alto, il basso e diagonalmente anche attraverso i diversi livelli.";
$a->strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "L'handicap disabilita la casella centrale sul livello di mezzo, perchè il giocatore che si prende quella casella spesso ha un deciso vantaggio.";
$a->strings["You go first..."] = "Cominci tu...";
$a->strings["I'm going first this time..."] = "Comincio io questa volta...";
$a->strings["You won!"] = "Hai vinto!";
$a->strings["\"Cat\" game!"] = "Stallo!";
$a->strings["I won!"] = "Ho vinto!";
$a->strings["Randplace Settings"] = "Impostazioni Randplace";
$a->strings["Enable Randplace Plugin"] = "Abilita il plugin Randplace";
$a->strings["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "Questo sito è monitorato con lo strumento di analisi <a href='http://www.piwik.org'>Piwik</a>.";
$a->strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "Se non vuoi che le tue visite vengono registrate in questo modo è possibile <a href='%s'>impostare un cookie per evitare che Piwik rintracci ulteriori visite del sito</a> (opt-out).";
$a->strings["Piwik Base URL"] = "Piwik Base URL";
$a->strings["Site ID"] = "Site ID";
$a->strings["Show opt-out cookie link?"] = "Mostra il link per il cookie opt-out?";
$a->strings["Post to Dreamwidth"] = "Posta su Dreamwidth";
$a->strings["Dreamwidth Post Settings"] = "Impostazioni post Dreamwidth";
$a->strings["Enable dreamwidth Post Plugin"] = "Abilita il plugin dreamwidth";
$a->strings["dreamwidth username"] = "dreamwidth username";
$a->strings["dreamwidth password"] = "Password dreamwidth";
$a->strings["Post to dreamwidth by default"] = "Invia a dreamwidth per impostazione predefinita";
$a->strings["Post to Drupal"] = "Invia a Drupal";
$a->strings["Drupal Post Settings"] = "Impostazioni invio a Drupal";
$a->strings["Enable Drupal Post Plugin"] = "Abilita il plugin di invio a Drupal";
$a->strings["Drupal username"] = "Drupal username";
$a->strings["Drupal password"] = "Drupal password";
$a->strings["Post Type - article,page,or blog"] = "Tipo di post - article,page o blog";
$a->strings["Drupal site URL"] = "Indirizzo del sito Drupal";
$a->strings["Drupal site uses clean URLS"] = "Il sito Drupal usa URL puliti";
$a->strings["Post to Drupal by default"] = "Invia a Drupal per impostazione predefinita";
$a->strings["Post from Friendica"] = "Messaggio da Friendica";
$a->strings["Startpage Settings"] = "";
$a->strings["Home page to load after login - leave blank for profile wall"] = "";
$a->strings["Examples: &quot;network&quot; or &quot;notifications/system&quot;"] = "";
$a->strings["Geonames settings updated."] = "Impostazioni di geonames aggiornate.";
$a->strings["Geonames Settings"] = "Impostazioni Geonames";
$a->strings["Enable Geonames Plugin"] = "Abilita plugin Geonames";
$a->strings["Your account on %s will expire in a few days."] = "";
$a->strings["Your Friendica account is about to expire."] = "";
$a->strings["Hi %1\$s,\n\nYour account on %2\$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"] = "";
$a->strings["Upload a file"] = "Carica un file";
$a->strings["Drop files here to upload"] = "Trascina un file qui per caricarlo";
$a->strings["Failed"] = "Fallito";
$a->strings["Failed"] = "Caricamento fallito";
$a->strings["No files were uploaded."] = "Nessun file è stato caricato.";
$a->strings["Uploaded file is empty"] = "Il file caricato è vuoto";
$a->strings["File has an invalid extension, it should be one of "] = "Il file ha una estensione non valida, dovrebbe essere una di ";
$a->strings["File has an invalid extension, it should be one of "] = "Il file ha un'estensione non valida, dovrebbe essere una tra ";
$a->strings["Upload was cancelled, or server error encountered"] = "Il caricamento è stato cancellato, o si è verificato un errore sul server";
$a->strings["OEmbed settings updated"] = "Impostazioni OEmbed aggiornate";
$a->strings["Use OEmbed for YouTube videos"] = "Usa OEmbed per i video di YouTube";
$a->strings["URL to embed:"] = "URL da incorporare:";
$a->strings["show/hide"] = "";
$a->strings["No forum subscriptions"] = "";
$a->strings["Forumlist settings updated."] = "";
$a->strings["Forumlist Settings"] = "";
$a->strings["Randomise forum list"] = "";
$a->strings["Show forums on profile page"] = "";
$a->strings["Impressum"] = "Impressum";
$a->strings["Site Owner"] = "Proprietario del sito";
$a->strings["Email Address"] = "Indirizzo email";
$a->strings["Postal Address"] = "Indirizzo";
$a->strings["The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "Il plugin Impressum deve essere configurato!<br>Aggiungi almeno il Proprietario del sito.";
$a->strings["The page operators name."] = "Nome del gestore della pagina.";
$a->strings["Site Owners Profile"] = "Profilo del proprietario del sito";
$a->strings["Profile address of the operator."] = "Indirizzo del profilo del gestore della pagina";
$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "";
$a->strings["Notes"] = "Note";
$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "";
$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "";
$a->strings["Footer note"] = "Footer delle note";
$a->strings["Text for the footer. You can use BBCode here."] = "";
$a->strings["Report Bug"] = "Segnala un Bug";
$a->strings["No Timeline settings updated."] = "";
$a->strings["No Timeline Settings"] = "";
$a->strings["Disable Archive selector on profile wall"] = "";
$a->strings["\"Blockem\" Settings"] = "Impostazioni \"Blockem\"";
$a->strings["Comma separated profile URLS to block"] = "Lista, separata da virgola, di indirizzi da bloccare";
$a->strings["BLOCKEM Settings saved."] = "Impostazioni salvate.";
$a->strings["Blocked %s - Click to open/close"] = "%s bloccato - Clicca per aprire/chiudere";
$a->strings["Unblock Author"] = "Sblocca autore";
$a->strings["Block Author"] = "Blocca autore";
$a->strings["blockem settings updated"] = "Impostazioni 'blockem' aggiornate.";
$a->strings[":-)"] = ":-)";
$a->strings[":-("] = ":-(";
$a->strings["lol"] = "lol";
$a->strings["Quick Comment Settings"] = "Impostazioni commento rapido";
$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "Trovi i commenti rapidi vicino al box dei commenti, a volte nascosti. Cliccali per inviare semplici risposte.";
$a->strings["Enter quick comments, one per line"] = "Inserire un commento rapido, uno per linea";
$a->strings["Quick Comment settings saved."] = "Impostazioni commento rapido salvate.";
$a->strings["Tile Server URL"] = "";
$a->strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "";
$a->strings["Default zoom"] = "Default zoom";
$a->strings["The default zoom level. (1:world, 18:highest)"] = "";
$a->strings["Editplain settings updated."] = "Impostazioni 'Editplain' aggiornate.";
$a->strings["Group Text"] = "";
$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = "";
$a->strings["Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"] = "";
$a->strings["generic profile image"] = "immagine generica del profilo";
$a->strings["random geometric pattern"] = "";
$a->strings["monster face"] = "";
$a->strings["computer generated face"] = "";
$a->strings["retro arcade style face"] = "";
$a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = "";
$a->strings["This addon is not functional on your server."] = "";
$a->strings["Information"] = "";
$a->strings["Gravatar addon is installed. Please disable the Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "";
$a->strings["Default avatar image"] = "";
$a->strings["Select default avatar image if none was found. See README"] = "";
$a->strings["Libravatar settings updated."] = "";
$a->strings["Post to libertree"] = "";
$a->strings["libertree Post Settings"] = "";
$a->strings["Enable Libertree Post Plugin"] = "";
$a->strings["Libertree API token"] = "";
$a->strings["Libertree site URL"] = "";
$a->strings["Post to Libertree by default"] = "";
$a->strings["Altpager settings updated."] = "";
$a->strings["Alternate Pagination Setting"] = "";
$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = "";
$a->strings["The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail."] = "";
$a->strings["Use the MathJax renderer"] = "";
$a->strings["MathJax Base URL"] = "";
$a->strings["The URL for the javascript file that should be included to use MathJax. Can be either the MathJax CDN or another installation of MathJax."] = "";
$a->strings["Editplain Settings"] = "Impostazioni Editplain";
$a->strings["Disable richtext status editor"] = "Disabilita l'editor di testo visuale";
$a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "";
$a->strings["Select default avatar image if none was found at Gravatar. See README"] = "";
$a->strings["Rating of images"] = "";
$a->strings["Select the appropriate avatar rating for your site. See README"] = "";
$a->strings["Gravatar settings updated."] = "";
$a->strings["Your Friendica test account is about to expire."] = "";
$a->strings["Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."] = "";
$a->strings["\"pageheader\" Settings"] = "Impostazioni \"pageheader\"";
$a->strings["pageheader Settings saved."] = "Impostazioni salvate.";
$a->strings["Post to Insanejournal"] = "";
$a->strings["InsaneJournal Post Settings"] = "";
$a->strings["Enable InsaneJournal Post Plugin"] = "";
$a->strings["InsaneJournal username"] = "";
$a->strings["InsaneJournal password"] = "";
$a->strings["Post to InsaneJournal by default"] = "";
$a->strings["Jappix Mini addon settings"] = "";
$a->strings["Activate addon"] = "";
$a->strings["Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"] = "";
$a->strings["Jabber username"] = "";
$a->strings["Jabber server"] = "";
$a->strings["Jabber BOSH host"] = "";
$a->strings["Jabber password"] = "";
$a->strings["Encrypt Jabber password with Friendica password (recommended)"] = "";
$a->strings["Friendica password"] = "";
$a->strings["Approve subscription requests from Friendica contacts automatically"] = "";
$a->strings["Subscribe to Friendica contacts automatically"] = "";
$a->strings["Purge internal list of jabber addresses of contacts"] = "";
$a->strings["Add contact"] = "";
$a->strings["View Source"] = "Vedi sorgente";
$a->strings["Post to StatusNet"] = "Invia a StatusNet";
$a->strings["Please contact your site administrator.<br />The provided API URL is not valid."] = "Contatta l'amministratore del sito.<br/>L'URL delle API fornito non è valido.";
$a->strings["We could not contact the StatusNet API with the Path you entered."] = "Non possiamo conttattare le API di StatusNet con il percorso che hai inserito.";
$a->strings["StatusNet settings updated."] = "Impostazioni StatusNet aggiornate.";
$a->strings["StatusNet Posting Settings"] = "Impostazioni di invio a StatusNet";
$a->strings["Globally Available StatusNet OAuthKeys"] = "OAuthKeys globali di StatusNet";
$a->strings["There are preconfigured OAuth key pairs for some StatusNet servers available. If you are useing one of them, please use these credentials. If not feel free to connect to any other StatusNet instance (see below)."] = "Esistono coppie di chiavi OAuth precofigurate per alcuni server StatusNet. Se usi uno di questi server, per favore scegli queste credenziali. Altrimenti sei libero di collegarti a un'altra installazione di StatusNet (vedi sotto).";
$a->strings["Provide your own OAuth Credentials"] = "Fornisci le tue credenziali OAuth";
$a->strings["No consumer key pair for StatusNet found. Register your Friendica Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorited StatusNet installation."] = "Nessuna coppia di chiavi consumer trovate per StatusNet. Registra il tuo account Friendica come un client desktop nel tuo account StatusNet, copia la coppia di chiavi consumer qui e inserisci l'url base delle API.<br/>Prima di registrare la tua coppia di chiavi OAuth, chiedi all'amministratore se esiste già una coppia di chiavi per questo sito Friendica presso la tua installazione StatusNet preferita.";
$a->strings["OAuth Consumer Key"] = "OAuth Consumer Key";
$a->strings["OAuth Consumer Secret"] = "OAuth Consumer Secret";
$a->strings["Base API Path (remember the trailing /)"] = "Indirizzo di base per le API (ricorda la / alla fine)";
$a->strings["To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to StatusNet."] = "Per collegare il tuo account StatusNet, clicca sul bottone per ottenere un codice di sicurezza da StatusNet, che dovrai copiare nel box sottostante e poi inviare la form. Solo i tuoi messaggi <strong>pubblici</strong> saranno inviati a StatusNet.";
$a->strings["Log in with StatusNet"] = "Accedi con StatuNet";
$a->strings["Copy the security code from StatusNet here"] = "Copia il codice di sicurezza da StatusNet qui";
$a->strings["Cancel Connection Process"] = "Annulla il processo di connessione";
$a->strings["Current StatusNet API is"] = "Le API StatusNet correnti sono";
$a->strings["Cancel StatusNet Connection"] = "Annulla la connessione a StatusNet";
$a->strings["Currently connected to: "] = "Al momento connesso con:";
$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated StatusNet account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Se abilitato tutti i tuoi messaggi <strong>pubblici</strong> possono essere inviati all'account StatusNet associato. Puoi scegliere di farlo sempre (qui) o ogni volta che invii, nelle impostazioni di privacy del messaggio.";
$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to StatusNet will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "";
$a->strings["Allow posting to StatusNet"] = "Permetti l'invio a StatusNet";
$a->strings["Send public postings to StatusNet by default"] = "Invia sempre i messaggi pubblici a StatusNet";
$a->strings["Send linked #-tags and @-names to StatusNet"] = "";
$a->strings["Clear OAuth configuration"] = "Rimuovi la configurazione OAuth";
$a->strings["API URL"] = "API URL";
$a->strings["Infinite Improbability Drive"] = "";
$a->strings["Post to Tumblr"] = "Pubblica su Tumblr";
$a->strings["Tumblr Post Settings"] = "Impostazioni di invio a Tumblr";
$a->strings["Enable Tumblr Post Plugin"] = "Abilita Plugin Tumblr";
$a->strings["Tumblr login"] = "Tumblr login";
$a->strings["Tumblr password"] = "Tumblr password";
$a->strings["Post to Tumblr by default"] = "Pubblica su Tumblr di default";
$a->strings["Numfriends settings updated."] = "Impostazioni \"Numfriends' aggiornate.";
$a->strings["Numfriends Settings"] = "Impostazioni Numfriends";
$a->strings["Gnot settings updated."] = "Impostazioni di \"Gnot\" aggiornate.";
$a->strings["Gnot Settings"] = "Impostazioni Gnot";
$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "Permetti di raggruppare le notifiche dei commenti in thread su Gmail e anonimizza l'oggetto";
$a->strings["Enable this plugin/addon?"] = "Abilita questo plugin?";
$a->strings["[Friendica:Notify] Comment to conversation #%d"] = "[Friendica:Notifica] Commento alla conversazione #%d";
$a->strings["Post to Wordpress"] = "Pubblica su Wordpress";
$a->strings["WordPress Post Settings"] = "Impostazioni invio a WordPress";
$a->strings["Enable WordPress Post Plugin"] = "Abilita plugin \"invia a WordPress\"";
@ -945,34 +1536,142 @@ $a->strings["WordPress username"] = "nome utente WordPress";
$a->strings["WordPress password"] = "password WordPress";
$a->strings["WordPress API URL"] = "WordPress API URL";
$a->strings["Post to WordPress by default"] = "Pubblica su WordPress di default";
$a->strings["(no subject)"] = "(nessun oggetto)";
$a->strings["Provide a backlink to the Friendica post"] = "";
$a->strings["Read the original post and comment stream on Friendica"] = "";
$a->strings["\"Show more\" Settings"] = "Impostazioni \"Mostra altro\"";
$a->strings["Enable Show More"] = "Abilita \"Mostra altro\"";
$a->strings["Cutting posts after how much characters"] = "";
$a->strings["Show More Settings saved."] = "Impostazioni \"Mostra altro\" salvate.";
$a->strings["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "Questo sito è monitorato con lo strumento di analisi <a href='http://www.piwik.org'>Piwik</a>.";
$a->strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "Se non vuoi che le tue visite vengono registrate in questo modo è possibile <a href='%s'>impostare un cookie per evitare che Piwik rintracci ulteriori visite del sito</a> (opt-out).";
$a->strings["Piwik Base URL"] = "Piwik Base URL";
$a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "";
$a->strings["Site ID"] = "Site ID";
$a->strings["Show opt-out cookie link?"] = "Mostra il link per il cookie opt-out?";
$a->strings["Asynchronous tracking"] = "";
$a->strings["Post to Twitter"] = "Invia a Twitter";
$a->strings["Twitter settings updated."] = "Impostazioni di Twitter aggiornate.";
$a->strings["Twitter Posting Settings"] = "Impostazioni di invio a Twitter";
$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Nessuna coppia di chiavi per Twitter trovata. Contatta l'amministratore del sito.";
$a->strings["At this Friendica 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 <strong>public</strong> posts will be posted to Twitter."] = "Il plugin Twitter è abilitato ma non hai ancora collegato i tuoi account Friendica e Twitter. Per farlo, clicca il bottone qui sotto per ricevere un PIN da Twitter che dovrai copiare nel campo qui sotto. Solo i tuoi post <strong>pubblici</strong> saranno inviati a Twitter.";
$a->strings["Log in with Twitter"] = "Accedi con Twitter";
$a->strings["Copy the PIN from Twitter here"] = "Copia il PIN da Twitter qui";
$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Se abilitato tutti i tuoi messaggi <strong>pubblici</strong> possono essere inviati all'account Twitter associato. Puoi scegliere di farlo sempre (qui) o ogni volta che invii, nelle impostazioni di privacy del messaggio.";
$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) 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."] = "";
$a->strings["Allow posting to Twitter"] = "Permetti l'invio a Twitter";
$a->strings["Send public postings to Twitter by default"] = "Invia sempre i messaggi pubblici a Twitter";
$a->strings["Send linked #-tags and @-names to Twitter"] = "";
$a->strings["Consumer key"] = "Consumer key";
$a->strings["Consumer secret"] = "Consumer secret";
$a->strings["IRC Settings"] = "Impostazioni IRC";
$a->strings["Channel(s) to auto connect (comma separated)"] = "Canali a cui autocollegarsi (separati da virgola)";
$a->strings["Popular Channels (comma separated)"] = "Canali popolari (separati da virgola)";
$a->strings["IRC settings saved."] = "Impostazioni IRC salvate.";
$a->strings["IRC Chatroom"] = "Stanza IRC";
$a->strings["Popular Channels"] = "Canali Popolari";
$a->strings["Fromapp settings updated."] = "";
$a->strings["FromApp Settings"] = "";
$a->strings["The application name you would like to show your posts originating from."] = "";
$a->strings["Use this application name even if another application was used."] = "";
$a->strings["Post to blogger"] = "Posta su blogger";
$a->strings["Blogger Post Settings"] = "Impostazioni post per blogger";
$a->strings["Enable Blogger Post Plugin"] = "Abilita il plugin Blogger";
$a->strings["Blogger username"] = "Blogger username";
$a->strings["Blogger password"] = "Blogger password";
$a->strings["Blogger API URL"] = "Blogger API URL";
$a->strings["Post to Blogger by default"] = "";
$a->strings["Post to Posterous"] = "Invia a Posterous";
$a->strings["Posterous Post Settings"] = "Impostazioni di invio a Posterous";
$a->strings["Enable Posterous Post Plugin"] = "Abilita il plugin di invio a Posterous";
$a->strings["Posterous login"] = "Posterous login";
$a->strings["Posterous password"] = "Posterous password";
$a->strings["Posterous site ID"] = "";
$a->strings["Posterous API token"] = "";
$a->strings["Post to Posterous by default"] = "Invia sempre a Posterous";
$a->strings["Theme settings"] = "Impostazioni tema";
$a->strings["Set resize level for images in posts and comments (width and height)"] = "";
$a->strings["Set font-size for posts and comments"] = "";
$a->strings["Set theme width"] = "";
$a->strings["Color scheme"] = "Schema colori";
$a->strings["Your posts and conversations"] = "I tuoi messaggi e le tue conversazioni";
$a->strings["Your profile page"] = "Pagina del tuo profilo";
$a->strings["Your contacts"] = "";
$a->strings["Your photos"] = "Le tue foto";
$a->strings["Your events"] = "I tuoi eventi";
$a->strings["Personal notes"] = "Note personali";
$a->strings["Your personal photos"] = "Le tue foto personali";
$a->strings["Community Pages"] = "";
$a->strings["Community Profiles"] = "";
$a->strings["Last users"] = "Ultimi utenti";
$a->strings["Last likes"] = "Ultimi \"mi piace\"";
$a->strings["Last photos"] = "Ultime foto";
$a->strings["Find Friends"] = "Trova Amici";
$a->strings["Local Directory"] = "Elenco Locale";
$a->strings["Similar Interests"] = "Interessi simili";
$a->strings["Invite Friends"] = "Invita amici";
$a->strings["Earth Layers"] = "";
$a->strings["Set zoomfactor for Earth Layers"] = "";
$a->strings["Set longitude (X) for Earth Layers"] = "";
$a->strings["Set latitude (Y) for Earth Layers"] = "";
$a->strings["Help or @NewHere ?"] = "Serve aiuto? Sei nuovo?";
$a->strings["Connect Services"] = "Servizi di conessione";
$a->strings["Last Tweets"] = "";
$a->strings["Set twitter search term"] = "";
$a->strings["don't show"] = "non mostrare";
$a->strings["show"] = "mostra";
$a->strings["Show/hide boxes at right-hand column:"] = "";
$a->strings["Set line-height for posts and comments"] = "";
$a->strings["Set resolution for middle column"] = "";
$a->strings["Set color scheme"] = "";
$a->strings["Set zoomfactor for Earth Layer"] = "";
$a->strings["Last tweets"] = "";
$a->strings["Alignment"] = "Allineamento";
$a->strings["Left"] = "Sinistra";
$a->strings["Center"] = "Centrato";
$a->strings["Set colour scheme"] = "";
$a->strings["j F, Y"] = "j F Y";
$a->strings["j F"] = "j F";
$a->strings["Birthday:"] = "Compleanno:";
$a->strings["Age:"] = "Età:";
$a->strings["for %1\$d %2\$s"] = "";
$a->strings["Tags:"] = "Tag:";
$a->strings["Religion:"] = "Religione:";
$a->strings["Hobbies/Interests:"] = "Hobby/Interessi:";
$a->strings["Contact information and Social Networks:"] = "Informazioni su contatti e social network:";
$a->strings["Musical interests:"] = "Interessi musicali:";
$a->strings["Books, literature:"] = "Libri, letteratura:";
$a->strings["Television:"] = "Televisione:";
$a->strings["Film/dance/culture/entertainment:"] = "Film/danza/cultura/intrattenimento:";
$a->strings["Love/Romance:"] = "Amore:";
$a->strings["Work/employment:"] = "Lavoro:";
$a->strings["School/education:"] = "Scuola:";
$a->strings["Unknown | Not categorised"] = "Sconosciuto | non categorizzato";
$a->strings["Block immediately"] = "Blocca immediatamente";
$a->strings["Shady, spammer, self-marketer"] = "Shady, spammer, self-marketer";
$a->strings["Known to me, but no opinion"] = "Lo conosco, ma non ho oppinioni";
$a->strings["Known to me, but no opinion"] = "Lo conosco, ma non ho un'opinione particolare";
$a->strings["OK, probably harmless"] = "E' ok, probabilmente innocuo";
$a->strings["Reputable, has my trust"] = "Rispettabile, ha la mia fiducia";
$a->strings["Frequently"] = "Frequentemente";
$a->strings["Hourly"] = "Ogni ora";
$a->strings["Twice daily"] = "Due volte al dì";
$a->strings["Daily"] = "Giornalmente";
$a->strings["Weekly"] = "Settimanalmente";
$a->strings["Monthly"] = "Mensilmente";
$a->strings["OStatus"] = "Ostatus";
$a->strings["RSS/Atom"] = "RSS / Atom";
$a->strings["Zot!"] = "Zot!";
$a->strings["LinkedIn"] = "LinkedIn";
$a->strings["XMPP/IM"] = "XMPP/IM";
$a->strings["MySpace"] = "MySpace";
$a->strings["Male"] = "Maschio";
$a->strings["Female"] = "Femmina";
$a->strings["Currently Male"] = "Al momento maschio";
$a->strings["Currently Female"] = "Al momento femmina";
$a->strings["Mostly Male"] = "Prevalentemente maschio";
$a->strings["Mostly Female"] = "Prevalentemente femmina";
$a->strings["Transgender"] = "Transgenere";
$a->strings["Intersex"] = "Bisessuale";
$a->strings["Transsexual"] = "Transsessuale";
$a->strings["Transgender"] = "Transgender";
$a->strings["Intersex"] = "Intersex";
$a->strings["Transsexual"] = "Transessuale";
$a->strings["Hermaphrodite"] = "Ermafrodito";
$a->strings["Neuter"] = "Neutro";
$a->strings["Non-specific"] = "Non-specifico";
$a->strings["Non-specific"] = "Non specificato";
$a->strings["Other"] = "Altro";
$a->strings["Undecided"] = "Indeciso";
$a->strings["Males"] = "Maschi";
@ -990,9 +1689,11 @@ $a->strings["Oodles"] = "Un sacco";
$a->strings["Nonsexual"] = "Asessuato";
$a->strings["Single"] = "Single";
$a->strings["Lonely"] = "Solitario";
$a->strings["Available"] = "Disoponibile";
$a->strings["Available"] = "Disponibile";
$a->strings["Unavailable"] = "Non disponibile";
$a->strings["Dating"] = "Incontro";
$a->strings["Has crush"] = "";
$a->strings["Infatuated"] = "";
$a->strings["Dating"] = "Disponibile a un incontro";
$a->strings["Unfaithful"] = "Infedele";
$a->strings["Sex Addict"] = "Sesso-dipendente";
$a->strings["Friends"] = "Amici";
@ -1000,83 +1701,70 @@ $a->strings["Friends/Benefits"] = "Amici con benefici";
$a->strings["Casual"] = "Casual";
$a->strings["Engaged"] = "Impegnato";
$a->strings["Married"] = "Sposato";
$a->strings["Imaginarily married"] = "";
$a->strings["Partners"] = "Partners";
$a->strings["Cohabiting"] = "Coinquilino";
$a->strings["Common law"] = "";
$a->strings["Happy"] = "Felice";
$a->strings["Not Looking"] = "Non in cerca";
$a->strings["Not looking"] = "";
$a->strings["Swinger"] = "Scambista";
$a->strings["Betrayed"] = "Tradito";
$a->strings["Separated"] = "Separato";
$a->strings["Unstable"] = "Instabile";
$a->strings["Divorced"] = "Divorziato";
$a->strings["Imaginarily divorced"] = "";
$a->strings["Widowed"] = "Vedovo";
$a->strings["Uncertain"] = "Incerto";
$a->strings["Complicated"] = "Complicato";
$a->strings["It's complicated"] = "";
$a->strings["Don't care"] = "Non interessa";
$a->strings["Ask me"] = "Chiedimelo";
$a->strings["Starts:"] = "Inizia:";
$a->strings["Finishes:"] = "Finisce:";
$a->strings["Visible to everybody"] = "Visibile a tutti";
$a->strings["show"] = "mostra";
$a->strings["don't show"] = "non mostrare";
$a->strings["Logged out."] = "Sei uscito.";
$a->strings["Image/photo"] = "Immagine/foto";
$a->strings["From: "] = "Da: ";
$a->strings["View status"] = "Vedi stato";
$a->strings["View profile"] = "Vedi profilo";
$a->strings["View photos"] = "Vedi foto";
$a->strings["View recent"] = "Visualizza recente";
$a->strings["Send PM"] = "Invia messaggio privato";
$a->strings["Miscellaneous"] = "Varie";
$a->strings["year"] = "anno";
$a->strings["month"] = "mese";
$a->strings["day"] = "giorno";
$a->strings["never"] = "mai";
$a->strings["less than a second ago"] = "meno di un secondo fa";
$a->strings["years"] = "anni";
$a->strings["months"] = "mesi";
$a->strings["week"] = "settimana";
$a->strings["weeks"] = "settimane";
$a->strings["days"] = "giorni";
$a->strings["hour"] = "ora";
$a->strings["hours"] = "ore";
$a->strings["minute"] = "minuto";
$a->strings["minutes"] = "minuti";
$a->strings["second"] = "secondo";
$a->strings["seconds"] = "secondi";
$a->strings[" ago"] = " fa";
$a->strings["Birthday:"] = "Compleanno:";
$a->strings["j F, Y"] = "j F Y";
$a->strings["j F"] = "j F";
$a->strings["Age:"] = "Età:";
$a->strings["Religion:"] = "Religione:";
$a->strings["About:"] = "Informazioni:";
$a->strings["Hobbies/Interests:"] = "Hobbie/Interessi:";
$a->strings["Contact information and Social Networks:"] = "Informazioni su contatti e Social network:";
$a->strings["Musical interests:"] = "Interessi musicali:";
$a->strings["Books, literature:"] = "Libri, letteratura:";
$a->strings["Television:"] = "Televisione:";
$a->strings["Film/dance/culture/entertainment:"] = "Film/danza/cultura/intrattenimento:";
$a->strings["Love/Romance:"] = "Amore/romanticismo:";
$a->strings["Work/employment:"] = "Lavoro/impiego:";
$a->strings["School/education:"] = "Scuola/educazione:";
$a->strings["(no subject)"] = "(nessun oggetto)";
$a->strings[" on Last.fm"] = "";
$a->strings["prev"] = "prec";
$a->strings["first"] = "primo";
$a->strings["last"] = "ultimo";
$a->strings["next"] = "succ";
$a->strings["newer"] = "";
$a->strings["older"] = "";
$a->strings["No contacts"] = "Nessun contatto";
$a->strings["%d Contact"] = array(
0 => "%d Contatto",
1 => "%d Contatti",
0 => "%d contatto",
1 => "%d contatti",
);
$a->strings["Search"] = "Cerca";
$a->strings["Monday"] = "Lunedì";
$a->strings["Tuesday"] = "Martedì";
$a->strings["Wednesday"] = "Mercoledì";
$a->strings["Thursday"] = "Giovedì";
$a->strings["Friday"] = "Venerdì";
$a->strings["Saturday"] = "Sabato";
$a->strings["Sunday"] = "Domenica";
$a->strings["poke"] = "";
$a->strings["poked"] = "";
$a->strings["ping"] = "";
$a->strings["pinged"] = "";
$a->strings["prod"] = "";
$a->strings["prodded"] = "";
$a->strings["slap"] = "";
$a->strings["slapped"] = "";
$a->strings["finger"] = "";
$a->strings["fingered"] = "";
$a->strings["rebuff"] = "";
$a->strings["rebuffed"] = "";
$a->strings["happy"] = "";
$a->strings["sad"] = "";
$a->strings["mellow"] = "";
$a->strings["tired"] = "";
$a->strings["perky"] = "";
$a->strings["angry"] = "";
$a->strings["stupified"] = "";
$a->strings["puzzled"] = "";
$a->strings["interested"] = "";
$a->strings["bitter"] = "";
$a->strings["cheerful"] = "";
$a->strings["alive"] = "";
$a->strings["annoyed"] = "";
$a->strings["anxious"] = "";
$a->strings["cranky"] = "";
$a->strings["disturbed"] = "";
$a->strings["frustrated"] = "";
$a->strings["motivated"] = "";
$a->strings["relaxed"] = "";
$a->strings["surprised"] = "";
$a->strings["January"] = "Gennaio";
$a->strings["February"] = "Febbraio";
$a->strings["March"] = "Marzo";
@ -1090,15 +1778,27 @@ $a->strings["October"] = "Ottobre";
$a->strings["November"] = "Novembre";
$a->strings["December"] = "Dicembre";
$a->strings["bytes"] = "bytes";
$a->strings["Select an alternate language"] = "Seleziona una diversa lingua";
$a->strings["Click to open/close"] = "Clicca per aprire/chiudere";
$a->strings["default"] = "default";
$a->strings["Select an alternate language"] = "Seleziona una diversa lingua";
$a->strings["activity"] = "attività";
$a->strings["post"] = "messaggio";
$a->strings["Item filed"] = "";
$a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*";
$a->strings["Attachments:"] = "Allegati:";
$a->strings["view full size"] = "vedi a schermo intero";
$a->strings["Embedded content"] = "Contenuto incorporato";
$a->strings["Embedding disabled"] = "Embed disabilitato";
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento <strong>possono</strong> essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso.";
$a->strings["Default privacy group for new contacts"] = "";
$a->strings["Everybody"] = "Tutti";
$a->strings["edit"] = "modifica";
$a->strings["Edit group"] = "Modifica gruppo";
$a->strings["Create a new group"] = "Crea un nuovo gruppo";
$a->strings["Contacts not in any group"] = "Contatti in nessun gruppo.";
$a->strings["Logout"] = "Esci";
$a->strings["End this session"] = "Finisci questa sessione";
$a->strings["Your posts and conversations"] = "I tuoi messaggi e le tue conversazioni";
$a->strings["Your profile page"] = "Pagina del tuo profilo";
$a->strings["Your photos"] = "Le tue foto";
$a->strings["Your events"] = "I tuoi eventi";
$a->strings["Personal notes"] = "Note personali";
$a->strings["Your personal photos"] = "Le tue foto personali";
$a->strings["Status"] = "Stato";
$a->strings["Sign in"] = "Entra";
$a->strings["Home Page"] = "Home Page";
$a->strings["Create an account"] = "Crea un account";
@ -1111,73 +1811,196 @@ $a->strings["Directory"] = "Elenco";
$a->strings["People directory"] = "Elenco delle persone";
$a->strings["Conversations from your friends"] = "Conversazioni dai tuoi amici";
$a->strings["Friend Requests"] = "Richieste di amicizia";
$a->strings["See all notifications"] = "Vedi tutte le notifiche";
$a->strings["Mark all system notifications seen"] = "";
$a->strings["Private mail"] = "Posta privata";
$a->strings["Inbox"] = "In arrivo";
$a->strings["Outbox"] = "Inviati";
$a->strings["Manage"] = "Gestisci";
$a->strings["Manage other pages"] = "Gestisci altre pagine";
$a->strings["Profiles"] = "Profili";
$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili";
$a->strings["Manage/edit friends and contacts"] = "Gestisci/modifica amici e contatti";
$a->strings["Admin"] = "Amministrazione";
$a->strings["Site setup and configuration"] = "Configurazione del sito";
$a->strings["Nothing new here"] = "Niente di nuovo qui";
$a->strings["Select"] = "Seleziona";
$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s";
$a->strings["%s from %s"] = "%s da %s";
$a->strings["View in context"] = "Vedi nel contesto";
$a->strings["See all %d comments"] = "Vedi tutti i %d commenti";
$a->strings["like"] = "mi piace";
$a->strings["dislike"] = "non mi piace";
$a->strings["Share this"] = "Condividi questo";
$a->strings["share"] = "condividi";
$a->strings["add star"] = "aggiungi a speciali";
$a->strings["remove star"] = "rimuovi da speciali";
$a->strings["toggle star status"] = "Inverti stato preferito";
$a->strings["starred"] = "speciale";
$a->strings["add tag"] = "aggiungi tag";
$a->strings["to"] = "a";
$a->strings["Wall-to-Wall"] = "Bacheca-A-Bacheca";
$a->strings["via Wall-To-Wall:"] = "sulla sua Bacheca";
$a->strings["Delete Selected Items"] = "Cancella elementi selezionati";
$a->strings["%s likes this."] = "Piace a %s.";
$a->strings["%s doesn't like this."] = "Non piace a %s.";
$a->strings["<span %1\$s>%2\$d people</span> like this."] = "Piace a <span %1\$s>%2\$d persone</span>.";
$a->strings["<span %1\$s>%2\$d people</span> don't like this."] = "Non piace a <span %1\$s>%2\$d persone</span>.";
$a->strings["and"] = "e";
$a->strings[", and %d other people"] = ", e altre %d persone";
$a->strings["%s like this."] = "Piace a %s.";
$a->strings["%s don't like this."] = "Non piace a %s.";
$a->strings["Visible to <strong>everybody</strong>"] = "Vsibile a <strong>tutti</strong>";
$a->strings["Please enter a video link/URL:"] = "Inserisci un collegamento video / URL:";
$a->strings["Please enter an audio link/URL:"] = "Inserisci un collegamento audio / URL:";
$a->strings["Tag term:"] = "Tag:";
$a->strings["Where are you right now?"] = "Dove sei ora?";
$a->strings["Enter a title for this item"] = "Inserisci un titolo per questo elemento";
$a->strings["Insert video link"] = "Inserire collegamento video";
$a->strings["Insert audio link"] = "Inserisci collegamento audio";
$a->strings["Set title"] = "Imposta il titolo";
$a->strings["view full size"] = "vedi a schermo intero";
$a->strings["image/photo"] = "immagine / foto";
$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'";
$a->strings["Add New Contact"] = "Aggiungi nuovo contatto";
$a->strings["Enter address or web location"] = "Inserisci posizione o indirizzo web";
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esempio: bob@example.com, http://example.com/barbara";
$a->strings["Invite Friends"] = "Invita Amici";
$a->strings["%d invitation available"] = array(
0 => "%d invito disponibile",
1 => "%d inviti disponibili",
);
$a->strings["Find People"] = "Trova persone";
$a->strings["Enter name or interest"] = "Inserisci un nome o un interesse";
$a->strings["Connect/Follow"] = "Connetti/Segui";
$a->strings["Connect/Follow"] = "Connetti/segui";
$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esempi: Mario Rossi, Pesca";
$a->strings["Similar Interests"] = "Interessi simili";
$a->strings["New mail received at "] = "Nuova mail ricevuta su ";
$a->strings["A new person is sharing with you at "] = "Una nuova persona sta condividendo con te da ";
$a->strings["You have a new follower at "] = "Hai un nuovo seguace su ";
$a->strings["Random Profile"] = "Profilo causale";
$a->strings["Networks"] = "Reti";
$a->strings["All Networks"] = "Tutte le Reti";
$a->strings["Saved Folders"] = "Cartelle Salvate";
$a->strings["Everything"] = "Tutto";
$a->strings["Categories"] = "Categorie";
$a->strings["Logged out."] = "Uscita effettuata.";
$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto.";
$a->strings["The error message was:"] = "Il messaggio riportato era:";
$a->strings["Miscellaneous"] = "Varie";
$a->strings["year"] = "anno";
$a->strings["month"] = "mese";
$a->strings["day"] = "giorno";
$a->strings["never"] = "mai";
$a->strings["less than a second ago"] = "meno di un secondo fa";
$a->strings["week"] = "settimana";
$a->strings["hour"] = "ora";
$a->strings["hours"] = "ore";
$a->strings["minute"] = "minuto";
$a->strings["minutes"] = "minuti";
$a->strings["second"] = "secondo";
$a->strings["seconds"] = "secondi";
$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s fa";
$a->strings["%s's birthday"] = "";
$a->strings["Happy Birthday %s"] = "";
$a->strings["From: "] = "Da: ";
$a->strings["Image/photo"] = "Immagine/foto";
$a->strings["$1 wrote:"] = "$1 ha scritto:";
$a->strings["Encrypted content"] = "";
$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'";
$a->strings["[no subject]"] = "[nessun oggetto]";
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento <strong>possono</strong> essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso.";
$a->strings["Create a new group"] = "Crea un nuovo gruppo";
$a->strings["Everybody"] = "Tutti";
$a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*";
$a->strings["Attachments:"] = "Allegati:";
$a->strings["[Relayed] Comment authored by %s from network %s"] = "[Inoltrato] Commento scritto da %s dalla rete %s";
$a->strings["Embedded content"] = "Contenuto incorporato";
$a->strings["Embedding disabled"] = "Inclusione disabilitata";
$a->strings["Visible to everybody"] = "Visibile a tutti";
$a->strings["Friendica Notification"] = "Notifica Friendica";
$a->strings["Thank You,"] = "Grazie,";
$a->strings["%s Administrator"] = "Amministratore %s";
$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s";
$a->strings["%1\$s sent you a new private message at %2\$s."] = "";
$a->strings["%1\$s sent you %2\$s."] = "";
$a->strings["a private message"] = "un messaggio privato";
$a->strings["Please visit %s to view and/or reply to your private messages."] = "Visita %s per vedere e/o rispodere ai tuoi messaggi privati.";
$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "";
$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "";
$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "";
$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "";
$a->strings["%s commented on an item/conversation you have been following."] = "%s ha commentato un elemento che stavi seguendo.";
$a->strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per vedere e/o commentare la conversazione";
$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notifica] %s ha scritto sulla tua bacheca";
$a->strings["%1\$s posted to your profile wall at %2\$s"] = "";
$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "";
$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notifica] %s ti ha taggato";
$a->strings["%1\$s tagged you at %2\$s"] = "";
$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "";
$a->strings["[Friendica:Notify] %1\$s poked you"] = "";
$a->strings["%1\$s poked you at %2\$s"] = "";
$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "";
$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notifica] %s ha taggato un tuo messaggio";
$a->strings["%1\$s tagged your post at %2\$s"] = "";
$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "";
$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notifica] Hai ricevuto una presentazione";
$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "";
$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "";
$a->strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo presso %s";
$a->strings["Please visit %s to approve or reject the introduction."] = "Visita %s per approvare o rifiutare la presentazione.";
$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia";
$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "";
$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "";
$a->strings["Name:"] = "Nome:";
$a->strings["Photo:"] = "Foto:";
$a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento.";
$a->strings["Connect URL missing."] = "URL di connessione mancante.";
$a->strings["This site is not configured to allow communications with other networks."] = "Questo sito non è configurato per permettere la comunicazione con altri network.";
$a->strings["No compatible communication protocols or feeds were discovered."] = "Non sono stati trovati protocolli di comunicazione o feed compatibili.";
$a->strings["The profile address specified does not provide adequate information."] = "L'indirizzo del profilo specificato non fornisce adeguate informazioni.";
$a->strings["An author or name was not found."] = "Non è stato trovato un nome o un autore";
$a->strings["No browser URL could be matched to this address."] = "Nessun URL puo' essere associato a questo indirizzo.";
$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "";
$a->strings["Use mailto: in front of address to force email check."] = "";
$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito.";
$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te.";
$a->strings["Unable to retrieve contact information."] = "Impossibile recuperare informazioni sul contatto.";
$a->strings["following"] = "segue";
$a->strings["A new person is sharing with you at "] = "Una nuova persona sta condividendo con te da ";
$a->strings["You have a new follower at "] = "Una nuova persona ti segue su ";
$a->strings["Archives"] = "";
$a->strings["An invitation is required."] = "E' richiesto un invito.";
$a->strings["Invitation could not be verified."] = "L'invito non puo' essere verificato.";
$a->strings["Invalid OpenID url"] = "Url OpenID non valido";
$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste.";
$a->strings["Please use a shorter name."] = "Usa un nome più corto.";
$a->strings["Name too short."] = "Il nome è troppo corto.";
$a->strings["That doesn't appear to be your full (First Last) name."] = "Questo non sembra essere il tuo nome completo (Nome Cognome).";
$a->strings["Your email domain is not among those allowed on this site."] = "Il dominio della tua email non è tra quelli autorizzati su questo sito.";
$a->strings["Not a valid email address."] = "L'indirizzo email non è valido.";
$a->strings["Cannot use that email."] = "Non puoi usare quell'email.";
$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Il tuo nome utente puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera.";
$a->strings["Nickname is already registered. Please choose another."] = "Nome utente già registrato. Scegline un altro.";
$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo.";
$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita.";
$a->strings["An error occurred during registration. Please try again."] = "C'è stato un errore durante la registrazione. Prova ancora.";
$a->strings["An error occurred creating your default profile. Please try again."] = "C'è stato un errore nella creazione del tuo profilo. Prova ancora.";
$a->strings["Welcome "] = "Ciao";
$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo.";
$a->strings["Welcome back "] = "Ciao ";
$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "";
$a->strings["stopped following"] = "";
$a->strings["Poke"] = "";
$a->strings["View Status"] = "Visualizza stato";
$a->strings["View Profile"] = "Visualizza profilo";
$a->strings["View Photos"] = "Visualizza foto";
$a->strings["Network Posts"] = "";
$a->strings["Edit Contact"] = "Modifica contatti";
$a->strings["Send PM"] = "Invia messaggio privato";
$a->strings["%1\$s poked %2\$s"] = "";
$a->strings["post/item"] = "post/elemento";
$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s ha segnato il/la %3\$s di %2\$s come preferito";
$a->strings["Categories:"] = "";
$a->strings["Filed under:"] = "";
$a->strings["remove"] = "rimuovi";
$a->strings["Delete Selected Items"] = "Cancella elementi selezionati";
$a->strings["%s likes this."] = "Piace a %s.";
$a->strings["%s doesn't like this."] = "Non piace a %s.";
$a->strings["<span %1\$s>%2\$d people</span> like this."] = "Piace a <span %1\$s>%2\$d persone</span>.";
$a->strings["<span %1\$s>%2\$d people</span> don't like this."] = "Non piace a <span %1\$s>%2\$d persone</span>.";
$a->strings["and"] = "e";
$a->strings[", and %d other people"] = "e altre %d persone";
$a->strings["%s like this."] = "Piace a %s.";
$a->strings["%s don't like this."] = "Non piace a %s.";
$a->strings["Visible to <strong>everybody</strong>"] = "Visibile a <strong>tutti</strong>";
$a->strings["Please enter a video link/URL:"] = "Inserisci un collegamento video / URL:";
$a->strings["Please enter an audio link/URL:"] = "Inserisci un collegamento audio / URL:";
$a->strings["Tag term:"] = "Tag:";
$a->strings["Where are you right now?"] = "Dove sei ora?";
$a->strings["upload photo"] = "carica foto";
$a->strings["attach file"] = "allega file";
$a->strings["web link"] = "link web";
$a->strings["Insert video link"] = "Inserire collegamento video";
$a->strings["video link"] = "link video";
$a->strings["Insert audio link"] = "Inserisci collegamento audio";
$a->strings["audio link"] = "link audio";
$a->strings["set location"] = "posizione";
$a->strings["clear location"] = "canc. pos.";
$a->strings["permissions"] = "permessi";
$a->strings["Click here to upgrade."] = "";
$a->strings["This action exceeds the limits set by your subscription plan."] = "";
$a->strings["This action is not available under your subscription plan."] = "";
$a->strings["Delete this item?"] = "Cancellare questo elemento?";
$a->strings["show fewer"] = "mostra di meno";
$a->strings["Update %s failed. See error logs."] = "";
$a->strings["Update Error at %s"] = "";
$a->strings["Create a New Account"] = "Crea un nuovo account";
$a->strings["Nickname or Email address: "] = "Nome utente o indirizzo email: ";
$a->strings["Password: "] = "Password: ";
$a->strings["Or login using OpenID: "] = "O entra con OpenID:";
$a->strings["Forgot your password?"] = "Hai dimenticato la password?";
$a->strings["Requested account is not available."] = "";
$a->strings["Edit profile"] = "Modifica il profilo";
$a->strings["Message"] = "Messaggio";
$a->strings["g A l F d"] = "g A l d F";
$a->strings["F d"] = "d F";
$a->strings["[today]"] = "[oggi]";
$a->strings["Birthday Reminders"] = "Promemoria compleanni";
$a->strings["Birthdays this week:"] = "Compleanni questa settimana:";
$a->strings["[No description]"] = "[Nessuna descrizione]";
$a->strings["Event Reminders"] = "Promemoria";
$a->strings["Events this week:"] = "Eventi di questa settimana:";
$a->strings["Status Messages and Posts"] = "";
$a->strings["Profile Details"] = "";
$a->strings["Events and Calendar"] = "";
$a->strings["Only You Can See This"] = "";

View file

@ -0,0 +1,14 @@
Kjære $[myname],
Du har en ny følgesvenn på $[sitename] - '$[requestor]'.
Du kan besøke profilen deres på $[url].
Vennligst logg inn på ditt sted for å godkjenne eller ignorere/avbryte forespørselen.
$[siteurl]
Med vennlig hilsen,
$[sitename] administrator

View file

@ -0,0 +1,22 @@
Kjære $[username],
Gode nyheter... '$[fn]' ved '$[dfrn_url]' har godtatt
din forespørsel om kobling hos '$[sitename]'.
Dere er nå gjensidige venner og kan utveksle statusoppdateringer, bilder og e-post
uten hindringer.
Vennligst besøk din side "Kontakter" ved $[sitename] hvis du ønsker å gjøre
noen endringer på denne forbindelsen.
$[siteurl]
[For eksempel, så kan du lage en egen profil med informasjon som ikke er
tilgjengelig for alle - og angi visningsrettigheter til '$[fn]'].
Med vennlig hilsen,
$[sitename] administrator

View file

@ -0,0 +1,22 @@
Kjære $[username],
'$[fn]' ved '$[dfrn_url]' har godtatt
din forespørsel om kobling ved $[sitename]'.
'$[fn]' har valgt å godta deg som "fan", som begrenser
noen typer kommunikasjon - slik som private meldinger og noen profilhandlinger.
Hvis dette er en kjendis- eller forumside, så ble disse innstillingene
angitt automatisk.
'$[fn]' kan velge å utvide dette til en to-veis eller mer åpen
forbindelse i fremtiden.
Du vil nå motta offentlige statusoppdateringer fra '$[fn]',
som vil vises på din "Nettverk"-side ved
$[siteurl]
Med vennlig hilsen,
$[sitename] administrator

View file

@ -0,0 +1,32 @@
Kjære $[username],
En forespørsel ble nylig mottatt hos $[sitename] om å tilbakestille din kontos
passord. For å godkjenne denne forespørselen, vennligst velg bekreftelseslenken
nedenfor eller lim den inn på adresselinjen i nettleseren din.
Hvis du IKKE har spurt om denne endringen, vennligst IKKE følg lenken
som er oppgitt og ignorer og/eller slett denne e-posten.
Passordet ditt vil ikke bli endret med mindre vi kan forsikre oss om at du
sendte denne forespørselen.
Følg denne lenken for å bekrefte din identitet:
$[reset_link]
Du vil da motta en oppfølgings melding med det nye passordet.
Du kan endre passordet på siden for dine kontoinnstillinger etter innlogging.
Innloggingsdetaljene er som følger:
Nettstedsadresse:»$[siteurl]
Brukernavn:»$[email]
Beste hilsen,
$[sitename] administrator

8765
view/nb-no/messages.po Normal file
View file

@ -0,0 +1,8765 @@
# FRIENDICA Distributed Social Network
# Copyright (C) 2010, 2011 the Friendica Project
# This file is distributed under the same license as the Friendica package.
#
# Translators:
# Haakon Meland Eriksen <haakon.eriksen@far.no>, 2012.
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
"POT-Creation-Date: 2012-09-27 10:00-0700\n"
"PO-Revision-Date: 2012-09-28 08:27+0000\n"
"Last-Translator: Haakon Meland Eriksen <haakon.eriksen@far.no>\n"
"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/friendica/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"
#: ../../mod/oexchange.php:25
msgid "Post successful."
msgstr "Innlegg vellykket."
#: ../../mod/update_notes.php:41 ../../mod/update_community.php:18
#: ../../mod/update_network.php:22 ../../mod/update_profile.php:41
msgid "[Embedded content - reload page to view]"
msgstr "[Innebygget innhold - hent siden på nytt for å se det]"
#: ../../mod/crepair.php:102
msgid "Contact settings applied."
msgstr "Kontaktinnstillinger i bruk."
#: ../../mod/crepair.php:104
msgid "Contact update failed."
msgstr "Kontaktoppdatering mislyktes."
#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:55
#: ../../mod/fsuggest.php:78 ../../mod/events.php:140 ../../mod/api.php:26
#: ../../mod/api.php:31 ../../mod/photos.php:128 ../../mod/photos.php:972
#: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135
#: ../../mod/notifications.php:66 ../../mod/contacts.php:146
#: ../../mod/settings.php:86 ../../mod/settings.php:525
#: ../../mod/settings.php:530 ../../mod/manage.php:87 ../../mod/network.php:6
#: ../../mod/notes.php:20 ../../mod/wallmessage.php:9
#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
#: ../../mod/wallmessage.php:103 ../../mod/attach.php:33
#: ../../mod/group.php:19 ../../mod/viewcontacts.php:22
#: ../../mod/register.php:38 ../../mod/regmod.php:116 ../../mod/item.php:126
#: ../../mod/item.php:142 ../../mod/mood.php:114
#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
#: ../../mod/message.php:38 ../../mod/message.php:168
#: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25
#: ../../mod/wall_upload.php:64 ../../mod/follow.php:9
#: ../../mod/display.php:141 ../../mod/profiles.php:7
#: ../../mod/profiles.php:413 ../../mod/delegate.php:6
#: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510
#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159
#: ../../addon/fbpost/fbpost.php:165
#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3913
#: ../../index.php:317
msgid "Permission denied."
msgstr "Ingen tilgang."
#: ../../mod/crepair.php:129 ../../mod/fsuggest.php:20
#: ../../mod/fsuggest.php:92 ../../mod/dfrn_confirm.php:118
msgid "Contact not found."
msgstr "Kontakt ikke funnet."
#: ../../mod/crepair.php:135
msgid "Repair Contact Settings"
msgstr "Reparer kontaktinnstillinger"
#: ../../mod/crepair.php:137
msgid ""
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
" information your communications with this contact may stop working."
msgstr ""
#: ../../mod/crepair.php:138
msgid ""
"Please use your browser 'Back' button <strong>now</strong> if you are "
"uncertain what to do on this page."
msgstr "Vennligst bruk Tilbake-knappen i nettleseren din <strong>nå</strong> hvis du er usikker på hva du bør gjøre på denne siden."
#: ../../mod/crepair.php:144
msgid "Return to contact editor"
msgstr ""
#: ../../mod/crepair.php:148 ../../mod/settings.php:545
#: ../../mod/settings.php:571 ../../mod/admin.php:692 ../../mod/admin.php:702
msgid "Name"
msgstr "Navn"
#: ../../mod/crepair.php:149
msgid "Account Nickname"
msgstr "Konto Kallenavn"
#: ../../mod/crepair.php:150
msgid "@Tagname - overrides Name/Nickname"
msgstr ""
#: ../../mod/crepair.php:151
msgid "Account URL"
msgstr "Konto URL"
#: ../../mod/crepair.php:152
msgid "Friend Request URL"
msgstr "Venneforespørsel URL"
#: ../../mod/crepair.php:153
msgid "Friend Confirm URL"
msgstr "Vennebekreftelse URL"
#: ../../mod/crepair.php:154
msgid "Notification Endpoint URL"
msgstr "Endepunkt URL for beskjed"
#: ../../mod/crepair.php:155
msgid "Poll/Feed URL"
msgstr "Poll/Feed URL"
#: ../../mod/crepair.php:156
msgid "New photo from this URL"
msgstr ""
#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
#: ../../mod/events.php:455 ../../mod/photos.php:1005
#: ../../mod/photos.php:1081 ../../mod/photos.php:1338
#: ../../mod/photos.php:1378 ../../mod/photos.php:1419
#: ../../mod/photos.php:1451 ../../mod/install.php:246
#: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199
#: ../../mod/content.php:693 ../../mod/contacts.php:348
#: ../../mod/settings.php:543 ../../mod/settings.php:697
#: ../../mod/settings.php:769 ../../mod/settings.php:976
#: ../../mod/group.php:85 ../../mod/mood.php:137 ../../mod/message.php:294
#: ../../mod/message.php:480 ../../mod/admin.php:443 ../../mod/admin.php:689
#: ../../mod/admin.php:826 ../../mod/admin.php:1025 ../../mod/admin.php:1112
#: ../../mod/profiles.php:583 ../../mod/invite.php:119
#: ../../addon/fromgplus/fromgplus.php:40
#: ../../addon/facebook/facebook.php:619
#: ../../addon/snautofollow/snautofollow.php:64 ../../addon/bg/bg.php:90
#: ../../addon/fbpost/fbpost.php:226 ../../addon/yourls/yourls.php:76
#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:88
#: ../../addon/page/page.php:210 ../../addon/planets/planets.php:158
#: ../../addon/uhremotestorage/uhremotestorage.php:89
#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93
#: ../../addon/drpost/drpost.php:110 ../../addon/startpage/startpage.php:92
#: ../../addon/geonames/geonames.php:187 ../../addon/oembed.old/oembed.php:41
#: ../../addon/forumlist/forumlist.php:163
#: ../../addon/impressum/impressum.php:83
#: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57
#: ../../addon/qcomment/qcomment.php:61
#: ../../addon/openstreetmap/openstreetmap.php:70
#: ../../addon/group_text/group_text.php:84
#: ../../addon/libravatar/libravatar.php:99
#: ../../addon/libertree/libertree.php:90 ../../addon/altpager/altpager.php:87
#: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84
#: ../../addon/blackout/blackout.php:98 ../../addon/gravatar/gravatar.php:95
#: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93
#: ../../addon/jappixmini/jappixmini.php:307
#: ../../addon/statusnet/statusnet.php:278
#: ../../addon/statusnet/statusnet.php:292
#: ../../addon/statusnet/statusnet.php:318
#: ../../addon/statusnet/statusnet.php:325
#: ../../addon/statusnet/statusnet.php:353
#: ../../addon/statusnet/statusnet.php:576 ../../addon/tumblr/tumblr.php:90
#: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88
#: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48
#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180
#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:394
#: ../../addon/irc/irc.php:55 ../../addon/fromapp/fromapp.php:77
#: ../../addon/blogger/blogger.php:102 ../../addon/posterous/posterous.php:103
#: ../../view/theme/cleanzero/config.php:80
#: ../../view/theme/diabook/theme.php:757
#: ../../view/theme/diabook/config.php:190
#: ../../view/theme/quattro/config.php:53 ../../view/theme/dispy/config.php:70
#: ../../object/Item.php:560
msgid "Submit"
msgstr "Lagre"
#: ../../mod/help.php:30
msgid "Help:"
msgstr "Hjelp:"
#: ../../mod/help.php:34 ../../addon/dav/friendica/layout.fnk.php:225
#: ../../include/nav.php:86
msgid "Help"
msgstr "Hjelp"
#: ../../mod/help.php:38 ../../index.php:226
msgid "Not Found"
msgstr "Ikke funnet"
#: ../../mod/help.php:41 ../../index.php:229
msgid "Page not found."
msgstr "Fant ikke siden."
#: ../../mod/wall_attach.php:69
#, php-format
msgid "File exceeds size limit of %d"
msgstr "Filstørrelsen er større enn begrensning på %d"
#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
msgid "File upload failed."
msgstr "Opplasting av filen mislyktes."
#: ../../mod/fsuggest.php:63
msgid "Friend suggestion sent."
msgstr "Venneforslag 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/events.php:66
msgid "Event title and start time are required."
msgstr ""
#: ../../mod/events.php:279
msgid "l, F j"
msgstr ""
#: ../../mod/events.php:301
msgid "Edit event"
msgstr "Rediger hendelse"
#: ../../mod/events.php:323 ../../include/text.php:1187
msgid "link to source"
msgstr "lenke til kilde"
#: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:131
#: ../../include/nav.php:52 ../../boot.php:1689
msgid "Events"
msgstr "Hendelser"
#: ../../mod/events.php:348
msgid "Create New Event"
msgstr "Lag ny hendelse"
#: ../../mod/events.php:349 ../../addon/dav/friendica/layout.fnk.php:263
msgid "Previous"
msgstr "Forrige"
#: ../../mod/events.php:350 ../../mod/install.php:205
#: ../../addon/dav/friendica/layout.fnk.php:266
msgid "Next"
msgstr "Neste"
#: ../../mod/events.php:423
msgid "hour:minute"
msgstr "time:minutt"
#: ../../mod/events.php:433
msgid "Event details"
msgstr "Hendelsesdetaljer"
#: ../../mod/events.php:434
#, php-format
msgid "Format is %s %s. Starting date and Title are required."
msgstr ""
#: ../../mod/events.php:436
msgid "Event Starts:"
msgstr "Hendelsen starter:"
#: ../../mod/events.php:436 ../../mod/events.php:450
msgid "Required"
msgstr ""
#: ../../mod/events.php:439
msgid "Finish date/time is not known or not relevant"
msgstr "Avslutningsdato/-tid er ukjent eller ikke relevant"
#: ../../mod/events.php:441
msgid "Event Finishes:"
msgstr "Hendelsen slutter:"
#: ../../mod/events.php:444
msgid "Adjust for viewer timezone"
msgstr "Tilpass til iakttakerens tidssone"
#: ../../mod/events.php:446
msgid "Description:"
msgstr "Beskrivelse:"
#: ../../mod/events.php:448 ../../mod/directory.php:134
#: ../../include/event.php:40 ../../include/bb2diaspora.php:412
#: ../../boot.php:1226
msgid "Location:"
msgstr "Plassering:"
#: ../../mod/events.php:450
msgid "Title:"
msgstr ""
#: ../../mod/events.php:452
msgid "Share this event"
msgstr "Del denne hendelsen"
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:136
#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:544
#: ../../mod/settings.php:570 ../../addon/js_upload/js_upload.php:45
#: ../../include/conversation.php:935
msgid "Cancel"
msgstr "Avbryt"
#: ../../mod/tagrm.php:41
msgid "Tag removed"
msgstr "Fjernet tag"
#: ../../mod/tagrm.php:79
msgid "Remove Item Tag"
msgstr "Fjern tag"
#: ../../mod/tagrm.php:81
msgid "Select a tag to remove: "
msgstr "Velg en tag å fjerne:"
#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
#: ../../addon/dav/common/wdcal_edit.inc.php:468
msgid "Remove"
msgstr "Slett"
#: ../../mod/dfrn_poll.php:99 ../../mod/dfrn_poll.php:530
#, php-format
msgid "%s welcomes %s"
msgstr "%s hilser %s velkommen"
#: ../../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/api.php:105 ../../mod/dfrn_request.php:835
#: ../../mod/settings.php:892 ../../mod/settings.php:898
#: ../../mod/settings.php:906 ../../mod/settings.php:910
#: ../../mod/settings.php:915 ../../mod/settings.php:921
#: ../../mod/settings.php:927 ../../mod/settings.php:933
#: ../../mod/settings.php:963 ../../mod/settings.php:964
#: ../../mod/settings.php:965 ../../mod/settings.php:966
#: ../../mod/settings.php:967 ../../mod/register.php:236
#: ../../mod/profiles.php:563
msgid "Yes"
msgstr "Ja"
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:836
#: ../../mod/settings.php:892 ../../mod/settings.php:898
#: ../../mod/settings.php:906 ../../mod/settings.php:910
#: ../../mod/settings.php:915 ../../mod/settings.php:921
#: ../../mod/settings.php:927 ../../mod/settings.php:933
#: ../../mod/settings.php:963 ../../mod/settings.php:964
#: ../../mod/settings.php:965 ../../mod/settings.php:966
#: ../../mod/settings.php:967 ../../mod/register.php:237
#: ../../mod/profiles.php:564
msgid "No"
msgstr "Nei"
#: ../../mod/photos.php:46 ../../boot.php:1682
msgid "Photo Albums"
msgstr "Fotoalbum"
#: ../../mod/photos.php:54 ../../mod/photos.php:149 ../../mod/photos.php:986
#: ../../mod/photos.php:1073 ../../mod/photos.php:1088
#: ../../mod/photos.php:1530 ../../mod/photos.php:1542
#: ../../addon/communityhome/communityhome.php:110
#: ../../view/theme/diabook/theme.php:598
msgid "Contact Photos"
msgstr "Kontaktbilder"
#: ../../mod/photos.php:61 ../../mod/photos.php:1104 ../../mod/photos.php:1580
msgid "Upload New Photos"
msgstr "Last opp nye bilder"
#: ../../mod/photos.php:74 ../../mod/settings.php:23
msgid "everybody"
msgstr "alle"
#: ../../mod/photos.php:138
msgid "Contact information unavailable"
msgstr "Kontaktinformasjon utilgjengelig"
#: ../../mod/photos.php:149 ../../mod/photos.php:653 ../../mod/photos.php:1073
#: ../../mod/photos.php:1088 ../../mod/profile_photo.php:74
#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88
#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296
#: ../../mod/profile_photo.php:305
#: ../../addon/communityhome/communityhome.php:111
#: ../../view/theme/diabook/theme.php:599 ../../include/user.php:324
#: ../../include/user.php:331 ../../include/user.php:338
msgid "Profile Photos"
msgstr "Profilbilder"
#: ../../mod/photos.php:159
msgid "Album not found."
msgstr "Album ble ikke funnet."
#: ../../mod/photos.php:177 ../../mod/photos.php:1082
msgid "Delete Album"
msgstr "Slett album"
#: ../../mod/photos.php:240 ../../mod/photos.php:1339
msgid "Delete Photo"
msgstr "Slett bilde"
#: ../../mod/photos.php:584
msgid "was tagged in a"
msgstr "ble tagget i et"
#: ../../mod/photos.php:584 ../../mod/like.php:145 ../../mod/tagger.php:62
#: ../../addon/communityhome/communityhome.php:163
#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1439
#: ../../include/diaspora.php:1824 ../../include/conversation.php:125
#: ../../include/conversation.php:253
msgid "photo"
msgstr "bilde"
#: ../../mod/photos.php:584
msgid "by"
msgstr "av"
#: ../../mod/photos.php:689 ../../addon/js_upload/js_upload.php:315
msgid "Image exceeds size limit of "
msgstr "Bilde overstiger størrelsesbegrensningen på "
#: ../../mod/photos.php:697
msgid "Image file is empty."
msgstr "Bildefilen er tom."
#: ../../mod/photos.php:729 ../../mod/profile_photo.php:153
#: ../../mod/wall_upload.php:110
msgid "Unable to process image."
msgstr "Ikke i stand til å behandle bildet."
#: ../../mod/photos.php:756 ../../mod/profile_photo.php:301
#: ../../mod/wall_upload.php:136
msgid "Image upload failed."
msgstr "Mislyktes med å laste opp bilde."
#: ../../mod/photos.php:842 ../../mod/community.php:18
#: ../../mod/dfrn_request.php:760 ../../mod/viewcontacts.php:17
#: ../../mod/display.php:7 ../../mod/search.php:73 ../../mod/directory.php:31
msgid "Public access denied."
msgstr "Offentlig tilgang ikke tillatt."
#: ../../mod/photos.php:852
msgid "No photos selected"
msgstr "Ingen bilder er valgt"
#: ../../mod/photos.php:953
msgid "Access to this item is restricted."
msgstr "Tilgang til dette elementet er begrenset."
#: ../../mod/photos.php:1015
#, php-format
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgstr ""
#: ../../mod/photos.php:1018
#, php-format
msgid "You have used %1$.2f Mbytes of photo storage."
msgstr ""
#: ../../mod/photos.php:1024
msgid "Upload Photos"
msgstr "Last opp bilder"
#: ../../mod/photos.php:1028 ../../mod/photos.php:1077
msgid "New album name: "
msgstr "Nytt albumnavn:"
#: ../../mod/photos.php:1029
msgid "or existing album name: "
msgstr "eller eksisterende albumnavn:"
#: ../../mod/photos.php:1030
msgid "Do not show a status post for this upload"
msgstr "Ikke vis statusoppdatering for denne opplastingen"
#: ../../mod/photos.php:1032 ../../mod/photos.php:1334
msgid "Permissions"
msgstr "Tillatelser"
#: ../../mod/photos.php:1092
msgid "Edit Album"
msgstr "Endre album"
#: ../../mod/photos.php:1098
msgid "Show Newest First"
msgstr ""
#: ../../mod/photos.php:1100
msgid "Show Oldest First"
msgstr ""
#: ../../mod/photos.php:1124 ../../mod/photos.php:1563
msgid "View Photo"
msgstr "Vis bilde"
#: ../../mod/photos.php:1159
msgid "Permission denied. Access to this item may be restricted."
msgstr "Tilgang nektet. Tilgang til dette elementet kan være begrenset."
#: ../../mod/photos.php:1161
msgid "Photo not available"
msgstr "Bilde ikke tilgjengelig"
#: ../../mod/photos.php:1217
msgid "View photo"
msgstr "Vis foto"
#: ../../mod/photos.php:1217
msgid "Edit photo"
msgstr "Endre bilde"
#: ../../mod/photos.php:1218
msgid "Use as profile photo"
msgstr "Bruk som profilbilde"
#: ../../mod/photos.php:1224 ../../mod/content.php:603
#: ../../object/Item.php:103
msgid "Private Message"
msgstr "Privat melding"
#: ../../mod/photos.php:1243
msgid "View Full Size"
msgstr "Vis i full størrelse"
#: ../../mod/photos.php:1311
msgid "Tags: "
msgstr "Tagger:"
#: ../../mod/photos.php:1314
msgid "[Remove any tag]"
msgstr "[Fjern en tag]"
#: ../../mod/photos.php:1324
msgid "Rotate CW (right)"
msgstr ""
#: ../../mod/photos.php:1325
msgid "Rotate CCW (left)"
msgstr ""
#: ../../mod/photos.php:1327
msgid "New album name"
msgstr "Nytt albumnavn"
#: ../../mod/photos.php:1330
msgid "Caption"
msgstr "Overskrift"
#: ../../mod/photos.php:1332
msgid "Add a Tag"
msgstr "Legg til tag"
#: ../../mod/photos.php:1336
msgid ""
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
#: ../../mod/photos.php:1356 ../../mod/content.php:667
#: ../../object/Item.php:196
msgid "I like this (toggle)"
msgstr "Jeg liker dette (skru på/av)"
#: ../../mod/photos.php:1357 ../../mod/content.php:668
#: ../../object/Item.php:197
msgid "I don't like this (toggle)"
msgstr "Jeg liker ikke dette (skru på/av)"
#: ../../mod/photos.php:1358 ../../include/conversation.php:896
msgid "Share"
msgstr "Del"
#: ../../mod/photos.php:1359 ../../mod/editpost.php:112
#: ../../mod/content.php:482 ../../mod/content.php:845
#: ../../mod/wallmessage.php:152 ../../mod/message.php:293
#: ../../mod/message.php:481 ../../include/conversation.php:570
#: ../../include/conversation.php:915 ../../object/Item.php:258
msgid "Please wait"
msgstr "Vennligst vent"
#: ../../mod/photos.php:1375 ../../mod/photos.php:1416
#: ../../mod/photos.php:1448 ../../mod/content.php:690
#: ../../object/Item.php:557
msgid "This is you"
msgstr "Dette er deg"
#: ../../mod/photos.php:1377 ../../mod/photos.php:1418
#: ../../mod/photos.php:1450 ../../mod/content.php:692 ../../boot.php:574
#: ../../object/Item.php:559
msgid "Comment"
msgstr "Kommentar"
#: ../../mod/photos.php:1379 ../../mod/editpost.php:133
#: ../../mod/content.php:702 ../../include/conversation.php:933
#: ../../object/Item.php:569
msgid "Preview"
msgstr ""
#: ../../mod/photos.php:1479 ../../mod/content.php:439
#: ../../mod/content.php:723 ../../mod/settings.php:606
#: ../../mod/settings.php:695 ../../mod/group.php:168 ../../mod/admin.php:696
#: ../../include/conversation.php:515 ../../object/Item.php:117
msgid "Delete"
msgstr "Slett"
#: ../../mod/photos.php:1569
msgid "View Album"
msgstr "Vis album"
#: ../../mod/photos.php:1578
msgid "Recent Photos"
msgstr "Nye bilder"
#: ../../mod/community.php:23
msgid "Not available."
msgstr "Ikke tilgjengelig."
#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:133
#: ../../include/nav.php:101
msgid "Community"
msgstr "Fellesskap"
#: ../../mod/community.php:63 ../../mod/community.php:88
#: ../../mod/search.php:148 ../../mod/search.php:174
msgid "No results."
msgstr "Fant ikke noe."
#: ../../mod/friendica.php:55
msgid "This is Friendica, version"
msgstr ""
#: ../../mod/friendica.php:56
msgid "running at web location"
msgstr "kjører på web-plassering"
#: ../../mod/friendica.php:58
msgid ""
"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
"more about the Friendica project."
msgstr ""
#: ../../mod/friendica.php:60
msgid "Bug reports and issues: please visit"
msgstr "Feilrapporter og problemer: vennligst besøk"
#: ../../mod/friendica.php:61
msgid ""
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
"dot com"
msgstr ""
#: ../../mod/friendica.php:75
msgid "Installed plugins/addons/apps:"
msgstr ""
#: ../../mod/friendica.php:88
msgid "No installed plugins/addons/apps"
msgstr "Ingen installerte plugins/tillegg/apper"
#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
msgid "Item not found"
msgstr "Fant ikke elementet"
#: ../../mod/editpost.php:36
msgid "Edit post"
msgstr "Endre innlegg"
#: ../../mod/editpost.php:88 ../../include/conversation.php:882
msgid "Post to Email"
msgstr "Innlegg til e-post"
#: ../../mod/editpost.php:103 ../../mod/content.php:710
#: ../../mod/settings.php:605 ../../object/Item.php:107
msgid "Edit"
msgstr "Endre"
#: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150
#: ../../mod/message.php:291 ../../mod/message.php:478
#: ../../include/conversation.php:897
msgid "Upload photo"
msgstr "Last opp bilde"
#: ../../mod/editpost.php:105 ../../include/conversation.php:899
msgid "Attach file"
msgstr "Legg ved fil"
#: ../../mod/editpost.php:106 ../../mod/wallmessage.php:151
#: ../../mod/message.php:292 ../../mod/message.php:479
#: ../../include/conversation.php:901
msgid "Insert web link"
msgstr "Sett inn web-adresse"
#: ../../mod/editpost.php:107
msgid "Insert YouTube video"
msgstr "Sett inn YouTube-video"
#: ../../mod/editpost.php:108
msgid "Insert Vorbis [.ogg] video"
msgstr "Sett inn Vorbis [.ogg] video"
#: ../../mod/editpost.php:109
msgid "Insert Vorbis [.ogg] audio"
msgstr "Sett inn Vorbis [ogg] lydfil"
#: ../../mod/editpost.php:110 ../../include/conversation.php:907
msgid "Set your location"
msgstr "Angi din plassering"
#: ../../mod/editpost.php:111 ../../include/conversation.php:909
msgid "Clear browser location"
msgstr "Fjern nettleserplassering"
#: ../../mod/editpost.php:113 ../../include/conversation.php:916
msgid "Permission settings"
msgstr "Tillatelser"
#: ../../mod/editpost.php:121 ../../include/conversation.php:925
msgid "CC: email addresses"
msgstr "Kopi: e-postadresser"
#: ../../mod/editpost.php:122 ../../include/conversation.php:926
msgid "Public post"
msgstr "Offentlig innlegg"
#: ../../mod/editpost.php:125 ../../include/conversation.php:912
msgid "Set title"
msgstr "Lagre tittel"
#: ../../mod/editpost.php:127 ../../include/conversation.php:914
msgid "Categories (comma-separated list)"
msgstr ""
#: ../../mod/editpost.php:128 ../../include/conversation.php:928
msgid "Example: bob@example.com, mary@example.com"
msgstr "Eksempel: ola@example.com, kari@example.com"
#: ../../mod/dfrn_request.php:93
msgid "This introduction has already been accepted."
msgstr "Denne introduksjonen har allerede blitt akseptert."
#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:512
msgid "Profile location is not valid or does not contain profile information."
msgstr "Profilstedet er ikke gyldig og inneholder ikke profilinformasjon."
#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:517
msgid "Warning: profile location has no identifiable owner name."
msgstr "Advarsel: profilstedet har ikke identifiserbart eiernavn."
#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:519
msgid "Warning: profile location has no profile photo."
msgstr "Advarsel: profilstedet har ikke noe profilbilde."
#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:522
#, php-format
msgid "%d required parameter was not found at the given location"
msgid_plural "%d required parameters were not found at the given location"
msgstr[0] "one: %d nødvendig parameter ble ikke funnet på angitt sted"
msgstr[1] "other: %d nødvendige parametre ble ikke funnet på angitt sted"
#: ../../mod/dfrn_request.php:170
msgid "Introduction complete."
msgstr "Introduksjon ferdig."
#: ../../mod/dfrn_request.php:209
msgid "Unrecoverable protocol error."
msgstr "Uopprettelig protokollfeil."
#: ../../mod/dfrn_request.php:237
msgid "Profile unavailable."
msgstr "Profil utilgjengelig."
#: ../../mod/dfrn_request.php:262
#, php-format
msgid "%s has received too many connection requests today."
msgstr "%s har mottatt for mange kontaktforespørsler idag."
#: ../../mod/dfrn_request.php:263
msgid "Spam protection measures have been invoked."
msgstr "Tiltak mot søppelpost har blitt iverksatt."
#: ../../mod/dfrn_request.php:264
msgid "Friends are advised to please try again in 24 hours."
msgstr "Venner anbefales å prøve igjen om 24 timer."
#: ../../mod/dfrn_request.php:326
msgid "Invalid locator"
msgstr "Ugyldig stedsangivelse"
#: ../../mod/dfrn_request.php:335
msgid "Invalid email address."
msgstr ""
#: ../../mod/dfrn_request.php:361
msgid "This account has not been configured for email. Request failed."
msgstr "Denne kontoen er ikke konfigurert for e-post. Forespørsel mislyktes."
#: ../../mod/dfrn_request.php:457
msgid "Unable to resolve your name at the provided location."
msgstr "Ikke i stand til å avgjøre navnet ditt hos det oppgitte stedet."
#: ../../mod/dfrn_request.php:470
msgid "You have already introduced yourself here."
msgstr "Du har allerede introdusert deg selv her."
#: ../../mod/dfrn_request.php:474
#, php-format
msgid "Apparently you are already friends with %s."
msgstr "Du er visst allerede venn med %s."
#: ../../mod/dfrn_request.php:495
msgid "Invalid profile URL."
msgstr "Ugyldig profil-URL."
#: ../../mod/dfrn_request.php:501 ../../include/follow.php:27
msgid "Disallowed profile URL."
msgstr "Underkjent profil-URL."
#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:123
msgid "Failed to update contact record."
msgstr "Mislyktes med å oppdatere kontaktposten."
#: ../../mod/dfrn_request.php:591
msgid "Your introduction has been sent."
msgstr "Din introduksjon er sendt."
#: ../../mod/dfrn_request.php:644
msgid "Please login to confirm introduction."
msgstr "Vennligst logg inn for å bekrefte introduksjonen."
#: ../../mod/dfrn_request.php:658
msgid ""
"Incorrect identity currently logged in. Please login to "
"<strong>this</strong> profile."
msgstr "Feil identitet er logget inn for øyeblikket. Vennligst logg inn i <strong>denne</strong> profilen."
#: ../../mod/dfrn_request.php:669
msgid "Hide this contact"
msgstr ""
#: ../../mod/dfrn_request.php:672
#, php-format
msgid "Welcome home %s."
msgstr "Velkommen hjem %s."
#: ../../mod/dfrn_request.php:673
#, php-format
msgid "Please confirm your introduction/connection request to %s."
msgstr "Vennligst bekreft din introduksjons-/forbindelses- forespørsel til %s."
#: ../../mod/dfrn_request.php:674
msgid "Confirm"
msgstr "Bekreft"
#: ../../mod/dfrn_request.php:715 ../../include/items.php:3292
msgid "[Name Withheld]"
msgstr "[Navnet tilbakeholdt]"
#: ../../mod/dfrn_request.php:810
msgid ""
"Please enter your 'Identity Address' from one of the following supported "
"communications networks:"
msgstr ""
#: ../../mod/dfrn_request.php:826
msgid "<strike>Connect as an email follower</strike> (Coming soon)"
msgstr ""
#: ../../mod/dfrn_request.php:828
msgid ""
"If you are not yet a member of the free social web, <a "
"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
" Friendica site and join us today</a>."
msgstr ""
#: ../../mod/dfrn_request.php:831
msgid "Friend/Connection Request"
msgstr "Venne-/Koblings-forespørsel"
#: ../../mod/dfrn_request.php:832
msgid ""
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca"
msgstr ""
#: ../../mod/dfrn_request.php:833
msgid "Please answer the following:"
msgstr "Vennligst svar på følgende:"
#: ../../mod/dfrn_request.php:834
#, php-format
msgid "Does %s know you?"
msgstr "Kjenner %s deg?"
#: ../../mod/dfrn_request.php:837
msgid "Add a personal note:"
msgstr "Legg til en personlig melding:"
#: ../../mod/dfrn_request.php:839 ../../include/contact_selectors.php:76
msgid "Friendica"
msgstr ""
#: ../../mod/dfrn_request.php:840
msgid "StatusNet/Federated Social Web"
msgstr "StatusNet/Federeated Social Web"
#: ../../mod/dfrn_request.php:841 ../../mod/settings.php:640
#: ../../include/contact_selectors.php:80
msgid "Diaspora"
msgstr "Diaspora"
#: ../../mod/dfrn_request.php:842
#, php-format
msgid ""
" - please do not use this form. Instead, enter %s into your Diaspora search"
" bar."
msgstr ""
#: ../../mod/dfrn_request.php:843
msgid "Your Identity Address:"
msgstr "Din identitetsadresse:"
#: ../../mod/dfrn_request.php:846
msgid "Submit Request"
msgstr "Send forespørsel"
#: ../../mod/install.php:117
msgid "Friendica Social Communications Server - Setup"
msgstr ""
#: ../../mod/install.php:123
msgid "Could not connect to database."
msgstr ""
#: ../../mod/install.php:127
msgid "Could not create table."
msgstr ""
#: ../../mod/install.php:133
msgid "Your Friendica site database has been installed."
msgstr ""
#: ../../mod/install.php:138
msgid ""
"You may need to import the file \"database.sql\" manually using phpmyadmin "
"or mysql."
msgstr "Du må kanskje importere filen \"database.sql\" manuelt ved hjelp av phpmyadmin eller mysql."
#: ../../mod/install.php:139 ../../mod/install.php:204
#: ../../mod/install.php:488
msgid "Please see the file \"INSTALL.txt\"."
msgstr "Vennligst se filen \"INSTALL.txt\"."
#: ../../mod/install.php:201
msgid "System check"
msgstr ""
#: ../../mod/install.php:206
msgid "Check again"
msgstr ""
#: ../../mod/install.php:225
msgid "Database connection"
msgstr ""
#: ../../mod/install.php:226
msgid ""
"In order to install Friendica we need to know how to connect to your "
"database."
msgstr ""
#: ../../mod/install.php:227
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "Vennligst kontakt din tilbyder eller administrator hvis du har spørsmål til disse innstillingene."
#: ../../mod/install.php:228
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. Hvis ikke, vennligst opprett den før du fortsetter."
#: ../../mod/install.php:232
msgid "Database Server Name"
msgstr "Databasetjenerens navn"
#: ../../mod/install.php:233
msgid "Database Login Name"
msgstr "Database brukernavn"
#: ../../mod/install.php:234
msgid "Database Login Password"
msgstr "Database passord"
#: ../../mod/install.php:235
msgid "Database Name"
msgstr "Databasenavn"
#: ../../mod/install.php:236 ../../mod/install.php:275
msgid "Site administrator email address"
msgstr ""
#: ../../mod/install.php:236 ../../mod/install.php:275
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr ""
#: ../../mod/install.php:240 ../../mod/install.php:278
msgid "Please select a default timezone for your website"
msgstr "Vennligst velg en standard tidssone for ditt nettsted"
#: ../../mod/install.php:265
msgid "Site settings"
msgstr ""
#: ../../mod/install.php:318
msgid "Could not find a command line version of PHP in the web server PATH."
msgstr "Fant ikke en kommandolinjeversjon av PHP i webtjenerens PATH."
#: ../../mod/install.php:319
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. See <a "
"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
msgstr ""
#: ../../mod/install.php:323
msgid "PHP executable path"
msgstr ""
#: ../../mod/install.php:323
msgid ""
"Enter full path to php executable. You can leave this blank to continue the "
"installation."
msgstr ""
#: ../../mod/install.php:328
msgid "Command line PHP"
msgstr ""
#: ../../mod/install.php:337
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\" aktivert."
#: ../../mod/install.php:338
msgid "This is required for message delivery to work."
msgstr "Dette er nødvendig for at meldingslevering skal virke."
#: ../../mod/install.php:340
msgid "PHP register_argc_argv"
msgstr ""
#: ../../mod/install.php:361
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/install.php:362
msgid ""
"If running under Windows, please see "
"\"http://www.php.net/manual/en/openssl.installation.php\"."
msgstr "For kjøring på Windows, vennligst se \"http://www.php.net/manual/en/openssl.installation.php\"."
#: ../../mod/install.php:364
msgid "Generate encryption keys"
msgstr ""
#: ../../mod/install.php:371
msgid "libCurl PHP module"
msgstr ""
#: ../../mod/install.php:372
msgid "GD graphics PHP module"
msgstr ""
#: ../../mod/install.php:373
msgid "OpenSSL PHP module"
msgstr ""
#: ../../mod/install.php:374
msgid "mysqli PHP module"
msgstr ""
#: ../../mod/install.php:375
msgid "mb_string PHP module"
msgstr ""
#: ../../mod/install.php:380 ../../mod/install.php:382
msgid "Apache mod_rewrite module"
msgstr ""
#: ../../mod/install.php:380
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr "Feil: Modulen mod-rewrite for Apache-webtjeneren er påkrevet, men er ikke installert."
#: ../../mod/install.php:388
msgid "Error: libCURL PHP module required but not installed."
msgstr "Feil: libCURL PHP-modulen er påkrevet, men er ikke installert."
#: ../../mod/install.php:392
msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr "Feil: GD graphics PHP-modulen med JPEG-støtte er påkrevet, men er ikke installert."
#: ../../mod/install.php:396
msgid "Error: openssl PHP module required but not installed."
msgstr "Feil: openssl PHP-modulen er påkrevet, men er ikke installert."
#: ../../mod/install.php:400
msgid "Error: mysqli PHP module required but not installed."
msgstr "Feil: mysqli PHP-modulen er påkrevet, men er ikke installert."
#: ../../mod/install.php:404
msgid "Error: mb_string PHP module required but not installed."
msgstr "Feil: mb_string PHP-modulen er påkrevet men ikke installert."
#: ../../mod/install.php:421
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-installatøren trenger å kunne lage filen \".htconfig.php\" i topp-folderen på web-tjeneren din, men den får ikke til dette."
#: ../../mod/install.php:422
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 skyldes oftest manglende tillatelse, ettersom web-tjeneren kanskje ikke kan skrive filer i din mappe - selv om du kan."
#: ../../mod/install.php:423
msgid ""
"At the end of this procedure, we will give you a text to save in a file "
"named .htconfig.php in your Friendica top folder."
msgstr ""
#: ../../mod/install.php:424
msgid ""
"You can alternatively skip this procedure and perform a manual installation."
" Please see the file \"INSTALL.txt\" for instructions."
msgstr ""
#: ../../mod/install.php:427
msgid ".htconfig.php is writable"
msgstr ""
#: ../../mod/install.php:439
msgid ""
"Url rewrite in .htaccess is not working. Check your server configuration."
msgstr ""
#: ../../mod/install.php:441
msgid "Url rewrite is working"
msgstr ""
#: ../../mod/install.php:451
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 "Filen \".htconfig.php\" med databasekonfigurasjonen kunne ikke bli skrevet. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i roten på din web-tjener."
#: ../../mod/install.php:475
msgid "Errors encountered creating database tables."
msgstr "Feil oppstod under opprettelsen av databasetabeller."
#: ../../mod/install.php:486
msgid "<h1>What next</h1>"
msgstr ""
#: ../../mod/install.php:487
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
msgstr "VIKTIG: Du må [manuelt] sette opp en planlagt oppgave for oppdatering."
#: ../../mod/localtime.php:12 ../../include/event.php:11
#: ../../include/bb2diaspora.php:390
msgid "l F d, Y \\@ g:i A"
msgstr ""
#: ../../mod/localtime.php:24
msgid "Time Conversion"
msgstr "Tidskonvertering"
#: ../../mod/localtime.php:26
msgid ""
"Friendika provides this service for sharing events with other networks and "
"friends in unknown timezones."
msgstr "Friendica har denne tjenesten for å dele hendelser med andre nettverk og venner i ukjente tidssoner."
#: ../../mod/localtime.php:30
#, php-format
msgid "UTC time: %s"
msgstr "UTC tid: %s"
#: ../../mod/localtime.php:33
#, php-format
msgid "Current timezone: %s"
msgstr "Gjeldende tidssone: %s"
#: ../../mod/localtime.php:36
#, php-format
msgid "Converted localtime: %s"
msgstr "Konvertert lokaltid: %s"
#: ../../mod/localtime.php:41
msgid "Please select your timezone:"
msgstr "Vennligst velg din tidssone:"
#: ../../mod/poke.php:192
msgid "Poke/Prod"
msgstr ""
#: ../../mod/poke.php:193
msgid "poke, prod or do other things to somebody"
msgstr ""
#: ../../mod/poke.php:194
msgid "Recipient"
msgstr ""
#: ../../mod/poke.php:195
msgid "Choose what you wish to do to recipient"
msgstr ""
#: ../../mod/poke.php:198
msgid "Make this post private"
msgstr ""
#: ../../mod/match.php:12
msgid "Profile Match"
msgstr "Profiltreff"
#: ../../mod/match.php:20
msgid "No keywords to match. Please add keywords to your default profile."
msgstr "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord i din standardprofil."
#: ../../mod/match.php:57
msgid "is interested in:"
msgstr ""
#: ../../mod/match.php:58 ../../mod/suggest.php:59
#: ../../include/contact_widgets.php:9 ../../boot.php:1164
msgid "Connect"
msgstr "Forbindelse"
#: ../../mod/match.php:65 ../../mod/dirfind.php:60
msgid "No matches"
msgstr "Ingen treff"
#: ../../mod/lockview.php:39
msgid "Remote privacy information not available."
msgstr "Ekstern informasjon om privatlivsinnstillinger er ikke tilgjengelig."
#: ../../mod/lockview.php:43
msgid "Visible to:"
msgstr "Synlig for:"
#: ../../mod/content.php:119 ../../mod/network.php:436
msgid "No such group"
msgstr "Gruppen finnes ikke"
#: ../../mod/content.php:130 ../../mod/network.php:447
msgid "Group is empty"
msgstr "Gruppen er tom"
#: ../../mod/content.php:134 ../../mod/network.php:451
msgid "Group: "
msgstr "Gruppe:"
#: ../../mod/content.php:438 ../../mod/content.php:722
#: ../../include/conversation.php:514 ../../object/Item.php:116
msgid "Select"
msgstr "Velg"
#: ../../mod/content.php:455 ../../mod/content.php:815
#: ../../mod/content.php:816 ../../include/conversation.php:533
#: ../../object/Item.php:227 ../../object/Item.php:228
#, php-format
msgid "View %s's profile @ %s"
msgstr ""
#: ../../mod/content.php:465 ../../mod/content.php:827
#: ../../include/conversation.php:553 ../../object/Item.php:240
#, php-format
msgid "%s from %s"
msgstr "%s fra %s"
#: ../../mod/content.php:480 ../../include/conversation.php:568
msgid "View in context"
msgstr "Vis i sammenheng"
#: ../../mod/content.php:586 ../../object/Item.php:277
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
msgstr[0] ""
msgstr[1] ""
#: ../../mod/content.php:588 ../../include/text.php:1443
#: ../../object/Item.php:279 ../../object/Item.php:292
msgid "comment"
msgid_plural "comments"
msgstr[0] ""
msgstr[1] ""
#: ../../mod/content.php:589 ../../addon/page/page.php:76
#: ../../addon/page/page.php:110 ../../addon/showmore/showmore.php:119
#: ../../include/contact_widgets.php:195 ../../boot.php:575
#: ../../object/Item.php:280
msgid "show more"
msgstr ""
#: ../../mod/content.php:667 ../../object/Item.php:196
msgid "like"
msgstr ""
#: ../../mod/content.php:668 ../../object/Item.php:197
msgid "dislike"
msgstr ""
#: ../../mod/content.php:670 ../../object/Item.php:199
msgid "Share this"
msgstr ""
#: ../../mod/content.php:670 ../../object/Item.php:199
msgid "share"
msgstr ""
#: ../../mod/content.php:694 ../../object/Item.php:561
msgid "Bold"
msgstr ""
#: ../../mod/content.php:695 ../../object/Item.php:562
msgid "Italic"
msgstr ""
#: ../../mod/content.php:696 ../../object/Item.php:563
msgid "Underline"
msgstr ""
#: ../../mod/content.php:697 ../../object/Item.php:564
msgid "Quote"
msgstr ""
#: ../../mod/content.php:698 ../../object/Item.php:565
msgid "Code"
msgstr ""
#: ../../mod/content.php:699 ../../object/Item.php:566
msgid "Image"
msgstr ""
#: ../../mod/content.php:700 ../../object/Item.php:567
msgid "Link"
msgstr ""
#: ../../mod/content.php:701 ../../object/Item.php:568
msgid "Video"
msgstr ""
#: ../../mod/content.php:735 ../../object/Item.php:180
msgid "add star"
msgstr ""
#: ../../mod/content.php:736 ../../object/Item.php:181
msgid "remove star"
msgstr ""
#: ../../mod/content.php:737 ../../object/Item.php:182
msgid "toggle star status"
msgstr "veksle stjernestatus"
#: ../../mod/content.php:740 ../../object/Item.php:185
msgid "starred"
msgstr ""
#: ../../mod/content.php:741 ../../object/Item.php:186
msgid "add tag"
msgstr ""
#: ../../mod/content.php:745 ../../object/Item.php:120
msgid "save to folder"
msgstr ""
#: ../../mod/content.php:817 ../../object/Item.php:229
msgid "to"
msgstr "til"
#: ../../mod/content.php:818 ../../object/Item.php:230
msgid "Wall-to-Wall"
msgstr "vegg-til-vegg"
#: ../../mod/content.php:819 ../../object/Item.php:231
msgid "via Wall-To-Wall:"
msgstr "via vegg-til-vegg"
#: ../../mod/home.php:28 ../../addon/communityhome/communityhome.php:179
#, php-format
msgid "Welcome to %s"
msgstr "Velkommen til %s"
#: ../../mod/notifications.php:26
msgid "Invalid request identifier."
msgstr "Ugyldig forespørselsidentifikator."
#: ../../mod/notifications.php:35 ../../mod/notifications.php:161
#: ../../mod/notifications.php:207
msgid "Discard"
msgstr "Forkast"
#: ../../mod/notifications.php:51 ../../mod/notifications.php:160
#: ../../mod/notifications.php:206 ../../mod/contacts.php:321
#: ../../mod/contacts.php:375
msgid "Ignore"
msgstr "Ignorer"
#: ../../mod/notifications.php:75
msgid "System"
msgstr ""
#: ../../mod/notifications.php:80 ../../include/nav.php:113
msgid "Network"
msgstr "Nettverk"
#: ../../mod/notifications.php:85 ../../mod/network.php:300
msgid "Personal"
msgstr ""
#: ../../mod/notifications.php:90 ../../view/theme/diabook/theme.php:127
#: ../../include/nav.php:77 ../../include/nav.php:115
msgid "Home"
msgstr "Hjem"
#: ../../mod/notifications.php:95 ../../include/nav.php:121
msgid "Introductions"
msgstr ""
#: ../../mod/notifications.php:100 ../../mod/message.php:176
#: ../../include/nav.php:128
msgid "Messages"
msgstr "Meldinger"
#: ../../mod/notifications.php:119
msgid "Show Ignored Requests"
msgstr "Vis ignorerte forespørsler"
#: ../../mod/notifications.php:119
msgid "Hide Ignored Requests"
msgstr "Skjul ignorerte forespørsler"
#: ../../mod/notifications.php:145 ../../mod/notifications.php:191
msgid "Notification type: "
msgstr "Beskjedtype:"
#: ../../mod/notifications.php:146
msgid "Friend Suggestion"
msgstr "Venneforslag"
#: ../../mod/notifications.php:148
#, php-format
msgid "suggested by %s"
msgstr "foreslått av %s"
#: ../../mod/notifications.php:153 ../../mod/notifications.php:200
#: ../../mod/contacts.php:381
msgid "Hide this contact from others"
msgstr ""
#: ../../mod/notifications.php:154 ../../mod/notifications.php:201
msgid "Post a new friend activity"
msgstr ""
#: ../../mod/notifications.php:154 ../../mod/notifications.php:201
msgid "if applicable"
msgstr ""
#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
#: ../../mod/admin.php:694
msgid "Approve"
msgstr "Godkjenn"
#: ../../mod/notifications.php:177
msgid "Claims to be known to you: "
msgstr "Påstår å kjenne deg:"
#: ../../mod/notifications.php:177
msgid "yes"
msgstr "ja"
#: ../../mod/notifications.php:177
msgid "no"
msgstr "ei"
#: ../../mod/notifications.php:184
msgid "Approve as: "
msgstr "Godkjenn som:"
#: ../../mod/notifications.php:185
msgid "Friend"
msgstr "Venn"
#: ../../mod/notifications.php:186
msgid "Sharer"
msgstr ""
#: ../../mod/notifications.php:186
msgid "Fan/Admirer"
msgstr "Fan/Beundrer"
#: ../../mod/notifications.php:192
msgid "Friend/Connect Request"
msgstr "Venn/kontakt-forespørsel"
#: ../../mod/notifications.php:192
msgid "New Follower"
msgstr "Ny følgesvenn"
#: ../../mod/notifications.php:213
msgid "No introductions."
msgstr ""
#: ../../mod/notifications.php:216 ../../include/nav.php:122
msgid "Notifications"
msgstr "Varslinger"
#: ../../mod/notifications.php:253 ../../mod/notifications.php:378
#: ../../mod/notifications.php:465
#, php-format
msgid "%s liked %s's post"
msgstr ""
#: ../../mod/notifications.php:262 ../../mod/notifications.php:387
#: ../../mod/notifications.php:474
#, php-format
msgid "%s disliked %s's post"
msgstr ""
#: ../../mod/notifications.php:276 ../../mod/notifications.php:401
#: ../../mod/notifications.php:488
#, php-format
msgid "%s is now friends with %s"
msgstr ""
#: ../../mod/notifications.php:283 ../../mod/notifications.php:408
#, php-format
msgid "%s created a new post"
msgstr ""
#: ../../mod/notifications.php:284 ../../mod/notifications.php:409
#: ../../mod/notifications.php:497
#, php-format
msgid "%s commented on %s's post"
msgstr ""
#: ../../mod/notifications.php:298
msgid "No more network notifications."
msgstr ""
#: ../../mod/notifications.php:302
msgid "Network Notifications"
msgstr ""
#: ../../mod/notifications.php:328 ../../mod/notify.php:61
msgid "No more system notifications."
msgstr ""
#: ../../mod/notifications.php:332 ../../mod/notify.php:65
msgid "System Notifications"
msgstr ""
#: ../../mod/notifications.php:423
msgid "No more personal notifications."
msgstr ""
#: ../../mod/notifications.php:427
msgid "Personal Notifications"
msgstr ""
#: ../../mod/notifications.php:504
msgid "No more home notifications."
msgstr ""
#: ../../mod/notifications.php:508
msgid "Home Notifications"
msgstr ""
#: ../../mod/contacts.php:84 ../../mod/contacts.php:164
msgid "Could not access contact record."
msgstr "Fikk ikke tilgang til kontaktposten."
#: ../../mod/contacts.php:98
msgid "Could not locate selected profile."
msgstr "Kunne ikke lokalisere valgt profil."
#: ../../mod/contacts.php:121
msgid "Contact updated."
msgstr "Kontakt oppdatert."
#: ../../mod/contacts.php:186
msgid "Contact has been blocked"
msgstr "Kontakten er blokkert"
#: ../../mod/contacts.php:186
msgid "Contact has been unblocked"
msgstr "Kontakten er ikke blokkert lenger"
#: ../../mod/contacts.php:200
msgid "Contact has been ignored"
msgstr "Kontakten er ignorert"
#: ../../mod/contacts.php:200
msgid "Contact has been unignored"
msgstr "Kontakten er ikke ignorert lenger"
#: ../../mod/contacts.php:216
msgid "Contact has been archived"
msgstr ""
#: ../../mod/contacts.php:216
msgid "Contact has been unarchived"
msgstr ""
#: ../../mod/contacts.php:229
msgid "Contact has been removed."
msgstr "Kontakten er fjernet."
#: ../../mod/contacts.php:263
#, php-format
msgid "You are mutual friends with %s"
msgstr "Du er gjensidig venn med %s"
#: ../../mod/contacts.php:267
#, php-format
msgid "You are sharing with %s"
msgstr "Du deler med %s"
#: ../../mod/contacts.php:272
#, php-format
msgid "%s is sharing with you"
msgstr "%s deler med deg"
#: ../../mod/contacts.php:289
msgid "Private communications are not available for this contact."
msgstr "Privat kommunikasjon er ikke tilgjengelig mot denne kontakten."
#: ../../mod/contacts.php:292
msgid "Never"
msgstr "Aldri"
#: ../../mod/contacts.php:296
msgid "(Update was successful)"
msgstr "(Oppdatering vellykket)"
#: ../../mod/contacts.php:296
msgid "(Update was not successful)"
msgstr "(Oppdatering mislykket)"
#: ../../mod/contacts.php:298
msgid "Suggest friends"
msgstr "Foreslå venner"
#: ../../mod/contacts.php:302
#, php-format
msgid "Network type: %s"
msgstr "Nettverkstype: %s"
#: ../../mod/contacts.php:305 ../../include/contact_widgets.php:190
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
msgstr[0] "%d felles kontakt"
msgstr[1] "%d felles kontakter"
#: ../../mod/contacts.php:310
msgid "View all contacts"
msgstr "Vis alle kontakter"
#: ../../mod/contacts.php:315 ../../mod/contacts.php:374
#: ../../mod/admin.php:698
msgid "Unblock"
msgstr "Ikke blokker"
#: ../../mod/contacts.php:315 ../../mod/contacts.php:374
#: ../../mod/admin.php:697
msgid "Block"
msgstr "Blokker"
#: ../../mod/contacts.php:318
msgid "Toggle Blocked status"
msgstr ""
#: ../../mod/contacts.php:321 ../../mod/contacts.php:375
msgid "Unignore"
msgstr "Fjern ignorering"
#: ../../mod/contacts.php:324
msgid "Toggle Ignored status"
msgstr ""
#: ../../mod/contacts.php:328
msgid "Unarchive"
msgstr ""
#: ../../mod/contacts.php:328
msgid "Archive"
msgstr ""
#: ../../mod/contacts.php:331
msgid "Toggle Archive status"
msgstr ""
#: ../../mod/contacts.php:334
msgid "Repair"
msgstr "Reparer"
#: ../../mod/contacts.php:337
msgid "Advanced Contact Settings"
msgstr ""
#: ../../mod/contacts.php:343
msgid "Communications lost with this contact!"
msgstr ""
#: ../../mod/contacts.php:346
msgid "Contact Editor"
msgstr "Endre kontakt"
#: ../../mod/contacts.php:349
msgid "Profile Visibility"
msgstr "Profilens synlighet"
#: ../../mod/contacts.php:350
#, 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 til %s når denne ser profilen på en sikret måte."
#: ../../mod/contacts.php:351
msgid "Contact Information / Notes"
msgstr "Kontaktinformasjon/-notater"
#: ../../mod/contacts.php:352
msgid "Edit contact notes"
msgstr "Endre kontaktnotater"
#: ../../mod/contacts.php:357 ../../mod/contacts.php:549
#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Besøk %ss profil [%s]"
#: ../../mod/contacts.php:358
msgid "Block/Unblock contact"
msgstr "Blokker kontakt/fjern blokkering for kontakt"
#: ../../mod/contacts.php:359
msgid "Ignore contact"
msgstr "Ignorer kontakt"
#: ../../mod/contacts.php:360
msgid "Repair URL settings"
msgstr "Reparer URL-innstillinger"
#: ../../mod/contacts.php:361
msgid "View conversations"
msgstr "Vis samtaler"
#: ../../mod/contacts.php:363
msgid "Delete contact"
msgstr "Slett kontakt"
#: ../../mod/contacts.php:367
msgid "Last update:"
msgstr "Siste oppdatering:"
#: ../../mod/contacts.php:369
msgid "Update public posts"
msgstr "Oppdater offentlige innlegg"
#: ../../mod/contacts.php:371 ../../mod/admin.php:1170
msgid "Update now"
msgstr "Oppdater nå"
#: ../../mod/contacts.php:378
msgid "Currently blocked"
msgstr "Blokkert nå"
#: ../../mod/contacts.php:379
msgid "Currently ignored"
msgstr "Ignorert nå"
#: ../../mod/contacts.php:380
msgid "Currently archived"
msgstr ""
#: ../../mod/contacts.php:381
msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr ""
#: ../../mod/contacts.php:434
msgid "Suggestions"
msgstr ""
#: ../../mod/contacts.php:437
msgid "Suggest potential friends"
msgstr ""
#: ../../mod/contacts.php:440 ../../mod/group.php:191
msgid "All Contacts"
msgstr "Alle kontakter"
#: ../../mod/contacts.php:443
msgid "Show all contacts"
msgstr ""
#: ../../mod/contacts.php:446
msgid "Unblocked"
msgstr ""
#: ../../mod/contacts.php:449
msgid "Only show unblocked contacts"
msgstr ""
#: ../../mod/contacts.php:453
msgid "Blocked"
msgstr ""
#: ../../mod/contacts.php:456
msgid "Only show blocked contacts"
msgstr ""
#: ../../mod/contacts.php:460
msgid "Ignored"
msgstr ""
#: ../../mod/contacts.php:463
msgid "Only show ignored contacts"
msgstr ""
#: ../../mod/contacts.php:467
msgid "Archived"
msgstr ""
#: ../../mod/contacts.php:470
msgid "Only show archived contacts"
msgstr ""
#: ../../mod/contacts.php:474
msgid "Hidden"
msgstr ""
#: ../../mod/contacts.php:477
msgid "Only show hidden contacts"
msgstr ""
#: ../../mod/contacts.php:525
msgid "Mutual Friendship"
msgstr "Gjensidig vennskap"
#: ../../mod/contacts.php:529
msgid "is a fan of yours"
msgstr "er en tilhenger av deg"
#: ../../mod/contacts.php:533
msgid "you are a fan of"
msgstr "du er en tilhenger av"
#: ../../mod/contacts.php:550 ../../mod/nogroup.php:41
msgid "Edit contact"
msgstr "Endre kontakt"
#: ../../mod/contacts.php:571 ../../view/theme/diabook/theme.php:129
#: ../../include/nav.php:139
msgid "Contacts"
msgstr "Kontakter"
#: ../../mod/contacts.php:575
msgid "Search your contacts"
msgstr "Søk i dine kontakter"
#: ../../mod/contacts.php:576 ../../mod/directory.php:59
msgid "Finding: "
msgstr "Fant:"
#: ../../mod/contacts.php:577 ../../mod/directory.php:61
#: ../../include/contact_widgets.php:33
msgid "Find"
msgstr "Finn"
#: ../../mod/lostpass.php:16
msgid "No valid account found."
msgstr "Fant ingen gyldig konto."
#: ../../mod/lostpass.php:32
msgid "Password reset request issued. Check your email."
msgstr "Forespørsel om å tilbakestille passord er sendt. Sjekk e-posten din."
#: ../../mod/lostpass.php:43
#, php-format
msgid "Password reset requested at %s"
msgstr "Forespørsel om tilbakestilling av passord ved %s"
#: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107
#: ../../mod/register.php:90 ../../mod/register.php:144
#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752
#: ../../addon/facebook/facebook.php:702
#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661
#: ../../addon/public_server/public_server.php:62
#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3301
#: ../../boot.php:788
msgid "Administrator"
msgstr "Administrator"
#: ../../mod/lostpass.php:65
msgid ""
"Request could not be verified. (You may have previously submitted it.) "
"Password reset failed."
msgstr "Forespørselen kunne ikke verifiseres. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord milslyktes."
#: ../../mod/lostpass.php:83 ../../boot.php:925
msgid "Password Reset"
msgstr "Passord tilbakestilling"
#: ../../mod/lostpass.php:84
msgid "Your password has been reset as requested."
msgstr "Ditt passord er tilbakestilt som forespurt."
#: ../../mod/lostpass.php:85
msgid "Your new password is"
msgstr "Ditt nye passord er"
#: ../../mod/lostpass.php:86
msgid "Save or copy your new password - and then"
msgstr "Lagre eller kopier ditt nye passord, og deretter"
#: ../../mod/lostpass.php:87
msgid "click here to login"
msgstr "klikk her for å logge inn"
#: ../../mod/lostpass.php:88
msgid ""
"Your password may be changed from the <em>Settings</em> page after "
"successful login."
msgstr "Passordet ditt kan endres fra siden <em>Innstillinger</em> etter vellykket logg inn."
#: ../../mod/lostpass.php:119
msgid "Forgot your Password?"
msgstr "Glemte du passordet?"
#: ../../mod/lostpass.php:120
msgid ""
"Enter your email address and submit to have your password reset. Then check "
"your email for further instructions."
msgstr "Skriv inn e-postadressen og send inn for å tilbakestille passordet ditt. Sjekk deretter e-posten din for nærmere forklaring."
#: ../../mod/lostpass.php:121
msgid "Nickname or Email: "
msgstr "Kallenavn eller e-post:"
#: ../../mod/lostpass.php:122
msgid "Reset"
msgstr "Tilbakestill"
#: ../../mod/settings.php:30 ../../include/nav.php:137
msgid "Account settings"
msgstr "Kontoinnstillinger"
#: ../../mod/settings.php:35
msgid "Display settings"
msgstr ""
#: ../../mod/settings.php:41
msgid "Connector settings"
msgstr "Koblingsinnstillinger"
#: ../../mod/settings.php:46
msgid "Plugin settings"
msgstr "Tilleggsinnstillinger"
#: ../../mod/settings.php:51
msgid "Connected apps"
msgstr "Tilkoblede programmer"
#: ../../mod/settings.php:56
msgid "Export personal data"
msgstr "Eksporter personlige data"
#: ../../mod/settings.php:61
msgid "Remove account"
msgstr ""
#: ../../mod/settings.php:69 ../../mod/newmember.php:22
#: ../../mod/admin.php:785 ../../mod/admin.php:990
#: ../../addon/dav/friendica/layout.fnk.php:225
#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:643
#: ../../view/theme/diabook/theme.php:773 ../../include/nav.php:137
msgid "Settings"
msgstr "Innstillinger"
#: ../../mod/settings.php:113
msgid "Missing some important data!"
msgstr "Mangler noen viktige data!"
#: ../../mod/settings.php:116 ../../mod/settings.php:569
msgid "Update"
msgstr "Oppdater"
#: ../../mod/settings.php:221
msgid "Failed to connect with email account using the settings provided."
msgstr "Mislyktes i å opprette forbindelse med e-postkontoen med de oppgitte innstillingene."
#: ../../mod/settings.php:226
msgid "Email settings updated."
msgstr "E-postinnstillinger er oppdatert."
#: ../../mod/settings.php:290
msgid "Passwords do not match. Password unchanged."
msgstr "Passordene er ikke like. Passord uendret."
#: ../../mod/settings.php:295
msgid "Empty passwords are not allowed. Password unchanged."
msgstr "Tomme passord er ikke lov. Passord uendret."
#: ../../mod/settings.php:306
msgid "Password changed."
msgstr "Passord endret."
#: ../../mod/settings.php:308
msgid "Password update failed. Please try again."
msgstr "Passordoppdatering mislyktes. Vennligst prøv igjen."
#: ../../mod/settings.php:373
msgid " Please use a shorter name."
msgstr "Vennligst bruk et kortere navn."
#: ../../mod/settings.php:375
msgid " Name too short."
msgstr "Navnet er for kort."
#: ../../mod/settings.php:381
msgid " Not valid email."
msgstr "Ugyldig e-postadresse."
#: ../../mod/settings.php:383
msgid " Cannot change to that email."
msgstr "Kan ikke endre til den e-postadressen."
#: ../../mod/settings.php:437
msgid "Private forum has no privacy permissions. Using default privacy group."
msgstr ""
#: ../../mod/settings.php:441
msgid "Private forum has no privacy permissions and no default privacy group."
msgstr ""
#: ../../mod/settings.php:471 ../../addon/facebook/facebook.php:495
#: ../../addon/fbpost/fbpost.php:144 ../../addon/impressum/impressum.php:78
#: ../../addon/openstreetmap/openstreetmap.php:80
#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105
#: ../../addon/twitter/twitter.php:389
msgid "Settings updated."
msgstr "Innstillinger oppdatert."
#: ../../mod/settings.php:542 ../../mod/settings.php:568
#: ../../mod/settings.php:604
msgid "Add application"
msgstr "Legg til program"
#: ../../mod/settings.php:546 ../../mod/settings.php:572
#: ../../addon/statusnet/statusnet.php:570
msgid "Consumer Key"
msgstr "Consumer Key"
#: ../../mod/settings.php:547 ../../mod/settings.php:573
#: ../../addon/statusnet/statusnet.php:569
msgid "Consumer Secret"
msgstr "Consumer Secret"
#: ../../mod/settings.php:548 ../../mod/settings.php:574
msgid "Redirect"
msgstr "Omdiriger"
#: ../../mod/settings.php:549 ../../mod/settings.php:575
msgid "Icon url"
msgstr "Ikon URL"
#: ../../mod/settings.php:560
msgid "You can't edit this application."
msgstr "Du kan ikke redigere dette programmet."
#: ../../mod/settings.php:603
msgid "Connected Apps"
msgstr "Tilkoblede programmer"
#: ../../mod/settings.php:607
msgid "Client key starts with"
msgstr "Klientnøkkelen starter med"
#: ../../mod/settings.php:608
msgid "No name"
msgstr "Ingen navn"
#: ../../mod/settings.php:609
msgid "Remove authorization"
msgstr "Fjern tillatelse"
#: ../../mod/settings.php:620
msgid "No Plugin settings configured"
msgstr "Ingen tilleggsinnstillinger konfigurert"
#: ../../mod/settings.php:628 ../../addon/widgets/widgets.php:123
msgid "Plugin Settings"
msgstr "Tilleggsinnstillinger"
#: ../../mod/settings.php:640 ../../mod/settings.php:641
#, php-format
msgid "Built-in support for %s connectivity is %s"
msgstr "Innebygget støtte for %s forbindelse er %s"
#: ../../mod/settings.php:640 ../../mod/settings.php:641
msgid "enabled"
msgstr "aktivert"
#: ../../mod/settings.php:640 ../../mod/settings.php:641
msgid "disabled"
msgstr "avskrudd"
#: ../../mod/settings.php:641
msgid "StatusNet"
msgstr "StatusNet"
#: ../../mod/settings.php:673
msgid "Email access is disabled on this site."
msgstr "E-posttilgang er avskrudd på dette stedet."
#: ../../mod/settings.php:679
msgid "Connector Settings"
msgstr "Koblingsinnstillinger"
#: ../../mod/settings.php:684
msgid "Email/Mailbox Setup"
msgstr "E-post-/postboksinnstillinger"
#: ../../mod/settings.php:685
msgid ""
"If you wish to communicate with email contacts using this service "
"(optional), please specify how to connect to your mailbox."
msgstr "Hvis du ønsker å kommunisere med e-postkontakter via denne tjenesten (frivillig), vennligst oppgi hvordan din postboks kontaktes."
#: ../../mod/settings.php:686
msgid "Last successful email check:"
msgstr "Siste vellykkede e-postsjekk:"
#: ../../mod/settings.php:688
msgid "IMAP server name:"
msgstr "IMAP-tjeners navn:"
#: ../../mod/settings.php:689
msgid "IMAP port:"
msgstr "IMAP port:"
#: ../../mod/settings.php:690
msgid "Security:"
msgstr "Sikkerhet:"
#: ../../mod/settings.php:690 ../../mod/settings.php:695
#: ../../addon/dav/common/wdcal_edit.inc.php:191
msgid "None"
msgstr "Ingen"
#: ../../mod/settings.php:691
msgid "Email login name:"
msgstr "E-post brukernavn:"
#: ../../mod/settings.php:692
msgid "Email password:"
msgstr "E-post passord:"
#: ../../mod/settings.php:693
msgid "Reply-to address:"
msgstr "Svar-til-adresse:"
#: ../../mod/settings.php:694
msgid "Send public posts to all email contacts:"
msgstr "Send offentlige meldinger til alle e-postkontakter:"
#: ../../mod/settings.php:695
msgid "Action after import:"
msgstr ""
#: ../../mod/settings.php:695
msgid "Mark as seen"
msgstr ""
#: ../../mod/settings.php:695
msgid "Move to folder"
msgstr ""
#: ../../mod/settings.php:696
msgid "Move to folder:"
msgstr ""
#: ../../mod/settings.php:727 ../../mod/admin.php:402
msgid "No special theme for mobile devices"
msgstr ""
#: ../../mod/settings.php:767
msgid "Display Settings"
msgstr ""
#: ../../mod/settings.php:773 ../../mod/settings.php:784
msgid "Display Theme:"
msgstr "Vis tema:"
#: ../../mod/settings.php:774
msgid "Mobile Theme:"
msgstr ""
#: ../../mod/settings.php:775
msgid "Update browser every xx seconds"
msgstr ""
#: ../../mod/settings.php:775
msgid "Minimum of 10 seconds, no maximum"
msgstr ""
#: ../../mod/settings.php:776
msgid "Number of items to display per page:"
msgstr ""
#: ../../mod/settings.php:776
msgid "Maximum of 100 items"
msgstr ""
#: ../../mod/settings.php:777
msgid "Don't show emoticons"
msgstr ""
#: ../../mod/settings.php:853
msgid "Normal Account Page"
msgstr ""
#: ../../mod/settings.php:854
msgid "This account is a normal personal profile"
msgstr "Denne kontoen er en vanlig personlig profil"
#: ../../mod/settings.php:857
msgid "Soapbox Page"
msgstr ""
#: ../../mod/settings.php:858
msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr "Automatisk godkjenning av alle forespørsler om forbindelse/venner som fans med kun leserettigheter"
#: ../../mod/settings.php:861
msgid "Community Forum/Celebrity Account"
msgstr ""
#: ../../mod/settings.php:862
msgid ""
"Automatically approve all connection/friend requests as read-write fans"
msgstr "Automatisk godkjenning av alle forespørsler om forbindelse/venner som fans med lese- og skriverettigheter"
#: ../../mod/settings.php:865
msgid "Automatic Friend Page"
msgstr ""
#: ../../mod/settings.php:866
msgid "Automatically approve all connection/friend requests as friends"
msgstr "Automatisk godkjenning av alle forespørsler om forbindelse/venner som venner"
#: ../../mod/settings.php:869
msgid "Private Forum [Experimental]"
msgstr ""
#: ../../mod/settings.php:870
msgid "Private forum - approved members only"
msgstr ""
#: ../../mod/settings.php:882
msgid "OpenID:"
msgstr "OpenID:"
#: ../../mod/settings.php:882
msgid "(Optional) Allow this OpenID to login to this account."
msgstr "(Valgfritt) Tillat denne OpenID-en å logge inn i denne kontoen."
#: ../../mod/settings.php:892
msgid "Publish your default profile in your local site directory?"
msgstr "Skal standardprofilen din publiseres i katalogen til nettstedet ditt?"
#: ../../mod/settings.php:898
msgid "Publish your default profile in the global social directory?"
msgstr "Skal standardprofilen din publiseres i den globale sosiale katalogen?"
#: ../../mod/settings.php:906
msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr "Skjul kontakt-/venne-listen din for besøkende til standardprofilen din?"
#: ../../mod/settings.php:910
msgid "Hide your profile details from unknown viewers?"
msgstr ""
#: ../../mod/settings.php:915
msgid "Allow friends to post to your profile page?"
msgstr "Tillat venner å poste innlegg på din profilside?"
#: ../../mod/settings.php:921
msgid "Allow friends to tag your posts?"
msgstr "Tillat venner å merke dine innlegg?"
#: ../../mod/settings.php:927
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr ""
#: ../../mod/settings.php:933
msgid "Permit unknown people to send you private mail?"
msgstr ""
#: ../../mod/settings.php:941
msgid "Profile is <strong>not published</strong>."
msgstr "Profilen er <strong>ikke publisert</strong>."
#: ../../mod/settings.php:944 ../../mod/profile_photo.php:248
msgid "or"
msgstr "eller"
#: ../../mod/settings.php:949
msgid "Your Identity Address is"
msgstr "Din identitetsadresse er"
#: ../../mod/settings.php:960
msgid "Automatically expire posts after this many days:"
msgstr ""
#: ../../mod/settings.php:960
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr "Tomme innlegg utgår ikke. Utgåtte innlegg slettes."
#: ../../mod/settings.php:961
msgid "Advanced expiration settings"
msgstr ""
#: ../../mod/settings.php:962
msgid "Advanced Expiration"
msgstr ""
#: ../../mod/settings.php:963
msgid "Expire posts:"
msgstr ""
#: ../../mod/settings.php:964
msgid "Expire personal notes:"
msgstr ""
#: ../../mod/settings.php:965
msgid "Expire starred posts:"
msgstr ""
#: ../../mod/settings.php:966
msgid "Expire photos:"
msgstr ""
#: ../../mod/settings.php:967
msgid "Only expire posts by others:"
msgstr ""
#: ../../mod/settings.php:974
msgid "Account Settings"
msgstr "Kontoinnstillinger"
#: ../../mod/settings.php:982
msgid "Password Settings"
msgstr "Passordinnstillinger"
#: ../../mod/settings.php:983
msgid "New Password:"
msgstr "Nytt passord:"
#: ../../mod/settings.php:984
msgid "Confirm:"
msgstr "Bekreft:"
#: ../../mod/settings.php:984
msgid "Leave password fields blank unless changing"
msgstr "La passordfeltene stå tomme hvis du ikke skal bytte"
#: ../../mod/settings.php:988
msgid "Basic Settings"
msgstr "Grunninnstillinger"
#: ../../mod/settings.php:989 ../../include/profile_advanced.php:15
msgid "Full Name:"
msgstr "Fullt navn:"
#: ../../mod/settings.php:990
msgid "Email Address:"
msgstr "E-postadresse:"
#: ../../mod/settings.php:991
msgid "Your Timezone:"
msgstr "Din tidssone:"
#: ../../mod/settings.php:992
msgid "Default Post Location:"
msgstr "Standard oppholdssted når du poster:"
#: ../../mod/settings.php:993
msgid "Use Browser Location:"
msgstr "Bruk nettleserens oppholdssted:"
#: ../../mod/settings.php:996
msgid "Security and Privacy Settings"
msgstr "Sikkerhet og privatlivsinnstillinger"
#: ../../mod/settings.php:998
msgid "Maximum Friend Requests/Day:"
msgstr "Maksimum venneforespørsler/dag:"
#: ../../mod/settings.php:998 ../../mod/settings.php:1017
msgid "(to prevent spam abuse)"
msgstr "(for å forhindre søppelpost)"
#: ../../mod/settings.php:999
msgid "Default Post Permissions"
msgstr "Standardtillatelser ved posting"
#: ../../mod/settings.php:1000
msgid "(click to open/close)"
msgstr "(klikk for å åpne/lukke)"
#: ../../mod/settings.php:1017
msgid "Maximum private messages per day from unknown people:"
msgstr ""
#: ../../mod/settings.php:1020
msgid "Notification Settings"
msgstr "Beskjedinnstillinger"
#: ../../mod/settings.php:1021
msgid "By default post a status message when:"
msgstr ""
#: ../../mod/settings.php:1022
msgid "accepting a friend request"
msgstr ""
#: ../../mod/settings.php:1023
msgid "joining a forum/community"
msgstr ""
#: ../../mod/settings.php:1024
msgid "making an <em>interesting</em> profile change"
msgstr ""
#: ../../mod/settings.php:1025
msgid "Send a notification email when:"
msgstr "Send en e-post med beskjed når:"
#: ../../mod/settings.php:1026
msgid "You receive an introduction"
msgstr "Du mottar en introduksjon"
#: ../../mod/settings.php:1027
msgid "Your introductions are confirmed"
msgstr "Dine introduksjoner er bekreftet"
#: ../../mod/settings.php:1028
msgid "Someone writes on your profile wall"
msgstr "Noen skriver på veggen til profilen din"
#: ../../mod/settings.php:1029
msgid "Someone writes a followup comment"
msgstr "Noen skriver en oppfølgingskommentar"
#: ../../mod/settings.php:1030
msgid "You receive a private message"
msgstr "Du mottar en privat melding"
#: ../../mod/settings.php:1031
msgid "You receive a friend suggestion"
msgstr ""
#: ../../mod/settings.php:1032
msgid "You are tagged in a post"
msgstr ""
#: ../../mod/settings.php:1033
msgid "You are poked/prodded/etc. in a post"
msgstr ""
#: ../../mod/settings.php:1036
msgid "Advanced Account/Page Type Settings"
msgstr ""
#: ../../mod/settings.php:1037
msgid "Change the behaviour of this account for special situations"
msgstr ""
#: ../../mod/manage.php:91
msgid "Manage Identities and/or Pages"
msgstr "Behandle identiteter og/eller sider"
#: ../../mod/manage.php:94
msgid ""
"Toggle between different identities or community/group pages which share "
"your account details or which you have been granted \"manage\" permissions"
msgstr "Veksle mellom ulike identiteter eller felleskaps-/gruppesider som deler dine kontodetaljer eller som du har blitt gitt \"behandle\" tillatelser"
#: ../../mod/manage.php:96
msgid "Select an identity to manage: "
msgstr "Velg en identitet å behandle:"
#: ../../mod/network.php:97
msgid "Search Results For:"
msgstr ""
#: ../../mod/network.php:137 ../../mod/search.php:16
msgid "Remove term"
msgstr "Fjern uttrykk"
#: ../../mod/network.php:146 ../../mod/search.php:13
msgid "Saved Searches"
msgstr "Lagrede søk"
#: ../../mod/network.php:147 ../../include/group.php:244
msgid "add"
msgstr ""
#: ../../mod/network.php:287
msgid "Commented Order"
msgstr ""
#: ../../mod/network.php:290
msgid "Sort by Comment Date"
msgstr ""
#: ../../mod/network.php:293
msgid "Posted Order"
msgstr ""
#: ../../mod/network.php:296
msgid "Sort by Post Date"
msgstr ""
#: ../../mod/network.php:303
msgid "Posts that mention or involve you"
msgstr ""
#: ../../mod/network.php:306
msgid "New"
msgstr ""
#: ../../mod/network.php:309
msgid "Activity Stream - by date"
msgstr ""
#: ../../mod/network.php:312
msgid "Starred"
msgstr ""
#: ../../mod/network.php:315
msgid "Favourite Posts"
msgstr ""
#: ../../mod/network.php:318
msgid "Shared Links"
msgstr ""
#: ../../mod/network.php:321
msgid "Interesting Links"
msgstr ""
#: ../../mod/network.php:388
#, php-format
msgid "Warning: This group contains %s member from an insecure network."
msgid_plural ""
"Warning: This group contains %s members from an insecure network."
msgstr[0] "Advarsel: denne gruppen inneholder %s medlem fra et usikkert nettverk."
msgstr[1] "Advarsel: denne gruppe inneholder %s medlemmer fra et usikkert nettverk."
#: ../../mod/network.php:391
msgid "Private messages to this group are at risk of public disclosure."
msgstr "Private meldinger til denne gruppen risikerer å bli offentliggjort."
#: ../../mod/network.php:461
msgid "Contact: "
msgstr "Kontakt:"
#: ../../mod/network.php:463
msgid "Private messages to this person are at risk of public disclosure."
msgstr "Private meldinger til denne personen risikerer å bli offentliggjort."
#: ../../mod/network.php:468
msgid "Invalid contact."
msgstr "Ugyldig kontakt."
#: ../../mod/notes.php:44 ../../boot.php:1696
msgid "Personal Notes"
msgstr "Personlige notater"
#: ../../mod/notes.php:63 ../../mod/filer.php:30
#: ../../addon/facebook/facebook.php:770
#: ../../addon/privacy_image_cache/privacy_image_cache.php:263
#: ../../addon/fbpost/fbpost.php:267
#: ../../addon/dav/friendica/layout.fnk.php:441
#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:681
msgid "Save"
msgstr "Lagre"
#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
#, php-format
msgid "Number of daily wall messages for %s exceeded. Message failed."
msgstr "Antall daglige veggmeldinger for %s er overskredet. Melding mislyktes."
#: ../../mod/wallmessage.php:56 ../../mod/message.php:59
msgid "No recipient selected."
msgstr "Ingen mottaker valgt."
#: ../../mod/wallmessage.php:59
msgid "Unable to check your home location."
msgstr ""
#: ../../mod/wallmessage.php:62 ../../mod/message.php:66
msgid "Message could not be sent."
msgstr "Meldingen kunne ikke sendes."
#: ../../mod/wallmessage.php:65 ../../mod/message.php:69
msgid "Message collection failure."
msgstr ""
#: ../../mod/wallmessage.php:68 ../../mod/message.php:72
msgid "Message sent."
msgstr "Melding sendt."
#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
msgid "No recipient."
msgstr ""
#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131
#: ../../mod/message.php:242 ../../mod/message.php:250
#: ../../include/conversation.php:833 ../../include/conversation.php:850
msgid "Please enter a link URL:"
msgstr "Vennligst skriv inn en lenke URL:"
#: ../../mod/wallmessage.php:138 ../../mod/message.php:278
msgid "Send Private Message"
msgstr "Send privat melding"
#: ../../mod/wallmessage.php:139
#, php-format
msgid ""
"If you wish for %s to respond, please check that the privacy settings on "
"your site allow private mail from unknown senders."
msgstr ""
#: ../../mod/wallmessage.php:140 ../../mod/message.php:279
#: ../../mod/message.php:469
msgid "To:"
msgstr "Til:"
#: ../../mod/wallmessage.php:141 ../../mod/message.php:284
#: ../../mod/message.php:471
msgid "Subject:"
msgstr "Emne:"
#: ../../mod/wallmessage.php:147 ../../mod/message.php:288
#: ../../mod/message.php:474 ../../mod/invite.php:113
msgid "Your message:"
msgstr "Din melding:"
#: ../../mod/newmember.php:6
msgid "Welcome to Friendica"
msgstr ""
#: ../../mod/newmember.php:8
msgid "New Member Checklist"
msgstr "Sjekkliste for nye medlemmer"
#: ../../mod/newmember.php:12
msgid ""
"We would like to offer some tips and links to help make your experience "
"enjoyable. Click any item to visit the relevant page. A link to this page "
"will be visible from your home page for two weeks after your initial "
"registration and then will quietly disappear."
msgstr ""
#: ../../mod/newmember.php:14
msgid "Getting Started"
msgstr ""
#: ../../mod/newmember.php:18
msgid "Friendica Walk-Through"
msgstr ""
#: ../../mod/newmember.php:18
msgid ""
"On your <em>Quick Start</em> page - find a brief introduction to your "
"profile and network tabs, make some new connections, and find some groups to"
" join."
msgstr ""
#: ../../mod/newmember.php:26
msgid "Go to Your Settings"
msgstr ""
#: ../../mod/newmember.php:26
msgid ""
"On your <em>Settings</em> page - change your initial password. Also make a "
"note of your Identity Address. This looks just like an email address - and "
"will be useful in making friends on the free social web."
msgstr ""
#: ../../mod/newmember.php:28
msgid ""
"Review the other settings, particularly the privacy settings. An unpublished"
" directory listing is like having an unlisted phone number. In general, you "
"should probably publish your listing - unless all of your friends and "
"potential friends know exactly how to find you."
msgstr "Se over de andre innstillingene, særlig personverninnstillingene. En katalogoppføring som ikke er publisert er som å ha skjult telefonnummer. Generelt, så bør du antakelig publisere oppføringen, med mindre dine venner eller potensielle venner vet nøyaktig hvordan de skal finne deg."
#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
#: ../../view/theme/diabook/theme.php:128 ../../include/profile_advanced.php:7
#: ../../include/profile_advanced.php:84 ../../include/nav.php:50
#: ../../boot.php:1672
msgid "Profile"
msgstr "Profil"
#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
msgid "Upload Profile Photo"
msgstr "Last opp profilbilde"
#: ../../mod/newmember.php:36
msgid ""
"Upload a profile photo if you have not done so already. Studies have shown "
"that people with real photos of themselves are ten times more likely to make"
" friends than people who do not."
msgstr "Last opp et profilbilde hvis du ikke har gjort det allerede. Studier viser at folk som har ekte bilde av seg selv har ti ganger større sannsynlighet for å få venner enn folk som ikke gjør det."
#: ../../mod/newmember.php:38
msgid "Edit Your Profile"
msgstr ""
#: ../../mod/newmember.php:38
msgid ""
"Edit your <strong>default</strong> profile to your liking. Review the "
"settings for hiding your list of friends and hiding the profile from unknown"
" visitors."
msgstr "Du kan endre <strong>standardprofilen</strong> din slik du ønsker. Se over innstillingene som lar deg skjule vennelisten og skjule profilen fra ukjente besøkende."
#: ../../mod/newmember.php:40
msgid "Profile Keywords"
msgstr ""
#: ../../mod/newmember.php:40
msgid ""
"Set some public keywords for your default profile which describe your "
"interests. We may be able to find other people with similar interests and "
"suggest friendships."
msgstr "Legg til noen offentlige nøkkelord til standardprofilen din som beskriver dine interesser. Det kan hende vi klarer å finne andre folk med liknende interesser og foreslå vennskap."
#: ../../mod/newmember.php:44
msgid "Connecting"
msgstr ""
#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
#: ../../addon/facebook/facebook.php:728 ../../addon/fbpost/fbpost.php:239
#: ../../include/contact_selectors.php:81
msgid "Facebook"
msgstr "Facebook"
#: ../../mod/newmember.php:49
msgid ""
"Authorise the Facebook Connector if you currently have a Facebook account "
"and we will (optionally) import all your Facebook friends and conversations."
msgstr "Tillat Facebook-koblingen hvis du har en Facebook-konto og vi vil (valgfritt) importere alle dine Facebook-venner og samtaler."
#: ../../mod/newmember.php:51
msgid ""
"<em>If</em> this is your own personal server, installing the Facebook addon "
"may ease your transition to the free social web."
msgstr ""
#: ../../mod/newmember.php:56
msgid "Importing Emails"
msgstr ""
#: ../../mod/newmember.php:56
msgid ""
"Enter your email access information on your Connector Settings page if you "
"wish to import and interact with friends or mailing lists from your email "
"INBOX"
msgstr ""
#: ../../mod/newmember.php:58
msgid "Go to Your Contacts Page"
msgstr ""
#: ../../mod/newmember.php:58
msgid ""
"Your Contacts page is your gateway to managing friendships and connecting "
"with friends on other networks. Typically you enter their address or site "
"URL in the <em>Add New Contact</em> dialog."
msgstr ""
#: ../../mod/newmember.php:60
msgid "Go to Your Site's Directory"
msgstr ""
#: ../../mod/newmember.php:60
msgid ""
"The Directory page lets you find other people in this network or other "
"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
"their profile page. Provide your own Identity Address if requested."
msgstr "Katalog-siden lar deg finne andre folk i dette nettverket eller andre forente nettsteder. Se etter en <em>Connect</em> eller <em>Follow</em> lenke på profilsiden deres. Oppgi din egen identitetsadresse hvis du blir forespurt om det."
#: ../../mod/newmember.php:62
msgid "Finding New People"
msgstr ""
#: ../../mod/newmember.php:62
msgid ""
"On the side panel of the Contacts page are several tools to find new "
"friends. We can match people by interest, look up people by name or "
"interest, and provide suggestions based on network relationships. On a brand"
" new site, friend suggestions will usually begin to be populated within 24 "
"hours."
msgstr ""
#: ../../mod/newmember.php:66 ../../include/group.php:239
msgid "Groups"
msgstr ""
#: ../../mod/newmember.php:70
msgid "Group Your Contacts"
msgstr ""
#: ../../mod/newmember.php:70
msgid ""
"Once you have made some friends, organize them into private conversation "
"groups from the sidebar of your Contacts page and then you can interact with"
" each group privately on your Network page."
msgstr "Når du har fått noen venner, så kan du organisere dem i private samtalegrupper i sidefeltet på Kontakt-siden din, og deretter kan du samhandle med hver gruppe privat på din Nettverk-side."
#: ../../mod/newmember.php:73
msgid "Why Aren't My Posts Public?"
msgstr ""
#: ../../mod/newmember.php:73
msgid ""
"Friendica respects your privacy. By default, your posts will only show up to"
" people you've added as friends. For more information, see the help section "
"from the link above."
msgstr ""
#: ../../mod/newmember.php:78
msgid "Getting Help"
msgstr ""
#: ../../mod/newmember.php:82
msgid "Go to the Help Section"
msgstr ""
#: ../../mod/newmember.php:82
msgid ""
"Our <strong>help</strong> pages may be consulted for detail on other program"
" features and resources."
msgstr "Våre <strong>hjelpesider</strong> kan leses for flere detaljer og ressurser om andre egenskaper ved programmet."
#: ../../mod/attach.php:8
msgid "Item not available."
msgstr "Elementet er ikke tilgjengelig."
#: ../../mod/attach.php:20
msgid "Item was not found."
msgstr "Elementet ble ikke funnet."
#: ../../mod/group.php:29
msgid "Group created."
msgstr "Gruppen er laget."
#: ../../mod/group.php:35
msgid "Could not create group."
msgstr "Kunne ikke lage gruppen."
#: ../../mod/group.php:47 ../../mod/group.php:137
msgid "Group not found."
msgstr "Fant ikke gruppen."
#: ../../mod/group.php:60
msgid "Group name changed."
msgstr "Gruppenavnet er endret"
#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:316
msgid "Permission denied"
msgstr "Tilgang nektet"
#: ../../mod/group.php:90
msgid "Create a group of contacts/friends."
msgstr "Lag en gruppe med kontakter/venner."
#: ../../mod/group.php:91 ../../mod/group.php:177
msgid "Group Name: "
msgstr "Gruppenavn:"
#: ../../mod/group.php:110
msgid "Group removed."
msgstr "Gruppe fjernet."
#: ../../mod/group.php:112
msgid "Unable to remove group."
msgstr "Mislyktes med å fjerne gruppe."
#: ../../mod/group.php:176
msgid "Group Editor"
msgstr "Gruppebehandler"
#: ../../mod/group.php:189
msgid "Members"
msgstr "Medlemmer"
#: ../../mod/group.php:221 ../../mod/profperm.php:105
msgid "Click on a contact to add or remove."
msgstr "Klikk på en kontakt for å legge til eller fjerne."
#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
msgid "Invalid profile identifier."
msgstr "Ugyldig profilidentifikator."
#: ../../mod/profperm.php:101
msgid "Profile Visibility Editor"
msgstr "Behandle profilsynlighet"
#: ../../mod/profperm.php:114
msgid "Visible To"
msgstr "Synlig for"
#: ../../mod/profperm.php:130
msgid "All Contacts (with secure profile access)"
msgstr "Alle kontakter (med sikret profiltilgang)"
#: ../../mod/viewcontacts.php:39
msgid "No contacts."
msgstr "Ingen kontakter."
#: ../../mod/viewcontacts.php:76 ../../include/text.php:618
msgid "View Contacts"
msgstr "Vis kontakter"
#: ../../mod/register.php:88 ../../mod/regmod.php:52
#, php-format
msgid "Registration details for %s"
msgstr "Registeringsdetaljer for %s"
#: ../../mod/register.php:96
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr "Vellykket registrering. Vennligst sjekk e-posten din for videre instruksjoner."
#: ../../mod/register.php:100
msgid "Failed to send email message. Here is the message that failed."
msgstr "Mislyktes med å sende e-postmelding. Her er meldingen som mislyktes."
#: ../../mod/register.php:105
msgid "Your registration can not be processed."
msgstr "Din registrering kan ikke behandles."
#: ../../mod/register.php:142
#, php-format
msgid "Registration request at %s"
msgstr "Henvendelse om registrering ved %s"
#: ../../mod/register.php:151
msgid "Your registration is pending approval by the site owner."
msgstr "Din registrering venter på godkjenning fra eier av stedet."
#: ../../mod/register.php:189
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr ""
#: ../../mod/register.php:217
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking 'Register'."
msgstr "Du kan (valgfritt) fylle ut dette skjemaet via OpenID ved å oppgi din OpenID og klikke \"Registrer\"."
#: ../../mod/register.php:218
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr "Hvis du ikke er kjent med OpenID, vennligst la feltet stå tomt, og fyll ut de andre feltene."
#: ../../mod/register.php:219
msgid "Your OpenID (optional): "
msgstr "Din OpenID (valgfritt):"
#: ../../mod/register.php:233
msgid "Include your profile in member directory?"
msgstr "Legg til profilen din i medlemskatalogen?"
#: ../../mod/register.php:255
msgid "Membership on this site is by invitation only."
msgstr "Medlemskap ved dette nettstedet skjer bare på invitasjon."
#: ../../mod/register.php:256
msgid "Your invitation ID: "
msgstr "Din invitasjons-ID:"
#: ../../mod/register.php:259 ../../mod/admin.php:444
msgid "Registration"
msgstr "Registrering"
#: ../../mod/register.php:267
msgid "Your Full Name (e.g. Joe Smith): "
msgstr "Ditt fulle navn (f.eks. Ola Nordmann):"
#: ../../mod/register.php:268
msgid "Your Email Address: "
msgstr "Din e-postadresse:"
#: ../../mod/register.php:269
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be "
"'<strong>nickname@$sitename</strong>'."
msgstr "Velg et kallenavn til profilen. Dette må begynne med en bokstav. Din profiladresse på dette stedet vil bli \"<strong>kallenavn@$sitename</strong>\"."
#: ../../mod/register.php:270
msgid "Choose a nickname: "
msgstr "Velg et kallenavn:"
#: ../../mod/register.php:273 ../../include/nav.php:81 ../../boot.php:887
msgid "Register"
msgstr "Registrer"
#: ../../mod/dirfind.php:26
msgid "People Search"
msgstr "Personsøk"
#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/tagger.php:62
#: ../../addon/facebook/facebook.php:1598
#: ../../addon/communityhome/communityhome.php:158
#: ../../addon/communityhome/communityhome.php:167
#: ../../view/theme/diabook/theme.php:565
#: ../../view/theme/diabook/theme.php:574 ../../include/diaspora.php:1824
#: ../../include/conversation.php:120 ../../include/conversation.php:129
#: ../../include/conversation.php:248 ../../include/conversation.php:257
msgid "status"
msgstr "status"
#: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1602
#: ../../addon/communityhome/communityhome.php:172
#: ../../view/theme/diabook/theme.php:579 ../../include/diaspora.php:1840
#: ../../include/conversation.php:136
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr "%1$s liker %2$s's %3$s"
#: ../../mod/like.php:164 ../../include/conversation.php:139
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr "%1$s liker ikke %2$s's %3$s"
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159
#: ../../mod/admin.php:734 ../../mod/admin.php:933 ../../mod/display.php:29
#: ../../mod/display.php:145 ../../include/items.php:3779
msgid "Item not found."
msgstr "Enheten ble ikke funnet."
#: ../../mod/viewsrc.php:7
msgid "Access denied."
msgstr ""
#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:130
#: ../../include/nav.php:51 ../../boot.php:1679
msgid "Photos"
msgstr "Bilder"
#: ../../mod/fbrowser.php:96
msgid "Files"
msgstr ""
#: ../../mod/regmod.php:61
msgid "Account approved."
msgstr "Konto godkjent."
#: ../../mod/regmod.php:98
#, php-format
msgid "Registration revoked for %s"
msgstr "Registreringen til %s er trukket tilbake"
#: ../../mod/regmod.php:110
msgid "Please login."
msgstr "Vennligst logg inn."
#: ../../mod/item.php:91
msgid "Unable to locate original post."
msgstr "Mislyktes med å lokalisere opprinnelig melding."
#: ../../mod/item.php:275
msgid "Empty post discarded."
msgstr "Tom melding forkastet."
#: ../../mod/item.php:407 ../../mod/wall_upload.php:133
#: ../../mod/wall_upload.php:142 ../../mod/wall_upload.php:149
#: ../../include/message.php:144
msgid "Wall Photos"
msgstr "Veggbilder"
#: ../../mod/item.php:820
msgid "System error. Post not saved."
msgstr "Systemfeil. Meldingen ble ikke lagret."
#: ../../mod/item.php:845
#, php-format
msgid ""
"This message was sent to you by %s, a member of the Friendica social "
"network."
msgstr ""
#: ../../mod/item.php:847
#, php-format
msgid "You may visit them online at %s"
msgstr "Du kan besøke dem online på %s"
#: ../../mod/item.php:848
msgid ""
"Please contact the sender by replying to this post if you do not wish to "
"receive these messages."
msgstr "Vennligst kontakt avsenderen ved å svare på denne meldingen hvis du ikke ønsker å motta disse meldingene."
#: ../../mod/item.php:850
#, php-format
msgid "%s posted an update."
msgstr "%s postet en oppdatering."
#: ../../mod/mood.php:62 ../../include/conversation.php:226
#, php-format
msgid "%1$s is currently %2$s"
msgstr ""
#: ../../mod/mood.php:133
msgid "Mood"
msgstr ""
#: ../../mod/mood.php:134
msgid "Set your current mood and tell your friends"
msgstr ""
#: ../../mod/profile_photo.php:44
msgid "Image uploaded but image cropping failed."
msgstr "Bildet ble lastet opp, men beskjæringen mislyktes."
#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
#, php-format
msgid "Image size reduction [%s] failed."
msgstr "Reduksjon av bildestørrelse [%s] mislyktes."
#: ../../mod/profile_photo.php:118
msgid ""
"Shift-reload the page or clear browser cache if the new photo does not "
"display immediately."
msgstr "Shift-last-siden-på-nytt eller slett mellomlagret i nettleseren hvis det nye bildet ikke vises umiddelbart."
#: ../../mod/profile_photo.php:128
msgid "Unable to process image"
msgstr "Mislyktes med å behandle bilde"
#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:88
#, php-format
msgid "Image exceeds size limit of %d"
msgstr "Bildets størrelse overstiger størrelsesbegrensningen på %d"
#: ../../mod/profile_photo.php:242
msgid "Upload File:"
msgstr "Last opp fil:"
#: ../../mod/profile_photo.php:243
msgid "Select a profile:"
msgstr ""
#: ../../mod/profile_photo.php:245
#: ../../addon/dav/friendica/layout.fnk.php:152
msgid "Upload"
msgstr "Last opp"
#: ../../mod/profile_photo.php:248
msgid "skip this step"
msgstr "hopp over dette steget"
#: ../../mod/profile_photo.php:248
msgid "select a photo from your photo albums"
msgstr "velg et bilde fra dine fotoalbum"
#: ../../mod/profile_photo.php:262
msgid "Crop Image"
msgstr "Beskjær bilde"
#: ../../mod/profile_photo.php:263
msgid "Please adjust the image cropping for optimum viewing."
msgstr "Vennligst juster beskjæringen av bildet for optimal visning."
#: ../../mod/profile_photo.php:265
msgid "Done Editing"
msgstr "Behandling ferdig"
#: ../../mod/profile_photo.php:299
msgid "Image uploaded successfully."
msgstr "Bilde ble lastet opp."
#: ../../mod/hcard.php:10
msgid "No profile"
msgstr "Ingen profil"
#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
msgid "Remove My Account"
msgstr "Slett min konto"
#: ../../mod/removeme.php:46
msgid ""
"This will completely remove your account. Once this has been done it is not "
"recoverable."
msgstr "Dette vil slette din konto fullstendig. Når dette er gjort kan den ikke gjenopprettes."
#: ../../mod/removeme.php:47
msgid "Please enter your password for verification:"
msgstr "Vennligst skriv inn ditt passord for å bekrefte:"
#: ../../mod/message.php:9 ../../include/nav.php:131
msgid "New Message"
msgstr "Ny melding"
#: ../../mod/message.php:63
msgid "Unable to locate contact information."
msgstr "Mislyktes med å finne kontaktinformasjon."
#: ../../mod/message.php:191
msgid "Message deleted."
msgstr "Melding slettet."
#: ../../mod/message.php:221
msgid "Conversation removed."
msgstr "Samtale slettet."
#: ../../mod/message.php:327
msgid "No messages."
msgstr "Ingen meldinger."
#: ../../mod/message.php:334
#, php-format
msgid "Unknown sender - %s"
msgstr ""
#: ../../mod/message.php:337
#, php-format
msgid "You and %s"
msgstr ""
#: ../../mod/message.php:340
#, php-format
msgid "%s and You"
msgstr ""
#: ../../mod/message.php:350 ../../mod/message.php:462
msgid "Delete conversation"
msgstr "Slett samtale"
#: ../../mod/message.php:353
msgid "D, d M Y - g:i A"
msgstr "D, d M Y - g:i A"
#: ../../mod/message.php:356
#, php-format
msgid "%d message"
msgid_plural "%d messages"
msgstr[0] ""
msgstr[1] ""
#: ../../mod/message.php:391
msgid "Message not available."
msgstr "Melding utilgjengelig."
#: ../../mod/message.php:444
msgid "Delete message"
msgstr "Slett melding"
#: ../../mod/message.php:464
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr ""
#: ../../mod/message.php:468
msgid "Send Reply"
msgstr "Send svar"
#: ../../mod/allfriends.php:34
#, php-format
msgid "Friends of %s"
msgstr "Venner av %s"
#: ../../mod/allfriends.php:40
msgid "No friends to display."
msgstr ""
#: ../../mod/admin.php:55
msgid "Theme settings updated."
msgstr ""
#: ../../mod/admin.php:96 ../../mod/admin.php:442
msgid "Site"
msgstr "Nettsted"
#: ../../mod/admin.php:97 ../../mod/admin.php:688 ../../mod/admin.php:701
msgid "Users"
msgstr "Brukere"
#: ../../mod/admin.php:98 ../../mod/admin.php:783 ../../mod/admin.php:825
msgid "Plugins"
msgstr "Tillegg"
#: ../../mod/admin.php:99 ../../mod/admin.php:988 ../../mod/admin.php:1024
msgid "Themes"
msgstr ""
#: ../../mod/admin.php:100
msgid "DB updates"
msgstr ""
#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1111
msgid "Logs"
msgstr "Logger"
#: ../../mod/admin.php:120 ../../include/nav.php:146
msgid "Admin"
msgstr "Administrator"
#: ../../mod/admin.php:121
msgid "Plugin Features"
msgstr ""
#: ../../mod/admin.php:123
msgid "User registrations waiting for confirmation"
msgstr "Brukerregistreringer venter på bekreftelse"
#: ../../mod/admin.php:183 ../../mod/admin.php:669
msgid "Normal Account"
msgstr "Vanlig konto"
#: ../../mod/admin.php:184 ../../mod/admin.php:670
msgid "Soapbox Account"
msgstr "Talerstol-konto"
#: ../../mod/admin.php:185 ../../mod/admin.php:671
msgid "Community/Celebrity Account"
msgstr "Gruppe-/kjendiskonto"
#: ../../mod/admin.php:186 ../../mod/admin.php:672
msgid "Automatic Friend Account"
msgstr "Automatisk vennekonto"
#: ../../mod/admin.php:187
msgid "Blog Account"
msgstr ""
#: ../../mod/admin.php:188
msgid "Private Forum"
msgstr ""
#: ../../mod/admin.php:207
msgid "Message queues"
msgstr ""
#: ../../mod/admin.php:212 ../../mod/admin.php:441 ../../mod/admin.php:687
#: ../../mod/admin.php:782 ../../mod/admin.php:824 ../../mod/admin.php:987
#: ../../mod/admin.php:1023 ../../mod/admin.php:1110
msgid "Administration"
msgstr "Administrasjon"
#: ../../mod/admin.php:213
msgid "Summary"
msgstr "Oppsummering"
#: ../../mod/admin.php:215
msgid "Registered users"
msgstr "Registrerte brukere"
#: ../../mod/admin.php:217
msgid "Pending registrations"
msgstr "Ventende registreringer"
#: ../../mod/admin.php:218
msgid "Version"
msgstr "Versjon"
#: ../../mod/admin.php:220
msgid "Active plugins"
msgstr "Aktive tillegg"
#: ../../mod/admin.php:373
msgid "Site settings updated."
msgstr "Nettstedets innstillinger er oppdatert."
#: ../../mod/admin.php:428
msgid "Closed"
msgstr "Stengt"
#: ../../mod/admin.php:429
msgid "Requires approval"
msgstr "Krever godkjenning"
#: ../../mod/admin.php:430
msgid "Open"
msgstr "Åpen"
#: ../../mod/admin.php:434
msgid "No SSL policy, links will track page SSL state"
msgstr ""
#: ../../mod/admin.php:435
msgid "Force all links to use SSL"
msgstr ""
#: ../../mod/admin.php:436
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr ""
#: ../../mod/admin.php:445
msgid "File upload"
msgstr "Last opp fil"
#: ../../mod/admin.php:446
msgid "Policies"
msgstr "Retningslinjer"
#: ../../mod/admin.php:447
msgid "Advanced"
msgstr "Avansert"
#: ../../mod/admin.php:451 ../../addon/statusnet/statusnet.php:567
msgid "Site name"
msgstr "Nettstedets navn"
#: ../../mod/admin.php:452
msgid "Banner/Logo"
msgstr "Banner/logo"
#: ../../mod/admin.php:453
msgid "System language"
msgstr "Systemspråk"
#: ../../mod/admin.php:454
msgid "System theme"
msgstr "Systemtema"
#: ../../mod/admin.php:454
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
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 "SSL link policy"
msgstr ""
#: ../../mod/admin.php:456
msgid "Determines whether generated links should be forced to use SSL"
msgstr ""
#: ../../mod/admin.php:457
msgid "Maximum image size"
msgstr "Maksimum bildestørrelse"
#: ../../mod/admin.php:457
msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits."
msgstr ""
#: ../../mod/admin.php:458
msgid "Maximum image length"
msgstr ""
#: ../../mod/admin.php:458
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr ""
#: ../../mod/admin.php:459
msgid "JPEG image quality"
msgstr ""
#: ../../mod/admin.php:459
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr ""
#: ../../mod/admin.php:461
msgid "Register policy"
msgstr "Registrer retningslinjer"
#: ../../mod/admin.php:462
msgid "Register text"
msgstr "Registrer tekst"
#: ../../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 "Tillate vennedomener"
#: ../../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 "Tillate e-postdomener"
#: ../../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 "Utesteng publikum"
#: ../../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 "Tving publisering"
#: ../../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 "Global directory update URL"
msgstr "URL for oppdatering av Global-katalog"
#: ../../mod/admin.php:468
msgid ""
"URL to update the global directory. If this is not set, the global directory"
" is completely unavailable to the application."
msgstr ""
#: ../../mod/admin.php:469
msgid "Allow threaded items"
msgstr ""
#: ../../mod/admin.php:469
msgid "Allow infinite level threading for items on this site."
msgstr ""
#: ../../mod/admin.php:470
msgid "Private posts by default for new users"
msgstr ""
#: ../../mod/admin.php:470
msgid ""
"Set default post permissions for all new members to the default privacy "
"group rather than public."
msgstr ""
#: ../../mod/admin.php:472
msgid "Block multiple registrations"
msgstr "Blokker flere registreringer"
#: ../../mod/admin.php:472
msgid "Disallow users to register additional accounts for use as pages."
msgstr ""
#: ../../mod/admin.php:473
msgid "OpenID support"
msgstr "OpenID-støtte"
#: ../../mod/admin.php:473
msgid "OpenID support for registration and logins."
msgstr ""
#: ../../mod/admin.php:474
msgid "Fullname check"
msgstr "Sjekk fullt navn"
#: ../../mod/admin.php:474
msgid ""
"Force users to register with a space between firstname and lastname in Full "
"name, as an antispam measure"
msgstr ""
#: ../../mod/admin.php:475
msgid "UTF-8 Regular expressions"
msgstr "UTF-8 regulære uttrykk"
#: ../../mod/admin.php:475
msgid "Use PHP UTF8 regular expressions"
msgstr ""
#: ../../mod/admin.php:476
msgid "Show Community Page"
msgstr "Vis Felleskap-side"
#: ../../mod/admin.php:476
msgid ""
"Display a Community page showing all recent public postings on this site."
msgstr ""
#: ../../mod/admin.php:477
msgid "Enable OStatus support"
msgstr "Aktiver Ostatus-støtte"
#: ../../mod/admin.php:477
msgid ""
"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
"communications in OStatus are public, so privacy warnings will be "
"occasionally displayed."
msgstr ""
#: ../../mod/admin.php:478
msgid "Enable Diaspora support"
msgstr ""
#: ../../mod/admin.php:478
msgid "Provide built-in Diaspora network compatibility."
msgstr ""
#: ../../mod/admin.php:479
msgid "Only allow Friendica contacts"
msgstr ""
#: ../../mod/admin.php:479
msgid ""
"All contacts must use Friendica protocols. All other built-in communication "
"protocols disabled."
msgstr ""
#: ../../mod/admin.php:480
msgid "Verify SSL"
msgstr "Bekreft SSL"
#: ../../mod/admin.php:480
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you"
" cannot connect (at all) to self-signed SSL sites."
msgstr ""
#: ../../mod/admin.php:481
msgid "Proxy user"
msgstr "Brukernavn til mellomtjener"
#: ../../mod/admin.php:482
msgid "Proxy URL"
msgstr "Mellomtjener URL"
#: ../../mod/admin.php:483
msgid "Network timeout"
msgstr "Tidsavbrudd for nettverk"
#: ../../mod/admin.php:483
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr ""
#: ../../mod/admin.php:484
msgid "Delivery interval"
msgstr ""
#: ../../mod/admin.php:484
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:485
msgid "Poll interval"
msgstr ""
#: ../../mod/admin.php:485
msgid ""
"Delay background polling processes by this many seconds to reduce system "
"load. If 0, use delivery interval."
msgstr ""
#: ../../mod/admin.php:486
msgid "Maximum Load Average"
msgstr ""
#: ../../mod/admin.php:486
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
msgstr ""
#: ../../mod/admin.php:503
msgid "Update has been marked successful"
msgstr ""
#: ../../mod/admin.php:513
#, php-format
msgid "Executing %s failed. Check system logs."
msgstr "Utføring av %s mislyktes. Sjekk systemlogger."
#: ../../mod/admin.php:516
#, php-format
msgid "Update %s was successfully applied."
msgstr ""
#: ../../mod/admin.php:520
#, php-format
msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr ""
#: ../../mod/admin.php:523
#, php-format
msgid "Update function %s could not be found."
msgstr ""
#: ../../mod/admin.php:538
msgid "No failed updates."
msgstr "Ingen mislykkede oppdateringer."
#: ../../mod/admin.php:542
msgid "Failed Updates"
msgstr "Mislykkede oppdateringer"
#: ../../mod/admin.php:543
msgid ""
"This does not include updates prior to 1139, which did not return a status."
msgstr ""
#: ../../mod/admin.php:544
msgid "Mark success (if update was manually applied)"
msgstr ""
#: ../../mod/admin.php:545
msgid "Attempt to execute this update step automatically"
msgstr ""
#: ../../mod/admin.php:570
#, php-format
msgid "%s user blocked/unblocked"
msgid_plural "%s users blocked/unblocked"
msgstr[0] ""
msgstr[1] ""
#: ../../mod/admin.php:577
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] "%s bruker slettet"
msgstr[1] "%s brukere slettet"
#: ../../mod/admin.php:616
#, php-format
msgid "User '%s' deleted"
msgstr "Brukeren '%s' er slettet"
#: ../../mod/admin.php:624
#, php-format
msgid "User '%s' unblocked"
msgstr "Brukeren '%s' er ikke blokkert"
#: ../../mod/admin.php:624
#, php-format
msgid "User '%s' blocked"
msgstr "Brukeren '%s' er blokkert"
#: ../../mod/admin.php:690
msgid "select all"
msgstr "velg alle"
#: ../../mod/admin.php:691
msgid "User registrations waiting for confirm"
msgstr "Brukerregistreringer venter på bekreftelse"
#: ../../mod/admin.php:692
msgid "Request date"
msgstr "Forespørselsdato"
#: ../../mod/admin.php:692 ../../mod/admin.php:702
#: ../../include/contact_selectors.php:79
msgid "Email"
msgstr "E-post"
#: ../../mod/admin.php:693
msgid "No registrations."
msgstr "Ingen registreringer."
#: ../../mod/admin.php:695
msgid "Deny"
msgstr "Nekt"
#: ../../mod/admin.php:699
msgid "Site admin"
msgstr ""
#: ../../mod/admin.php:702
msgid "Register date"
msgstr "Registreringsdato"
#: ../../mod/admin.php:702
msgid "Last login"
msgstr "Siste innlogging"
#: ../../mod/admin.php:702
msgid "Last item"
msgstr "Siste element"
#: ../../mod/admin.php:702
msgid "Account"
msgstr "Konto"
#: ../../mod/admin.php:704
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 disse brukerne har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette disse brukerne?"
#: ../../mod/admin.php:705
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?"
#: ../../mod/admin.php:746
#, php-format
msgid "Plugin %s disabled."
msgstr "Tillegget %s er avskrudd."
#: ../../mod/admin.php:750
#, php-format
msgid "Plugin %s enabled."
msgstr "Tillegget %s er aktivert."
#: ../../mod/admin.php:760 ../../mod/admin.php:958
msgid "Disable"
msgstr "Skru av"
#: ../../mod/admin.php:762 ../../mod/admin.php:960
msgid "Enable"
msgstr "Aktiver"
#: ../../mod/admin.php:784 ../../mod/admin.php:989
msgid "Toggle"
msgstr "Veksle"
#: ../../mod/admin.php:792 ../../mod/admin.php:999
msgid "Author: "
msgstr ""
#: ../../mod/admin.php:793 ../../mod/admin.php:1000
msgid "Maintainer: "
msgstr ""
#: ../../mod/admin.php:922
msgid "No themes found."
msgstr ""
#: ../../mod/admin.php:981
msgid "Screenshot"
msgstr ""
#: ../../mod/admin.php:1029
msgid "[Experimental]"
msgstr ""
#: ../../mod/admin.php:1030
msgid "[Unsupported]"
msgstr ""
#: ../../mod/admin.php:1057
msgid "Log settings updated."
msgstr "Logginnstillinger er oppdatert."
#: ../../mod/admin.php:1113
msgid "Clear"
msgstr "Tøm"
#: ../../mod/admin.php:1119
msgid "Debugging"
msgstr "Feilsøking"
#: ../../mod/admin.php:1120
msgid "Log file"
msgstr "Loggfil"
#: ../../mod/admin.php:1120
msgid ""
"Must be writable by web server. Relative to your Friendica top-level "
"directory."
msgstr ""
#: ../../mod/admin.php:1121
msgid "Log level"
msgstr "Loggnivå"
#: ../../mod/admin.php:1171
msgid "Close"
msgstr "Lukk"
#: ../../mod/admin.php:1177
msgid "FTP Host"
msgstr "FTP-tjener"
#: ../../mod/admin.php:1178
msgid "FTP Path"
msgstr "FTP-sti"
#: ../../mod/admin.php:1179
msgid "FTP User"
msgstr "FTP-bruker"
#: ../../mod/admin.php:1180
msgid "FTP Password"
msgstr "FTP-passord"
#: ../../mod/profile.php:22 ../../boot.php:1074
msgid "Requested profile is not available."
msgstr ""
#: ../../mod/profile.php:152 ../../mod/display.php:77
msgid "Access to this profile has been restricted."
msgstr "Tilgang til denne profilen er blitt begrenset."
#: ../../mod/profile.php:177
msgid "Tips for New Members"
msgstr "Tips til nye medlemmer"
#: ../../mod/ping.php:238
msgid "{0} wants to be your friend"
msgstr "{0} ønsker å bli din venn"
#: ../../mod/ping.php:243
msgid "{0} sent you a message"
msgstr "{0} sendte deg en melding"
#: ../../mod/ping.php:248
msgid "{0} requested registration"
msgstr "{0} forespurte om registrering"
#: ../../mod/ping.php:254
#, php-format
msgid "{0} commented %s's post"
msgstr "{0} kommenterte %s sitt innlegg"
#: ../../mod/ping.php:259
#, php-format
msgid "{0} liked %s's post"
msgstr "{0} likte %s sitt innlegg"
#: ../../mod/ping.php:264
#, php-format
msgid "{0} disliked %s's post"
msgstr "{0} likte ikke %s sitt innlegg"
#: ../../mod/ping.php:269
#, php-format
msgid "{0} is now friends with %s"
msgstr "{0} er nå venner med %s"
#: ../../mod/ping.php:274
msgid "{0} posted"
msgstr "{0} postet et innlegg"
#: ../../mod/ping.php:279
#, php-format
msgid "{0} tagged %s's post with #%s"
msgstr "{0} merket %s sitt innlegg med #%s"
#: ../../mod/ping.php:285
msgid "{0} mentioned you in a post"
msgstr ""
#: ../../mod/nogroup.php:58
msgid "Contacts who are not members of a group"
msgstr ""
#: ../../mod/openid.php:24
msgid "OpenID protocol error. No ID returned."
msgstr ""
#: ../../mod/openid.php:53
msgid ""
"Account not found and OpenID registration is not permitted on this site."
msgstr ""
#: ../../mod/openid.php:93 ../../include/auth.php:98
#: ../../include/auth.php:161
msgid "Login failed."
msgstr "Innlogging mislyktes."
#: ../../mod/follow.php:27
msgid "Contact added"
msgstr ""
#: ../../mod/common.php:42
msgid "Common Friends"
msgstr ""
#: ../../mod/common.php:78
msgid "No contacts in common."
msgstr ""
#: ../../mod/share.php:28
msgid "link"
msgstr ""
#: ../../mod/display.php:138
msgid "Item has been removed."
msgstr "Elementet har blitt slettet."
#: ../../mod/apps.php:4
msgid "Applications"
msgstr "Programmer"
#: ../../mod/apps.php:7
msgid "No installed applications."
msgstr "Ingen installerte programmer."
#: ../../mod/search.php:85 ../../include/text.php:678
#: ../../include/text.php:679 ../../include/nav.php:91
msgid "Search"
msgstr "Søk"
#: ../../mod/profiles.php:21 ../../mod/profiles.php:423
#: ../../mod/profiles.php:537 ../../mod/dfrn_confirm.php:62
msgid "Profile not found."
msgstr "Fant ikke profilen."
#: ../../mod/profiles.php:31
msgid "Profile Name is required."
msgstr "Profilnavn er påkrevet."
#: ../../mod/profiles.php:160
msgid "Marital Status"
msgstr ""
#: ../../mod/profiles.php:164
msgid "Romantic Partner"
msgstr ""
#: ../../mod/profiles.php:168
msgid "Likes"
msgstr ""
#: ../../mod/profiles.php:172
msgid "Dislikes"
msgstr ""
#: ../../mod/profiles.php:176
msgid "Work/Employment"
msgstr ""
#: ../../mod/profiles.php:179
msgid "Religion"
msgstr ""
#: ../../mod/profiles.php:183
msgid "Political Views"
msgstr ""
#: ../../mod/profiles.php:187
msgid "Gender"
msgstr ""
#: ../../mod/profiles.php:191
msgid "Sexual Preference"
msgstr ""
#: ../../mod/profiles.php:195
msgid "Homepage"
msgstr ""
#: ../../mod/profiles.php:199
msgid "Interests"
msgstr ""
#: ../../mod/profiles.php:203
msgid "Address"
msgstr ""
#: ../../mod/profiles.php:210 ../../addon/dav/common/wdcal_edit.inc.php:183
msgid "Location"
msgstr ""
#: ../../mod/profiles.php:293
msgid "Profile updated."
msgstr "Profil oppdatert."
#: ../../mod/profiles.php:360
msgid " and "
msgstr ""
#: ../../mod/profiles.php:368
msgid "public profile"
msgstr ""
#: ../../mod/profiles.php:371
#, php-format
msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
msgstr ""
#: ../../mod/profiles.php:372
#, php-format
msgid " - Visit %1$s's %2$s"
msgstr ""
#: ../../mod/profiles.php:375
#, php-format
msgid "%1$s has an updated %2$s, changing %3$s."
msgstr ""
#: ../../mod/profiles.php:442
msgid "Profile deleted."
msgstr "Profil slettet."
#: ../../mod/profiles.php:460 ../../mod/profiles.php:494
msgid "Profile-"
msgstr "Profil-"
#: ../../mod/profiles.php:479 ../../mod/profiles.php:521
msgid "New profile created."
msgstr "Ny profil opprettet."
#: ../../mod/profiles.php:500
msgid "Profile unavailable to clone."
msgstr "Profilen er utilgjengelig for kloning."
#: ../../mod/profiles.php:562
msgid "Hide your contact/friend list from viewers of this profile?"
msgstr "Skjul kontakten/vennen din fra folk som kan se denne profilen?"
#: ../../mod/profiles.php:582
msgid "Edit Profile Details"
msgstr "Endre profildetaljer"
#: ../../mod/profiles.php:584
msgid "View this profile"
msgstr "Vis denne profilen"
#: ../../mod/profiles.php:585
msgid "Create a new profile using these settings"
msgstr "Opprett en ny profil med disse innstillingene"
#: ../../mod/profiles.php:586
msgid "Clone this profile"
msgstr "Klon denne profilen"
#: ../../mod/profiles.php:587
msgid "Delete this profile"
msgstr "Slette denne profilen"
#: ../../mod/profiles.php:588
msgid "Profile Name:"
msgstr "Profilnavn:"
#: ../../mod/profiles.php:589
msgid "Your Full Name:"
msgstr "Ditt fulle navn:"
#: ../../mod/profiles.php:590
msgid "Title/Description:"
msgstr "Tittel/Beskrivelse:"
#: ../../mod/profiles.php:591
msgid "Your Gender:"
msgstr "Ditt kjønn:"
#: ../../mod/profiles.php:592
#, php-format
msgid "Birthday (%s):"
msgstr "Fødselsdag (%s):"
#: ../../mod/profiles.php:593
msgid "Street Address:"
msgstr "Gateadresse:"
#: ../../mod/profiles.php:594
msgid "Locality/City:"
msgstr "Plassering/by:"
#: ../../mod/profiles.php:595
msgid "Postal/Zip Code:"
msgstr "Postnummer:"
#: ../../mod/profiles.php:596
msgid "Country:"
msgstr "Land:"
#: ../../mod/profiles.php:597
msgid "Region/State:"
msgstr "Region/fylke:"
#: ../../mod/profiles.php:598
msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
msgstr "<span class=\"heart\">&hearts;</span> Sivilstand:"
#: ../../mod/profiles.php:599
msgid "Who: (if applicable)"
msgstr "Hvem: (hvis gjeldende)"
#: ../../mod/profiles.php:600
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr "Eksempler: kari123, Kari Nordmann, kari@example.com"
#: ../../mod/profiles.php:601
msgid "Since [date]:"
msgstr ""
#: ../../mod/profiles.php:602 ../../include/profile_advanced.php:46
msgid "Sexual Preference:"
msgstr "Seksuell orientering:"
#: ../../mod/profiles.php:603
msgid "Homepage URL:"
msgstr "Hjemmeside URL:"
#: ../../mod/profiles.php:604 ../../include/profile_advanced.php:50
msgid "Hometown:"
msgstr ""
#: ../../mod/profiles.php:605 ../../include/profile_advanced.php:54
msgid "Political Views:"
msgstr "Politisk ståsted:"
#: ../../mod/profiles.php:606
msgid "Religious Views:"
msgstr "Religiøst ståsted:"
#: ../../mod/profiles.php:607
msgid "Public Keywords:"
msgstr "Offentlige nøkkelord:"
#: ../../mod/profiles.php:608
msgid "Private Keywords:"
msgstr "Private nøkkelord:"
#: ../../mod/profiles.php:609 ../../include/profile_advanced.php:62
msgid "Likes:"
msgstr ""
#: ../../mod/profiles.php:610 ../../include/profile_advanced.php:64
msgid "Dislikes:"
msgstr ""
#: ../../mod/profiles.php:611
msgid "Example: fishing photography software"
msgstr "Eksempel: fisking fotografering programvare"
#: ../../mod/profiles.php:612
msgid "(Used for suggesting potential friends, can be seen by others)"
msgstr "(Brukes for å foreslå mulige venner, kan ses av andre)"
#: ../../mod/profiles.php:613
msgid "(Used for searching profiles, never shown to others)"
msgstr "(Brukes for å søke i profiler, vises aldri til andre)"
#: ../../mod/profiles.php:614
msgid "Tell us about yourself..."
msgstr "Fortell oss om deg selv..."
#: ../../mod/profiles.php:615
msgid "Hobbies/Interests"
msgstr "Hobbier/interesser"
#: ../../mod/profiles.php:616
msgid "Contact information and Social Networks"
msgstr "Kontaktinformasjon og sosiale nettverk"
#: ../../mod/profiles.php:617
msgid "Musical interests"
msgstr "Musikksmak"
#: ../../mod/profiles.php:618
msgid "Books, literature"
msgstr "Bøker, litteratur"
#: ../../mod/profiles.php:619
msgid "Television"
msgstr "TV"
#: ../../mod/profiles.php:620
msgid "Film/dance/culture/entertainment"
msgstr "Film/dans/kultur/underholdning"
#: ../../mod/profiles.php:621
msgid "Love/romance"
msgstr "Kjærlighet/romanse"
#: ../../mod/profiles.php:622
msgid "Work/employment"
msgstr "Arbeid/ansatt hos"
#: ../../mod/profiles.php:623
msgid "School/education"
msgstr "Skole/utdanning"
#: ../../mod/profiles.php:628
msgid ""
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
"be visible to anybody using the internet."
msgstr "Dette er din <strong>offentlige</strong> profil.<br>Den <strong>kan</strong> ses av alle på Internet."
#: ../../mod/profiles.php:638 ../../mod/directory.php:111
msgid "Age: "
msgstr "Alder:"
#: ../../mod/profiles.php:677
msgid "Edit/Manage Profiles"
msgstr "Rediger/Behandle profiler"
#: ../../mod/profiles.php:678 ../../boot.php:1192
msgid "Change profile photo"
msgstr "Endre profilbilde"
#: ../../mod/profiles.php:679 ../../boot.php:1193
msgid "Create New Profile"
msgstr "Lag ny profil"
#: ../../mod/profiles.php:690 ../../boot.php:1203
msgid "Profile Image"
msgstr "Profilbilde"
#: ../../mod/profiles.php:692 ../../boot.php:1206
msgid "visible to everybody"
msgstr "synlig for alle"
#: ../../mod/profiles.php:693 ../../boot.php:1207
msgid "Edit visibility"
msgstr "Endre synlighet"
#: ../../mod/filer.php:29 ../../include/conversation.php:837
#: ../../include/conversation.php:854
msgid "Save to Folder:"
msgstr ""
#: ../../mod/filer.php:29
msgid "- select -"
msgstr ""
#: ../../mod/tagger.php:95 ../../include/conversation.php:265
#, php-format
msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr ""
#: ../../mod/delegate.php:95
msgid "No potential page delegates located."
msgstr ""
#: ../../mod/delegate.php:121
msgid "Delegate Page Management"
msgstr "Deleger sidebehandling"
#: ../../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 "Delegater kan behandle alle sider ved denne kontoen/siden, bortsett fra grunnleggende kontoinnstillinger. Vennligst ikke deleger din personlige konto til noen som du ikke stoler fullt og fast på."
#: ../../mod/delegate.php:124
msgid "Existing Page Managers"
msgstr "Eksisterende sidebehandlere"
#: ../../mod/delegate.php:126
msgid "Existing Page Delegates"
msgstr ""
#: ../../mod/delegate.php:128
msgid "Potential Delegates"
msgstr ""
#: ../../mod/delegate.php:131
msgid "Add"
msgstr ""
#: ../../mod/delegate.php:132
msgid "No entries."
msgstr ""
#: ../../mod/babel.php:17
msgid "Source (bbcode) text:"
msgstr ""
#: ../../mod/babel.php:23
msgid "Source (Diaspora) text to convert to BBcode:"
msgstr ""
#: ../../mod/babel.php:31
msgid "Source input: "
msgstr ""
#: ../../mod/babel.php:35
msgid "bb2html: "
msgstr ""
#: ../../mod/babel.php:39
msgid "bb2html2bb: "
msgstr ""
#: ../../mod/babel.php:43
msgid "bb2md: "
msgstr ""
#: ../../mod/babel.php:47
msgid "bb2md2html: "
msgstr ""
#: ../../mod/babel.php:51
msgid "bb2dia2bb: "
msgstr ""
#: ../../mod/babel.php:55
msgid "bb2md2html2bb: "
msgstr ""
#: ../../mod/babel.php:65
msgid "Source input (Diaspora format): "
msgstr ""
#: ../../mod/babel.php:70
msgid "diaspora2bb: "
msgstr ""
#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:626
#: ../../include/contact_widgets.php:34
msgid "Friend Suggestions"
msgstr "Venneforslag"
#: ../../mod/suggest.php:44
msgid ""
"No suggestions available. If this is a new site, please try again in 24 "
"hours."
msgstr ""
#: ../../mod/suggest.php:61
msgid "Ignore/Hide"
msgstr "Ignorér/Skjul"
#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:624
msgid "Global Directory"
msgstr "Global katalog"
#: ../../mod/directory.php:57
msgid "Find on this site"
msgstr ""
#: ../../mod/directory.php:60
msgid "Site Directory"
msgstr "Stedets katalog"
#: ../../mod/directory.php:114
msgid "Gender: "
msgstr "Kjønn:"
#: ../../mod/directory.php:136 ../../include/profile_advanced.php:17
#: ../../boot.php:1228
msgid "Gender:"
msgstr "Kjønn:"
#: ../../mod/directory.php:138 ../../include/profile_advanced.php:37
#: ../../boot.php:1231
msgid "Status:"
msgstr "Status:"
#: ../../mod/directory.php:140 ../../include/profile_advanced.php:48
#: ../../boot.php:1233
msgid "Homepage:"
msgstr "Hjemmeside:"
#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
msgid "About:"
msgstr "Om:"
#: ../../mod/directory.php:180
msgid "No entries (some entries may be hidden)."
msgstr "Ingen oppføringer (noen oppføringer kan være skjulte)."
#: ../../mod/invite.php:35
#, php-format
msgid "%s : Not a valid email address."
msgstr "%s: Ugyldig e-postadresse."
#: ../../mod/invite.php:59
msgid "Please join us on Friendica"
msgstr ""
#: ../../mod/invite.php:69
#, php-format
msgid "%s : Message delivery failed."
msgstr "%s: Mislyktes med å levere meldingen."
#: ../../mod/invite.php:73
#, php-format
msgid "%d message sent."
msgid_plural "%d messages sent."
msgstr[0] "one: %d melding sendt."
msgstr[1] "other: %d meldinger sendt."
#: ../../mod/invite.php:92
msgid "You have no more invitations available"
msgstr "Du har ingen flere tilgjengelige invitasjoner"
#: ../../mod/invite.php:100
#, php-format
msgid ""
"Visit %s for a list of public sites that you can join. Friendica members on "
"other sites can all connect with each other, as well as with members of many"
" other social networks."
msgstr ""
#: ../../mod/invite.php:102
#, php-format
msgid ""
"To accept this invitation, please visit and register at %s or any other "
"public Friendica website."
msgstr ""
#: ../../mod/invite.php:103
#, php-format
msgid ""
"Friendica sites all inter-connect to create a huge privacy-enhanced social "
"web that is owned and controlled by its members. They can also connect with "
"many traditional social networks. See %s for a list of alternate Friendica "
"sites you can join."
msgstr ""
#: ../../mod/invite.php:106
msgid ""
"Our apologies. This system is not currently configured to connect with other"
" public sites or invite members."
msgstr "Vi beklager. Dette systemet er for øyeblikket ikke konfigurert for forbindelser med andre offentlige nettsteder eller å invitere medlemmer."
#: ../../mod/invite.php:111
msgid "Send invitations"
msgstr "Send invitasjoner"
#: ../../mod/invite.php:112
msgid "Enter email addresses, one per line:"
msgstr "Skriv e-postadresser, en per linje:"
#: ../../mod/invite.php:114
msgid ""
"You are cordially invited to join me and other close friends on Friendica - "
"and help us to create a better social web."
msgstr ""
#: ../../mod/invite.php:116
msgid "You will need to supply this invitation code: $invite_code"
msgstr "Du må oppgi denne invitasjonskoden: $invite_code"
#: ../../mod/invite.php:116
msgid ""
"Once you have registered, please connect with me via my profile page at:"
msgstr "Når du har registrert, vennligst kontakt meg via min profilside på:"
#: ../../mod/invite.php:118
msgid ""
"For more information about the Friendica project and why we feel it is "
"important, please visit http://friendica.com"
msgstr ""
#: ../../mod/dfrn_confirm.php:119
msgid ""
"This may occasionally happen if contact was requested by both persons and it"
" has already been approved."
msgstr ""
#: ../../mod/dfrn_confirm.php:237
msgid "Response from remote site was not understood."
msgstr "Forstod ikke svaret fra det andre stedet."
#: ../../mod/dfrn_confirm.php:246
msgid "Unexpected response from remote site: "
msgstr "Uventet svar fra det andre stedet:"
#: ../../mod/dfrn_confirm.php:254
msgid "Confirmation completed successfully."
msgstr "Sending av bekreftelse var vellykket. "
#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
#: ../../mod/dfrn_confirm.php:277
msgid "Remote site reported: "
msgstr "Det andre stedet rapporterte:"
#: ../../mod/dfrn_confirm.php:268
msgid "Temporary failure. Please wait and try again."
msgstr "Midlertidig feil. Vennligst vent og prøv igjen."
#: ../../mod/dfrn_confirm.php:275
msgid "Introduction failed or was revoked."
msgstr "Introduksjon mislyktes eller ble trukket tilbake."
#: ../../mod/dfrn_confirm.php:420
msgid "Unable to set contact photo."
msgstr "Fikk ikke satt kontaktbilde."
#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:608
#: ../../include/conversation.php:171
#, php-format
msgid "%1$s is now friends with %2$s"
msgstr "%1$s er nå venner med %2$s"
#: ../../mod/dfrn_confirm.php:562
#, php-format
msgid "No user record found for '%s' "
msgstr "Ingen brukerregistrering funnet for '%s'"
#: ../../mod/dfrn_confirm.php:572
msgid "Our site encryption key is apparently messed up."
msgstr "Krypteringsnøkkelen til nettstedet vårt ser ut til å være ødelagt."
#: ../../mod/dfrn_confirm.php:583
msgid "Empty site URL was provided or URL could not be decrypted by us."
msgstr "En tom nettsteds-URL ble oppgitt eller URL-en kunne ikke dekrypteres av oss."
#: ../../mod/dfrn_confirm.php:604
msgid "Contact record was not found for you on our site."
msgstr "Kontaktinformasjon om deg ble ikke funnet på vårt nettsted."
#: ../../mod/dfrn_confirm.php:618
#, php-format
msgid "Site public key not available in contact record for URL %s."
msgstr ""
#: ../../mod/dfrn_confirm.php:638
msgid ""
"The ID provided by your system is a duplicate on our system. It should work "
"if you try again."
msgstr "ID-en som ble oppgitt av ditt system har en duplikat i vårt system. Det bør virke hvis du prøver igjen."
#: ../../mod/dfrn_confirm.php:649
msgid "Unable to set your contact credentials on our system."
msgstr "Får ikke lagret din kontaktlegitamasjon på vårt system."
#: ../../mod/dfrn_confirm.php:716
msgid "Unable to update your contact profile details on our system"
msgstr "Får ikke oppdatert kontaktdetaljene dine på vårt system."
#: ../../mod/dfrn_confirm.php:750
#, php-format
msgid "Connection accepted at %s"
msgstr "Tilkobling godtatt på %s"
#: ../../mod/dfrn_confirm.php:799
#, php-format
msgid "%1$s has joined %2$s"
msgstr ""
#: ../../addon/fromgplus/fromgplus.php:29
msgid "Google+ Import Settings"
msgstr ""
#: ../../addon/fromgplus/fromgplus.php:32
msgid "Enable Google+ Import"
msgstr ""
#: ../../addon/fromgplus/fromgplus.php:35
msgid "Google Account ID"
msgstr ""
#: ../../addon/fromgplus/fromgplus.php:55
msgid "Google+ Import Settings saved."
msgstr ""
#: ../../addon/facebook/facebook.php:523
msgid "Facebook disabled"
msgstr "Facebook avskrudd"
#: ../../addon/facebook/facebook.php:528
msgid "Updating contacts"
msgstr "Oppdaterer kontakter"
#: ../../addon/facebook/facebook.php:551 ../../addon/fbpost/fbpost.php:192
msgid "Facebook API key is missing."
msgstr "Facebook API-nøkkel mangler."
#: ../../addon/facebook/facebook.php:558
msgid "Facebook Connect"
msgstr "Facebook-kobling"
#: ../../addon/facebook/facebook.php:564
msgid "Install Facebook connector for this account."
msgstr "Legg til Facebook-kobling for denne kontoen."
#: ../../addon/facebook/facebook.php:571
msgid "Remove Facebook connector"
msgstr "Fjern Facebook-kobling"
#: ../../addon/facebook/facebook.php:576 ../../addon/fbpost/fbpost.php:217
msgid ""
"Re-authenticate [This is necessary whenever your Facebook password is "
"changed.]"
msgstr ""
#: ../../addon/facebook/facebook.php:583 ../../addon/fbpost/fbpost.php:224
msgid "Post to Facebook by default"
msgstr "Post til Facebook som standard"
#: ../../addon/facebook/facebook.php:589
msgid ""
"Facebook friend linking has been disabled on this site. The following "
"settings will have no effect."
msgstr ""
#: ../../addon/facebook/facebook.php:593
msgid ""
"Facebook friend linking has been disabled on this site. If you disable it, "
"you will be unable to re-enable it."
msgstr ""
#: ../../addon/facebook/facebook.php:596
msgid "Link all your Facebook friends and conversations on this website"
msgstr ""
#: ../../addon/facebook/facebook.php:598
msgid ""
"Facebook conversations consist of your <em>profile wall</em> and your friend"
" <em>stream</em>."
msgstr ""
#: ../../addon/facebook/facebook.php:599
msgid "On this website, your Facebook friend stream is only visible to you."
msgstr ""
#: ../../addon/facebook/facebook.php:600
msgid ""
"The following settings determine the privacy of your Facebook profile wall "
"on this website."
msgstr ""
#: ../../addon/facebook/facebook.php:604
msgid ""
"On this website your Facebook profile wall conversations will only be "
"visible to you"
msgstr ""
#: ../../addon/facebook/facebook.php:609
msgid "Do not import your Facebook profile wall conversations"
msgstr ""
#: ../../addon/facebook/facebook.php:611
msgid ""
"If you choose to link conversations and leave both of these boxes unchecked,"
" your Facebook profile wall will be merged with your profile wall on this "
"website and your privacy settings on this website will be used to determine "
"who may see the conversations."
msgstr ""
#: ../../addon/facebook/facebook.php:616
msgid "Comma separated applications to ignore"
msgstr ""
#: ../../addon/facebook/facebook.php:700
msgid "Problems with Facebook Real-Time Updates"
msgstr ""
#: ../../addon/facebook/facebook.php:729
msgid "Facebook Connector Settings"
msgstr "Innstillinger for Facebook-kobling"
#: ../../addon/facebook/facebook.php:744 ../../addon/fbpost/fbpost.php:255
msgid "Facebook API Key"
msgstr ""
#: ../../addon/facebook/facebook.php:754 ../../addon/fbpost/fbpost.php:262
msgid ""
"Error: it appears that you have specified the App-ID and -Secret in your "
".htconfig.php file. As long as they are specified there, they cannot be set "
"using this form.<br><br>"
msgstr ""
#: ../../addon/facebook/facebook.php:759
msgid ""
"Error: the given API Key seems to be incorrect (the application access token"
" could not be retrieved)."
msgstr ""
#: ../../addon/facebook/facebook.php:761
msgid "The given API Key seems to work correctly."
msgstr ""
#: ../../addon/facebook/facebook.php:763
msgid ""
"The correctness of the API Key could not be detected. Something strange's "
"going on."
msgstr ""
#: ../../addon/facebook/facebook.php:766 ../../addon/fbpost/fbpost.php:264
msgid "App-ID / API-Key"
msgstr ""
#: ../../addon/facebook/facebook.php:767 ../../addon/fbpost/fbpost.php:265
msgid "Application secret"
msgstr ""
#: ../../addon/facebook/facebook.php:768
#, php-format
msgid "Polling Interval in minutes (minimum %1$s minutes)"
msgstr ""
#: ../../addon/facebook/facebook.php:769
msgid ""
"Synchronize comments (no comments on Facebook are missed, at the cost of "
"increased system load)"
msgstr ""
#: ../../addon/facebook/facebook.php:773
msgid "Real-Time Updates"
msgstr ""
#: ../../addon/facebook/facebook.php:777
msgid "Real-Time Updates are activated."
msgstr ""
#: ../../addon/facebook/facebook.php:778
msgid "Deactivate Real-Time Updates"
msgstr ""
#: ../../addon/facebook/facebook.php:780
msgid "Real-Time Updates not activated."
msgstr ""
#: ../../addon/facebook/facebook.php:780
msgid "Activate Real-Time Updates"
msgstr ""
#: ../../addon/facebook/facebook.php:799 ../../addon/fbpost/fbpost.php:282
#: ../../addon/dav/friendica/layout.fnk.php:361
msgid "The new values have been saved."
msgstr ""
#: ../../addon/facebook/facebook.php:823 ../../addon/fbpost/fbpost.php:301
msgid "Post to Facebook"
msgstr "Post til Facebook"
#: ../../addon/facebook/facebook.php:921 ../../addon/fbpost/fbpost.php:399
msgid ""
"Post to Facebook cancelled because of multi-network access permission "
"conflict."
msgstr "Posting til Facebook avbrutt på grunn av konflikt med tilgangsrettigheter i multi-nettverk."
#: ../../addon/facebook/facebook.php:1149 ../../addon/fbpost/fbpost.php:610
msgid "View on Friendica"
msgstr ""
#: ../../addon/facebook/facebook.php:1182 ../../addon/fbpost/fbpost.php:643
msgid "Facebook post failed. Queued for retry."
msgstr "Facebook-innlegg mislyktes. Innlegget er lagt i kø for å prøve igjen."
#: ../../addon/facebook/facebook.php:1222 ../../addon/fbpost/fbpost.php:683
msgid "Your Facebook connection became invalid. Please Re-authenticate."
msgstr ""
#: ../../addon/facebook/facebook.php:1223 ../../addon/fbpost/fbpost.php:684
msgid "Facebook connection became invalid"
msgstr ""
#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:685
#, php-format
msgid ""
"Hi %1$s,\n"
"\n"
"The connection between your accounts on %2$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3$sre-authenticate the Facebook-connector%4$s."
msgstr ""
#: ../../addon/snautofollow/snautofollow.php:32
msgid "StatusNet AutoFollow settings updated."
msgstr ""
#: ../../addon/snautofollow/snautofollow.php:56
msgid "StatusNet AutoFollow Settings"
msgstr ""
#: ../../addon/snautofollow/snautofollow.php:58
msgid "Automatically follow any StatusNet followers/mentioners"
msgstr ""
#: ../../addon/bg/bg.php:51
msgid "Bg settings updated."
msgstr ""
#: ../../addon/bg/bg.php:82
msgid "Bg Settings"
msgstr ""
#: ../../addon/bg/bg.php:84 ../../addon/numfriends/numfriends.php:79
msgid "How many contacts to display on profile sidebar"
msgstr ""
#: ../../addon/privacy_image_cache/privacy_image_cache.php:260
msgid "Lifetime of the cache (in hours)"
msgstr ""
#: ../../addon/privacy_image_cache/privacy_image_cache.php:265
msgid "Cache Statistics"
msgstr ""
#: ../../addon/privacy_image_cache/privacy_image_cache.php:268
msgid "Number of items"
msgstr ""
#: ../../addon/privacy_image_cache/privacy_image_cache.php:270
msgid "Size of the cache"
msgstr ""
#: ../../addon/privacy_image_cache/privacy_image_cache.php:272
msgid "Delete the whole cache"
msgstr ""
#: ../../addon/fbpost/fbpost.php:172
msgid "Facebook Post disabled"
msgstr ""
#: ../../addon/fbpost/fbpost.php:199
msgid "Facebook Post"
msgstr ""
#: ../../addon/fbpost/fbpost.php:205
msgid "Install Facebook Post connector for this account."
msgstr ""
#: ../../addon/fbpost/fbpost.php:212
msgid "Remove Facebook Post connector"
msgstr ""
#: ../../addon/fbpost/fbpost.php:240
msgid "Facebook Post Settings"
msgstr ""
#: ../../addon/widgets/widget_like.php:58
#, php-format
msgid "%d person likes this"
msgid_plural "%d people like this"
msgstr[0] ""
msgstr[1] ""
#: ../../addon/widgets/widget_like.php:61
#, php-format
msgid "%d person doesn't like this"
msgid_plural "%d people don't like this"
msgstr[0] ""
msgstr[1] ""
#: ../../addon/widgets/widget_friendheader.php:40
msgid "Get added to this list!"
msgstr ""
#: ../../addon/widgets/widgets.php:56
msgid "Generate new key"
msgstr "Lag ny nøkkel"
#: ../../addon/widgets/widgets.php:59
msgid "Widgets key"
msgstr "Nøkkel til småprogrammer"
#: ../../addon/widgets/widgets.php:61
msgid "Widgets available"
msgstr "Småprogrammer er tilgjengelige"
#: ../../addon/widgets/widget_friends.php:40
msgid "Connect on Friendica!"
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 "do something obscenely biological to"
msgstr ""
#: ../../addon/morepokes/morepokes.php:21
msgid "did something obscenely biological to"
msgstr ""
#: ../../addon/morepokes/morepokes.php:22
msgid "point out the poke feature to"
msgstr ""
#: ../../addon/morepokes/morepokes.php:22
msgid "pointed out the poke feature to"
msgstr ""
#: ../../addon/morepokes/morepokes.php:23
msgid "declare undying love for"
msgstr ""
#: ../../addon/morepokes/morepokes.php:23
msgid "declared undying love for"
msgstr ""
#: ../../addon/morepokes/morepokes.php:24
msgid "patent"
msgstr ""
#: ../../addon/morepokes/morepokes.php:24
msgid "patented"
msgstr ""
#: ../../addon/morepokes/morepokes.php:25
msgid "stroke beard"
msgstr ""
#: ../../addon/morepokes/morepokes.php:25
msgid "stroked their beard at"
msgstr ""
#: ../../addon/morepokes/morepokes.php:26
msgid ""
"bemoan the declining standards of modern secondary and tertiary education to"
msgstr ""
#: ../../addon/morepokes/morepokes.php:26
msgid ""
"bemoans the declining standards of modern secondary and tertiary education "
"to"
msgstr ""
#: ../../addon/morepokes/morepokes.php:27
msgid "hug"
msgstr ""
#: ../../addon/morepokes/morepokes.php:27
msgid "hugged"
msgstr ""
#: ../../addon/morepokes/morepokes.php:28
msgid "kiss"
msgstr ""
#: ../../addon/morepokes/morepokes.php:28
msgid "kissed"
msgstr ""
#: ../../addon/morepokes/morepokes.php:29
msgid "raise eyebrows at"
msgstr ""
#: ../../addon/morepokes/morepokes.php:29
msgid "raised their eyebrows at"
msgstr ""
#: ../../addon/morepokes/morepokes.php:30
msgid "insult"
msgstr ""
#: ../../addon/morepokes/morepokes.php:30
msgid "insulted"
msgstr ""
#: ../../addon/morepokes/morepokes.php:31
msgid "praise"
msgstr ""
#: ../../addon/morepokes/morepokes.php:31
msgid "praised"
msgstr ""
#: ../../addon/morepokes/morepokes.php:32
msgid "be dubious of"
msgstr ""
#: ../../addon/morepokes/morepokes.php:32
msgid "was dubious of"
msgstr ""
#: ../../addon/morepokes/morepokes.php:33
msgid "eat"
msgstr ""
#: ../../addon/morepokes/morepokes.php:33
msgid "ate"
msgstr ""
#: ../../addon/morepokes/morepokes.php:34
msgid "giggle and fawn at"
msgstr ""
#: ../../addon/morepokes/morepokes.php:34
msgid "giggled and fawned at"
msgstr ""
#: ../../addon/morepokes/morepokes.php:35
msgid "doubt"
msgstr ""
#: ../../addon/morepokes/morepokes.php:35
msgid "doubted"
msgstr ""
#: ../../addon/morepokes/morepokes.php:36
msgid "glare"
msgstr ""
#: ../../addon/morepokes/morepokes.php:36
msgid "glared at"
msgstr ""
#: ../../addon/yourls/yourls.php:55
msgid "YourLS Settings"
msgstr ""
#: ../../addon/yourls/yourls.php:57
msgid "URL: http://"
msgstr ""
#: ../../addon/yourls/yourls.php:62
msgid "Username:"
msgstr ""
#: ../../addon/yourls/yourls.php:67
msgid "Password:"
msgstr ""
#: ../../addon/yourls/yourls.php:72
msgid "Use SSL "
msgstr ""
#: ../../addon/yourls/yourls.php:92
msgid "yourls Settings saved."
msgstr ""
#: ../../addon/ljpost/ljpost.php:39
msgid "Post to LiveJournal"
msgstr ""
#: ../../addon/ljpost/ljpost.php:70
msgid "LiveJournal Post Settings"
msgstr ""
#: ../../addon/ljpost/ljpost.php:72
msgid "Enable LiveJournal Post Plugin"
msgstr ""
#: ../../addon/ljpost/ljpost.php:77
msgid "LiveJournal username"
msgstr ""
#: ../../addon/ljpost/ljpost.php:82
msgid "LiveJournal password"
msgstr ""
#: ../../addon/ljpost/ljpost.php:87
msgid "Post to LiveJournal by default"
msgstr ""
#: ../../addon/nsfw/nsfw.php:78
msgid "Not Safe For Work (General Purpose Content Filter) settings"
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:81
msgid "Enable Content filter"
msgstr ""
#: ../../addon/nsfw/nsfw.php:84
msgid "Comma separated list of keywords to hide"
msgstr ""
#: ../../addon/nsfw/nsfw.php:89
msgid "Use /expression/ to provide regular expressions"
msgstr ""
#: ../../addon/nsfw/nsfw.php:105
msgid "NSFW Settings saved."
msgstr ""
#: ../../addon/nsfw/nsfw.php:157
#, php-format
msgid "%s - Click to open/close"
msgstr ""
#: ../../addon/page/page.php:61 ../../addon/page/page.php:91
#: ../../addon/forumlist/forumlist.php:55
msgid "Forums"
msgstr ""
#: ../../addon/page/page.php:129 ../../addon/forumlist/forumlist.php:89
msgid "Forums:"
msgstr ""
#: ../../addon/page/page.php:165
msgid "Page settings updated."
msgstr ""
#: ../../addon/page/page.php:194
msgid "Page Settings"
msgstr ""
#: ../../addon/page/page.php:196
msgid "How many forums to display on sidebar without paging"
msgstr ""
#: ../../addon/page/page.php:199
msgid "Randomise Page/Forum list"
msgstr ""
#: ../../addon/page/page.php:202
msgid "Show pages/forums on profile page"
msgstr ""
#: ../../addon/planets/planets.php:150
msgid "Planets Settings"
msgstr ""
#: ../../addon/planets/planets.php:152
msgid "Enable Planets Plugin"
msgstr ""
#: ../../addon/communityhome/communityhome.php:28
#: ../../addon/communityhome/communityhome.php:34
#: ../../addon/communityhome/twillingham/communityhome.php:28
#: ../../addon/communityhome/twillingham/communityhome.php:34
#: ../../include/nav.php:64 ../../boot.php:912
msgid "Login"
msgstr "Logg inn"
#: ../../addon/communityhome/communityhome.php:29
#: ../../addon/communityhome/twillingham/communityhome.php:29
msgid "OpenID"
msgstr ""
#: ../../addon/communityhome/communityhome.php:38
#: ../../addon/communityhome/twillingham/communityhome.php:38
msgid "Latest users"
msgstr ""
#: ../../addon/communityhome/communityhome.php:81
#: ../../addon/communityhome/twillingham/communityhome.php:81
msgid "Most active users"
msgstr ""
#: ../../addon/communityhome/communityhome.php:98
msgid "Latest photos"
msgstr ""
#: ../../addon/communityhome/communityhome.php:133
msgid "Latest likes"
msgstr ""
#: ../../addon/communityhome/communityhome.php:155
#: ../../view/theme/diabook/theme.php:562 ../../include/text.php:1437
#: ../../include/conversation.php:117 ../../include/conversation.php:245
msgid "event"
msgstr "hendelse"
#: ../../addon/dav/common/wdcal_backend.inc.php:92
#: ../../addon/dav/common/wdcal_backend.inc.php:166
#: ../../addon/dav/common/wdcal_backend.inc.php:178
#: ../../addon/dav/common/wdcal_backend.inc.php:206
#: ../../addon/dav/common/wdcal_backend.inc.php:214
#: ../../addon/dav/common/wdcal_backend.inc.php:229
msgid "No access"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:30
#: ../../addon/dav/common/wdcal_edit.inc.php:738
msgid "Could not open component for editing"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:140
#: ../../addon/dav/friendica/layout.fnk.php:143
#: ../../addon/dav/friendica/layout.fnk.php:422
msgid "Go back to the calendar"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:144
msgid "Event data"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:146
#: ../../addon/dav/friendica/main.php:239
msgid "Calendar"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:163
msgid "Special color"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:169
msgid "Subject"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:173
msgid "Starts"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:178
msgid "Ends"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:185
msgid "Description"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:188
msgid "Recurrence"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:190
msgid "Frequency"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:194
#: ../../include/contact_selectors.php:59
msgid "Daily"
msgstr "Daglig"
#: ../../addon/dav/common/wdcal_edit.inc.php:197
#: ../../include/contact_selectors.php:60
msgid "Weekly"
msgstr "Ukentlig"
#: ../../addon/dav/common/wdcal_edit.inc.php:200
#: ../../include/contact_selectors.php:61
msgid "Monthly"
msgstr "Månedlig"
#: ../../addon/dav/common/wdcal_edit.inc.php:203
msgid "Yearly"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:214
#: ../../include/datetime.php:288
msgid "days"
msgstr "dager"
#: ../../addon/dav/common/wdcal_edit.inc.php:215
#: ../../include/datetime.php:287
msgid "weeks"
msgstr "uker"
#: ../../addon/dav/common/wdcal_edit.inc.php:216
#: ../../include/datetime.php:286
msgid "months"
msgstr "måneder"
#: ../../addon/dav/common/wdcal_edit.inc.php:217
#: ../../include/datetime.php:285
msgid "years"
msgstr "år"
#: ../../addon/dav/common/wdcal_edit.inc.php:218
msgid "Interval"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:218
msgid "All %select% %time%"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:222
#: ../../addon/dav/common/wdcal_edit.inc.php:260
#: ../../addon/dav/common/wdcal_edit.inc.php:481
msgid "Days"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:231
#: ../../addon/dav/common/wdcal_edit.inc.php:254
#: ../../addon/dav/common/wdcal_edit.inc.php:270
#: ../../addon/dav/common/wdcal_edit.inc.php:293
#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:917
msgid "Sunday"
msgstr "søndag"
#: ../../addon/dav/common/wdcal_edit.inc.php:235
#: ../../addon/dav/common/wdcal_edit.inc.php:274
#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:917
msgid "Monday"
msgstr "mandag"
#: ../../addon/dav/common/wdcal_edit.inc.php:238
#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:917
msgid "Tuesday"
msgstr "tirsdag"
#: ../../addon/dav/common/wdcal_edit.inc.php:241
#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:917
msgid "Wednesday"
msgstr "onsdag"
#: ../../addon/dav/common/wdcal_edit.inc.php:244
#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:917
msgid "Thursday"
msgstr "torsdag"
#: ../../addon/dav/common/wdcal_edit.inc.php:247
#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:917
msgid "Friday"
msgstr "fredag"
#: ../../addon/dav/common/wdcal_edit.inc.php:250
#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:917
msgid "Saturday"
msgstr "lørdag"
#: ../../addon/dav/common/wdcal_edit.inc.php:297
msgid "First day of week:"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:350
#: ../../addon/dav/common/wdcal_edit.inc.php:373
msgid "Day of month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:354
msgid "#num#th of each month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:357
msgid "#num#th-last of each month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:360
msgid "#num#th #wkday# of each month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:363
msgid "#num#th-last #wkday# of each month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:372
#: ../../addon/dav/friendica/layout.fnk.php:255
msgid "Month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:377
msgid "#num#th of the given month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:380
msgid "#num#th-last of the given month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:383
msgid "#num#th #wkday# of the given month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:386
msgid "#num#th-last #wkday# of the given month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:413
msgid "Repeat until"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:417
msgid "Infinite"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:420
msgid "Until the following date"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:423
msgid "Number of times"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:429
msgid "Exceptions"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:432
msgid "none"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:449
msgid "Notification"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:466
msgid "Notify by"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:469
msgid "E-Mail"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:470
msgid "On Friendica / Display"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:474
msgid "Time"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:478
msgid "Hours"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:479
msgid "Minutes"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:480
msgid "Seconds"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:482
msgid "Weeks"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:485
msgid "before the"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:486
msgid "start of the event"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:487
msgid "end of the event"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:492
msgid "Add a notification"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:687
msgid "The event #name# will start at #date"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:696
msgid "#name# is about to begin."
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:769
msgid "Saved"
msgstr ""
#: ../../addon/dav/common/wdcal_configuration.php:148
msgid "U.S. Time Format (mm/dd/YYYY)"
msgstr ""
#: ../../addon/dav/common/wdcal_configuration.php:243
msgid "German Time Format (dd.mm.YYYY)"
msgstr ""
#: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39
msgid "Private Events"
msgstr ""
#: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46
msgid "Private Addressbooks"
msgstr ""
#: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
msgid "Friendica-Native events"
msgstr ""
#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
msgid "Friendica-Contacts"
msgstr ""
#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
msgid "Your Friendica-Contacts"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:99
#: ../../addon/dav/friendica/layout.fnk.php:136
msgid ""
"Something went wrong when trying to import the file. Sorry. Maybe some "
"events were imported anyway."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:131
msgid "Something went wrong when trying to import the file. Sorry."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:134
msgid "The ICS-File has been imported."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:138
msgid "No file was uploaded."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:147
msgid "Import a ICS-file"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:150
msgid "ICS-File"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:151
msgid "Overwrite all #num# existing events"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:228
msgid "New event"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:232
msgid "Today"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:241
msgid "Day"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:248
msgid "Week"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:260
msgid "Reload"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:271
msgid "Date"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:313
msgid "Error"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:380
msgid "The calendar has been updated."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:393
msgid "The new calendar has been created."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:417
msgid "The calendar has been deleted."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:424
msgid "Calendar Settings"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:430
msgid "Date format"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:439
msgid "Time zone"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:445
msgid "Calendars"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:487
msgid "Create a new calendar"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:496
msgid "Limitations"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:500
#: ../../addon/libravatar/libravatar.php:82
msgid "Warning"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:504
msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:511
msgid "Synchronizing this calendar with the iPhone"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:522
msgid "Synchronizing your Friendica-Contacts with the iPhone"
msgstr ""
#: ../../addon/dav/friendica/main.php:202
msgid ""
"The current version of this plugin has not been set up correctly. Please "
"contact the system administrator of your installation of friendica to fix "
"this."
msgstr ""
#: ../../addon/dav/friendica/main.php:242
msgid "Extended calendar with CalDAV-support"
msgstr ""
#: ../../addon/dav/friendica/main.php:279
#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:464
#: ../../include/enotify.php:28 ../../include/notifier.php:710
msgid "noreply"
msgstr "ikke svar"
#: ../../addon/dav/friendica/main.php:282
msgid "Notification: "
msgstr ""
#: ../../addon/dav/friendica/main.php:309
msgid "The database tables have been installed."
msgstr ""
#: ../../addon/dav/friendica/main.php:310
msgid "An error occurred during the installation."
msgstr ""
#: ../../addon/dav/friendica/main.php:316
msgid "The database tables have been updated."
msgstr ""
#: ../../addon/dav/friendica/main.php:317
msgid "An error occurred during the update."
msgstr ""
#: ../../addon/dav/friendica/main.php:333
msgid "No system-wide settings yet."
msgstr ""
#: ../../addon/dav/friendica/main.php:336
msgid "Database status"
msgstr ""
#: ../../addon/dav/friendica/main.php:339
msgid "Installed"
msgstr ""
#: ../../addon/dav/friendica/main.php:343
msgid "Upgrade needed"
msgstr ""
#: ../../addon/dav/friendica/main.php:343
msgid ""
"Please back up all calendar data (the tables beginning with dav_*) before "
"proceeding. While all calendar events <i>should</i> be converted to the new "
"database structure, it's always safe to have a backup. Below, you can have a"
" look at the database-queries that will be made when pressing the "
"'update'-button."
msgstr ""
#: ../../addon/dav/friendica/main.php:343
msgid "Upgrade"
msgstr ""
#: ../../addon/dav/friendica/main.php:346
msgid "Not installed"
msgstr ""
#: ../../addon/dav/friendica/main.php:346
msgid "Install"
msgstr ""
#: ../../addon/dav/friendica/main.php:350
msgid "Unknown"
msgstr ""
#: ../../addon/dav/friendica/main.php:350
msgid ""
"Something really went wrong. I cannot recover from this state automatically,"
" sorry. Please go to the database backend, back up the data, and delete all "
"tables beginning with 'dav_' manually. Afterwards, this installation routine"
" should be able to reinitialize the tables automatically."
msgstr ""
#: ../../addon/dav/friendica/main.php:355
msgid "Troubleshooting"
msgstr ""
#: ../../addon/dav/friendica/main.php:356
msgid "Manual creation of the database tables:"
msgstr ""
#: ../../addon/dav/friendica/main.php:357
msgid "Show SQL-statements"
msgstr ""
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206
msgid "Private Calendar"
msgstr ""
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207
msgid "Friendica Events: Mine"
msgstr ""
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208
msgid "Friendica Events: Contacts"
msgstr ""
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248
msgid "Private Addresses"
msgstr ""
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249
msgid "Friendica Contacts"
msgstr ""
#: ../../addon/uhremotestorage/uhremotestorage.php:84
#, php-format
msgid ""
"Allow to use your friendica id (%s) to connecto to external unhosted-enabled"
" storage (like ownCloud). See <a "
"href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage"
" WebFinger</a>"
msgstr "Tillat å bruke din friendica id (%s) for å koble til ekstern unhosted-aktivert lagring (som ownCloud). Se <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"
#: ../../addon/uhremotestorage/uhremotestorage.php:85
msgid "Template URL (with {category})"
msgstr ""
#: ../../addon/uhremotestorage/uhremotestorage.php:86
msgid "OAuth end-point"
msgstr ""
#: ../../addon/uhremotestorage/uhremotestorage.php:87
msgid "Api"
msgstr ""
#: ../../addon/membersince/membersince.php:18
msgid "Member since:"
msgstr ""
#: ../../addon/tictac/tictac.php:20
msgid "Three Dimensional Tic-Tac-Toe"
msgstr "Tredimensjonal tre-på-rad"
#: ../../addon/tictac/tictac.php:53
msgid "3D Tic-Tac-Toe"
msgstr "3D tre-på-rad"
#: ../../addon/tictac/tictac.php:58
msgid "New game"
msgstr "Nytt spill"
#: ../../addon/tictac/tictac.php:59
msgid "New game with handicap"
msgstr "Nytt spill med handikapp"
#: ../../addon/tictac/tictac.php:60
msgid ""
"Three dimensional tic-tac-toe is just like the traditional game except that "
"it is played on multiple levels simultaneously. "
msgstr "Tredimensjonal tre-på-rad er akkurat som det vanlige spillet, bortsett fra at det spilles på flere nivåer samtidig."
#: ../../addon/tictac/tictac.php:61
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 "I dette tilfellet er det tre nivåer. Du vinner ved å få tre på rad på ethvert nivå, samt opp, ned og diagonalt på tvers av forskjellige nivåer."
#: ../../addon/tictac/tictac.php:63
msgid ""
"The handicap game disables the center position on the middle level because "
"the player claiming this square often has an unfair advantage."
msgstr "Handicap-spillet skrur av midtposisjonen på det midtre nivået, fordi spilleren som tar denne posisjonen ofte får en urettferdig fordel."
#: ../../addon/tictac/tictac.php:182
msgid "You go first..."
msgstr "Du starter først..."
#: ../../addon/tictac/tictac.php:187
msgid "I'm going first this time..."
msgstr "Jeg starter først denne gangen..."
#: ../../addon/tictac/tictac.php:193
msgid "You won!"
msgstr "Du vant!"
#: ../../addon/tictac/tictac.php:199 ../../addon/tictac/tictac.php:224
msgid "\"Cat\" game!"
msgstr "\"Katte\"-spill!"
#: ../../addon/tictac/tictac.php:222
msgid "I won!"
msgstr "Jeg vant!"
#: ../../addon/randplace/randplace.php:169
msgid "Randplace Settings"
msgstr "Tilfeldig plassering"
#: ../../addon/randplace/randplace.php:171
msgid "Enable Randplace Plugin"
msgstr "Aktiver Tilfeldig plassering-tillegget"
#: ../../addon/dwpost/dwpost.php:39
msgid "Post to Dreamwidth"
msgstr ""
#: ../../addon/dwpost/dwpost.php:70
msgid "Dreamwidth Post Settings"
msgstr ""
#: ../../addon/dwpost/dwpost.php:72
msgid "Enable dreamwidth Post Plugin"
msgstr ""
#: ../../addon/dwpost/dwpost.php:77
msgid "dreamwidth username"
msgstr ""
#: ../../addon/dwpost/dwpost.php:82
msgid "dreamwidth password"
msgstr ""
#: ../../addon/dwpost/dwpost.php:87
msgid "Post to dreamwidth by default"
msgstr ""
#: ../../addon/drpost/drpost.php:35
msgid "Post to Drupal"
msgstr ""
#: ../../addon/drpost/drpost.php:72
msgid "Drupal Post Settings"
msgstr ""
#: ../../addon/drpost/drpost.php:74
msgid "Enable Drupal Post Plugin"
msgstr ""
#: ../../addon/drpost/drpost.php:79
msgid "Drupal username"
msgstr ""
#: ../../addon/drpost/drpost.php:84
msgid "Drupal password"
msgstr ""
#: ../../addon/drpost/drpost.php:89
msgid "Post Type - article,page,or blog"
msgstr ""
#: ../../addon/drpost/drpost.php:94
msgid "Drupal site URL"
msgstr ""
#: ../../addon/drpost/drpost.php:99
msgid "Drupal site uses clean URLS"
msgstr ""
#: ../../addon/drpost/drpost.php:104
msgid "Post to Drupal by default"
msgstr ""
#: ../../addon/drpost/drpost.php:184 ../../addon/wppost/wppost.php:201
#: ../../addon/blogger/blogger.php:172 ../../addon/posterous/posterous.php:189
msgid "Post from Friendica"
msgstr ""
#: ../../addon/startpage/startpage.php:83
msgid "Startpage Settings"
msgstr ""
#: ../../addon/startpage/startpage.php:85
msgid "Home page to load after login - leave blank for profile wall"
msgstr ""
#: ../../addon/startpage/startpage.php:88
msgid "Examples: &quot;network&quot; or &quot;notifications/system&quot;"
msgstr ""
#: ../../addon/geonames/geonames.php:143
msgid "Geonames settings updated."
msgstr ""
#: ../../addon/geonames/geonames.php:179
msgid "Geonames Settings"
msgstr ""
#: ../../addon/geonames/geonames.php:181
msgid "Enable Geonames Plugin"
msgstr ""
#: ../../addon/public_server/public_server.php:126
#: ../../addon/testdrive/testdrive.php:94
#, php-format
msgid "Your account on %s will expire in a few days."
msgstr ""
#: ../../addon/public_server/public_server.php:127
msgid "Your Friendica account is about to expire."
msgstr ""
#: ../../addon/public_server/public_server.php:128
#, php-format
msgid ""
"Hi %1$s,\n"
"\n"
"Your account on %2$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"
msgstr ""
#: ../../addon/js_upload/js_upload.php:43
msgid "Upload a file"
msgstr "Last opp en fil"
#: ../../addon/js_upload/js_upload.php:44
msgid "Drop files here to upload"
msgstr "Slipp filer her for å laste de opp"
#: ../../addon/js_upload/js_upload.php:46
msgid "Failed"
msgstr "Mislyktes"
#: ../../addon/js_upload/js_upload.php:297
msgid "No files were uploaded."
msgstr "Ingen filer ble lastet opp."
#: ../../addon/js_upload/js_upload.php:303
msgid "Uploaded file is empty"
msgstr "Opplastet fil er tom"
#: ../../addon/js_upload/js_upload.php:326
msgid "File has an invalid extension, it should be one of "
msgstr "Filen har en ugyldig endelse, den må være en av "
#: ../../addon/js_upload/js_upload.php:337
msgid "Upload was cancelled, or server error encountered"
msgstr "Opplasting avbrutt, eller det oppstod en feil på tjeneren"
#: ../../addon/oembed.old/oembed.php:30
msgid "OEmbed settings updated"
msgstr "OEmbed-innstillingene er oppdatert"
#: ../../addon/oembed.old/oembed.php:43
msgid "Use OEmbed for YouTube videos"
msgstr "Bruk OEmbed til YouTube-videoer"
#: ../../addon/oembed.old/oembed.php:71
msgid "URL to embed:"
msgstr "URL som skal innebygges:"
#: ../../addon/forumlist/forumlist.php:58
msgid "show/hide"
msgstr ""
#: ../../addon/forumlist/forumlist.php:72
msgid "No forum subscriptions"
msgstr ""
#: ../../addon/forumlist/forumlist.php:125
msgid "Forumlist settings updated."
msgstr ""
#: ../../addon/forumlist/forumlist.php:150
msgid "Forumlist Settings"
msgstr ""
#: ../../addon/forumlist/forumlist.php:152
msgid "Randomise forum list"
msgstr ""
#: ../../addon/forumlist/forumlist.php:155
msgid "Show forums on profile page"
msgstr ""
#: ../../addon/impressum/impressum.php:37
msgid "Impressum"
msgstr "Informasjon om nettstedet"
#: ../../addon/impressum/impressum.php:50
#: ../../addon/impressum/impressum.php:52
#: ../../addon/impressum/impressum.php:84
msgid "Site Owner"
msgstr "Nettstedets eier"
#: ../../addon/impressum/impressum.php:50
#: ../../addon/impressum/impressum.php:88
msgid "Email Address"
msgstr "E-postadresse"
#: ../../addon/impressum/impressum.php:55
#: ../../addon/impressum/impressum.php:86
msgid "Postal Address"
msgstr "Postadresse"
#: ../../addon/impressum/impressum.php:61
msgid ""
"The impressum addon needs to be configured!<br />Please add at least the "
"<tt>owner</tt> variable to your config file. For other variables please "
"refer to the README file of the addon."
msgstr "Tillegget for \"Informasjon om nettstedet\" må konfigureres!<br />Vennligst fyll ut minst <tt>eier</tt> variabelen i konfigurasjonsfilen din. For andre variabler, vennligst se over README-filen til tillegget."
#: ../../addon/impressum/impressum.php:84
msgid "The page operators name."
msgstr ""
#: ../../addon/impressum/impressum.php:85
msgid "Site Owners Profile"
msgstr "Nettstedseiers profil"
#: ../../addon/impressum/impressum.php:85
msgid "Profile address of the operator."
msgstr ""
#: ../../addon/impressum/impressum.php:86
msgid "How to contact the operator via snail mail. You can use BBCode here."
msgstr ""
#: ../../addon/impressum/impressum.php:87
msgid "Notes"
msgstr "Notater"
#: ../../addon/impressum/impressum.php:87
msgid ""
"Additional notes that are displayed beneath the contact information. You can"
" use BBCode here."
msgstr ""
#: ../../addon/impressum/impressum.php:88
msgid "How to contact the operator via email. (will be displayed obfuscated)"
msgstr ""
#: ../../addon/impressum/impressum.php:89
msgid "Footer note"
msgstr ""
#: ../../addon/impressum/impressum.php:89
msgid "Text for the footer. You can use BBCode here."
msgstr ""
#: ../../addon/buglink/buglink.php:15
msgid "Report Bug"
msgstr ""
#: ../../addon/notimeline/notimeline.php:32
msgid "No Timeline settings updated."
msgstr ""
#: ../../addon/notimeline/notimeline.php:56
msgid "No Timeline Settings"
msgstr ""
#: ../../addon/notimeline/notimeline.php:58
msgid "Disable Archive selector on profile wall"
msgstr ""
#: ../../addon/blockem/blockem.php:51
msgid "\"Blockem\" Settings"
msgstr ""
#: ../../addon/blockem/blockem.php:53
msgid "Comma separated profile URLS to block"
msgstr ""
#: ../../addon/blockem/blockem.php:70
msgid "BLOCKEM Settings saved."
msgstr ""
#: ../../addon/blockem/blockem.php:105
#, php-format
msgid "Blocked %s - Click to open/close"
msgstr ""
#: ../../addon/blockem/blockem.php:160
msgid "Unblock Author"
msgstr ""
#: ../../addon/blockem/blockem.php:162
msgid "Block Author"
msgstr ""
#: ../../addon/blockem/blockem.php:194
msgid "blockem settings updated"
msgstr ""
#: ../../addon/qcomment/qcomment.php:51
msgid ":-)"
msgstr ""
#: ../../addon/qcomment/qcomment.php:51
msgid ":-("
msgstr ""
#: ../../addon/qcomment/qcomment.php:51
msgid "lol"
msgstr ""
#: ../../addon/qcomment/qcomment.php:54
msgid "Quick Comment Settings"
msgstr ""
#: ../../addon/qcomment/qcomment.php:56
msgid ""
"Quick comments are found near comment boxes, sometimes hidden. Click them to"
" provide simple replies."
msgstr ""
#: ../../addon/qcomment/qcomment.php:57
msgid "Enter quick comments, one per line"
msgstr ""
#: ../../addon/qcomment/qcomment.php:75
msgid "Quick Comment settings saved."
msgstr ""
#: ../../addon/openstreetmap/openstreetmap.php:71
msgid "Tile Server URL"
msgstr ""
#: ../../addon/openstreetmap/openstreetmap.php:71
msgid ""
"A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" "
"target=\"_blank\">public tile servers</a>"
msgstr ""
#: ../../addon/openstreetmap/openstreetmap.php:72
msgid "Default zoom"
msgstr ""
#: ../../addon/openstreetmap/openstreetmap.php:72
msgid "The default zoom level. (1:world, 18:highest)"
msgstr ""
#: ../../addon/group_text/group_text.php:46
#: ../../addon/editplain/editplain.php:46
msgid "Editplain settings updated."
msgstr ""
#: ../../addon/group_text/group_text.php:76
msgid "Group Text"
msgstr ""
#: ../../addon/group_text/group_text.php:78
msgid "Use a text only (non-image) group selector in the \"group edit\" menu"
msgstr ""
#: ../../addon/libravatar/libravatar.php:14
msgid "Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"
msgstr ""
#: ../../addon/libravatar/libravatar.php:73
#: ../../addon/gravatar/gravatar.php:71
msgid "generic profile image"
msgstr ""
#: ../../addon/libravatar/libravatar.php:74
#: ../../addon/gravatar/gravatar.php:72
msgid "random geometric pattern"
msgstr ""
#: ../../addon/libravatar/libravatar.php:75
#: ../../addon/gravatar/gravatar.php:73
msgid "monster face"
msgstr ""
#: ../../addon/libravatar/libravatar.php:76
#: ../../addon/gravatar/gravatar.php:74
msgid "computer generated face"
msgstr ""
#: ../../addon/libravatar/libravatar.php:77
#: ../../addon/gravatar/gravatar.php:75
msgid "retro arcade style face"
msgstr ""
#: ../../addon/libravatar/libravatar.php:83
#, php-format
msgid "Your PHP version %s is lower than the required PHP >= 5.3."
msgstr ""
#: ../../addon/libravatar/libravatar.php:84
msgid "This addon is not functional on your server."
msgstr ""
#: ../../addon/libravatar/libravatar.php:93
#: ../../addon/gravatar/gravatar.php:89
msgid "Information"
msgstr ""
#: ../../addon/libravatar/libravatar.php:93
msgid ""
"Gravatar addon is installed. Please disable the Gravatar addon.<br>The "
"Libravatar addon will fall back to Gravatar if nothing was found at "
"Libravatar."
msgstr ""
#: ../../addon/libravatar/libravatar.php:100
#: ../../addon/gravatar/gravatar.php:96
msgid "Default avatar image"
msgstr ""
#: ../../addon/libravatar/libravatar.php:100
msgid "Select default avatar image if none was found. See README"
msgstr ""
#: ../../addon/libravatar/libravatar.php:112
msgid "Libravatar settings updated."
msgstr ""
#: ../../addon/libertree/libertree.php:36
msgid "Post to libertree"
msgstr ""
#: ../../addon/libertree/libertree.php:67
msgid "libertree Post Settings"
msgstr ""
#: ../../addon/libertree/libertree.php:69
msgid "Enable Libertree Post Plugin"
msgstr ""
#: ../../addon/libertree/libertree.php:74
msgid "Libertree API token"
msgstr ""
#: ../../addon/libertree/libertree.php:79
msgid "Libertree site URL"
msgstr ""
#: ../../addon/libertree/libertree.php:84
msgid "Post to Libertree by default"
msgstr ""
#: ../../addon/altpager/altpager.php:46
msgid "Altpager settings updated."
msgstr ""
#: ../../addon/altpager/altpager.php:79
msgid "Alternate Pagination Setting"
msgstr ""
#: ../../addon/altpager/altpager.php:81
msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?"
msgstr ""
#: ../../addon/mathjax/mathjax.php:37
msgid ""
"The MathJax addon renders mathematical formulae written using the LaTeX "
"syntax surrounded by the usual $$ or an eqnarray block in the postings of "
"your wall,network tab and private mail."
msgstr ""
#: ../../addon/mathjax/mathjax.php:38
msgid "Use the MathJax renderer"
msgstr ""
#: ../../addon/mathjax/mathjax.php:74
msgid "MathJax Base URL"
msgstr ""
#: ../../addon/mathjax/mathjax.php:74
msgid ""
"The URL for the javascript file that should be included to use MathJax. Can "
"be either the MathJax CDN or another installation of MathJax."
msgstr ""
#: ../../addon/editplain/editplain.php:76
msgid "Editplain Settings"
msgstr ""
#: ../../addon/editplain/editplain.php:78
msgid "Disable richtext status editor"
msgstr ""
#: ../../addon/gravatar/gravatar.php:89
msgid ""
"Libravatar addon is installed, too. Please disable Libravatar addon or this "
"Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if "
"nothing was found at Libravatar."
msgstr ""
#: ../../addon/gravatar/gravatar.php:96
msgid "Select default avatar image if none was found at Gravatar. See README"
msgstr ""
#: ../../addon/gravatar/gravatar.php:97
msgid "Rating of images"
msgstr ""
#: ../../addon/gravatar/gravatar.php:97
msgid "Select the appropriate avatar rating for your site. See README"
msgstr ""
#: ../../addon/gravatar/gravatar.php:111
msgid "Gravatar settings updated."
msgstr ""
#: ../../addon/testdrive/testdrive.php:95
msgid "Your Friendica test account is about to expire."
msgstr ""
#: ../../addon/testdrive/testdrive.php:96
#, php-format
msgid ""
"Hi %1$s,\n"
"\n"
"Your test account on %2$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."
msgstr ""
#: ../../addon/pageheader/pageheader.php:50
msgid "\"pageheader\" Settings"
msgstr ""
#: ../../addon/pageheader/pageheader.php:68
msgid "pageheader Settings saved."
msgstr ""
#: ../../addon/ijpost/ijpost.php:39
msgid "Post to Insanejournal"
msgstr ""
#: ../../addon/ijpost/ijpost.php:70
msgid "InsaneJournal Post Settings"
msgstr ""
#: ../../addon/ijpost/ijpost.php:72
msgid "Enable InsaneJournal Post Plugin"
msgstr ""
#: ../../addon/ijpost/ijpost.php:77
msgid "InsaneJournal username"
msgstr ""
#: ../../addon/ijpost/ijpost.php:82
msgid "InsaneJournal password"
msgstr ""
#: ../../addon/ijpost/ijpost.php:87
msgid "Post to InsaneJournal by default"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:266
msgid "Jappix Mini addon settings"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:268
msgid "Activate addon"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:271
msgid ""
"Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:274
msgid "Jabber username"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:277
msgid "Jabber server"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:281
msgid "Jabber BOSH host"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:285
msgid "Jabber password"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:290
msgid "Encrypt Jabber password with Friendica password (recommended)"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:293
msgid "Friendica password"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:296
msgid "Approve subscription requests from Friendica contacts automatically"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:299
msgid "Subscribe to Friendica contacts automatically"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:302
msgid "Purge internal list of jabber addresses of contacts"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:308
msgid "Add contact"
msgstr ""
#: ../../addon/viewsrc/viewsrc.php:37
msgid "View Source"
msgstr ""
#: ../../addon/statusnet/statusnet.php:134
msgid "Post to StatusNet"
msgstr "Post til StatusNet"
#: ../../addon/statusnet/statusnet.php:176
msgid ""
"Please contact your site administrator.<br />The provided API URL is not "
"valid."
msgstr "Vennligst kontakt administratoren på nettstedet ditt.<br />Den oppgitter API URL-en er ikke gyldig."
#: ../../addon/statusnet/statusnet.php:204
msgid "We could not contact the StatusNet API with the Path you entered."
msgstr "Vi kunne ikke kontakte StatusNet API-en med den banen du oppgav."
#: ../../addon/statusnet/statusnet.php:232
msgid "StatusNet settings updated."
msgstr "StatusNet-innstillinger er oppdatert."
#: ../../addon/statusnet/statusnet.php:257
msgid "StatusNet Posting Settings"
msgstr "Innstillinger for posting til StatusNet"
#: ../../addon/statusnet/statusnet.php:271
msgid "Globally Available StatusNet OAuthKeys"
msgstr "Globalt tilgjengelige StatusNet OAuthKeys"
#: ../../addon/statusnet/statusnet.php:272
msgid ""
"There are preconfigured OAuth key pairs for some StatusNet servers "
"available. If you are useing one of them, please use these credentials. If "
"not feel free to connect to any other StatusNet instance (see below)."
msgstr "Det finnes ferdig konfigurerte OAuth nøkkelpar tilgjengelig for noen StatusNet-tjenere. Hvis du bruker en av disse, vennligst bruk disse som legitimasjon. Hvis ikke, så er du fri til å opprette en forbindelse til enhver annen StatusNet-forekomst (se nedenfor)."
#: ../../addon/statusnet/statusnet.php:280
msgid "Provide your own OAuth Credentials"
msgstr "Oppgi din egen OAuth-legitimasjon"
#: ../../addon/statusnet/statusnet.php:281
msgid ""
"No consumer key pair for StatusNet found. Register your Friendica Account as"
" an desktop client on your StatusNet account, copy the consumer key pair "
"here and enter the API base root.<br />Before you register your own OAuth "
"key pair ask the administrator if there is already a key pair for this "
"Friendica installation at your favorited StatusNet installation."
msgstr ""
#: ../../addon/statusnet/statusnet.php:283
msgid "OAuth Consumer Key"
msgstr "OAuth Consumer Key"
#: ../../addon/statusnet/statusnet.php:286
msgid "OAuth Consumer Secret"
msgstr "OAuth Consumer Secret"
#: ../../addon/statusnet/statusnet.php:289
msgid "Base API Path (remember the trailing /)"
msgstr "Base API Path (husk / på slutten)"
#: ../../addon/statusnet/statusnet.php:310
msgid ""
"To connect to your StatusNet account click the button below to get a "
"security code from StatusNet which you have to copy into the input box below"
" and submit the form. Only your <strong>public</strong> posts will be posted"
" to StatusNet."
msgstr "For å koble din StatusNet-konto, klikk knappen under for å få en sikkerhetskode fra StatusNet som du må kopiere inn i tekstfeltet under, og send inn skjemaet. Det er bare dine <strong>offentlige</strong> meldinger som blir postet til StatusNet."
#: ../../addon/statusnet/statusnet.php:311
msgid "Log in with StatusNet"
msgstr "Logg inn med StatusNet"
#: ../../addon/statusnet/statusnet.php:313
msgid "Copy the security code from StatusNet here"
msgstr "Kopier sikkerhetskoden fra StatusNet hit"
#: ../../addon/statusnet/statusnet.php:319
msgid "Cancel Connection Process"
msgstr "Avbryt forbindelsesprosessen"
#: ../../addon/statusnet/statusnet.php:321
msgid "Current StatusNet API is"
msgstr "Gjeldende StatusNet API er"
#: ../../addon/statusnet/statusnet.php:322
msgid "Cancel StatusNet Connection"
msgstr "Avbryt StatusNet-forbindelsen"
#: ../../addon/statusnet/statusnet.php:333 ../../addon/twitter/twitter.php:189
msgid "Currently connected to: "
msgstr "For øyeblikket tilkoblet til:"
#: ../../addon/statusnet/statusnet.php:334
msgid ""
"If enabled all your <strong>public</strong> postings can be posted to the "
"associated StatusNet account. You can choose to do so by default (here) or "
"for every posting separately in the posting options when writing the entry."
msgstr "Aktivering gjør at alle dine <strong>offentlige</strong> innlegg kan postes til den tilknyttede StatusNet-kontoen. Du kan velge å gjøre dette som standard (her), eller for hvert enkelt innlegg separat i valgmulighetene for posting når du skriver et innlegg."
#: ../../addon/statusnet/statusnet.php:336
msgid ""
"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
"details from unknown viewers?</em>) the link potentially included in public "
"postings relayed to StatusNet 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:339
msgid "Allow posting to StatusNet"
msgstr "Tillat innlegg til StatusNet"
#: ../../addon/statusnet/statusnet.php:342
msgid "Send public postings to StatusNet by default"
msgstr "Send offentlige innlegg til StatusNet som standard"
#: ../../addon/statusnet/statusnet.php:345
msgid "Send linked #-tags and @-names to StatusNet"
msgstr ""
#: ../../addon/statusnet/statusnet.php:350 ../../addon/twitter/twitter.php:206
msgid "Clear OAuth configuration"
msgstr "Fjern OAuth-konfigurasjon"
#: ../../addon/statusnet/statusnet.php:568
msgid "API URL"
msgstr "API URL"
#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
msgid "Infinite Improbability Drive"
msgstr ""
#: ../../addon/tumblr/tumblr.php:36
msgid "Post to Tumblr"
msgstr ""
#: ../../addon/tumblr/tumblr.php:67
msgid "Tumblr Post Settings"
msgstr ""
#: ../../addon/tumblr/tumblr.php:69
msgid "Enable Tumblr Post Plugin"
msgstr ""
#: ../../addon/tumblr/tumblr.php:74
msgid "Tumblr login"
msgstr ""
#: ../../addon/tumblr/tumblr.php:79
msgid "Tumblr password"
msgstr ""
#: ../../addon/tumblr/tumblr.php:84
msgid "Post to Tumblr by default"
msgstr ""
#: ../../addon/numfriends/numfriends.php:46
msgid "Numfriends settings updated."
msgstr ""
#: ../../addon/numfriends/numfriends.php:77
msgid "Numfriends Settings"
msgstr ""
#: ../../addon/gnot/gnot.php:48
msgid "Gnot settings updated."
msgstr ""
#: ../../addon/gnot/gnot.php:79
msgid "Gnot Settings"
msgstr ""
#: ../../addon/gnot/gnot.php:81
msgid ""
"Allows threading of email comment notifications on Gmail and anonymising the"
" subject line."
msgstr ""
#: ../../addon/gnot/gnot.php:82
msgid "Enable this plugin/addon?"
msgstr ""
#: ../../addon/gnot/gnot.php:97
#, php-format
msgid "[Friendica:Notify] Comment to conversation #%d"
msgstr ""
#: ../../addon/wppost/wppost.php:42
msgid "Post to Wordpress"
msgstr ""
#: ../../addon/wppost/wppost.php:76
msgid "WordPress Post Settings"
msgstr ""
#: ../../addon/wppost/wppost.php:78
msgid "Enable WordPress Post Plugin"
msgstr ""
#: ../../addon/wppost/wppost.php:83
msgid "WordPress username"
msgstr ""
#: ../../addon/wppost/wppost.php:88
msgid "WordPress password"
msgstr ""
#: ../../addon/wppost/wppost.php:93
msgid "WordPress API URL"
msgstr ""
#: ../../addon/wppost/wppost.php:98
msgid "Post to WordPress by default"
msgstr ""
#: ../../addon/wppost/wppost.php:103
msgid "Provide a backlink to the Friendica post"
msgstr ""
#: ../../addon/wppost/wppost.php:207
msgid "Read the original post and comment stream on Friendica"
msgstr ""
#: ../../addon/showmore/showmore.php:38
msgid "\"Show more\" Settings"
msgstr ""
#: ../../addon/showmore/showmore.php:41
msgid "Enable Show More"
msgstr ""
#: ../../addon/showmore/showmore.php:44
msgid "Cutting posts after how much characters"
msgstr ""
#: ../../addon/showmore/showmore.php:65
msgid "Show More Settings saved."
msgstr ""
#: ../../addon/piwik/piwik.php:79
msgid ""
"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
"analytics tool."
msgstr ""
#: ../../addon/piwik/piwik.php:82
#, php-format
msgid ""
"If you do not want that your visits are logged this way you <a href='%s'>can"
" set a cookie to prevent Piwik from tracking further visits of the site</a> "
"(opt-out)."
msgstr ""
#: ../../addon/piwik/piwik.php:90
msgid "Piwik Base URL"
msgstr "Piwik Base URL"
#: ../../addon/piwik/piwik.php:90
msgid ""
"Absolute path to your Piwik installation. (without protocol (http/s), with "
"trailing slash)"
msgstr ""
#: ../../addon/piwik/piwik.php:91
msgid "Site ID"
msgstr "Nettstedets ID"
#: ../../addon/piwik/piwik.php:92
msgid "Show opt-out cookie link?"
msgstr "Vis lenke for å velge bort cookie?"
#: ../../addon/piwik/piwik.php:93
msgid "Asynchronous tracking"
msgstr ""
#: ../../addon/twitter/twitter.php:73
msgid "Post to Twitter"
msgstr "Post til Twitter"
#: ../../addon/twitter/twitter.php:122
msgid "Twitter settings updated."
msgstr "Twitter-innstilinger oppdatert."
#: ../../addon/twitter/twitter.php:146
msgid "Twitter Posting Settings"
msgstr "Innstillinger for posting til Twitter"
#: ../../addon/twitter/twitter.php:153
msgid ""
"No consumer key pair for Twitter found. Please contact your site "
"administrator."
msgstr "Ingen \"consumer key pair\" for Twitter funnet. Vennligst kontakt stedets administrator."
#: ../../addon/twitter/twitter.php:172
msgid ""
"At this Friendica 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 <strong>public</strong> posts will"
" be posted to Twitter."
msgstr "Ved denne Friendica-forekomsten er Twitter-tillegget aktivert, men du har ennå ikke tilkoblet din konto til din Twitter-konto. For å gjøre det, klikk på knappen nedenfor for å få en PIN-kode fra Twitter som du må kopiere inn i feltet nedenfor og sende inn skjemaet. Bare dine <strong>offentlige</strong> innlegg vil bli lagt inn på Twitter. "
#: ../../addon/twitter/twitter.php:173
msgid "Log in with Twitter"
msgstr "Logg inn via Twitter"
#: ../../addon/twitter/twitter.php:175
msgid "Copy the PIN from Twitter here"
msgstr "Kopier PIN-kode fra Twitter hit"
#: ../../addon/twitter/twitter.php:190
msgid ""
"If enabled all your <strong>public</strong> postings can be posted to the "
"associated Twitter account. You can choose to do so by default (here) or for"
" every posting separately in the posting options when writing the entry."
msgstr "Aktivering gjør at alle dine <strong>offentlige</strong> innlegg kan postes til den tilknyttede Twitter-kontoen. Du kan velge å gjøre dette som standard (her), eller for hvert enkelt innlegg separat i valgmulighetene for posting når du skriver et innlegg."
#: ../../addon/twitter/twitter.php:192
msgid ""
"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
"details from unknown viewers?</em>) 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:195
msgid "Allow posting to Twitter"
msgstr "Tillat posting til Twitter"
#: ../../addon/twitter/twitter.php:198
msgid "Send public postings to Twitter by default"
msgstr "Send offentlige innlegg til Twitter som standard"
#: ../../addon/twitter/twitter.php:201
msgid "Send linked #-tags and @-names to Twitter"
msgstr ""
#: ../../addon/twitter/twitter.php:396
msgid "Consumer key"
msgstr "Consumer key"
#: ../../addon/twitter/twitter.php:397
msgid "Consumer secret"
msgstr "Consumer secret"
#: ../../addon/irc/irc.php:44
msgid "IRC Settings"
msgstr ""
#: ../../addon/irc/irc.php:46
msgid "Channel(s) to auto connect (comma separated)"
msgstr ""
#: ../../addon/irc/irc.php:51
msgid "Popular Channels (comma separated)"
msgstr ""
#: ../../addon/irc/irc.php:69
msgid "IRC settings saved."
msgstr ""
#: ../../addon/irc/irc.php:74
msgid "IRC Chatroom"
msgstr ""
#: ../../addon/irc/irc.php:96
msgid "Popular Channels"
msgstr ""
#: ../../addon/fromapp/fromapp.php:38
msgid "Fromapp settings updated."
msgstr ""
#: ../../addon/fromapp/fromapp.php:64
msgid "FromApp Settings"
msgstr ""
#: ../../addon/fromapp/fromapp.php:66
msgid ""
"The application name you would like to show your posts originating from."
msgstr ""
#: ../../addon/fromapp/fromapp.php:70
msgid "Use this application name even if another application was used."
msgstr ""
#: ../../addon/blogger/blogger.php:42
msgid "Post to blogger"
msgstr ""
#: ../../addon/blogger/blogger.php:74
msgid "Blogger Post Settings"
msgstr ""
#: ../../addon/blogger/blogger.php:76
msgid "Enable Blogger Post Plugin"
msgstr ""
#: ../../addon/blogger/blogger.php:81
msgid "Blogger username"
msgstr ""
#: ../../addon/blogger/blogger.php:86
msgid "Blogger password"
msgstr ""
#: ../../addon/blogger/blogger.php:91
msgid "Blogger API URL"
msgstr ""
#: ../../addon/blogger/blogger.php:96
msgid "Post to Blogger by default"
msgstr ""
#: ../../addon/posterous/posterous.php:37
msgid "Post to Posterous"
msgstr ""
#: ../../addon/posterous/posterous.php:70
msgid "Posterous Post Settings"
msgstr ""
#: ../../addon/posterous/posterous.php:72
msgid "Enable Posterous Post Plugin"
msgstr ""
#: ../../addon/posterous/posterous.php:77
msgid "Posterous login"
msgstr ""
#: ../../addon/posterous/posterous.php:82
msgid "Posterous password"
msgstr ""
#: ../../addon/posterous/posterous.php:87
msgid "Posterous site ID"
msgstr ""
#: ../../addon/posterous/posterous.php:92
msgid "Posterous API token"
msgstr ""
#: ../../addon/posterous/posterous.php:97
msgid "Post to Posterous by default"
msgstr ""
#: ../../view/theme/cleanzero/config.php:82
#: ../../view/theme/diabook/config.php:192
#: ../../view/theme/quattro/config.php:55 ../../view/theme/dispy/config.php:72
msgid "Theme settings"
msgstr ""
#: ../../view/theme/cleanzero/config.php:83
msgid "Set resize level for images in posts and comments (width and height)"
msgstr ""
#: ../../view/theme/cleanzero/config.php:84
#: ../../view/theme/diabook/config.php:193
#: ../../view/theme/dispy/config.php:73
msgid "Set font-size for posts and comments"
msgstr ""
#: ../../view/theme/cleanzero/config.php:85
msgid "Set theme width"
msgstr ""
#: ../../view/theme/cleanzero/config.php:86
#: ../../view/theme/quattro/config.php:57
msgid "Color scheme"
msgstr ""
#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:49
#: ../../include/nav.php:115
msgid "Your posts and conversations"
msgstr "Dine innlegg og samtaler"
#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:50
msgid "Your profile page"
msgstr ""
#: ../../view/theme/diabook/theme.php:129
msgid "Your contacts"
msgstr ""
#: ../../view/theme/diabook/theme.php:130 ../../include/nav.php:51
msgid "Your photos"
msgstr ""
#: ../../view/theme/diabook/theme.php:131 ../../include/nav.php:52
msgid "Your events"
msgstr ""
#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53
msgid "Personal notes"
msgstr ""
#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53
msgid "Your personal photos"
msgstr ""
#: ../../view/theme/diabook/theme.php:134
#: ../../view/theme/diabook/theme.php:643
#: ../../view/theme/diabook/theme.php:747
#: ../../view/theme/diabook/config.php:201
msgid "Community Pages"
msgstr ""
#: ../../view/theme/diabook/theme.php:490
#: ../../view/theme/diabook/theme.php:749
#: ../../view/theme/diabook/config.php:203
msgid "Community Profiles"
msgstr ""
#: ../../view/theme/diabook/theme.php:511
#: ../../view/theme/diabook/theme.php:754
#: ../../view/theme/diabook/config.php:208
msgid "Last users"
msgstr ""
#: ../../view/theme/diabook/theme.php:540
#: ../../view/theme/diabook/theme.php:756
#: ../../view/theme/diabook/config.php:210
msgid "Last likes"
msgstr ""
#: ../../view/theme/diabook/theme.php:585
#: ../../view/theme/diabook/theme.php:755
#: ../../view/theme/diabook/config.php:209
msgid "Last photos"
msgstr ""
#: ../../view/theme/diabook/theme.php:622
#: ../../view/theme/diabook/theme.php:752
#: ../../view/theme/diabook/config.php:206
msgid "Find Friends"
msgstr ""
#: ../../view/theme/diabook/theme.php:623
msgid "Local Directory"
msgstr ""
#: ../../view/theme/diabook/theme.php:625 ../../include/contact_widgets.php:35
msgid "Similar Interests"
msgstr ""
#: ../../view/theme/diabook/theme.php:627 ../../include/contact_widgets.php:37
msgid "Invite Friends"
msgstr "Inviterer venner"
#: ../../view/theme/diabook/theme.php:678
#: ../../view/theme/diabook/theme.php:748
#: ../../view/theme/diabook/config.php:202
msgid "Earth Layers"
msgstr ""
#: ../../view/theme/diabook/theme.php:683
msgid "Set zoomfactor for Earth Layers"
msgstr ""
#: ../../view/theme/diabook/theme.php:684
#: ../../view/theme/diabook/config.php:199
msgid "Set longitude (X) for Earth Layers"
msgstr ""
#: ../../view/theme/diabook/theme.php:685
#: ../../view/theme/diabook/config.php:200
msgid "Set latitude (Y) for Earth Layers"
msgstr ""
#: ../../view/theme/diabook/theme.php:698
#: ../../view/theme/diabook/theme.php:750
#: ../../view/theme/diabook/config.php:204
msgid "Help or @NewHere ?"
msgstr ""
#: ../../view/theme/diabook/theme.php:705
#: ../../view/theme/diabook/theme.php:751
#: ../../view/theme/diabook/config.php:205
msgid "Connect Services"
msgstr ""
#: ../../view/theme/diabook/theme.php:712
#: ../../view/theme/diabook/theme.php:753
msgid "Last Tweets"
msgstr ""
#: ../../view/theme/diabook/theme.php:715
#: ../../view/theme/diabook/config.php:197
msgid "Set twitter search term"
msgstr ""
#: ../../view/theme/diabook/theme.php:735
#: ../../view/theme/diabook/theme.php:736
#: ../../view/theme/diabook/theme.php:737
#: ../../view/theme/diabook/theme.php:738
#: ../../view/theme/diabook/theme.php:739
#: ../../view/theme/diabook/theme.php:740
#: ../../view/theme/diabook/theme.php:741
#: ../../view/theme/diabook/theme.php:742
#: ../../view/theme/diabook/theme.php:743
#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:288
msgid "don't show"
msgstr "ikke vis"
#: ../../view/theme/diabook/theme.php:735
#: ../../view/theme/diabook/theme.php:736
#: ../../view/theme/diabook/theme.php:737
#: ../../view/theme/diabook/theme.php:738
#: ../../view/theme/diabook/theme.php:739
#: ../../view/theme/diabook/theme.php:740
#: ../../view/theme/diabook/theme.php:741
#: ../../view/theme/diabook/theme.php:742
#: ../../view/theme/diabook/theme.php:743
#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:287
msgid "show"
msgstr "vis"
#: ../../view/theme/diabook/theme.php:745
msgid "Show/hide boxes at right-hand column:"
msgstr ""
#: ../../view/theme/diabook/config.php:194
#: ../../view/theme/dispy/config.php:74
msgid "Set line-height for posts and comments"
msgstr ""
#: ../../view/theme/diabook/config.php:195
msgid "Set resolution for middle column"
msgstr ""
#: ../../view/theme/diabook/config.php:196
msgid "Set color scheme"
msgstr ""
#: ../../view/theme/diabook/config.php:198
msgid "Set zoomfactor for Earth Layer"
msgstr ""
#: ../../view/theme/diabook/config.php:207
msgid "Last tweets"
msgstr ""
#: ../../view/theme/quattro/config.php:56
msgid "Alignment"
msgstr ""
#: ../../view/theme/quattro/config.php:56
msgid "Left"
msgstr ""
#: ../../view/theme/quattro/config.php:56
msgid "Center"
msgstr ""
#: ../../view/theme/dispy/config.php:75
msgid "Set colour scheme"
msgstr ""
#: ../../include/profile_advanced.php:22
msgid "j F, Y"
msgstr "j F, Y"
#: ../../include/profile_advanced.php:23
msgid "j F"
msgstr "j F"
#: ../../include/profile_advanced.php:30
msgid "Birthday:"
msgstr "Fødselsdag:"
#: ../../include/profile_advanced.php:34
msgid "Age:"
msgstr "Alder:"
#: ../../include/profile_advanced.php:43
#, php-format
msgid "for %1$d %2$s"
msgstr ""
#: ../../include/profile_advanced.php:52
msgid "Tags:"
msgstr ""
#: ../../include/profile_advanced.php:56
msgid "Religion:"
msgstr "Religion:"
#: ../../include/profile_advanced.php:60
msgid "Hobbies/Interests:"
msgstr "Hobbyer/Interesser:"
#: ../../include/profile_advanced.php:67
msgid "Contact information and Social Networks:"
msgstr "Kontaktinformasjon og sosiale nettverk:"
#: ../../include/profile_advanced.php:69
msgid "Musical interests:"
msgstr "Musikksmak:"
#: ../../include/profile_advanced.php:71
msgid "Books, literature:"
msgstr "Bøker, litteratur:"
#: ../../include/profile_advanced.php:73
msgid "Television:"
msgstr "TV:"
#: ../../include/profile_advanced.php:75
msgid "Film/dance/culture/entertainment:"
msgstr "Film/dans/kultur/underholdning:"
#: ../../include/profile_advanced.php:77
msgid "Love/Romance:"
msgstr "Kjærlighet/romanse:"
#: ../../include/profile_advanced.php:79
msgid "Work/employment:"
msgstr "Arbeid/ansatt hos:"
#: ../../include/profile_advanced.php:81
msgid "School/education:"
msgstr "Skole/utdanning:"
#: ../../include/contact_selectors.php:32
msgid "Unknown | Not categorised"
msgstr "Ukjent | Ikke kategorisert"
#: ../../include/contact_selectors.php:33
msgid "Block immediately"
msgstr "Blokker umiddelbart"
#: ../../include/contact_selectors.php:34
msgid "Shady, spammer, self-marketer"
msgstr "Grumsete, poster søppel, fremhever bare seg selv"
#: ../../include/contact_selectors.php:35
msgid "Known to me, but no opinion"
msgstr "Bekjent av meg, men har ingen mening"
#: ../../include/contact_selectors.php:36
msgid "OK, probably harmless"
msgstr "OK, antakelig harmløs"
#: ../../include/contact_selectors.php:37
msgid "Reputable, has my trust"
msgstr "Respektert, har min tillit"
#: ../../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:77
msgid "OStatus"
msgstr ""
#: ../../include/contact_selectors.php:78
msgid "RSS/Atom"
msgstr ""
#: ../../include/contact_selectors.php:82
msgid "Zot!"
msgstr ""
#: ../../include/contact_selectors.php:83
msgid "LinkedIn"
msgstr ""
#: ../../include/contact_selectors.php:84
msgid "XMPP/IM"
msgstr ""
#: ../../include/contact_selectors.php:85
msgid "MySpace"
msgstr ""
#: ../../include/profile_selectors.php:6
msgid "Male"
msgstr "Mann"
#: ../../include/profile_selectors.php:6
msgid "Female"
msgstr "Kvinne"
#: ../../include/profile_selectors.php:6
msgid "Currently Male"
msgstr "For øyeblikket mann"
#: ../../include/profile_selectors.php:6
msgid "Currently Female"
msgstr "For øyeblikket kvinne"
#: ../../include/profile_selectors.php:6
msgid "Mostly Male"
msgstr "Stort sett mann"
#: ../../include/profile_selectors.php:6
msgid "Mostly Female"
msgstr "Stort sett kvinne"
#: ../../include/profile_selectors.php:6
msgid "Transgender"
msgstr "Transkjønnet"
#: ../../include/profile_selectors.php:6
msgid "Intersex"
msgstr "Tvekjø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 "Ikke spesifisert"
#: ../../include/profile_selectors.php:6
msgid "Other"
msgstr "Annet"
#: ../../include/profile_selectors.php:6
msgid "Undecided"
msgstr "Ubestemt"
#: ../../include/profile_selectors.php:23
msgid "Males"
msgstr "Menn"
#: ../../include/profile_selectors.php:23
msgid "Females"
msgstr "Kvinner"
#: ../../include/profile_selectors.php:23
msgid "Gay"
msgstr "Homse"
#: ../../include/profile_selectors.php:23
msgid "Lesbian"
msgstr "Lesbe"
#: ../../include/profile_selectors.php:23
msgid "No Preference"
msgstr "Ingen preferanse"
#: ../../include/profile_selectors.php:23
msgid "Bisexual"
msgstr "Biseksuell"
#: ../../include/profile_selectors.php:23
msgid "Autosexual"
msgstr "Autoseksuell"
#: ../../include/profile_selectors.php:23
msgid "Abstinent"
msgstr "Avholdende"
#: ../../include/profile_selectors.php:23
msgid "Virgin"
msgstr "Jomfru"
#: ../../include/profile_selectors.php:23
msgid "Deviant"
msgstr "Avvikende"
#: ../../include/profile_selectors.php:23
msgid "Fetish"
msgstr "Fetisj"
#: ../../include/profile_selectors.php:23
msgid "Oodles"
msgstr "Mange"
#: ../../include/profile_selectors.php:23
msgid "Nonsexual"
msgstr "Aseksuell"
#: ../../include/profile_selectors.php:42
msgid "Single"
msgstr "Alene"
#: ../../include/profile_selectors.php:42
msgid "Lonely"
msgstr "Ensom"
#: ../../include/profile_selectors.php:42
msgid "Available"
msgstr "Tilgjengelig"
#: ../../include/profile_selectors.php:42
msgid "Unavailable"
msgstr "Ikke tilgjengelig"
#: ../../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 "Stevnemøter/dater"
#: ../../include/profile_selectors.php:42
msgid "Unfaithful"
msgstr "Utro"
#: ../../include/profile_selectors.php:42
msgid "Sex Addict"
msgstr "Sexavhengig"
#: ../../include/profile_selectors.php:42 ../../include/user.php:278
#: ../../include/user.php:282
msgid "Friends"
msgstr "Venner"
#: ../../include/profile_selectors.php:42
msgid "Friends/Benefits"
msgstr "Venner med fordeler"
#: ../../include/profile_selectors.php:42
msgid "Casual"
msgstr "Tilfeldig"
#: ../../include/profile_selectors.php:42
msgid "Engaged"
msgstr "Forlovet"
#: ../../include/profile_selectors.php:42
msgid "Married"
msgstr "Gift"
#: ../../include/profile_selectors.php:42
msgid "Imaginarily married"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Partners"
msgstr "Partnere"
#: ../../include/profile_selectors.php:42
msgid "Cohabiting"
msgstr "Samboere"
#: ../../include/profile_selectors.php:42
msgid "Common law"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Happy"
msgstr "Lykkelig"
#: ../../include/profile_selectors.php:42
msgid "Not looking"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Swinger"
msgstr "Partnerbytte/swinger"
#: ../../include/profile_selectors.php:42
msgid "Betrayed"
msgstr "Bedratt"
#: ../../include/profile_selectors.php:42
msgid "Separated"
msgstr "Separert"
#: ../../include/profile_selectors.php:42
msgid "Unstable"
msgstr "Ustabil"
#: ../../include/profile_selectors.php:42
msgid "Divorced"
msgstr "Skilt"
#: ../../include/profile_selectors.php:42
msgid "Imaginarily divorced"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Widowed"
msgstr "Enke/enkemann"
#: ../../include/profile_selectors.php:42
msgid "Uncertain"
msgstr "Usikker"
#: ../../include/profile_selectors.php:42
msgid "It's complicated"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Don't care"
msgstr "Uinteressert"
#: ../../include/profile_selectors.php:42
msgid "Ask me"
msgstr "Spør meg"
#: ../../include/event.php:20 ../../include/bb2diaspora.php:396
msgid "Starts:"
msgstr "Starter:"
#: ../../include/event.php:30 ../../include/bb2diaspora.php:404
msgid "Finishes:"
msgstr "Slutter:"
#: ../../include/delivery.php:457 ../../include/notifier.php:703
msgid "(no subject)"
msgstr "(uten emne)"
#: ../../include/Scrape.php:576
msgid " on Last.fm"
msgstr ""
#: ../../include/text.php:243
msgid "prev"
msgstr "forrige"
#: ../../include/text.php:245
msgid "first"
msgstr "første"
#: ../../include/text.php:274
msgid "last"
msgstr "siste"
#: ../../include/text.php:277
msgid "next"
msgstr "neste"
#: ../../include/text.php:295
msgid "newer"
msgstr ""
#: ../../include/text.php:299
msgid "older"
msgstr ""
#: ../../include/text.php:597
msgid "No contacts"
msgstr "Ingen kontakter"
#: ../../include/text.php:606
#, php-format
msgid "%d Contact"
msgid_plural "%d Contacts"
msgstr[0] "%d kontakt"
msgstr[1] "%d kontakter"
#: ../../include/text.php:719
msgid "poke"
msgstr ""
#: ../../include/text.php:719 ../../include/conversation.php:210
msgid "poked"
msgstr ""
#: ../../include/text.php:720
msgid "ping"
msgstr ""
#: ../../include/text.php:720
msgid "pinged"
msgstr ""
#: ../../include/text.php:721
msgid "prod"
msgstr ""
#: ../../include/text.php:721
msgid "prodded"
msgstr ""
#: ../../include/text.php:722
msgid "slap"
msgstr ""
#: ../../include/text.php:722
msgid "slapped"
msgstr ""
#: ../../include/text.php:723
msgid "finger"
msgstr ""
#: ../../include/text.php:723
msgid "fingered"
msgstr ""
#: ../../include/text.php:724
msgid "rebuff"
msgstr ""
#: ../../include/text.php:724
msgid "rebuffed"
msgstr ""
#: ../../include/text.php:736
msgid "happy"
msgstr ""
#: ../../include/text.php:737
msgid "sad"
msgstr ""
#: ../../include/text.php:738
msgid "mellow"
msgstr ""
#: ../../include/text.php:739
msgid "tired"
msgstr ""
#: ../../include/text.php:740
msgid "perky"
msgstr ""
#: ../../include/text.php:741
msgid "angry"
msgstr ""
#: ../../include/text.php:742
msgid "stupified"
msgstr ""
#: ../../include/text.php:743
msgid "puzzled"
msgstr ""
#: ../../include/text.php:744
msgid "interested"
msgstr ""
#: ../../include/text.php:745
msgid "bitter"
msgstr ""
#: ../../include/text.php:746
msgid "cheerful"
msgstr ""
#: ../../include/text.php:747
msgid "alive"
msgstr ""
#: ../../include/text.php:748
msgid "annoyed"
msgstr ""
#: ../../include/text.php:749
msgid "anxious"
msgstr ""
#: ../../include/text.php:750
msgid "cranky"
msgstr ""
#: ../../include/text.php:751
msgid "disturbed"
msgstr ""
#: ../../include/text.php:752
msgid "frustrated"
msgstr ""
#: ../../include/text.php:753
msgid "motivated"
msgstr ""
#: ../../include/text.php:754
msgid "relaxed"
msgstr ""
#: ../../include/text.php:755
msgid "surprised"
msgstr ""
#: ../../include/text.php:921
msgid "January"
msgstr "januar"
#: ../../include/text.php:921
msgid "February"
msgstr "februar"
#: ../../include/text.php:921
msgid "March"
msgstr "mars"
#: ../../include/text.php:921
msgid "April"
msgstr "april"
#: ../../include/text.php:921
msgid "May"
msgstr "mai"
#: ../../include/text.php:921
msgid "June"
msgstr "juni"
#: ../../include/text.php:921
msgid "July"
msgstr "juli"
#: ../../include/text.php:921
msgid "August"
msgstr "august"
#: ../../include/text.php:921
msgid "September"
msgstr "september"
#: ../../include/text.php:921
msgid "October"
msgstr "oktober"
#: ../../include/text.php:921
msgid "November"
msgstr "november"
#: ../../include/text.php:921
msgid "December"
msgstr "desember"
#: ../../include/text.php:1007
msgid "bytes"
msgstr "bytes"
#: ../../include/text.php:1034 ../../include/text.php:1046
msgid "Click to open/close"
msgstr ""
#: ../../include/text.php:1219 ../../include/user.php:236
msgid "default"
msgstr ""
#: ../../include/text.php:1231
msgid "Select an alternate language"
msgstr "Velg et annet språk"
#: ../../include/text.php:1441
msgid "activity"
msgstr ""
#: ../../include/text.php:1444
msgid "post"
msgstr ""
#: ../../include/text.php:1599
msgid "Item filed"
msgstr ""
#: ../../include/diaspora.php:691
msgid "Sharing notification from Diaspora network"
msgstr "Dele varslinger fra Diaspora nettverket"
#: ../../include/diaspora.php:2211
msgid "Attachments:"
msgstr ""
#: ../../include/network.php:849
msgid "view full size"
msgstr ""
#: ../../include/oembed.php:137
msgid "Embedded content"
msgstr ""
#: ../../include/oembed.php:146
msgid "Embedding disabled"
msgstr "Innebygging avskrudd"
#: ../../include/group.php:25
msgid ""
"A deleted group with this name was revived. Existing item permissions "
"<strong>may</strong> apply to this group and any future members. If this is "
"not what you intended, please create another group with a different name."
msgstr ""
#: ../../include/group.php:176
msgid "Default privacy group for new contacts"
msgstr ""
#: ../../include/group.php:195
msgid "Everybody"
msgstr "Alle"
#: ../../include/group.php:218
msgid "edit"
msgstr ""
#: ../../include/group.php:240
msgid "Edit group"
msgstr ""
#: ../../include/group.php:241
msgid "Create a new group"
msgstr "Lag en ny gruppe"
#: ../../include/group.php:242
msgid "Contacts not in any group"
msgstr ""
#: ../../include/nav.php:46 ../../boot.php:911
msgid "Logout"
msgstr "Logg ut"
#: ../../include/nav.php:46
msgid "End this session"
msgstr "Avslutt denne økten"
#: ../../include/nav.php:49 ../../boot.php:1665
msgid "Status"
msgstr "Status"
#: ../../include/nav.php:64
msgid "Sign in"
msgstr "Logg inn"
#: ../../include/nav.php:77
msgid "Home Page"
msgstr "Hovedside"
#: ../../include/nav.php:81
msgid "Create an account"
msgstr "Lag konto"
#: ../../include/nav.php:86
msgid "Help and documentation"
msgstr "Hjelp og dokumentasjon"
#: ../../include/nav.php:89
msgid "Apps"
msgstr "Programmer"
#: ../../include/nav.php:89
msgid "Addon applications, utilities, games"
msgstr "Tilleggsprorammer, verktøy, spill"
#: ../../include/nav.php:91
msgid "Search site content"
msgstr "Søk i nettstedets innhold"
#: ../../include/nav.php:101
msgid "Conversations on this site"
msgstr "Samtaler på dette nettstedet"
#: ../../include/nav.php:103
msgid "Directory"
msgstr "Katalog"
#: ../../include/nav.php:103
msgid "People directory"
msgstr "Personkatalog"
#: ../../include/nav.php:113
msgid "Conversations from your friends"
msgstr "Samtaler fra dine venner"
#: ../../include/nav.php:121
msgid "Friend Requests"
msgstr ""
#: ../../include/nav.php:123
msgid "See all notifications"
msgstr ""
#: ../../include/nav.php:124
msgid "Mark all system notifications seen"
msgstr ""
#: ../../include/nav.php:128
msgid "Private mail"
msgstr "Privat post"
#: ../../include/nav.php:129
msgid "Inbox"
msgstr "Innboks"
#: ../../include/nav.php:130
msgid "Outbox"
msgstr "Utboks"
#: ../../include/nav.php:134
msgid "Manage"
msgstr "Behandle"
#: ../../include/nav.php:134
msgid "Manage other pages"
msgstr "Behandle andre sider"
#: ../../include/nav.php:138 ../../boot.php:1186
msgid "Profiles"
msgstr "Profiler"
#: ../../include/nav.php:138 ../../boot.php:1186
msgid "Manage/edit profiles"
msgstr "Behandle/endre profiler"
#: ../../include/nav.php:139
msgid "Manage/edit friends and contacts"
msgstr "Behandle/endre venner og kontakter"
#: ../../include/nav.php:146
msgid "Site setup and configuration"
msgstr "Nettstedsoppsett og konfigurasjon"
#: ../../include/nav.php:170
msgid "Nothing new here"
msgstr ""
#: ../../include/contact_widgets.php:6
msgid "Add New Contact"
msgstr ""
#: ../../include/contact_widgets.php:7
msgid "Enter address or web location"
msgstr ""
#: ../../include/contact_widgets.php:8
msgid "Example: bob@example.com, http://example.com/barbara"
msgstr "Eksempel: ole@eksempel.no, http://eksempel.no/kari"
#: ../../include/contact_widgets.php:23
#, 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:29
msgid "Find People"
msgstr ""
#: ../../include/contact_widgets.php:30
msgid "Enter name or interest"
msgstr ""
#: ../../include/contact_widgets.php:31
msgid "Connect/Follow"
msgstr "Koble/Følg"
#: ../../include/contact_widgets.php:32
msgid "Examples: Robert Morgenstein, Fishing"
msgstr ""
#: ../../include/contact_widgets.php:36
msgid "Random Profile"
msgstr ""
#: ../../include/contact_widgets.php:68
msgid "Networks"
msgstr ""
#: ../../include/contact_widgets.php:71
msgid "All Networks"
msgstr ""
#: ../../include/contact_widgets.php:98
msgid "Saved Folders"
msgstr ""
#: ../../include/contact_widgets.php:101 ../../include/contact_widgets.php:129
msgid "Everything"
msgstr ""
#: ../../include/contact_widgets.php:126
msgid "Categories"
msgstr ""
#: ../../include/auth.php:35
msgid "Logged out."
msgstr "Logget ut."
#: ../../include/auth.php:114
msgid ""
"We encountered a problem while logging in with the OpenID you provided. "
"Please check the correct spelling of the ID."
msgstr ""
#: ../../include/auth.php:114
msgid "The error message was:"
msgstr ""
#: ../../include/datetime.php:43 ../../include/datetime.php:45
msgid "Miscellaneous"
msgstr "Diverse"
#: ../../include/datetime.php:153 ../../include/datetime.php:285
msgid "year"
msgstr "år"
#: ../../include/datetime.php:158 ../../include/datetime.php:286
msgid "month"
msgstr "måned"
#: ../../include/datetime.php:163 ../../include/datetime.php:288
msgid "day"
msgstr "dag"
#: ../../include/datetime.php:276
msgid "never"
msgstr "aldri"
#: ../../include/datetime.php:282
msgid "less than a second ago"
msgstr "for mindre enn ett sekund siden"
#: ../../include/datetime.php:287
msgid "week"
msgstr "uke"
#: ../../include/datetime.php:289
msgid "hour"
msgstr "time"
#: ../../include/datetime.php:289
msgid "hours"
msgstr "timer"
#: ../../include/datetime.php:290
msgid "minute"
msgstr "minutt"
#: ../../include/datetime.php:290
msgid "minutes"
msgstr "minutter"
#: ../../include/datetime.php:291
msgid "second"
msgstr "sekund"
#: ../../include/datetime.php:291
msgid "seconds"
msgstr "sekunder"
#: ../../include/datetime.php:300
#, php-format
msgid "%1$d %2$s ago"
msgstr ""
#: ../../include/datetime.php:472 ../../include/items.php:1688
#, php-format
msgid "%s's birthday"
msgstr ""
#: ../../include/datetime.php:473 ../../include/items.php:1689
#, php-format
msgid "Happy Birthday %s"
msgstr ""
#: ../../include/onepoll.php:399
msgid "From: "
msgstr "Fra: "
#: ../../include/bbcode.php:185 ../../include/bbcode.php:406
msgid "Image/photo"
msgstr "Bilde/fotografi"
#: ../../include/bbcode.php:371 ../../include/bbcode.php:391
msgid "$1 wrote:"
msgstr ""
#: ../../include/bbcode.php:410 ../../include/bbcode.php:411
msgid "Encrypted content"
msgstr ""
#: ../../include/dba.php:41
#, php-format
msgid "Cannot locate DNS info for database server '%s'"
msgstr "Kan ikke finne DNS informasjon for databasetjeneren '%s' "
#: ../../include/message.php:15 ../../include/message.php:171
msgid "[no subject]"
msgstr "[ikke noe emne]"
#: ../../include/acl_selectors.php:286
msgid "Visible to everybody"
msgstr "Synlig for alle"
#: ../../include/enotify.php:16
msgid "Friendica Notification"
msgstr ""
#: ../../include/enotify.php:19
msgid "Thank You,"
msgstr ""
#: ../../include/enotify.php:21
#, php-format
msgid "%s Administrator"
msgstr ""
#: ../../include/enotify.php:40
#, php-format
msgid "%s <!item_type!>"
msgstr ""
#: ../../include/enotify.php:44
#, php-format
msgid "[Friendica:Notify] New mail received at %s"
msgstr ""
#: ../../include/enotify.php:46
#, php-format
msgid "%1$s sent you a new private message at %2$s."
msgstr ""
#: ../../include/enotify.php:47
#, php-format
msgid "%1$s sent you %2$s."
msgstr ""
#: ../../include/enotify.php:47
msgid "a private message"
msgstr ""
#: ../../include/enotify.php:48
#, php-format
msgid "Please visit %s to view and/or reply to your private messages."
msgstr ""
#: ../../include/enotify.php:89
#, php-format
msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
msgstr ""
#: ../../include/enotify.php:96
#, php-format
msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
msgstr ""
#: ../../include/enotify.php:104
#, php-format
msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
msgstr ""
#: ../../include/enotify.php:114
#, php-format
msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
msgstr ""
#: ../../include/enotify.php:115
#, php-format
msgid "%s commented on an item/conversation you have been following."
msgstr ""
#: ../../include/enotify.php:118 ../../include/enotify.php:133
#: ../../include/enotify.php:146 ../../include/enotify.php:164
#: ../../include/enotify.php:177
#, php-format
msgid "Please visit %s to view and/or reply to the conversation."
msgstr ""
#: ../../include/enotify.php:125
#, php-format
msgid "[Friendica:Notify] %s posted to your profile wall"
msgstr ""
#: ../../include/enotify.php:127
#, php-format
msgid "%1$s posted to your profile wall at %2$s"
msgstr ""
#: ../../include/enotify.php:129
#, php-format
msgid "%1$s posted to [url=%2$s]your wall[/url]"
msgstr ""
#: ../../include/enotify.php:140
#, php-format
msgid "[Friendica:Notify] %s tagged you"
msgstr ""
#: ../../include/enotify.php:141
#, php-format
msgid "%1$s tagged you at %2$s"
msgstr ""
#: ../../include/enotify.php:142
#, php-format
msgid "%1$s [url=%2$s]tagged you[/url]."
msgstr ""
#: ../../include/enotify.php:154
#, php-format
msgid "[Friendica:Notify] %1$s poked you"
msgstr ""
#: ../../include/enotify.php:155
#, php-format
msgid "%1$s poked you at %2$s"
msgstr ""
#: ../../include/enotify.php:156
#, php-format
msgid "%1$s [url=%2$s]poked you[/url]."
msgstr ""
#: ../../include/enotify.php:171
#, php-format
msgid "[Friendica:Notify] %s tagged your post"
msgstr ""
#: ../../include/enotify.php:172
#, php-format
msgid "%1$s tagged your post at %2$s"
msgstr ""
#: ../../include/enotify.php:173
#, php-format
msgid "%1$s tagged [url=%2$s]your post[/url]"
msgstr ""
#: ../../include/enotify.php:184
msgid "[Friendica:Notify] Introduction received"
msgstr ""
#: ../../include/enotify.php:185
#, php-format
msgid "You've received an introduction from '%1$s' at %2$s"
msgstr ""
#: ../../include/enotify.php:186
#, php-format
msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
msgstr ""
#: ../../include/enotify.php:189 ../../include/enotify.php:207
#, php-format
msgid "You may visit their profile at %s"
msgstr ""
#: ../../include/enotify.php:191
#, php-format
msgid "Please visit %s to approve or reject the introduction."
msgstr ""
#: ../../include/enotify.php:198
msgid "[Friendica:Notify] Friend suggestion received"
msgstr ""
#: ../../include/enotify.php:199
#, php-format
msgid "You've received a friend suggestion from '%1$s' at %2$s"
msgstr ""
#: ../../include/enotify.php:200
#, php-format
msgid ""
"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
msgstr ""
#: ../../include/enotify.php:205
msgid "Name:"
msgstr ""
#: ../../include/enotify.php:206
msgid "Photo:"
msgstr ""
#: ../../include/enotify.php:209
#, php-format
msgid "Please visit %s to approve or reject the suggestion."
msgstr ""
#: ../../include/follow.php:32
msgid "Connect URL missing."
msgstr ""
#: ../../include/follow.php:59
msgid ""
"This site is not configured to allow communications with other networks."
msgstr "Dette nettverkets konfigurasjon tillater ikke kommunikasjon med andre nettverk."
#: ../../include/follow.php:60 ../../include/follow.php:80
msgid "No compatible communication protocols or feeds were discovered."
msgstr "Ingen passende kommunikasjonsprotokoller eller strømmer ble oppdaget."
#: ../../include/follow.php:78
msgid "The profile address specified does not provide adequate information."
msgstr "Den angitte profiladressen inneholder for lite information."
#: ../../include/follow.php:82
msgid "An author or name was not found."
msgstr "Fant ingen forfatter eller navn."
#: ../../include/follow.php:84
msgid "No browser URL could be matched to this address."
msgstr "Ingen nettleser-URL passet med denne adressen."
#: ../../include/follow.php:86
msgid ""
"Unable to match @-style Identity Address with a known protocol or email "
"contact."
msgstr ""
#: ../../include/follow.php:87
msgid "Use mailto: in front of address to force email check."
msgstr ""
#: ../../include/follow.php:93
msgid ""
"The profile address specified belongs to a network which has been disabled "
"on this site."
msgstr "Den oppgitte profiladressen tilhører et nettverk som har blitt avskrudd på dette nettstedet."
#: ../../include/follow.php:103
msgid ""
"Limited profile. This person will be unable to receive direct/personal "
"notifications from you."
msgstr "Begrenset profil. Denne personen kan ikke motta direkte/personlige oppdateringer fra deg."
#: ../../include/follow.php:205
msgid "Unable to retrieve contact information."
msgstr "Ikke i stand til å hente kontaktinformasjon."
#: ../../include/follow.php:259
msgid "following"
msgstr "følger"
#: ../../include/items.php:3299
msgid "A new person is sharing with you at "
msgstr ""
#: ../../include/items.php:3299
msgid "You have a new follower at "
msgstr "Du har en ny følgesvenn på "
#: ../../include/items.php:3980
msgid "Archives"
msgstr ""
#: ../../include/user.php:38
msgid "An invitation is required."
msgstr "En invitasjon er nødvendig."
#: ../../include/user.php:43
msgid "Invitation could not be verified."
msgstr "Invitasjon kunne ikke bekreftes."
#: ../../include/user.php:51
msgid "Invalid OpenID url"
msgstr "Ugyldig OpenID URL"
#: ../../include/user.php:66
msgid "Please enter the required information."
msgstr "Vennligst skriv inn den nødvendige informasjonen."
#: ../../include/user.php:80
msgid "Please use a shorter name."
msgstr "Vennligst bruk et kortere navn."
#: ../../include/user.php:82
msgid "Name too short."
msgstr "Navnet er for kort."
#: ../../include/user.php:97
msgid "That doesn't appear to be your full (First Last) name."
msgstr "Dette ser ikke ut til å være ditt full navn (Fornavn Etternavn)."
#: ../../include/user.php:102
msgid "Your email domain is not among those allowed on this site."
msgstr "Ditt e-postdomene er ikke blant de som er tillat på dette stedet."
#: ../../include/user.php:105
msgid "Not a valid email address."
msgstr "Ugyldig e-postadresse."
#: ../../include/user.php:115
msgid "Cannot use that email."
msgstr "Kan ikke bruke den e-postadressen."
#: ../../include/user.php:121
msgid ""
"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
"must also begin with a letter."
msgstr "Ditt kallenavn kan bare inneholde \"a-z\", \"0-9\", \"-\", \"_\", og må også begynne med en bokstav."
#: ../../include/user.php:127 ../../include/user.php:225
msgid "Nickname is already registered. Please choose another."
msgstr "Kallenavnet er allerede registrert. Vennligst velg et annet."
#: ../../include/user.php:137
msgid ""
"Nickname was once registered here and may not be re-used. Please choose "
"another."
msgstr ""
#: ../../include/user.php:153
msgid "SERIOUS ERROR: Generation of security keys failed."
msgstr "ALVORLIG FEIL: mislyktes med å lage sikkerhetsnøkler."
#: ../../include/user.php:211
msgid "An error occurred during registration. Please try again."
msgstr "En feil oppstod under registreringen. Vennligst prøv igjen."
#: ../../include/user.php:246
msgid "An error occurred creating your default profile. Please try again."
msgstr "En feil oppstod under opprettelsen av din standardprofil. Vennligst prøv igjen."
#: ../../include/security.php:22
msgid "Welcome "
msgstr "Velkommen"
#: ../../include/security.php:23
msgid "Please upload a profile photo."
msgstr "Vennligst last opp et profilbilde."
#: ../../include/security.php:26
msgid "Welcome back "
msgstr "Velkommen tilbake"
#: ../../include/security.php:344
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.php:111
msgid "stopped following"
msgstr "sluttet å følge"
#: ../../include/Contact.php:220 ../../include/conversation.php:734
msgid "Poke"
msgstr ""
#: ../../include/Contact.php:221 ../../include/conversation.php:728
msgid "View Status"
msgstr ""
#: ../../include/Contact.php:222 ../../include/conversation.php:729
msgid "View Profile"
msgstr ""
#: ../../include/Contact.php:223 ../../include/conversation.php:730
msgid "View Photos"
msgstr ""
#: ../../include/Contact.php:224 ../../include/Contact.php:237
#: ../../include/conversation.php:731
msgid "Network Posts"
msgstr ""
#: ../../include/Contact.php:225 ../../include/Contact.php:237
#: ../../include/conversation.php:732
msgid "Edit Contact"
msgstr ""
#: ../../include/Contact.php:226 ../../include/Contact.php:237
#: ../../include/conversation.php:733
msgid "Send PM"
msgstr "Send privat melding"
#: ../../include/conversation.php:206
#, php-format
msgid "%1$s poked %2$s"
msgstr ""
#: ../../include/conversation.php:290
msgid "post/item"
msgstr ""
#: ../../include/conversation.php:291
#, php-format
msgid "%1$s marked %2$s's %3$s as favorite"
msgstr ""
#: ../../include/conversation.php:545 ../../object/Item.php:218
msgid "Categories:"
msgstr ""
#: ../../include/conversation.php:546 ../../object/Item.php:219
msgid "Filed under:"
msgstr ""
#: ../../include/conversation.php:630
msgid "remove"
msgstr ""
#: ../../include/conversation.php:634
msgid "Delete Selected Items"
msgstr "Slette valgte elementer"
#: ../../include/conversation.php:792
#, php-format
msgid "%s likes this."
msgstr "%s liker dette."
#: ../../include/conversation.php:792
#, php-format
msgid "%s doesn't like this."
msgstr "%s liker ikke dette."
#: ../../include/conversation.php:796
#, php-format
msgid "<span %1$s>%2$d people</span> like this."
msgstr "<span %1$s>%2$d personer</span> liker dette."
#: ../../include/conversation.php:798
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this."
msgstr "<span %1$s>%2$d personer</span> liker ikke dette."
#: ../../include/conversation.php:804
msgid "and"
msgstr "og"
#: ../../include/conversation.php:807
#, php-format
msgid ", and %d other people"
msgstr ", og %d andre personer"
#: ../../include/conversation.php:808
#, php-format
msgid "%s like this."
msgstr "%s liker dette."
#: ../../include/conversation.php:808
#, php-format
msgid "%s don't like this."
msgstr "%s liker ikke dette."
#: ../../include/conversation.php:832 ../../include/conversation.php:849
msgid "Visible to <strong>everybody</strong>"
msgstr "Synlig for <strong>alle</strong>"
#: ../../include/conversation.php:834 ../../include/conversation.php:851
msgid "Please enter a video link/URL:"
msgstr ""
#: ../../include/conversation.php:835 ../../include/conversation.php:852
msgid "Please enter an audio link/URL:"
msgstr ""
#: ../../include/conversation.php:836 ../../include/conversation.php:853
msgid "Tag term:"
msgstr ""
#: ../../include/conversation.php:838 ../../include/conversation.php:855
msgid "Where are you right now?"
msgstr "Hvor er du akkurat nå?"
#: ../../include/conversation.php:898
msgid "upload photo"
msgstr ""
#: ../../include/conversation.php:900
msgid "attach file"
msgstr ""
#: ../../include/conversation.php:902
msgid "web link"
msgstr ""
#: ../../include/conversation.php:903
msgid "Insert video link"
msgstr ""
#: ../../include/conversation.php:904
msgid "video link"
msgstr ""
#: ../../include/conversation.php:905
msgid "Insert audio link"
msgstr ""
#: ../../include/conversation.php:906
msgid "audio link"
msgstr ""
#: ../../include/conversation.php:908
msgid "set location"
msgstr ""
#: ../../include/conversation.php:910
msgid "clear location"
msgstr ""
#: ../../include/conversation.php:917
msgid "permissions"
msgstr ""
#: ../../include/plugin.php:389 ../../include/plugin.php:391
msgid "Click here to upgrade."
msgstr ""
#: ../../include/plugin.php:397
msgid "This action exceeds the limits set by your subscription plan."
msgstr ""
#: ../../include/plugin.php:402
msgid "This action is not available under your subscription plan."
msgstr ""
#: ../../boot.php:573
msgid "Delete this item?"
msgstr "Slett dette elementet?"
#: ../../boot.php:576
msgid "show fewer"
msgstr ""
#: ../../boot.php:783
#, php-format
msgid "Update %s failed. See error logs."
msgstr "Oppdatering %s mislyktes. Se feilloggene."
#: ../../boot.php:785
#, php-format
msgid "Update Error at %s"
msgstr ""
#: ../../boot.php:886
msgid "Create a New Account"
msgstr "Lag en ny konto"
#: ../../boot.php:914
msgid "Nickname or Email address: "
msgstr "Kallenavn eller epostadresse: "
#: ../../boot.php:915
msgid "Password: "
msgstr "Passord: "
#: ../../boot.php:918
msgid "Or login using OpenID: "
msgstr ""
#: ../../boot.php:924
msgid "Forgot your password?"
msgstr "Glemt passordet?"
#: ../../boot.php:1035
msgid "Requested account is not available."
msgstr ""
#: ../../boot.php:1112
msgid "Edit profile"
msgstr "Rediger profil"
#: ../../boot.php:1178
msgid "Message"
msgstr ""
#: ../../boot.php:1300 ../../boot.php:1386
msgid "g A l F d"
msgstr ""
#: ../../boot.php:1301 ../../boot.php:1387
msgid "F d"
msgstr ""
#: ../../boot.php:1346 ../../boot.php:1427
msgid "[today]"
msgstr "[idag]"
#: ../../boot.php:1358
msgid "Birthday Reminders"
msgstr "Fødselsdager"
#: ../../boot.php:1359
msgid "Birthdays this week:"
msgstr "Fødselsdager denne uken:"
#: ../../boot.php:1420
msgid "[No description]"
msgstr "[Ingen beskrivelse]"
#: ../../boot.php:1438
msgid "Event Reminders"
msgstr "Påminnelser om hendelser"
#: ../../boot.php:1439
msgid "Events this week:"
msgstr "Hendelser denne uken:"
#: ../../boot.php:1668
msgid "Status Messages and Posts"
msgstr ""
#: ../../boot.php:1675
msgid "Profile Details"
msgstr ""
#: ../../boot.php:1692
msgid "Events and Calendar"
msgstr ""
#: ../../boot.php:1699
msgid "Only You Can See This"
msgstr ""

View file

@ -0,0 +1,20 @@
Kjære $[username],
Ditt passord har blitt endret som forespurt. Vennligst ta vare på denne
meldingen for sikkerhets skyld (eller bytt passordet ditt umiddelbart til
noe du husker).
Dine logg inn-detaljer er som følger:
Nettsted:»$[siteurl]
Brukernavn:»$[email]
Passord:»$[new_password]
Du kan endre dette passordet på din side for kontoinnstillinger etter innlogging.
Med vennlig hilsen,
$[sitename] administrator

View file

@ -0,0 +1,34 @@
Kjære $[username],
Takk for at du registrerte deg hos $[sitename]. Kontoen din er opprettet.
Innloggingsdetaljene er som følger:
Nettstedsadresse:»$[siteurl]
Brukernavn:»$[email]
Passord:»$[password]
Du kan endre passordet ditt på siden "Innstillinger" etter at du har logget
inn.
Vennligst bruk litt tid til å se over de andre kontoinnstillingene på den siden.
Du vil antakelig ønske å legge til litt grunnleggende informasjon til standardprofilen din
(på siden "Profiler") slik at folk lettere kan finne deg.
Vi anbefaler å oppgi fullt navn, legge til et profilbilde,
legge til noen "nøkkelord" for profilen (svært nyttig for å få nye venner) - og
kanskje hvilket land du bor i, hvis du ikke ønsker å være mer spesifikk
enn det.
Vi respekterer ditt privatliv fullt ut, og ingen av disse elementene er nødvendige.
Hvis du er ny og ikke kjenner noen her, så kan de hjelpe
deg å få noen nye og interessante venner.
Takk og velkommen til $[sitename].
Beste hilsen,
$[sitename] administrator

View file

@ -0,0 +1,25 @@
En ny forespørsel om brukerregistering ble mottatt hos $[sitename] og krever
din godkjenning.
Innloggingsdetaljene er som følger:
Fullt navn:»$[username]
Nettstedsadresse:»$[siteurl]
Brukernavn:»$[email]
For å godkjenne denne forespørselen, vennligst besøk følgende lenke:
$[siteurl]/regmod/allow/$[hash]
For å avslå denne forespørselen og fjerne kontoen, vennligst besøk:
$[siteurl]/regmod/deny/$[hash]
Mange takk.

View file

@ -0,0 +1,17 @@
Kjære $[myname],
Du har akkurat mottatt en kontaktforespørsel hos $[sitename]
fra '$[requestor]'.
Du kan besøke profilen på $[url].
Vennligst logg inn på ditt nettsted for å se hele introduksjonen
og godkjenne eller ignorere/avbryte forespørselen.
$[siteurl]
Beste hilsen,
$[siteurl] administrator

2006
view/nb-no/strings.php Normal file
View file

@ -0,0 +1,2006 @@
<?php
function string_plural_select_nb_NO($n){
return ($n != 1);;
}
;
$a->strings["Post successful."] = "Innlegg vellykket.";
$a->strings["[Embedded content - reload page to view]"] = "[Innebygget innhold - hent siden på nytt for å se det]";
$a->strings["Contact settings applied."] = "Kontaktinnstillinger i bruk.";
$a->strings["Contact update failed."] = "Kontaktoppdatering mislyktes.";
$a->strings["Permission denied."] = "Ingen tilgang.";
$a->strings["Contact not found."] = "Kontakt ikke funnet.";
$a->strings["Repair Contact Settings"] = "Reparer kontaktinnstillinger";
$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "";
$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Vennligst bruk Tilbake-knappen i nettleseren din <strong>nå</strong> hvis du er usikker på hva du bør gjøre på denne siden.";
$a->strings["Return to contact editor"] = "";
$a->strings["Name"] = "Navn";
$a->strings["Account Nickname"] = "Konto Kallenavn";
$a->strings["@Tagname - overrides Name/Nickname"] = "";
$a->strings["Account URL"] = "Konto URL";
$a->strings["Friend Request URL"] = "Venneforespørsel URL";
$a->strings["Friend Confirm URL"] = "Vennebekreftelse URL";
$a->strings["Notification Endpoint URL"] = "Endepunkt URL for beskjed";
$a->strings["Poll/Feed URL"] = "Poll/Feed URL";
$a->strings["New photo from this URL"] = "";
$a->strings["Submit"] = "Lagre";
$a->strings["Help:"] = "Hjelp:";
$a->strings["Help"] = "Hjelp";
$a->strings["Not Found"] = "Ikke funnet";
$a->strings["Page not found."] = "Fant ikke siden.";
$a->strings["File exceeds size limit of %d"] = "Filstørrelsen er større enn begrensning på %d";
$a->strings["File upload failed."] = "Opplasting av filen mislyktes.";
$a->strings["Friend suggestion sent."] = "Venneforslag sendt.";
$a->strings["Suggest Friends"] = "Foreslå venner";
$a->strings["Suggest a friend for %s"] = "Foreslå en venn for %s";
$a->strings["Event title and start time are required."] = "";
$a->strings["l, F j"] = "";
$a->strings["Edit event"] = "Rediger hendelse";
$a->strings["link to source"] = "lenke til kilde";
$a->strings["Events"] = "Hendelser";
$a->strings["Create New Event"] = "Lag ny hendelse";
$a->strings["Previous"] = "Forrige";
$a->strings["Next"] = "Neste";
$a->strings["hour:minute"] = "time:minutt";
$a->strings["Event details"] = "Hendelsesdetaljer";
$a->strings["Format is %s %s. Starting date and Title are required."] = "";
$a->strings["Event Starts:"] = "Hendelsen starter:";
$a->strings["Required"] = "";
$a->strings["Finish date/time is not known or not relevant"] = "Avslutningsdato/-tid er ukjent eller ikke relevant";
$a->strings["Event Finishes:"] = "Hendelsen slutter:";
$a->strings["Adjust for viewer timezone"] = "Tilpass til iakttakerens tidssone";
$a->strings["Description:"] = "Beskrivelse:";
$a->strings["Location:"] = "Plassering:";
$a->strings["Title:"] = "";
$a->strings["Share this event"] = "Del denne hendelsen";
$a->strings["Cancel"] = "Avbryt";
$a->strings["Tag removed"] = "Fjernet tag";
$a->strings["Remove Item Tag"] = "Fjern tag";
$a->strings["Select a tag to remove: "] = "Velg en tag å fjerne:";
$a->strings["Remove"] = "Slett";
$a->strings["%s welcomes %s"] = "%s hilser %s velkommen";
$a->strings["Authorize application connection"] = "";
$a->strings["Return to your app and insert this Securty Code:"] = "";
$a->strings["Please login to continue."] = "";
$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "";
$a->strings["Yes"] = "Ja";
$a->strings["No"] = "Nei";
$a->strings["Photo Albums"] = "Fotoalbum";
$a->strings["Contact Photos"] = "Kontaktbilder";
$a->strings["Upload New Photos"] = "Last opp nye bilder";
$a->strings["everybody"] = "alle";
$a->strings["Contact information unavailable"] = "Kontaktinformasjon utilgjengelig";
$a->strings["Profile Photos"] = "Profilbilder";
$a->strings["Album not found."] = "Album ble ikke funnet.";
$a->strings["Delete Album"] = "Slett album";
$a->strings["Delete Photo"] = "Slett bilde";
$a->strings["was tagged in a"] = "ble tagget i et";
$a->strings["photo"] = "bilde";
$a->strings["by"] = "av";
$a->strings["Image exceeds size limit of "] = "Bilde overstiger størrelsesbegrensningen på ";
$a->strings["Image file is empty."] = "Bildefilen er tom.";
$a->strings["Unable to process image."] = "Ikke i stand til å behandle bildet.";
$a->strings["Image upload failed."] = "Mislyktes med å laste opp bilde.";
$a->strings["Public access denied."] = "Offentlig tilgang ikke tillatt.";
$a->strings["No photos selected"] = "Ingen bilder er valgt";
$a->strings["Access to this item is restricted."] = "Tilgang til dette elementet er begrenset.";
$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "";
$a->strings["You have used %1$.2f Mbytes of photo storage."] = "";
$a->strings["Upload Photos"] = "Last opp bilder";
$a->strings["New album name: "] = "Nytt albumnavn:";
$a->strings["or existing album name: "] = "eller eksisterende albumnavn:";
$a->strings["Do not show a status post for this upload"] = "Ikke vis statusoppdatering for denne opplastingen";
$a->strings["Permissions"] = "Tillatelser";
$a->strings["Edit Album"] = "Endre album";
$a->strings["Show Newest First"] = "";
$a->strings["Show Oldest First"] = "";
$a->strings["View Photo"] = "Vis bilde";
$a->strings["Permission denied. Access to this item may be restricted."] = "Tilgang nektet. Tilgang til dette elementet kan være begrenset.";
$a->strings["Photo not available"] = "Bilde ikke tilgjengelig";
$a->strings["View photo"] = "Vis foto";
$a->strings["Edit photo"] = "Endre bilde";
$a->strings["Use as profile photo"] = "Bruk som profilbilde";
$a->strings["Private Message"] = "Privat melding";
$a->strings["View Full Size"] = "Vis i full størrelse";
$a->strings["Tags: "] = "Tagger:";
$a->strings["[Remove any tag]"] = "[Fjern en tag]";
$a->strings["Rotate CW (right)"] = "";
$a->strings["Rotate CCW (left)"] = "";
$a->strings["New album name"] = "Nytt albumnavn";
$a->strings["Caption"] = "Overskrift";
$a->strings["Add a Tag"] = "Legg til tag";
$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Eksempel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
$a->strings["I like this (toggle)"] = "Jeg liker dette (skru på/av)";
$a->strings["I don't like this (toggle)"] = "Jeg liker ikke dette (skru på/av)";
$a->strings["Share"] = "Del";
$a->strings["Please wait"] = "Vennligst vent";
$a->strings["This is you"] = "Dette er deg";
$a->strings["Comment"] = "Kommentar";
$a->strings["Preview"] = "";
$a->strings["Delete"] = "Slett";
$a->strings["View Album"] = "Vis album";
$a->strings["Recent Photos"] = "Nye bilder";
$a->strings["Not available."] = "Ikke tilgjengelig.";
$a->strings["Community"] = "Fellesskap";
$a->strings["No results."] = "Fant ikke noe.";
$a->strings["This is Friendica, version"] = "";
$a->strings["running at web location"] = "kjører på web-plassering";
$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "";
$a->strings["Bug reports and issues: please visit"] = "Feilrapporter og problemer: vennligst besøk";
$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "";
$a->strings["Installed plugins/addons/apps:"] = "";
$a->strings["No installed plugins/addons/apps"] = "Ingen installerte plugins/tillegg/apper";
$a->strings["Item not found"] = "Fant ikke elementet";
$a->strings["Edit post"] = "Endre innlegg";
$a->strings["Post to Email"] = "Innlegg til e-post";
$a->strings["Edit"] = "Endre";
$a->strings["Upload photo"] = "Last opp bilde";
$a->strings["Attach file"] = "Legg ved fil";
$a->strings["Insert web link"] = "Sett inn web-adresse";
$a->strings["Insert YouTube video"] = "Sett inn YouTube-video";
$a->strings["Insert Vorbis [.ogg] video"] = "Sett inn Vorbis [.ogg] video";
$a->strings["Insert Vorbis [.ogg] audio"] = "Sett inn Vorbis [ogg] lydfil";
$a->strings["Set your location"] = "Angi din plassering";
$a->strings["Clear browser location"] = "Fjern nettleserplassering";
$a->strings["Permission settings"] = "Tillatelser";
$a->strings["CC: email addresses"] = "Kopi: e-postadresser";
$a->strings["Public post"] = "Offentlig innlegg";
$a->strings["Set title"] = "Lagre tittel";
$a->strings["Categories (comma-separated list)"] = "";
$a->strings["Example: bob@example.com, mary@example.com"] = "Eksempel: ola@example.com, kari@example.com";
$a->strings["This introduction has already been accepted."] = "Denne introduksjonen har allerede blitt akseptert.";
$a->strings["Profile location is not valid or does not contain profile information."] = "Profilstedet er ikke gyldig og inneholder ikke profilinformasjon.";
$a->strings["Warning: profile location has no identifiable owner name."] = "Advarsel: profilstedet har ikke identifiserbart eiernavn.";
$a->strings["Warning: profile location has no profile photo."] = "Advarsel: profilstedet har ikke noe profilbilde.";
$a->strings["%d required parameter was not found at the given location"] = array(
0 => "one: %d nødvendig parameter ble ikke funnet på angitt sted",
1 => "other: %d nødvendige parametre ble ikke funnet på angitt sted",
);
$a->strings["Introduction complete."] = "Introduksjon ferdig.";
$a->strings["Unrecoverable protocol error."] = "Uopprettelig protokollfeil.";
$a->strings["Profile unavailable."] = "Profil utilgjengelig.";
$a->strings["%s has received too many connection requests today."] = "%s har mottatt for mange kontaktforespørsler idag.";
$a->strings["Spam protection measures have been invoked."] = "Tiltak mot søppelpost har blitt iverksatt.";
$a->strings["Friends are advised to please try again in 24 hours."] = "Venner anbefales å prøve igjen om 24 timer.";
$a->strings["Invalid locator"] = "Ugyldig stedsangivelse";
$a->strings["Invalid email address."] = "";
$a->strings["This account has not been configured for email. Request failed."] = "Denne kontoen er ikke konfigurert for e-post. Forespørsel mislyktes.";
$a->strings["Unable to resolve your name at the provided location."] = "Ikke i stand til å avgjøre navnet ditt hos det oppgitte stedet.";
$a->strings["You have already introduced yourself here."] = "Du har allerede introdusert deg selv her.";
$a->strings["Apparently you are already friends with %s."] = "Du er visst allerede venn med %s.";
$a->strings["Invalid profile URL."] = "Ugyldig profil-URL.";
$a->strings["Disallowed profile URL."] = "Underkjent profil-URL.";
$a->strings["Failed to update contact record."] = "Mislyktes med å oppdatere kontaktposten.";
$a->strings["Your introduction has been sent."] = "Din introduksjon er sendt.";
$a->strings["Please login to confirm introduction."] = "Vennligst logg inn for å bekrefte introduksjonen.";
$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Feil identitet er logget inn for øyeblikket. Vennligst logg inn i <strong>denne</strong> profilen.";
$a->strings["Hide this contact"] = "";
$a->strings["Welcome home %s."] = "Velkommen hjem %s.";
$a->strings["Please confirm your introduction/connection request to %s."] = "Vennligst bekreft din introduksjons-/forbindelses- forespørsel til %s.";
$a->strings["Confirm"] = "Bekreft";
$a->strings["[Name Withheld]"] = "[Navnet tilbakeholdt]";
$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "";
$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "";
$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "";
$a->strings["Friend/Connection Request"] = "Venne-/Koblings-forespørsel";
$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "";
$a->strings["Please answer the following:"] = "Vennligst svar på følgende:";
$a->strings["Does %s know you?"] = "Kjenner %s deg?";
$a->strings["Add a personal note:"] = "Legg til en personlig melding:";
$a->strings["Friendica"] = "";
$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federeated Social Web";
$a->strings["Diaspora"] = "Diaspora";
$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "";
$a->strings["Your Identity Address:"] = "Din identitetsadresse:";
$a->strings["Submit Request"] = "Send forespørsel";
$a->strings["Friendica Social Communications Server - Setup"] = "";
$a->strings["Could not connect to database."] = "";
$a->strings["Could not create table."] = "";
$a->strings["Your Friendica site database has been installed."] = "";
$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Du må kanskje importere filen \"database.sql\" manuelt ved hjelp av phpmyadmin eller mysql.";
$a->strings["Please see the file \"INSTALL.txt\"."] = "Vennligst se filen \"INSTALL.txt\".";
$a->strings["System check"] = "";
$a->strings["Check again"] = "";
$a->strings["Database connection"] = "";
$a->strings["In order to install Friendica we need to know how to connect to your database."] = "";
$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Vennligst kontakt din tilbyder eller administrator hvis du har spørsmål til disse innstillingene.";
$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databasen du oppgir nedenfor må finnes. Hvis ikke, vennligst opprett den før du fortsetter.";
$a->strings["Database Server Name"] = "Databasetjenerens navn";
$a->strings["Database Login Name"] = "Database brukernavn";
$a->strings["Database Login Password"] = "Database passord";
$a->strings["Database Name"] = "Databasenavn";
$a->strings["Site administrator email address"] = "";
$a->strings["Your account email address must match this in order to use the web admin panel."] = "";
$a->strings["Please select a default timezone for your website"] = "Vennligst velg en standard tidssone for ditt nettsted";
$a->strings["Site settings"] = "";
$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Fant ikke en kommandolinjeversjon av PHP i webtjenerens PATH.";
$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "";
$a->strings["PHP executable path"] = "";
$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "";
$a->strings["Command line PHP"] = "";
$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Kommandolinjeversjonen av PHP på ditt system har ikke \"register_argc_argv\" aktivert.";
$a->strings["This is required for message delivery to work."] = "Dette er nødvendig for at meldingslevering skal virke.";
$a->strings["PHP register_argc_argv"] = "";
$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Feil: \"openssl_pkey_new\"-funksjonen på dette systemet er ikke i stand til å lage krypteringsnøkler";
$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "For kjøring på Windows, vennligst se \"http://www.php.net/manual/en/openssl.installation.php\".";
$a->strings["Generate encryption keys"] = "";
$a->strings["libCurl PHP module"] = "";
$a->strings["GD graphics PHP module"] = "";
$a->strings["OpenSSL PHP module"] = "";
$a->strings["mysqli PHP module"] = "";
$a->strings["mb_string PHP module"] = "";
$a->strings["Apache mod_rewrite module"] = "";
$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Feil: Modulen mod-rewrite for Apache-webtjeneren er påkrevet, men er ikke installert.";
$a->strings["Error: libCURL PHP module required but not installed."] = "Feil: libCURL PHP-modulen er påkrevet, men er ikke installert.";
$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Feil: GD graphics PHP-modulen med JPEG-støtte er påkrevet, men er ikke installert.";
$a->strings["Error: openssl PHP module required but not installed."] = "Feil: openssl PHP-modulen er påkrevet, men er ikke installert.";
$a->strings["Error: mysqli PHP module required but not installed."] = "Feil: mysqli PHP-modulen er påkrevet, men er ikke installert.";
$a->strings["Error: mb_string PHP module required but not installed."] = "Feil: mb_string PHP-modulen er påkrevet men ikke installert.";
$a->strings["The web installer needs to be able to create a file called \".htconfig.php\ in the top folder of your web server and it is unable to do so."] = "Web-installatøren trenger å kunne lage filen \".htconfig.php\" i topp-folderen på web-tjeneren din, men den får ikke til dette.";
$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Dette skyldes oftest manglende tillatelse, ettersom web-tjeneren kanskje ikke kan skrive filer i din mappe - selv om du kan.";
$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "";
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "";
$a->strings[".htconfig.php is writable"] = "";
$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
$a->strings["Url rewrite is working"] = "";
$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Filen \".htconfig.php\" med databasekonfigurasjonen kunne ikke bli skrevet. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i roten på din web-tjener.";
$a->strings["Errors encountered creating database tables."] = "Feil oppstod under opprettelsen av databasetabeller.";
$a->strings["<h1>What next</h1>"] = "";
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "VIKTIG: Du må [manuelt] sette opp en planlagt oppgave for oppdatering.";
$a->strings["l F d, Y \\@ g:i A"] = "";
$a->strings["Time Conversion"] = "Tidskonvertering";
$a->strings["Friendika provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica har denne tjenesten for å dele hendelser med andre nettverk og venner i ukjente tidssoner.";
$a->strings["UTC time: %s"] = "UTC tid: %s";
$a->strings["Current timezone: %s"] = "Gjeldende tidssone: %s";
$a->strings["Converted localtime: %s"] = "Konvertert lokaltid: %s";
$a->strings["Please select your timezone:"] = "Vennligst velg din tidssone:";
$a->strings["Poke/Prod"] = "";
$a->strings["poke, prod or do other things to somebody"] = "";
$a->strings["Recipient"] = "";
$a->strings["Choose what you wish to do to recipient"] = "";
$a->strings["Make this post private"] = "";
$a->strings["Profile Match"] = "Profiltreff";
$a->strings["No keywords to match. Please add keywords to your default profile."] = "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord i din standardprofil.";
$a->strings["is interested in:"] = "";
$a->strings["Connect"] = "Forbindelse";
$a->strings["No matches"] = "Ingen treff";
$a->strings["Remote privacy information not available."] = "Ekstern informasjon om privatlivsinnstillinger er ikke tilgjengelig.";
$a->strings["Visible to:"] = "Synlig for:";
$a->strings["No such group"] = "Gruppen finnes ikke";
$a->strings["Group is empty"] = "Gruppen er tom";
$a->strings["Group: "] = "Gruppe:";
$a->strings["Select"] = "Velg";
$a->strings["View %s's profile @ %s"] = "";
$a->strings["%s from %s"] = "%s fra %s";
$a->strings["View in context"] = "Vis i sammenheng";
$a->strings["%d comment"] = array(
0 => "",
1 => "",
);
$a->strings["comment"] = array(
0 => "",
1 => "",
);
$a->strings["show more"] = "";
$a->strings["like"] = "";
$a->strings["dislike"] = "";
$a->strings["Share this"] = "";
$a->strings["share"] = "";
$a->strings["Bold"] = "";
$a->strings["Italic"] = "";
$a->strings["Underline"] = "";
$a->strings["Quote"] = "";
$a->strings["Code"] = "";
$a->strings["Image"] = "";
$a->strings["Link"] = "";
$a->strings["Video"] = "";
$a->strings["add star"] = "";
$a->strings["remove star"] = "";
$a->strings["toggle star status"] = "veksle stjernestatus";
$a->strings["starred"] = "";
$a->strings["add tag"] = "";
$a->strings["save to folder"] = "";
$a->strings["to"] = "til";
$a->strings["Wall-to-Wall"] = "vegg-til-vegg";
$a->strings["via Wall-To-Wall:"] = "via vegg-til-vegg";
$a->strings["Welcome to %s"] = "Velkommen til %s";
$a->strings["Invalid request identifier."] = "Ugyldig forespørselsidentifikator.";
$a->strings["Discard"] = "Forkast";
$a->strings["Ignore"] = "Ignorer";
$a->strings["System"] = "";
$a->strings["Network"] = "Nettverk";
$a->strings["Personal"] = "";
$a->strings["Home"] = "Hjem";
$a->strings["Introductions"] = "";
$a->strings["Messages"] = "Meldinger";
$a->strings["Show Ignored Requests"] = "Vis ignorerte forespørsler";
$a->strings["Hide Ignored Requests"] = "Skjul ignorerte forespørsler";
$a->strings["Notification type: "] = "Beskjedtype:";
$a->strings["Friend Suggestion"] = "Venneforslag";
$a->strings["suggested by %s"] = "foreslått av %s";
$a->strings["Hide this contact from others"] = "";
$a->strings["Post a new friend activity"] = "";
$a->strings["if applicable"] = "";
$a->strings["Approve"] = "Godkjenn";
$a->strings["Claims to be known to you: "] = "Påstår å kjenne deg:";
$a->strings["yes"] = "ja";
$a->strings["no"] = "ei";
$a->strings["Approve as: "] = "Godkjenn som:";
$a->strings["Friend"] = "Venn";
$a->strings["Sharer"] = "";
$a->strings["Fan/Admirer"] = "Fan/Beundrer";
$a->strings["Friend/Connect Request"] = "Venn/kontakt-forespørsel";
$a->strings["New Follower"] = "Ny følgesvenn";
$a->strings["No introductions."] = "";
$a->strings["Notifications"] = "Varslinger";
$a->strings["%s liked %s's post"] = "";
$a->strings["%s disliked %s's post"] = "";
$a->strings["%s is now friends with %s"] = "";
$a->strings["%s created a new post"] = "";
$a->strings["%s commented on %s's post"] = "";
$a->strings["No more network notifications."] = "";
$a->strings["Network Notifications"] = "";
$a->strings["No more system notifications."] = "";
$a->strings["System Notifications"] = "";
$a->strings["No more personal notifications."] = "";
$a->strings["Personal Notifications"] = "";
$a->strings["No more home notifications."] = "";
$a->strings["Home Notifications"] = "";
$a->strings["Could not access contact record."] = "Fikk ikke tilgang til kontaktposten.";
$a->strings["Could not locate selected profile."] = "Kunne ikke lokalisere valgt profil.";
$a->strings["Contact updated."] = "Kontakt oppdatert.";
$a->strings["Contact has been blocked"] = "Kontakten er blokkert";
$a->strings["Contact has been unblocked"] = "Kontakten er ikke blokkert lenger";
$a->strings["Contact has been ignored"] = "Kontakten er ignorert";
$a->strings["Contact has been unignored"] = "Kontakten er ikke ignorert lenger";
$a->strings["Contact has been archived"] = "";
$a->strings["Contact has been unarchived"] = "";
$a->strings["Contact has been removed."] = "Kontakten er fjernet.";
$a->strings["You are mutual friends with %s"] = "Du er gjensidig venn med %s";
$a->strings["You are sharing with %s"] = "Du deler med %s";
$a->strings["%s is sharing with you"] = "%s deler med deg";
$a->strings["Private communications are not available for this contact."] = "Privat kommunikasjon er ikke tilgjengelig mot denne kontakten.";
$a->strings["Never"] = "Aldri";
$a->strings["(Update was successful)"] = "(Oppdatering vellykket)";
$a->strings["(Update was not successful)"] = "(Oppdatering mislykket)";
$a->strings["Suggest friends"] = "Foreslå venner";
$a->strings["Network type: %s"] = "Nettverkstype: %s";
$a->strings["%d contact in common"] = array(
0 => "%d felles kontakt",
1 => "%d felles kontakter",
);
$a->strings["View all contacts"] = "Vis alle kontakter";
$a->strings["Unblock"] = "Ikke blokker";
$a->strings["Block"] = "Blokker";
$a->strings["Toggle Blocked status"] = "";
$a->strings["Unignore"] = "Fjern ignorering";
$a->strings["Toggle Ignored status"] = "";
$a->strings["Unarchive"] = "";
$a->strings["Archive"] = "";
$a->strings["Toggle Archive status"] = "";
$a->strings["Repair"] = "Reparer";
$a->strings["Advanced Contact Settings"] = "";
$a->strings["Communications lost with this contact!"] = "";
$a->strings["Contact Editor"] = "Endre kontakt";
$a->strings["Profile Visibility"] = "Profilens synlighet";
$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Vennligst velg profilen du ønsker å vise til %s når denne ser profilen på en sikret måte.";
$a->strings["Contact Information / Notes"] = "Kontaktinformasjon/-notater";
$a->strings["Edit contact notes"] = "Endre kontaktnotater";
$a->strings["Visit %s's profile [%s]"] = "Besøk %ss profil [%s]";
$a->strings["Block/Unblock contact"] = "Blokker kontakt/fjern blokkering for kontakt";
$a->strings["Ignore contact"] = "Ignorer kontakt";
$a->strings["Repair URL settings"] = "Reparer URL-innstillinger";
$a->strings["View conversations"] = "Vis samtaler";
$a->strings["Delete contact"] = "Slett kontakt";
$a->strings["Last update:"] = "Siste oppdatering:";
$a->strings["Update public posts"] = "Oppdater offentlige innlegg";
$a->strings["Update now"] = "Oppdater nå";
$a->strings["Currently blocked"] = "Blokkert nå";
$a->strings["Currently ignored"] = "Ignorert nå";
$a->strings["Currently archived"] = "";
$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "";
$a->strings["Suggestions"] = "";
$a->strings["Suggest potential friends"] = "";
$a->strings["All Contacts"] = "Alle kontakter";
$a->strings["Show all contacts"] = "";
$a->strings["Unblocked"] = "";
$a->strings["Only show unblocked contacts"] = "";
$a->strings["Blocked"] = "";
$a->strings["Only show blocked contacts"] = "";
$a->strings["Ignored"] = "";
$a->strings["Only show ignored contacts"] = "";
$a->strings["Archived"] = "";
$a->strings["Only show archived contacts"] = "";
$a->strings["Hidden"] = "";
$a->strings["Only show hidden contacts"] = "";
$a->strings["Mutual Friendship"] = "Gjensidig vennskap";
$a->strings["is a fan of yours"] = "er en tilhenger av deg";
$a->strings["you are a fan of"] = "du er en tilhenger av";
$a->strings["Edit contact"] = "Endre kontakt";
$a->strings["Contacts"] = "Kontakter";
$a->strings["Search your contacts"] = "Søk i dine kontakter";
$a->strings["Finding: "] = "Fant:";
$a->strings["Find"] = "Finn";
$a->strings["No valid account found."] = "Fant ingen gyldig konto.";
$a->strings["Password reset request issued. Check your email."] = "Forespørsel om å tilbakestille passord er sendt. Sjekk e-posten din.";
$a->strings["Password reset requested at %s"] = "Forespørsel om tilbakestilling av passord ved %s";
$a->strings["Administrator"] = "Administrator";
$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Forespørselen kunne ikke verifiseres. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord milslyktes.";
$a->strings["Password Reset"] = "Passord tilbakestilling";
$a->strings["Your password has been reset as requested."] = "Ditt passord er tilbakestilt som forespurt.";
$a->strings["Your new password is"] = "Ditt nye passord er";
$a->strings["Save or copy your new password - and then"] = "Lagre eller kopier ditt nye passord, og deretter";
$a->strings["click here to login"] = "klikk her for å logge inn";
$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Passordet ditt kan endres fra siden <em>Innstillinger</em> etter vellykket logg inn.";
$a->strings["Forgot your Password?"] = "Glemte du passordet?";
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Skriv inn e-postadressen og send inn for å tilbakestille passordet ditt. Sjekk deretter e-posten din for nærmere forklaring.";
$a->strings["Nickname or Email: "] = "Kallenavn eller e-post:";
$a->strings["Reset"] = "Tilbakestill";
$a->strings["Account settings"] = "Kontoinnstillinger";
$a->strings["Display settings"] = "";
$a->strings["Connector settings"] = "Koblingsinnstillinger";
$a->strings["Plugin settings"] = "Tilleggsinnstillinger";
$a->strings["Connected apps"] = "Tilkoblede programmer";
$a->strings["Export personal data"] = "Eksporter personlige data";
$a->strings["Remove account"] = "";
$a->strings["Settings"] = "Innstillinger";
$a->strings["Missing some important data!"] = "Mangler noen viktige data!";
$a->strings["Update"] = "Oppdater";
$a->strings["Failed to connect with email account using the settings provided."] = "Mislyktes i å opprette forbindelse med e-postkontoen med de oppgitte innstillingene.";
$a->strings["Email settings updated."] = "E-postinnstillinger er oppdatert.";
$a->strings["Passwords do not match. Password unchanged."] = "Passordene er ikke like. Passord uendret.";
$a->strings["Empty passwords are not allowed. Password unchanged."] = "Tomme passord er ikke lov. Passord uendret.";
$a->strings["Password changed."] = "Passord endret.";
$a->strings["Password update failed. Please try again."] = "Passordoppdatering mislyktes. Vennligst prøv igjen.";
$a->strings[" Please use a shorter name."] = "Vennligst bruk et kortere navn.";
$a->strings[" Name too short."] = "Navnet er for kort.";
$a->strings[" Not valid email."] = "Ugyldig e-postadresse.";
$a->strings[" Cannot change to that email."] = "Kan ikke endre til den e-postadressen.";
$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "";
$a->strings["Private forum has no privacy permissions and no default privacy group."] = "";
$a->strings["Settings updated."] = "Innstillinger oppdatert.";
$a->strings["Add application"] = "Legg til program";
$a->strings["Consumer Key"] = "Consumer Key";
$a->strings["Consumer Secret"] = "Consumer Secret";
$a->strings["Redirect"] = "Omdiriger";
$a->strings["Icon url"] = "Ikon URL";
$a->strings["You can't edit this application."] = "Du kan ikke redigere dette programmet.";
$a->strings["Connected Apps"] = "Tilkoblede programmer";
$a->strings["Client key starts with"] = "Klientnøkkelen starter med";
$a->strings["No name"] = "Ingen navn";
$a->strings["Remove authorization"] = "Fjern tillatelse";
$a->strings["No Plugin settings configured"] = "Ingen tilleggsinnstillinger konfigurert";
$a->strings["Plugin Settings"] = "Tilleggsinnstillinger";
$a->strings["Built-in support for %s connectivity is %s"] = "Innebygget støtte for %s forbindelse er %s";
$a->strings["enabled"] = "aktivert";
$a->strings["disabled"] = "avskrudd";
$a->strings["StatusNet"] = "StatusNet";
$a->strings["Email access is disabled on this site."] = "E-posttilgang er avskrudd på dette stedet.";
$a->strings["Connector Settings"] = "Koblingsinnstillinger";
$a->strings["Email/Mailbox Setup"] = "E-post-/postboksinnstillinger";
$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Hvis du ønsker å kommunisere med e-postkontakter via denne tjenesten (frivillig), vennligst oppgi hvordan din postboks kontaktes.";
$a->strings["Last successful email check:"] = "Siste vellykkede e-postsjekk:";
$a->strings["IMAP server name:"] = "IMAP-tjeners navn:";
$a->strings["IMAP port:"] = "IMAP port:";
$a->strings["Security:"] = "Sikkerhet:";
$a->strings["None"] = "Ingen";
$a->strings["Email login name:"] = "E-post brukernavn:";
$a->strings["Email password:"] = "E-post passord:";
$a->strings["Reply-to address:"] = "Svar-til-adresse:";
$a->strings["Send public posts to all email contacts:"] = "Send offentlige meldinger til alle e-postkontakter:";
$a->strings["Action after import:"] = "";
$a->strings["Mark as seen"] = "";
$a->strings["Move to folder"] = "";
$a->strings["Move to folder:"] = "";
$a->strings["No special theme for mobile devices"] = "";
$a->strings["Display Settings"] = "";
$a->strings["Display Theme:"] = "Vis tema:";
$a->strings["Mobile Theme:"] = "";
$a->strings["Update browser every xx seconds"] = "";
$a->strings["Minimum of 10 seconds, no maximum"] = "";
$a->strings["Number of items to display per page:"] = "";
$a->strings["Maximum of 100 items"] = "";
$a->strings["Don't show emoticons"] = "";
$a->strings["Normal Account Page"] = "";
$a->strings["This account is a normal personal profile"] = "Denne kontoen er en vanlig personlig profil";
$a->strings["Soapbox Page"] = "";
$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Automatisk godkjenning av alle forespørsler om forbindelse/venner som fans med kun leserettigheter";
$a->strings["Community Forum/Celebrity Account"] = "";
$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Automatisk godkjenning av alle forespørsler om forbindelse/venner som fans med lese- og skriverettigheter";
$a->strings["Automatic Friend Page"] = "";
$a->strings["Automatically approve all connection/friend requests as friends"] = "Automatisk godkjenning av alle forespørsler om forbindelse/venner som venner";
$a->strings["Private Forum [Experimental]"] = "";
$a->strings["Private forum - approved members only"] = "";
$a->strings["OpenID:"] = "OpenID:";
$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Valgfritt) Tillat denne OpenID-en å logge inn i denne kontoen.";
$a->strings["Publish your default profile in your local site directory?"] = "Skal standardprofilen din publiseres i katalogen til nettstedet ditt?";
$a->strings["Publish your default profile in the global social directory?"] = "Skal standardprofilen din publiseres i den globale sosiale katalogen?";
$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Skjul kontakt-/venne-listen din for besøkende til standardprofilen din?";
$a->strings["Hide your profile details from unknown viewers?"] = "";
$a->strings["Allow friends to post to your profile page?"] = "Tillat venner å poste innlegg på din profilside?";
$a->strings["Allow friends to tag your posts?"] = "Tillat venner å merke dine innlegg?";
$a->strings["Allow us to suggest you as a potential friend to new members?"] = "";
$a->strings["Permit unknown people to send you private mail?"] = "";
$a->strings["Profile is <strong>not published</strong>."] = "Profilen er <strong>ikke publisert</strong>.";
$a->strings["or"] = "eller";
$a->strings["Your Identity Address is"] = "Din identitetsadresse er";
$a->strings["Automatically expire posts after this many days:"] = "";
$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Tomme innlegg utgår ikke. Utgåtte innlegg slettes.";
$a->strings["Advanced expiration settings"] = "";
$a->strings["Advanced Expiration"] = "";
$a->strings["Expire posts:"] = "";
$a->strings["Expire personal notes:"] = "";
$a->strings["Expire starred posts:"] = "";
$a->strings["Expire photos:"] = "";
$a->strings["Only expire posts by others:"] = "";
$a->strings["Account Settings"] = "Kontoinnstillinger";
$a->strings["Password Settings"] = "Passordinnstillinger";
$a->strings["New Password:"] = "Nytt passord:";
$a->strings["Confirm:"] = "Bekreft:";
$a->strings["Leave password fields blank unless changing"] = "La passordfeltene stå tomme hvis du ikke skal bytte";
$a->strings["Basic Settings"] = "Grunninnstillinger";
$a->strings["Full Name:"] = "Fullt navn:";
$a->strings["Email Address:"] = "E-postadresse:";
$a->strings["Your Timezone:"] = "Din tidssone:";
$a->strings["Default Post Location:"] = "Standard oppholdssted når du poster:";
$a->strings["Use Browser Location:"] = "Bruk nettleserens oppholdssted:";
$a->strings["Security and Privacy Settings"] = "Sikkerhet og privatlivsinnstillinger";
$a->strings["Maximum Friend Requests/Day:"] = "Maksimum venneforespørsler/dag:";
$a->strings["(to prevent spam abuse)"] = "(for å forhindre søppelpost)";
$a->strings["Default Post Permissions"] = "Standardtillatelser ved posting";
$a->strings["(click to open/close)"] = "(klikk for å åpne/lukke)";
$a->strings["Maximum private messages per day from unknown people:"] = "";
$a->strings["Notification Settings"] = "Beskjedinnstillinger";
$a->strings["By default post a status message when:"] = "";
$a->strings["accepting a friend request"] = "";
$a->strings["joining a forum/community"] = "";
$a->strings["making an <em>interesting</em> profile change"] = "";
$a->strings["Send a notification email when:"] = "Send en e-post med beskjed når:";
$a->strings["You receive an introduction"] = "Du mottar en introduksjon";
$a->strings["Your introductions are confirmed"] = "Dine introduksjoner er bekreftet";
$a->strings["Someone writes on your profile wall"] = "Noen skriver på veggen til profilen din";
$a->strings["Someone writes a followup comment"] = "Noen skriver en oppfølgingskommentar";
$a->strings["You receive a private message"] = "Du mottar en privat melding";
$a->strings["You receive a friend suggestion"] = "";
$a->strings["You are tagged in a post"] = "";
$a->strings["You are poked/prodded/etc. in a post"] = "";
$a->strings["Advanced Account/Page Type Settings"] = "";
$a->strings["Change the behaviour of this account for special situations"] = "";
$a->strings["Manage Identities and/or Pages"] = "Behandle identiteter og/eller sider";
$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Veksle mellom ulike identiteter eller felleskaps-/gruppesider som deler dine kontodetaljer eller som du har blitt gitt \"behandle\" tillatelser";
$a->strings["Select an identity to manage: "] = "Velg en identitet å behandle:";
$a->strings["Search Results For:"] = "";
$a->strings["Remove term"] = "Fjern uttrykk";
$a->strings["Saved Searches"] = "Lagrede søk";
$a->strings["add"] = "";
$a->strings["Commented Order"] = "";
$a->strings["Sort by Comment Date"] = "";
$a->strings["Posted Order"] = "";
$a->strings["Sort by Post Date"] = "";
$a->strings["Posts that mention or involve you"] = "";
$a->strings["New"] = "";
$a->strings["Activity Stream - by date"] = "";
$a->strings["Starred"] = "";
$a->strings["Favourite Posts"] = "";
$a->strings["Shared Links"] = "";
$a->strings["Interesting Links"] = "";
$a->strings["Warning: This group contains %s member from an insecure network."] = array(
0 => "Advarsel: denne gruppen inneholder %s medlem fra et usikkert nettverk.",
1 => "Advarsel: denne gruppe inneholder %s medlemmer fra et usikkert nettverk.",
);
$a->strings["Private messages to this group are at risk of public disclosure."] = "Private meldinger til denne gruppen risikerer å bli offentliggjort.";
$a->strings["Contact: "] = "Kontakt:";
$a->strings["Private messages to this person are at risk of public disclosure."] = "Private meldinger til denne personen risikerer å bli offentliggjort.";
$a->strings["Invalid contact."] = "Ugyldig kontakt.";
$a->strings["Personal Notes"] = "Personlige notater";
$a->strings["Save"] = "Lagre";
$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Antall daglige veggmeldinger for %s er overskredet. Melding mislyktes.";
$a->strings["No recipient selected."] = "Ingen mottaker valgt.";
$a->strings["Unable to check your home location."] = "";
$a->strings["Message could not be sent."] = "Meldingen kunne ikke sendes.";
$a->strings["Message collection failure."] = "";
$a->strings["Message sent."] = "Melding sendt.";
$a->strings["No recipient."] = "";
$a->strings["Please enter a link URL:"] = "Vennligst skriv inn en lenke URL:";
$a->strings["Send Private Message"] = "Send privat melding";
$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "";
$a->strings["To:"] = "Til:";
$a->strings["Subject:"] = "Emne:";
$a->strings["Your message:"] = "Din melding:";
$a->strings["Welcome to Friendica"] = "";
$a->strings["New Member Checklist"] = "Sjekkliste for nye medlemmer";
$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "";
$a->strings["Getting Started"] = "";
$a->strings["Friendica Walk-Through"] = "";
$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "";
$a->strings["Go to Your Settings"] = "";
$a->strings["On your <em>Settings</em> page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "";
$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Se over de andre innstillingene, særlig personverninnstillingene. En katalogoppføring som ikke er publisert er som å ha skjult telefonnummer. Generelt, så bør du antakelig publisere oppføringen, med mindre dine venner eller potensielle venner vet nøyaktig hvordan de skal finne deg.";
$a->strings["Profile"] = "Profil";
$a->strings["Upload Profile Photo"] = "Last opp profilbilde";
$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Last opp et profilbilde hvis du ikke har gjort det allerede. Studier viser at folk som har ekte bilde av seg selv har ti ganger større sannsynlighet for å få venner enn folk som ikke gjør det.";
$a->strings["Edit Your Profile"] = "";
$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Du kan endre <strong>standardprofilen</strong> din slik du ønsker. Se over innstillingene som lar deg skjule vennelisten og skjule profilen fra ukjente besøkende.";
$a->strings["Profile Keywords"] = "";
$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Legg til noen offentlige nøkkelord til standardprofilen din som beskriver dine interesser. Det kan hende vi klarer å finne andre folk med liknende interesser og foreslå vennskap.";
$a->strings["Connecting"] = "";
$a->strings["Facebook"] = "Facebook";
$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Tillat Facebook-koblingen hvis du har en Facebook-konto og vi vil (valgfritt) importere alle dine Facebook-venner og samtaler.";
$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "";
$a->strings["Importing Emails"] = "";
$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "";
$a->strings["Go to Your Contacts Page"] = "";
$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "";
$a->strings["Go to Your Site's Directory"] = "";
$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "Katalog-siden lar deg finne andre folk i dette nettverket eller andre forente nettsteder. Se etter en <em>Connect</em> eller <em>Follow</em> lenke på profilsiden deres. Oppgi din egen identitetsadresse hvis du blir forespurt om det.";
$a->strings["Finding New People"] = "";
$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "";
$a->strings["Groups"] = "";
$a->strings["Group Your Contacts"] = "";
$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Når du har fått noen venner, så kan du organisere dem i private samtalegrupper i sidefeltet på Kontakt-siden din, og deretter kan du samhandle med hver gruppe privat på din Nettverk-side.";
$a->strings["Why Aren't My Posts Public?"] = "";
$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "";
$a->strings["Getting Help"] = "";
$a->strings["Go to the Help Section"] = "";
$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Våre <strong>hjelpesider</strong> kan leses for flere detaljer og ressurser om andre egenskaper ved programmet.";
$a->strings["Item not available."] = "Elementet er ikke tilgjengelig.";
$a->strings["Item was not found."] = "Elementet ble ikke funnet.";
$a->strings["Group created."] = "Gruppen er laget.";
$a->strings["Could not create group."] = "Kunne ikke lage gruppen.";
$a->strings["Group not found."] = "Fant ikke gruppen.";
$a->strings["Group name changed."] = "Gruppenavnet er endret";
$a->strings["Permission denied"] = "Tilgang nektet";
$a->strings["Create a group of contacts/friends."] = "Lag en gruppe med kontakter/venner.";
$a->strings["Group Name: "] = "Gruppenavn:";
$a->strings["Group removed."] = "Gruppe fjernet.";
$a->strings["Unable to remove group."] = "Mislyktes med å fjerne gruppe.";
$a->strings["Group Editor"] = "Gruppebehandler";
$a->strings["Members"] = "Medlemmer";
$a->strings["Click on a contact to add or remove."] = "Klikk på en kontakt for å legge til eller fjerne.";
$a->strings["Invalid profile identifier."] = "Ugyldig profilidentifikator.";
$a->strings["Profile Visibility Editor"] = "Behandle profilsynlighet";
$a->strings["Visible To"] = "Synlig for";
$a->strings["All Contacts (with secure profile access)"] = "Alle kontakter (med sikret profiltilgang)";
$a->strings["No contacts."] = "Ingen kontakter.";
$a->strings["View Contacts"] = "Vis kontakter";
$a->strings["Registration details for %s"] = "Registeringsdetaljer for %s";
$a->strings["Registration successful. Please check your email for further instructions."] = "Vellykket registrering. Vennligst sjekk e-posten din for videre instruksjoner.";
$a->strings["Failed to send email message. Here is the message that failed."] = "Mislyktes med å sende e-postmelding. Her er meldingen som mislyktes.";
$a->strings["Your registration can not be processed."] = "Din registrering kan ikke behandles.";
$a->strings["Registration request at %s"] = "Henvendelse om registrering ved %s";
$a->strings["Your registration is pending approval by the site owner."] = "Din registrering venter på godkjenning fra eier av stedet.";
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "";
$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kan (valgfritt) fylle ut dette skjemaet via OpenID ved å oppgi din OpenID og klikke \"Registrer\".";
$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Hvis du ikke er kjent med OpenID, vennligst la feltet stå tomt, og fyll ut de andre feltene.";
$a->strings["Your OpenID (optional): "] = "Din OpenID (valgfritt):";
$a->strings["Include your profile in member directory?"] = "Legg til profilen din i medlemskatalogen?";
$a->strings["Membership on this site is by invitation only."] = "Medlemskap ved dette nettstedet skjer bare på invitasjon.";
$a->strings["Your invitation ID: "] = "Din invitasjons-ID:";
$a->strings["Registration"] = "Registrering";
$a->strings["Your Full Name (e.g. Joe Smith): "] = "Ditt fulle navn (f.eks. Ola Nordmann):";
$a->strings["Your Email Address: "] = "Din e-postadresse:";
$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Velg et kallenavn til profilen. Dette må begynne med en bokstav. Din profiladresse på dette stedet vil bli \"<strong>kallenavn@\$sitename</strong>\".";
$a->strings["Choose a nickname: "] = "Velg et kallenavn:";
$a->strings["Register"] = "Registrer";
$a->strings["People Search"] = "Personsøk";
$a->strings["status"] = "status";
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s liker %2\$s's %3\$s";
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s liker ikke %2\$s's %3\$s";
$a->strings["Item not found."] = "Enheten ble ikke funnet.";
$a->strings["Access denied."] = "";
$a->strings["Photos"] = "Bilder";
$a->strings["Files"] = "";
$a->strings["Account approved."] = "Konto godkjent.";
$a->strings["Registration revoked for %s"] = "Registreringen til %s er trukket tilbake";
$a->strings["Please login."] = "Vennligst logg inn.";
$a->strings["Unable to locate original post."] = "Mislyktes med å lokalisere opprinnelig melding.";
$a->strings["Empty post discarded."] = "Tom melding forkastet.";
$a->strings["Wall Photos"] = "Veggbilder";
$a->strings["System error. Post not saved."] = "Systemfeil. Meldingen ble ikke lagret.";
$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "";
$a->strings["You may visit them online at %s"] = "Du kan besøke dem online på %s";
$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Vennligst kontakt avsenderen ved å svare på denne meldingen hvis du ikke ønsker å motta disse meldingene.";
$a->strings["%s posted an update."] = "%s postet en oppdatering.";
$a->strings["%1\$s is currently %2\$s"] = "";
$a->strings["Mood"] = "";
$a->strings["Set your current mood and tell your friends"] = "";
$a->strings["Image uploaded but image cropping failed."] = "Bildet ble lastet opp, men beskjæringen mislyktes.";
$a->strings["Image size reduction [%s] failed."] = "Reduksjon av bildestørrelse [%s] mislyktes.";
$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-last-siden-på-nytt eller slett mellomlagret i nettleseren hvis det nye bildet ikke vises umiddelbart.";
$a->strings["Unable to process image"] = "Mislyktes med å behandle bilde";
$a->strings["Image exceeds size limit of %d"] = "Bildets størrelse overstiger størrelsesbegrensningen på %d";
$a->strings["Upload File:"] = "Last opp fil:";
$a->strings["Select a profile:"] = "";
$a->strings["Upload"] = "Last opp";
$a->strings["skip this step"] = "hopp over dette steget";
$a->strings["select a photo from your photo albums"] = "velg et bilde fra dine fotoalbum";
$a->strings["Crop Image"] = "Beskjær bilde";
$a->strings["Please adjust the image cropping for optimum viewing."] = "Vennligst juster beskjæringen av bildet for optimal visning.";
$a->strings["Done Editing"] = "Behandling ferdig";
$a->strings["Image uploaded successfully."] = "Bilde ble lastet opp.";
$a->strings["No profile"] = "Ingen profil";
$a->strings["Remove My Account"] = "Slett min konto";
$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dette vil slette din konto fullstendig. Når dette er gjort kan den ikke gjenopprettes.";
$a->strings["Please enter your password for verification:"] = "Vennligst skriv inn ditt passord for å bekrefte:";
$a->strings["New Message"] = "Ny melding";
$a->strings["Unable to locate contact information."] = "Mislyktes med å finne kontaktinformasjon.";
$a->strings["Message deleted."] = "Melding slettet.";
$a->strings["Conversation removed."] = "Samtale slettet.";
$a->strings["No messages."] = "Ingen meldinger.";
$a->strings["Unknown sender - %s"] = "";
$a->strings["You and %s"] = "";
$a->strings["%s and You"] = "";
$a->strings["Delete conversation"] = "Slett samtale";
$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
$a->strings["%d message"] = array(
0 => "",
1 => "",
);
$a->strings["Message not available."] = "Melding utilgjengelig.";
$a->strings["Delete message"] = "Slett melding";
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "";
$a->strings["Send Reply"] = "Send svar";
$a->strings["Friends of %s"] = "Venner av %s";
$a->strings["No friends to display."] = "";
$a->strings["Theme settings updated."] = "";
$a->strings["Site"] = "Nettsted";
$a->strings["Users"] = "Brukere";
$a->strings["Plugins"] = "Tillegg";
$a->strings["Themes"] = "";
$a->strings["DB updates"] = "";
$a->strings["Logs"] = "Logger";
$a->strings["Admin"] = "Administrator";
$a->strings["Plugin Features"] = "";
$a->strings["User registrations waiting for confirmation"] = "Brukerregistreringer venter på bekreftelse";
$a->strings["Normal Account"] = "Vanlig konto";
$a->strings["Soapbox Account"] = "Talerstol-konto";
$a->strings["Community/Celebrity Account"] = "Gruppe-/kjendiskonto";
$a->strings["Automatic Friend Account"] = "Automatisk vennekonto";
$a->strings["Blog Account"] = "";
$a->strings["Private Forum"] = "";
$a->strings["Message queues"] = "";
$a->strings["Administration"] = "Administrasjon";
$a->strings["Summary"] = "Oppsummering";
$a->strings["Registered users"] = "Registrerte brukere";
$a->strings["Pending registrations"] = "Ventende registreringer";
$a->strings["Version"] = "Versjon";
$a->strings["Active plugins"] = "Aktive tillegg";
$a->strings["Site settings updated."] = "Nettstedets innstillinger er oppdatert.";
$a->strings["Closed"] = "Stengt";
$a->strings["Requires approval"] = "Krever godkjenning";
$a->strings["Open"] = "Åpen";
$a->strings["No SSL policy, links will track page SSL state"] = "";
$a->strings["Force all links to use SSL"] = "";
$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "";
$a->strings["File upload"] = "Last opp fil";
$a->strings["Policies"] = "Retningslinjer";
$a->strings["Advanced"] = "Avansert";
$a->strings["Site name"] = "Nettstedets navn";
$a->strings["Banner/Logo"] = "Banner/logo";
$a->strings["System language"] = "Systemspråk";
$a->strings["System theme"] = "Systemtema";
$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "";
$a->strings["Mobile system theme"] = "";
$a->strings["Theme for mobile devices"] = "";
$a->strings["SSL link policy"] = "";
$a->strings["Determines whether generated links should be forced to use SSL"] = "";
$a->strings["Maximum image size"] = "Maksimum bildestørrelse";
$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "";
$a->strings["Maximum image length"] = "";
$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "";
$a->strings["JPEG image quality"] = "";
$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "";
$a->strings["Register policy"] = "Registrer retningslinjer";
$a->strings["Register text"] = "Registrer tekst";
$a->strings["Will be displayed prominently on the registration page."] = "";
$a->strings["Accounts abandoned after x days"] = "";
$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "";
$a->strings["Allowed friend domains"] = "Tillate vennedomener";
$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "";
$a->strings["Allowed email domains"] = "Tillate e-postdomener";
$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "";
$a->strings["Block public"] = "Utesteng publikum";
$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "";
$a->strings["Force publish"] = "Tving publisering";
$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "";
$a->strings["Global directory update URL"] = "URL for oppdatering av Global-katalog";
$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "";
$a->strings["Allow threaded items"] = "";
$a->strings["Allow infinite level threading for items on this site."] = "";
$a->strings["Private posts by default for new users"] = "";
$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "";
$a->strings["Block multiple registrations"] = "Blokker flere registreringer";
$a->strings["Disallow users to register additional accounts for use as pages."] = "";
$a->strings["OpenID support"] = "OpenID-støtte";
$a->strings["OpenID support for registration and logins."] = "";
$a->strings["Fullname check"] = "Sjekk fullt navn";
$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "";
$a->strings["UTF-8 Regular expressions"] = "UTF-8 regulære uttrykk";
$a->strings["Use PHP UTF8 regular expressions"] = "";
$a->strings["Show Community Page"] = "Vis Felleskap-side";
$a->strings["Display a Community page showing all recent public postings on this site."] = "";
$a->strings["Enable OStatus support"] = "Aktiver Ostatus-støtte";
$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "";
$a->strings["Enable Diaspora support"] = "";
$a->strings["Provide built-in Diaspora network compatibility."] = "";
$a->strings["Only allow Friendica contacts"] = "";
$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "";
$a->strings["Verify SSL"] = "Bekreft SSL";
$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "";
$a->strings["Proxy user"] = "Brukernavn til mellomtjener";
$a->strings["Proxy URL"] = "Mellomtjener URL";
$a->strings["Network timeout"] = "Tidsavbrudd for nettverk";
$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "";
$a->strings["Delivery interval"] = "";
$a->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."] = "";
$a->strings["Poll interval"] = "";
$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "";
$a->strings["Maximum Load Average"] = "";
$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "";
$a->strings["Update has been marked successful"] = "";
$a->strings["Executing %s failed. Check system logs."] = "Utføring av %s mislyktes. Sjekk systemlogger.";
$a->strings["Update %s was successfully applied."] = "";
$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "";
$a->strings["Update function %s could not be found."] = "";
$a->strings["No failed updates."] = "Ingen mislykkede oppdateringer.";
$a->strings["Failed Updates"] = "Mislykkede oppdateringer";
$a->strings["This does not include updates prior to 1139, which did not return a status."] = "";
$a->strings["Mark success (if update was manually applied)"] = "";
$a->strings["Attempt to execute this update step automatically"] = "";
$a->strings["%s user blocked/unblocked"] = array(
0 => "",
1 => "",
);
$a->strings["%s user deleted"] = array(
0 => "%s bruker slettet",
1 => "%s brukere slettet",
);
$a->strings["User '%s' deleted"] = "Brukeren '%s' er slettet";
$a->strings["User '%s' unblocked"] = "Brukeren '%s' er ikke blokkert";
$a->strings["User '%s' blocked"] = "Brukeren '%s' er blokkert";
$a->strings["select all"] = "velg alle";
$a->strings["User registrations waiting for confirm"] = "Brukerregistreringer venter på bekreftelse";
$a->strings["Request date"] = "Forespørselsdato";
$a->strings["Email"] = "E-post";
$a->strings["No registrations."] = "Ingen registreringer.";
$a->strings["Deny"] = "Nekt";
$a->strings["Site admin"] = "";
$a->strings["Register date"] = "Registreringsdato";
$a->strings["Last login"] = "Siste innlogging";
$a->strings["Last item"] = "Siste element";
$a->strings["Account"] = "Konto";
$a->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 disse brukerne har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette disse brukerne?";
$a->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?";
$a->strings["Plugin %s disabled."] = "Tillegget %s er avskrudd.";
$a->strings["Plugin %s enabled."] = "Tillegget %s er aktivert.";
$a->strings["Disable"] = "Skru av";
$a->strings["Enable"] = "Aktiver";
$a->strings["Toggle"] = "Veksle";
$a->strings["Author: "] = "";
$a->strings["Maintainer: "] = "";
$a->strings["No themes found."] = "";
$a->strings["Screenshot"] = "";
$a->strings["[Experimental]"] = "";
$a->strings["[Unsupported]"] = "";
$a->strings["Log settings updated."] = "Logginnstillinger er oppdatert.";
$a->strings["Clear"] = "Tøm";
$a->strings["Debugging"] = "Feilsøking";
$a->strings["Log file"] = "Loggfil";
$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "";
$a->strings["Log level"] = "Loggnivå";
$a->strings["Close"] = "Lukk";
$a->strings["FTP Host"] = "FTP-tjener";
$a->strings["FTP Path"] = "FTP-sti";
$a->strings["FTP User"] = "FTP-bruker";
$a->strings["FTP Password"] = "FTP-passord";
$a->strings["Requested profile is not available."] = "";
$a->strings["Access to this profile has been restricted."] = "Tilgang til denne profilen er blitt begrenset.";
$a->strings["Tips for New Members"] = "Tips til nye medlemmer";
$a->strings["{0} wants to be your friend"] = "{0} ønsker å bli din venn";
$a->strings["{0} sent you a message"] = "{0} sendte deg en melding";
$a->strings["{0} requested registration"] = "{0} forespurte om registrering";
$a->strings["{0} commented %s's post"] = "{0} kommenterte %s sitt innlegg";
$a->strings["{0} liked %s's post"] = "{0} likte %s sitt innlegg";
$a->strings["{0} disliked %s's post"] = "{0} likte ikke %s sitt innlegg";
$a->strings["{0} is now friends with %s"] = "{0} er nå venner med %s";
$a->strings["{0} posted"] = "{0} postet et innlegg";
$a->strings["{0} tagged %s's post with #%s"] = "{0} merket %s sitt innlegg med #%s";
$a->strings["{0} mentioned you in a post"] = "";
$a->strings["Contacts who are not members of a group"] = "";
$a->strings["OpenID protocol error. No ID returned."] = "";
$a->strings["Account not found and OpenID registration is not permitted on this site."] = "";
$a->strings["Login failed."] = "Innlogging mislyktes.";
$a->strings["Contact added"] = "";
$a->strings["Common Friends"] = "";
$a->strings["No contacts in common."] = "";
$a->strings["link"] = "";
$a->strings["Item has been removed."] = "Elementet har blitt slettet.";
$a->strings["Applications"] = "Programmer";
$a->strings["No installed applications."] = "Ingen installerte programmer.";
$a->strings["Search"] = "Søk";
$a->strings["Profile not found."] = "Fant ikke profilen.";
$a->strings["Profile Name is required."] = "Profilnavn er påkrevet.";
$a->strings["Marital Status"] = "";
$a->strings["Romantic Partner"] = "";
$a->strings["Likes"] = "";
$a->strings["Dislikes"] = "";
$a->strings["Work/Employment"] = "";
$a->strings["Religion"] = "";
$a->strings["Political Views"] = "";
$a->strings["Gender"] = "";
$a->strings["Sexual Preference"] = "";
$a->strings["Homepage"] = "";
$a->strings["Interests"] = "";
$a->strings["Address"] = "";
$a->strings["Location"] = "";
$a->strings["Profile updated."] = "Profil oppdatert.";
$a->strings[" and "] = "";
$a->strings["public profile"] = "";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "";
$a->strings[" - Visit %1\$s's %2\$s"] = "";
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "";
$a->strings["Profile deleted."] = "Profil slettet.";
$a->strings["Profile-"] = "Profil-";
$a->strings["New profile created."] = "Ny profil opprettet.";
$a->strings["Profile unavailable to clone."] = "Profilen er utilgjengelig for kloning.";
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Skjul kontakten/vennen din fra folk som kan se denne profilen?";
$a->strings["Edit Profile Details"] = "Endre profildetaljer";
$a->strings["View this profile"] = "Vis denne profilen";
$a->strings["Create a new profile using these settings"] = "Opprett en ny profil med disse innstillingene";
$a->strings["Clone this profile"] = "Klon denne profilen";
$a->strings["Delete this profile"] = "Slette denne profilen";
$a->strings["Profile Name:"] = "Profilnavn:";
$a->strings["Your Full Name:"] = "Ditt fulle navn:";
$a->strings["Title/Description:"] = "Tittel/Beskrivelse:";
$a->strings["Your Gender:"] = "Ditt kjønn:";
$a->strings["Birthday (%s):"] = "Fødselsdag (%s):";
$a->strings["Street Address:"] = "Gateadresse:";
$a->strings["Locality/City:"] = "Plassering/by:";
$a->strings["Postal/Zip Code:"] = "Postnummer:";
$a->strings["Country:"] = "Land:";
$a->strings["Region/State:"] = "Region/fylke:";
$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Sivilstand:";
$a->strings["Who: (if applicable)"] = "Hvem: (hvis gjeldende)";
$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Eksempler: kari123, Kari Nordmann, kari@example.com";
$a->strings["Since [date]:"] = "";
$a->strings["Sexual Preference:"] = "Seksuell orientering:";
$a->strings["Homepage URL:"] = "Hjemmeside URL:";
$a->strings["Hometown:"] = "";
$a->strings["Political Views:"] = "Politisk ståsted:";
$a->strings["Religious Views:"] = "Religiøst ståsted:";
$a->strings["Public Keywords:"] = "Offentlige nøkkelord:";
$a->strings["Private Keywords:"] = "Private nøkkelord:";
$a->strings["Likes:"] = "";
$a->strings["Dislikes:"] = "";
$a->strings["Example: fishing photography software"] = "Eksempel: fisking fotografering programvare";
$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Brukes for å foreslå mulige venner, kan ses av andre)";
$a->strings["(Used for searching profiles, never shown to others)"] = "(Brukes for å søke i profiler, vises aldri til andre)";
$a->strings["Tell us about yourself..."] = "Fortell oss om deg selv...";
$a->strings["Hobbies/Interests"] = "Hobbier/interesser";
$a->strings["Contact information and Social Networks"] = "Kontaktinformasjon og sosiale nettverk";
$a->strings["Musical interests"] = "Musikksmak";
$a->strings["Books, literature"] = "Bøker, litteratur";
$a->strings["Television"] = "TV";
$a->strings["Film/dance/culture/entertainment"] = "Film/dans/kultur/underholdning";
$a->strings["Love/romance"] = "Kjærlighet/romanse";
$a->strings["Work/employment"] = "Arbeid/ansatt hos";
$a->strings["School/education"] = "Skole/utdanning";
$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dette er din <strong>offentlige</strong> profil.<br>Den <strong>kan</strong> ses av alle på Internet.";
$a->strings["Age: "] = "Alder:";
$a->strings["Edit/Manage Profiles"] = "Rediger/Behandle profiler";
$a->strings["Change profile photo"] = "Endre profilbilde";
$a->strings["Create New Profile"] = "Lag ny profil";
$a->strings["Profile Image"] = "Profilbilde";
$a->strings["visible to everybody"] = "synlig for alle";
$a->strings["Edit visibility"] = "Endre synlighet";
$a->strings["Save to Folder:"] = "";
$a->strings["- select -"] = "";
$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "";
$a->strings["No potential page delegates located."] = "";
$a->strings["Delegate Page Management"] = "Deleger sidebehandling";
$a->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."] = "Delegater kan behandle alle sider ved denne kontoen/siden, bortsett fra grunnleggende kontoinnstillinger. Vennligst ikke deleger din personlige konto til noen som du ikke stoler fullt og fast på.";
$a->strings["Existing Page Managers"] = "Eksisterende sidebehandlere";
$a->strings["Existing Page Delegates"] = "";
$a->strings["Potential Delegates"] = "";
$a->strings["Add"] = "";
$a->strings["No entries."] = "";
$a->strings["Source (bbcode) text:"] = "";
$a->strings["Source (Diaspora) text to convert to BBcode:"] = "";
$a->strings["Source input: "] = "";
$a->strings["bb2html: "] = "";
$a->strings["bb2html2bb: "] = "";
$a->strings["bb2md: "] = "";
$a->strings["bb2md2html: "] = "";
$a->strings["bb2dia2bb: "] = "";
$a->strings["bb2md2html2bb: "] = "";
$a->strings["Source input (Diaspora format): "] = "";
$a->strings["diaspora2bb: "] = "";
$a->strings["Friend Suggestions"] = "Venneforslag";
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "";
$a->strings["Ignore/Hide"] = "Ignorér/Skjul";
$a->strings["Global Directory"] = "Global katalog";
$a->strings["Find on this site"] = "";
$a->strings["Site Directory"] = "Stedets katalog";
$a->strings["Gender: "] = "Kjønn:";
$a->strings["Gender:"] = "Kjønn:";
$a->strings["Status:"] = "Status:";
$a->strings["Homepage:"] = "Hjemmeside:";
$a->strings["About:"] = "Om:";
$a->strings["No entries (some entries may be hidden)."] = "Ingen oppføringer (noen oppføringer kan være skjulte).";
$a->strings["%s : Not a valid email address."] = "%s: Ugyldig e-postadresse.";
$a->strings["Please join us on Friendica"] = "";
$a->strings["%s : Message delivery failed."] = "%s: Mislyktes med å levere meldingen.";
$a->strings["%d message sent."] = array(
0 => "one: %d melding sendt.",
1 => "other: %d meldinger sendt.",
);
$a->strings["You have no more invitations available"] = "Du har ingen flere tilgjengelige invitasjoner";
$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "";
$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "";
$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "";
$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Vi beklager. Dette systemet er for øyeblikket ikke konfigurert for forbindelser med andre offentlige nettsteder eller å invitere medlemmer.";
$a->strings["Send invitations"] = "Send invitasjoner";
$a->strings["Enter email addresses, one per line:"] = "Skriv e-postadresser, en per linje:";
$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "";
$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du må oppgi denne invitasjonskoden: \$invite_code";
$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Når du har registrert, vennligst kontakt meg via min profilside på:";
$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "";
$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "";
$a->strings["Response from remote site was not understood."] = "Forstod ikke svaret fra det andre stedet.";
$a->strings["Unexpected response from remote site: "] = "Uventet svar fra det andre stedet:";
$a->strings["Confirmation completed successfully."] = "Sending av bekreftelse var vellykket. ";
$a->strings["Remote site reported: "] = "Det andre stedet rapporterte:";
$a->strings["Temporary failure. Please wait and try again."] = "Midlertidig feil. Vennligst vent og prøv igjen.";
$a->strings["Introduction failed or was revoked."] = "Introduksjon mislyktes eller ble trukket tilbake.";
$a->strings["Unable to set contact photo."] = "Fikk ikke satt kontaktbilde.";
$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s er nå venner med %2\$s";
$a->strings["No user record found for '%s' "] = "Ingen brukerregistrering funnet for '%s'";
$a->strings["Our site encryption key is apparently messed up."] = "Krypteringsnøkkelen til nettstedet vårt ser ut til å være ødelagt.";
$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "En tom nettsteds-URL ble oppgitt eller URL-en kunne ikke dekrypteres av oss.";
$a->strings["Contact record was not found for you on our site."] = "Kontaktinformasjon om deg ble ikke funnet på vårt nettsted.";
$a->strings["Site public key not available in contact record for URL %s."] = "";
$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "ID-en som ble oppgitt av ditt system har en duplikat i vårt system. Det bør virke hvis du prøver igjen.";
$a->strings["Unable to set your contact credentials on our system."] = "Får ikke lagret din kontaktlegitamasjon på vårt system.";
$a->strings["Unable to update your contact profile details on our system"] = "Får ikke oppdatert kontaktdetaljene dine på vårt system.";
$a->strings["Connection accepted at %s"] = "Tilkobling godtatt på %s";
$a->strings["%1\$s has joined %2\$s"] = "";
$a->strings["Google+ Import Settings"] = "";
$a->strings["Enable Google+ Import"] = "";
$a->strings["Google Account ID"] = "";
$a->strings["Google+ Import Settings saved."] = "";
$a->strings["Facebook disabled"] = "Facebook avskrudd";
$a->strings["Updating contacts"] = "Oppdaterer kontakter";
$a->strings["Facebook API key is missing."] = "Facebook API-nøkkel mangler.";
$a->strings["Facebook Connect"] = "Facebook-kobling";
$a->strings["Install Facebook connector for this account."] = "Legg til Facebook-kobling for denne kontoen.";
$a->strings["Remove Facebook connector"] = "Fjern Facebook-kobling";
$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "";
$a->strings["Post to Facebook by default"] = "Post til Facebook som standard";
$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "";
$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "";
$a->strings["Link all your Facebook friends and conversations on this website"] = "";
$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "";
$a->strings["On this website, your Facebook friend stream is only visible to you."] = "";
$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "";
$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "";
$a->strings["Do not import your Facebook profile wall conversations"] = "";
$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "";
$a->strings["Comma separated applications to ignore"] = "";
$a->strings["Problems with Facebook Real-Time Updates"] = "";
$a->strings["Facebook Connector Settings"] = "Innstillinger for Facebook-kobling";
$a->strings["Facebook API Key"] = "";
$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "";
$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "";
$a->strings["The given API Key seems to work correctly."] = "";
$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "";
$a->strings["App-ID / API-Key"] = "";
$a->strings["Application secret"] = "";
$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "";
$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "";
$a->strings["Real-Time Updates"] = "";
$a->strings["Real-Time Updates are activated."] = "";
$a->strings["Deactivate Real-Time Updates"] = "";
$a->strings["Real-Time Updates not activated."] = "";
$a->strings["Activate Real-Time Updates"] = "";
$a->strings["The new values have been saved."] = "";
$a->strings["Post to Facebook"] = "Post til Facebook";
$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Posting til Facebook avbrutt på grunn av konflikt med tilgangsrettigheter i multi-nettverk.";
$a->strings["View on Friendica"] = "";
$a->strings["Facebook post failed. Queued for retry."] = "Facebook-innlegg mislyktes. Innlegget er lagt i kø for å prøve igjen.";
$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "";
$a->strings["Facebook connection became invalid"] = "";
$a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."] = "";
$a->strings["StatusNet AutoFollow settings updated."] = "";
$a->strings["StatusNet AutoFollow Settings"] = "";
$a->strings["Automatically follow any StatusNet followers/mentioners"] = "";
$a->strings["Bg settings updated."] = "";
$a->strings["Bg Settings"] = "";
$a->strings["How many contacts to display on profile sidebar"] = "";
$a->strings["Lifetime of the cache (in hours)"] = "";
$a->strings["Cache Statistics"] = "";
$a->strings["Number of items"] = "";
$a->strings["Size of the cache"] = "";
$a->strings["Delete the whole cache"] = "";
$a->strings["Facebook Post disabled"] = "";
$a->strings["Facebook Post"] = "";
$a->strings["Install Facebook Post connector for this account."] = "";
$a->strings["Remove Facebook Post connector"] = "";
$a->strings["Facebook Post Settings"] = "";
$a->strings["%d person likes this"] = array(
0 => "",
1 => "",
);
$a->strings["%d person doesn't like this"] = array(
0 => "",
1 => "",
);
$a->strings["Get added to this list!"] = "";
$a->strings["Generate new key"] = "Lag ny nøkkel";
$a->strings["Widgets key"] = "Nøkkel til småprogrammer";
$a->strings["Widgets available"] = "Småprogrammer er tilgjengelige";
$a->strings["Connect on Friendica!"] = "";
$a->strings["bitchslap"] = "";
$a->strings["bitchslapped"] = "";
$a->strings["shag"] = "";
$a->strings["shagged"] = "";
$a->strings["do something obscenely biological to"] = "";
$a->strings["did something obscenely biological to"] = "";
$a->strings["point out the poke feature to"] = "";
$a->strings["pointed out the poke feature to"] = "";
$a->strings["declare undying love for"] = "";
$a->strings["declared undying love for"] = "";
$a->strings["patent"] = "";
$a->strings["patented"] = "";
$a->strings["stroke beard"] = "";
$a->strings["stroked their beard at"] = "";
$a->strings["bemoan the declining standards of modern secondary and tertiary education to"] = "";
$a->strings["bemoans the declining standards of modern secondary and tertiary education to"] = "";
$a->strings["hug"] = "";
$a->strings["hugged"] = "";
$a->strings["kiss"] = "";
$a->strings["kissed"] = "";
$a->strings["raise eyebrows at"] = "";
$a->strings["raised their eyebrows at"] = "";
$a->strings["insult"] = "";
$a->strings["insulted"] = "";
$a->strings["praise"] = "";
$a->strings["praised"] = "";
$a->strings["be dubious of"] = "";
$a->strings["was dubious of"] = "";
$a->strings["eat"] = "";
$a->strings["ate"] = "";
$a->strings["giggle and fawn at"] = "";
$a->strings["giggled and fawned at"] = "";
$a->strings["doubt"] = "";
$a->strings["doubted"] = "";
$a->strings["glare"] = "";
$a->strings["glared at"] = "";
$a->strings["YourLS Settings"] = "";
$a->strings["URL: http://"] = "";
$a->strings["Username:"] = "";
$a->strings["Password:"] = "";
$a->strings["Use SSL "] = "";
$a->strings["yourls Settings saved."] = "";
$a->strings["Post to LiveJournal"] = "";
$a->strings["LiveJournal Post Settings"] = "";
$a->strings["Enable LiveJournal Post Plugin"] = "";
$a->strings["LiveJournal username"] = "";
$a->strings["LiveJournal password"] = "";
$a->strings["Post to LiveJournal by default"] = "";
$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "";
$a->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."] = "";
$a->strings["Enable Content filter"] = "";
$a->strings["Comma separated list of keywords to hide"] = "";
$a->strings["Use /expression/ to provide regular expressions"] = "";
$a->strings["NSFW Settings saved."] = "";
$a->strings["%s - Click to open/close"] = "";
$a->strings["Forums"] = "";
$a->strings["Forums:"] = "";
$a->strings["Page settings updated."] = "";
$a->strings["Page Settings"] = "";
$a->strings["How many forums to display on sidebar without paging"] = "";
$a->strings["Randomise Page/Forum list"] = "";
$a->strings["Show pages/forums on profile page"] = "";
$a->strings["Planets Settings"] = "";
$a->strings["Enable Planets Plugin"] = "";
$a->strings["Login"] = "Logg inn";
$a->strings["OpenID"] = "";
$a->strings["Latest users"] = "";
$a->strings["Most active users"] = "";
$a->strings["Latest photos"] = "";
$a->strings["Latest likes"] = "";
$a->strings["event"] = "hendelse";
$a->strings["No access"] = "";
$a->strings["Could not open component for editing"] = "";
$a->strings["Go back to the calendar"] = "";
$a->strings["Event data"] = "";
$a->strings["Calendar"] = "";
$a->strings["Special color"] = "";
$a->strings["Subject"] = "";
$a->strings["Starts"] = "";
$a->strings["Ends"] = "";
$a->strings["Description"] = "";
$a->strings["Recurrence"] = "";
$a->strings["Frequency"] = "";
$a->strings["Daily"] = "Daglig";
$a->strings["Weekly"] = "Ukentlig";
$a->strings["Monthly"] = "Månedlig";
$a->strings["Yearly"] = "";
$a->strings["days"] = "dager";
$a->strings["weeks"] = "uker";
$a->strings["months"] = "måneder";
$a->strings["years"] = "år";
$a->strings["Interval"] = "";
$a->strings["All %select% %time%"] = "";
$a->strings["Days"] = "";
$a->strings["Sunday"] = "søndag";
$a->strings["Monday"] = "mandag";
$a->strings["Tuesday"] = "tirsdag";
$a->strings["Wednesday"] = "onsdag";
$a->strings["Thursday"] = "torsdag";
$a->strings["Friday"] = "fredag";
$a->strings["Saturday"] = "lørdag";
$a->strings["First day of week:"] = "";
$a->strings["Day of month"] = "";
$a->strings["#num#th of each month"] = "";
$a->strings["#num#th-last of each month"] = "";
$a->strings["#num#th #wkday# of each month"] = "";
$a->strings["#num#th-last #wkday# of each month"] = "";
$a->strings["Month"] = "";
$a->strings["#num#th of the given month"] = "";
$a->strings["#num#th-last of the given month"] = "";
$a->strings["#num#th #wkday# of the given month"] = "";
$a->strings["#num#th-last #wkday# of the given month"] = "";
$a->strings["Repeat until"] = "";
$a->strings["Infinite"] = "";
$a->strings["Until the following date"] = "";
$a->strings["Number of times"] = "";
$a->strings["Exceptions"] = "";
$a->strings["none"] = "";
$a->strings["Notification"] = "";
$a->strings["Notify by"] = "";
$a->strings["E-Mail"] = "";
$a->strings["On Friendica / Display"] = "";
$a->strings["Time"] = "";
$a->strings["Hours"] = "";
$a->strings["Minutes"] = "";
$a->strings["Seconds"] = "";
$a->strings["Weeks"] = "";
$a->strings["before the"] = "";
$a->strings["start of the event"] = "";
$a->strings["end of the event"] = "";
$a->strings["Add a notification"] = "";
$a->strings["The event #name# will start at #date"] = "";
$a->strings["#name# is about to begin."] = "";
$a->strings["Saved"] = "";
$a->strings["U.S. Time Format (mm/dd/YYYY)"] = "";
$a->strings["German Time Format (dd.mm.YYYY)"] = "";
$a->strings["Private Events"] = "";
$a->strings["Private Addressbooks"] = "";
$a->strings["Friendica-Native events"] = "";
$a->strings["Friendica-Contacts"] = "";
$a->strings["Your Friendica-Contacts"] = "";
$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = "";
$a->strings["Something went wrong when trying to import the file. Sorry."] = "";
$a->strings["The ICS-File has been imported."] = "";
$a->strings["No file was uploaded."] = "";
$a->strings["Import a ICS-file"] = "";
$a->strings["ICS-File"] = "";
$a->strings["Overwrite all #num# existing events"] = "";
$a->strings["New event"] = "";
$a->strings["Today"] = "";
$a->strings["Day"] = "";
$a->strings["Week"] = "";
$a->strings["Reload"] = "";
$a->strings["Date"] = "";
$a->strings["Error"] = "";
$a->strings["The calendar has been updated."] = "";
$a->strings["The new calendar has been created."] = "";
$a->strings["The calendar has been deleted."] = "";
$a->strings["Calendar Settings"] = "";
$a->strings["Date format"] = "";
$a->strings["Time zone"] = "";
$a->strings["Calendars"] = "";
$a->strings["Create a new calendar"] = "";
$a->strings["Limitations"] = "";
$a->strings["Warning"] = "";
$a->strings["Synchronization (iPhone, Thunderbird Lightning, Android, ...)"] = "";
$a->strings["Synchronizing this calendar with the iPhone"] = "";
$a->strings["Synchronizing your Friendica-Contacts with the iPhone"] = "";
$a->strings["The current version of this plugin has not been set up correctly. Please contact the system administrator of your installation of friendica to fix this."] = "";
$a->strings["Extended calendar with CalDAV-support"] = "";
$a->strings["noreply"] = "ikke svar";
$a->strings["Notification: "] = "";
$a->strings["The database tables have been installed."] = "";
$a->strings["An error occurred during the installation."] = "";
$a->strings["The database tables have been updated."] = "";
$a->strings["An error occurred during the update."] = "";
$a->strings["No system-wide settings yet."] = "";
$a->strings["Database status"] = "";
$a->strings["Installed"] = "";
$a->strings["Upgrade needed"] = "";
$a->strings["Please back up all calendar data (the tables beginning with dav_*) before proceeding. While all calendar events <i>should</i> be converted to the new database structure, it's always safe to have a backup. Below, you can have a look at the database-queries that will be made when pressing the 'update'-button."] = "";
$a->strings["Upgrade"] = "";
$a->strings["Not installed"] = "";
$a->strings["Install"] = "";
$a->strings["Unknown"] = "";
$a->strings["Something really went wrong. I cannot recover from this state automatically, sorry. Please go to the database backend, back up the data, and delete all tables beginning with 'dav_' manually. Afterwards, this installation routine should be able to reinitialize the tables automatically."] = "";
$a->strings["Troubleshooting"] = "";
$a->strings["Manual creation of the database tables:"] = "";
$a->strings["Show SQL-statements"] = "";
$a->strings["Private Calendar"] = "";
$a->strings["Friendica Events: Mine"] = "";
$a->strings["Friendica Events: Contacts"] = "";
$a->strings["Private Addresses"] = "";
$a->strings["Friendica Contacts"] = "";
$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"] = "Tillat å bruke din friendica id (%s) for å koble til ekstern unhosted-aktivert lagring (som ownCloud). Se <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>";
$a->strings["Template URL (with {category})"] = "";
$a->strings["OAuth end-point"] = "";
$a->strings["Api"] = "";
$a->strings["Member since:"] = "";
$a->strings["Three Dimensional Tic-Tac-Toe"] = "Tredimensjonal tre-på-rad";
$a->strings["3D Tic-Tac-Toe"] = "3D tre-på-rad";
$a->strings["New game"] = "Nytt spill";
$a->strings["New game with handicap"] = "Nytt spill med handikapp";
$a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "Tredimensjonal tre-på-rad er akkurat som det vanlige spillet, bortsett fra at det spilles på flere nivåer samtidig.";
$a->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."] = "I dette tilfellet er det tre nivåer. Du vinner ved å få tre på rad på ethvert nivå, samt opp, ned og diagonalt på tvers av forskjellige nivåer.";
$a->strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "Handicap-spillet skrur av midtposisjonen på det midtre nivået, fordi spilleren som tar denne posisjonen ofte får en urettferdig fordel.";
$a->strings["You go first..."] = "Du starter først...";
$a->strings["I'm going first this time..."] = "Jeg starter først denne gangen...";
$a->strings["You won!"] = "Du vant!";
$a->strings["\"Cat\" game!"] = "\"Katte\"-spill!";
$a->strings["I won!"] = "Jeg vant!";
$a->strings["Randplace Settings"] = "Tilfeldig plassering";
$a->strings["Enable Randplace Plugin"] = "Aktiver Tilfeldig plassering-tillegget";
$a->strings["Post to Dreamwidth"] = "";
$a->strings["Dreamwidth Post Settings"] = "";
$a->strings["Enable dreamwidth Post Plugin"] = "";
$a->strings["dreamwidth username"] = "";
$a->strings["dreamwidth password"] = "";
$a->strings["Post to dreamwidth by default"] = "";
$a->strings["Post to Drupal"] = "";
$a->strings["Drupal Post Settings"] = "";
$a->strings["Enable Drupal Post Plugin"] = "";
$a->strings["Drupal username"] = "";
$a->strings["Drupal password"] = "";
$a->strings["Post Type - article,page,or blog"] = "";
$a->strings["Drupal site URL"] = "";
$a->strings["Drupal site uses clean URLS"] = "";
$a->strings["Post to Drupal by default"] = "";
$a->strings["Post from Friendica"] = "";
$a->strings["Startpage Settings"] = "";
$a->strings["Home page to load after login - leave blank for profile wall"] = "";
$a->strings["Examples: &quot;network&quot; or &quot;notifications/system&quot;"] = "";
$a->strings["Geonames settings updated."] = "";
$a->strings["Geonames Settings"] = "";
$a->strings["Enable Geonames Plugin"] = "";
$a->strings["Your account on %s will expire in a few days."] = "";
$a->strings["Your Friendica account is about to expire."] = "";
$a->strings["Hi %1\$s,\n\nYour account on %2\$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"] = "";
$a->strings["Upload a file"] = "Last opp en fil";
$a->strings["Drop files here to upload"] = "Slipp filer her for å laste de opp";
$a->strings["Failed"] = "Mislyktes";
$a->strings["No files were uploaded."] = "Ingen filer ble lastet opp.";
$a->strings["Uploaded file is empty"] = "Opplastet fil er tom";
$a->strings["File has an invalid extension, it should be one of "] = "Filen har en ugyldig endelse, den må være en av ";
$a->strings["Upload was cancelled, or server error encountered"] = "Opplasting avbrutt, eller det oppstod en feil på tjeneren";
$a->strings["OEmbed settings updated"] = "OEmbed-innstillingene er oppdatert";
$a->strings["Use OEmbed for YouTube videos"] = "Bruk OEmbed til YouTube-videoer";
$a->strings["URL to embed:"] = "URL som skal innebygges:";
$a->strings["show/hide"] = "";
$a->strings["No forum subscriptions"] = "";
$a->strings["Forumlist settings updated."] = "";
$a->strings["Forumlist Settings"] = "";
$a->strings["Randomise forum list"] = "";
$a->strings["Show forums on profile page"] = "";
$a->strings["Impressum"] = "Informasjon om nettstedet";
$a->strings["Site Owner"] = "Nettstedets eier";
$a->strings["Email Address"] = "E-postadresse";
$a->strings["Postal Address"] = "Postadresse";
$a->strings["The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "Tillegget for \"Informasjon om nettstedet\" må konfigureres!<br />Vennligst fyll ut minst <tt>eier</tt> variabelen i konfigurasjonsfilen din. For andre variabler, vennligst se over README-filen til tillegget.";
$a->strings["The page operators name."] = "";
$a->strings["Site Owners Profile"] = "Nettstedseiers profil";
$a->strings["Profile address of the operator."] = "";
$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "";
$a->strings["Notes"] = "Notater";
$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "";
$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "";
$a->strings["Footer note"] = "";
$a->strings["Text for the footer. You can use BBCode here."] = "";
$a->strings["Report Bug"] = "";
$a->strings["No Timeline settings updated."] = "";
$a->strings["No Timeline Settings"] = "";
$a->strings["Disable Archive selector on profile wall"] = "";
$a->strings["\"Blockem\" Settings"] = "";
$a->strings["Comma separated profile URLS to block"] = "";
$a->strings["BLOCKEM Settings saved."] = "";
$a->strings["Blocked %s - Click to open/close"] = "";
$a->strings["Unblock Author"] = "";
$a->strings["Block Author"] = "";
$a->strings["blockem settings updated"] = "";
$a->strings[":-)"] = "";
$a->strings[":-("] = "";
$a->strings["lol"] = "";
$a->strings["Quick Comment Settings"] = "";
$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "";
$a->strings["Enter quick comments, one per line"] = "";
$a->strings["Quick Comment settings saved."] = "";
$a->strings["Tile Server URL"] = "";
$a->strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "";
$a->strings["Default zoom"] = "";
$a->strings["The default zoom level. (1:world, 18:highest)"] = "";
$a->strings["Editplain settings updated."] = "";
$a->strings["Group Text"] = "";
$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = "";
$a->strings["Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"] = "";
$a->strings["generic profile image"] = "";
$a->strings["random geometric pattern"] = "";
$a->strings["monster face"] = "";
$a->strings["computer generated face"] = "";
$a->strings["retro arcade style face"] = "";
$a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = "";
$a->strings["This addon is not functional on your server."] = "";
$a->strings["Information"] = "";
$a->strings["Gravatar addon is installed. Please disable the Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "";
$a->strings["Default avatar image"] = "";
$a->strings["Select default avatar image if none was found. See README"] = "";
$a->strings["Libravatar settings updated."] = "";
$a->strings["Post to libertree"] = "";
$a->strings["libertree Post Settings"] = "";
$a->strings["Enable Libertree Post Plugin"] = "";
$a->strings["Libertree API token"] = "";
$a->strings["Libertree site URL"] = "";
$a->strings["Post to Libertree by default"] = "";
$a->strings["Altpager settings updated."] = "";
$a->strings["Alternate Pagination Setting"] = "";
$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = "";
$a->strings["The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail."] = "";
$a->strings["Use the MathJax renderer"] = "";
$a->strings["MathJax Base URL"] = "";
$a->strings["The URL for the javascript file that should be included to use MathJax. Can be either the MathJax CDN or another installation of MathJax."] = "";
$a->strings["Editplain Settings"] = "";
$a->strings["Disable richtext status editor"] = "";
$a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "";
$a->strings["Select default avatar image if none was found at Gravatar. See README"] = "";
$a->strings["Rating of images"] = "";
$a->strings["Select the appropriate avatar rating for your site. See README"] = "";
$a->strings["Gravatar settings updated."] = "";
$a->strings["Your Friendica test account is about to expire."] = "";
$a->strings["Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."] = "";
$a->strings["\"pageheader\" Settings"] = "";
$a->strings["pageheader Settings saved."] = "";
$a->strings["Post to Insanejournal"] = "";
$a->strings["InsaneJournal Post Settings"] = "";
$a->strings["Enable InsaneJournal Post Plugin"] = "";
$a->strings["InsaneJournal username"] = "";
$a->strings["InsaneJournal password"] = "";
$a->strings["Post to InsaneJournal by default"] = "";
$a->strings["Jappix Mini addon settings"] = "";
$a->strings["Activate addon"] = "";
$a->strings["Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"] = "";
$a->strings["Jabber username"] = "";
$a->strings["Jabber server"] = "";
$a->strings["Jabber BOSH host"] = "";
$a->strings["Jabber password"] = "";
$a->strings["Encrypt Jabber password with Friendica password (recommended)"] = "";
$a->strings["Friendica password"] = "";
$a->strings["Approve subscription requests from Friendica contacts automatically"] = "";
$a->strings["Subscribe to Friendica contacts automatically"] = "";
$a->strings["Purge internal list of jabber addresses of contacts"] = "";
$a->strings["Add contact"] = "";
$a->strings["View Source"] = "";
$a->strings["Post to StatusNet"] = "Post til StatusNet";
$a->strings["Please contact your site administrator.<br />The provided API URL is not valid."] = "Vennligst kontakt administratoren på nettstedet ditt.<br />Den oppgitter API URL-en er ikke gyldig.";
$a->strings["We could not contact the StatusNet API with the Path you entered."] = "Vi kunne ikke kontakte StatusNet API-en med den banen du oppgav.";
$a->strings["StatusNet settings updated."] = "StatusNet-innstillinger er oppdatert.";
$a->strings["StatusNet Posting Settings"] = "Innstillinger for posting til StatusNet";
$a->strings["Globally Available StatusNet OAuthKeys"] = "Globalt tilgjengelige StatusNet OAuthKeys";
$a->strings["There are preconfigured OAuth key pairs for some StatusNet servers available. If you are useing one of them, please use these credentials. If not feel free to connect to any other StatusNet instance (see below)."] = "Det finnes ferdig konfigurerte OAuth nøkkelpar tilgjengelig for noen StatusNet-tjenere. Hvis du bruker en av disse, vennligst bruk disse som legitimasjon. Hvis ikke, så er du fri til å opprette en forbindelse til enhver annen StatusNet-forekomst (se nedenfor).";
$a->strings["Provide your own OAuth Credentials"] = "Oppgi din egen OAuth-legitimasjon";
$a->strings["No consumer key pair for StatusNet found. Register your Friendica Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorited StatusNet installation."] = "";
$a->strings["OAuth Consumer Key"] = "OAuth Consumer Key";
$a->strings["OAuth Consumer Secret"] = "OAuth Consumer Secret";
$a->strings["Base API Path (remember the trailing /)"] = "Base API Path (husk / på slutten)";
$a->strings["To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to StatusNet."] = "For å koble din StatusNet-konto, klikk knappen under for å få en sikkerhetskode fra StatusNet som du må kopiere inn i tekstfeltet under, og send inn skjemaet. Det er bare dine <strong>offentlige</strong> meldinger som blir postet til StatusNet.";
$a->strings["Log in with StatusNet"] = "Logg inn med StatusNet";
$a->strings["Copy the security code from StatusNet here"] = "Kopier sikkerhetskoden fra StatusNet hit";
$a->strings["Cancel Connection Process"] = "Avbryt forbindelsesprosessen";
$a->strings["Current StatusNet API is"] = "Gjeldende StatusNet API er";
$a->strings["Cancel StatusNet Connection"] = "Avbryt StatusNet-forbindelsen";
$a->strings["Currently connected to: "] = "For øyeblikket tilkoblet til:";
$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated StatusNet account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Aktivering gjør at alle dine <strong>offentlige</strong> innlegg kan postes til den tilknyttede StatusNet-kontoen. Du kan velge å gjøre dette som standard (her), eller for hvert enkelt innlegg separat i valgmulighetene for posting når du skriver et innlegg.";
$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to StatusNet will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "";
$a->strings["Allow posting to StatusNet"] = "Tillat innlegg til StatusNet";
$a->strings["Send public postings to StatusNet by default"] = "Send offentlige innlegg til StatusNet som standard";
$a->strings["Send linked #-tags and @-names to StatusNet"] = "";
$a->strings["Clear OAuth configuration"] = "Fjern OAuth-konfigurasjon";
$a->strings["API URL"] = "API URL";
$a->strings["Infinite Improbability Drive"] = "";
$a->strings["Post to Tumblr"] = "";
$a->strings["Tumblr Post Settings"] = "";
$a->strings["Enable Tumblr Post Plugin"] = "";
$a->strings["Tumblr login"] = "";
$a->strings["Tumblr password"] = "";
$a->strings["Post to Tumblr by default"] = "";
$a->strings["Numfriends settings updated."] = "";
$a->strings["Numfriends Settings"] = "";
$a->strings["Gnot settings updated."] = "";
$a->strings["Gnot Settings"] = "";
$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "";
$a->strings["Enable this plugin/addon?"] = "";
$a->strings["[Friendica:Notify] Comment to conversation #%d"] = "";
$a->strings["Post to Wordpress"] = "";
$a->strings["WordPress Post Settings"] = "";
$a->strings["Enable WordPress Post Plugin"] = "";
$a->strings["WordPress username"] = "";
$a->strings["WordPress password"] = "";
$a->strings["WordPress API URL"] = "";
$a->strings["Post to WordPress by default"] = "";
$a->strings["Provide a backlink to the Friendica post"] = "";
$a->strings["Read the original post and comment stream on Friendica"] = "";
$a->strings["\"Show more\" Settings"] = "";
$a->strings["Enable Show More"] = "";
$a->strings["Cutting posts after how much characters"] = "";
$a->strings["Show More Settings saved."] = "";
$a->strings["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "";
$a->strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "";
$a->strings["Piwik Base URL"] = "Piwik Base URL";
$a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "";
$a->strings["Site ID"] = "Nettstedets ID";
$a->strings["Show opt-out cookie link?"] = "Vis lenke for å velge bort cookie?";
$a->strings["Asynchronous tracking"] = "";
$a->strings["Post to Twitter"] = "Post til Twitter";
$a->strings["Twitter settings updated."] = "Twitter-innstilinger oppdatert.";
$a->strings["Twitter Posting Settings"] = "Innstillinger for posting til Twitter";
$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Ingen \"consumer key pair\" for Twitter funnet. Vennligst kontakt stedets administrator.";
$a->strings["At this Friendica 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 <strong>public</strong> posts will be posted to Twitter."] = "Ved denne Friendica-forekomsten er Twitter-tillegget aktivert, men du har ennå ikke tilkoblet din konto til din Twitter-konto. For å gjøre det, klikk på knappen nedenfor for å få en PIN-kode fra Twitter som du må kopiere inn i feltet nedenfor og sende inn skjemaet. Bare dine <strong>offentlige</strong> innlegg vil bli lagt inn på Twitter. ";
$a->strings["Log in with Twitter"] = "Logg inn via Twitter";
$a->strings["Copy the PIN from Twitter here"] = "Kopier PIN-kode fra Twitter hit";
$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Aktivering gjør at alle dine <strong>offentlige</strong> innlegg kan postes til den tilknyttede Twitter-kontoen. Du kan velge å gjøre dette som standard (her), eller for hvert enkelt innlegg separat i valgmulighetene for posting når du skriver et innlegg.";
$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) 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."] = "";
$a->strings["Allow posting to Twitter"] = "Tillat posting til Twitter";
$a->strings["Send public postings to Twitter by default"] = "Send offentlige innlegg til Twitter som standard";
$a->strings["Send linked #-tags and @-names to Twitter"] = "";
$a->strings["Consumer key"] = "Consumer key";
$a->strings["Consumer secret"] = "Consumer secret";
$a->strings["IRC Settings"] = "";
$a->strings["Channel(s) to auto connect (comma separated)"] = "";
$a->strings["Popular Channels (comma separated)"] = "";
$a->strings["IRC settings saved."] = "";
$a->strings["IRC Chatroom"] = "";
$a->strings["Popular Channels"] = "";
$a->strings["Fromapp settings updated."] = "";
$a->strings["FromApp Settings"] = "";
$a->strings["The application name you would like to show your posts originating from."] = "";
$a->strings["Use this application name even if another application was used."] = "";
$a->strings["Post to blogger"] = "";
$a->strings["Blogger Post Settings"] = "";
$a->strings["Enable Blogger Post Plugin"] = "";
$a->strings["Blogger username"] = "";
$a->strings["Blogger password"] = "";
$a->strings["Blogger API URL"] = "";
$a->strings["Post to Blogger by default"] = "";
$a->strings["Post to Posterous"] = "";
$a->strings["Posterous Post Settings"] = "";
$a->strings["Enable Posterous Post Plugin"] = "";
$a->strings["Posterous login"] = "";
$a->strings["Posterous password"] = "";
$a->strings["Posterous site ID"] = "";
$a->strings["Posterous API token"] = "";
$a->strings["Post to Posterous by default"] = "";
$a->strings["Theme settings"] = "";
$a->strings["Set resize level for images in posts and comments (width and height)"] = "";
$a->strings["Set font-size for posts and comments"] = "";
$a->strings["Set theme width"] = "";
$a->strings["Color scheme"] = "";
$a->strings["Your posts and conversations"] = "Dine innlegg og samtaler";
$a->strings["Your profile page"] = "";
$a->strings["Your contacts"] = "";
$a->strings["Your photos"] = "";
$a->strings["Your events"] = "";
$a->strings["Personal notes"] = "";
$a->strings["Your personal photos"] = "";
$a->strings["Community Pages"] = "";
$a->strings["Community Profiles"] = "";
$a->strings["Last users"] = "";
$a->strings["Last likes"] = "";
$a->strings["Last photos"] = "";
$a->strings["Find Friends"] = "";
$a->strings["Local Directory"] = "";
$a->strings["Similar Interests"] = "";
$a->strings["Invite Friends"] = "Inviterer venner";
$a->strings["Earth Layers"] = "";
$a->strings["Set zoomfactor for Earth Layers"] = "";
$a->strings["Set longitude (X) for Earth Layers"] = "";
$a->strings["Set latitude (Y) for Earth Layers"] = "";
$a->strings["Help or @NewHere ?"] = "";
$a->strings["Connect Services"] = "";
$a->strings["Last Tweets"] = "";
$a->strings["Set twitter search term"] = "";
$a->strings["don't show"] = "ikke vis";
$a->strings["show"] = "vis";
$a->strings["Show/hide boxes at right-hand column:"] = "";
$a->strings["Set line-height for posts and comments"] = "";
$a->strings["Set resolution for middle column"] = "";
$a->strings["Set color scheme"] = "";
$a->strings["Set zoomfactor for Earth Layer"] = "";
$a->strings["Last tweets"] = "";
$a->strings["Alignment"] = "";
$a->strings["Left"] = "";
$a->strings["Center"] = "";
$a->strings["Set colour scheme"] = "";
$a->strings["j F, Y"] = "j F, Y";
$a->strings["j F"] = "j F";
$a->strings["Birthday:"] = "Fødselsdag:";
$a->strings["Age:"] = "Alder:";
$a->strings["for %1\$d %2\$s"] = "";
$a->strings["Tags:"] = "";
$a->strings["Religion:"] = "Religion:";
$a->strings["Hobbies/Interests:"] = "Hobbyer/Interesser:";
$a->strings["Contact information and Social Networks:"] = "Kontaktinformasjon og sosiale nettverk:";
$a->strings["Musical interests:"] = "Musikksmak:";
$a->strings["Books, literature:"] = "Bøker, litteratur:";
$a->strings["Television:"] = "TV:";
$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/kultur/underholdning:";
$a->strings["Love/Romance:"] = "Kjærlighet/romanse:";
$a->strings["Work/employment:"] = "Arbeid/ansatt hos:";
$a->strings["School/education:"] = "Skole/utdanning:";
$a->strings["Unknown | Not categorised"] = "Ukjent | Ikke kategorisert";
$a->strings["Block immediately"] = "Blokker umiddelbart";
$a->strings["Shady, spammer, self-marketer"] = "Grumsete, poster søppel, fremhever bare seg selv";
$a->strings["Known to me, but no opinion"] = "Bekjent av meg, men har ingen mening";
$a->strings["OK, probably harmless"] = "OK, antakelig harmløs";
$a->strings["Reputable, has my trust"] = "Respektert, har min tillit";
$a->strings["Frequently"] = "Ofte";
$a->strings["Hourly"] = "Hver time";
$a->strings["Twice daily"] = "To ganger daglig";
$a->strings["OStatus"] = "";
$a->strings["RSS/Atom"] = "";
$a->strings["Zot!"] = "";
$a->strings["LinkedIn"] = "";
$a->strings["XMPP/IM"] = "";
$a->strings["MySpace"] = "";
$a->strings["Male"] = "Mann";
$a->strings["Female"] = "Kvinne";
$a->strings["Currently Male"] = "For øyeblikket mann";
$a->strings["Currently Female"] = "For øyeblikket kvinne";
$a->strings["Mostly Male"] = "Stort sett mann";
$a->strings["Mostly Female"] = "Stort sett kvinne";
$a->strings["Transgender"] = "Transkjønnet";
$a->strings["Intersex"] = "Tvekjønnet";
$a->strings["Transsexual"] = "Transseksuell";
$a->strings["Hermaphrodite"] = "Hermafroditt";
$a->strings["Neuter"] = "Intetkjønn";
$a->strings["Non-specific"] = "Ikke spesifisert";
$a->strings["Other"] = "Annet";
$a->strings["Undecided"] = "Ubestemt";
$a->strings["Males"] = "Menn";
$a->strings["Females"] = "Kvinner";
$a->strings["Gay"] = "Homse";
$a->strings["Lesbian"] = "Lesbe";
$a->strings["No Preference"] = "Ingen preferanse";
$a->strings["Bisexual"] = "Biseksuell";
$a->strings["Autosexual"] = "Autoseksuell";
$a->strings["Abstinent"] = "Avholdende";
$a->strings["Virgin"] = "Jomfru";
$a->strings["Deviant"] = "Avvikende";
$a->strings["Fetish"] = "Fetisj";
$a->strings["Oodles"] = "Mange";
$a->strings["Nonsexual"] = "Aseksuell";
$a->strings["Single"] = "Alene";
$a->strings["Lonely"] = "Ensom";
$a->strings["Available"] = "Tilgjengelig";
$a->strings["Unavailable"] = "Ikke tilgjengelig";
$a->strings["Has crush"] = "";
$a->strings["Infatuated"] = "";
$a->strings["Dating"] = "Stevnemøter/dater";
$a->strings["Unfaithful"] = "Utro";
$a->strings["Sex Addict"] = "Sexavhengig";
$a->strings["Friends"] = "Venner";
$a->strings["Friends/Benefits"] = "Venner med fordeler";
$a->strings["Casual"] = "Tilfeldig";
$a->strings["Engaged"] = "Forlovet";
$a->strings["Married"] = "Gift";
$a->strings["Imaginarily married"] = "";
$a->strings["Partners"] = "Partnere";
$a->strings["Cohabiting"] = "Samboere";
$a->strings["Common law"] = "";
$a->strings["Happy"] = "Lykkelig";
$a->strings["Not looking"] = "";
$a->strings["Swinger"] = "Partnerbytte/swinger";
$a->strings["Betrayed"] = "Bedratt";
$a->strings["Separated"] = "Separert";
$a->strings["Unstable"] = "Ustabil";
$a->strings["Divorced"] = "Skilt";
$a->strings["Imaginarily divorced"] = "";
$a->strings["Widowed"] = "Enke/enkemann";
$a->strings["Uncertain"] = "Usikker";
$a->strings["It's complicated"] = "";
$a->strings["Don't care"] = "Uinteressert";
$a->strings["Ask me"] = "Spør meg";
$a->strings["Starts:"] = "Starter:";
$a->strings["Finishes:"] = "Slutter:";
$a->strings["(no subject)"] = "(uten emne)";
$a->strings[" on Last.fm"] = "";
$a->strings["prev"] = "forrige";
$a->strings["first"] = "første";
$a->strings["last"] = "siste";
$a->strings["next"] = "neste";
$a->strings["newer"] = "";
$a->strings["older"] = "";
$a->strings["No contacts"] = "Ingen kontakter";
$a->strings["%d Contact"] = array(
0 => "%d kontakt",
1 => "%d kontakter",
);
$a->strings["poke"] = "";
$a->strings["poked"] = "";
$a->strings["ping"] = "";
$a->strings["pinged"] = "";
$a->strings["prod"] = "";
$a->strings["prodded"] = "";
$a->strings["slap"] = "";
$a->strings["slapped"] = "";
$a->strings["finger"] = "";
$a->strings["fingered"] = "";
$a->strings["rebuff"] = "";
$a->strings["rebuffed"] = "";
$a->strings["happy"] = "";
$a->strings["sad"] = "";
$a->strings["mellow"] = "";
$a->strings["tired"] = "";
$a->strings["perky"] = "";
$a->strings["angry"] = "";
$a->strings["stupified"] = "";
$a->strings["puzzled"] = "";
$a->strings["interested"] = "";
$a->strings["bitter"] = "";
$a->strings["cheerful"] = "";
$a->strings["alive"] = "";
$a->strings["annoyed"] = "";
$a->strings["anxious"] = "";
$a->strings["cranky"] = "";
$a->strings["disturbed"] = "";
$a->strings["frustrated"] = "";
$a->strings["motivated"] = "";
$a->strings["relaxed"] = "";
$a->strings["surprised"] = "";
$a->strings["January"] = "januar";
$a->strings["February"] = "februar";
$a->strings["March"] = "mars";
$a->strings["April"] = "april";
$a->strings["May"] = "mai";
$a->strings["June"] = "juni";
$a->strings["July"] = "juli";
$a->strings["August"] = "august";
$a->strings["September"] = "september";
$a->strings["October"] = "oktober";
$a->strings["November"] = "november";
$a->strings["December"] = "desember";
$a->strings["bytes"] = "bytes";
$a->strings["Click to open/close"] = "";
$a->strings["default"] = "";
$a->strings["Select an alternate language"] = "Velg et annet språk";
$a->strings["activity"] = "";
$a->strings["post"] = "";
$a->strings["Item filed"] = "";
$a->strings["Sharing notification from Diaspora network"] = "Dele varslinger fra Diaspora nettverket";
$a->strings["Attachments:"] = "";
$a->strings["view full size"] = "";
$a->strings["Embedded content"] = "";
$a->strings["Embedding disabled"] = "Innebygging avskrudd";
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "";
$a->strings["Default privacy group for new contacts"] = "";
$a->strings["Everybody"] = "Alle";
$a->strings["edit"] = "";
$a->strings["Edit group"] = "";
$a->strings["Create a new group"] = "Lag en ny gruppe";
$a->strings["Contacts not in any group"] = "";
$a->strings["Logout"] = "Logg ut";
$a->strings["End this session"] = "Avslutt denne økten";
$a->strings["Status"] = "Status";
$a->strings["Sign in"] = "Logg inn";
$a->strings["Home Page"] = "Hovedside";
$a->strings["Create an account"] = "Lag konto";
$a->strings["Help and documentation"] = "Hjelp og dokumentasjon";
$a->strings["Apps"] = "Programmer";
$a->strings["Addon applications, utilities, games"] = "Tilleggsprorammer, verktøy, spill";
$a->strings["Search site content"] = "Søk i nettstedets innhold";
$a->strings["Conversations on this site"] = "Samtaler på dette nettstedet";
$a->strings["Directory"] = "Katalog";
$a->strings["People directory"] = "Personkatalog";
$a->strings["Conversations from your friends"] = "Samtaler fra dine venner";
$a->strings["Friend Requests"] = "";
$a->strings["See all notifications"] = "";
$a->strings["Mark all system notifications seen"] = "";
$a->strings["Private mail"] = "Privat post";
$a->strings["Inbox"] = "Innboks";
$a->strings["Outbox"] = "Utboks";
$a->strings["Manage"] = "Behandle";
$a->strings["Manage other pages"] = "Behandle andre sider";
$a->strings["Profiles"] = "Profiler";
$a->strings["Manage/edit profiles"] = "Behandle/endre profiler";
$a->strings["Manage/edit friends and contacts"] = "Behandle/endre venner og kontakter";
$a->strings["Site setup and configuration"] = "Nettstedsoppsett og konfigurasjon";
$a->strings["Nothing new here"] = "";
$a->strings["Add New Contact"] = "";
$a->strings["Enter address or web location"] = "";
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Eksempel: ole@eksempel.no, http://eksempel.no/kari";
$a->strings["%d invitation available"] = array(
0 => "%d invitasjon tilgjengelig",
1 => "%d invitasjoner tilgjengelig",
);
$a->strings["Find People"] = "";
$a->strings["Enter name or interest"] = "";
$a->strings["Connect/Follow"] = "Koble/Følg";
$a->strings["Examples: Robert Morgenstein, Fishing"] = "";
$a->strings["Random Profile"] = "";
$a->strings["Networks"] = "";
$a->strings["All Networks"] = "";
$a->strings["Saved Folders"] = "";
$a->strings["Everything"] = "";
$a->strings["Categories"] = "";
$a->strings["Logged out."] = "Logget ut.";
$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "";
$a->strings["The error message was:"] = "";
$a->strings["Miscellaneous"] = "Diverse";
$a->strings["year"] = "år";
$a->strings["month"] = "måned";
$a->strings["day"] = "dag";
$a->strings["never"] = "aldri";
$a->strings["less than a second ago"] = "for mindre enn ett sekund siden";
$a->strings["week"] = "uke";
$a->strings["hour"] = "time";
$a->strings["hours"] = "timer";
$a->strings["minute"] = "minutt";
$a->strings["minutes"] = "minutter";
$a->strings["second"] = "sekund";
$a->strings["seconds"] = "sekunder";
$a->strings["%1\$d %2\$s ago"] = "";
$a->strings["%s's birthday"] = "";
$a->strings["Happy Birthday %s"] = "";
$a->strings["From: "] = "Fra: ";
$a->strings["Image/photo"] = "Bilde/fotografi";
$a->strings["$1 wrote:"] = "";
$a->strings["Encrypted content"] = "";
$a->strings["Cannot locate DNS info for database server '%s'"] = "Kan ikke finne DNS informasjon for databasetjeneren '%s' ";
$a->strings["[no subject]"] = "[ikke noe emne]";
$a->strings["Visible to everybody"] = "Synlig for alle";
$a->strings["Friendica Notification"] = "";
$a->strings["Thank You,"] = "";
$a->strings["%s Administrator"] = "";
$a->strings["%s <!item_type!>"] = "";
$a->strings["[Friendica:Notify] New mail received at %s"] = "";
$a->strings["%1\$s sent you a new private message at %2\$s."] = "";
$a->strings["%1\$s sent you %2\$s."] = "";
$a->strings["a private message"] = "";
$a->strings["Please visit %s to view and/or reply to your private messages."] = "";
$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "";
$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "";
$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "";
$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "";
$a->strings["%s commented on an item/conversation you have been following."] = "";
$a->strings["Please visit %s to view and/or reply to the conversation."] = "";
$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "";
$a->strings["%1\$s posted to your profile wall at %2\$s"] = "";
$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "";
$a->strings["[Friendica:Notify] %s tagged you"] = "";
$a->strings["%1\$s tagged you at %2\$s"] = "";
$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "";
$a->strings["[Friendica:Notify] %1\$s poked you"] = "";
$a->strings["%1\$s poked you at %2\$s"] = "";
$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "";
$a->strings["[Friendica:Notify] %s tagged your post"] = "";
$a->strings["%1\$s tagged your post at %2\$s"] = "";
$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "";
$a->strings["[Friendica:Notify] Introduction received"] = "";
$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "";
$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "";
$a->strings["You may visit their profile at %s"] = "";
$a->strings["Please visit %s to approve or reject the introduction."] = "";
$a->strings["[Friendica:Notify] Friend suggestion received"] = "";
$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "";
$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "";
$a->strings["Name:"] = "";
$a->strings["Photo:"] = "";
$a->strings["Please visit %s to approve or reject the suggestion."] = "";
$a->strings["Connect URL missing."] = "";
$a->strings["This site is not configured to allow communications with other networks."] = "Dette nettverkets konfigurasjon tillater ikke kommunikasjon med andre nettverk.";
$a->strings["No compatible communication protocols or feeds were discovered."] = "Ingen passende kommunikasjonsprotokoller eller strømmer ble oppdaget.";
$a->strings["The profile address specified does not provide adequate information."] = "Den angitte profiladressen inneholder for lite information.";
$a->strings["An author or name was not found."] = "Fant ingen forfatter eller navn.";
$a->strings["No browser URL could be matched to this address."] = "Ingen nettleser-URL passet med denne adressen.";
$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "";
$a->strings["Use mailto: in front of address to force email check."] = "";
$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Den oppgitte profiladressen tilhører et nettverk som har blitt avskrudd på dette nettstedet.";
$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Begrenset profil. Denne personen kan ikke motta direkte/personlige oppdateringer fra deg.";
$a->strings["Unable to retrieve contact information."] = "Ikke i stand til å hente kontaktinformasjon.";
$a->strings["following"] = "følger";
$a->strings["A new person is sharing with you at "] = "";
$a->strings["You have a new follower at "] = "Du har en ny følgesvenn på ";
$a->strings["Archives"] = "";
$a->strings["An invitation is required."] = "En invitasjon er nødvendig.";
$a->strings["Invitation could not be verified."] = "Invitasjon kunne ikke bekreftes.";
$a->strings["Invalid OpenID url"] = "Ugyldig OpenID URL";
$a->strings["Please enter the required information."] = "Vennligst skriv inn den nødvendige informasjonen.";
$a->strings["Please use a shorter name."] = "Vennligst bruk et kortere navn.";
$a->strings["Name too short."] = "Navnet er for kort.";
$a->strings["That doesn't appear to be your full (First Last) name."] = "Dette ser ikke ut til å være ditt full navn (Fornavn Etternavn).";
$a->strings["Your email domain is not among those allowed on this site."] = "Ditt e-postdomene er ikke blant de som er tillat på dette stedet.";
$a->strings["Not a valid email address."] = "Ugyldig e-postadresse.";
$a->strings["Cannot use that email."] = "Kan ikke bruke den e-postadressen.";
$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Ditt kallenavn kan bare inneholde \"a-z\", \"0-9\", \"-\", \"_\", og må også begynne med en bokstav.";
$a->strings["Nickname is already registered. Please choose another."] = "Kallenavnet er allerede registrert. Vennligst velg et annet.";
$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "";
$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ALVORLIG FEIL: mislyktes med å lage sikkerhetsnøkler.";
$a->strings["An error occurred during registration. Please try again."] = "En feil oppstod under registreringen. Vennligst prøv igjen.";
$a->strings["An error occurred creating your default profile. Please try again."] = "En feil oppstod under opprettelsen av din standardprofil. Vennligst prøv igjen.";
$a->strings["Welcome "] = "Velkommen";
$a->strings["Please upload a profile photo."] = "Vennligst last opp et profilbilde.";
$a->strings["Welcome back "] = "Velkommen tilbake";
$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "";
$a->strings["stopped following"] = "sluttet å følge";
$a->strings["Poke"] = "";
$a->strings["View Status"] = "";
$a->strings["View Profile"] = "";
$a->strings["View Photos"] = "";
$a->strings["Network Posts"] = "";
$a->strings["Edit Contact"] = "";
$a->strings["Send PM"] = "Send privat melding";
$a->strings["%1\$s poked %2\$s"] = "";
$a->strings["post/item"] = "";
$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "";
$a->strings["Categories:"] = "";
$a->strings["Filed under:"] = "";
$a->strings["remove"] = "";
$a->strings["Delete Selected Items"] = "Slette valgte elementer";
$a->strings["%s likes this."] = "%s liker dette.";
$a->strings["%s doesn't like this."] = "%s liker ikke dette.";
$a->strings["<span %1\$s>%2\$d people</span> like this."] = "<span %1\$s>%2\$d personer</span> liker dette.";
$a->strings["<span %1\$s>%2\$d people</span> don't like this."] = "<span %1\$s>%2\$d personer</span> liker ikke dette.";
$a->strings["and"] = "og";
$a->strings[", and %d other people"] = ", og %d andre personer";
$a->strings["%s like this."] = "%s liker dette.";
$a->strings["%s don't like this."] = "%s liker ikke dette.";
$a->strings["Visible to <strong>everybody</strong>"] = "Synlig for <strong>alle</strong>";
$a->strings["Please enter a video link/URL:"] = "";
$a->strings["Please enter an audio link/URL:"] = "";
$a->strings["Tag term:"] = "";
$a->strings["Where are you right now?"] = "Hvor er du akkurat nå?";
$a->strings["upload photo"] = "";
$a->strings["attach file"] = "";
$a->strings["web link"] = "";
$a->strings["Insert video link"] = "";
$a->strings["video link"] = "";
$a->strings["Insert audio link"] = "";
$a->strings["audio link"] = "";
$a->strings["set location"] = "";
$a->strings["clear location"] = "";
$a->strings["permissions"] = "";
$a->strings["Click here to upgrade."] = "";
$a->strings["This action exceeds the limits set by your subscription plan."] = "";
$a->strings["This action is not available under your subscription plan."] = "";
$a->strings["Delete this item?"] = "Slett dette elementet?";
$a->strings["show fewer"] = "";
$a->strings["Update %s failed. See error logs."] = "Oppdatering %s mislyktes. Se feilloggene.";
$a->strings["Update Error at %s"] = "";
$a->strings["Create a New Account"] = "Lag en ny konto";
$a->strings["Nickname or Email address: "] = "Kallenavn eller epostadresse: ";
$a->strings["Password: "] = "Passord: ";
$a->strings["Or login using OpenID: "] = "";
$a->strings["Forgot your password?"] = "Glemt passordet?";
$a->strings["Requested account is not available."] = "";
$a->strings["Edit profile"] = "Rediger profil";
$a->strings["Message"] = "";
$a->strings["g A l F d"] = "";
$a->strings["F d"] = "";
$a->strings["[today]"] = "[idag]";
$a->strings["Birthday Reminders"] = "Fødselsdager";
$a->strings["Birthdays this week:"] = "Fødselsdager denne uken:";
$a->strings["[No description]"] = "[Ingen beskrivelse]";
$a->strings["Event Reminders"] = "Påminnelser om hendelser";
$a->strings["Events this week:"] = "Hendelser denne uken:";
$a->strings["Status Messages and Posts"] = "";
$a->strings["Profile Details"] = "";
$a->strings["Events and Calendar"] = "";
$a->strings["Only You Can See This"] = "";

View file

@ -0,0 +1,11 @@
Hei,
jeg er $sitename.
Friendica-utviklerne slapp nylig oppdateringen $update,
men da jeg prøvde å installere den, gikk noe forferdelig galt.
Dette trenger å bli fikset raskt og jeg kan ikke gjøre det alene. Vennligst kontakt en
Friendica-utvikler hvis du ikke kan hjelpe meg på egenhånd. Databasen min er kanskje ugyldig.
Feilmeldingen er '$error'.
Jeg beklager,
din Friendica-tjener hos $siteurl

View file

@ -1,7 +1,7 @@
<div id="nets-sidebar" class="widget">
<h3>$title</h3>
<div id="nets-desc">$desc</div>
<a href="$base" class="nets-link{{ if $sel_all }} nets-selected{{ endif }} nets-all">$all</a>
<a href="$base?nets=all" class="nets-link{{ if $sel_all }} nets-selected{{ endif }} nets-all">$all</a>
<ul class="nets-ul">
{{ for $nets as $net }}
<li><a href="$base?nets=$net.ref" class="nets-link{{ if $net.selected }} nets-selected{{ endif }}">$net.name</a></li>

View file

@ -1,254 +1,316 @@
# FRIENDICA Distributed Social Network
# Copyright (C) 2010, 2011 Mike Macgirvin
# This file is distributed under the same license as the Friendika package.
# Copyright (C) 2010, 2011 the Friendica Project
# This file is distributed under the same license as the Friendica package.
#
# Translators:
# <info@pixelbits.de>, 2012.
# <mobilpress@gmail.com>, 2011.
# Pavel Morozov <mobilpress@gmail.com>, 2011.
msgid ""
msgstr ""
"Project-Id-Version: friendika\n"
"Report-Msgid-Bugs-To: http://bugs.friendika.com/\n"
"POT-Creation-Date: 2011-08-14 21:17-0700\n"
"PO-Revision-Date: 2011-09-02 15:00+0000\n"
"Last-Translator: mobilpress <mobilpress@gmail.com>\n"
"Language-Team: Russian (http://www.transifex.net/projects/p/friendika/team/ru/)\n"
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
"POT-Creation-Date: 2012-09-27 10:00-0700\n"
"PO-Revision-Date: 2012-09-28 08:27+0000\n"
"Last-Translator: alexej <info@pixelbits.de>\n"
"Language-Team: Russian (http://www.transifex.com/projects/p/friendica/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<10 || n%100>=20) ? 1 : 2);\n"
#: ../../mod/oexchange.php:27
#: ../../mod/oexchange.php:25
msgid "Post successful."
msgstr "Успешно добавлено."
#: ../../mod/crepair.php:42
#: ../../mod/update_notes.php:41 ../../mod/update_community.php:18
#: ../../mod/update_network.php:22 ../../mod/update_profile.php:41
msgid "[Embedded content - reload page to view]"
msgstr "[Встроенное содержание - перезагрузите страницу для просмотра]"
#: ../../mod/crepair.php:102
msgid "Contact settings applied."
msgstr "Установки контакта приняты."
#: ../../mod/crepair.php:44
#: ../../mod/crepair.php:104
msgid "Contact update failed."
msgstr "Обновление контакта неудачное."
#: ../../mod/crepair.php:54 ../../mod/wall_attach.php:43
#: ../../mod/fsuggest.php:78 ../../mod/events.php:102 ../../mod/photos.php:122
#: ../../mod/photos.php:849 ../../mod/editpost.php:10 ../../mod/install.php:96
#: ../../mod/notifications.php:62 ../../mod/contacts.php:132
#: ../../mod/settings.php:41 ../../mod/settings.php:46
#: ../../mod/settings.php:305 ../../mod/manage.php:75 ../../mod/network.php:6
#: ../../mod/notes.php:20 ../../mod/attach.php:33 ../../mod/group.php:19
#: ../../mod/viewcontacts.php:21 ../../mod/register.php:27
#: ../../mod/regmod.php:111 ../../mod/item.php:110
#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:133
#: ../../mod/profile_photo.php:144 ../../mod/profile_photo.php:155
#: ../../mod/message.php:8 ../../mod/message.php:116 ../../mod/admin.php:10
#: ../../mod/wall_upload.php:42 ../../mod/follow.php:8
#: ../../mod/display.php:108 ../../mod/profiles.php:7
#: ../../mod/profiles.php:226 ../../mod/invite.php:13 ../../mod/invite.php:81
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:308
#: ../../include/items.php:1930 ../../index.php:266
#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:55
#: ../../mod/fsuggest.php:78 ../../mod/events.php:140 ../../mod/api.php:26
#: ../../mod/api.php:31 ../../mod/photos.php:128 ../../mod/photos.php:972
#: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135
#: ../../mod/notifications.php:66 ../../mod/contacts.php:146
#: ../../mod/settings.php:86 ../../mod/settings.php:525
#: ../../mod/settings.php:530 ../../mod/manage.php:87 ../../mod/network.php:6
#: ../../mod/notes.php:20 ../../mod/wallmessage.php:9
#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
#: ../../mod/wallmessage.php:103 ../../mod/attach.php:33
#: ../../mod/group.php:19 ../../mod/viewcontacts.php:22
#: ../../mod/register.php:38 ../../mod/regmod.php:116 ../../mod/item.php:126
#: ../../mod/item.php:142 ../../mod/mood.php:114
#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
#: ../../mod/message.php:38 ../../mod/message.php:168
#: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25
#: ../../mod/wall_upload.php:64 ../../mod/follow.php:9
#: ../../mod/display.php:141 ../../mod/profiles.php:7
#: ../../mod/profiles.php:413 ../../mod/delegate.php:6
#: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510
#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159
#: ../../addon/fbpost/fbpost.php:165
#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3913
#: ../../index.php:317
msgid "Permission denied."
msgstr "Нет разрешения."
#: ../../mod/crepair.php:68 ../../mod/fsuggest.php:20
#: ../../mod/fsuggest.php:92 ../../mod/contacts.php:240
#: ../../mod/dfrn_confirm.php:114
#: ../../mod/crepair.php:129 ../../mod/fsuggest.php:20
#: ../../mod/fsuggest.php:92 ../../mod/dfrn_confirm.php:118
msgid "Contact not found."
msgstr "Контакт не найден."
#: ../../mod/crepair.php:74
#: ../../mod/crepair.php:135
msgid "Repair Contact Settings"
msgstr "Восстановить установки контакта"
#: ../../mod/crepair.php:76
#: ../../mod/crepair.php:137
msgid ""
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
" information your communications with this contact will stop working."
msgstr ""
"<strong>ВНИМАНИЕ: Это крайне важно</strong> и если вы введете неверную "
"информацию, ваша связь с этим контактом перестанет работать."
" information your communications with this contact may stop working."
msgstr "<strong>ВНИМАНИЕ: Это крайне важно!</strong> Если вы введете неверную информацию, ваша связь с этим контактом перестанет работать."
#: ../../mod/crepair.php:77
#: ../../mod/crepair.php:138
msgid ""
"Please use your browser 'Back' button <strong>now</strong> if you are "
"uncertain what to do on this page."
msgstr ""
"Пожалуйста, нажмите клавишу вашего браузера 'Back' или 'Назад' "
"<strong>сейчас</strong>, если вы не уверены, что делаете на этой странице."
msgstr "Пожалуйста, нажмите клавишу вашего браузера 'Back' или 'Назад' <strong>сейчас</strong>, если вы не уверены, что делаете на этой странице."
#: ../../mod/crepair.php:85 ../../mod/admin.php:464 ../../mod/admin.php:473
#: ../../mod/crepair.php:144
msgid "Return to contact editor"
msgstr ""
#: ../../mod/crepair.php:148 ../../mod/settings.php:545
#: ../../mod/settings.php:571 ../../mod/admin.php:692 ../../mod/admin.php:702
msgid "Name"
msgstr "Имя"
#: ../../mod/crepair.php:86
#: ../../mod/crepair.php:149
msgid "Account Nickname"
msgstr "Ник аккаунта"
#: ../../mod/crepair.php:87
#: ../../mod/crepair.php:150
msgid "@Tagname - overrides Name/Nickname"
msgstr ""
#: ../../mod/crepair.php:151
msgid "Account URL"
msgstr "URL аккаунта"
#: ../../mod/crepair.php:88
#: ../../mod/crepair.php:152
msgid "Friend Request URL"
msgstr "URL запроса в друзья"
#: ../../mod/crepair.php:89
#: ../../mod/crepair.php:153
msgid "Friend Confirm URL"
msgstr "URL подтверждения друга"
#: ../../mod/crepair.php:90
#: ../../mod/crepair.php:154
msgid "Notification Endpoint URL"
msgstr "URL эндпоинта уведомления"
#: ../../mod/crepair.php:91
#: ../../mod/crepair.php:155
msgid "Poll/Feed URL"
msgstr "URL опроса/ленты"
#: ../../mod/crepair.php:100 ../../mod/fsuggest.php:107
#: ../../mod/events.php:333 ../../mod/photos.php:877 ../../mod/photos.php:934
#: ../../mod/photos.php:1144 ../../mod/photos.php:1184
#: ../../mod/photos.php:1223 ../../mod/photos.php:1254
#: ../../mod/install.php:137 ../../mod/contacts.php:296
#: ../../mod/settings.php:482 ../../mod/manage.php:106 ../../mod/group.php:84
#: ../../mod/group.php:167 ../../mod/admin.php:298 ../../mod/admin.php:461
#: ../../mod/admin.php:587 ../../mod/admin.php:652 ../../mod/profiles.php:372
#: ../../mod/invite.php:106 ../../addon/facebook/facebook.php:366
#: ../../addon/randplace/randplace.php:178
#: ../../addon/impressum/impressum.php:69 ../../addon/oembed/oembed.php:41
#: ../../addon/statusnet/statusnet.php:274
#: ../../addon/statusnet/statusnet.php:288
#: ../../addon/statusnet/statusnet.php:314
#: ../../addon/statusnet/statusnet.php:321
#: ../../addon/statusnet/statusnet.php:343
#: ../../addon/statusnet/statusnet.php:468 ../../addon/piwik/piwik.php:76
#: ../../addon/twitter/twitter.php:171 ../../addon/twitter/twitter.php:194
#: ../../addon/twitter/twitter.php:280 ../../include/conversation.php:409
#: ../../mod/crepair.php:156
msgid "New photo from this URL"
msgstr "Новое фото из этой URL"
#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
#: ../../mod/events.php:455 ../../mod/photos.php:1005
#: ../../mod/photos.php:1081 ../../mod/photos.php:1338
#: ../../mod/photos.php:1378 ../../mod/photos.php:1419
#: ../../mod/photos.php:1451 ../../mod/install.php:246
#: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199
#: ../../mod/content.php:693 ../../mod/contacts.php:348
#: ../../mod/settings.php:543 ../../mod/settings.php:697
#: ../../mod/settings.php:769 ../../mod/settings.php:976
#: ../../mod/group.php:85 ../../mod/mood.php:137 ../../mod/message.php:294
#: ../../mod/message.php:480 ../../mod/admin.php:443 ../../mod/admin.php:689
#: ../../mod/admin.php:826 ../../mod/admin.php:1025 ../../mod/admin.php:1112
#: ../../mod/profiles.php:583 ../../mod/invite.php:119
#: ../../addon/fromgplus/fromgplus.php:40
#: ../../addon/facebook/facebook.php:619
#: ../../addon/snautofollow/snautofollow.php:64 ../../addon/bg/bg.php:90
#: ../../addon/fbpost/fbpost.php:226 ../../addon/yourls/yourls.php:76
#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:88
#: ../../addon/page/page.php:210 ../../addon/planets/planets.php:158
#: ../../addon/uhremotestorage/uhremotestorage.php:89
#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93
#: ../../addon/drpost/drpost.php:110 ../../addon/startpage/startpage.php:92
#: ../../addon/geonames/geonames.php:187 ../../addon/oembed.old/oembed.php:41
#: ../../addon/forumlist/forumlist.php:163
#: ../../addon/impressum/impressum.php:83
#: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57
#: ../../addon/qcomment/qcomment.php:61
#: ../../addon/openstreetmap/openstreetmap.php:70
#: ../../addon/group_text/group_text.php:84
#: ../../addon/libravatar/libravatar.php:99
#: ../../addon/libertree/libertree.php:90 ../../addon/altpager/altpager.php:87
#: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84
#: ../../addon/blackout/blackout.php:98 ../../addon/gravatar/gravatar.php:95
#: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93
#: ../../addon/jappixmini/jappixmini.php:307
#: ../../addon/statusnet/statusnet.php:278
#: ../../addon/statusnet/statusnet.php:292
#: ../../addon/statusnet/statusnet.php:318
#: ../../addon/statusnet/statusnet.php:325
#: ../../addon/statusnet/statusnet.php:353
#: ../../addon/statusnet/statusnet.php:576 ../../addon/tumblr/tumblr.php:90
#: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88
#: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48
#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180
#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:394
#: ../../addon/irc/irc.php:55 ../../addon/fromapp/fromapp.php:77
#: ../../addon/blogger/blogger.php:102 ../../addon/posterous/posterous.php:103
#: ../../view/theme/cleanzero/config.php:80
#: ../../view/theme/diabook/theme.php:757
#: ../../view/theme/diabook/config.php:190
#: ../../view/theme/quattro/config.php:53 ../../view/theme/dispy/config.php:70
#: ../../object/Item.php:560
msgid "Submit"
msgstr "Подтвердить"
#: ../../mod/help.php:27
#: ../../mod/help.php:30
msgid "Help:"
msgstr "Помощь:"
#: ../../mod/help.php:31 ../../include/nav.php:64
#: ../../mod/help.php:34 ../../addon/dav/friendica/layout.fnk.php:225
#: ../../include/nav.php:86
msgid "Help"
msgstr "Помощь"
#: ../../mod/wall_attach.php:57
#: ../../mod/help.php:38 ../../index.php:226
msgid "Not Found"
msgstr "Не найдено"
#: ../../mod/help.php:41 ../../index.php:229
msgid "Page not found."
msgstr "Страница не найдена."
#: ../../mod/wall_attach.php:69
#, php-format
msgid "File exceeds size limit of %d"
msgstr "Файл превышает предельный размер %d"
#: ../../mod/wall_attach.php:87 ../../mod/wall_attach.php:98
#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
msgid "File upload failed."
msgstr "Загрузка файла не удалась."
#: ../../mod/fsuggest.php:63
msgid "Friend suggestion sent."
msgstr ""
msgstr "Приглашение в друзья отправлено."
#: ../../mod/fsuggest.php:97
msgid "Suggest Friends"
msgstr ""
msgstr "Предложить друзей"
#: ../../mod/fsuggest.php:99
#, php-format
msgid "Suggest a friend for %s"
msgstr "Предложить друга для %s."
#: ../../mod/events.php:66
msgid "Event title and start time are required."
msgstr ""
#: ../../mod/events.php:112 ../../mod/photos.php:834 ../../mod/notes.php:46
#: ../../mod/profile.php:116
msgid "Status"
msgstr "Статус"
#: ../../mod/events.php:113 ../../mod/photos.php:835 ../../mod/notes.php:47
#: ../../mod/profperm.php:103 ../../mod/profile.php:117
#: ../../include/profile_advanced.php:7
msgid "Profile"
msgstr "Профиль"
#: ../../mod/events.php:114 ../../mod/photos.php:836 ../../mod/notes.php:48
#: ../../mod/profile.php:118
msgid "Photos"
msgstr "Фото"
#: ../../mod/events.php:115 ../../mod/events.php:120 ../../mod/photos.php:837
#: ../../mod/notes.php:49 ../../mod/profile.php:119
msgid "Events"
msgstr ""
#: ../../mod/events.php:116 ../../mod/photos.php:838 ../../mod/notes.php:50
#: ../../mod/notes.php:55 ../../mod/profile.php:120
msgid "Personal Notes"
msgstr ""
#: ../../mod/events.php:210
msgid "Create New Event"
msgstr ""
#: ../../mod/events.php:213
msgid "Previous"
msgstr ""
#: ../../mod/events.php:216
msgid "Next"
msgstr ""
#: ../../mod/events.php:223
#: ../../mod/events.php:279
msgid "l, F j"
msgstr ""
msgstr "l, j F"
#: ../../mod/events.php:235
#: ../../mod/events.php:301
msgid "Edit event"
msgstr ""
msgstr "Редактировать мероприятие"
#: ../../mod/events.php:237 ../../include/text.php:846
#: ../../mod/events.php:323 ../../include/text.php:1187
msgid "link to source"
msgstr "ссылка на источник"
#: ../../mod/events.php:305
#: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:131
#: ../../include/nav.php:52 ../../boot.php:1689
msgid "Events"
msgstr "Мероприятия"
#: ../../mod/events.php:348
msgid "Create New Event"
msgstr "Создать новое мероприятие"
#: ../../mod/events.php:349 ../../addon/dav/friendica/layout.fnk.php:263
msgid "Previous"
msgstr "Назад"
#: ../../mod/events.php:350 ../../mod/install.php:205
#: ../../addon/dav/friendica/layout.fnk.php:266
msgid "Next"
msgstr "Далее"
#: ../../mod/events.php:423
msgid "hour:minute"
msgstr ""
msgstr "час:минута"
#: ../../mod/events.php:314
#: ../../mod/events.php:433
msgid "Event details"
msgstr ""
msgstr "Сведения о мероприятии"
#: ../../mod/events.php:315
#: ../../mod/events.php:434
#, php-format
msgid "Format is %s %s. Starting date and Description are required."
msgid "Format is %s %s. Starting date and Title are required."
msgstr ""
#: ../../mod/events.php:316
#: ../../mod/events.php:436
msgid "Event Starts:"
msgstr "Начало мероприятия:"
#: ../../mod/events.php:436 ../../mod/events.php:450
msgid "Required"
msgstr ""
#: ../../mod/events.php:319
#: ../../mod/events.php:439
msgid "Finish date/time is not known or not relevant"
msgstr ""
msgstr "Дата/время окончания не известны, или не указаны"
#: ../../mod/events.php:321
#: ../../mod/events.php:441
msgid "Event Finishes:"
msgstr ""
msgstr "Окончание мероприятия:"
#: ../../mod/events.php:324
#: ../../mod/events.php:444
msgid "Adjust for viewer timezone"
msgstr ""
msgstr "Настройка часового пояса"
#: ../../mod/events.php:326
#: ../../mod/events.php:446
msgid "Description:"
msgstr ""
msgstr "Описание:"
#: ../../mod/events.php:328 ../../include/event.php:37 ../../boot.php:868
#: ../../mod/events.php:448 ../../mod/directory.php:134
#: ../../include/event.php:40 ../../include/bb2diaspora.php:412
#: ../../boot.php:1226
msgid "Location:"
msgstr "Местоположение:"
msgstr "Откуда:"
#: ../../mod/events.php:330
msgid "Share this event"
#: ../../mod/events.php:450
msgid "Title:"
msgstr ""
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
#: ../../mod/dfrn_request.php:644 ../../addon/js_upload/js_upload.php:45
#: ../../mod/events.php:452
msgid "Share this event"
msgstr "Поделитесь этим мероприятием"
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:136
#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:544
#: ../../mod/settings.php:570 ../../addon/js_upload/js_upload.php:45
#: ../../include/conversation.php:935
msgid "Cancel"
msgstr "Отмена"
@ -264,736 +326,955 @@ msgstr "Удалить ключевое слово"
msgid "Select a tag to remove: "
msgstr "Выберите ключевое слово для удаления: "
#: ../../mod/tagrm.php:93
#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
#: ../../addon/dav/common/wdcal_edit.inc.php:468
msgid "Remove"
msgstr "Удалить"
#: ../../mod/dfrn_poll.php:90 ../../mod/dfrn_poll.php:516
#: ../../mod/dfrn_poll.php:99 ../../mod/dfrn_poll.php:530
#, php-format
msgid "%s welcomes %s"
msgstr "%s приглашает %s"
msgstr "%s приветствует %s"
#: ../../mod/photos.php:37
#: ../../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/api.php:105 ../../mod/dfrn_request.php:835
#: ../../mod/settings.php:892 ../../mod/settings.php:898
#: ../../mod/settings.php:906 ../../mod/settings.php:910
#: ../../mod/settings.php:915 ../../mod/settings.php:921
#: ../../mod/settings.php:927 ../../mod/settings.php:933
#: ../../mod/settings.php:963 ../../mod/settings.php:964
#: ../../mod/settings.php:965 ../../mod/settings.php:966
#: ../../mod/settings.php:967 ../../mod/register.php:236
#: ../../mod/profiles.php:563
msgid "Yes"
msgstr "Да"
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:836
#: ../../mod/settings.php:892 ../../mod/settings.php:898
#: ../../mod/settings.php:906 ../../mod/settings.php:910
#: ../../mod/settings.php:915 ../../mod/settings.php:921
#: ../../mod/settings.php:927 ../../mod/settings.php:933
#: ../../mod/settings.php:963 ../../mod/settings.php:964
#: ../../mod/settings.php:965 ../../mod/settings.php:966
#: ../../mod/settings.php:967 ../../mod/register.php:237
#: ../../mod/profiles.php:564
msgid "No"
msgstr "Нет"
#: ../../mod/photos.php:46 ../../boot.php:1682
msgid "Photo Albums"
msgstr "Фотоальбомы"
#: ../../mod/photos.php:45 ../../mod/photos.php:143 ../../mod/photos.php:857
#: ../../mod/photos.php:926 ../../mod/photos.php:941 ../../mod/photos.php:1332
#: ../../mod/photos.php:1344
#: ../../mod/photos.php:54 ../../mod/photos.php:149 ../../mod/photos.php:986
#: ../../mod/photos.php:1073 ../../mod/photos.php:1088
#: ../../mod/photos.php:1530 ../../mod/photos.php:1542
#: ../../addon/communityhome/communityhome.php:110
#: ../../view/theme/diabook/theme.php:598
msgid "Contact Photos"
msgstr "Фотографии контакта"
#: ../../mod/photos.php:57 ../../mod/settings.php:9
#: ../../mod/photos.php:61 ../../mod/photos.php:1104 ../../mod/photos.php:1580
msgid "Upload New Photos"
msgstr "Загрузить новые фото"
#: ../../mod/photos.php:74 ../../mod/settings.php:23
msgid "everybody"
msgstr "все"
msgstr "каждый"
#: ../../mod/photos.php:132
#: ../../mod/photos.php:138
msgid "Contact information unavailable"
msgstr "Контактная информация недоступна"
msgstr "Информация о контакте недоступна"
#: ../../mod/photos.php:143 ../../mod/photos.php:577 ../../mod/photos.php:926
#: ../../mod/photos.php:941 ../../mod/register.php:316
#: ../../mod/register.php:323 ../../mod/register.php:330
#: ../../mod/profile_photo.php:58 ../../mod/profile_photo.php:65
#: ../../mod/profile_photo.php:72 ../../mod/profile_photo.php:160
#: ../../mod/profile_photo.php:236 ../../mod/profile_photo.php:245
#: ../../mod/photos.php:149 ../../mod/photos.php:653 ../../mod/photos.php:1073
#: ../../mod/photos.php:1088 ../../mod/profile_photo.php:74
#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88
#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296
#: ../../mod/profile_photo.php:305
#: ../../addon/communityhome/communityhome.php:111
#: ../../view/theme/diabook/theme.php:599 ../../include/user.php:324
#: ../../include/user.php:331 ../../include/user.php:338
msgid "Profile Photos"
msgstr "Фотографии профиля"
#: ../../mod/photos.php:153
#: ../../mod/photos.php:159
msgid "Album not found."
msgstr "Альбом не найден."
#: ../../mod/photos.php:171 ../../mod/photos.php:935
#: ../../mod/photos.php:177 ../../mod/photos.php:1082
msgid "Delete Album"
msgstr "Удалить альбом"
#: ../../mod/photos.php:234 ../../mod/photos.php:1145
#: ../../mod/photos.php:240 ../../mod/photos.php:1339
msgid "Delete Photo"
msgstr "Удалить фото"
#: ../../mod/photos.php:508
#: ../../mod/photos.php:584
msgid "was tagged in a"
msgstr "отмечен/а/ в"
#: ../../mod/photos.php:508 ../../mod/like.php:110
#: ../../include/diaspora.php:446 ../../include/conversation.php:31
#: ../../mod/photos.php:584 ../../mod/like.php:145 ../../mod/tagger.php:62
#: ../../addon/communityhome/communityhome.php:163
#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1439
#: ../../include/diaspora.php:1824 ../../include/conversation.php:125
#: ../../include/conversation.php:253
msgid "photo"
msgstr "фото"
#: ../../mod/photos.php:508
#: ../../mod/photos.php:584
msgid "by"
msgstr "от"
msgstr "с"
#: ../../mod/photos.php:608 ../../addon/js_upload/js_upload.php:310
#: ../../mod/photos.php:689 ../../addon/js_upload/js_upload.php:315
msgid "Image exceeds size limit of "
msgstr "Размер фото превышает лимит "
#: ../../mod/photos.php:616
#: ../../mod/photos.php:697
msgid "Image file is empty."
msgstr ""
msgstr "Файл изображения пуст."
#: ../../mod/photos.php:630 ../../mod/profile_photo.php:118
#: ../../mod/wall_upload.php:65
#: ../../mod/photos.php:729 ../../mod/profile_photo.php:153
#: ../../mod/wall_upload.php:110
msgid "Unable to process image."
msgstr "Невозможно обработать фото."
#: ../../mod/photos.php:650 ../../mod/profile_photo.php:241
#: ../../mod/wall_upload.php:84
#: ../../mod/photos.php:756 ../../mod/profile_photo.php:301
#: ../../mod/wall_upload.php:136
msgid "Image upload failed."
msgstr "Загрузка фото неудачная."
#: ../../mod/photos.php:733 ../../mod/community.php:9
#: ../../mod/dfrn_request.php:591 ../../mod/viewcontacts.php:16
#: ../../mod/display.php:7 ../../mod/search.php:13 ../../mod/directory.php:20
#: ../../mod/photos.php:842 ../../mod/community.php:18
#: ../../mod/dfrn_request.php:760 ../../mod/viewcontacts.php:17
#: ../../mod/display.php:7 ../../mod/search.php:73 ../../mod/directory.php:31
msgid "Public access denied."
msgstr "Свободный доступ закрыт."
#: ../../mod/photos.php:743
#: ../../mod/photos.php:852
msgid "No photos selected"
msgstr "Не выбрано фото."
#: ../../mod/photos.php:820
#: ../../mod/photos.php:953
msgid "Access to this item is restricted."
msgstr "Доступ к этому пункту ограничен."
#: ../../mod/photos.php:1015
#, php-format
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgstr ""
#: ../../mod/photos.php:884
#: ../../mod/photos.php:1018
#, php-format
msgid "You have used %1$.2f Mbytes of photo storage."
msgstr ""
#: ../../mod/photos.php:1024
msgid "Upload Photos"
msgstr "Загрузить фото"
#: ../../mod/photos.php:887 ../../mod/photos.php:930
#: ../../mod/photos.php:1028 ../../mod/photos.php:1077
msgid "New album name: "
msgstr "Название нового альбома: "
#: ../../mod/photos.php:888
#: ../../mod/photos.php:1029
msgid "or existing album name: "
msgstr "или название существующего альбома: "
#: ../../mod/photos.php:890 ../../mod/photos.php:1140
#: ../../mod/photos.php:1030
msgid "Do not show a status post for this upload"
msgstr "Не показывать статус-сообщение для этой закачки"
#: ../../mod/photos.php:1032 ../../mod/photos.php:1334
msgid "Permissions"
msgstr "Разрешения"
#: ../../mod/photos.php:945
#: ../../mod/photos.php:1092
msgid "Edit Album"
msgstr "Редактировать альбом"
#: ../../mod/photos.php:955 ../../mod/photos.php:1362
msgid "View Photo"
msgstr "Просмотреть фото"
#: ../../mod/photos.php:1098
msgid "Show Newest First"
msgstr ""
#: ../../mod/photos.php:984
#: ../../mod/photos.php:1100
msgid "Show Oldest First"
msgstr ""
#: ../../mod/photos.php:1124 ../../mod/photos.php:1563
msgid "View Photo"
msgstr "Просмотр фото"
#: ../../mod/photos.php:1159
msgid "Permission denied. Access to this item may be restricted."
msgstr "Нет разрешения. Доступ к этому элементу ограничен."
#: ../../mod/photos.php:1161
msgid "Photo not available"
msgstr "Фото недоступно"
#: ../../mod/photos.php:1033
#: ../../mod/photos.php:1217
msgid "View photo"
msgstr "Просмотр фото"
#: ../../mod/photos.php:1217
msgid "Edit photo"
msgstr "Редактировать фото"
#: ../../mod/photos.php:1034
#: ../../mod/photos.php:1218
msgid "Use as profile photo"
msgstr "Использовать как фото профиля"
#: ../../mod/photos.php:1040 ../../include/conversation.php:342
#: ../../mod/photos.php:1224 ../../mod/content.php:603
#: ../../object/Item.php:103
msgid "Private Message"
msgstr "Личное сообщение"
#: ../../mod/photos.php:1051
#: ../../mod/photos.php:1243
msgid "View Full Size"
msgstr "Просмотреть полный размер"
#: ../../mod/photos.php:1119
#: ../../mod/photos.php:1311
msgid "Tags: "
msgstr "Ключевые слова: "
#: ../../mod/photos.php:1122
#: ../../mod/photos.php:1314
msgid "[Remove any tag]"
msgstr "[Удалить любое ключевое слово]"
#: ../../mod/photos.php:1133
#: ../../mod/photos.php:1324
msgid "Rotate CW (right)"
msgstr ""
#: ../../mod/photos.php:1325
msgid "Rotate CCW (left)"
msgstr ""
#: ../../mod/photos.php:1327
msgid "New album name"
msgstr "Название нового альбома"
#: ../../mod/photos.php:1136
#: ../../mod/photos.php:1330
msgid "Caption"
msgstr "Подпись"
#: ../../mod/photos.php:1138
#: ../../mod/photos.php:1332
msgid "Add a Tag"
msgstr "Добавить ключевое слово"
msgstr "Добавить ключевое слово (таг)"
#: ../../mod/photos.php:1142
#: ../../mod/photos.php:1336
msgid ""
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr ""
"Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
#: ../../mod/photos.php:1162 ../../include/conversation.php:390
#: ../../mod/photos.php:1356 ../../mod/content.php:667
#: ../../object/Item.php:196
msgid "I like this (toggle)"
msgstr "Мне нравится это (флаг)"
msgstr "Нравится"
#: ../../mod/photos.php:1163 ../../include/conversation.php:391
#: ../../mod/photos.php:1357 ../../mod/content.php:668
#: ../../object/Item.php:197
msgid "I don't like this (toggle)"
msgstr "Мне не нравится это (флаг)"
msgstr "Не нравится"
#: ../../mod/photos.php:1164 ../../include/conversation.php:392
#: ../../include/conversation.php:746
#: ../../mod/photos.php:1358 ../../include/conversation.php:896
msgid "Share"
msgstr "Поделиться"
#: ../../mod/photos.php:1165 ../../mod/editpost.php:99
#: ../../mod/message.php:190 ../../mod/message.php:324
#: ../../include/conversation.php:393 ../../include/conversation.php:756
#: ../../mod/photos.php:1359 ../../mod/editpost.php:112
#: ../../mod/content.php:482 ../../mod/content.php:845
#: ../../mod/wallmessage.php:152 ../../mod/message.php:293
#: ../../mod/message.php:481 ../../include/conversation.php:570
#: ../../include/conversation.php:915 ../../object/Item.php:258
msgid "Please wait"
msgstr "Пожалуйста, подождите"
#: ../../mod/photos.php:1181 ../../mod/photos.php:1220
#: ../../mod/photos.php:1251 ../../include/conversation.php:406
#: ../../mod/photos.php:1375 ../../mod/photos.php:1416
#: ../../mod/photos.php:1448 ../../mod/content.php:690
#: ../../object/Item.php:557
msgid "This is you"
msgstr "Это вы"
#: ../../mod/photos.php:1183 ../../mod/photos.php:1222
#: ../../mod/photos.php:1253 ../../include/conversation.php:408
#: ../../boot.php:411
#: ../../mod/photos.php:1377 ../../mod/photos.php:1418
#: ../../mod/photos.php:1450 ../../mod/content.php:692 ../../boot.php:574
#: ../../object/Item.php:559
msgid "Comment"
msgstr "Комментарий"
#: ../../mod/photos.php:1281 ../../mod/group.php:154 ../../mod/admin.php:468
#: ../../include/conversation.php:427
#: ../../mod/photos.php:1379 ../../mod/editpost.php:133
#: ../../mod/content.php:702 ../../include/conversation.php:933
#: ../../object/Item.php:569
msgid "Preview"
msgstr "предварительный просмотр"
#: ../../mod/photos.php:1479 ../../mod/content.php:439
#: ../../mod/content.php:723 ../../mod/settings.php:606
#: ../../mod/settings.php:695 ../../mod/group.php:168 ../../mod/admin.php:696
#: ../../include/conversation.php:515 ../../object/Item.php:117
msgid "Delete"
msgstr "Удалить"
#: ../../mod/photos.php:1349
msgid "Recent Photos"
msgstr "Последние фото"
#: ../../mod/photos.php:1353
msgid "Upload New Photos"
msgstr "Загрузить новые фотографии"
#: ../../mod/photos.php:1366
#: ../../mod/photos.php:1569
msgid "View Album"
msgstr "Просмотреть альбом"
#: ../../mod/community.php:14
#: ../../mod/photos.php:1578
msgid "Recent Photos"
msgstr "Последние фото"
#: ../../mod/community.php:23
msgid "Not available."
msgstr ""
msgstr "Недоступно."
#: ../../mod/community.php:26 ../../include/nav.php:79
#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:133
#: ../../include/nav.php:101
msgid "Community"
msgstr ""
msgstr "Сообщество"
#: ../../mod/community.php:56 ../../mod/search.php:65
#: ../../mod/community.php:63 ../../mod/community.php:88
#: ../../mod/search.php:148 ../../mod/search.php:174
msgid "No results."
msgstr "Нет результатов."
#: ../../mod/community.php:83 ../../mod/network.php:302
#: ../../mod/register.php:504 ../../mod/profile.php:241
#: ../../mod/display.php:117
#: ../../mod/friendica.php:55
msgid "This is Friendica, version"
msgstr "Это Friendica, версия"
#: ../../mod/friendica.php:56
msgid "running at web location"
msgstr "работает на веб-узле"
#: ../../mod/friendica.php:58
msgid ""
"Shared content is covered by the <a "
"href=\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons "
"Attribution 3.0</a> license."
"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
"more about the Friendica project."
msgstr ""
"Общий контент покрывается лицензией <a "
"href=\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons "
"Attribution 3.0</a>."
#: ../../mod/friendica.php:60
msgid "Bug reports and issues: please visit"
msgstr "Отчет об ошибках и проблемах: пожалуйста, посетите"
#: ../../mod/friendica.php:61
msgid ""
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
"dot com"
msgstr ""
#: ../../mod/friendica.php:75
msgid "Installed plugins/addons/apps:"
msgstr ""
#: ../../mod/friendica.php:88
msgid "No installed plugins/addons/apps"
msgstr "Нет установленных плагинов / добавок / приложений"
#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
msgid "Item not found"
msgstr "Пункт не найден"
msgstr "Элемент не найден"
#: ../../mod/editpost.php:32
#: ../../mod/editpost.php:36
msgid "Edit post"
msgstr "Редактировать сообщение"
#: ../../mod/editpost.php:75 ../../include/conversation.php:732
#: ../../mod/editpost.php:88 ../../include/conversation.php:882
msgid "Post to Email"
msgstr "Отправить на Email"
#: ../../mod/editpost.php:90 ../../include/group.php:171
#: ../../include/group.php:172 ../../include/conversation.php:417
#: ../../mod/editpost.php:103 ../../mod/content.php:710
#: ../../mod/settings.php:605 ../../object/Item.php:107
msgid "Edit"
msgstr "Редактировать"
#: ../../mod/editpost.php:91 ../../mod/message.php:188
#: ../../mod/message.php:322 ../../include/conversation.php:747
#: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150
#: ../../mod/message.php:291 ../../mod/message.php:478
#: ../../include/conversation.php:897
msgid "Upload photo"
msgstr "Загрузить фото"
#: ../../mod/editpost.php:92 ../../include/conversation.php:748
#: ../../mod/editpost.php:105 ../../include/conversation.php:899
msgid "Attach file"
msgstr "Приложить файл"
#: ../../mod/editpost.php:93 ../../mod/message.php:189
#: ../../mod/message.php:323 ../../include/conversation.php:749
#: ../../mod/editpost.php:106 ../../mod/wallmessage.php:151
#: ../../mod/message.php:292 ../../mod/message.php:479
#: ../../include/conversation.php:901
msgid "Insert web link"
msgstr "Вставить веб-ссылку"
#: ../../mod/editpost.php:94 ../../include/conversation.php:750
#: ../../mod/editpost.php:107
msgid "Insert YouTube video"
msgstr "Вставить видео YouTube"
#: ../../mod/editpost.php:95 ../../include/conversation.php:751
#: ../../mod/editpost.php:108
msgid "Insert Vorbis [.ogg] video"
msgstr "Вставить Vorbis [.ogg] видео"
#: ../../mod/editpost.php:96 ../../include/conversation.php:752
#: ../../mod/editpost.php:109
msgid "Insert Vorbis [.ogg] audio"
msgstr "Вставить Vorbis [.ogg] аудио"
#: ../../mod/editpost.php:97 ../../include/conversation.php:753
#: ../../mod/editpost.php:110 ../../include/conversation.php:907
msgid "Set your location"
msgstr "Задать ваше местоположение"
#: ../../mod/editpost.php:98 ../../include/conversation.php:754
#: ../../mod/editpost.php:111 ../../include/conversation.php:909
msgid "Clear browser location"
msgstr "Очистить местоположение браузера"
msgstr "Очистить местонахождение браузера"
#: ../../mod/editpost.php:100 ../../include/conversation.php:757
#: ../../mod/editpost.php:113 ../../include/conversation.php:916
msgid "Permission settings"
msgstr "Настройки разрешений"
#: ../../mod/editpost.php:108 ../../include/conversation.php:765
#: ../../mod/editpost.php:121 ../../include/conversation.php:925
msgid "CC: email addresses"
msgstr "CC: адреса электронной почты"
msgstr "Копии на email адреса"
#: ../../mod/editpost.php:109 ../../include/conversation.php:766
#: ../../mod/editpost.php:122 ../../include/conversation.php:926
msgid "Public post"
msgstr "Публичное сообщение"
#: ../../mod/editpost.php:111 ../../include/conversation.php:768
#: ../../mod/editpost.php:125 ../../include/conversation.php:912
msgid "Set title"
msgstr "Установить заголовок"
#: ../../mod/editpost.php:127 ../../include/conversation.php:914
msgid "Categories (comma-separated list)"
msgstr "Категории (список через запятую)"
#: ../../mod/editpost.php:128 ../../include/conversation.php:928
msgid "Example: bob@example.com, mary@example.com"
msgstr "Пример: bob@example.com, mary@example.com"
#: ../../mod/dfrn_request.php:96
#: ../../mod/dfrn_request.php:93
msgid "This introduction has already been accepted."
msgstr "Эта краткая информация уже была принята."
msgstr "Этот запрос был уже принят."
#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:351
#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:512
msgid "Profile location is not valid or does not contain profile information."
msgstr ""
"Местоположение профиля является недопустимым или не содержит информацию о "
"профиле."
msgstr "Местоположение профиля является недопустимым или не содержит информацию о профиле."
#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:356
#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:517
msgid "Warning: profile location has no identifiable owner name."
msgstr ""
"Внимание: местоположение профиля не имеет идентифицируемого имени владельца."
msgstr "Внимание: местоположение профиля не имеет идентифицируемого имени владельца."
#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:358
#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:519
msgid "Warning: profile location has no profile photo."
msgstr "Внимание: местоположение профиля не имеет еще фотографии профиля."
#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:361
#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:522
#, php-format
msgid "%d required parameter was not found at the given location"
msgid_plural "%d required parameters were not found at the given location"
msgstr[0] "%d требуемый параметр не был найден в заданном месте"
msgstr[1] "%d требуемые параметры не были найдены в заданном месте"
msgstr[2] "%d требуемые параметры не были найдены в заданном месте"
msgstr[1] "%d требуемых параметров не были найдены в заданном месте"
msgstr[2] "%d требуемых параметров не были найдены в заданном месте"
#: ../../mod/dfrn_request.php:168
#: ../../mod/dfrn_request.php:170
msgid "Introduction complete."
msgstr "Краткая информация заполнена."
msgstr "Запрос создан."
#: ../../mod/dfrn_request.php:192
#: ../../mod/dfrn_request.php:209
msgid "Unrecoverable protocol error."
msgstr "Неисправимая ошибка протокола."
#: ../../mod/dfrn_request.php:220
#: ../../mod/dfrn_request.php:237
msgid "Profile unavailable."
msgstr "Профиль недоступен."
#: ../../mod/dfrn_request.php:245
#: ../../mod/dfrn_request.php:262
#, php-format
msgid "%s has received too many connection requests today."
msgstr "К %s пришло сегодня слишком много запросов на подключение."
#: ../../mod/dfrn_request.php:246
#: ../../mod/dfrn_request.php:263
msgid "Spam protection measures have been invoked."
msgstr "Были применены меры защиты от спама."
#: ../../mod/dfrn_request.php:247
#: ../../mod/dfrn_request.php:264
msgid "Friends are advised to please try again in 24 hours."
msgstr "Друзья советуют попробовать еще раз в ближайшие 24 часа."
#: ../../mod/dfrn_request.php:277
#: ../../mod/dfrn_request.php:326
msgid "Invalid locator"
msgstr "Недопустимый локатор"
#: ../../mod/dfrn_request.php:296
#: ../../mod/dfrn_request.php:335
msgid "Invalid email address."
msgstr ""
#: ../../mod/dfrn_request.php:361
msgid "This account has not been configured for email. Request failed."
msgstr ""
#: ../../mod/dfrn_request.php:457
msgid "Unable to resolve your name at the provided location."
msgstr "Не удается установить ваше имя на предложенном местоположении."
#: ../../mod/dfrn_request.php:309
#: ../../mod/dfrn_request.php:470
msgid "You have already introduced yourself here."
msgstr "Вы уже ввели информацию о себе здесь."
#: ../../mod/dfrn_request.php:313
#: ../../mod/dfrn_request.php:474
#, php-format
msgid "Apparently you are already friends with %s."
msgstr "Похоже, что вы уже друзья с %s."
#: ../../mod/dfrn_request.php:334
#: ../../mod/dfrn_request.php:495
msgid "Invalid profile URL."
msgstr "Неверный URL профиля."
#: ../../mod/dfrn_request.php:340 ../../mod/follow.php:20
#: ../../mod/dfrn_request.php:501 ../../include/follow.php:27
msgid "Disallowed profile URL."
msgstr "Запрещенный URL профиля."
#: ../../mod/dfrn_request.php:406 ../../mod/contacts.php:116
#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:123
msgid "Failed to update contact record."
msgstr "Не удалось обновить запись контакта."
#: ../../mod/dfrn_request.php:427
#: ../../mod/dfrn_request.php:591
msgid "Your introduction has been sent."
msgstr "Ваша краткая информация отправлена."
msgstr "Ваш запрос отправлен."
#: ../../mod/dfrn_request.php:481
#: ../../mod/dfrn_request.php:644
msgid "Please login to confirm introduction."
msgstr "Пожалуйста, войдите с паролем для подтверждения краткой информации."
msgstr "Для подтверждения запроса войдите пожалуйста с паролем."
#: ../../mod/dfrn_request.php:495
#: ../../mod/dfrn_request.php:658
msgid ""
"Incorrect identity currently logged in. Please login to "
"<strong>this</strong> profile."
msgstr ""
"Неверно идентифицирован вход. Пожалуйста, войдите в <strong>этот</strong> "
"профиль."
msgstr "Неверно идентифицирован вход. Пожалуйста, войдите в <strong>этот</strong> профиль."
#: ../../mod/dfrn_request.php:507
#: ../../mod/dfrn_request.php:669
msgid "Hide this contact"
msgstr ""
#: ../../mod/dfrn_request.php:672
#, php-format
msgid "Welcome home %s."
msgstr "Добро пожаловать домой, %s!"
#: ../../mod/dfrn_request.php:508
#: ../../mod/dfrn_request.php:673
#, php-format
msgid "Please confirm your introduction/connection request to %s."
msgstr ""
"Пожалуйста, подтвердите краткую информацию / запрос на подключение к %s."
msgstr "Пожалуйста, подтвердите краткую информацию / запрос на подключение к %s."
#: ../../mod/dfrn_request.php:509
#: ../../mod/dfrn_request.php:674
msgid "Confirm"
msgstr "Подтвердить"
#: ../../mod/dfrn_request.php:542 ../../include/items.php:1519
#: ../../mod/dfrn_request.php:715 ../../include/items.php:3292
msgid "[Name Withheld]"
msgstr "[Имя не разглашается]"
#: ../../mod/dfrn_request.php:549
msgid "Introduction received at "
msgstr "Краткая информация получена "
#: ../../mod/dfrn_request.php:810
msgid ""
"Please enter your 'Identity Address' from one of the following supported "
"communications networks:"
msgstr ""
#: ../../mod/dfrn_request.php:551 ../../mod/lostpass.php:44
#: ../../mod/lostpass.php:106 ../../mod/register.php:369
#: ../../mod/register.php:423 ../../mod/regmod.php:54
#: ../../mod/dfrn_notify.php:291 ../../mod/dfrn_notify.php:547
#: ../../mod/dfrn_confirm.php:674 ../../include/items.php:1528
msgid "Administrator"
msgstr "Администратор"
#: ../../mod/dfrn_request.php:826
msgid "<strike>Connect as an email follower</strike> (Coming soon)"
msgstr ""
#: ../../mod/dfrn_request.php:630
#: ../../mod/dfrn_request.php:828
msgid ""
"If you are not yet a member of the free social web, <a "
"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
" Friendica site and join us today</a>."
msgstr ""
#: ../../mod/dfrn_request.php:831
msgid "Friend/Connection Request"
msgstr "Запрос в друзья / на подключение"
#: ../../mod/dfrn_request.php:631
#: ../../mod/dfrn_request.php:832
msgid ""
"Examples: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, "
"testuser@identi.ca"
msgstr ""
"Примеры: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, "
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca"
msgstr "Примеры: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, testuser@identi.ca"
#: ../../mod/dfrn_request.php:632
#: ../../mod/dfrn_request.php:833
msgid "Please answer the following:"
msgstr "Пожалуйста, ответьте следующее:"
#: ../../mod/dfrn_request.php:633
#: ../../mod/dfrn_request.php:834
#, php-format
msgid "Does %s know you?"
msgstr ""
msgstr "%s знает вас?"
#: ../../mod/dfrn_request.php:634 ../../mod/settings.php:415
#: ../../mod/settings.php:421 ../../mod/settings.php:429
#: ../../mod/settings.php:433 ../../mod/register.php:498
#: ../../mod/profiles.php:354
msgid "Yes"
msgstr "Да"
#: ../../mod/dfrn_request.php:635 ../../mod/settings.php:415
#: ../../mod/settings.php:421 ../../mod/settings.php:429
#: ../../mod/settings.php:433 ../../mod/register.php:499
#: ../../mod/profiles.php:355
msgid "No"
msgstr "Нет"
#: ../../mod/dfrn_request.php:636
#: ../../mod/dfrn_request.php:837
msgid "Add a personal note:"
msgstr "Добавить личную заметку:"
#: ../../mod/dfrn_request.php:637
msgid ""
"Please enter your 'Identity Address' from one of the following supported "
"social networks:"
msgstr ""
"Пожалуйста, введите ваш 'идентификационный адрес' одной из следующих "
"поддерживаемых социальных сетей:"
#: ../../mod/dfrn_request.php:839 ../../include/contact_selectors.php:76
msgid "Friendica"
msgstr "Friendica"
#: ../../mod/dfrn_request.php:638
msgid "Friendika"
msgstr "Friendika"
#: ../../mod/dfrn_request.php:639
#: ../../mod/dfrn_request.php:840
msgid "StatusNet/Federated Social Web"
msgstr "StatusNet / Federated Social Web"
#: ../../mod/dfrn_request.php:640
msgid "Private (secure) network"
msgstr "Частная (защищенная) сеть"
#: ../../mod/dfrn_request.php:841 ../../mod/settings.php:640
#: ../../include/contact_selectors.php:80
msgid "Diaspora"
msgstr "Diaspora"
#: ../../mod/dfrn_request.php:641
msgid "Public (insecure) network"
msgstr "Общественная (незащищенная) сеть"
#: ../../mod/dfrn_request.php:842
#, php-format
msgid ""
" - please do not use this form. Instead, enter %s into your Diaspora search"
" bar."
msgstr ""
#: ../../mod/dfrn_request.php:642
#: ../../mod/dfrn_request.php:843
msgid "Your Identity Address:"
msgstr "Ваш идентификационный адрес:"
#: ../../mod/dfrn_request.php:643
#: ../../mod/dfrn_request.php:846
msgid "Submit Request"
msgstr "Отправить запрос"
#: ../../mod/install.php:34
msgid "Could not create/connect to database."
msgstr "Не удается создать / подключиться к базе данных."
#: ../../mod/install.php:39
msgid "Connected to database."
msgstr "Подключено к базе данных."
#: ../../mod/install.php:75
msgid "Proceed with Installation"
msgstr "Приступить к установке"
#: ../../mod/install.php:77
msgid "Your Friendika site database has been installed."
msgstr "Ваша база данных сайта Friendika установлена."
#: ../../mod/install.php:78
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
#: ../../mod/install.php:117
msgid "Friendica Social Communications Server - Setup"
msgstr ""
"ВАЖНО: Вам нужно будет [вручную] установить запланированное задание для "
"регистратора."
#: ../../mod/install.php:79 ../../mod/install.php:89 ../../mod/install.php:207
msgid "Please see the file \"INSTALL.txt\"."
msgstr "Пожалуйста, смотрите файл \"INSTALL.txt\"."
#: ../../mod/install.php:123
msgid "Could not connect to database."
msgstr "Не удалось подключиться к базе данных."
#: ../../mod/install.php:81
msgid "Proceed to registration"
msgstr "Приступить к регистрации"
#: ../../mod/install.php:127
msgid "Could not create table."
msgstr "Не удалось создать таблицу."
#: ../../mod/install.php:87
msgid "Database import failed."
msgstr "Импорт базы данных неудачный."
#: ../../mod/install.php:133
msgid "Your Friendica site database has been installed."
msgstr "База данных сайта установлена."
#: ../../mod/install.php:88
#: ../../mod/install.php:138
msgid ""
"You may need to import the file \"database.sql\" manually using phpmyadmin "
"or mysql."
msgstr "Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью PhpMyAdmin или MySQL."
#: ../../mod/install.php:139 ../../mod/install.php:204
#: ../../mod/install.php:488
msgid "Please see the file \"INSTALL.txt\"."
msgstr "Пожалуйста, смотрите файл \"INSTALL.txt\"."
#: ../../mod/install.php:201
msgid "System check"
msgstr ""
"Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью"
" PhpMyAdmin или MySQL."
#: ../../mod/install.php:101
msgid "Welcome to Friendika."
msgstr "Добро пожаловать в Friendika!"
#: ../../mod/install.php:206
msgid "Check again"
msgstr "Проверить еще раз"
#: ../../mod/install.php:124
msgid "Friendika Social Network"
msgstr "Социальная сеть Friendika"
#: ../../mod/install.php:225
msgid "Database connection"
msgstr "Подключение к базе данных"
#: ../../mod/install.php:125
msgid "Installation"
msgstr "Установка"
#: ../../mod/install.php:126
#: ../../mod/install.php:226
msgid ""
"In order to install Friendika we need to know how to connect to your "
"In order to install Friendica we need to know how to connect to your "
"database."
msgstr ""
#: ../../mod/install.php:127
#: ../../mod/install.php:227
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr ""
"Пожалуйста, свяжитесь с вашим хостинг-провайдером или администратором сайта,"
" если у вас есть вопросы об этих параметрах."
msgstr "Пожалуйста, свяжитесь с вашим хостинг-провайдером или администратором сайта, если у вас есть вопросы об этих параметрах."
#: ../../mod/install.php:128
#: ../../mod/install.php:228
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr ""
msgstr "Базы данных, указанная ниже, должна уже существовать. Если этого нет, пожалуйста, создайте ее перед продолжением."
#: ../../mod/install.php:129
#: ../../mod/install.php:232
msgid "Database Server Name"
msgstr "Имя сервера базы данных"
#: ../../mod/install.php:130
#: ../../mod/install.php:233
msgid "Database Login Name"
msgstr "Логин базы данных"
#: ../../mod/install.php:131
#: ../../mod/install.php:234
msgid "Database Login Password"
msgstr "Пароль базы данных"
#: ../../mod/install.php:132
#: ../../mod/install.php:235
msgid "Database Name"
msgstr "Имя базы данных"
#: ../../mod/install.php:133
#: ../../mod/install.php:236 ../../mod/install.php:275
msgid "Site administrator email address"
msgstr "Адрес электронной почты администратора сайта"
#: ../../mod/install.php:236 ../../mod/install.php:275
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr ""
#: ../../mod/install.php:240 ../../mod/install.php:278
msgid "Please select a default timezone for your website"
msgstr "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта"
#: ../../mod/install.php:134
msgid ""
"Site administrator email address. Your account email address must match this"
" in order to use the web admin panel."
msgstr ""
#: ../../mod/install.php:265
msgid "Site settings"
msgstr "Настройки сайта"
#: ../../mod/install.php:153
#: ../../mod/install.php:318
msgid "Could not find a command line version of PHP in the web server PATH."
msgstr "Не удалось найти PATH веб-сервера в установках PHP."
#: ../../mod/install.php:154
#: ../../mod/install.php:319
msgid ""
"This is required. Please adjust the configuration file .htconfig.php "
"accordingly."
"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. See <a "
"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
msgstr ""
"Это необходимо. Пожалуйста, измените файл конфигурации .htconfig.php "
"соответственно."
#: ../../mod/install.php:161
#: ../../mod/install.php:323
msgid "PHP executable path"
msgstr "PHP executable path"
#: ../../mod/install.php:323
msgid ""
"Enter full path to php executable. You can leave this blank to continue the "
"installation."
msgstr ""
#: ../../mod/install.php:328
msgid "Command line PHP"
msgstr "Command line PHP"
#: ../../mod/install.php:337
msgid ""
"The command line version of PHP on your system does not have "
"\"register_argc_argv\" enabled."
msgstr "Не включено \"register_argc_argv\" в установках PHP."
#: ../../mod/install.php:162
#: ../../mod/install.php:338
msgid "This is required for message delivery to work."
msgstr "Это необходимо для работы доставки сообщений."
#: ../../mod/install.php:184
#: ../../mod/install.php:340
msgid "PHP register_argc_argv"
msgstr ""
#: ../../mod/install.php:361
msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys"
msgstr ""
"Ошибка: функция \"openssl_pkey_new\" в этой системе не в состоянии "
"генерировать ключи шифрования"
msgstr "Ошибка: функция \"openssl_pkey_new\" в этой системе не в состоянии генерировать ключи шифрования"
#: ../../mod/install.php:185
#: ../../mod/install.php:362
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\"."
msgstr "Если вы работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\"."
#: ../../mod/install.php:194
#: ../../mod/install.php:364
msgid "Generate encryption keys"
msgstr "Генерация шифрованых ключей"
#: ../../mod/install.php:371
msgid "libCurl PHP module"
msgstr "libCurl PHP модуль"
#: ../../mod/install.php:372
msgid "GD graphics PHP module"
msgstr "GD graphics PHP модуль"
#: ../../mod/install.php:373
msgid "OpenSSL PHP module"
msgstr "OpenSSL PHP модуль"
#: ../../mod/install.php:374
msgid "mysqli PHP module"
msgstr "mysqli PHP модуль"
#: ../../mod/install.php:375
msgid "mb_string PHP module"
msgstr "mb_string PHP модуль"
#: ../../mod/install.php:380 ../../mod/install.php:382
msgid "Apache mod_rewrite module"
msgstr ""
#: ../../mod/install.php:380
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr ""
"Ошибка: необходим модуль веб-сервера Apache mod-rewrite, но он не "
"установлен."
msgstr "Ошибка: необходим модуль веб-сервера Apache mod-rewrite, но он не установлен."
#: ../../mod/install.php:196
#: ../../mod/install.php:388
msgid "Error: libCURL PHP module required but not installed."
msgstr "Ошибка: необходим libCURL PHP модуль, но он не установлен."
#: ../../mod/install.php:198
#: ../../mod/install.php:392
msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr ""
"Ошибка: необходим PHP модуль GD графики с поддержкой JPEG, но он не "
"установлен."
msgstr "Ошибка: необходим PHP модуль GD графики с поддержкой JPEG, но он не установлен."
#: ../../mod/install.php:200
#: ../../mod/install.php:396
msgid "Error: openssl PHP module required but not installed."
msgstr "Ошибка: необходим PHP модуль OpenSSL, но он не установлен."
#: ../../mod/install.php:202
#: ../../mod/install.php:400
msgid "Error: mysqli PHP module required but not installed."
msgstr "Ошибка: необходим PHP модуль MySQLi, но он не установлен."
#: ../../mod/install.php:204
#: ../../mod/install.php:404
msgid "Error: mb_string PHP module required but not installed."
msgstr ""
msgstr "Ошибка: необходим PHP модуль mb_string, но он не установлен."
#: ../../mod/install.php:216
#: ../../mod/install.php:421
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\" в "
"верхней папке веб-сервера, но он не в состоянии это сделать."
msgstr "Веб-инсталлятору требуется создать файл с именем \". htconfig.php\" в верхней папке веб-сервера, но он не в состоянии это сделать."
#: ../../mod/install.php:217
#: ../../mod/install.php:422
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 ""
"Это наиболее частые параметры разрешений, когда веб-сервер не может записать"
" файлы в папке - даже если вы можете."
msgstr "Это наиболее частые параметры разрешений, когда веб-сервер не может записать файлы в папке - даже если вы можете."
#: ../../mod/install.php:218
#: ../../mod/install.php:423
msgid ""
"Please check with your site documentation or support people to see if this "
"situation can be corrected."
"At the end of this procedure, we will give you a text to save in a file "
"named .htconfig.php in your Friendica top folder."
msgstr ""
"Пожалуйста, посмотрите документацию вашего сайта или обратитесь к другим за "
"поддержкой, чтобы убедиться, что эта ситуация может быть исправлена."
#: ../../mod/install.php:219
#: ../../mod/install.php:424
msgid ""
"If not, you may be required to perform a manual installation. Please see the"
" file \"INSTALL.txt\" for instructions."
"You can alternatively skip this procedure and perform a manual installation."
" Please see the file \"INSTALL.txt\" for instructions."
msgstr ""
"Если нет, вам может потребоваться выполнить установку вручную. Пожалуйста, "
"посмотрите файл \"INSTALL.txt\" для получения инструкций."
#: ../../mod/install.php:228
#: ../../mod/install.php:427
msgid ".htconfig.php is writable"
msgstr ".htconfig.php is writable"
#: ../../mod/install.php:439
msgid ""
"Url rewrite in .htaccess is not working. Check your server configuration."
msgstr ""
#: ../../mod/install.php:441
msgid "Url rewrite is working"
msgstr ""
#: ../../mod/install.php:451
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 ""
"Файл конфигурации базы данных \".htconfig.php\" не могла быть записан. "
"Пожалуйста, используйте приложенный текст, чтобы создать конфигурационный "
"файл в корневом каталоге веб-сервера."
msgstr "Файл конфигурации базы данных \".htconfig.php\" не могла быть записан. Пожалуйста, используйте приложенный текст, чтобы создать конфигурационный файл в корневом каталоге веб-сервера."
#: ../../mod/install.php:243
#: ../../mod/install.php:475
msgid "Errors encountered creating database tables."
msgstr "Обнаружены ошибки при создании таблиц базы данных."
#: ../../mod/update_community.php:18 ../../mod/update_network.php:22
#: ../../mod/update_profile.php:41
msgid "[Embedded content - reload page to view]"
msgstr "[Встроенный контент - перезагрузите страницу для просмотра]"
#: ../../mod/install.php:486
msgid "<h1>What next</h1>"
msgstr ""
#: ../../mod/match.php:10
#: ../../mod/install.php:487
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
msgstr "ВАЖНО: Вам нужно будет [вручную] установить запланированное задание для регистратора."
#: ../../mod/localtime.php:12 ../../include/event.php:11
#: ../../include/bb2diaspora.php:390
msgid "l F d, Y \\@ g:i A"
msgstr "l F d, Y \\@ g:i A"
#: ../../mod/localtime.php:24
msgid "Time Conversion"
msgstr "История общения"
#: ../../mod/localtime.php:26
msgid ""
"Friendika provides this service for sharing events with other networks and "
"friends in unknown timezones."
msgstr ""
#: ../../mod/localtime.php:30
#, php-format
msgid "UTC time: %s"
msgstr "UTC время: %s"
#: ../../mod/localtime.php:33
#, php-format
msgid "Current timezone: %s"
msgstr "Ваш часовой пояс: %s"
#: ../../mod/localtime.php:36
#, php-format
msgid "Converted localtime: %s"
msgstr "Ваше изменённое время: %s"
#: ../../mod/localtime.php:41
msgid "Please select your timezone:"
msgstr "Выберите пожалуйста ваш часовой пояс:"
#: ../../mod/poke.php:192
msgid "Poke/Prod"
msgstr ""
#: ../../mod/poke.php:193
msgid "poke, prod or do other things to somebody"
msgstr ""
#: ../../mod/poke.php:194
msgid "Recipient"
msgstr ""
#: ../../mod/poke.php:195
msgid "Choose what you wish to do to recipient"
msgstr ""
#: ../../mod/poke.php:198
msgid "Make this post private"
msgstr ""
#: ../../mod/match.php:12
msgid "Profile Match"
msgstr "Похожие профили"
#: ../../mod/match.php:18
#: ../../mod/match.php:20
msgid "No keywords to match. Please add keywords to your default profile."
msgstr "Нет соответствующих ключевых слов. Пожалуйста, добавьте ключевые слова для вашего профиля по умолчанию."
#: ../../mod/match.php:57
msgid "is interested in:"
msgstr ""
#: ../../mod/match.php:54
#: ../../mod/match.php:58 ../../mod/suggest.php:59
#: ../../include/contact_widgets.php:9 ../../boot.php:1164
msgid "Connect"
msgstr "Подключить"
#: ../../mod/match.php:65 ../../mod/dirfind.php:60
msgid "No matches"
msgstr "Нет соответствий"
@ -1005,7 +1286,148 @@ msgstr "Личная информация удаленно недоступна.
msgid "Visible to:"
msgstr "Кто может видеть:"
#: ../../mod/home.php:23
#: ../../mod/content.php:119 ../../mod/network.php:436
msgid "No such group"
msgstr "Нет такой группы"
#: ../../mod/content.php:130 ../../mod/network.php:447
msgid "Group is empty"
msgstr "Группа пуста"
#: ../../mod/content.php:134 ../../mod/network.php:451
msgid "Group: "
msgstr "Группа: "
#: ../../mod/content.php:438 ../../mod/content.php:722
#: ../../include/conversation.php:514 ../../object/Item.php:116
msgid "Select"
msgstr "Выберите"
#: ../../mod/content.php:455 ../../mod/content.php:815
#: ../../mod/content.php:816 ../../include/conversation.php:533
#: ../../object/Item.php:227 ../../object/Item.php:228
#, php-format
msgid "View %s's profile @ %s"
msgstr ""
#: ../../mod/content.php:465 ../../mod/content.php:827
#: ../../include/conversation.php:553 ../../object/Item.php:240
#, php-format
msgid "%s from %s"
msgstr "%s с %s"
#: ../../mod/content.php:480 ../../include/conversation.php:568
msgid "View in context"
msgstr "Смотреть в контексте"
#: ../../mod/content.php:586 ../../object/Item.php:277
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
msgstr[0] "%d комментарий"
msgstr[1] "%d комментариев"
msgstr[2] "%d комментариев"
#: ../../mod/content.php:588 ../../include/text.php:1443
#: ../../object/Item.php:279 ../../object/Item.php:292
msgid "comment"
msgid_plural "comments"
msgstr[0] ""
msgstr[1] ""
msgstr[2] "комментарий"
#: ../../mod/content.php:589 ../../addon/page/page.php:76
#: ../../addon/page/page.php:110 ../../addon/showmore/showmore.php:119
#: ../../include/contact_widgets.php:195 ../../boot.php:575
#: ../../object/Item.php:280
msgid "show more"
msgstr "показать больше"
#: ../../mod/content.php:667 ../../object/Item.php:196
msgid "like"
msgstr ""
#: ../../mod/content.php:668 ../../object/Item.php:197
msgid "dislike"
msgstr "не нравитса"
#: ../../mod/content.php:670 ../../object/Item.php:199
msgid "Share this"
msgstr ""
#: ../../mod/content.php:670 ../../object/Item.php:199
msgid "share"
msgstr "делиться"
#: ../../mod/content.php:694 ../../object/Item.php:561
msgid "Bold"
msgstr ""
#: ../../mod/content.php:695 ../../object/Item.php:562
msgid "Italic"
msgstr ""
#: ../../mod/content.php:696 ../../object/Item.php:563
msgid "Underline"
msgstr ""
#: ../../mod/content.php:697 ../../object/Item.php:564
msgid "Quote"
msgstr ""
#: ../../mod/content.php:698 ../../object/Item.php:565
msgid "Code"
msgstr ""
#: ../../mod/content.php:699 ../../object/Item.php:566
msgid "Image"
msgstr ""
#: ../../mod/content.php:700 ../../object/Item.php:567
msgid "Link"
msgstr ""
#: ../../mod/content.php:701 ../../object/Item.php:568
msgid "Video"
msgstr ""
#: ../../mod/content.php:735 ../../object/Item.php:180
msgid "add star"
msgstr "пометить"
#: ../../mod/content.php:736 ../../object/Item.php:181
msgid "remove star"
msgstr "убрать метку"
#: ../../mod/content.php:737 ../../object/Item.php:182
msgid "toggle star status"
msgstr "переключить статус"
#: ../../mod/content.php:740 ../../object/Item.php:185
msgid "starred"
msgstr "помечено"
#: ../../mod/content.php:741 ../../object/Item.php:186
msgid "add tag"
msgstr "добавить ключевое слово (таг)"
#: ../../mod/content.php:745 ../../object/Item.php:120
msgid "save to folder"
msgstr "сохранить в папке"
#: ../../mod/content.php:817 ../../object/Item.php:229
msgid "to"
msgstr "к"
#: ../../mod/content.php:818 ../../object/Item.php:230
msgid "Wall-to-Wall"
msgstr "Стена-на-Стену"
#: ../../mod/content.php:819 ../../object/Item.php:231
msgid "via Wall-To-Wall:"
msgstr "через Стена-на-Стену:"
#: ../../mod/home.php:28 ../../addon/communityhome/communityhome.php:179
#, php-format
msgid "Welcome to %s"
msgstr "Добро пожаловать на %s!"
@ -1014,730 +1436,1178 @@ msgstr "Добро пожаловать на %s!"
msgid "Invalid request identifier."
msgstr "Неверный идентификатор запроса."
#: ../../mod/notifications.php:35 ../../mod/notifications.php:118
#: ../../mod/notifications.php:162
#: ../../mod/notifications.php:35 ../../mod/notifications.php:161
#: ../../mod/notifications.php:207
msgid "Discard"
msgstr "Отказаться"
#: ../../mod/notifications.php:47 ../../mod/notifications.php:117
#: ../../mod/notifications.php:161
#: ../../mod/notifications.php:51 ../../mod/notifications.php:160
#: ../../mod/notifications.php:206 ../../mod/contacts.php:321
#: ../../mod/contacts.php:375
msgid "Ignore"
msgstr "Игнорировать"
#: ../../mod/notifications.php:74
msgid "Pending Friend/Connect Notifications"
msgstr "Ожидающие друзья / Уведомления о подключении"
#: ../../mod/notifications.php:75
msgid "System"
msgstr "Система"
#: ../../mod/notifications.php:78
#: ../../mod/notifications.php:80 ../../include/nav.php:113
msgid "Network"
msgstr "Сеть"
#: ../../mod/notifications.php:85 ../../mod/network.php:300
msgid "Personal"
msgstr "Персонал"
#: ../../mod/notifications.php:90 ../../view/theme/diabook/theme.php:127
#: ../../include/nav.php:77 ../../include/nav.php:115
msgid "Home"
msgstr "Главная"
#: ../../mod/notifications.php:95 ../../include/nav.php:121
msgid "Introductions"
msgstr "Запросы"
#: ../../mod/notifications.php:100 ../../mod/message.php:176
#: ../../include/nav.php:128
msgid "Messages"
msgstr "Сообщения"
#: ../../mod/notifications.php:119
msgid "Show Ignored Requests"
msgstr "Показать проигнорированные запросы"
#: ../../mod/notifications.php:78
#: ../../mod/notifications.php:119
msgid "Hide Ignored Requests"
msgstr "Скрыть проигнорированные запросы"
#: ../../mod/notifications.php:105 ../../mod/notifications.php:148
#: ../../mod/notifications.php:145 ../../mod/notifications.php:191
msgid "Notification type: "
msgstr "Тип уведомления: "
#: ../../mod/notifications.php:106
#: ../../mod/notifications.php:146
msgid "Friend Suggestion"
msgstr ""
msgstr "Предложение в друзья"
#: ../../mod/notifications.php:108
#: ../../mod/notifications.php:148
#, php-format
msgid "suggested by %s"
msgstr "предложено юзером %s"
#: ../../mod/notifications.php:153 ../../mod/notifications.php:200
#: ../../mod/contacts.php:381
msgid "Hide this contact from others"
msgstr "Скрыть этот контакт от других"
#: ../../mod/notifications.php:154 ../../mod/notifications.php:201
msgid "Post a new friend activity"
msgstr ""
#: ../../mod/notifications.php:114 ../../mod/notifications.php:159
#: ../../mod/admin.php:466
#: ../../mod/notifications.php:154 ../../mod/notifications.php:201
msgid "if applicable"
msgstr ""
#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
#: ../../mod/admin.php:694
msgid "Approve"
msgstr "Одобрить"
#: ../../mod/notifications.php:133
#: ../../mod/notifications.php:177
msgid "Claims to be known to you: "
msgstr "Претензии, о которых должно быть вам известно: "
msgstr "Утверждения, о которых должно быть вам известно: "
#: ../../mod/notifications.php:133
#: ../../mod/notifications.php:177
msgid "yes"
msgstr "да"
#: ../../mod/notifications.php:133
#: ../../mod/notifications.php:177
msgid "no"
msgstr "нет"
#: ../../mod/notifications.php:139
#: ../../mod/notifications.php:184
msgid "Approve as: "
msgstr "Утвердить как: "
#: ../../mod/notifications.php:140
#: ../../mod/notifications.php:185
msgid "Friend"
msgstr "Друг"
#: ../../mod/notifications.php:141
#: ../../mod/notifications.php:186
msgid "Sharer"
msgstr "Участник"
#: ../../mod/notifications.php:186
msgid "Fan/Admirer"
msgstr "Фанат / Поклонник"
#: ../../mod/notifications.php:149
#: ../../mod/notifications.php:192
msgid "Friend/Connect Request"
msgstr "Запрос в друзья / на подключение"
#: ../../mod/notifications.php:149
#: ../../mod/notifications.php:192
msgid "New Follower"
msgstr "Новый фолловер"
#: ../../mod/notifications.php:168
msgid "No notifications."
msgstr "Нет уведомлений."
#: ../../mod/notifications.php:213
msgid "No introductions."
msgstr "Запросов нет."
#: ../../mod/contacts.php:26
msgid "Invite Friends"
msgstr "Пригласить друзей"
#: ../../mod/notifications.php:216 ../../include/nav.php:122
msgid "Notifications"
msgstr "Уведомления"
#: ../../mod/contacts.php:32
#: ../../mod/notifications.php:253 ../../mod/notifications.php:378
#: ../../mod/notifications.php:465
#, php-format
msgid "%d invitation available"
msgid_plural "%d invitations available"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
msgid "%s liked %s's post"
msgstr "%s нравится %s сообшение"
#: ../../mod/contacts.php:41
msgid "Find People With Shared Interests"
msgstr "Найти людей с общими интересами"
#: ../../mod/notifications.php:262 ../../mod/notifications.php:387
#: ../../mod/notifications.php:474
#, php-format
msgid "%s disliked %s's post"
msgstr "%s не нравится %s сообшение"
#: ../../mod/contacts.php:45
msgid "Connect/Follow"
msgstr "Подключиться/Следовать"
#: ../../mod/notifications.php:276 ../../mod/notifications.php:401
#: ../../mod/notifications.php:488
#, php-format
msgid "%s is now friends with %s"
msgstr "%s теперь друзья с %s"
#: ../../mod/contacts.php:46
msgid "Example: bob@example.com, http://example.com/barbara"
msgstr "Пример: bob@example.com, http://example.com/barbara"
#: ../../mod/notifications.php:283 ../../mod/notifications.php:408
#, php-format
msgid "%s created a new post"
msgstr "%s написал новое сообщение"
#: ../../mod/contacts.php:47
msgid "Follow"
msgstr "Следовать"
#: ../../mod/notifications.php:284 ../../mod/notifications.php:409
#: ../../mod/notifications.php:497
#, php-format
msgid "%s commented on %s's post"
msgstr "%s прокомментировал %s сообщение"
#: ../../mod/contacts.php:69 ../../mod/contacts.php:150
#: ../../mod/notifications.php:298
msgid "No more network notifications."
msgstr "Уведомлений из сети больше нет."
#: ../../mod/notifications.php:302
msgid "Network Notifications"
msgstr "Уведомления сети"
#: ../../mod/notifications.php:328 ../../mod/notify.php:61
msgid "No more system notifications."
msgstr "Системных уведомлений больше нет."
#: ../../mod/notifications.php:332 ../../mod/notify.php:65
msgid "System Notifications"
msgstr "Уведомления системы"
#: ../../mod/notifications.php:423
msgid "No more personal notifications."
msgstr "Персональных уведомлений больше нет."
#: ../../mod/notifications.php:427
msgid "Personal Notifications"
msgstr "Личные уведомления"
#: ../../mod/notifications.php:504
msgid "No more home notifications."
msgstr ""
#: ../../mod/notifications.php:508
msgid "Home Notifications"
msgstr ""
#: ../../mod/contacts.php:84 ../../mod/contacts.php:164
msgid "Could not access contact record."
msgstr "Не удалось получить доступ к записи контакта."
#: ../../mod/contacts.php:83
#: ../../mod/contacts.php:98
msgid "Could not locate selected profile."
msgstr "Не удается найти выбранный профиль."
msgstr "Не удалось найти выбранный профиль."
#: ../../mod/contacts.php:114
#: ../../mod/contacts.php:121
msgid "Contact updated."
msgstr "Контакт обновлен."
#: ../../mod/contacts.php:172
#: ../../mod/contacts.php:186
msgid "Contact has been blocked"
msgstr "Контакт заблокирован"
#: ../../mod/contacts.php:172
#: ../../mod/contacts.php:186
msgid "Contact has been unblocked"
msgstr "Контакт разблокирован"
#: ../../mod/contacts.php:186
#: ../../mod/contacts.php:200
msgid "Contact has been ignored"
msgstr "Контакт проигнорирован"
#: ../../mod/contacts.php:186
#: ../../mod/contacts.php:200
msgid "Contact has been unignored"
msgstr "У контакта отменено игнорирование"
#: ../../mod/contacts.php:207
msgid "stopped following"
msgstr "остановлено следование"
#: ../../mod/contacts.php:216
msgid "Contact has been archived"
msgstr ""
#: ../../mod/contacts.php:226
#: ../../mod/contacts.php:216
msgid "Contact has been unarchived"
msgstr ""
#: ../../mod/contacts.php:229
msgid "Contact has been removed."
msgstr "Контакт удален."
#: ../../mod/contacts.php:254 ../../mod/contacts.php:397
msgid "Mutual Friendship"
msgstr "Взаимная дружба"
#: ../../mod/contacts.php:263
#, php-format
msgid "You are mutual friends with %s"
msgstr "У Вас взаимная дружба с %s"
#: ../../mod/contacts.php:258 ../../mod/contacts.php:401
msgid "is a fan of yours"
msgstr "является вашим поклонником"
#: ../../mod/contacts.php:267
#, php-format
msgid "You are sharing with %s"
msgstr "Вы делитесь с %s"
#: ../../mod/contacts.php:263 ../../mod/contacts.php:405
msgid "you are a fan of"
msgstr "Вы - поклонник"
#: ../../mod/contacts.php:272
#, php-format
msgid "%s is sharing with you"
msgstr "%s делитса с Вами"
#: ../../mod/contacts.php:280
msgid "Privacy Unavailable"
msgstr "Конфиденциальность невозможна"
#: ../../mod/contacts.php:281
#: ../../mod/contacts.php:289
msgid "Private communications are not available for this contact."
msgstr "Личные коммуникации недоступны для этого контакта."
#: ../../mod/contacts.php:284
#: ../../mod/contacts.php:292
msgid "Never"
msgstr "Никогда"
#: ../../mod/contacts.php:288
#: ../../mod/contacts.php:296
msgid "(Update was successful)"
msgstr "(Обновление было успешным)"
msgstr "(Обновление было успешно)"
#: ../../mod/contacts.php:288
#: ../../mod/contacts.php:296
msgid "(Update was not successful)"
msgstr "(Обновление не удалось)"
#: ../../mod/contacts.php:291
#: ../../mod/contacts.php:298
msgid "Suggest friends"
msgstr "Предложить друзей"
#: ../../mod/contacts.php:302
#, php-format
msgid "Network type: %s"
msgstr "Сеть: %s"
#: ../../mod/contacts.php:305 ../../include/contact_widgets.php:190
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
msgstr[0] "%d Контакт"
msgstr[1] "%d Контактов"
msgstr[2] "%d Контактов"
#: ../../mod/contacts.php:310
msgid "View all contacts"
msgstr "Показать все контакты"
#: ../../mod/contacts.php:315 ../../mod/contacts.php:374
#: ../../mod/admin.php:698
msgid "Unblock"
msgstr "Разблокировать"
#: ../../mod/contacts.php:315 ../../mod/contacts.php:374
#: ../../mod/admin.php:697
msgid "Block"
msgstr "Блокировать"
#: ../../mod/contacts.php:318
msgid "Toggle Blocked status"
msgstr ""
#: ../../mod/contacts.php:295
#: ../../mod/contacts.php:321 ../../mod/contacts.php:375
msgid "Unignore"
msgstr "Не игнорировать"
#: ../../mod/contacts.php:324
msgid "Toggle Ignored status"
msgstr ""
#: ../../mod/contacts.php:328
msgid "Unarchive"
msgstr ""
#: ../../mod/contacts.php:328
msgid "Archive"
msgstr ""
#: ../../mod/contacts.php:331
msgid "Toggle Archive status"
msgstr ""
#: ../../mod/contacts.php:334
msgid "Repair"
msgstr "Восстановить"
#: ../../mod/contacts.php:337
msgid "Advanced Contact Settings"
msgstr ""
#: ../../mod/contacts.php:343
msgid "Communications lost with this contact!"
msgstr ""
#: ../../mod/contacts.php:346
msgid "Contact Editor"
msgstr "Редактор контакта"
#: ../../mod/contacts.php:297
#: ../../mod/contacts.php:349
msgid "Profile Visibility"
msgstr "Видимость профиля"
#: ../../mod/contacts.php:298
#: ../../mod/contacts.php:350
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr ""
"Пожалуйста, выберите профиль, который вы хотите отображать %s, когда "
"просмотр вашего профиля безопасен."
msgstr "Пожалуйста, выберите профиль, который вы хотите отображать %s, когда просмотр вашего профиля безопасен."
#: ../../mod/contacts.php:299
#: ../../mod/contacts.php:351
msgid "Contact Information / Notes"
msgstr "Контактная информация / Заметки"
msgstr "Информация о контакте / Заметки"
#: ../../mod/contacts.php:300
msgid "Online Reputation"
msgstr "Репутация в онлайне"
#: ../../mod/contacts.php:352
msgid "Edit contact notes"
msgstr "Редактировать заметки контакта"
#: ../../mod/contacts.php:301
msgid ""
"Occasionally your friends may wish to inquire about this person's online "
"legitimacy."
msgstr ""
"Иногда ваши друзья, возможно, захотят узнать о легитимности в онлайне этого "
"человека."
#: ../../mod/contacts.php:302
msgid ""
"You may help them choose whether or not to interact with this person by "
"providing a <em>reputation</em> to guide them."
msgstr ""
"Вы можете помочь им решить, следует ли общаться с этим человеком, предлагая "
"<em>репутацию</em> для ознакомления."
#: ../../mod/contacts.php:303
msgid ""
"Please take a moment to elaborate on this selection if you feel it could be "
"helpful to others."
msgstr ""
"Пожалуйста, найдите время, чтобы остановиться на этом выборе, если вы "
"чувствуете, что можете быть полезным для других."
#: ../../mod/contacts.php:304 ../../mod/contacts.php:421
#: ../../mod/viewcontacts.php:61
#: ../../mod/contacts.php:357 ../../mod/contacts.php:549
#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
#, php-format
msgid "Visit %s's profile [%s]"
msgstr ""
msgstr "Посетить профиль %s [%s]"
#: ../../mod/contacts.php:305
#: ../../mod/contacts.php:358
msgid "Block/Unblock contact"
msgstr "Блокировать / Разблокировать контакт"
#: ../../mod/contacts.php:306
#: ../../mod/contacts.php:359
msgid "Ignore contact"
msgstr "Игнорировать контакт"
#: ../../mod/contacts.php:307
msgid "Repair contact URL settings"
msgstr "Восстановить установки URL контакта"
#: ../../mod/contacts.php:360
msgid "Repair URL settings"
msgstr "Восстановить настройки URL"
#: ../../mod/contacts.php:308
msgid "Repair contact URL settings (WARNING: Advanced)"
msgstr "Восстановить установки URL контакта (ВНИМАНИЕ: Расширено)"
#: ../../mod/contacts.php:309
#: ../../mod/contacts.php:361
msgid "View conversations"
msgstr "Просмотр общения"
msgstr "Просмотр бесед"
#: ../../mod/contacts.php:312
#: ../../mod/contacts.php:363
msgid "Delete contact"
msgstr "Удалить контакт"
#: ../../mod/contacts.php:314
msgid "Last updated: "
#: ../../mod/contacts.php:367
msgid "Last update:"
msgstr "Последнее обновление: "
#: ../../mod/contacts.php:315
msgid "Update public posts: "
msgstr "Обновить сообщения для всех: "
#: ../../mod/contacts.php:369
msgid "Update public posts"
msgstr "Обновить публичные сообщения"
#: ../../mod/contacts.php:317 ../../mod/admin.php:701
#: ../../mod/contacts.php:371 ../../mod/admin.php:1170
msgid "Update now"
msgstr "Обновить сейчас"
#: ../../mod/contacts.php:320
msgid "Unblock this contact"
msgstr "Разблокировать этот контакт"
#: ../../mod/contacts.php:320
msgid "Block this contact"
msgstr "Блокировать этот контакт"
#: ../../mod/contacts.php:321
msgid "Unignore this contact"
msgstr "Не игнорировать этот контакт"
#: ../../mod/contacts.php:321
msgid "Ignore this contact"
msgstr "Игнорировать этот контакт"
#: ../../mod/contacts.php:324
#: ../../mod/contacts.php:378
msgid "Currently blocked"
msgstr "В настоящее время заблокирован"
#: ../../mod/contacts.php:325
#: ../../mod/contacts.php:379
msgid "Currently ignored"
msgstr "В настоящее время игнорируется"
#: ../../mod/contacts.php:356 ../../include/nav.php:110
#: ../../mod/contacts.php:380
msgid "Currently archived"
msgstr ""
#: ../../mod/contacts.php:381
msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr ""
#: ../../mod/contacts.php:434
msgid "Suggestions"
msgstr ""
#: ../../mod/contacts.php:437
msgid "Suggest potential friends"
msgstr ""
#: ../../mod/contacts.php:440 ../../mod/group.php:191
msgid "All Contacts"
msgstr "Все контакты"
#: ../../mod/contacts.php:443
msgid "Show all contacts"
msgstr ""
#: ../../mod/contacts.php:446
msgid "Unblocked"
msgstr ""
#: ../../mod/contacts.php:449
msgid "Only show unblocked contacts"
msgstr ""
#: ../../mod/contacts.php:453
msgid "Blocked"
msgstr ""
#: ../../mod/contacts.php:456
msgid "Only show blocked contacts"
msgstr ""
#: ../../mod/contacts.php:460
msgid "Ignored"
msgstr ""
#: ../../mod/contacts.php:463
msgid "Only show ignored contacts"
msgstr ""
#: ../../mod/contacts.php:467
msgid "Archived"
msgstr ""
#: ../../mod/contacts.php:470
msgid "Only show archived contacts"
msgstr ""
#: ../../mod/contacts.php:474
msgid "Hidden"
msgstr ""
#: ../../mod/contacts.php:477
msgid "Only show hidden contacts"
msgstr ""
#: ../../mod/contacts.php:525
msgid "Mutual Friendship"
msgstr "Взаимная дружба"
#: ../../mod/contacts.php:529
msgid "is a fan of yours"
msgstr "является вашим поклонником"
#: ../../mod/contacts.php:533
msgid "you are a fan of"
msgstr "Вы - поклонник"
#: ../../mod/contacts.php:550 ../../mod/nogroup.php:41
msgid "Edit contact"
msgstr "Редактировать контакт"
#: ../../mod/contacts.php:571 ../../view/theme/diabook/theme.php:129
#: ../../include/nav.php:139
msgid "Contacts"
msgstr "Контакты"
#: ../../mod/contacts.php:358
msgid "Show Blocked Connections"
msgstr "Показать заблокированные подключения"
#: ../../mod/contacts.php:575
msgid "Search your contacts"
msgstr "Поиск ваших контактов"
#: ../../mod/contacts.php:358
msgid "Hide Blocked Connections"
msgstr "Скрыть заблокированные подключения"
#: ../../mod/contacts.php:360 ../../mod/directory.php:55
#: ../../mod/contacts.php:576 ../../mod/directory.php:59
msgid "Finding: "
msgstr "Результат поиска: "
#: ../../mod/contacts.php:361 ../../mod/directory.php:57
#: ../../mod/contacts.php:577 ../../mod/directory.php:61
#: ../../include/contact_widgets.php:33
msgid "Find"
msgstr "Найти"
#: ../../mod/contacts.php:422 ../../include/conversation.php:612
msgid "Edit contact"
msgstr "Изменить контакт"
#: ../../mod/lostpass.php:16
msgid "No valid account found."
msgstr ""
msgstr "Не найдено действительного аккаунта."
#: ../../mod/lostpass.php:31
#: ../../mod/lostpass.php:32
msgid "Password reset request issued. Check your email."
msgstr "Запрос на сброс пароля принят. Проверьте вашу электронную почту."
#: ../../mod/lostpass.php:42
#: ../../mod/lostpass.php:43
#, php-format
msgid "Password reset requested at %s"
msgstr "Запрос на сброс пароля получен %s"
#: ../../mod/lostpass.php:64
#: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107
#: ../../mod/register.php:90 ../../mod/register.php:144
#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752
#: ../../addon/facebook/facebook.php:702
#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661
#: ../../addon/public_server/public_server.php:62
#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3301
#: ../../boot.php:788
msgid "Administrator"
msgstr "Администратор"
#: ../../mod/lostpass.php:65
msgid ""
"Request could not be verified. (You may have previously submitted it.) "
"Password reset failed."
msgstr ""
"Запрос не может быть проверен. (Вы, возможно, ранее представляли его.) "
"Попытка сброса пароля неудачная."
msgstr "Запрос не может быть проверен. (Вы, возможно, ранее представляли его.) Попытка сброса пароля неудачная."
#: ../../mod/lostpass.php:82 ../../boot.php:654
#: ../../mod/lostpass.php:83 ../../boot.php:925
msgid "Password Reset"
msgstr "Сброс пароля"
#: ../../mod/lostpass.php:83
#: ../../mod/lostpass.php:84
msgid "Your password has been reset as requested."
msgstr "Ваш пароль был сброшен по требованию."
#: ../../mod/lostpass.php:84
#: ../../mod/lostpass.php:85
msgid "Your new password is"
msgstr "Ваш новый пароль"
#: ../../mod/lostpass.php:85
#: ../../mod/lostpass.php:86
msgid "Save or copy your new password - and then"
msgstr "Сохраните или скопируйте новый пароль - и затем"
#: ../../mod/lostpass.php:86
#: ../../mod/lostpass.php:87
msgid "click here to login"
msgstr "нажмите здесь для входа"
#: ../../mod/lostpass.php:87
#: ../../mod/lostpass.php:88
msgid ""
"Your password may be changed from the <em>Settings</em> page after "
"successful login."
msgstr ""
"Ваш пароль может быть изменен на странице <em>Настройки</em> после успешного"
" входа."
msgstr "Ваш пароль может быть изменен на странице <em>Настройки</em> после успешного входа."
#: ../../mod/lostpass.php:118
#: ../../mod/lostpass.php:119
msgid "Forgot your Password?"
msgstr "Забыли пароль?"
#: ../../mod/lostpass.php:119
#: ../../mod/lostpass.php:120
msgid ""
"Enter your email address and submit to have your password reset. Then check "
"your email for further instructions."
msgstr ""
"Введите адрес электронной почты и подтвердите, что вы хотите сбросить ваш "
"пароль. Затем проверьте свою электронную почту для получения дальнейших "
"инструкций."
msgstr "Введите адрес электронной почты и подтвердите, что вы хотите сбросить ваш пароль. Затем проверьте свою электронную почту для получения дальнейших инструкций."
#: ../../mod/lostpass.php:120
#: ../../mod/lostpass.php:121
msgid "Nickname or Email: "
msgstr "Ник или E-mail: "
#: ../../mod/lostpass.php:121
#: ../../mod/lostpass.php:122
msgid "Reset"
msgstr "Сброс"
#: ../../mod/settings.php:64
#: ../../mod/settings.php:30 ../../include/nav.php:137
msgid "Account settings"
msgstr "Настройки аккаунта"
#: ../../mod/settings.php:35
msgid "Display settings"
msgstr "Параметры дисплея"
#: ../../mod/settings.php:41
msgid "Connector settings"
msgstr "Настройки соединителя"
#: ../../mod/settings.php:46
msgid "Plugin settings"
msgstr "Настройки плагина"
#: ../../mod/settings.php:51
msgid "Connected apps"
msgstr ""
#: ../../mod/settings.php:56
msgid "Export personal data"
msgstr "Экспорт личных данных"
#: ../../mod/settings.php:61
msgid "Remove account"
msgstr ""
#: ../../mod/settings.php:69 ../../mod/newmember.php:22
#: ../../mod/admin.php:785 ../../mod/admin.php:990
#: ../../addon/dav/friendica/layout.fnk.php:225
#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:643
#: ../../view/theme/diabook/theme.php:773 ../../include/nav.php:137
msgid "Settings"
msgstr "Настройки"
#: ../../mod/settings.php:113
msgid "Missing some important data!"
msgstr "Не хватает важных данных!"
#: ../../mod/settings.php:116 ../../mod/settings.php:569
msgid "Update"
msgstr "Обновление"
#: ../../mod/settings.php:221
msgid "Failed to connect with email account using the settings provided."
msgstr "Не удалось подключиться к аккаунту e-mail, используя указанные настройки."
#: ../../mod/settings.php:226
msgid "Email settings updated."
msgstr "Настройки эл. почты обновлены."
#: ../../mod/settings.php:290
msgid "Passwords do not match. Password unchanged."
msgstr "Пароли не совпадают. Пароль не изменен."
#: ../../mod/settings.php:69
#: ../../mod/settings.php:295
msgid "Empty passwords are not allowed. Password unchanged."
msgstr "Пустые пароли не допускаются. Пароль не изменен."
#: ../../mod/settings.php:80
#: ../../mod/settings.php:306
msgid "Password changed."
msgstr "Пароль изменен."
#: ../../mod/settings.php:82
#: ../../mod/settings.php:308
msgid "Password update failed. Please try again."
msgstr "Обновление пароля не удалось. Пожалуйста, попробуйте еще раз."
#: ../../mod/settings.php:161
msgid "Failed to connect with email account using the settings provided."
msgstr ""
#: ../../mod/settings.php:188
#: ../../mod/settings.php:373
msgid " Please use a shorter name."
msgstr " Пожалуйста, используйте более короткое имя."
#: ../../mod/settings.php:190
#: ../../mod/settings.php:375
msgid " Name too short."
msgstr " Имя слишком короткое."
#: ../../mod/settings.php:196
#: ../../mod/settings.php:381
msgid " Not valid email."
msgstr " Неверный e-mail."
#: ../../mod/settings.php:198
#: ../../mod/settings.php:383
msgid " Cannot change to that email."
msgstr " Невозможно изменить на этот e-mail."
#: ../../mod/settings.php:257 ../../addon/facebook/facebook.php:297
#: ../../addon/impressum/impressum.php:64 ../../addon/piwik/piwik.php:89
#: ../../addon/twitter/twitter.php:275
#: ../../mod/settings.php:437
msgid "Private forum has no privacy permissions. Using default privacy group."
msgstr ""
#: ../../mod/settings.php:441
msgid "Private forum has no privacy permissions and no default privacy group."
msgstr ""
#: ../../mod/settings.php:471 ../../addon/facebook/facebook.php:495
#: ../../addon/fbpost/fbpost.php:144 ../../addon/impressum/impressum.php:78
#: ../../addon/openstreetmap/openstreetmap.php:80
#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105
#: ../../addon/twitter/twitter.php:389
msgid "Settings updated."
msgstr "Настройки обновлены."
#: ../../mod/settings.php:311 ../../include/nav.php:108
msgid "Account settings"
msgstr ""
#: ../../mod/settings.php:542 ../../mod/settings.php:568
#: ../../mod/settings.php:604
msgid "Add application"
msgstr "Добавить приложения"
#: ../../mod/settings.php:312
msgid "Plugin settings"
msgstr ""
#: ../../mod/settings.php:546 ../../mod/settings.php:572
#: ../../addon/statusnet/statusnet.php:570
msgid "Consumer Key"
msgstr "Consumer Key"
#: ../../mod/settings.php:322
#: ../../mod/settings.php:547 ../../mod/settings.php:573
#: ../../addon/statusnet/statusnet.php:569
msgid "Consumer Secret"
msgstr "Consumer Secret"
#: ../../mod/settings.php:548 ../../mod/settings.php:574
msgid "Redirect"
msgstr "Перенаправление"
#: ../../mod/settings.php:549 ../../mod/settings.php:575
msgid "Icon url"
msgstr "URL символа"
#: ../../mod/settings.php:560
msgid "You can't edit this application."
msgstr "Вы не можете изменить это приложение."
#: ../../mod/settings.php:603
msgid "Connected Apps"
msgstr "Подключенные приложения"
#: ../../mod/settings.php:607
msgid "Client key starts with"
msgstr "Ключ клиента начинается с"
#: ../../mod/settings.php:608
msgid "No name"
msgstr "Нет имени"
#: ../../mod/settings.php:609
msgid "Remove authorization"
msgstr "Удалить авторизацию"
#: ../../mod/settings.php:620
msgid "No Plugin settings configured"
msgstr "Нет сконфигурированных настроек плагина"
#: ../../mod/settings.php:329 ../../addon/widgets/widgets.php:122
#: ../../mod/settings.php:628 ../../addon/widgets/widgets.php:123
msgid "Plugin Settings"
msgstr "Настройки плагина"
#: ../../mod/settings.php:382 ../../mod/admin.php:133 ../../mod/admin.php:443
msgid "Normal Account"
msgstr "Обычный аккаунт"
#: ../../mod/settings.php:640 ../../mod/settings.php:641
#, php-format
msgid "Built-in support for %s connectivity is %s"
msgstr "Встроенная поддержка для %s подключение %s"
#: ../../mod/settings.php:383
msgid "This account is a normal personal profile"
msgstr "Этот аккаунт является обычным персональным профилем"
#: ../../mod/settings.php:640 ../../mod/settings.php:641
msgid "enabled"
msgstr "подключено"
#: ../../mod/settings.php:386 ../../mod/admin.php:134 ../../mod/admin.php:444
msgid "Soapbox Account"
msgstr "Аккаунт Витрина"
#: ../../mod/settings.php:640 ../../mod/settings.php:641
msgid "disabled"
msgstr "отключено"
#: ../../mod/settings.php:387
msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr ""
"Автоматически одобряются все подключения / запросы в друзья, только для "
"чтения поклонниками"
#: ../../mod/settings.php:641
msgid "StatusNet"
msgstr "StatusNet"
#: ../../mod/settings.php:390 ../../mod/admin.php:135 ../../mod/admin.php:445
msgid "Community/Celebrity Account"
msgstr "Аккаунт Сообщество / Знаменитость"
#: ../../mod/settings.php:673
msgid "Email access is disabled on this site."
msgstr "Доступ эл. почты отключен на этом сайте."
#: ../../mod/settings.php:391
msgid ""
"Automatically approve all connection/friend requests as read-write fans"
msgstr ""
"Автоматически одобряются все подключения / запросы в друзья, для чтения и "
"записей поклонников"
#: ../../mod/settings.php:679
msgid "Connector Settings"
msgstr "Настройки соединителя"
#: ../../mod/settings.php:394 ../../mod/admin.php:136 ../../mod/admin.php:446
msgid "Automatic Friend Account"
msgstr "Аккаунт Автоматический друг"
#: ../../mod/settings.php:395
msgid "Automatically approve all connection/friend requests as friends"
msgstr ""
"Автоматически одобряются все подключения / запросы в друзья, расширяется "
"список друзей"
#: ../../mod/settings.php:405
msgid "OpenID:"
msgstr ""
#: ../../mod/settings.php:405
msgid "(Optional) Allow this OpenID to login to this account."
msgstr ""
#: ../../mod/settings.php:415
msgid "Publish your default profile in your local site directory?"
msgstr ""
#: ../../mod/settings.php:421
msgid "Publish your default profile in the global social directory?"
msgstr ""
#: ../../mod/settings.php:429
msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr ""
#: ../../mod/settings.php:433
msgid "Hide profile details and all your messages from unknown viewers?"
msgstr "Скрыть детали профиля и все ваши сообщения от неизвестных зрителей?"
#: ../../mod/settings.php:442
msgid "Profile is <strong>not published</strong>."
msgstr "Профиль <strong>не публикуется</strong>."
#: ../../mod/settings.php:461 ../../mod/profile_photo.php:196
msgid "or"
msgstr "или"
#: ../../mod/settings.php:466
msgid "Your Identity Address is"
msgstr "Ваш идентификационный адрес"
#: ../../mod/settings.php:480
msgid "Account Settings"
msgstr "Настройки аккаунта"
#: ../../mod/settings.php:487
msgid "Export Personal Data"
msgstr "Экспорт личных данных"
#: ../../mod/settings.php:490
msgid "Password Settings"
msgstr "Настройка пароля"
#: ../../mod/settings.php:491
msgid "New Password:"
msgstr "Новый пароль:"
#: ../../mod/settings.php:492
msgid "Confirm:"
msgstr "Подтвердите:"
#: ../../mod/settings.php:492
msgid "Leave password fields blank unless changing"
msgstr "Оставьте поля пароля пустыми, если он не изменяется"
#: ../../mod/settings.php:496
msgid "Basic Settings"
msgstr "Основные параметры"
#: ../../mod/settings.php:497 ../../include/profile_advanced.php:10
msgid "Full Name:"
msgstr "Полное имя:"
#: ../../mod/settings.php:498
msgid "Email Address:"
msgstr "Адрес электронной почты:"
#: ../../mod/settings.php:499
msgid "Your Timezone:"
msgstr "Ваш часовой пояс:"
#: ../../mod/settings.php:500
msgid "Default Post Location:"
msgstr "Местоположение сообщения по умолчанию:"
#: ../../mod/settings.php:501
msgid "Use Browser Location:"
msgstr "Использовать определение местоположения браузером:"
#: ../../mod/settings.php:502
msgid "Display Theme:"
msgstr "Показать тему:"
#: ../../mod/settings.php:506
msgid "Security and Privacy Settings"
msgstr "Параметры безопасности и конфиденциальности"
#: ../../mod/settings.php:508
msgid "Maximum Friend Requests/Day:"
msgstr "Максимум запросов в друзья в день:"
#: ../../mod/settings.php:508
msgid "(to prevent spam abuse)"
msgstr "(для предотвращения спама)"
#: ../../mod/settings.php:509
msgid "Default Post Permissions"
msgstr "По умолчанию разрешения на сообщения"
#: ../../mod/settings.php:510
msgid "(click to open/close)"
msgstr "(нажмите, чтобы открыть / закрыть)"
#: ../../mod/settings.php:514
msgid "Allow friends to post to your profile page:"
msgstr "Разрешить друзьям оставлять сообщения на странице вашего профиля:"
#: ../../mod/settings.php:515
msgid "Automatically expire posts after days:"
msgstr ""
#: ../../mod/settings.php:515
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr ""
#: ../../mod/settings.php:524
msgid "Notification Settings"
msgstr "Настройка уведомлений"
#: ../../mod/settings.php:525
msgid "Send a notification email when:"
msgstr "Отправлять уведомление по электронной почте, когда:"
#: ../../mod/settings.php:526
msgid "You receive an introduction"
msgstr "Вы получаете краткую информацию"
#: ../../mod/settings.php:527
msgid "Your introductions are confirmed"
msgstr "Ваши сообщения с краткой информацией подтверждены"
#: ../../mod/settings.php:528
msgid "Someone writes on your profile wall"
msgstr "Кто-то пишет на стене вашего профиля"
#: ../../mod/settings.php:529
msgid "Someone writes a followup comment"
msgstr "Кто-то пишет последующий комментарий"
#: ../../mod/settings.php:530
msgid "You receive a private message"
msgstr "Вы получаете личное сообщение"
#: ../../mod/settings.php:534
#: ../../mod/settings.php:684
msgid "Email/Mailbox Setup"
msgstr "Настройка Email / почтового ящика"
msgstr "Настройка эл. почты / почтового ящика"
#: ../../mod/settings.php:535
#: ../../mod/settings.php:685
msgid ""
"If you wish to communicate with email contacts using this service "
"(optional), please specify how to connect to your mailbox."
msgstr ""
"Если вы хотите общаться с Email контактами, используя этот сервис (по "
"желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику."
msgstr "Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику."
#: ../../mod/settings.php:536
#: ../../mod/settings.php:686
msgid "Last successful email check:"
msgstr ""
msgstr "Последняя успешная проверка электронной почты:"
#: ../../mod/settings.php:537
msgid "Email access is disabled on this site."
msgstr "Email доступ отключен на этом сайте."
#: ../../mod/settings.php:538
#: ../../mod/settings.php:688
msgid "IMAP server name:"
msgstr "Имя IMAP сервера:"
#: ../../mod/settings.php:539
#: ../../mod/settings.php:689
msgid "IMAP port:"
msgstr "Порт IMAP:"
#: ../../mod/settings.php:540
#: ../../mod/settings.php:690
msgid "Security:"
msgstr ""
msgstr "Безопасность:"
#: ../../mod/settings.php:540
#: ../../mod/settings.php:690 ../../mod/settings.php:695
#: ../../addon/dav/common/wdcal_edit.inc.php:191
msgid "None"
msgstr ""
msgstr "Ничего"
#: ../../mod/settings.php:541
#: ../../mod/settings.php:691
msgid "Email login name:"
msgstr "Email логин:"
msgstr "Логин эл. почты:"
#: ../../mod/settings.php:542
#: ../../mod/settings.php:692
msgid "Email password:"
msgstr "Email пароль:"
msgstr "Пароль эл. почты:"
#: ../../mod/settings.php:543
#: ../../mod/settings.php:693
msgid "Reply-to address:"
msgstr ""
msgstr "Адрес для ответа:"
#: ../../mod/settings.php:544
#: ../../mod/settings.php:694
msgid "Send public posts to all email contacts:"
msgstr "Отправлять открытые сообщения на все контакты электронной почты:"
#: ../../mod/settings.php:549
msgid "Advanced Page Settings"
msgstr "Дополнительные параметры страницы"
#: ../../mod/settings.php:695
msgid "Action after import:"
msgstr "Действие после импорта:"
#: ../../mod/manage.php:37
#, php-format
msgid "Welcome back %s"
msgstr "С возвращением, %s"
#: ../../mod/settings.php:695
msgid "Mark as seen"
msgstr ""
#: ../../mod/manage.php:87
#: ../../mod/settings.php:695
msgid "Move to folder"
msgstr ""
#: ../../mod/settings.php:696
msgid "Move to folder:"
msgstr ""
#: ../../mod/settings.php:727 ../../mod/admin.php:402
msgid "No special theme for mobile devices"
msgstr ""
#: ../../mod/settings.php:767
msgid "Display Settings"
msgstr "Параметры дисплея"
#: ../../mod/settings.php:773 ../../mod/settings.php:784
msgid "Display Theme:"
msgstr "Показать тему:"
#: ../../mod/settings.php:774
msgid "Mobile Theme:"
msgstr ""
#: ../../mod/settings.php:775
msgid "Update browser every xx seconds"
msgstr "Обновление браузера каждые хх секунд"
#: ../../mod/settings.php:775
msgid "Minimum of 10 seconds, no maximum"
msgstr "Минимум 10 секунд, максимума нет"
#: ../../mod/settings.php:776
msgid "Number of items to display per page:"
msgstr ""
#: ../../mod/settings.php:776
msgid "Maximum of 100 items"
msgstr ""
#: ../../mod/settings.php:777
msgid "Don't show emoticons"
msgstr "не показывать emoticons"
#: ../../mod/settings.php:853
msgid "Normal Account Page"
msgstr ""
#: ../../mod/settings.php:854
msgid "This account is a normal personal profile"
msgstr "Этот аккаунт является обычным персональным профилем"
#: ../../mod/settings.php:857
msgid "Soapbox Page"
msgstr ""
#: ../../mod/settings.php:858
msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr "Автоматически одобряются все подключения / запросы в друзья, \"только для чтения\" поклонниками"
#: ../../mod/settings.php:861
msgid "Community Forum/Celebrity Account"
msgstr ""
#: ../../mod/settings.php:862
msgid ""
"Automatically approve all connection/friend requests as read-write fans"
msgstr "Автоматически одобряются все подключения / запросы в друзья, \"для чтения и записей\" поклонников"
#: ../../mod/settings.php:865
msgid "Automatic Friend Page"
msgstr ""
#: ../../mod/settings.php:866
msgid "Automatically approve all connection/friend requests as friends"
msgstr "Автоматически одобряются все подключения / запросы в друзья, расширяется список друзей"
#: ../../mod/settings.php:869
msgid "Private Forum [Experimental]"
msgstr ""
#: ../../mod/settings.php:870
msgid "Private forum - approved members only"
msgstr ""
#: ../../mod/settings.php:882
msgid "OpenID:"
msgstr "OpenID:"
#: ../../mod/settings.php:882
msgid "(Optional) Allow this OpenID to login to this account."
msgstr "(Необязательно) Разрешить этому OpenID входить в этот аккаунт"
#: ../../mod/settings.php:892
msgid "Publish your default profile in your local site directory?"
msgstr "Публиковать ваш профиль по умолчанию в вашем локальном каталоге на сайте?"
#: ../../mod/settings.php:898
msgid "Publish your default profile in the global social directory?"
msgstr "Публиковать ваш профиль по умолчанию в глобальном социальном каталоге?"
#: ../../mod/settings.php:906
msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr "Скрывать ваш список контактов/друзей от посетителей вашего профиля по умолчанию?"
#: ../../mod/settings.php:910
msgid "Hide your profile details from unknown viewers?"
msgstr "Скрыть данные профиля из неизвестных зрителей?"
#: ../../mod/settings.php:915
msgid "Allow friends to post to your profile page?"
msgstr "Разрешить друзьям оставлять сообщения на страницу вашего профиля?"
#: ../../mod/settings.php:921
msgid "Allow friends to tag your posts?"
msgstr "Разрешить друзьям отмечять ваши сообщения?"
#: ../../mod/settings.php:927
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr "Позвольть предлогать Вам потенциальных друзей?"
#: ../../mod/settings.php:933
msgid "Permit unknown people to send you private mail?"
msgstr ""
#: ../../mod/settings.php:941
msgid "Profile is <strong>not published</strong>."
msgstr "Профиль <strong>не публикуется</strong>."
#: ../../mod/settings.php:944 ../../mod/profile_photo.php:248
msgid "or"
msgstr "или"
#: ../../mod/settings.php:949
msgid "Your Identity Address is"
msgstr "Ваш идентификационный адрес"
#: ../../mod/settings.php:960
msgid "Automatically expire posts after this many days:"
msgstr "Автоматическое истекание срока действия сообщения после стольких дней:"
#: ../../mod/settings.php:960
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr "Если пусто, срок действия сообщений не будет ограничен. Сообщения с истекшим сроком действия будут удалены"
#: ../../mod/settings.php:961
msgid "Advanced expiration settings"
msgstr "Настройки расширенного окончания срока действия"
#: ../../mod/settings.php:962
msgid "Advanced Expiration"
msgstr "Расширенное окончание срока действия"
#: ../../mod/settings.php:963
msgid "Expire posts:"
msgstr "Срок хранения сообщений:"
#: ../../mod/settings.php:964
msgid "Expire personal notes:"
msgstr "Срок хранения личных заметок:"
#: ../../mod/settings.php:965
msgid "Expire starred posts:"
msgstr "Срок хранения усеянных сообщений:"
#: ../../mod/settings.php:966
msgid "Expire photos:"
msgstr "Срок хранения фотографий:"
#: ../../mod/settings.php:967
msgid "Only expire posts by others:"
msgstr ""
#: ../../mod/settings.php:974
msgid "Account Settings"
msgstr "Настройки аккаунта"
#: ../../mod/settings.php:982
msgid "Password Settings"
msgstr "Настройка пароля"
#: ../../mod/settings.php:983
msgid "New Password:"
msgstr "Новый пароль:"
#: ../../mod/settings.php:984
msgid "Confirm:"
msgstr "Подтвердите:"
#: ../../mod/settings.php:984
msgid "Leave password fields blank unless changing"
msgstr "Оставьте поля пароля пустыми, если он не изменяется"
#: ../../mod/settings.php:988
msgid "Basic Settings"
msgstr "Основные параметры"
#: ../../mod/settings.php:989 ../../include/profile_advanced.php:15
msgid "Full Name:"
msgstr "Полное имя:"
#: ../../mod/settings.php:990
msgid "Email Address:"
msgstr "Адрес электронной почты:"
#: ../../mod/settings.php:991
msgid "Your Timezone:"
msgstr "Ваш часовой пояс:"
#: ../../mod/settings.php:992
msgid "Default Post Location:"
msgstr "Местонахождение по умолчанию:"
#: ../../mod/settings.php:993
msgid "Use Browser Location:"
msgstr "Использовать определение местоположения браузером:"
#: ../../mod/settings.php:996
msgid "Security and Privacy Settings"
msgstr "Параметры безопасности и конфиденциальности"
#: ../../mod/settings.php:998
msgid "Maximum Friend Requests/Day:"
msgstr "Максимум запросов в друзья в день:"
#: ../../mod/settings.php:998 ../../mod/settings.php:1017
msgid "(to prevent spam abuse)"
msgstr "(для предотвращения спама)"
#: ../../mod/settings.php:999
msgid "Default Post Permissions"
msgstr "Разрешение на сообщения по умолчанию"
#: ../../mod/settings.php:1000
msgid "(click to open/close)"
msgstr "(нажмите, чтобы открыть / закрыть)"
#: ../../mod/settings.php:1017
msgid "Maximum private messages per day from unknown people:"
msgstr ""
#: ../../mod/settings.php:1020
msgid "Notification Settings"
msgstr "Настройка уведомлений"
#: ../../mod/settings.php:1021
msgid "By default post a status message when:"
msgstr ""
#: ../../mod/settings.php:1022
msgid "accepting a friend request"
msgstr ""
#: ../../mod/settings.php:1023
msgid "joining a forum/community"
msgstr ""
#: ../../mod/settings.php:1024
msgid "making an <em>interesting</em> profile change"
msgstr ""
#: ../../mod/settings.php:1025
msgid "Send a notification email when:"
msgstr "Отправлять уведомление по электронной почте, когда:"
#: ../../mod/settings.php:1026
msgid "You receive an introduction"
msgstr "Вы получили запрос"
#: ../../mod/settings.php:1027
msgid "Your introductions are confirmed"
msgstr "Ваши запросы подтверждены"
#: ../../mod/settings.php:1028
msgid "Someone writes on your profile wall"
msgstr "Кто-то пишет на стене вашего профиля"
#: ../../mod/settings.php:1029
msgid "Someone writes a followup comment"
msgstr "Кто-то пишет последующий комментарий"
#: ../../mod/settings.php:1030
msgid "You receive a private message"
msgstr "Вы получаете личное сообщение"
#: ../../mod/settings.php:1031
msgid "You receive a friend suggestion"
msgstr ""
#: ../../mod/settings.php:1032
msgid "You are tagged in a post"
msgstr ""
#: ../../mod/settings.php:1033
msgid "You are poked/prodded/etc. in a post"
msgstr ""
#: ../../mod/settings.php:1036
msgid "Advanced Account/Page Type Settings"
msgstr ""
#: ../../mod/settings.php:1037
msgid "Change the behaviour of this account for special situations"
msgstr ""
#: ../../mod/manage.php:91
msgid "Manage Identities and/or Pages"
msgstr "Управление идентификацией и / или страницами"
#: ../../mod/manage.php:90
#: ../../mod/manage.php:94
msgid ""
"(Toggle between different identities or community/group pages which share "
"your account details.)"
"Toggle between different identities or community/group pages which share "
"your account details or which you have been granted \"manage\" permissions"
msgstr ""
"(Переключение между различными идентификациями или страницами сообществ / "
"групп, которые делают публичными данные своего аккаунта.)"
#: ../../mod/manage.php:92
#: ../../mod/manage.php:96
msgid "Select an identity to manage: "
msgstr "Выберите идентификацию для управления: "
#: ../../mod/network.php:27
msgid "View Conversations"
#: ../../mod/network.php:97
msgid "Search Results For:"
msgstr ""
#: ../../mod/network.php:29
msgid "View New Items"
#: ../../mod/network.php:137 ../../mod/search.php:16
msgid "Remove term"
msgstr "Удалить элемент"
#: ../../mod/network.php:146 ../../mod/search.php:13
msgid "Saved Searches"
msgstr "запомненные поиски"
#: ../../mod/network.php:147 ../../include/group.php:244
msgid "add"
msgstr "добавить"
#: ../../mod/network.php:287
msgid "Commented Order"
msgstr "Прокомментированный запрос"
#: ../../mod/network.php:290
msgid "Sort by Comment Date"
msgstr ""
#: ../../mod/network.php:35
msgid "View Any Items"
#: ../../mod/network.php:293
msgid "Posted Order"
msgstr "Отправленный запрос"
#: ../../mod/network.php:296
msgid "Sort by Post Date"
msgstr ""
#: ../../mod/network.php:43
msgid "View Starred Items"
#: ../../mod/network.php:303
msgid "Posts that mention or involve you"
msgstr ""
#: ../../mod/network.php:94
#: ../../mod/network.php:306
msgid "New"
msgstr "Новый"
#: ../../mod/network.php:309
msgid "Activity Stream - by date"
msgstr ""
#: ../../mod/network.php:312
msgid "Starred"
msgstr "Помеченный"
#: ../../mod/network.php:315
msgid "Favourite Posts"
msgstr ""
#: ../../mod/network.php:318
msgid "Shared Links"
msgstr ""
#: ../../mod/network.php:321
msgid "Interesting Links"
msgstr ""
#: ../../mod/network.php:388
#, php-format
msgid "Warning: This group contains %s member from an insecure network."
msgid_plural ""
@ -1746,125 +2616,293 @@ msgstr[0] "Внимание: Эта группа содержит %s участ
msgstr[1] "Внимание: Эта группа содержит %s участников с незащищенной сети."
msgstr[2] "Внимание: Эта группа содержит %s участников с незащищенной сети."
#: ../../mod/network.php:97
#: ../../mod/network.php:391
msgid "Private messages to this group are at risk of public disclosure."
msgstr "Личные сообщения к этой группе находятся под угрозой обнародования."
#: ../../mod/network.php:164
msgid "No such group"
msgstr "Нет такой группы"
#: ../../mod/network.php:175
msgid "Group is empty"
msgstr "Группа пуста"
#: ../../mod/network.php:180
msgid "Group: "
msgstr "Группа: "
#: ../../mod/network.php:190
#: ../../mod/network.php:461
msgid "Contact: "
msgstr "Контакт: "
#: ../../mod/network.php:192
#: ../../mod/network.php:463
msgid "Private messages to this person are at risk of public disclosure."
msgstr "Личные сообщения этому человеку находятся под угрозой обнародования."
#: ../../mod/network.php:197
#: ../../mod/network.php:468
msgid "Invalid contact."
msgstr "Недопустимый контакт."
#: ../../mod/notes.php:74
#: ../../mod/notes.php:44 ../../boot.php:1696
msgid "Personal Notes"
msgstr "Личные заметки"
#: ../../mod/notes.php:63 ../../mod/filer.php:30
#: ../../addon/facebook/facebook.php:770
#: ../../addon/privacy_image_cache/privacy_image_cache.php:263
#: ../../addon/fbpost/fbpost.php:267
#: ../../addon/dav/friendica/layout.fnk.php:441
#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:681
msgid "Save"
msgstr "Сохранить"
#: ../../mod/newmember.php:6
msgid "Welcome to Friendika"
#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
#, php-format
msgid "Number of daily wall messages for %s exceeded. Message failed."
msgstr ""
#: ../../mod/wallmessage.php:56 ../../mod/message.php:59
msgid "No recipient selected."
msgstr "Не выбран получатель."
#: ../../mod/wallmessage.php:59
msgid "Unable to check your home location."
msgstr ""
#: ../../mod/wallmessage.php:62 ../../mod/message.php:66
msgid "Message could not be sent."
msgstr "Сообщение не может быть отправлено."
#: ../../mod/wallmessage.php:65 ../../mod/message.php:69
msgid "Message collection failure."
msgstr ""
#: ../../mod/wallmessage.php:68 ../../mod/message.php:72
msgid "Message sent."
msgstr "Сообщение отправлено."
#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
msgid "No recipient."
msgstr ""
#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131
#: ../../mod/message.php:242 ../../mod/message.php:250
#: ../../include/conversation.php:833 ../../include/conversation.php:850
msgid "Please enter a link URL:"
msgstr "Пожалуйста, введите URL ссылки:"
#: ../../mod/wallmessage.php:138 ../../mod/message.php:278
msgid "Send Private Message"
msgstr "Отправить личное сообщение"
#: ../../mod/wallmessage.php:139
#, php-format
msgid ""
"If you wish for %s to respond, please check that the privacy settings on "
"your site allow private mail from unknown senders."
msgstr ""
#: ../../mod/wallmessage.php:140 ../../mod/message.php:279
#: ../../mod/message.php:469
msgid "To:"
msgstr "Кому:"
#: ../../mod/wallmessage.php:141 ../../mod/message.php:284
#: ../../mod/message.php:471
msgid "Subject:"
msgstr "Тема:"
#: ../../mod/wallmessage.php:147 ../../mod/message.php:288
#: ../../mod/message.php:474 ../../mod/invite.php:113
msgid "Your message:"
msgstr "Ваше сообщение:"
#: ../../mod/newmember.php:6
msgid "Welcome to Friendica"
msgstr "Добро пожаловать в Friendica"
#: ../../mod/newmember.php:8
msgid "New Member Checklist"
msgstr ""
msgstr "Новый контрольный список участников"
#: ../../mod/newmember.php:12
msgid ""
"We would like to offer some tips and links to help make your experience "
"enjoyable. Click any item to visit the relevant page."
"enjoyable. Click any item to visit the relevant page. A link to this page "
"will be visible from your home page for two weeks after your initial "
"registration and then will quietly disappear."
msgstr ""
#: ../../mod/newmember.php:16
msgid ""
"On your <em>Settings</em> page - change your initial password. Also make a "
"note of your Identity Address. This will be useful in making friends."
#: ../../mod/newmember.php:14
msgid "Getting Started"
msgstr ""
#: ../../mod/newmember.php:18
msgid "Friendica Walk-Through"
msgstr ""
#: ../../mod/newmember.php:18
msgid ""
"On your <em>Quick Start</em> page - find a brief introduction to your "
"profile and network tabs, make some new connections, and find some groups to"
" join."
msgstr ""
#: ../../mod/newmember.php:26
msgid "Go to Your Settings"
msgstr ""
#: ../../mod/newmember.php:26
msgid ""
"On your <em>Settings</em> page - change your initial password. Also make a "
"note of your Identity Address. This looks just like an email address - and "
"will be useful in making friends on the free social web."
msgstr ""
#: ../../mod/newmember.php:28
msgid ""
"Review the other settings, particularly the privacy settings. An unpublished"
" directory listing is like having an unlisted phone number. In general, you "
"should probably publish your listing - unless all of your friends and "
"potential friends know exactly how to find you."
msgstr ""
msgstr "Просмотрите другие установки, в частности, параметры конфиденциальности. Неопубликованные пункты каталога с частными номерами телефона. В общем, вам, вероятно, следует опубликовать свою информацию - если все ваши друзья и потенциальные друзья точно знают, как вас найти."
#: ../../mod/newmember.php:20
#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
#: ../../view/theme/diabook/theme.php:128 ../../include/profile_advanced.php:7
#: ../../include/profile_advanced.php:84 ../../include/nav.php:50
#: ../../boot.php:1672
msgid "Profile"
msgstr "Профиль"
#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
msgid "Upload Profile Photo"
msgstr "Загрузить фото профиля"
#: ../../mod/newmember.php:36
msgid ""
"Upload a profile photo if you have not done so already. Studies have shown "
"that people with real photos of themselves are ten times more likely to make"
" friends than people who do not."
msgstr ""
msgstr "Загрузите фотографию профиля, если вы еще не сделали это. Исследования показали, что люди с реальными фотографиями имеют в десять раз больше шансов подружиться, чем люди, которые этого не делают."
#: ../../mod/newmember.php:23
msgid ""
"Authorise the Facebook Connector if you currently have a Facebook account "
"and we will (optionally) import all your Facebook friends and conversations."
msgstr ""
#: ../../mod/newmember.php:28
msgid ""
"Enter your email access information on your Settings page if you wish to "
"import and interact with friends or mailing lists from your email INBOX"
msgstr ""
#: ../../mod/newmember.php:30
msgid ""
"Edit your <strong>default</strong> profile to your liking. Review the "
"settings for hiding your list of friends and hiding the profile from unknown"
" visitors."
msgstr ""
#: ../../mod/newmember.php:32
msgid ""
"Set some public keywords for your default profile which describe your "
"interests. We may be able to find other people with similar interests and "
"suggest friendships."
msgstr ""
#: ../../mod/newmember.php:34
msgid ""
"Your Contacts page is your gateway to managing friendships and connecting "
"with friends on other networks. Typically you enter their address or site "
"URL in the <em>Connect</em> dialog."
msgstr ""
#: ../../mod/newmember.php:36
msgid ""
"The Directory page lets you find other people in this network or other "
"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
"their profile page. Provide your own Identity Address if requested."
#: ../../mod/newmember.php:38
msgid "Edit Your Profile"
msgstr ""
#: ../../mod/newmember.php:38
msgid ""
"Once you have made some friends, organize them into private conversation "
"groups from the sidebar of your Contacts page and then you can interact with"
" each group privately on your Network page."
"Edit your <strong>default</strong> profile to your liking. Review the "
"settings for hiding your list of friends and hiding the profile from unknown"
" visitors."
msgstr "Отредактируйте профиль <strong>по умолчанию</strong> на свой ​​вкус. Просмотрите установки для сокрытия вашего списка друзей и сокрытия профиля от неизвестных посетителей."
#: ../../mod/newmember.php:40
msgid "Profile Keywords"
msgstr ""
#: ../../mod/newmember.php:40
msgid ""
"Set some public keywords for your default profile which describe your "
"interests. We may be able to find other people with similar interests and "
"suggest friendships."
msgstr "Установите некоторые публичные ключевые слова для вашего профиля по умолчанию, которые описывают ваши интересы. Мы можем быть в состоянии найти других людей со схожими интересами и предложить дружбу."
#: ../../mod/newmember.php:44
msgid "Connecting"
msgstr ""
#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
#: ../../addon/facebook/facebook.php:728 ../../addon/fbpost/fbpost.php:239
#: ../../include/contact_selectors.php:81
msgid "Facebook"
msgstr "Facebook"
#: ../../mod/newmember.php:49
msgid ""
"Authorise the Facebook Connector if you currently have a Facebook account "
"and we will (optionally) import all your Facebook friends and conversations."
msgstr "Авторизуйте Facebook Connector , если у вас уже есть аккаунт на Facebook, и мы (по желанию) импортируем всех ваших друзей и беседы с Facebook."
#: ../../mod/newmember.php:51
msgid ""
"<em>If</em> this is your own personal server, installing the Facebook addon "
"may ease your transition to the free social web."
msgstr ""
#: ../../mod/newmember.php:56
msgid "Importing Emails"
msgstr ""
#: ../../mod/newmember.php:56
msgid ""
"Enter your email access information on your Connector Settings page if you "
"wish to import and interact with friends or mailing lists from your email "
"INBOX"
msgstr ""
#: ../../mod/newmember.php:58
msgid "Go to Your Contacts Page"
msgstr ""
#: ../../mod/newmember.php:58
msgid ""
"Your Contacts page is your gateway to managing friendships and connecting "
"with friends on other networks. Typically you enter their address or site "
"URL in the <em>Add New Contact</em> dialog."
msgstr ""
#: ../../mod/newmember.php:60
msgid "Go to Your Site's Directory"
msgstr ""
#: ../../mod/newmember.php:60
msgid ""
"The Directory page lets you find other people in this network or other "
"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
"their profile page. Provide your own Identity Address if requested."
msgstr "На странице каталога вы можете найти других людей в этой сети или на других похожих сайтах. Ищите ссылки <em>Подключить</em> или <em>Следовать</em> на страницах их профилей. Укажите свой собственный адрес идентификации, если требуется."
#: ../../mod/newmember.php:62
msgid "Finding New People"
msgstr ""
#: ../../mod/newmember.php:62
msgid ""
"On the side panel of the Contacts page are several tools to find new "
"friends. We can match people by interest, look up people by name or "
"interest, and provide suggestions based on network relationships. On a brand"
" new site, friend suggestions will usually begin to be populated within 24 "
"hours."
msgstr ""
#: ../../mod/newmember.php:66 ../../include/group.php:239
msgid "Groups"
msgstr "Группы"
#: ../../mod/newmember.php:70
msgid "Group Your Contacts"
msgstr ""
#: ../../mod/newmember.php:70
msgid ""
"Once you have made some friends, organize them into private conversation "
"groups from the sidebar of your Contacts page and then you can interact with"
" each group privately on your Network page."
msgstr "После того, как вы найдете несколько друзей, организуйте их в группы частных бесед в боковой панели на странице Контакты, а затем вы можете взаимодействовать с каждой группой приватно или на вашей странице Сеть."
#: ../../mod/newmember.php:73
msgid "Why Aren't My Posts Public?"
msgstr ""
#: ../../mod/newmember.php:73
msgid ""
"Friendica respects your privacy. By default, your posts will only show up to"
" people you've added as friends. For more information, see the help section "
"from the link above."
msgstr ""
#: ../../mod/newmember.php:78
msgid "Getting Help"
msgstr ""
#: ../../mod/newmember.php:82
msgid "Go to the Help Section"
msgstr ""
#: ../../mod/newmember.php:82
msgid ""
"Our <strong>help</strong> pages may be consulted for detail on other program"
" features and resources."
msgstr ""
msgstr "Наши страницы <strong>помощи</strong> могут проконсультировать о подробностях и возможностях программы и ресурса."
#: ../../mod/attach.php:8
msgid "Item not available."
@ -1874,57 +2912,53 @@ msgstr "Пункт не доступен."
msgid "Item was not found."
msgstr "Пункт не был найден."
#: ../../mod/group.php:27
#: ../../mod/group.php:29
msgid "Group created."
msgstr "Группа создана."
#: ../../mod/group.php:33
#: ../../mod/group.php:35
msgid "Could not create group."
msgstr "Не удается создать группу."
msgstr "Не удалось создать группу."
#: ../../mod/group.php:43 ../../mod/group.php:123
#: ../../mod/group.php:47 ../../mod/group.php:137
msgid "Group not found."
msgstr "Группа не найдена."
#: ../../mod/group.php:56
#: ../../mod/group.php:60
msgid "Group name changed."
msgstr "Название группы изменено."
#: ../../mod/group.php:67 ../../mod/profperm.php:19 ../../index.php:265
#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:316
msgid "Permission denied"
msgstr "Доступ запрещен"
#: ../../mod/group.php:82
#: ../../mod/group.php:90
msgid "Create a group of contacts/friends."
msgstr "Создать группу контактов / друзей."
#: ../../mod/group.php:83 ../../mod/group.php:166
#: ../../mod/group.php:91 ../../mod/group.php:177
msgid "Group Name: "
msgstr "Название группы: "
#: ../../mod/group.php:98
#: ../../mod/group.php:110
msgid "Group removed."
msgstr "Группа удалена."
#: ../../mod/group.php:100
#: ../../mod/group.php:112
msgid "Unable to remove group."
msgstr "Не удается удалить группу."
#: ../../mod/group.php:164 ../../mod/profperm.php:105
msgid "Click on a contact to add or remove."
msgstr "Нажмите на контакт, чтобы добавить или удалить."
#: ../../mod/group.php:165
#: ../../mod/group.php:176
msgid "Group Editor"
msgstr "Редактор группы"
msgstr "Редактор групп"
#: ../../mod/group.php:180
#: ../../mod/group.php:189
msgid "Members"
msgstr "Участники"
#: ../../mod/group.php:195
msgid "All Contacts"
msgstr "Все контакты"
#: ../../mod/group.php:221 ../../mod/profperm.php:105
msgid "Click on a contact to add or remove."
msgstr "Нажмите на контакт, чтобы добавить или удалить."
#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
msgid "Invalid profile identifier."
@ -1938,1153 +2972,1583 @@ msgstr "Редактор видимости профиля"
msgid "Visible To"
msgstr "Видимый для"
#: ../../mod/profperm.php:128
#: ../../mod/profperm.php:130
msgid "All Contacts (with secure profile access)"
msgstr "Все контакты (с безопасным доступом к профилю)"
#: ../../mod/viewcontacts.php:25 ../../include/text.php:555
msgid "View Contacts"
msgstr "Просмотр контактов"
#: ../../mod/viewcontacts.php:40
#: ../../mod/viewcontacts.php:39
msgid "No contacts."
msgstr "Нет контактов."
#: ../../mod/register.php:53
msgid "An invitation is required."
msgstr ""
#: ../../mod/viewcontacts.php:76 ../../include/text.php:618
msgid "View Contacts"
msgstr "Просмотр контактов"
#: ../../mod/register.php:58
msgid "Invitation could not be verified."
msgstr ""
#: ../../mod/register.php:66
msgid "Invalid OpenID url"
msgstr "Неверный URL OpenID"
#: ../../mod/register.php:81
msgid "Please enter the required information."
msgstr "Пожалуйста, введите необходимую информацию."
#: ../../mod/register.php:95
msgid "Please use a shorter name."
msgstr "Пожалуйста, используйте более короткое имя."
#: ../../mod/register.php:97
msgid "Name too short."
msgstr "Имя слишком короткое."
#: ../../mod/register.php:112
msgid "That doesn't appear to be your full (First Last) name."
msgstr "Кажется, что это ваше неполное (Имя Фамилия) имя."
#: ../../mod/register.php:117
msgid "Your email domain is not among those allowed on this site."
msgstr ""
"Домен вашего адреса электронной почты не относится к числу разрешенных на "
"этом сайте."
#: ../../mod/register.php:120
msgid "Not a valid email address."
msgstr "Неверный адрес электронной почты."
#: ../../mod/register.php:130
msgid "Cannot use that email."
msgstr "Нельзя использовать этот Email."
#: ../../mod/register.php:136
msgid ""
"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
"must also begin with a letter."
msgstr ""
"Ваш \"ник\" может содержать только \"a-z\", \"0-9\", \"-\", и \"_\", а также"
" должен начинаться с буквы."
#: ../../mod/register.php:142 ../../mod/register.php:243
msgid "Nickname is already registered. Please choose another."
msgstr "Такой ник уже зарегистрирован. Пожалуйста, выберите другой."
#: ../../mod/register.php:161
msgid "SERIOUS ERROR: Generation of security keys failed."
msgstr "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась."
#: ../../mod/register.php:229
msgid "An error occurred during registration. Please try again."
msgstr "Ошибка при регистрации. Пожалуйста, попробуйте еще раз."
#: ../../mod/register.php:265
msgid "An error occurred creating your default profile. Please try again."
msgstr ""
"Ошибка создания вашего профиля по умолчанию. Пожалуйста, попробуйте еще раз."
#: ../../mod/register.php:367 ../../mod/regmod.php:52
#: ../../mod/register.php:88 ../../mod/regmod.php:52
#, php-format
msgid "Registration details for %s"
msgstr "Подробности регистрации для %s"
#: ../../mod/register.php:375
#: ../../mod/register.php:96
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr ""
"Регистрация успешна. Пожалуйста, проверьте свою электронную почту для "
"получения дальнейших инструкций."
msgstr "Регистрация успешна. Пожалуйста, проверьте свою электронную почту для получения дальнейших инструкций."
#: ../../mod/register.php:379
#: ../../mod/register.php:100
msgid "Failed to send email message. Here is the message that failed."
msgstr ""
"Невозможно отправить сообщение электронной почтой. Вот сообщение, которое не"
" удалось."
msgstr "Невозможно отправить сообщение электронной почтой. Вот сообщение, которое не удалось."
#: ../../mod/register.php:384
#: ../../mod/register.php:105
msgid "Your registration can not be processed."
msgstr "Ваша регистрация не может быть обработана."
#: ../../mod/register.php:421
#: ../../mod/register.php:142
#, php-format
msgid "Registration request at %s"
msgstr "Запрос на регистрацию на %s"
#: ../../mod/register.php:430
#: ../../mod/register.php:151
msgid "Your registration is pending approval by the site owner."
msgstr "Ваша регистрация в ожидании одобрения владельцем сайта."
#: ../../mod/register.php:479
#: ../../mod/register.php:189
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr ""
#: ../../mod/register.php:217
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking 'Register'."
msgstr ""
"Вы можете (по желанию), заполнить эту форму с помощью OpenID, поддерживая "
"ваш OpenID и нажав клавишу \"Регистрация\"."
msgstr "Вы можете (по желанию), заполнить эту форму с помощью OpenID, поддерживая ваш OpenID и нажав клавишу \"Регистрация\"."
#: ../../mod/register.php:480
#: ../../mod/register.php:218
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr ""
"Если вы не знакомы с OpenID, пожалуйста, оставьте это поле пустым и "
"заполните остальные элементы."
msgstr "Если вы не знакомы с OpenID, пожалуйста, оставьте это поле пустым и заполните остальные элементы."
#: ../../mod/register.php:481
#: ../../mod/register.php:219
msgid "Your OpenID (optional): "
msgstr "Ваш OpenID (необязательно):"
#: ../../mod/register.php:495
#: ../../mod/register.php:233
msgid "Include your profile in member directory?"
msgstr "Включить ваш профиль в каталог участников?"
#: ../../mod/register.php:511
#: ../../mod/register.php:255
msgid "Membership on this site is by invitation only."
msgstr ""
msgstr "Членство на сайте только по приглашению."
#: ../../mod/register.php:512
#: ../../mod/register.php:256
msgid "Your invitation ID: "
msgstr ""
msgstr "ID вашего приглашения:"
#: ../../mod/register.php:515 ../../mod/admin.php:299
#: ../../mod/register.php:259 ../../mod/admin.php:444
msgid "Registration"
msgstr "Регистрация"
#: ../../mod/register.php:523
#: ../../mod/register.php:267
msgid "Your Full Name (e.g. Joe Smith): "
msgstr "Ваше полное имя (например, Joe Smith): "
#: ../../mod/register.php:524
#: ../../mod/register.php:268
msgid "Your Email Address: "
msgstr "Ваш адрес электронной почты: "
#: ../../mod/register.php:525
#: ../../mod/register.php:269
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be "
"'<strong>nickname@$sitename</strong>'."
msgstr ""
"Выбор ник профиля. Он должен начинаться с буквы. Адрес вашего профиля на "
"данном сайте будет в этом случае '<strong>nickname@$sitename</strong>'."
msgstr "Выбор псевдонима профиля. Он должен начинаться с буквы. Адрес вашего профиля на данном сайте будет в этом случае '<strong>nickname@$sitename</strong>'."
#: ../../mod/register.php:526
#: ../../mod/register.php:270
msgid "Choose a nickname: "
msgstr "Выберите ник: "
msgstr "Выберите псевдоним: "
#: ../../mod/register.php:529 ../../include/nav.php:59 ../../boot.php:637
#: ../../mod/register.php:273 ../../include/nav.php:81 ../../boot.php:887
msgid "Register"
msgstr "Регистрация"
#: ../../mod/like.php:110 ../../addon/facebook/facebook.php:954
#: ../../include/diaspora.php:446 ../../include/conversation.php:26
#: ../../include/conversation.php:35
#: ../../mod/dirfind.php:26
msgid "People Search"
msgstr "Поиск людей"
#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/tagger.php:62
#: ../../addon/facebook/facebook.php:1598
#: ../../addon/communityhome/communityhome.php:158
#: ../../addon/communityhome/communityhome.php:167
#: ../../view/theme/diabook/theme.php:565
#: ../../view/theme/diabook/theme.php:574 ../../include/diaspora.php:1824
#: ../../include/conversation.php:120 ../../include/conversation.php:129
#: ../../include/conversation.php:248 ../../include/conversation.php:257
msgid "status"
msgstr "статус"
#: ../../mod/like.php:127 ../../addon/facebook/facebook.php:958
#: ../../include/diaspora.php:463 ../../include/conversation.php:43
#: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1602
#: ../../addon/communityhome/communityhome.php:172
#: ../../view/theme/diabook/theme.php:579 ../../include/diaspora.php:1840
#: ../../include/conversation.php:136
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr "%1$s нравится %3$s от %2$s "
#: ../../mod/like.php:129 ../../include/diaspora.php:465
#: ../../include/conversation.php:46
#: ../../mod/like.php:164 ../../include/conversation.php:139
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr "%1$s не нравится %3$s от %2$s "
#: ../../mod/friendika.php:42
msgid "This is Friendika version"
msgstr "Это версия Friendika"
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159
#: ../../mod/admin.php:734 ../../mod/admin.php:933 ../../mod/display.php:29
#: ../../mod/display.php:145 ../../include/items.php:3779
msgid "Item not found."
msgstr "Пункт не найден."
#: ../../mod/friendika.php:43
msgid "running at web location"
msgstr "работает на веб-узле"
#: ../../mod/viewsrc.php:7
msgid "Access denied."
msgstr "Доступ запрещен."
#: ../../mod/friendika.php:45
msgid ""
"Shared content within the Friendika network is provided under the <a "
"href=\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons "
"Attribution 3.0 license</a>"
#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:130
#: ../../include/nav.php:51 ../../boot.php:1679
msgid "Photos"
msgstr "Фото"
#: ../../mod/fbrowser.php:96
msgid "Files"
msgstr ""
"Общий контент в сети Friendika предоставляется по лицензии <a "
"href=\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons "
"Attribution 3.0</a>"
#: ../../mod/friendika.php:47
msgid ""
"Please visit <a "
"href=\"http://project.friendika.com\">Project.Friendika.com</a> to learn "
"more about the Friendika project."
msgstr ""
"Пожалуйста, посетите <a "
"href=\"http://project.friendika.com\">Project.Friendika.com</a>, чтобы "
"узнать больше о проекте Friendika."
#: ../../mod/friendika.php:49
msgid "Bug reports and issues: please visit"
msgstr "Отчеты об ошибках и проблемы: пожалуйста, посетите"
#: ../../mod/friendika.php:50
msgid ""
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendika - "
"dot com"
msgstr ""
"Предложения, похвалы, пожертвования и т.д. - пожалуйста, напишите Email "
"\"Info\" на Friendika - dot com"
#: ../../mod/friendika.php:55
msgid "Installed plugins/addons/apps"
msgstr "Установленные плагины / добавки / приложения"
#: ../../mod/friendika.php:63
msgid "No installed plugins/addons/apps"
msgstr "Нет установленных плагинов / добавок / приложений"
#: ../../mod/regmod.php:61
msgid "Account approved."
msgstr "Аккаунт утвержден."
#: ../../mod/regmod.php:93
#: ../../mod/regmod.php:98
#, php-format
msgid "Registration revoked for %s"
msgstr "Регистрация отменена для %s"
#: ../../mod/regmod.php:105
#: ../../mod/regmod.php:110
msgid "Please login."
msgstr "Пожалуйста, войдите с паролем."
#: ../../mod/item.php:81
#: ../../mod/item.php:91
msgid "Unable to locate original post."
msgstr "Не удалось найти оригинальный пост."
#: ../../mod/item.php:196
#: ../../mod/item.php:275
msgid "Empty post discarded."
msgstr "Пустое сообщение отбрасывается."
#: ../../mod/item.php:296 ../../mod/message.php:93
#: ../../mod/wall_upload.php:81 ../../mod/wall_upload.php:90
#: ../../mod/wall_upload.php:97
#: ../../mod/item.php:407 ../../mod/wall_upload.php:133
#: ../../mod/wall_upload.php:142 ../../mod/wall_upload.php:149
#: ../../include/message.php:144
msgid "Wall Photos"
msgstr "Фото стены"
#: ../../mod/item.php:623 ../../mod/item.php:668 ../../mod/item.php:691
#: ../../mod/item.php:734 ../../mod/dfrn_notify.php:293
#: ../../mod/dfrn_notify.php:503 ../../mod/dfrn_notify.php:548
#: ../../mod/dfrn_notify.php:634 ../../mod/dfrn_notify.php:677
msgid "noreply"
msgstr "без ответа"
#: ../../mod/item.php:667 ../../mod/item.php:733 ../../mod/dfrn_notify.php:676
msgid "Administrator@"
msgstr "Администратор @"
#: ../../mod/item.php:670 ../../mod/dfrn_notify.php:550
#: ../../mod/dfrn_notify.php:679
#, php-format
msgid "%s commented on an item at %s"
msgstr "%s оставил/а/ комментарий на %s"
#: ../../mod/item.php:736
#, php-format
msgid "%s posted to your profile wall at %s"
msgstr "% S. написал/а/ на стене вашего профиля на %s"
#: ../../mod/item.php:765
#: ../../mod/item.php:820
msgid "System error. Post not saved."
msgstr "Системная ошибка. Сообщение не сохранено."
#: ../../mod/item.php:784
#: ../../mod/item.php:845
#, php-format
msgid ""
"This message was sent to you by %s, a member of the Friendika social "
"This message was sent to you by %s, a member of the Friendica social "
"network."
msgstr ""
"Это письмо было отправлено вам от %s, участника социальной сети Friendika."
#: ../../mod/item.php:786
#: ../../mod/item.php:847
#, php-format
msgid "You may visit them online at %s"
msgstr "Вы можете посетить их в онлайне на %s"
#: ../../mod/item.php:787
#: ../../mod/item.php:848
msgid ""
"Please contact the sender by replying to this post if you do not wish to "
"receive these messages."
msgstr ""
"Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не "
"хотите получать эти сообщения."
msgstr "Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не хотите получать эти сообщения."
#: ../../mod/item.php:789
#: ../../mod/item.php:850
#, php-format
msgid "%s posted an update."
msgstr "%s отправил/а/ обновление."
#: ../../mod/profile_photo.php:28
#: ../../mod/mood.php:62 ../../include/conversation.php:226
#, php-format
msgid "%1$s is currently %2$s"
msgstr ""
#: ../../mod/mood.php:133
msgid "Mood"
msgstr ""
#: ../../mod/mood.php:134
msgid "Set your current mood and tell your friends"
msgstr ""
#: ../../mod/profile_photo.php:44
msgid "Image uploaded but image cropping failed."
msgstr "Изображение загружено, но обрезка изображения не удалась."
#: ../../mod/profile_photo.php:61 ../../mod/profile_photo.php:68
#: ../../mod/profile_photo.php:75 ../../mod/profile_photo.php:248
#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
#, php-format
msgid "Image size reduction [%s] failed."
msgstr "Уменьшение размера изображения [%s] не удалось."
#: ../../mod/profile_photo.php:95
#: ../../mod/profile_photo.php:118
msgid ""
"Shift-reload the page or clear browser cache if the new photo does not "
"display immediately."
msgstr ""
#: ../../mod/profile_photo.php:128
msgid "Unable to process image"
msgstr "Не удается обработать изображение"
#: ../../mod/profile_photo.php:109 ../../mod/wall_upload.php:56
#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:88
#, php-format
msgid "Image exceeds size limit of %d"
msgstr "Изображение превышает предельный размер %d"
#: ../../mod/profile_photo.php:193
#: ../../mod/profile_photo.php:242
msgid "Upload File:"
msgstr "Загрузить файл:"
#: ../../mod/profile_photo.php:194
msgid "Upload Profile Photo"
msgstr "Загрузить фото профиля"
#: ../../mod/profile_photo.php:243
msgid "Select a profile:"
msgstr ""
#: ../../mod/profile_photo.php:195
#: ../../mod/profile_photo.php:245
#: ../../addon/dav/friendica/layout.fnk.php:152
msgid "Upload"
msgstr "Загрузить"
#: ../../mod/profile_photo.php:196
#: ../../mod/profile_photo.php:248
msgid "skip this step"
msgstr "пропустить этот шаг"
#: ../../mod/profile_photo.php:196
#: ../../mod/profile_photo.php:248
msgid "select a photo from your photo albums"
msgstr "выберите фото из ваших фотоальбомов"
#: ../../mod/profile_photo.php:209
#: ../../mod/profile_photo.php:262
msgid "Crop Image"
msgstr "Обрезать изображение"
#: ../../mod/profile_photo.php:210
#: ../../mod/profile_photo.php:263
msgid "Please adjust the image cropping for optimum viewing."
msgstr "Пожалуйста, настройте обрезку изображения для оптимального просмотра."
#: ../../mod/profile_photo.php:211
#: ../../mod/profile_photo.php:265
msgid "Done Editing"
msgstr "Редактирование выполнено"
#: ../../mod/profile_photo.php:239
#: ../../mod/profile_photo.php:299
msgid "Image uploaded successfully."
msgstr "Изображение загружено успешно."
#: ../../mod/hcard.php:11 ../../mod/profile.php:11 ../../boot.php:792
#: ../../mod/hcard.php:10
msgid "No profile"
msgstr "Нет профиля"
#: ../../mod/removeme.php:42 ../../mod/removeme.php:45
#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
msgid "Remove My Account"
msgstr "Удалить мой аккаунт"
#: ../../mod/removeme.php:43
#: ../../mod/removeme.php:46
msgid ""
"This will completely remove your account. Once this has been done it is not "
"recoverable."
msgstr ""
"Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, "
"аккаунт восстановлению не подлежит."
msgstr "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит."
#: ../../mod/removeme.php:44
#: ../../mod/removeme.php:47
msgid "Please enter your password for verification:"
msgstr "Пожалуйста, введите свой пароль для проверки:"
#: ../../mod/message.php:18
msgid "No recipient selected."
msgstr "Не выбран получатель."
#: ../../mod/message.php:23
msgid "[no subject]"
msgstr "[без темы]"
#: ../../mod/message.php:34
msgid "Unable to locate contact information."
msgstr "Не удалось найти контактную информацию."
#: ../../mod/message.php:102
msgid "Message sent."
msgstr "Сообщение отправлено."
#: ../../mod/message.php:105
msgid "Message could not be sent."
msgstr "Сообщение не может быть отправлено."
#: ../../mod/message.php:125 ../../include/nav.php:102
msgid "Messages"
msgstr "Сообщения"
#: ../../mod/message.php:126
msgid "Inbox"
msgstr "Входящие"
#: ../../mod/message.php:127
msgid "Outbox"
msgstr "Исходящие"
#: ../../mod/message.php:128
#: ../../mod/message.php:9 ../../include/nav.php:131
msgid "New Message"
msgstr "Новое сообщение"
#: ../../mod/message.php:142
#: ../../mod/message.php:63
msgid "Unable to locate contact information."
msgstr "Не удалось найти контактную информацию."
#: ../../mod/message.php:191
msgid "Message deleted."
msgstr "Сообщение удалено."
#: ../../mod/message.php:158
#: ../../mod/message.php:221
msgid "Conversation removed."
msgstr "История общения удалена."
msgstr "Беседа удалена."
#: ../../mod/message.php:172 ../../include/conversation.php:699
msgid "Please enter a link URL:"
msgstr "Пожалуйста, введите URL ссылки:"
#: ../../mod/message.php:180
msgid "Send Private Message"
msgstr "Отправить личное сообщение"
#: ../../mod/message.php:181 ../../mod/message.php:315
msgid "To:"
msgstr "Кому:"
#: ../../mod/message.php:182 ../../mod/message.php:316
msgid "Subject:"
msgstr "Тема:"
#: ../../mod/message.php:185 ../../mod/message.php:319
#: ../../mod/invite.php:101
msgid "Your message:"
msgstr "Ваше сообщение:"
#: ../../mod/message.php:224
#: ../../mod/message.php:327
msgid "No messages."
msgstr "Нет сообщений."
#: ../../mod/message.php:237
#: ../../mod/message.php:334
#, php-format
msgid "Unknown sender - %s"
msgstr ""
#: ../../mod/message.php:337
#, php-format
msgid "You and %s"
msgstr ""
#: ../../mod/message.php:340
#, php-format
msgid "%s and You"
msgstr "%s и Вы"
#: ../../mod/message.php:350 ../../mod/message.php:462
msgid "Delete conversation"
msgstr "Удалить историю общения"
#: ../../mod/message.php:240
#: ../../mod/message.php:353
msgid "D, d M Y - g:i A"
msgstr "D, d M Y - g:i A"
#: ../../mod/message.php:267
#: ../../mod/message.php:356
#, php-format
msgid "%d message"
msgid_plural "%d messages"
msgstr[0] "%d сообщение"
msgstr[1] "%d сообщений"
msgstr[2] "%d сообщений"
#: ../../mod/message.php:391
msgid "Message not available."
msgstr "Сообщение не доступно."
#: ../../mod/message.php:304
#: ../../mod/message.php:444
msgid "Delete message"
msgstr "Удалить сообщение"
#: ../../mod/message.php:314
#: ../../mod/message.php:464
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr ""
#: ../../mod/message.php:468
msgid "Send Reply"
msgstr "Отправить ответ"
#: ../../mod/admin.php:66 ../../mod/admin.php:297
msgid "Site"
msgstr ""
#: ../../mod/admin.php:67 ../../mod/admin.php:460 ../../mod/admin.php:472
msgid "Users"
msgstr ""
#: ../../mod/admin.php:68 ../../mod/admin.php:549 ../../mod/admin.php:586
msgid "Plugins"
msgstr ""
#: ../../mod/admin.php:69
msgid "Update"
msgstr ""
#: ../../mod/admin.php:83 ../../mod/admin.php:651
msgid "Logs"
msgstr ""
#: ../../mod/admin.php:88
msgid "User registrations waiting for confirmation"
msgstr ""
#: ../../mod/admin.php:118 ../../mod/admin.php:502 ../../mod/display.php:25
#: ../../mod/display.php:112 ../../include/items.php:1842
msgid "Item not found."
msgstr "Пункт не найден."
#: ../../mod/admin.php:151 ../../mod/admin.php:296 ../../mod/admin.php:459
#: ../../mod/admin.php:548 ../../mod/admin.php:585 ../../mod/admin.php:650
msgid "Administration"
msgstr ""
#: ../../mod/admin.php:152
msgid "Summary"
msgstr ""
#: ../../mod/admin.php:153
msgid "Registered users"
msgstr ""
#: ../../mod/admin.php:155
msgid "Pending registrations"
msgstr ""
#: ../../mod/admin.php:156
msgid "Version"
msgstr ""
#: ../../mod/admin.php:158
msgid "Active plugins"
msgstr ""
#: ../../mod/admin.php:245
msgid "Site settings updated."
msgstr ""
#: ../../mod/admin.php:289
msgid "Closed"
msgstr ""
#: ../../mod/admin.php:290
msgid "Requires approval"
msgstr ""
#: ../../mod/admin.php:291
msgid "Open"
msgstr ""
#: ../../mod/admin.php:300
msgid "File upload"
msgstr ""
#: ../../mod/admin.php:301
msgid "Policies"
msgstr ""
#: ../../mod/admin.php:302
msgid "Advanced"
msgstr ""
#: ../../mod/admin.php:306 ../../addon/statusnet/statusnet.php:459
msgid "Site name"
msgstr ""
#: ../../mod/admin.php:307
msgid "Banner/Logo"
msgstr ""
#: ../../mod/admin.php:308
msgid "System language"
msgstr ""
#: ../../mod/admin.php:309
msgid "System theme"
msgstr ""
#: ../../mod/admin.php:311
msgid "Maximum image size"
msgstr ""
#: ../../mod/admin.php:313
msgid "Register policy"
msgstr ""
#: ../../mod/admin.php:314
msgid "Register text"
msgstr ""
#: ../../mod/admin.php:315
msgid "Allowed friend domains"
msgstr ""
#: ../../mod/admin.php:316
msgid "Allowed email domains"
msgstr ""
#: ../../mod/admin.php:317
msgid "Block public"
msgstr ""
#: ../../mod/admin.php:318
msgid "Force publish"
msgstr ""
#: ../../mod/admin.php:319
msgid "Global directory update URL"
msgstr ""
#: ../../mod/admin.php:321
msgid "Block multiple registrations"
msgstr ""
#: ../../mod/admin.php:322
msgid "OpenID support"
msgstr ""
#: ../../mod/admin.php:323
msgid "Gravatar support"
msgstr ""
#: ../../mod/admin.php:324
msgid "Fullname check"
msgstr ""
#: ../../mod/admin.php:325
msgid "UTF-8 Regular expressions"
msgstr ""
#: ../../mod/admin.php:326
msgid "Show Community Page"
msgstr ""
#: ../../mod/admin.php:327
msgid "Enable OStatus support"
msgstr ""
#: ../../mod/admin.php:328
msgid "Only allow Friendika contacts"
msgstr ""
#: ../../mod/admin.php:329
msgid "Verify SSL"
msgstr ""
#: ../../mod/admin.php:330
msgid "Proxy user"
msgstr ""
#: ../../mod/admin.php:331
msgid "Proxy URL"
msgstr ""
#: ../../mod/admin.php:332
msgid "Network timeout"
msgstr ""
#: ../../mod/admin.php:353
#: ../../mod/allfriends.php:34
#, php-format
msgid "%s user blocked"
msgid "Friends of %s"
msgstr "%s Друзья"
#: ../../mod/allfriends.php:40
msgid "No friends to display."
msgstr "Нет друзей."
#: ../../mod/admin.php:55
msgid "Theme settings updated."
msgstr ""
#: ../../mod/admin.php:96 ../../mod/admin.php:442
msgid "Site"
msgstr "Сайт"
#: ../../mod/admin.php:97 ../../mod/admin.php:688 ../../mod/admin.php:701
msgid "Users"
msgstr "Пользователи"
#: ../../mod/admin.php:98 ../../mod/admin.php:783 ../../mod/admin.php:825
msgid "Plugins"
msgstr "Плагины"
#: ../../mod/admin.php:99 ../../mod/admin.php:988 ../../mod/admin.php:1024
msgid "Themes"
msgstr ""
#: ../../mod/admin.php:100
msgid "DB updates"
msgstr ""
#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1111
msgid "Logs"
msgstr "Журналы"
#: ../../mod/admin.php:120 ../../include/nav.php:146
msgid "Admin"
msgstr "Администратор"
#: ../../mod/admin.php:121
msgid "Plugin Features"
msgstr ""
#: ../../mod/admin.php:123
msgid "User registrations waiting for confirmation"
msgstr "Регистрации пользователей, ожидающие подтверждения"
#: ../../mod/admin.php:183 ../../mod/admin.php:669
msgid "Normal Account"
msgstr "Обычный аккаунт"
#: ../../mod/admin.php:184 ../../mod/admin.php:670
msgid "Soapbox Account"
msgstr "Аккаунт Витрина"
#: ../../mod/admin.php:185 ../../mod/admin.php:671
msgid "Community/Celebrity Account"
msgstr "Аккаунт Сообщество / Знаменитость"
#: ../../mod/admin.php:186 ../../mod/admin.php:672
msgid "Automatic Friend Account"
msgstr "\"Автоматический друг\" Аккаунт"
#: ../../mod/admin.php:187
msgid "Blog Account"
msgstr ""
#: ../../mod/admin.php:188
msgid "Private Forum"
msgstr ""
#: ../../mod/admin.php:207
msgid "Message queues"
msgstr ""
#: ../../mod/admin.php:212 ../../mod/admin.php:441 ../../mod/admin.php:687
#: ../../mod/admin.php:782 ../../mod/admin.php:824 ../../mod/admin.php:987
#: ../../mod/admin.php:1023 ../../mod/admin.php:1110
msgid "Administration"
msgstr "Администрация"
#: ../../mod/admin.php:213
msgid "Summary"
msgstr "Резюме"
#: ../../mod/admin.php:215
msgid "Registered users"
msgstr "Зарегистрированные пользователи"
#: ../../mod/admin.php:217
msgid "Pending registrations"
msgstr "Ожидающие регистрации"
#: ../../mod/admin.php:218
msgid "Version"
msgstr "Версия"
#: ../../mod/admin.php:220
msgid "Active plugins"
msgstr "Активные плагины"
#: ../../mod/admin.php:373
msgid "Site settings updated."
msgstr "Установки сайта обновлены."
#: ../../mod/admin.php:428
msgid "Closed"
msgstr "Закрыто"
#: ../../mod/admin.php:429
msgid "Requires approval"
msgstr "Требуется подтверждение"
#: ../../mod/admin.php:430
msgid "Open"
msgstr "Открыто"
#: ../../mod/admin.php:434
msgid "No SSL policy, links will track page SSL state"
msgstr ""
#: ../../mod/admin.php:435
msgid "Force all links to use SSL"
msgstr "Заставить все ссылки использовать SSL"
#: ../../mod/admin.php:436
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr ""
#: ../../mod/admin.php:445
msgid "File upload"
msgstr "Загрузка файлов"
#: ../../mod/admin.php:446
msgid "Policies"
msgstr "Политики"
#: ../../mod/admin.php:447
msgid "Advanced"
msgstr "Расширенный"
#: ../../mod/admin.php:451 ../../addon/statusnet/statusnet.php:567
msgid "Site name"
msgstr "Название сайта"
#: ../../mod/admin.php:452
msgid "Banner/Logo"
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 - <a href='#' "
"id='cnftheme'>change theme settings</a>"
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 "SSL link policy"
msgstr ""
#: ../../mod/admin.php:456
msgid "Determines whether generated links should be forced to use SSL"
msgstr "Ссылки должны быть вынуждены использовать SSL"
#: ../../mod/admin.php:457
msgid "Maximum image size"
msgstr "Максимальный размер изображения"
#: ../../mod/admin.php:457
msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits."
msgstr ""
#: ../../mod/admin.php:458
msgid "Maximum image length"
msgstr ""
#: ../../mod/admin.php:458
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr ""
#: ../../mod/admin.php:459
msgid "JPEG image quality"
msgstr ""
#: ../../mod/admin.php:459
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr ""
#: ../../mod/admin.php:461
msgid "Register policy"
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 "Аккаунт считается после x дней не воспользованным"
#: ../../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 "Global directory update URL"
msgstr "URL обновления глобального каталога"
#: ../../mod/admin.php:468
msgid ""
"URL to update the global directory. If this is not set, the global directory"
" is completely unavailable to the application."
msgstr ""
#: ../../mod/admin.php:469
msgid "Allow threaded items"
msgstr ""
#: ../../mod/admin.php:469
msgid "Allow infinite level threading for items on this site."
msgstr ""
#: ../../mod/admin.php:470
msgid "Private posts by default for new users"
msgstr ""
#: ../../mod/admin.php:470
msgid ""
"Set default post permissions for all new members to the default privacy "
"group rather than public."
msgstr ""
#: ../../mod/admin.php:472
msgid "Block multiple registrations"
msgstr "Блокировать множественные регистрации"
#: ../../mod/admin.php:472
msgid "Disallow users to register additional accounts for use as pages."
msgstr "Запретить пользователям регистрировать дополнительные аккаунты для использования в качестве страниц."
#: ../../mod/admin.php:473
msgid "OpenID support"
msgstr "Поддержка OpenID"
#: ../../mod/admin.php:473
msgid "OpenID support for registration and logins."
msgstr ""
#: ../../mod/admin.php:474
msgid "Fullname check"
msgstr "Проверка полного имени"
#: ../../mod/admin.php:474
msgid ""
"Force users to register with a space between firstname and lastname in Full "
"name, as an antispam measure"
msgstr ""
#: ../../mod/admin.php:475
msgid "UTF-8 Regular expressions"
msgstr "UTF-8 регулярные выражения"
#: ../../mod/admin.php:475
msgid "Use PHP UTF8 regular expressions"
msgstr ""
#: ../../mod/admin.php:476
msgid "Show Community Page"
msgstr "Показать страницу сообщества"
#: ../../mod/admin.php:476
msgid ""
"Display a Community page showing all recent public postings on this site."
msgstr "Показывать страницу сообщества с указанием всех последних публичных сообщений на этом сайте."
#: ../../mod/admin.php:477
msgid "Enable OStatus support"
msgstr "Включить поддержку OStatus"
#: ../../mod/admin.php:477
msgid ""
"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
"communications in OStatus are public, so privacy warnings will be "
"occasionally displayed."
msgstr ""
#: ../../mod/admin.php:478
msgid "Enable Diaspora support"
msgstr "Включить поддержку Diaspora"
#: ../../mod/admin.php:478
msgid "Provide built-in Diaspora network compatibility."
msgstr ""
#: ../../mod/admin.php:479
msgid "Only allow Friendica contacts"
msgstr "Позвольть только Friendica контакты"
#: ../../mod/admin.php:479
msgid ""
"All contacts must use Friendica protocols. All other built-in communication "
"protocols disabled."
msgstr "Все контакты должны использовать только Friendica протоколы. Все другие встроенные коммуникационные протоколы отключены."
#: ../../mod/admin.php:480
msgid "Verify SSL"
msgstr "Проверка SSL"
#: ../../mod/admin.php:480
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you"
" cannot connect (at all) to self-signed SSL sites."
msgstr ""
#: ../../mod/admin.php:481
msgid "Proxy user"
msgstr "Прокси пользователь"
#: ../../mod/admin.php:482
msgid "Proxy URL"
msgstr "Прокси URL"
#: ../../mod/admin.php:483
msgid "Network timeout"
msgstr "Тайм-аут сети"
#: ../../mod/admin.php:483
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr ""
#: ../../mod/admin.php:484
msgid "Delivery interval"
msgstr ""
#: ../../mod/admin.php:484
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:485
msgid "Poll interval"
msgstr ""
#: ../../mod/admin.php:485
msgid ""
"Delay background polling processes by this many seconds to reduce system "
"load. If 0, use delivery interval."
msgstr ""
#: ../../mod/admin.php:486
msgid "Maximum Load Average"
msgstr ""
#: ../../mod/admin.php:486
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
msgstr ""
#: ../../mod/admin.php:503
msgid "Update has been marked successful"
msgstr ""
#: ../../mod/admin.php:513
#, php-format
msgid "Executing %s failed. Check system logs."
msgstr ""
#: ../../mod/admin.php:516
#, php-format
msgid "Update %s was successfully applied."
msgstr ""
#: ../../mod/admin.php:520
#, php-format
msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr ""
#: ../../mod/admin.php:523
#, php-format
msgid "Update function %s could not be found."
msgstr ""
#: ../../mod/admin.php:538
msgid "No failed updates."
msgstr ""
#: ../../mod/admin.php:542
msgid "Failed Updates"
msgstr ""
#: ../../mod/admin.php:543
msgid ""
"This does not include updates prior to 1139, which did not return a status."
msgstr ""
#: ../../mod/admin.php:544
msgid "Mark success (if update was manually applied)"
msgstr ""
#: ../../mod/admin.php:545
msgid "Attempt to execute this update step automatically"
msgstr ""
#: ../../mod/admin.php:570
#, php-format
msgid "%s user blocked/unblocked"
msgid_plural "%s users blocked/unblocked"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
#: ../../mod/admin.php:360
#: ../../mod/admin.php:577
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
msgstr[0] "%s человек удален"
msgstr[1] "%s чел. удалено"
msgstr[2] "%s чел. удалено"
#: ../../mod/admin.php:394
#: ../../mod/admin.php:616
#, php-format
msgid "User '%s' deleted"
msgstr ""
msgstr "Пользователь '%s' удален"
#: ../../mod/admin.php:401
#: ../../mod/admin.php:624
#, php-format
msgid "User '%s' unblocked"
msgstr ""
msgstr "Пользователь '%s' разблокирован"
#: ../../mod/admin.php:401
#: ../../mod/admin.php:624
#, php-format
msgid "User '%s' blocked"
msgstr ""
msgstr "Пользователь '%s' блокирован"
#: ../../mod/admin.php:462
#: ../../mod/admin.php:690
msgid "select all"
msgstr ""
msgstr "выбрать все"
#: ../../mod/admin.php:463
#: ../../mod/admin.php:691
msgid "User registrations waiting for confirm"
msgstr "Регистрации пользователей, ожидающие подтверждения"
#: ../../mod/admin.php:464
#: ../../mod/admin.php:692
msgid "Request date"
msgstr ""
msgstr "Запрос даты"
#: ../../mod/admin.php:464 ../../mod/admin.php:473
#: ../../mod/admin.php:692 ../../mod/admin.php:702
#: ../../include/contact_selectors.php:79
msgid "Email"
msgstr ""
msgstr "Эл. почта"
#: ../../mod/admin.php:465
#: ../../mod/admin.php:693
msgid "No registrations."
msgstr "Нет регистраций."
#: ../../mod/admin.php:467
#: ../../mod/admin.php:695
msgid "Deny"
msgstr "Отклонить"
#: ../../mod/admin.php:469
msgid "Block"
msgstr ""
#: ../../mod/admin.php:470
msgid "Unblock"
msgstr ""
#: ../../mod/admin.php:473
msgid "Register date"
msgstr ""
#: ../../mod/admin.php:473
msgid "Last login"
msgstr ""
#: ../../mod/admin.php:473
msgid "Last item"
msgstr ""
#: ../../mod/admin.php:473
msgid "Account"
msgstr ""
#: ../../mod/admin.php:475
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:476
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:512
#, php-format
msgid "Plugin %s disabled."
msgstr ""
#: ../../mod/admin.php:516
#, php-format
msgid "Plugin %s enabled."
msgstr ""
#: ../../mod/admin.php:526
msgid "Disable"
msgstr ""
#: ../../mod/admin.php:528
msgid "Enable"
msgstr ""
#: ../../mod/admin.php:550
msgid "Toggle"
msgstr ""
#: ../../mod/admin.php:551 ../../include/nav.php:108
msgid "Settings"
msgstr "Настройки"
#: ../../mod/admin.php:613
msgid "Log settings updated."
msgstr ""
#: ../../mod/admin.php:653
msgid "Clear"
msgstr ""
#: ../../mod/admin.php:659
msgid "Debugging"
msgstr ""
#: ../../mod/admin.php:660
msgid "Log file"
msgstr ""
#: ../../mod/admin.php:660
msgid "Must be writable by web server. Relative to your Friendika index.php."
msgstr ""
#: ../../mod/admin.php:661
msgid "Log level"
#: ../../mod/admin.php:699
msgid "Site admin"
msgstr ""
#: ../../mod/admin.php:702
msgid "Register date"
msgstr "Дата регистрации"
#: ../../mod/admin.php:702
msgid "Last login"
msgstr "Последний вход"
#: ../../mod/admin.php:702
msgid "Last item"
msgstr "Последний пункт"
#: ../../mod/admin.php:702
msgid "Account"
msgstr "Аккаунт"
#: ../../mod/admin.php:704
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Выбранные пользователи будут удалены!\\n\\nВсе, что эти пользователи написали на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?"
#: ../../mod/admin.php:705
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 "Пользователь {0} будет удален!\\n\\nВсе, что этот пользователь написал на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?"
#: ../../mod/admin.php:746
#, php-format
msgid "Plugin %s disabled."
msgstr "Плагин %s отключен."
#: ../../mod/admin.php:750
#, php-format
msgid "Plugin %s enabled."
msgstr "Плагин %s включен."
#: ../../mod/admin.php:760 ../../mod/admin.php:958
msgid "Disable"
msgstr "Отключить"
#: ../../mod/admin.php:762 ../../mod/admin.php:960
msgid "Enable"
msgstr "Включить"
#: ../../mod/admin.php:784 ../../mod/admin.php:989
msgid "Toggle"
msgstr "Переключить"
#: ../../mod/admin.php:792 ../../mod/admin.php:999
msgid "Author: "
msgstr "Автор:"
#: ../../mod/admin.php:793 ../../mod/admin.php:1000
msgid "Maintainer: "
msgstr ""
#: ../../mod/admin.php:922
msgid "No themes found."
msgstr ""
#: ../../mod/admin.php:981
msgid "Screenshot"
msgstr "Скриншот"
#: ../../mod/admin.php:1029
msgid "[Experimental]"
msgstr "[экспериментально]"
#: ../../mod/admin.php:1030
msgid "[Unsupported]"
msgstr "[Неподдерживаемое]"
#: ../../mod/admin.php:1057
msgid "Log settings updated."
msgstr "Настройки журнала обновлены."
#: ../../mod/admin.php:1113
msgid "Clear"
msgstr "Очистить"
#: ../../mod/admin.php:1119
msgid "Debugging"
msgstr "Отладка"
#: ../../mod/admin.php:1120
msgid "Log file"
msgstr "Лог-файл"
#: ../../mod/admin.php:1120
msgid ""
"Must be writable by web server. Relative to your Friendica top-level "
"directory."
msgstr ""
#: ../../mod/admin.php:1121
msgid "Log level"
msgstr "Уровень лога"
#: ../../mod/admin.php:1171
msgid "Close"
msgstr ""
msgstr "Закрыть"
#: ../../mod/admin.php:708
#: ../../mod/admin.php:1177
msgid "FTP Host"
msgstr ""
msgstr "FTP хост"
#: ../../mod/admin.php:709
#: ../../mod/admin.php:1178
msgid "FTP Path"
msgstr ""
msgstr "Путь FTP"
#: ../../mod/admin.php:710
#: ../../mod/admin.php:1179
msgid "FTP User"
msgstr ""
msgstr "FTP пользователь"
#: ../../mod/admin.php:711
#: ../../mod/admin.php:1180
msgid "FTP Password"
msgstr ""
msgstr "FTP пароль"
#: ../../mod/profile.php:102 ../../mod/display.php:63
#: ../../mod/profile.php:22 ../../boot.php:1074
msgid "Requested profile is not available."
msgstr "Запрашиваемый профиль недоступен."
#: ../../mod/profile.php:152 ../../mod/display.php:77
msgid "Access to this profile has been restricted."
msgstr "Доступ к этому профилю ограничен."
#: ../../mod/profile.php:133
#: ../../mod/profile.php:177
msgid "Tips for New Members"
msgstr "Советы для новых участников"
#: ../../mod/ping.php:238
msgid "{0} wants to be your friend"
msgstr "{0} хочет стать Вашим другом"
#: ../../mod/ping.php:243
msgid "{0} sent you a message"
msgstr "{0} отправил Вам сообщение"
#: ../../mod/ping.php:248
msgid "{0} requested registration"
msgstr "{0} требуемая регистрация"
#: ../../mod/ping.php:254
#, php-format
msgid "{0} commented %s's post"
msgstr "{0} прокомментировал сообщение от %s"
#: ../../mod/ping.php:259
#, php-format
msgid "{0} liked %s's post"
msgstr "{0} нравится сообщение от %s"
#: ../../mod/ping.php:264
#, php-format
msgid "{0} disliked %s's post"
msgstr "{0} не нравится сообщение от %s"
#: ../../mod/ping.php:269
#, php-format
msgid "{0} is now friends with %s"
msgstr "{0} теперь друзья с %s"
#: ../../mod/ping.php:274
msgid "{0} posted"
msgstr "{0} опубликовано"
#: ../../mod/ping.php:279
#, php-format
msgid "{0} tagged %s's post with #%s"
msgstr "{0} пометил сообщение %s с #%s"
#: ../../mod/ping.php:285
msgid "{0} mentioned you in a post"
msgstr "{0} упоменул Вас в сообщение"
#: ../../mod/nogroup.php:58
msgid "Contacts who are not members of a group"
msgstr ""
#: ../../mod/openid.php:62 ../../mod/openid.php:122 ../../include/auth.php:120
#: ../../include/auth.php:145 ../../include/auth.php:198
#: ../../mod/openid.php:24
msgid "OpenID protocol error. No ID returned."
msgstr ""
#: ../../mod/openid.php:53
msgid ""
"Account not found and OpenID registration is not permitted on this site."
msgstr "Аккаунт не найден и OpenID регистрация не допускается на этом сайте."
#: ../../mod/openid.php:93 ../../include/auth.php:98
#: ../../include/auth.php:161
msgid "Login failed."
msgstr "Войти не удалось."
#: ../../mod/openid.php:78 ../../include/auth.php:214
msgid "Welcome "
msgstr "Добро пожаловать, "
#: ../../mod/openid.php:79 ../../include/auth.php:215
msgid "Please upload a profile photo."
msgstr "Пожалуйста, загрузите фотографию профиля."
#: ../../mod/openid.php:82 ../../include/auth.php:218
msgid "Welcome back "
msgstr "Добро пожаловать обратно, "
#: ../../mod/follow.php:39
msgid ""
"This site is not configured to allow communications with other networks."
#: ../../mod/follow.php:27
msgid "Contact added"
msgstr ""
#: ../../mod/follow.php:40 ../../mod/follow.php:50
msgid "No compatible communication protocols or feeds were discovered."
msgstr "Обнаружены несовместимые протоколы связи или каналы."
#: ../../mod/common.php:42
msgid "Common Friends"
msgstr "Общие друзья"
#: ../../mod/follow.php:48
msgid "The profile address specified does not provide adequate information."
msgstr "Указанный адрес профиля не дает адекватной информации."
#: ../../mod/follow.php:52
msgid "An author or name was not found."
msgstr "Автор или имя не найдены."
#: ../../mod/follow.php:54
msgid "No browser URL could be matched to this address."
msgstr "Нет URL браузера, который соответствует этому адресу."
#: ../../mod/follow.php:61
msgid ""
"The profile address specified belongs to a network which has been disabled "
"on this site."
msgstr "Указанный адрес профиля принадлежит сети, недоступной на этом сайта."
#: ../../mod/follow.php:66
msgid ""
"Limited profile. This person will be unable to receive direct/personal "
"notifications from you."
#: ../../mod/common.php:78
msgid "No contacts in common."
msgstr ""
"Ограниченный профиль. Этот человек не сможет получить прямые / личные "
"уведомления от вас."
#: ../../mod/follow.php:122
msgid "Unable to retrieve contact information."
msgstr "Невозможно получить контактную информацию."
#: ../../mod/share.php:28
msgid "link"
msgstr ""
#: ../../mod/follow.php:168
msgid "following"
msgstr "следует"
#: ../../mod/display.php:105
#: ../../mod/display.php:138
msgid "Item has been removed."
msgstr "Пункт был удален."
#: ../../mod/dfrn_notify.php:353
msgid "New mail received at "
msgstr "Новая почта получена "
#: ../../mod/apps.php:6
#: ../../mod/apps.php:4
msgid "Applications"
msgstr "Приложения"
#: ../../mod/apps.php:11
#: ../../mod/apps.php:7
msgid "No installed applications."
msgstr ""
msgstr "Нет установленных приложений."
#: ../../mod/search.php:26 ../../include/text.php:610 ../../include/nav.php:69
#: ../../mod/search.php:85 ../../include/text.php:678
#: ../../include/text.php:679 ../../include/nav.php:91
msgid "Search"
msgstr "Поиск"
#: ../../mod/profiles.php:21 ../../mod/profiles.php:236
#: ../../mod/profiles.php:341 ../../mod/dfrn_confirm.php:62
#: ../../mod/profiles.php:21 ../../mod/profiles.php:423
#: ../../mod/profiles.php:537 ../../mod/dfrn_confirm.php:62
msgid "Profile not found."
msgstr "Профиль не найден."
#: ../../mod/profiles.php:28
#: ../../mod/profiles.php:31
msgid "Profile Name is required."
msgstr "Необходимо имя профиля."
#: ../../mod/profiles.php:198
#: ../../mod/profiles.php:160
msgid "Marital Status"
msgstr ""
#: ../../mod/profiles.php:164
msgid "Romantic Partner"
msgstr ""
#: ../../mod/profiles.php:168
msgid "Likes"
msgstr ""
#: ../../mod/profiles.php:172
msgid "Dislikes"
msgstr ""
#: ../../mod/profiles.php:176
msgid "Work/Employment"
msgstr ""
#: ../../mod/profiles.php:179
msgid "Religion"
msgstr ""
#: ../../mod/profiles.php:183
msgid "Political Views"
msgstr ""
#: ../../mod/profiles.php:187
msgid "Gender"
msgstr ""
#: ../../mod/profiles.php:191
msgid "Sexual Preference"
msgstr ""
#: ../../mod/profiles.php:195
msgid "Homepage"
msgstr ""
#: ../../mod/profiles.php:199
msgid "Interests"
msgstr ""
#: ../../mod/profiles.php:203
msgid "Address"
msgstr ""
#: ../../mod/profiles.php:210 ../../addon/dav/common/wdcal_edit.inc.php:183
msgid "Location"
msgstr ""
#: ../../mod/profiles.php:293
msgid "Profile updated."
msgstr "Профиль обновлен."
#: ../../mod/profiles.php:253
#: ../../mod/profiles.php:360
msgid " and "
msgstr ""
#: ../../mod/profiles.php:368
msgid "public profile"
msgstr ""
#: ../../mod/profiles.php:371
#, php-format
msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
msgstr ""
#: ../../mod/profiles.php:372
#, php-format
msgid " - Visit %1$s's %2$s"
msgstr ""
#: ../../mod/profiles.php:375
#, php-format
msgid "%1$s has an updated %2$s, changing %3$s."
msgstr ""
#: ../../mod/profiles.php:442
msgid "Profile deleted."
msgstr "Профиль удален."
#: ../../mod/profiles.php:269 ../../mod/profiles.php:300
#: ../../mod/profiles.php:460 ../../mod/profiles.php:494
msgid "Profile-"
msgstr "Профиль-"
#: ../../mod/profiles.php:288 ../../mod/profiles.php:327
#: ../../mod/profiles.php:479 ../../mod/profiles.php:521
msgid "New profile created."
msgstr "Новый профиль создан."
#: ../../mod/profiles.php:306
#: ../../mod/profiles.php:500
msgid "Profile unavailable to clone."
msgstr "Профиль недоступен для клонирования."
#: ../../mod/profiles.php:353
#: ../../mod/profiles.php:562
msgid "Hide your contact/friend list from viewers of this profile?"
msgstr "Скрывать ваш список контактов / друзей от посетителей этого профиля?"
#: ../../mod/profiles.php:371
#: ../../mod/profiles.php:582
msgid "Edit Profile Details"
msgstr "Изменить подробности профиля"
msgstr "Редактировать детали профиля"
#: ../../mod/profiles.php:373
#: ../../mod/profiles.php:584
msgid "View this profile"
msgstr "Просмотреть этот профиль"
#: ../../mod/profiles.php:374
#: ../../mod/profiles.php:585
msgid "Create a new profile using these settings"
msgstr "Создать новый профиль, используя эти настройки"
#: ../../mod/profiles.php:375
#: ../../mod/profiles.php:586
msgid "Clone this profile"
msgstr "Клонировать этот профиль"
#: ../../mod/profiles.php:376
#: ../../mod/profiles.php:587
msgid "Delete this profile"
msgstr "Удалить этот профиль"
#: ../../mod/profiles.php:377
#: ../../mod/profiles.php:588
msgid "Profile Name:"
msgstr "Имя профиля:"
#: ../../mod/profiles.php:378
#: ../../mod/profiles.php:589
msgid "Your Full Name:"
msgstr "Ваше полное имя:"
#: ../../mod/profiles.php:379
#: ../../mod/profiles.php:590
msgid "Title/Description:"
msgstr "Заголовок / Описание:"
#: ../../mod/profiles.php:380
#: ../../mod/profiles.php:591
msgid "Your Gender:"
msgstr "Ваш пол:"
#: ../../mod/profiles.php:381
#: ../../mod/profiles.php:592
#, php-format
msgid "Birthday (%s):"
msgstr ""
msgstr "День рождения (%s):"
#: ../../mod/profiles.php:382
#: ../../mod/profiles.php:593
msgid "Street Address:"
msgstr "Адрес:"
#: ../../mod/profiles.php:383
#: ../../mod/profiles.php:594
msgid "Locality/City:"
msgstr "Город / Населенный пункт:"
#: ../../mod/profiles.php:384
#: ../../mod/profiles.php:595
msgid "Postal/Zip Code:"
msgstr "Почтовый индекс:"
#: ../../mod/profiles.php:385
#: ../../mod/profiles.php:596
msgid "Country:"
msgstr "Страна:"
#: ../../mod/profiles.php:386
#: ../../mod/profiles.php:597
msgid "Region/State:"
msgstr "Район / Область:"
#: ../../mod/profiles.php:387
#: ../../mod/profiles.php:598
msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
msgstr "<span class=\"heart\">&hearts;</span> Семейное положение:"
#: ../../mod/profiles.php:388
#: ../../mod/profiles.php:599
msgid "Who: (if applicable)"
msgstr "Кто: (если применимо)"
msgstr "Кто: (если требуется)"
#: ../../mod/profiles.php:389
#: ../../mod/profiles.php:600
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr "Примеры: cathy123, Кэти Уильямс, cathy@example.com"
#: ../../mod/profiles.php:390 ../../include/profile_advanced.php:90
#: ../../mod/profiles.php:601
msgid "Since [date]:"
msgstr ""
#: ../../mod/profiles.php:602 ../../include/profile_advanced.php:46
msgid "Sexual Preference:"
msgstr "Сексуальные предпочтения:"
#: ../../mod/profiles.php:391
#: ../../mod/profiles.php:603
msgid "Homepage URL:"
msgstr "Адрес домашней странички:"
#: ../../mod/profiles.php:392 ../../include/profile_advanced.php:115
#: ../../mod/profiles.php:604 ../../include/profile_advanced.php:50
msgid "Hometown:"
msgstr ""
#: ../../mod/profiles.php:605 ../../include/profile_advanced.php:54
msgid "Political Views:"
msgstr "Политические взгляды:"
#: ../../mod/profiles.php:393
#: ../../mod/profiles.php:606
msgid "Religious Views:"
msgstr "Религиозные взгляды:"
#: ../../mod/profiles.php:394
#: ../../mod/profiles.php:607
msgid "Public Keywords:"
msgstr "Общественные ключевые слова:"
#: ../../mod/profiles.php:395
#: ../../mod/profiles.php:608
msgid "Private Keywords:"
msgstr "Личные ключевые слова:"
#: ../../mod/profiles.php:396
#: ../../mod/profiles.php:609 ../../include/profile_advanced.php:62
msgid "Likes:"
msgstr ""
#: ../../mod/profiles.php:610 ../../include/profile_advanced.php:64
msgid "Dislikes:"
msgstr ""
#: ../../mod/profiles.php:611
msgid "Example: fishing photography software"
msgstr "Пример: рыбалка фотографии программное обеспечение"
#: ../../mod/profiles.php:397
#: ../../mod/profiles.php:612
msgid "(Used for suggesting potential friends, can be seen by others)"
msgstr ""
"(Используется для предложения потенциальным друзьям, могут увидеть другие)"
msgstr "(Используется для предложения потенциальным друзьям, могут увидеть другие)"
#: ../../mod/profiles.php:398
#: ../../mod/profiles.php:613
msgid "(Used for searching profiles, never shown to others)"
msgstr "(Используется для поиска профилей, никогда не показывается другим)"
#: ../../mod/profiles.php:399
#: ../../mod/profiles.php:614
msgid "Tell us about yourself..."
msgstr "Расскажите нам о себе ..."
#: ../../mod/profiles.php:400
#: ../../mod/profiles.php:615
msgid "Hobbies/Interests"
msgstr "Хобби / Интересы"
#: ../../mod/profiles.php:401
#: ../../mod/profiles.php:616
msgid "Contact information and Social Networks"
msgstr "Контактная информация и социальные сети"
#: ../../mod/profiles.php:402
#: ../../mod/profiles.php:617
msgid "Musical interests"
msgstr "Музыкальные интересы"
#: ../../mod/profiles.php:403
#: ../../mod/profiles.php:618
msgid "Books, literature"
msgstr "Книги, литература"
#: ../../mod/profiles.php:404
#: ../../mod/profiles.php:619
msgid "Television"
msgstr "Телевидение"
#: ../../mod/profiles.php:405
#: ../../mod/profiles.php:620
msgid "Film/dance/culture/entertainment"
msgstr "Кино / танцы / культура / развлечения"
#: ../../mod/profiles.php:406
#: ../../mod/profiles.php:621
msgid "Love/romance"
msgstr "Любовь / романтика"
#: ../../mod/profiles.php:407
#: ../../mod/profiles.php:622
msgid "Work/employment"
msgstr "Работа / занятость"
#: ../../mod/profiles.php:408
#: ../../mod/profiles.php:623
msgid "School/education"
msgstr "Школа / образование"
#: ../../mod/profiles.php:413
#: ../../mod/profiles.php:628
msgid ""
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
"be visible to anybody using the internet."
msgstr ""
"Это ваш <strong>публичный</strong> профиль. <br /> Он <strong>может</strong>"
" быть виден каждому, используя Интернет."
msgstr "Это ваш <strong>публичный</strong> профиль. <br /> Он <strong>может</strong> быть виден каждому, используя Интернет."
#: ../../mod/profiles.php:423 ../../mod/directory.php:112
#: ../../mod/profiles.php:638 ../../mod/directory.php:111
msgid "Age: "
msgstr "Возраст: "
#: ../../mod/profiles.php:458 ../../include/nav.php:109
msgid "Profiles"
msgstr "Профили"
#: ../../mod/profiles.php:677
msgid "Edit/Manage Profiles"
msgstr "Редактировать профиль"
#: ../../mod/profiles.php:459
#: ../../mod/profiles.php:678 ../../boot.php:1192
msgid "Change profile photo"
msgstr "Изменить фото профиля"
#: ../../mod/profiles.php:460
#: ../../mod/profiles.php:679 ../../boot.php:1193
msgid "Create New Profile"
msgstr "Создать новый профиль"
#: ../../mod/profiles.php:470
#: ../../mod/profiles.php:690 ../../boot.php:1203
msgid "Profile Image"
msgstr "Фото профиля"
#: ../../mod/profiles.php:472
#: ../../mod/profiles.php:692 ../../boot.php:1206
msgid "visible to everybody"
msgstr "видимый всем"
#: ../../mod/profiles.php:693 ../../boot.php:1207
msgid "Edit visibility"
msgstr "Редактировать видимость"
#: ../../mod/filer.php:29 ../../include/conversation.php:837
#: ../../include/conversation.php:854
msgid "Save to Folder:"
msgstr "Сохранить в папку:"
#: ../../mod/filer.php:29
msgid "- select -"
msgstr ""
#: ../../mod/profiles.php:473
msgid "Edit visibility"
msgstr "Изменить видимость"
#: ../../mod/tagger.php:95 ../../include/conversation.php:265
#, php-format
msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr "%1$s tagged %2$s's %3$s в %4$s"
#: ../../mod/directory.php:40
#: ../../mod/delegate.php:95
msgid "No potential page delegates located."
msgstr ""
#: ../../mod/delegate.php:121
msgid "Delegate Page Management"
msgstr "Делегировать управление страницей"
#: ../../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 ""
#: ../../mod/delegate.php:124
msgid "Existing Page Managers"
msgstr "Существующие менеджеры страницы"
#: ../../mod/delegate.php:126
msgid "Existing Page Delegates"
msgstr "Существующие уполномоченные страницы"
#: ../../mod/delegate.php:128
msgid "Potential Delegates"
msgstr ""
#: ../../mod/delegate.php:131
msgid "Add"
msgstr "Добавить"
#: ../../mod/delegate.php:132
msgid "No entries."
msgstr "Нет записей."
#: ../../mod/babel.php:17
msgid "Source (bbcode) text:"
msgstr ""
#: ../../mod/babel.php:23
msgid "Source (Diaspora) text to convert to BBcode:"
msgstr ""
#: ../../mod/babel.php:31
msgid "Source input: "
msgstr ""
#: ../../mod/babel.php:35
msgid "bb2html: "
msgstr ""
#: ../../mod/babel.php:39
msgid "bb2html2bb: "
msgstr ""
#: ../../mod/babel.php:43
msgid "bb2md: "
msgstr ""
#: ../../mod/babel.php:47
msgid "bb2md2html: "
msgstr ""
#: ../../mod/babel.php:51
msgid "bb2dia2bb: "
msgstr ""
#: ../../mod/babel.php:55
msgid "bb2md2html2bb: "
msgstr ""
#: ../../mod/babel.php:65
msgid "Source input (Diaspora format): "
msgstr ""
#: ../../mod/babel.php:70
msgid "diaspora2bb: "
msgstr ""
#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:626
#: ../../include/contact_widgets.php:34
msgid "Friend Suggestions"
msgstr "Предложения друзей"
#: ../../mod/suggest.php:44
msgid ""
"No suggestions available. If this is a new site, please try again in 24 "
"hours."
msgstr ""
#: ../../mod/suggest.php:61
msgid "Ignore/Hide"
msgstr "Проигнорировать/Скрыть"
#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:624
msgid "Global Directory"
msgstr "Глобальный каталог"
#: ../../mod/directory.php:46
msgid "Normal site view"
msgstr "Стандартный вид сайта"
#: ../../mod/directory.php:57
msgid "Find on this site"
msgstr "Найти на этом сайте"
#: ../../mod/directory.php:48
msgid "View all site entries"
msgstr "Посмотреть все записи сайта"
#: ../../mod/directory.php:56
#: ../../mod/directory.php:60
msgid "Site Directory"
msgstr "Каталог сайта"
#: ../../mod/directory.php:115
#: ../../mod/directory.php:114
msgid "Gender: "
msgstr "Пол: "
#: ../../mod/directory.php:141
#: ../../mod/directory.php:136 ../../include/profile_advanced.php:17
#: ../../boot.php:1228
msgid "Gender:"
msgstr "Пол:"
#: ../../mod/directory.php:138 ../../include/profile_advanced.php:37
#: ../../boot.php:1231
msgid "Status:"
msgstr "Статус:"
#: ../../mod/directory.php:140 ../../include/profile_advanced.php:48
#: ../../boot.php:1233
msgid "Homepage:"
msgstr "Домашняя страничка:"
#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
msgid "About:"
msgstr "О себе:"
#: ../../mod/directory.php:180
msgid "No entries (some entries may be hidden)."
msgstr "Нет записей (некоторые записи могут быть скрыты)."
@ -3094,9 +4558,8 @@ msgid "%s : Not a valid email address."
msgstr "%s: Неверный адрес электронной почты."
#: ../../mod/invite.php:59
#, php-format
msgid "Please join my network on %s"
msgstr "Пожалуйста, присоединяйтесь к моей сети на %s"
msgid "Please join us on Friendica"
msgstr ""
#: ../../mod/invite.php:69
#, php-format
@ -3113,200 +4576,1341 @@ msgstr[2] "%d сообщений отправлено."
#: ../../mod/invite.php:92
msgid "You have no more invitations available"
msgstr ""
#: ../../mod/invite.php:99
msgid "Send invitations"
msgstr "Отправить приглашения"
msgstr "У вас нет больше приглашений"
#: ../../mod/invite.php:100
msgid "Enter email addresses, one per line:"
msgstr "Введите адреса электронной почты, по одному в строке:"
#, php-format
msgid ""
"Visit %s for a list of public sites that you can join. Friendica members on "
"other sites can all connect with each other, as well as with members of many"
" other social networks."
msgstr ""
#: ../../mod/invite.php:102
#, php-format
msgid "Please join my social network on %s"
msgstr "Пожалуйста, присоединяйтесь к моей социальной сети на %s"
msgid ""
"To accept this invitation, please visit and register at %s or any other "
"public Friendica website."
msgstr ""
#: ../../mod/invite.php:103
msgid "To accept this invitation, please visit:"
msgstr "Чтобы принять это приглашение, пожалуйста, посетите:"
#: ../../mod/invite.php:104
msgid "You will need to supply this invitation code: $invite_code"
#, php-format
msgid ""
"Friendica sites all inter-connect to create a huge privacy-enhanced social "
"web that is owned and controlled by its members. They can also connect with "
"many traditional social networks. See %s for a list of alternate Friendica "
"sites you can join."
msgstr ""
#: ../../mod/invite.php:104
#: ../../mod/invite.php:106
msgid ""
"Our apologies. This system is not currently configured to connect with other"
" public sites or invite members."
msgstr ""
#: ../../mod/invite.php:111
msgid "Send invitations"
msgstr "Отправить приглашения"
#: ../../mod/invite.php:112
msgid "Enter email addresses, one per line:"
msgstr "Введите адреса электронной почты, по одному в строке:"
#: ../../mod/invite.php:114
msgid ""
"You are cordially invited to join me and other close friends on Friendica - "
"and help us to create a better social web."
msgstr ""
#: ../../mod/invite.php:116
msgid "You will need to supply this invitation code: $invite_code"
msgstr "Вам нужно будет предоставить этот код приглашения: $invite_code"
#: ../../mod/invite.php:116
msgid ""
"Once you have registered, please connect with me via my profile page at:"
msgstr ""
"После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через "
"мою страницу профиля по адресу:"
msgstr "После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через мою страницу профиля по адресу:"
#: ../../mod/dfrn_confirm.php:233
#: ../../mod/invite.php:118
msgid ""
"For more information about the Friendica project and why we feel it is "
"important, please visit http://friendica.com"
msgstr ""
#: ../../mod/dfrn_confirm.php:119
msgid ""
"This may occasionally happen if contact was requested by both persons and it"
" has already been approved."
msgstr ""
#: ../../mod/dfrn_confirm.php:237
msgid "Response from remote site was not understood."
msgstr "Ответ от удаленного сайта не был понят."
#: ../../mod/dfrn_confirm.php:242
#: ../../mod/dfrn_confirm.php:246
msgid "Unexpected response from remote site: "
msgstr "Неожиданный ответ от удаленного сайта: "
#: ../../mod/dfrn_confirm.php:250
#: ../../mod/dfrn_confirm.php:254
msgid "Confirmation completed successfully."
msgstr "Подтверждение успешно завершено."
#: ../../mod/dfrn_confirm.php:252 ../../mod/dfrn_confirm.php:266
#: ../../mod/dfrn_confirm.php:273
#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
#: ../../mod/dfrn_confirm.php:277
msgid "Remote site reported: "
msgstr "Удаленный сайт сообщил: "
#: ../../mod/dfrn_confirm.php:264
#: ../../mod/dfrn_confirm.php:268
msgid "Temporary failure. Please wait and try again."
msgstr "Временные неудачи. Подождите и попробуйте еще раз."
#: ../../mod/dfrn_confirm.php:271
#: ../../mod/dfrn_confirm.php:275
msgid "Introduction failed or was revoked."
msgstr "Краткая информация ошибочна или была отозвана."
msgstr "Запрос ошибочен или был отозван."
#: ../../mod/dfrn_confirm.php:393
#: ../../mod/dfrn_confirm.php:420
msgid "Unable to set contact photo."
msgstr "Не удается установить фото контакта."
#: ../../mod/dfrn_confirm.php:436 ../../include/conversation.php:79
#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:608
#: ../../include/conversation.php:171
#, php-format
msgid "%1$s is now friends with %2$s"
msgstr "%1$s и %2$s теперь друзья"
#: ../../mod/dfrn_confirm.php:507
#: ../../mod/dfrn_confirm.php:562
#, php-format
msgid "No user record found for '%s' "
msgstr "Не найдено записи пользователя для '%s' "
#: ../../mod/dfrn_confirm.php:517
#: ../../mod/dfrn_confirm.php:572
msgid "Our site encryption key is apparently messed up."
msgstr "Наш ключ шифрования сайта, по-видимому, перепутался."
#: ../../mod/dfrn_confirm.php:528
#: ../../mod/dfrn_confirm.php:583
msgid "Empty site URL was provided or URL could not be decrypted by us."
msgstr ""
"Был предоставлен пустой URL сайта ​​или URL не может быть расшифрован нами."
msgstr "Был предоставлен пустой URL сайта ​​или URL не может быть расшифрован нами."
#: ../../mod/dfrn_confirm.php:549
#: ../../mod/dfrn_confirm.php:604
msgid "Contact record was not found for you on our site."
msgstr "Запись контакта не найдена для вас на нашем сайте."
#: ../../mod/dfrn_confirm.php:578
#: ../../mod/dfrn_confirm.php:618
#, php-format
msgid "Site public key not available in contact record for URL %s."
msgstr ""
#: ../../mod/dfrn_confirm.php:638
msgid ""
"The ID provided by your system is a duplicate on our system. It should work "
"if you try again."
msgstr ""
"ID, предложенный вашей системой, является дубликатом в нашей системе. Он "
"должен работать, если вы повторите попытку."
msgstr "ID, предложенный вашей системой, является дубликатом в нашей системе. Он должен работать, если вы повторите попытку."
#: ../../mod/dfrn_confirm.php:589
#: ../../mod/dfrn_confirm.php:649
msgid "Unable to set your contact credentials on our system."
msgstr "Не удалось установить ваши учетные данные контакта в нашей системе."
#: ../../mod/dfrn_confirm.php:642
#: ../../mod/dfrn_confirm.php:716
msgid "Unable to update your contact profile details on our system"
msgstr "Не удается обновить ваши контактные детали профиля в нашей системе"
#: ../../mod/dfrn_confirm.php:672
#: ../../mod/dfrn_confirm.php:750
#, php-format
msgid "Connection accepted at %s"
msgstr "Подключение принято в %s"
#: ../../addon/facebook/facebook.php:314
msgid "Facebook disabled"
msgstr "Facebook недоступен"
#: ../../mod/dfrn_confirm.php:799
#, php-format
msgid "%1$s has joined %2$s"
msgstr ""
#: ../../addon/facebook/facebook.php:319
#: ../../addon/fromgplus/fromgplus.php:29
msgid "Google+ Import Settings"
msgstr ""
#: ../../addon/fromgplus/fromgplus.php:32
msgid "Enable Google+ Import"
msgstr ""
#: ../../addon/fromgplus/fromgplus.php:35
msgid "Google Account ID"
msgstr ""
#: ../../addon/fromgplus/fromgplus.php:55
msgid "Google+ Import Settings saved."
msgstr ""
#: ../../addon/facebook/facebook.php:523
msgid "Facebook disabled"
msgstr "Facebook отключен"
#: ../../addon/facebook/facebook.php:528
msgid "Updating contacts"
msgstr "Обновление контактов"
#: ../../addon/facebook/facebook.php:328
#: ../../addon/facebook/facebook.php:551 ../../addon/fbpost/fbpost.php:192
msgid "Facebook API key is missing."
msgstr "Отсутствует ключ Facebook API."
#: ../../addon/facebook/facebook.php:335
#: ../../addon/facebook/facebook.php:558
msgid "Facebook Connect"
msgstr "Facebook Connect"
msgstr "Facebook подключение"
#: ../../addon/facebook/facebook.php:341
#: ../../addon/facebook/facebook.php:564
msgid "Install Facebook connector for this account."
msgstr "Установить Facebook Connector для этого аккаунта."
#: ../../addon/facebook/facebook.php:348
#: ../../addon/facebook/facebook.php:571
msgid "Remove Facebook connector"
msgstr "Удалить Facebook Connector"
#: ../../addon/facebook/facebook.php:354
#: ../../addon/facebook/facebook.php:576 ../../addon/fbpost/fbpost.php:217
msgid ""
"Re-authenticate [This is necessary whenever your Facebook password is "
"changed.]"
msgstr ""
#: ../../addon/facebook/facebook.php:583 ../../addon/fbpost/fbpost.php:224
msgid "Post to Facebook by default"
msgstr "Отправлять на Facebook по умолчанию"
#: ../../addon/facebook/facebook.php:358
msgid "Link all your Facebook friends and conversations"
msgstr "Привязать все ваши разговоры и друзей на Facebook"
#: ../../addon/facebook/facebook.php:363
msgid "Warning: Your Facebook privacy settings can not be imported."
msgstr ""
"Внимание: Ваши установки безопасности на Facebook не могут быть "
"импортированы."
#: ../../addon/facebook/facebook.php:364
#: ../../addon/facebook/facebook.php:589
msgid ""
"Linked Facebook items <strong>may</strong> be publicly visible, depending on"
" your privacy settings for this website/account."
"Facebook friend linking has been disabled on this site. The following "
"settings will have no effect."
msgstr ""
#: ../../addon/facebook/facebook.php:419
msgid "Facebook"
msgstr "Facebook"
#: ../../addon/facebook/facebook.php:593
msgid ""
"Facebook friend linking has been disabled on this site. If you disable it, "
"you will be unable to re-enable it."
msgstr ""
#: ../../addon/facebook/facebook.php:420
#: ../../addon/facebook/facebook.php:596
msgid "Link all your Facebook friends and conversations on this website"
msgstr ""
#: ../../addon/facebook/facebook.php:598
msgid ""
"Facebook conversations consist of your <em>profile wall</em> and your friend"
" <em>stream</em>."
msgstr ""
#: ../../addon/facebook/facebook.php:599
msgid "On this website, your Facebook friend stream is only visible to you."
msgstr ""
#: ../../addon/facebook/facebook.php:600
msgid ""
"The following settings determine the privacy of your Facebook profile wall "
"on this website."
msgstr ""
#: ../../addon/facebook/facebook.php:604
msgid ""
"On this website your Facebook profile wall conversations will only be "
"visible to you"
msgstr ""
#: ../../addon/facebook/facebook.php:609
msgid "Do not import your Facebook profile wall conversations"
msgstr "Не импортировать Facebook разговоров с Вашей страницы"
#: ../../addon/facebook/facebook.php:611
msgid ""
"If you choose to link conversations and leave both of these boxes unchecked,"
" your Facebook profile wall will be merged with your profile wall on this "
"website and your privacy settings on this website will be used to determine "
"who may see the conversations."
msgstr ""
#: ../../addon/facebook/facebook.php:616
msgid "Comma separated applications to ignore"
msgstr "Игнорировать приложения (список через запятую)"
#: ../../addon/facebook/facebook.php:700
msgid "Problems with Facebook Real-Time Updates"
msgstr ""
#: ../../addon/facebook/facebook.php:729
msgid "Facebook Connector Settings"
msgstr "Настройки Facebook Connector"
msgstr "Настройки подключения Facebook"
#: ../../addon/facebook/facebook.php:434
#: ../../addon/facebook/facebook.php:744 ../../addon/fbpost/fbpost.php:255
msgid "Facebook API Key"
msgstr "Facebook API Key"
#: ../../addon/facebook/facebook.php:754 ../../addon/fbpost/fbpost.php:262
msgid ""
"Error: it appears that you have specified the App-ID and -Secret in your "
".htconfig.php file. As long as they are specified there, they cannot be set "
"using this form.<br><br>"
msgstr ""
#: ../../addon/facebook/facebook.php:759
msgid ""
"Error: the given API Key seems to be incorrect (the application access token"
" could not be retrieved)."
msgstr ""
#: ../../addon/facebook/facebook.php:761
msgid "The given API Key seems to work correctly."
msgstr ""
#: ../../addon/facebook/facebook.php:763
msgid ""
"The correctness of the API Key could not be detected. Something strange's "
"going on."
msgstr ""
#: ../../addon/facebook/facebook.php:766 ../../addon/fbpost/fbpost.php:264
msgid "App-ID / API-Key"
msgstr "App-ID / API-Key"
#: ../../addon/facebook/facebook.php:767 ../../addon/fbpost/fbpost.php:265
msgid "Application secret"
msgstr "Секрет приложения"
#: ../../addon/facebook/facebook.php:768
#, php-format
msgid "Polling Interval in minutes (minimum %1$s minutes)"
msgstr ""
#: ../../addon/facebook/facebook.php:769
msgid ""
"Synchronize comments (no comments on Facebook are missed, at the cost of "
"increased system load)"
msgstr ""
#: ../../addon/facebook/facebook.php:773
msgid "Real-Time Updates"
msgstr ""
#: ../../addon/facebook/facebook.php:777
msgid "Real-Time Updates are activated."
msgstr ""
#: ../../addon/facebook/facebook.php:778
msgid "Deactivate Real-Time Updates"
msgstr "Отключить Real-Time обновления"
#: ../../addon/facebook/facebook.php:780
msgid "Real-Time Updates not activated."
msgstr ""
#: ../../addon/facebook/facebook.php:780
msgid "Activate Real-Time Updates"
msgstr "Активировать Real-Time обновления"
#: ../../addon/facebook/facebook.php:799 ../../addon/fbpost/fbpost.php:282
#: ../../addon/dav/friendica/layout.fnk.php:361
msgid "The new values have been saved."
msgstr ""
#: ../../addon/facebook/facebook.php:823 ../../addon/fbpost/fbpost.php:301
msgid "Post to Facebook"
msgstr "Отправить на Facebook"
#: ../../addon/facebook/facebook.php:507
#: ../../addon/facebook/facebook.php:921 ../../addon/fbpost/fbpost.php:399
msgid ""
"Post to Facebook cancelled because of multi-network access permission "
"conflict."
msgstr "Отправка на Facebook отменена из-за конфликта разрешений доступа разных сетей."
#: ../../addon/facebook/facebook.php:1149 ../../addon/fbpost/fbpost.php:610
msgid "View on Friendica"
msgstr ""
"Отправка на Facebook отменена из-за конфликта разрешений доступа разных "
"сетей."
#: ../../addon/facebook/facebook.php:580
msgid "Image: "
msgstr "Изображение: "
#: ../../addon/facebook/facebook.php:656
msgid "View on Friendika"
msgstr "Просмотреть на Friendika"
#: ../../addon/facebook/facebook.php:687
#: ../../addon/facebook/facebook.php:1182 ../../addon/fbpost/fbpost.php:643
msgid "Facebook post failed. Queued for retry."
msgstr "Ошибка отправки сообщения на Facebook. В очереди на еще одну попытку."
#: ../../addon/facebook/facebook.php:1222 ../../addon/fbpost/fbpost.php:683
msgid "Your Facebook connection became invalid. Please Re-authenticate."
msgstr ""
#: ../../addon/widgets/widgets.php:53
#: ../../addon/facebook/facebook.php:1223 ../../addon/fbpost/fbpost.php:684
msgid "Facebook connection became invalid"
msgstr "Facebook подключение не удалось"
#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:685
#, php-format
msgid ""
"Hi %1$s,\n"
"\n"
"The connection between your accounts on %2$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3$sre-authenticate the Facebook-connector%4$s."
msgstr ""
#: ../../addon/snautofollow/snautofollow.php:32
msgid "StatusNet AutoFollow settings updated."
msgstr ""
#: ../../addon/snautofollow/snautofollow.php:56
msgid "StatusNet AutoFollow Settings"
msgstr ""
#: ../../addon/snautofollow/snautofollow.php:58
msgid "Automatically follow any StatusNet followers/mentioners"
msgstr ""
#: ../../addon/bg/bg.php:51
msgid "Bg settings updated."
msgstr ""
#: ../../addon/bg/bg.php:82
msgid "Bg Settings"
msgstr ""
#: ../../addon/bg/bg.php:84 ../../addon/numfriends/numfriends.php:79
msgid "How many contacts to display on profile sidebar"
msgstr ""
#: ../../addon/privacy_image_cache/privacy_image_cache.php:260
msgid "Lifetime of the cache (in hours)"
msgstr ""
#: ../../addon/privacy_image_cache/privacy_image_cache.php:265
msgid "Cache Statistics"
msgstr ""
#: ../../addon/privacy_image_cache/privacy_image_cache.php:268
msgid "Number of items"
msgstr ""
#: ../../addon/privacy_image_cache/privacy_image_cache.php:270
msgid "Size of the cache"
msgstr ""
#: ../../addon/privacy_image_cache/privacy_image_cache.php:272
msgid "Delete the whole cache"
msgstr ""
#: ../../addon/fbpost/fbpost.php:172
msgid "Facebook Post disabled"
msgstr ""
#: ../../addon/fbpost/fbpost.php:199
msgid "Facebook Post"
msgstr ""
#: ../../addon/fbpost/fbpost.php:205
msgid "Install Facebook Post connector for this account."
msgstr ""
#: ../../addon/fbpost/fbpost.php:212
msgid "Remove Facebook Post connector"
msgstr ""
#: ../../addon/fbpost/fbpost.php:240
msgid "Facebook Post Settings"
msgstr ""
#: ../../addon/widgets/widget_like.php:58
#, php-format
msgid "%d person likes this"
msgid_plural "%d people like this"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
#: ../../addon/widgets/widget_like.php:61
#, php-format
msgid "%d person doesn't like this"
msgid_plural "%d people don't like this"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
#: ../../addon/widgets/widget_friendheader.php:40
msgid "Get added to this list!"
msgstr ""
#: ../../addon/widgets/widgets.php:56
msgid "Generate new key"
msgstr "Сгенерировать новый ключ"
#: ../../addon/widgets/widgets.php:56
#: ../../addon/widgets/widgets.php:59
msgid "Widgets key"
msgstr ""
msgstr "Ключ виджетов"
#: ../../addon/widgets/widgets.php:58
#: ../../addon/widgets/widgets.php:61
msgid "Widgets available"
msgstr "Виджеты доступны"
#: ../../addon/widgets/widget_friends.php:40
msgid "Connect on Friendica!"
msgstr "Подключены к Friendica!"
#: ../../addon/morepokes/morepokes.php:19
msgid "bitchslap"
msgstr ""
#: ../../addon/widgets/widget_friends.php:30
msgid "Connect on Friendika!"
msgstr "Подключись на Friendika!"
#: ../../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 "do something obscenely biological to"
msgstr ""
#: ../../addon/morepokes/morepokes.php:21
msgid "did something obscenely biological to"
msgstr ""
#: ../../addon/morepokes/morepokes.php:22
msgid "point out the poke feature to"
msgstr ""
#: ../../addon/morepokes/morepokes.php:22
msgid "pointed out the poke feature to"
msgstr ""
#: ../../addon/morepokes/morepokes.php:23
msgid "declare undying love for"
msgstr ""
#: ../../addon/morepokes/morepokes.php:23
msgid "declared undying love for"
msgstr ""
#: ../../addon/morepokes/morepokes.php:24
msgid "patent"
msgstr ""
#: ../../addon/morepokes/morepokes.php:24
msgid "patented"
msgstr ""
#: ../../addon/morepokes/morepokes.php:25
msgid "stroke beard"
msgstr ""
#: ../../addon/morepokes/morepokes.php:25
msgid "stroked their beard at"
msgstr ""
#: ../../addon/morepokes/morepokes.php:26
msgid ""
"bemoan the declining standards of modern secondary and tertiary education to"
msgstr ""
#: ../../addon/morepokes/morepokes.php:26
msgid ""
"bemoans the declining standards of modern secondary and tertiary education "
"to"
msgstr ""
#: ../../addon/morepokes/morepokes.php:27
msgid "hug"
msgstr ""
#: ../../addon/morepokes/morepokes.php:27
msgid "hugged"
msgstr ""
#: ../../addon/morepokes/morepokes.php:28
msgid "kiss"
msgstr ""
#: ../../addon/morepokes/morepokes.php:28
msgid "kissed"
msgstr ""
#: ../../addon/morepokes/morepokes.php:29
msgid "raise eyebrows at"
msgstr ""
#: ../../addon/morepokes/morepokes.php:29
msgid "raised their eyebrows at"
msgstr ""
#: ../../addon/morepokes/morepokes.php:30
msgid "insult"
msgstr ""
#: ../../addon/morepokes/morepokes.php:30
msgid "insulted"
msgstr ""
#: ../../addon/morepokes/morepokes.php:31
msgid "praise"
msgstr ""
#: ../../addon/morepokes/morepokes.php:31
msgid "praised"
msgstr ""
#: ../../addon/morepokes/morepokes.php:32
msgid "be dubious of"
msgstr ""
#: ../../addon/morepokes/morepokes.php:32
msgid "was dubious of"
msgstr ""
#: ../../addon/morepokes/morepokes.php:33
msgid "eat"
msgstr ""
#: ../../addon/morepokes/morepokes.php:33
msgid "ate"
msgstr ""
#: ../../addon/morepokes/morepokes.php:34
msgid "giggle and fawn at"
msgstr ""
#: ../../addon/morepokes/morepokes.php:34
msgid "giggled and fawned at"
msgstr ""
#: ../../addon/morepokes/morepokes.php:35
msgid "doubt"
msgstr ""
#: ../../addon/morepokes/morepokes.php:35
msgid "doubted"
msgstr ""
#: ../../addon/morepokes/morepokes.php:36
msgid "glare"
msgstr ""
#: ../../addon/morepokes/morepokes.php:36
msgid "glared at"
msgstr ""
#: ../../addon/yourls/yourls.php:55
msgid "YourLS Settings"
msgstr ""
#: ../../addon/yourls/yourls.php:57
msgid "URL: http://"
msgstr "URL: http://"
#: ../../addon/yourls/yourls.php:62
msgid "Username:"
msgstr "Имя:"
#: ../../addon/yourls/yourls.php:67
msgid "Password:"
msgstr "Пароль:"
#: ../../addon/yourls/yourls.php:72
msgid "Use SSL "
msgstr "Использовать SSL"
#: ../../addon/yourls/yourls.php:92
msgid "yourls Settings saved."
msgstr "Настройки сохранены."
#: ../../addon/ljpost/ljpost.php:39
msgid "Post to LiveJournal"
msgstr ""
#: ../../addon/ljpost/ljpost.php:70
msgid "LiveJournal Post Settings"
msgstr ""
#: ../../addon/ljpost/ljpost.php:72
msgid "Enable LiveJournal Post Plugin"
msgstr "Включить LiveJournal плагин сообщений"
#: ../../addon/ljpost/ljpost.php:77
msgid "LiveJournal username"
msgstr ""
#: ../../addon/ljpost/ljpost.php:82
msgid "LiveJournal password"
msgstr ""
#: ../../addon/ljpost/ljpost.php:87
msgid "Post to LiveJournal by default"
msgstr ""
#: ../../addon/nsfw/nsfw.php:78
msgid "Not Safe For Work (General Purpose Content Filter) settings"
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:81
msgid "Enable Content filter"
msgstr "Включить фильтр содержимого"
#: ../../addon/nsfw/nsfw.php:84
msgid "Comma separated list of keywords to hide"
msgstr "ключевые слова, которые скрыть (список через запятую)"
#: ../../addon/nsfw/nsfw.php:89
msgid "Use /expression/ to provide regular expressions"
msgstr ""
#: ../../addon/nsfw/nsfw.php:105
msgid "NSFW Settings saved."
msgstr "NSFW Настройки сохранены."
#: ../../addon/nsfw/nsfw.php:157
#, php-format
msgid "%s - Click to open/close"
msgstr "%s - Нажмите для открытия / закрытия"
#: ../../addon/page/page.php:61 ../../addon/page/page.php:91
#: ../../addon/forumlist/forumlist.php:55
msgid "Forums"
msgstr "Форумы"
#: ../../addon/page/page.php:129 ../../addon/forumlist/forumlist.php:89
msgid "Forums:"
msgstr ""
#: ../../addon/page/page.php:165
msgid "Page settings updated."
msgstr ""
#: ../../addon/page/page.php:194
msgid "Page Settings"
msgstr ""
#: ../../addon/page/page.php:196
msgid "How many forums to display on sidebar without paging"
msgstr ""
#: ../../addon/page/page.php:199
msgid "Randomise Page/Forum list"
msgstr ""
#: ../../addon/page/page.php:202
msgid "Show pages/forums on profile page"
msgstr ""
#: ../../addon/planets/planets.php:150
msgid "Planets Settings"
msgstr ""
#: ../../addon/planets/planets.php:152
msgid "Enable Planets Plugin"
msgstr ""
#: ../../addon/communityhome/communityhome.php:28
#: ../../addon/communityhome/communityhome.php:34
#: ../../addon/communityhome/twillingham/communityhome.php:28
#: ../../addon/communityhome/twillingham/communityhome.php:34
#: ../../include/nav.php:64 ../../boot.php:912
msgid "Login"
msgstr "Вход"
#: ../../addon/communityhome/communityhome.php:29
#: ../../addon/communityhome/twillingham/communityhome.php:29
msgid "OpenID"
msgstr "OpenID"
#: ../../addon/communityhome/communityhome.php:38
#: ../../addon/communityhome/twillingham/communityhome.php:38
msgid "Latest users"
msgstr ""
#: ../../addon/communityhome/communityhome.php:81
#: ../../addon/communityhome/twillingham/communityhome.php:81
msgid "Most active users"
msgstr "Самые активные пользователи"
#: ../../addon/communityhome/communityhome.php:98
msgid "Latest photos"
msgstr ""
#: ../../addon/communityhome/communityhome.php:133
msgid "Latest likes"
msgstr ""
#: ../../addon/communityhome/communityhome.php:155
#: ../../view/theme/diabook/theme.php:562 ../../include/text.php:1437
#: ../../include/conversation.php:117 ../../include/conversation.php:245
msgid "event"
msgstr "мероприятие"
#: ../../addon/dav/common/wdcal_backend.inc.php:92
#: ../../addon/dav/common/wdcal_backend.inc.php:166
#: ../../addon/dav/common/wdcal_backend.inc.php:178
#: ../../addon/dav/common/wdcal_backend.inc.php:206
#: ../../addon/dav/common/wdcal_backend.inc.php:214
#: ../../addon/dav/common/wdcal_backend.inc.php:229
msgid "No access"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:30
#: ../../addon/dav/common/wdcal_edit.inc.php:738
msgid "Could not open component for editing"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:140
#: ../../addon/dav/friendica/layout.fnk.php:143
#: ../../addon/dav/friendica/layout.fnk.php:422
msgid "Go back to the calendar"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:144
msgid "Event data"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:146
#: ../../addon/dav/friendica/main.php:239
msgid "Calendar"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:163
msgid "Special color"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:169
msgid "Subject"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:173
msgid "Starts"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:178
msgid "Ends"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:185
msgid "Description"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:188
msgid "Recurrence"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:190
msgid "Frequency"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:194
#: ../../include/contact_selectors.php:59
msgid "Daily"
msgstr "Ежедневно"
#: ../../addon/dav/common/wdcal_edit.inc.php:197
#: ../../include/contact_selectors.php:60
msgid "Weekly"
msgstr "Еженедельно"
#: ../../addon/dav/common/wdcal_edit.inc.php:200
#: ../../include/contact_selectors.php:61
msgid "Monthly"
msgstr "Ежемесячно"
#: ../../addon/dav/common/wdcal_edit.inc.php:203
msgid "Yearly"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:214
#: ../../include/datetime.php:288
msgid "days"
msgstr "дней"
#: ../../addon/dav/common/wdcal_edit.inc.php:215
#: ../../include/datetime.php:287
msgid "weeks"
msgstr "недель"
#: ../../addon/dav/common/wdcal_edit.inc.php:216
#: ../../include/datetime.php:286
msgid "months"
msgstr "мес."
#: ../../addon/dav/common/wdcal_edit.inc.php:217
#: ../../include/datetime.php:285
msgid "years"
msgstr "лет"
#: ../../addon/dav/common/wdcal_edit.inc.php:218
msgid "Interval"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:218
msgid "All %select% %time%"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:222
#: ../../addon/dav/common/wdcal_edit.inc.php:260
#: ../../addon/dav/common/wdcal_edit.inc.php:481
msgid "Days"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:231
#: ../../addon/dav/common/wdcal_edit.inc.php:254
#: ../../addon/dav/common/wdcal_edit.inc.php:270
#: ../../addon/dav/common/wdcal_edit.inc.php:293
#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:917
msgid "Sunday"
msgstr "Воскресенье"
#: ../../addon/dav/common/wdcal_edit.inc.php:235
#: ../../addon/dav/common/wdcal_edit.inc.php:274
#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:917
msgid "Monday"
msgstr "Понедельник"
#: ../../addon/dav/common/wdcal_edit.inc.php:238
#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:917
msgid "Tuesday"
msgstr "Вторник"
#: ../../addon/dav/common/wdcal_edit.inc.php:241
#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:917
msgid "Wednesday"
msgstr "Среда"
#: ../../addon/dav/common/wdcal_edit.inc.php:244
#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:917
msgid "Thursday"
msgstr "Четверг"
#: ../../addon/dav/common/wdcal_edit.inc.php:247
#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:917
msgid "Friday"
msgstr "Пятница"
#: ../../addon/dav/common/wdcal_edit.inc.php:250
#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:917
msgid "Saturday"
msgstr "Суббота"
#: ../../addon/dav/common/wdcal_edit.inc.php:297
msgid "First day of week:"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:350
#: ../../addon/dav/common/wdcal_edit.inc.php:373
msgid "Day of month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:354
msgid "#num#th of each month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:357
msgid "#num#th-last of each month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:360
msgid "#num#th #wkday# of each month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:363
msgid "#num#th-last #wkday# of each month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:372
#: ../../addon/dav/friendica/layout.fnk.php:255
msgid "Month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:377
msgid "#num#th of the given month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:380
msgid "#num#th-last of the given month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:383
msgid "#num#th #wkday# of the given month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:386
msgid "#num#th-last #wkday# of the given month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:413
msgid "Repeat until"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:417
msgid "Infinite"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:420
msgid "Until the following date"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:423
msgid "Number of times"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:429
msgid "Exceptions"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:432
msgid "none"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:449
msgid "Notification"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:466
msgid "Notify by"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:469
msgid "E-Mail"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:470
msgid "On Friendica / Display"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:474
msgid "Time"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:478
msgid "Hours"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:479
msgid "Minutes"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:480
msgid "Seconds"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:482
msgid "Weeks"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:485
msgid "before the"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:486
msgid "start of the event"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:487
msgid "end of the event"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:492
msgid "Add a notification"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:687
msgid "The event #name# will start at #date"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:696
msgid "#name# is about to begin."
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:769
msgid "Saved"
msgstr ""
#: ../../addon/dav/common/wdcal_configuration.php:148
msgid "U.S. Time Format (mm/dd/YYYY)"
msgstr ""
#: ../../addon/dav/common/wdcal_configuration.php:243
msgid "German Time Format (dd.mm.YYYY)"
msgstr ""
#: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39
msgid "Private Events"
msgstr ""
#: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46
msgid "Private Addressbooks"
msgstr ""
#: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
msgid "Friendica-Native events"
msgstr ""
#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
msgid "Friendica-Contacts"
msgstr ""
#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
msgid "Your Friendica-Contacts"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:99
#: ../../addon/dav/friendica/layout.fnk.php:136
msgid ""
"Something went wrong when trying to import the file. Sorry. Maybe some "
"events were imported anyway."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:131
msgid "Something went wrong when trying to import the file. Sorry."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:134
msgid "The ICS-File has been imported."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:138
msgid "No file was uploaded."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:147
msgid "Import a ICS-file"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:150
msgid "ICS-File"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:151
msgid "Overwrite all #num# existing events"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:228
msgid "New event"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:232
msgid "Today"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:241
msgid "Day"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:248
msgid "Week"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:260
msgid "Reload"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:271
msgid "Date"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:313
msgid "Error"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:380
msgid "The calendar has been updated."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:393
msgid "The new calendar has been created."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:417
msgid "The calendar has been deleted."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:424
msgid "Calendar Settings"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:430
msgid "Date format"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:439
msgid "Time zone"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:445
msgid "Calendars"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:487
msgid "Create a new calendar"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:496
msgid "Limitations"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:500
#: ../../addon/libravatar/libravatar.php:82
msgid "Warning"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:504
msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:511
msgid "Synchronizing this calendar with the iPhone"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:522
msgid "Synchronizing your Friendica-Contacts with the iPhone"
msgstr ""
#: ../../addon/dav/friendica/main.php:202
msgid ""
"The current version of this plugin has not been set up correctly. Please "
"contact the system administrator of your installation of friendica to fix "
"this."
msgstr ""
#: ../../addon/dav/friendica/main.php:242
msgid "Extended calendar with CalDAV-support"
msgstr ""
#: ../../addon/dav/friendica/main.php:279
#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:464
#: ../../include/enotify.php:28 ../../include/notifier.php:710
msgid "noreply"
msgstr "без ответа"
#: ../../addon/dav/friendica/main.php:282
msgid "Notification: "
msgstr ""
#: ../../addon/dav/friendica/main.php:309
msgid "The database tables have been installed."
msgstr ""
#: ../../addon/dav/friendica/main.php:310
msgid "An error occurred during the installation."
msgstr ""
#: ../../addon/dav/friendica/main.php:316
msgid "The database tables have been updated."
msgstr ""
#: ../../addon/dav/friendica/main.php:317
msgid "An error occurred during the update."
msgstr ""
#: ../../addon/dav/friendica/main.php:333
msgid "No system-wide settings yet."
msgstr ""
#: ../../addon/dav/friendica/main.php:336
msgid "Database status"
msgstr ""
#: ../../addon/dav/friendica/main.php:339
msgid "Installed"
msgstr ""
#: ../../addon/dav/friendica/main.php:343
msgid "Upgrade needed"
msgstr ""
#: ../../addon/dav/friendica/main.php:343
msgid ""
"Please back up all calendar data (the tables beginning with dav_*) before "
"proceeding. While all calendar events <i>should</i> be converted to the new "
"database structure, it's always safe to have a backup. Below, you can have a"
" look at the database-queries that will be made when pressing the "
"'update'-button."
msgstr ""
#: ../../addon/dav/friendica/main.php:343
msgid "Upgrade"
msgstr ""
#: ../../addon/dav/friendica/main.php:346
msgid "Not installed"
msgstr ""
#: ../../addon/dav/friendica/main.php:346
msgid "Install"
msgstr ""
#: ../../addon/dav/friendica/main.php:350
msgid "Unknown"
msgstr ""
#: ../../addon/dav/friendica/main.php:350
msgid ""
"Something really went wrong. I cannot recover from this state automatically,"
" sorry. Please go to the database backend, back up the data, and delete all "
"tables beginning with 'dav_' manually. Afterwards, this installation routine"
" should be able to reinitialize the tables automatically."
msgstr ""
#: ../../addon/dav/friendica/main.php:355
msgid "Troubleshooting"
msgstr ""
#: ../../addon/dav/friendica/main.php:356
msgid "Manual creation of the database tables:"
msgstr ""
#: ../../addon/dav/friendica/main.php:357
msgid "Show SQL-statements"
msgstr ""
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206
msgid "Private Calendar"
msgstr ""
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207
msgid "Friendica Events: Mine"
msgstr ""
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208
msgid "Friendica Events: Contacts"
msgstr ""
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248
msgid "Private Addresses"
msgstr ""
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249
msgid "Friendica Contacts"
msgstr ""
#: ../../addon/uhremotestorage/uhremotestorage.php:84
#, php-format
msgid ""
"Allow to use your friendica id (%s) to connecto to external unhosted-enabled"
" storage (like ownCloud). See <a "
"href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage"
" WebFinger</a>"
msgstr ""
#: ../../addon/uhremotestorage/uhremotestorage.php:85
msgid "Template URL (with {category})"
msgstr ""
#: ../../addon/uhremotestorage/uhremotestorage.php:86
msgid "OAuth end-point"
msgstr ""
#: ../../addon/uhremotestorage/uhremotestorage.php:87
msgid "Api"
msgstr "Api"
#: ../../addon/membersince/membersince.php:18
msgid "Member since:"
msgstr "Зарегистрирован с:"
#: ../../addon/tictac/tictac.php:20
msgid "Three Dimensional Tic-Tac-Toe"
@ -3328,25 +5932,19 @@ msgstr "Новая игра с гандикапом"
msgid ""
"Three dimensional tic-tac-toe is just like the traditional game except that "
"it is played on multiple levels simultaneously. "
msgstr ""
"Трехмерная игра в крестики-нолики точно такая же, как традиционная игра, за "
"исключением того, что она играется на нескольких уровнях одновременно."
msgstr "Трехмерная игра в крестики-нолики точно такая же, как традиционная игра, за исключением того, что она играется на нескольких уровнях одновременно."
#: ../../addon/tictac/tictac.php:61
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 ""
"В этом случае существуют три уровня. Вы выиграете, поставив три в ряд на "
"любом уровне, а также вверх, вниз и по диагонали на разных уровнях."
msgstr "В этом случае существуют три уровня. Вы выиграете, поставив три в ряд на любом уровне, а также вверх, вниз и по диагонали на разных уровнях."
#: ../../addon/tictac/tictac.php:63
msgid ""
"The handicap game disables the center position on the middle level because "
"the player claiming this square often has an unfair advantage."
msgstr ""
"Игра с гандикапом отключает центральное положение на среднем уровне, потому "
"что игрок, занимающий эту площадь, часто имеет несправедливое преимущество."
msgstr "Игра с гандикапом отключает центральное положение на среднем уровне, потому что игрок, занимающий эту площадь, часто имеет несправедливое преимущество."
#: ../../addon/tictac/tictac.php:182
msgid "You go first..."
@ -3368,13 +5966,120 @@ msgstr "Игра \"Кошка\"!"
msgid "I won!"
msgstr "Я выиграл!"
#: ../../addon/randplace/randplace.php:170
#: ../../addon/randplace/randplace.php:169
msgid "Randplace Settings"
msgstr "Настройки Случайного места"
#: ../../addon/randplace/randplace.php:172
#: ../../addon/randplace/randplace.php:171
msgid "Enable Randplace Plugin"
msgstr "Включить плагин Случайное место"
msgstr "Включить Randplace плагин"
#: ../../addon/dwpost/dwpost.php:39
msgid "Post to Dreamwidth"
msgstr ""
#: ../../addon/dwpost/dwpost.php:70
msgid "Dreamwidth Post Settings"
msgstr "Dreamwidth настройки сообщений"
#: ../../addon/dwpost/dwpost.php:72
msgid "Enable dreamwidth Post Plugin"
msgstr "Включить dreamwidth плагин сообщений"
#: ../../addon/dwpost/dwpost.php:77
msgid "dreamwidth username"
msgstr "dreamwidth имя пользователя"
#: ../../addon/dwpost/dwpost.php:82
msgid "dreamwidth password"
msgstr "dreamwidth пароль"
#: ../../addon/dwpost/dwpost.php:87
msgid "Post to dreamwidth by default"
msgstr ""
#: ../../addon/drpost/drpost.php:35
msgid "Post to Drupal"
msgstr ""
#: ../../addon/drpost/drpost.php:72
msgid "Drupal Post Settings"
msgstr ""
#: ../../addon/drpost/drpost.php:74
msgid "Enable Drupal Post Plugin"
msgstr "Включить Drupal плагин сообщений"
#: ../../addon/drpost/drpost.php:79
msgid "Drupal username"
msgstr "Drupal имя пользователя"
#: ../../addon/drpost/drpost.php:84
msgid "Drupal password"
msgstr "Drupal пароль"
#: ../../addon/drpost/drpost.php:89
msgid "Post Type - article,page,or blog"
msgstr ""
#: ../../addon/drpost/drpost.php:94
msgid "Drupal site URL"
msgstr "Drupal site URL"
#: ../../addon/drpost/drpost.php:99
msgid "Drupal site uses clean URLS"
msgstr ""
#: ../../addon/drpost/drpost.php:104
msgid "Post to Drupal by default"
msgstr ""
#: ../../addon/drpost/drpost.php:184 ../../addon/wppost/wppost.php:201
#: ../../addon/blogger/blogger.php:172 ../../addon/posterous/posterous.php:189
msgid "Post from Friendica"
msgstr "Сообщение от Friendica"
#: ../../addon/startpage/startpage.php:83
msgid "Startpage Settings"
msgstr ""
#: ../../addon/startpage/startpage.php:85
msgid "Home page to load after login - leave blank for profile wall"
msgstr ""
#: ../../addon/startpage/startpage.php:88
msgid "Examples: &quot;network&quot; or &quot;notifications/system&quot;"
msgstr ""
#: ../../addon/geonames/geonames.php:143
msgid "Geonames settings updated."
msgstr ""
#: ../../addon/geonames/geonames.php:179
msgid "Geonames Settings"
msgstr ""
#: ../../addon/geonames/geonames.php:181
msgid "Enable Geonames Plugin"
msgstr "Включить Geonames плагин"
#: ../../addon/public_server/public_server.php:126
#: ../../addon/testdrive/testdrive.php:94
#, php-format
msgid "Your account on %s will expire in a few days."
msgstr ""
#: ../../addon/public_server/public_server.php:127
msgid "Your Friendica account is about to expire."
msgstr ""
#: ../../addon/public_server/public_server.php:128
#, php-format
msgid ""
"Hi %1$s,\n"
"\n"
"Your account on %2$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"
msgstr ""
#: ../../addon/js_upload/js_upload.php:43
msgid "Upload a file"
@ -3382,359 +6087,1204 @@ msgstr "Загрузить файл"
#: ../../addon/js_upload/js_upload.php:44
msgid "Drop files here to upload"
msgstr "Перетащите файлы здесь для загрузки"
msgstr "Перетащите файлы сюда для загрузки"
#: ../../addon/js_upload/js_upload.php:46
msgid "Failed"
msgstr "Ошибка"
#: ../../addon/js_upload/js_upload.php:292
#: ../../addon/js_upload/js_upload.php:297
msgid "No files were uploaded."
msgstr "Нет загруженных файлов."
#: ../../addon/js_upload/js_upload.php:298
#: ../../addon/js_upload/js_upload.php:303
msgid "Uploaded file is empty"
msgstr "Загруженный файл пустой"
#: ../../addon/js_upload/js_upload.php:321
#: ../../addon/js_upload/js_upload.php:326
msgid "File has an invalid extension, it should be one of "
msgstr ""
"Файл имеет недопустимое расширение, оно должно быть одним из следующих "
msgstr "Файл имеет недопустимое расширение, оно должно быть одним из следующих "
#: ../../addon/js_upload/js_upload.php:332
#: ../../addon/js_upload/js_upload.php:337
msgid "Upload was cancelled, or server error encountered"
msgstr "Загрузка была отменена, или произошла ошибка сервера"
#: ../../addon/impressum/impressum.php:25
#: ../../addon/oembed.old/oembed.php:30
msgid "OEmbed settings updated"
msgstr "OEmbed настройки обновлены"
#: ../../addon/oembed.old/oembed.php:43
msgid "Use OEmbed for YouTube videos"
msgstr "Использовать OEmbed для видео YouTube"
#: ../../addon/oembed.old/oembed.php:71
msgid "URL to embed:"
msgstr "URL для встраивания:"
#: ../../addon/forumlist/forumlist.php:58
msgid "show/hide"
msgstr ""
#: ../../addon/forumlist/forumlist.php:72
msgid "No forum subscriptions"
msgstr ""
#: ../../addon/forumlist/forumlist.php:125
msgid "Forumlist settings updated."
msgstr ""
#: ../../addon/forumlist/forumlist.php:150
msgid "Forumlist Settings"
msgstr ""
#: ../../addon/forumlist/forumlist.php:152
msgid "Randomise forum list"
msgstr ""
#: ../../addon/forumlist/forumlist.php:155
msgid "Show forums on profile page"
msgstr ""
#: ../../addon/impressum/impressum.php:37
msgid "Impressum"
msgstr ""
msgstr "Impressum"
#: ../../addon/impressum/impressum.php:38
#: ../../addon/impressum/impressum.php:40
#: ../../addon/impressum/impressum.php:70
#: ../../addon/impressum/impressum.php:50
#: ../../addon/impressum/impressum.php:52
#: ../../addon/impressum/impressum.php:84
msgid "Site Owner"
msgstr ""
msgstr "Владелец сайта"
#: ../../addon/impressum/impressum.php:38
#: ../../addon/impressum/impressum.php:74
#: ../../addon/impressum/impressum.php:50
#: ../../addon/impressum/impressum.php:88
msgid "Email Address"
msgstr ""
msgstr "Адрес электронной почты"
#: ../../addon/impressum/impressum.php:43
#: ../../addon/impressum/impressum.php:72
#: ../../addon/impressum/impressum.php:55
#: ../../addon/impressum/impressum.php:86
msgid "Postal Address"
msgstr ""
msgstr "Почтовый адрес"
#: ../../addon/impressum/impressum.php:49
#: ../../addon/impressum/impressum.php:61
msgid ""
"The impressum addon needs to be configured!<br />Please add at least the "
"<tt>owner</tt> variable to your config file. For other variables please "
"refer to the README file of the addon."
msgstr "Расширение Impressum должно быть настроено!<br /> Пожалуйста, добавьте по крайней мере переменную <tt>владельца</tt> в ваш конфигурационный файл. Описание других переменных можно найти в файле README для расширения."
#: ../../addon/impressum/impressum.php:84
msgid "The page operators name."
msgstr ""
#: ../../addon/impressum/impressum.php:71
#: ../../addon/impressum/impressum.php:85
msgid "Site Owners Profile"
msgstr "Профиль владельцев сайта"
#: ../../addon/impressum/impressum.php:85
msgid "Profile address of the operator."
msgstr ""
#: ../../addon/impressum/impressum.php:73
#: ../../addon/impressum/impressum.php:86
msgid "How to contact the operator via snail mail. You can use BBCode here."
msgstr ""
#: ../../addon/impressum/impressum.php:87
msgid "Notes"
msgstr "Заметки"
#: ../../addon/impressum/impressum.php:87
msgid ""
"Additional notes that are displayed beneath the contact information. You can"
" use BBCode here."
msgstr ""
#: ../../addon/oembed/oembed.php:30
msgid "OEmbed settings updated"
msgstr "OEmbed настройки обновлены"
#: ../../addon/oembed/oembed.php:43
msgid "Use OEmbed for YouTube videos"
#: ../../addon/impressum/impressum.php:88
msgid "How to contact the operator via email. (will be displayed obfuscated)"
msgstr ""
#: ../../addon/oembed/oembed.php:71
msgid "URL to embed:"
msgstr "URL для встраивания:"
#: ../../addon/impressum/impressum.php:89
msgid "Footer note"
msgstr ""
#: ../../addon/statusnet/statusnet.php:133
#: ../../addon/impressum/impressum.php:89
msgid "Text for the footer. You can use BBCode here."
msgstr ""
#: ../../addon/buglink/buglink.php:15
msgid "Report Bug"
msgstr "Сообщить об ошибке"
#: ../../addon/notimeline/notimeline.php:32
msgid "No Timeline settings updated."
msgstr ""
#: ../../addon/notimeline/notimeline.php:56
msgid "No Timeline Settings"
msgstr ""
#: ../../addon/notimeline/notimeline.php:58
msgid "Disable Archive selector on profile wall"
msgstr ""
#: ../../addon/blockem/blockem.php:51
msgid "\"Blockem\" Settings"
msgstr "\"Blockem\" настройки"
#: ../../addon/blockem/blockem.php:53
msgid "Comma separated profile URLS to block"
msgstr "URLS, которые заблокировать (список через запятую)"
#: ../../addon/blockem/blockem.php:70
msgid "BLOCKEM Settings saved."
msgstr "BLOCKEM-Настройки сохранены."
#: ../../addon/blockem/blockem.php:105
#, php-format
msgid "Blocked %s - Click to open/close"
msgstr "Заблокированные %s - Нажмите, чтобы открыть/закрыть"
#: ../../addon/blockem/blockem.php:160
msgid "Unblock Author"
msgstr ""
#: ../../addon/blockem/blockem.php:162
msgid "Block Author"
msgstr "Блокировать Автора"
#: ../../addon/blockem/blockem.php:194
msgid "blockem settings updated"
msgstr "\"Blockem\" настройки обновлены"
#: ../../addon/qcomment/qcomment.php:51
msgid ":-)"
msgstr ":-)"
#: ../../addon/qcomment/qcomment.php:51
msgid ":-("
msgstr ":-("
#: ../../addon/qcomment/qcomment.php:51
msgid "lol"
msgstr "lol"
#: ../../addon/qcomment/qcomment.php:54
msgid "Quick Comment Settings"
msgstr ""
#: ../../addon/qcomment/qcomment.php:56
msgid ""
"Quick comments are found near comment boxes, sometimes hidden. Click them to"
" provide simple replies."
msgstr ""
#: ../../addon/qcomment/qcomment.php:57
msgid "Enter quick comments, one per line"
msgstr "Введите короткие комментарии, по одному в строке:"
#: ../../addon/qcomment/qcomment.php:75
msgid "Quick Comment settings saved."
msgstr ""
#: ../../addon/openstreetmap/openstreetmap.php:71
msgid "Tile Server URL"
msgstr ""
#: ../../addon/openstreetmap/openstreetmap.php:71
msgid ""
"A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" "
"target=\"_blank\">public tile servers</a>"
msgstr "Список <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">общедоступных серверов</a>"
#: ../../addon/openstreetmap/openstreetmap.php:72
msgid "Default zoom"
msgstr "zoom по умолчанию"
#: ../../addon/openstreetmap/openstreetmap.php:72
msgid "The default zoom level. (1:world, 18:highest)"
msgstr ""
#: ../../addon/group_text/group_text.php:46
#: ../../addon/editplain/editplain.php:46
msgid "Editplain settings updated."
msgstr "Editplain настройки обновлены."
#: ../../addon/group_text/group_text.php:76
msgid "Group Text"
msgstr ""
#: ../../addon/group_text/group_text.php:78
msgid "Use a text only (non-image) group selector in the \"group edit\" menu"
msgstr ""
#: ../../addon/libravatar/libravatar.php:14
msgid "Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"
msgstr ""
#: ../../addon/libravatar/libravatar.php:73
#: ../../addon/gravatar/gravatar.php:71
msgid "generic profile image"
msgstr ""
#: ../../addon/libravatar/libravatar.php:74
#: ../../addon/gravatar/gravatar.php:72
msgid "random geometric pattern"
msgstr ""
#: ../../addon/libravatar/libravatar.php:75
#: ../../addon/gravatar/gravatar.php:73
msgid "monster face"
msgstr ""
#: ../../addon/libravatar/libravatar.php:76
#: ../../addon/gravatar/gravatar.php:74
msgid "computer generated face"
msgstr ""
#: ../../addon/libravatar/libravatar.php:77
#: ../../addon/gravatar/gravatar.php:75
msgid "retro arcade style face"
msgstr ""
#: ../../addon/libravatar/libravatar.php:83
#, php-format
msgid "Your PHP version %s is lower than the required PHP >= 5.3."
msgstr ""
#: ../../addon/libravatar/libravatar.php:84
msgid "This addon is not functional on your server."
msgstr ""
#: ../../addon/libravatar/libravatar.php:93
#: ../../addon/gravatar/gravatar.php:89
msgid "Information"
msgstr ""
#: ../../addon/libravatar/libravatar.php:93
msgid ""
"Gravatar addon is installed. Please disable the Gravatar addon.<br>The "
"Libravatar addon will fall back to Gravatar if nothing was found at "
"Libravatar."
msgstr ""
#: ../../addon/libravatar/libravatar.php:100
#: ../../addon/gravatar/gravatar.php:96
msgid "Default avatar image"
msgstr ""
#: ../../addon/libravatar/libravatar.php:100
msgid "Select default avatar image if none was found. See README"
msgstr ""
#: ../../addon/libravatar/libravatar.php:112
msgid "Libravatar settings updated."
msgstr ""
#: ../../addon/libertree/libertree.php:36
msgid "Post to libertree"
msgstr ""
#: ../../addon/libertree/libertree.php:67
msgid "libertree Post Settings"
msgstr ""
#: ../../addon/libertree/libertree.php:69
msgid "Enable Libertree Post Plugin"
msgstr ""
#: ../../addon/libertree/libertree.php:74
msgid "Libertree API token"
msgstr ""
#: ../../addon/libertree/libertree.php:79
msgid "Libertree site URL"
msgstr ""
#: ../../addon/libertree/libertree.php:84
msgid "Post to Libertree by default"
msgstr ""
#: ../../addon/altpager/altpager.php:46
msgid "Altpager settings updated."
msgstr ""
#: ../../addon/altpager/altpager.php:79
msgid "Alternate Pagination Setting"
msgstr ""
#: ../../addon/altpager/altpager.php:81
msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?"
msgstr ""
#: ../../addon/mathjax/mathjax.php:37
msgid ""
"The MathJax addon renders mathematical formulae written using the LaTeX "
"syntax surrounded by the usual $$ or an eqnarray block in the postings of "
"your wall,network tab and private mail."
msgstr ""
#: ../../addon/mathjax/mathjax.php:38
msgid "Use the MathJax renderer"
msgstr ""
#: ../../addon/mathjax/mathjax.php:74
msgid "MathJax Base URL"
msgstr ""
#: ../../addon/mathjax/mathjax.php:74
msgid ""
"The URL for the javascript file that should be included to use MathJax. Can "
"be either the MathJax CDN or another installation of MathJax."
msgstr ""
#: ../../addon/editplain/editplain.php:76
msgid "Editplain Settings"
msgstr "Editplain настройки"
#: ../../addon/editplain/editplain.php:78
msgid "Disable richtext status editor"
msgstr "Отключить richtext status editor"
#: ../../addon/gravatar/gravatar.php:89
msgid ""
"Libravatar addon is installed, too. Please disable Libravatar addon or this "
"Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if "
"nothing was found at Libravatar."
msgstr ""
#: ../../addon/gravatar/gravatar.php:96
msgid "Select default avatar image if none was found at Gravatar. See README"
msgstr ""
#: ../../addon/gravatar/gravatar.php:97
msgid "Rating of images"
msgstr ""
#: ../../addon/gravatar/gravatar.php:97
msgid "Select the appropriate avatar rating for your site. See README"
msgstr ""
#: ../../addon/gravatar/gravatar.php:111
msgid "Gravatar settings updated."
msgstr ""
#: ../../addon/testdrive/testdrive.php:95
msgid "Your Friendica test account is about to expire."
msgstr ""
#: ../../addon/testdrive/testdrive.php:96
#, php-format
msgid ""
"Hi %1$s,\n"
"\n"
"Your test account on %2$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."
msgstr ""
#: ../../addon/pageheader/pageheader.php:50
msgid "\"pageheader\" Settings"
msgstr ""
#: ../../addon/pageheader/pageheader.php:68
msgid "pageheader Settings saved."
msgstr ""
#: ../../addon/ijpost/ijpost.php:39
msgid "Post to Insanejournal"
msgstr ""
#: ../../addon/ijpost/ijpost.php:70
msgid "InsaneJournal Post Settings"
msgstr ""
#: ../../addon/ijpost/ijpost.php:72
msgid "Enable InsaneJournal Post Plugin"
msgstr "Включить InsaneJournal плагин сообщений"
#: ../../addon/ijpost/ijpost.php:77
msgid "InsaneJournal username"
msgstr ""
#: ../../addon/ijpost/ijpost.php:82
msgid "InsaneJournal password"
msgstr ""
#: ../../addon/ijpost/ijpost.php:87
msgid "Post to InsaneJournal by default"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:266
msgid "Jappix Mini addon settings"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:268
msgid "Activate addon"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:271
msgid ""
"Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:274
msgid "Jabber username"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:277
msgid "Jabber server"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:281
msgid "Jabber BOSH host"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:285
msgid "Jabber password"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:290
msgid "Encrypt Jabber password with Friendica password (recommended)"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:293
msgid "Friendica password"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:296
msgid "Approve subscription requests from Friendica contacts automatically"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:299
msgid "Subscribe to Friendica contacts automatically"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:302
msgid "Purge internal list of jabber addresses of contacts"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:308
msgid "Add contact"
msgstr ""
#: ../../addon/viewsrc/viewsrc.php:37
msgid "View Source"
msgstr "Просмотр HTML-кода"
#: ../../addon/statusnet/statusnet.php:134
msgid "Post to StatusNet"
msgstr "Отправить на StatusNet"
#: ../../addon/statusnet/statusnet.php:175
#: ../../addon/statusnet/statusnet.php:176
msgid ""
"Please contact your site administrator.<br />The provided API URL is not "
"valid."
msgstr ""
"Пожалуйста, обратитесь к администратору сайта. <br /> Предложенный URL API "
"недействителен."
msgstr "Пожалуйста, обратитесь к администратору сайта. <br /> Предложенный URL API недействителен."
#: ../../addon/statusnet/statusnet.php:203
#: ../../addon/statusnet/statusnet.php:204
msgid "We could not contact the StatusNet API with the Path you entered."
msgstr "Мы не смогли связаться с API StatusNet с маршрутом, который вы ввели."
#: ../../addon/statusnet/statusnet.php:230
#: ../../addon/statusnet/statusnet.php:232
msgid "StatusNet settings updated."
msgstr "Настройки StatusNet обновлены."
#: ../../addon/statusnet/statusnet.php:253
#: ../../addon/statusnet/statusnet.php:257
msgid "StatusNet Posting Settings"
msgstr "Настройка отправки сообщений на StatusNet"
#: ../../addon/statusnet/statusnet.php:267
#: ../../addon/statusnet/statusnet.php:271
msgid "Globally Available StatusNet OAuthKeys"
msgstr "Глобально доступные StatusNet OAuthKeys"
#: ../../addon/statusnet/statusnet.php:268
#: ../../addon/statusnet/statusnet.php:272
msgid ""
"There are preconfigured OAuth key pairs for some StatusNet servers "
"available. If you are useing one of them, please use these credentials. If "
"not feel free to connect to any other StatusNet instance (see below)."
msgstr ""
"Есть предварительно сконфигурированные OAuth пары ключей для некоторых "
"серверов StatusNet. Если вы используете один из них, пожалуйста, используйте"
" эти учетные данные. Если нет, не стесняйтесь подключиться к любому другому "
"экземпляру StatusNet (см. ниже)."
msgstr "Доступны предварительно сконфигурированные OAuth пары ключей для некоторых серверов StatusNet. Если вы используете один из них, пожалуйста, используйте эти учетные данные. Если нет, не стесняйтесь подключиться к любому другому экземпляру StatusNet (см. ниже)."
#: ../../addon/statusnet/statusnet.php:276
#: ../../addon/statusnet/statusnet.php:280
msgid "Provide your own OAuth Credentials"
msgstr "Укажите свои собственные полномочия OAuth"
#: ../../addon/statusnet/statusnet.php:277
#: ../../addon/statusnet/statusnet.php:281
msgid ""
"No consumer key pair for StatusNet found. Register your Friendika Account as"
"No consumer key pair for StatusNet found. Register your Friendica Account as"
" an desktop client on your StatusNet account, copy the consumer key pair "
"here and enter the API base root.<br />Before you register your own OAuth "
"key pair ask the administrator if there is already a key pair for this "
"Friendika installation at your favorited StatusNet installation."
"Friendica installation at your favorited StatusNet installation."
msgstr ""
"Не найдено пары ключей для StatusNet. Зарегистрируйте ваш аккаунт Friendika "
"счета как для клиент настольного ПК на вашем аккаунте StatusNet, скопируйте "
"пару ключей покупателя здесь и введите корень базы API. <br /> Перед тем, "
"как вы зарегистрируете свою собственную пару ключей OAuth, спросите "
"администратора, может уже есть пара ключей для этой инсталляции Friendika в "
"вашей избранной установке StatusNet."
#: ../../addon/statusnet/statusnet.php:279
#: ../../addon/statusnet/statusnet.php:283
msgid "OAuth Consumer Key"
msgstr "OAuth Consumer Key"
#: ../../addon/statusnet/statusnet.php:282
#: ../../addon/statusnet/statusnet.php:286
msgid "OAuth Consumer Secret"
msgstr "OAuth Consumer Secret"
#: ../../addon/statusnet/statusnet.php:285
#: ../../addon/statusnet/statusnet.php:289
msgid "Base API Path (remember the trailing /)"
msgstr "Путь базы API (помните о слеше /)"
#: ../../addon/statusnet/statusnet.php:306
#: ../../addon/statusnet/statusnet.php:310
msgid ""
"To connect to your StatusNet account click the button below to get a "
"security code from StatusNet which you have to copy into the input box below"
" and submit the form. Only your <strong>public</strong> posts will be posted"
" to StatusNet."
msgstr ""
"Чтобы подключиться к StatusNet аккаунту, нажмите на кнопку ниже, чтобы "
"получить код безопасности от StatusNet, который нужно скопировать в поле "
"ввода ниже, и отправить форму. Только ваши <strong>публичные "
"сообщения</strong> будут отправляться на StatusNet."
msgstr "Чтобы подключиться к StatusNet аккаунту, нажмите на кнопку ниже, чтобы получить код безопасности от StatusNet, который нужно скопировать в поле ввода ниже, и отправить форму. Только ваши <strong>публичные сообщения</strong> будут отправляться на StatusNet."
#: ../../addon/statusnet/statusnet.php:307
#: ../../addon/statusnet/statusnet.php:311
msgid "Log in with StatusNet"
msgstr "Войдите со StatusNet"
#: ../../addon/statusnet/statusnet.php:309
#: ../../addon/statusnet/statusnet.php:313
msgid "Copy the security code from StatusNet here"
msgstr "Скопируйте код безопасности от StatusNet здесь"
#: ../../addon/statusnet/statusnet.php:315
#: ../../addon/statusnet/statusnet.php:319
msgid "Cancel Connection Process"
msgstr "Отмена процесса подключения"
#: ../../addon/statusnet/statusnet.php:317
#: ../../addon/statusnet/statusnet.php:321
msgid "Current StatusNet API is"
msgstr "Текущим StatusNet API является"
#: ../../addon/statusnet/statusnet.php:318
#: ../../addon/statusnet/statusnet.php:322
msgid "Cancel StatusNet Connection"
msgstr "Отмена StatusNet подключения"
#: ../../addon/statusnet/statusnet.php:329 ../../addon/twitter/twitter.php:180
#: ../../addon/statusnet/statusnet.php:333 ../../addon/twitter/twitter.php:189
msgid "Currently connected to: "
msgstr "В настоящее время соединены с: "
#: ../../addon/statusnet/statusnet.php:330
#: ../../addon/statusnet/statusnet.php:334
msgid ""
"If enabled all your <strong>public</strong> postings can be posted to the "
"associated StatusNet account. You can choose to do so by default (here) or "
"for every posting separately in the posting options when writing the entry."
msgstr "Если включено, то все ваши <strong>общественные сообщения</strong> могут быть отправлены на соответствующий аккаунт StatusNet. Вы можете сделать это по умолчанию (здесь) или для каждого сообщения отдельно при написании записи."
#: ../../addon/statusnet/statusnet.php:336
msgid ""
"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
"details from unknown viewers?</em>) the link potentially included in public "
"postings relayed to StatusNet 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:332
#: ../../addon/statusnet/statusnet.php:339
msgid "Allow posting to StatusNet"
msgstr "Разрешить отправку на StatusNet"
#: ../../addon/statusnet/statusnet.php:335
#: ../../addon/statusnet/statusnet.php:342
msgid "Send public postings to StatusNet by default"
msgstr "Отправлять публичные сообщения на StatusNet по умолчанию"
#: ../../addon/statusnet/statusnet.php:340 ../../addon/twitter/twitter.php:191
#: ../../addon/statusnet/statusnet.php:345
msgid "Send linked #-tags and @-names to StatusNet"
msgstr ""
#: ../../addon/statusnet/statusnet.php:350 ../../addon/twitter/twitter.php:206
msgid "Clear OAuth configuration"
msgstr "Очистить конфигурацию OAuth"
#: ../../addon/statusnet/statusnet.php:460
#: ../../addon/statusnet/statusnet.php:568
msgid "API URL"
msgstr "API URL"
#: ../../addon/statusnet/statusnet.php:461
msgid "Consumer Secret"
msgstr "Consumer Secret"
#: ../../addon/statusnet/statusnet.php:462
msgid "Consumer Key"
msgstr "Consumer Key"
#: ../../addon/piwik/piwik.php:77
msgid "Piwik Base URL"
#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
msgid "Infinite Improbability Drive"
msgstr ""
#: ../../addon/piwik/piwik.php:78
msgid "Site ID"
#: ../../addon/tumblr/tumblr.php:36
msgid "Post to Tumblr"
msgstr "Написать в Tumblr"
#: ../../addon/tumblr/tumblr.php:67
msgid "Tumblr Post Settings"
msgstr "Tumblr Настройки сообщения"
#: ../../addon/tumblr/tumblr.php:69
msgid "Enable Tumblr Post Plugin"
msgstr "Включить Tumblr плагин сообщений"
#: ../../addon/tumblr/tumblr.php:74
msgid "Tumblr login"
msgstr "Tumblr вход"
#: ../../addon/tumblr/tumblr.php:79
msgid "Tumblr password"
msgstr "Tumblr пароль"
#: ../../addon/tumblr/tumblr.php:84
msgid "Post to Tumblr by default"
msgstr "Сообщение Tumblr по умолчанию"
#: ../../addon/numfriends/numfriends.php:46
msgid "Numfriends settings updated."
msgstr ""
#: ../../addon/numfriends/numfriends.php:77
msgid "Numfriends Settings"
msgstr ""
#: ../../addon/gnot/gnot.php:48
msgid "Gnot settings updated."
msgstr ""
#: ../../addon/gnot/gnot.php:79
msgid "Gnot Settings"
msgstr ""
#: ../../addon/gnot/gnot.php:81
msgid ""
"Allows threading of email comment notifications on Gmail and anonymising the"
" subject line."
msgstr ""
#: ../../addon/gnot/gnot.php:82
msgid "Enable this plugin/addon?"
msgstr "Включить этот плагин / аддон?"
#: ../../addon/gnot/gnot.php:97
#, php-format
msgid "[Friendica:Notify] Comment to conversation #%d"
msgstr ""
#: ../../addon/wppost/wppost.php:42
msgid "Post to Wordpress"
msgstr "Сообщение для Wordpress"
#: ../../addon/wppost/wppost.php:76
msgid "WordPress Post Settings"
msgstr "Настройки сообщений для Wordpress"
#: ../../addon/wppost/wppost.php:78
msgid "Enable WordPress Post Plugin"
msgstr "Включить WordPress плагин сообщений"
#: ../../addon/wppost/wppost.php:83
msgid "WordPress username"
msgstr "WordPress Имя пользователя"
#: ../../addon/wppost/wppost.php:88
msgid "WordPress password"
msgstr "WordPress паролъ"
#: ../../addon/wppost/wppost.php:93
msgid "WordPress API URL"
msgstr "WordPress API URL"
#: ../../addon/wppost/wppost.php:98
msgid "Post to WordPress by default"
msgstr "Сообщение WordPress по умолчанию"
#: ../../addon/wppost/wppost.php:103
msgid "Provide a backlink to the Friendica post"
msgstr ""
#: ../../addon/wppost/wppost.php:207
msgid "Read the original post and comment stream on Friendica"
msgstr ""
#: ../../addon/showmore/showmore.php:38
msgid "\"Show more\" Settings"
msgstr ""
#: ../../addon/showmore/showmore.php:41
msgid "Enable Show More"
msgstr "Включить Показать больше"
#: ../../addon/showmore/showmore.php:44
msgid "Cutting posts after how much characters"
msgstr "Обрезание сообщения после превывения числа символов"
#: ../../addon/showmore/showmore.php:65
msgid "Show More Settings saved."
msgstr ""
#: ../../addon/piwik/piwik.php:79
msgid "Show opt-out cookie link?"
msgid ""
"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
"analytics tool."
msgstr "Этот веб-сайт отслеживается с помощью <a href='http://www.piwik.org'> Piwik </ a> инструмент аналитики."
#: ../../addon/piwik/piwik.php:82
#, php-format
msgid ""
"If you do not want that your visits are logged this way you <a href='%s'>can"
" set a cookie to prevent Piwik from tracking further visits of the site</a> "
"(opt-out)."
msgstr "Если вы не хотите, чтобы ваши посещения записывались таким образом, вы <a href='%s'> можете установить куки для предотвращения отслеживания Piwik от дальнейших посещений сайта </a> (opt-out)."
#: ../../addon/piwik/piwik.php:90
msgid "Piwik Base URL"
msgstr "Piwik основной URL"
#: ../../addon/piwik/piwik.php:90
msgid ""
"Absolute path to your Piwik installation. (without protocol (http/s), with "
"trailing slash)"
msgstr ""
#: ../../addon/twitter/twitter.php:70
#: ../../addon/piwik/piwik.php:91
msgid "Site ID"
msgstr "ID сайта"
#: ../../addon/piwik/piwik.php:92
msgid "Show opt-out cookie link?"
msgstr "Показать ссылку opt-out cookie?"
#: ../../addon/piwik/piwik.php:93
msgid "Asynchronous tracking"
msgstr "Асинхронное отслеживание"
#: ../../addon/twitter/twitter.php:73
msgid "Post to Twitter"
msgstr "Отправить в Твиттер"
#: ../../addon/twitter/twitter.php:115
#: ../../addon/twitter/twitter.php:122
msgid "Twitter settings updated."
msgstr ""
msgstr "Настройки Твиттера обновлены."
#: ../../addon/twitter/twitter.php:137
#: ../../addon/twitter/twitter.php:146
msgid "Twitter Posting Settings"
msgstr "Настройка отправки сообщений в Твиттер"
#: ../../addon/twitter/twitter.php:144
#: ../../addon/twitter/twitter.php:153
msgid ""
"No consumer key pair for Twitter found. Please contact your site "
"administrator."
msgstr ""
"Не найдено пары потребительских ключей для Твиттера. Пожалуйста, обратитесь "
"к администратору сайта."
msgstr "Не найдено пары потребительских ключей для Твиттера. Пожалуйста, обратитесь к администратору сайта."
#: ../../addon/twitter/twitter.php:163
#: ../../addon/twitter/twitter.php:172
msgid ""
"At this Friendika instance the Twitter plugin was enabled but you have not "
"At this Friendica 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 <strong>public</strong> posts will"
" be posted to Twitter."
msgstr ""
"В этой установке Friendika плагин Твиттер был включен, но вы еще не "
"подключили ваш аккаунт к аккаунту Твиттер. Для этого нажмите на кнопку ниже,"
" чтобы получить PIN-код из Твиттера, который нужно скопировать в поле ввода "
"ниже, и отправить форму. Только ваши <strong>публичные сообщения</strong> "
"будут размещены на Твиттере."
#: ../../addon/twitter/twitter.php:164
#: ../../addon/twitter/twitter.php:173
msgid "Log in with Twitter"
msgstr "Войдите с Твиттером"
#: ../../addon/twitter/twitter.php:166
#: ../../addon/twitter/twitter.php:175
msgid "Copy the PIN from Twitter here"
msgstr "Скопируйте PIN с Твиттера здесь"
msgstr "Скопируйте PIN с Twitter здесь"
#: ../../addon/twitter/twitter.php:181
#: ../../addon/twitter/twitter.php:190
msgid ""
"If enabled all your <strong>public</strong> postings can be posted to the "
"associated Twitter account. You can choose to do so by default (here) or for"
" every posting separately in the posting options when writing the entry."
msgstr "Если включено, то все ваши <strong>общественные сообщения</strong> могут быть отправлены на связанный аккаунт Твиттер. Вы можете сделать это по умолчанию (здесь) или для каждого сообщения отдельно при написании записи."
#: ../../addon/twitter/twitter.php:192
msgid ""
"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
"details from unknown viewers?</em>) 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:183
#: ../../addon/twitter/twitter.php:195
msgid "Allow posting to Twitter"
msgstr ""
msgstr "Разрешить отправку сообщений на Twitter"
#: ../../addon/twitter/twitter.php:186
#: ../../addon/twitter/twitter.php:198
msgid "Send public postings to Twitter by default"
msgstr "Отправлять сообщения для всех на Твиттер по умолчанию"
#: ../../addon/twitter/twitter.php:201
msgid "Send linked #-tags and @-names to Twitter"
msgstr ""
#: ../../addon/twitter/twitter.php:282
#: ../../addon/twitter/twitter.php:396
msgid "Consumer key"
msgstr ""
msgstr "Consumer key"
#: ../../addon/twitter/twitter.php:283
#: ../../addon/twitter/twitter.php:397
msgid "Consumer secret"
msgstr "Consumer secret"
#: ../../addon/irc/irc.php:44
msgid "IRC Settings"
msgstr ""
#: ../../include/profile_advanced.php:23 ../../boot.php:880
msgid "Gender:"
msgstr "Пол:"
#: ../../addon/irc/irc.php:46
msgid "Channel(s) to auto connect (comma separated)"
msgstr ""
#: ../../include/profile_advanced.php:36 ../../include/items.php:1137
msgid "Birthday:"
msgstr "День рождения:"
#: ../../addon/irc/irc.php:51
msgid "Popular Channels (comma separated)"
msgstr ""
#: ../../include/profile_advanced.php:45
#: ../../addon/irc/irc.php:69
msgid "IRC settings saved."
msgstr ""
#: ../../addon/irc/irc.php:74
msgid "IRC Chatroom"
msgstr ""
#: ../../addon/irc/irc.php:96
msgid "Popular Channels"
msgstr ""
#: ../../addon/fromapp/fromapp.php:38
msgid "Fromapp settings updated."
msgstr ""
#: ../../addon/fromapp/fromapp.php:64
msgid "FromApp Settings"
msgstr ""
#: ../../addon/fromapp/fromapp.php:66
msgid ""
"The application name you would like to show your posts originating from."
msgstr ""
#: ../../addon/fromapp/fromapp.php:70
msgid "Use this application name even if another application was used."
msgstr ""
#: ../../addon/blogger/blogger.php:42
msgid "Post to blogger"
msgstr ""
#: ../../addon/blogger/blogger.php:74
msgid "Blogger Post Settings"
msgstr ""
#: ../../addon/blogger/blogger.php:76
msgid "Enable Blogger Post Plugin"
msgstr ""
#: ../../addon/blogger/blogger.php:81
msgid "Blogger username"
msgstr ""
#: ../../addon/blogger/blogger.php:86
msgid "Blogger password"
msgstr ""
#: ../../addon/blogger/blogger.php:91
msgid "Blogger API URL"
msgstr ""
#: ../../addon/blogger/blogger.php:96
msgid "Post to Blogger by default"
msgstr ""
#: ../../addon/posterous/posterous.php:37
msgid "Post to Posterous"
msgstr ""
#: ../../addon/posterous/posterous.php:70
msgid "Posterous Post Settings"
msgstr ""
#: ../../addon/posterous/posterous.php:72
msgid "Enable Posterous Post Plugin"
msgstr "Включить Posterous плагин сообщений"
#: ../../addon/posterous/posterous.php:77
msgid "Posterous login"
msgstr ""
#: ../../addon/posterous/posterous.php:82
msgid "Posterous password"
msgstr ""
#: ../../addon/posterous/posterous.php:87
msgid "Posterous site ID"
msgstr ""
#: ../../addon/posterous/posterous.php:92
msgid "Posterous API token"
msgstr ""
#: ../../addon/posterous/posterous.php:97
msgid "Post to Posterous by default"
msgstr ""
#: ../../view/theme/cleanzero/config.php:82
#: ../../view/theme/diabook/config.php:192
#: ../../view/theme/quattro/config.php:55 ../../view/theme/dispy/config.php:72
msgid "Theme settings"
msgstr ""
#: ../../view/theme/cleanzero/config.php:83
msgid "Set resize level for images in posts and comments (width and height)"
msgstr ""
#: ../../view/theme/cleanzero/config.php:84
#: ../../view/theme/diabook/config.php:193
#: ../../view/theme/dispy/config.php:73
msgid "Set font-size for posts and comments"
msgstr ""
#: ../../view/theme/cleanzero/config.php:85
msgid "Set theme width"
msgstr ""
#: ../../view/theme/cleanzero/config.php:86
#: ../../view/theme/quattro/config.php:57
msgid "Color scheme"
msgstr "Цветовая схема"
#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:49
#: ../../include/nav.php:115
msgid "Your posts and conversations"
msgstr "Ваши сообщения и беседы"
#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:50
msgid "Your profile page"
msgstr "Страница Вашего профиля"
#: ../../view/theme/diabook/theme.php:129
msgid "Your contacts"
msgstr "Ваши контакты"
#: ../../view/theme/diabook/theme.php:130 ../../include/nav.php:51
msgid "Your photos"
msgstr "Ваши фотографии"
#: ../../view/theme/diabook/theme.php:131 ../../include/nav.php:52
msgid "Your events"
msgstr "Ваши события"
#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53
msgid "Personal notes"
msgstr "Личные заметки"
#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53
msgid "Your personal photos"
msgstr "Ваши личные фотографии"
#: ../../view/theme/diabook/theme.php:134
#: ../../view/theme/diabook/theme.php:643
#: ../../view/theme/diabook/theme.php:747
#: ../../view/theme/diabook/config.php:201
msgid "Community Pages"
msgstr "Страницы сообщества"
#: ../../view/theme/diabook/theme.php:490
#: ../../view/theme/diabook/theme.php:749
#: ../../view/theme/diabook/config.php:203
msgid "Community Profiles"
msgstr ""
#: ../../view/theme/diabook/theme.php:511
#: ../../view/theme/diabook/theme.php:754
#: ../../view/theme/diabook/config.php:208
msgid "Last users"
msgstr "Последние пользователи"
#: ../../view/theme/diabook/theme.php:540
#: ../../view/theme/diabook/theme.php:756
#: ../../view/theme/diabook/config.php:210
msgid "Last likes"
msgstr "Последние likes"
#: ../../view/theme/diabook/theme.php:585
#: ../../view/theme/diabook/theme.php:755
#: ../../view/theme/diabook/config.php:209
msgid "Last photos"
msgstr "Последние фото"
#: ../../view/theme/diabook/theme.php:622
#: ../../view/theme/diabook/theme.php:752
#: ../../view/theme/diabook/config.php:206
msgid "Find Friends"
msgstr "Найти друзей"
#: ../../view/theme/diabook/theme.php:623
msgid "Local Directory"
msgstr ""
#: ../../view/theme/diabook/theme.php:625 ../../include/contact_widgets.php:35
msgid "Similar Interests"
msgstr "Похожие интересы"
#: ../../view/theme/diabook/theme.php:627 ../../include/contact_widgets.php:37
msgid "Invite Friends"
msgstr "Пригласить друзей"
#: ../../view/theme/diabook/theme.php:678
#: ../../view/theme/diabook/theme.php:748
#: ../../view/theme/diabook/config.php:202
msgid "Earth Layers"
msgstr ""
#: ../../view/theme/diabook/theme.php:683
msgid "Set zoomfactor for Earth Layers"
msgstr ""
#: ../../view/theme/diabook/theme.php:684
#: ../../view/theme/diabook/config.php:199
msgid "Set longitude (X) for Earth Layers"
msgstr ""
#: ../../view/theme/diabook/theme.php:685
#: ../../view/theme/diabook/config.php:200
msgid "Set latitude (Y) for Earth Layers"
msgstr ""
#: ../../view/theme/diabook/theme.php:698
#: ../../view/theme/diabook/theme.php:750
#: ../../view/theme/diabook/config.php:204
msgid "Help or @NewHere ?"
msgstr ""
#: ../../view/theme/diabook/theme.php:705
#: ../../view/theme/diabook/theme.php:751
#: ../../view/theme/diabook/config.php:205
msgid "Connect Services"
msgstr "Подключить службы"
#: ../../view/theme/diabook/theme.php:712
#: ../../view/theme/diabook/theme.php:753
msgid "Last Tweets"
msgstr ""
#: ../../view/theme/diabook/theme.php:715
#: ../../view/theme/diabook/config.php:197
msgid "Set twitter search term"
msgstr ""
#: ../../view/theme/diabook/theme.php:735
#: ../../view/theme/diabook/theme.php:736
#: ../../view/theme/diabook/theme.php:737
#: ../../view/theme/diabook/theme.php:738
#: ../../view/theme/diabook/theme.php:739
#: ../../view/theme/diabook/theme.php:740
#: ../../view/theme/diabook/theme.php:741
#: ../../view/theme/diabook/theme.php:742
#: ../../view/theme/diabook/theme.php:743
#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:288
msgid "don't show"
msgstr "не показывать"
#: ../../view/theme/diabook/theme.php:735
#: ../../view/theme/diabook/theme.php:736
#: ../../view/theme/diabook/theme.php:737
#: ../../view/theme/diabook/theme.php:738
#: ../../view/theme/diabook/theme.php:739
#: ../../view/theme/diabook/theme.php:740
#: ../../view/theme/diabook/theme.php:741
#: ../../view/theme/diabook/theme.php:742
#: ../../view/theme/diabook/theme.php:743
#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:287
msgid "show"
msgstr "показывать"
#: ../../view/theme/diabook/theme.php:745
msgid "Show/hide boxes at right-hand column:"
msgstr ""
#: ../../view/theme/diabook/config.php:194
#: ../../view/theme/dispy/config.php:74
msgid "Set line-height for posts and comments"
msgstr ""
#: ../../view/theme/diabook/config.php:195
msgid "Set resolution for middle column"
msgstr ""
#: ../../view/theme/diabook/config.php:196
msgid "Set color scheme"
msgstr ""
#: ../../view/theme/diabook/config.php:198
msgid "Set zoomfactor for Earth Layer"
msgstr ""
#: ../../view/theme/diabook/config.php:207
msgid "Last tweets"
msgstr ""
#: ../../view/theme/quattro/config.php:56
msgid "Alignment"
msgstr "Выравнивание"
#: ../../view/theme/quattro/config.php:56
msgid "Left"
msgstr ""
#: ../../view/theme/quattro/config.php:56
msgid "Center"
msgstr "Центр"
#: ../../view/theme/dispy/config.php:75
msgid "Set colour scheme"
msgstr ""
#: ../../include/profile_advanced.php:22
msgid "j F, Y"
msgstr "j F, Y"
#: ../../include/profile_advanced.php:46
#: ../../include/profile_advanced.php:23
msgid "j F"
msgstr "j F"
#: ../../include/profile_advanced.php:59
#: ../../include/profile_advanced.php:30
msgid "Birthday:"
msgstr "День рождения:"
#: ../../include/profile_advanced.php:34
msgid "Age:"
msgstr "Возраст:"
#: ../../include/profile_advanced.php:70
msgid "<span class=\"heart\">&hearts;</span> Status:"
msgstr "<span class=\"heart\">&hearts;</span> Статус:"
#: ../../include/profile_advanced.php:43
#, php-format
msgid "for %1$d %2$s"
msgstr ""
#: ../../include/profile_advanced.php:103 ../../boot.php:886
msgid "Homepage:"
msgstr "Домашняя страничка:"
#: ../../include/profile_advanced.php:52
msgid "Tags:"
msgstr ""
#: ../../include/profile_advanced.php:127
#: ../../include/profile_advanced.php:56
msgid "Religion:"
msgstr "Религия:"
#: ../../include/profile_advanced.php:138
msgid "About:"
msgstr "Немного о себе:"
#: ../../include/profile_advanced.php:150
#: ../../include/profile_advanced.php:60
msgid "Hobbies/Interests:"
msgstr "Хобби / Интересы:"
#: ../../include/profile_advanced.php:162
#: ../../include/profile_advanced.php:67
msgid "Contact information and Social Networks:"
msgstr "Контактная информация и социальные сети:"
msgstr "Информация о контакте и социальных сетях:"
#: ../../include/profile_advanced.php:174
#: ../../include/profile_advanced.php:69
msgid "Musical interests:"
msgstr "Музыкальные интересы:"
#: ../../include/profile_advanced.php:186
#: ../../include/profile_advanced.php:71
msgid "Books, literature:"
msgstr "Книги, литература:"
#: ../../include/profile_advanced.php:198
#: ../../include/profile_advanced.php:73
msgid "Television:"
msgstr "Телевидение:"
#: ../../include/profile_advanced.php:210
#: ../../include/profile_advanced.php:75
msgid "Film/dance/culture/entertainment:"
msgstr "Кино / Танцы / Культура / Развлечения:"
#: ../../include/profile_advanced.php:222
#: ../../include/profile_advanced.php:77
msgid "Love/Romance:"
msgstr "Любовь / Романтика:"
#: ../../include/profile_advanced.php:234
#: ../../include/profile_advanced.php:79
msgid "Work/employment:"
msgstr "Работа / Занятость:"
#: ../../include/profile_advanced.php:246
#: ../../include/profile_advanced.php:81
msgid "School/education:"
msgstr "Школа / Образование:"
@ -3762,29 +7312,41 @@ msgstr "Хорошо, наверное, безвредные"
msgid "Reputable, has my trust"
msgstr "Уважаемые, есть мое доверие"
#: ../../include/contact_selectors.php:55
#: ../../include/contact_selectors.php:56
msgid "Frequently"
msgstr "Часто"
#: ../../include/contact_selectors.php:56
#: ../../include/contact_selectors.php:57
msgid "Hourly"
msgstr "Раз в час"
#: ../../include/contact_selectors.php:57
#: ../../include/contact_selectors.php:58
msgid "Twice daily"
msgstr "Два раза в день"
#: ../../include/contact_selectors.php:58
msgid "Daily"
msgstr "Ежедневно"
#: ../../include/contact_selectors.php:77
msgid "OStatus"
msgstr "OStatus"
#: ../../include/contact_selectors.php:59
msgid "Weekly"
msgstr "Еженедельно"
#: ../../include/contact_selectors.php:78
msgid "RSS/Atom"
msgstr "RSS/Atom"
#: ../../include/contact_selectors.php:60
msgid "Monthly"
msgstr "Ежемесячно"
#: ../../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/profile_selectors.php:6
msgid "Male"
@ -3796,7 +7358,7 @@ msgstr "Женщина"
#: ../../include/profile_selectors.php:6
msgid "Currently Male"
msgstr "В настоящее время мужчина"
msgstr "В данный момент мужчина"
#: ../../include/profile_selectors.php:6
msgid "Currently Female"
@ -3842,195 +7404,228 @@ msgstr "Другой"
msgid "Undecided"
msgstr "Не решено"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:23
msgid "Males"
msgstr "Мужчины"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:23
msgid "Females"
msgstr "Женщины"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:23
msgid "Gay"
msgstr "Гей"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:23
msgid "Lesbian"
msgstr "Лесбиянка"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:23
msgid "No Preference"
msgstr "Без предпочтений"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:23
msgid "Bisexual"
msgstr "Бисексуал"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:23
msgid "Autosexual"
msgstr "Автосексуал"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:23
msgid "Abstinent"
msgstr "Воздержанный"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:23
msgid "Virgin"
msgstr "Девственница"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:23
msgid "Deviant"
msgstr "Девиант"
msgstr "Deviant"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:23
msgid "Fetish"
msgstr "Фетиш"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:23
msgid "Oodles"
msgstr "Групповой"
#: ../../include/profile_selectors.php:19
#: ../../include/profile_selectors.php:23
msgid "Nonsexual"
msgstr "Нет интереса к сексу"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Single"
msgstr "Без пары"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Lonely"
msgstr "Пока никого нет"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Available"
msgstr "Ищу спутника"
msgstr "Доступный"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Unavailable"
msgstr "Не ищу никого"
#: ../../include/profile_selectors.php:33
msgid "Dating"
msgstr "Для знакомства"
#: ../../include/profile_selectors.php:42
msgid "Has crush"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../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:33
#: ../../include/profile_selectors.php:42
msgid "Sex Addict"
msgstr "Люблю секс"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42 ../../include/user.php:278
#: ../../include/user.php:282
msgid "Friends"
msgstr "Друзья"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Friends/Benefits"
msgstr "Друзья / Предпочтения"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Casual"
msgstr "Случайные связи"
msgstr "Обычный"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Engaged"
msgstr "Есть спутник"
msgstr "Занят"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Married"
msgstr "Женат / Замужем"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Imaginarily married"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Partners"
msgstr "Партнеры"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Cohabiting"
msgstr "Сожительствую с человеком"
msgstr "Партнерство"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Common law"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Happy"
msgstr "Счастлив/а/"
#: ../../include/profile_selectors.php:33
msgid "Not Looking"
msgstr "Не ищу"
#: ../../include/profile_selectors.php:42
msgid "Not looking"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Swinger"
msgstr "Свинг"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Betrayed"
msgstr "Преданный"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Separated"
msgstr "Разделенный"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Unstable"
msgstr "Нестабильный"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Divorced"
msgstr "Разведенный"
msgstr "Разведен(а)"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Imaginarily divorced"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Widowed"
msgstr "Овдовевший"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Uncertain"
msgstr "Неопределенный"
#: ../../include/profile_selectors.php:33
msgid "Complicated"
msgstr "Сложный"
#: ../../include/profile_selectors.php:42
msgid "It's complicated"
msgstr ""
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Don't care"
msgstr "Не беспокоить"
#: ../../include/profile_selectors.php:33
#: ../../include/profile_selectors.php:42
msgid "Ask me"
msgstr "Спросите меня"
#: ../../include/event.php:11
msgid "l F d, Y \\@ g:i A"
msgstr ""
#: ../../include/event.php:17
#: ../../include/event.php:20 ../../include/bb2diaspora.php:396
msgid "Starts:"
msgstr ""
msgstr "Начало:"
#: ../../include/event.php:27
#: ../../include/event.php:30 ../../include/bb2diaspora.php:404
msgid "Finishes:"
msgstr "Окончание:"
#: ../../include/delivery.php:457 ../../include/notifier.php:703
msgid "(no subject)"
msgstr "(без темы)"
#: ../../include/Scrape.php:576
msgid " on Last.fm"
msgstr ""
#: ../../include/text.php:229
#: ../../include/text.php:243
msgid "prev"
msgstr "пред."
#: ../../include/text.php:231
#: ../../include/text.php:245
msgid "first"
msgstr "первый"
#: ../../include/text.php:260
#: ../../include/text.php:274
msgid "last"
msgstr "последний"
#: ../../include/text.php:263
#: ../../include/text.php:277
msgid "next"
msgstr "след."
#: ../../include/text.php:542
#: ../../include/text.php:295
msgid "newer"
msgstr ""
#: ../../include/text.php:299
msgid "older"
msgstr ""
#: ../../include/text.php:597
msgid "No contacts"
msgstr "Нет контактов"
#: ../../include/text.php:550
#: ../../include/text.php:606
#, php-format
msgid "%d Contact"
msgid_plural "%d Contacts"
@ -4038,524 +7633,1148 @@ msgstr[0] "%d контакт"
msgstr[1] "%d контактов"
msgstr[2] "%d контактов"
#: ../../include/text.php:711
msgid "Monday"
msgstr "Понедельник"
#: ../../include/text.php:719
msgid "poke"
msgstr ""
#: ../../include/text.php:711
msgid "Tuesday"
msgstr "Вторник"
#: ../../include/text.php:719 ../../include/conversation.php:210
msgid "poked"
msgstr ""
#: ../../include/text.php:711
msgid "Wednesday"
msgstr "Среда"
#: ../../include/text.php:720
msgid "ping"
msgstr ""
#: ../../include/text.php:711
msgid "Thursday"
msgstr "Четверг"
#: ../../include/text.php:720
msgid "pinged"
msgstr ""
#: ../../include/text.php:711
msgid "Friday"
msgstr "Пятница"
#: ../../include/text.php:721
msgid "prod"
msgstr ""
#: ../../include/text.php:711
msgid "Saturday"
msgstr "Суббота"
#: ../../include/text.php:721
msgid "prodded"
msgstr ""
#: ../../include/text.php:711
msgid "Sunday"
msgstr "Воскресенье"
#: ../../include/text.php:722
msgid "slap"
msgstr ""
#: ../../include/text.php:715
#: ../../include/text.php:722
msgid "slapped"
msgstr ""
#: ../../include/text.php:723
msgid "finger"
msgstr ""
#: ../../include/text.php:723
msgid "fingered"
msgstr ""
#: ../../include/text.php:724
msgid "rebuff"
msgstr ""
#: ../../include/text.php:724
msgid "rebuffed"
msgstr ""
#: ../../include/text.php:736
msgid "happy"
msgstr ""
#: ../../include/text.php:737
msgid "sad"
msgstr ""
#: ../../include/text.php:738
msgid "mellow"
msgstr ""
#: ../../include/text.php:739
msgid "tired"
msgstr ""
#: ../../include/text.php:740
msgid "perky"
msgstr ""
#: ../../include/text.php:741
msgid "angry"
msgstr ""
#: ../../include/text.php:742
msgid "stupified"
msgstr ""
#: ../../include/text.php:743
msgid "puzzled"
msgstr ""
#: ../../include/text.php:744
msgid "interested"
msgstr ""
#: ../../include/text.php:745
msgid "bitter"
msgstr ""
#: ../../include/text.php:746
msgid "cheerful"
msgstr ""
#: ../../include/text.php:747
msgid "alive"
msgstr ""
#: ../../include/text.php:748
msgid "annoyed"
msgstr ""
#: ../../include/text.php:749
msgid "anxious"
msgstr ""
#: ../../include/text.php:750
msgid "cranky"
msgstr ""
#: ../../include/text.php:751
msgid "disturbed"
msgstr ""
#: ../../include/text.php:752
msgid "frustrated"
msgstr ""
#: ../../include/text.php:753
msgid "motivated"
msgstr ""
#: ../../include/text.php:754
msgid "relaxed"
msgstr ""
#: ../../include/text.php:755
msgid "surprised"
msgstr ""
#: ../../include/text.php:921
msgid "January"
msgstr "Январь"
#: ../../include/text.php:715
#: ../../include/text.php:921
msgid "February"
msgstr "Февраль"
#: ../../include/text.php:715
#: ../../include/text.php:921
msgid "March"
msgstr "Март"
#: ../../include/text.php:715
#: ../../include/text.php:921
msgid "April"
msgstr "Апрель"
#: ../../include/text.php:715
#: ../../include/text.php:921
msgid "May"
msgstr "Май"
#: ../../include/text.php:715
#: ../../include/text.php:921
msgid "June"
msgstr "Июнь"
#: ../../include/text.php:715
#: ../../include/text.php:921
msgid "July"
msgstr "Июль"
#: ../../include/text.php:715
#: ../../include/text.php:921
msgid "August"
msgstr "Август"
#: ../../include/text.php:715
#: ../../include/text.php:921
msgid "September"
msgstr "Сентябрь"
#: ../../include/text.php:715
#: ../../include/text.php:921
msgid "October"
msgstr "Октябрь"
#: ../../include/text.php:715
#: ../../include/text.php:921
msgid "November"
msgstr "Ноябрь"
#: ../../include/text.php:715
#: ../../include/text.php:921
msgid "December"
msgstr "Декабрь"
#: ../../include/text.php:778
#: ../../include/text.php:1007
msgid "bytes"
msgstr "байт"
#: ../../include/text.php:861
#: ../../include/text.php:1034 ../../include/text.php:1046
msgid "Click to open/close"
msgstr "Нажмите, чтобы открыть / закрыть"
#: ../../include/text.php:1219 ../../include/user.php:236
msgid "default"
msgstr "значение по умолчанию"
#: ../../include/text.php:1231
msgid "Select an alternate language"
msgstr "Выбор альтернативного языка"
#: ../../include/text.php:1441
msgid "activity"
msgstr "активность"
#: ../../include/text.php:1444
msgid "post"
msgstr ""
#: ../../include/diaspora.php:309
#: ../../include/text.php:1599
msgid "Item filed"
msgstr ""
#: ../../include/diaspora.php:691
msgid "Sharing notification from Diaspora network"
msgstr "Делиться уведомлениями из сети Diaspora"
#: ../../include/oembed.php:95
#: ../../include/diaspora.php:2211
msgid "Attachments:"
msgstr "Вложения:"
#: ../../include/network.php:849
msgid "view full size"
msgstr "посмотреть в полный размер"
#: ../../include/oembed.php:137
msgid "Embedded content"
msgstr "Встроенное содержание"
#: ../../include/oembed.php:146
msgid "Embedding disabled"
msgstr "Встраивание отключено"
#: ../../include/group.php:146
#: ../../include/group.php:25
msgid ""
"A deleted group with this name was revived. Existing item permissions "
"<strong>may</strong> apply to this group and any future members. If this is "
"not what you intended, please create another group with a different name."
msgstr ""
#: ../../include/group.php:176
msgid "Default privacy group for new contacts"
msgstr ""
#: ../../include/group.php:195
msgid "Everybody"
msgstr "Каждый"
#: ../../include/group.php:218
msgid "edit"
msgstr "редактировать"
#: ../../include/group.php:240
msgid "Edit group"
msgstr "Редактировать группу"
#: ../../include/group.php:241
msgid "Create a new group"
msgstr "Создать новую группу"
#: ../../include/group.php:147
msgid "Everybody"
msgstr "Все"
#: ../../include/group.php:242
msgid "Contacts not in any group"
msgstr ""
#: ../../include/nav.php:41 ../../boot.php:667
#: ../../include/nav.php:46 ../../boot.php:911
msgid "Logout"
msgstr "Выход"
#: ../../include/nav.php:41
#: ../../include/nav.php:46
msgid "End this session"
msgstr ""
msgstr "Конец этой сессии"
#: ../../include/nav.php:44 ../../boot.php:645 ../../boot.php:651
msgid "Login"
msgstr "Вход"
#: ../../include/nav.php:44
msgid "Sign in"
msgstr ""
#: ../../include/nav.php:55 ../../include/nav.php:93
msgid "Home"
msgstr "Главная"
#: ../../include/nav.php:55
msgid "Home Page"
msgstr ""
#: ../../include/nav.php:59
msgid "Create an account"
msgstr ""
#: ../../include/nav.php:49 ../../boot.php:1665
msgid "Status"
msgstr "Статус"
#: ../../include/nav.php:64
msgid "Help and documentation"
msgstr ""
msgid "Sign in"
msgstr "Вход"
#: ../../include/nav.php:67
#: ../../include/nav.php:77
msgid "Home Page"
msgstr "Главная страница"
#: ../../include/nav.php:81
msgid "Create an account"
msgstr "Создать аккаунт"
#: ../../include/nav.php:86
msgid "Help and documentation"
msgstr "Помощь и документация"
#: ../../include/nav.php:89
msgid "Apps"
msgstr "Приложения"
#: ../../include/nav.php:67
#: ../../include/nav.php:89
msgid "Addon applications, utilities, games"
msgstr ""
msgstr "Дополнительные приложения, утилиты, игры"
#: ../../include/nav.php:69
#: ../../include/nav.php:91
msgid "Search site content"
msgstr ""
msgstr "Поиск по сайту"
#: ../../include/nav.php:79
#: ../../include/nav.php:101
msgid "Conversations on this site"
msgstr ""
msgstr "Беседы на этом сайте"
#: ../../include/nav.php:81
#: ../../include/nav.php:103
msgid "Directory"
msgstr "Каталог"
#: ../../include/nav.php:81
#: ../../include/nav.php:103
msgid "People directory"
msgstr ""
msgstr "Каталог участников"
#: ../../include/nav.php:91
msgid "Network"
msgstr "Сеть"
#: ../../include/nav.php:91
#: ../../include/nav.php:113
msgid "Conversations from your friends"
msgstr "Беседы с друзьями"
#: ../../include/nav.php:121
msgid "Friend Requests"
msgstr "Запросы на добавление в список друзей"
#: ../../include/nav.php:123
msgid "See all notifications"
msgstr "Посмотреть все уведомления"
#: ../../include/nav.php:124
msgid "Mark all system notifications seen"
msgstr ""
#: ../../include/nav.php:93
msgid "Your posts and conversations"
msgstr ""
#: ../../include/nav.php:99
msgid "Notifications"
msgstr "Уведомления"
#: ../../include/nav.php:99
msgid "Friend requests"
msgstr ""
#: ../../include/nav.php:102
#: ../../include/nav.php:128
msgid "Private mail"
msgstr ""
msgstr "Личная почта"
#: ../../include/nav.php:105
#: ../../include/nav.php:129
msgid "Inbox"
msgstr "Входящие"
#: ../../include/nav.php:130
msgid "Outbox"
msgstr "Исходящие"
#: ../../include/nav.php:134
msgid "Manage"
msgstr "Управлять"
#: ../../include/nav.php:105
#: ../../include/nav.php:134
msgid "Manage other pages"
msgstr ""
msgstr "Управление другими страницами"
#: ../../include/nav.php:109
#: ../../include/nav.php:138 ../../boot.php:1186
msgid "Profiles"
msgstr "Профили"
#: ../../include/nav.php:138 ../../boot.php:1186
msgid "Manage/edit profiles"
msgstr ""
msgstr "Управление / редактирование профилей"
#: ../../include/nav.php:110
#: ../../include/nav.php:139
msgid "Manage/edit friends and contacts"
msgstr ""
msgstr "Управление / редактирование друзей и контактов"
#: ../../include/nav.php:117
msgid "Admin"
msgstr ""
#: ../../include/nav.php:117
#: ../../include/nav.php:146
msgid "Site setup and configuration"
msgstr "Установка и конфигурация сайта"
#: ../../include/nav.php:170
msgid "Nothing new here"
msgstr "Ничего нового здесь"
#: ../../include/contact_widgets.php:6
msgid "Add New Contact"
msgstr "Добавить контакт"
#: ../../include/contact_widgets.php:7
msgid "Enter address or web location"
msgstr "Введите адрес или веб-местонахождение"
#: ../../include/contact_widgets.php:8
msgid "Example: bob@example.com, http://example.com/barbara"
msgstr "Пример: bob@example.com, http://example.com/barbara"
#: ../../include/contact_widgets.php:23
#, php-format
msgid "%d invitation available"
msgid_plural "%d invitations available"
msgstr[0] "%d приглашение доступно"
msgstr[1] "%d приглашений доступно"
msgstr[2] "%d приглашений доступно"
#: ../../include/contact_widgets.php:29
msgid "Find People"
msgstr "Поиск людей"
#: ../../include/contact_widgets.php:30
msgid "Enter name or interest"
msgstr "Введите имя или интерес"
#: ../../include/contact_widgets.php:31
msgid "Connect/Follow"
msgstr "Подключиться/Следовать"
#: ../../include/contact_widgets.php:32
msgid "Examples: Robert Morgenstein, Fishing"
msgstr "Примеры: Роберт Morgenstein, Рыбалка"
#: ../../include/contact_widgets.php:36
msgid "Random Profile"
msgstr ""
#: ../../include/auth.php:27
#: ../../include/contact_widgets.php:68
msgid "Networks"
msgstr "Сети"
#: ../../include/contact_widgets.php:71
msgid "All Networks"
msgstr "Все сети"
#: ../../include/contact_widgets.php:98
msgid "Saved Folders"
msgstr ""
#: ../../include/contact_widgets.php:101 ../../include/contact_widgets.php:129
msgid "Everything"
msgstr "Всё"
#: ../../include/contact_widgets.php:126
msgid "Categories"
msgstr "Категории"
#: ../../include/auth.php:35
msgid "Logged out."
msgstr "Выход из системы."
#: ../../include/datetime.php:44 ../../include/datetime.php:46
#: ../../include/auth.php:114
msgid ""
"We encountered a problem while logging in with the OpenID you provided. "
"Please check the correct spelling of the ID."
msgstr ""
#: ../../include/auth.php:114
msgid "The error message was:"
msgstr ""
#: ../../include/datetime.php:43 ../../include/datetime.php:45
msgid "Miscellaneous"
msgstr "Разное"
#: ../../include/datetime.php:105 ../../include/datetime.php:237
#: ../../include/datetime.php:153 ../../include/datetime.php:285
msgid "year"
msgstr "год"
#: ../../include/datetime.php:110 ../../include/datetime.php:238
#: ../../include/datetime.php:158 ../../include/datetime.php:286
msgid "month"
msgstr "месяц"
msgstr "мес."
#: ../../include/datetime.php:115 ../../include/datetime.php:240
#: ../../include/datetime.php:163 ../../include/datetime.php:288
msgid "day"
msgstr "день"
#: ../../include/datetime.php:228
#: ../../include/datetime.php:276
msgid "never"
msgstr ""
msgstr "никогда"
#: ../../include/datetime.php:234
#: ../../include/datetime.php:282
msgid "less than a second ago"
msgstr "менее секунды назад"
msgstr "менее сек. назад"
#: ../../include/datetime.php:237
msgid "years"
msgstr "лет"
#: ../../include/datetime.php:238
msgid "months"
msgstr "месяцев"
#: ../../include/datetime.php:239
#: ../../include/datetime.php:287
msgid "week"
msgstr "неделя"
#: ../../include/datetime.php:239
msgid "weeks"
msgstr "недель"
#: ../../include/datetime.php:240
msgid "days"
msgstr "дней"
#: ../../include/datetime.php:241
#: ../../include/datetime.php:289
msgid "hour"
msgstr "час"
#: ../../include/datetime.php:241
#: ../../include/datetime.php:289
msgid "hours"
msgstr "часов"
msgstr "час."
#: ../../include/datetime.php:242
#: ../../include/datetime.php:290
msgid "minute"
msgstr "минута"
#: ../../include/datetime.php:242
#: ../../include/datetime.php:290
msgid "minutes"
msgstr "минут"
msgstr "мин."
#: ../../include/datetime.php:243
#: ../../include/datetime.php:291
msgid "second"
msgstr "секунда"
#: ../../include/datetime.php:243
#: ../../include/datetime.php:291
msgid "seconds"
msgstr "секунд"
msgstr "сек."
#: ../../include/datetime.php:250
msgid " ago"
msgstr " назад"
#: ../../include/datetime.php:300
#, php-format
msgid "%1$d %2$s ago"
msgstr "%1$d %2$s назад"
#: ../../include/poller.php:418
#: ../../include/datetime.php:472 ../../include/items.php:1688
#, php-format
msgid "%s's birthday"
msgstr ""
#: ../../include/datetime.php:473 ../../include/items.php:1689
#, php-format
msgid "Happy Birthday %s"
msgstr ""
#: ../../include/onepoll.php:399
msgid "From: "
msgstr "От: "
#: ../../include/bbcode.php:116
#: ../../include/bbcode.php:185 ../../include/bbcode.php:406
msgid "Image/photo"
msgstr "Изображение / Фото"
#: ../../include/dba.php:31
#: ../../include/bbcode.php:371 ../../include/bbcode.php:391
msgid "$1 wrote:"
msgstr "$1 написал:"
#: ../../include/bbcode.php:410 ../../include/bbcode.php:411
msgid "Encrypted content"
msgstr ""
#: ../../include/dba.php:41
#, php-format
msgid "Cannot locate DNS info for database server '%s'"
msgstr "Не могу найти информацию для DNS-сервера базы данных '%s'"
#: ../../include/acl_selectors.php:279
#: ../../include/message.php:15 ../../include/message.php:171
msgid "[no subject]"
msgstr "[без темы]"
#: ../../include/acl_selectors.php:286
msgid "Visible to everybody"
msgstr "Видимо всем"
#: ../../include/acl_selectors.php:280
msgid "show"
#: ../../include/enotify.php:16
msgid "Friendica Notification"
msgstr "Friendica уведомления"
#: ../../include/enotify.php:19
msgid "Thank You,"
msgstr "Спасибо,"
#: ../../include/enotify.php:21
#, php-format
msgid "%s Administrator"
msgstr "%s администратор"
#: ../../include/enotify.php:40
#, php-format
msgid "%s <!item_type!>"
msgstr ""
#: ../../include/acl_selectors.php:281
msgid "don't show"
#: ../../include/enotify.php:44
#, php-format
msgid "[Friendica:Notify] New mail received at %s"
msgstr ""
#: ../../include/notifier.php:465
msgid "(no subject)"
msgstr "(без темы)"
#: ../../include/enotify.php:46
#, php-format
msgid "%1$s sent you a new private message at %2$s."
msgstr ""
#: ../../include/items.php:1526
#: ../../include/enotify.php:47
#, php-format
msgid "%1$s sent you %2$s."
msgstr ""
#: ../../include/enotify.php:47
msgid "a private message"
msgstr "личное сообщение"
#: ../../include/enotify.php:48
#, php-format
msgid "Please visit %s to view and/or reply to your private messages."
msgstr ""
#: ../../include/enotify.php:89
#, php-format
msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
msgstr ""
#: ../../include/enotify.php:96
#, php-format
msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
msgstr ""
#: ../../include/enotify.php:104
#, php-format
msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
msgstr ""
#: ../../include/enotify.php:114
#, php-format
msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
msgstr ""
#: ../../include/enotify.php:115
#, php-format
msgid "%s commented on an item/conversation you have been following."
msgstr ""
#: ../../include/enotify.php:118 ../../include/enotify.php:133
#: ../../include/enotify.php:146 ../../include/enotify.php:164
#: ../../include/enotify.php:177
#, php-format
msgid "Please visit %s to view and/or reply to the conversation."
msgstr ""
#: ../../include/enotify.php:125
#, php-format
msgid "[Friendica:Notify] %s posted to your profile wall"
msgstr ""
#: ../../include/enotify.php:127
#, php-format
msgid "%1$s posted to your profile wall at %2$s"
msgstr ""
#: ../../include/enotify.php:129
#, php-format
msgid "%1$s posted to [url=%2$s]your wall[/url]"
msgstr ""
#: ../../include/enotify.php:140
#, php-format
msgid "[Friendica:Notify] %s tagged you"
msgstr ""
#: ../../include/enotify.php:141
#, php-format
msgid "%1$s tagged you at %2$s"
msgstr ""
#: ../../include/enotify.php:142
#, php-format
msgid "%1$s [url=%2$s]tagged you[/url]."
msgstr ""
#: ../../include/enotify.php:154
#, php-format
msgid "[Friendica:Notify] %1$s poked you"
msgstr ""
#: ../../include/enotify.php:155
#, php-format
msgid "%1$s poked you at %2$s"
msgstr ""
#: ../../include/enotify.php:156
#, php-format
msgid "%1$s [url=%2$s]poked you[/url]."
msgstr ""
#: ../../include/enotify.php:171
#, php-format
msgid "[Friendica:Notify] %s tagged your post"
msgstr ""
#: ../../include/enotify.php:172
#, php-format
msgid "%1$s tagged your post at %2$s"
msgstr ""
#: ../../include/enotify.php:173
#, php-format
msgid "%1$s tagged [url=%2$s]your post[/url]"
msgstr ""
#: ../../include/enotify.php:184
msgid "[Friendica:Notify] Introduction received"
msgstr "[Friendica:Сообщение] получен запрос"
#: ../../include/enotify.php:185
#, php-format
msgid "You've received an introduction from '%1$s' at %2$s"
msgstr ""
#: ../../include/enotify.php:186
#, php-format
msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
msgstr ""
#: ../../include/enotify.php:189 ../../include/enotify.php:207
#, php-format
msgid "You may visit their profile at %s"
msgstr ""
#: ../../include/enotify.php:191
#, php-format
msgid "Please visit %s to approve or reject the introduction."
msgstr "Посетите %s для подтверждения или отказа запроса."
#: ../../include/enotify.php:198
msgid "[Friendica:Notify] Friend suggestion received"
msgstr ""
#: ../../include/enotify.php:199
#, php-format
msgid "You've received a friend suggestion from '%1$s' at %2$s"
msgstr ""
#: ../../include/enotify.php:200
#, php-format
msgid ""
"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
msgstr ""
#: ../../include/enotify.php:205
msgid "Name:"
msgstr "Имя:"
#: ../../include/enotify.php:206
msgid "Photo:"
msgstr "Фото:"
#: ../../include/enotify.php:209
#, php-format
msgid "Please visit %s to approve or reject the suggestion."
msgstr ""
#: ../../include/follow.php:32
msgid "Connect URL missing."
msgstr "Connect-URL отсутствует."
#: ../../include/follow.php:59
msgid ""
"This site is not configured to allow communications with other networks."
msgstr "Данный сайт не настроен так, чтобы держать связь с другими сетями."
#: ../../include/follow.php:60 ../../include/follow.php:80
msgid "No compatible communication protocols or feeds were discovered."
msgstr "Обнаружены несовместимые протоколы связи или каналы."
#: ../../include/follow.php:78
msgid "The profile address specified does not provide adequate information."
msgstr "Указанный адрес профиля не дает адекватной информации."
#: ../../include/follow.php:82
msgid "An author or name was not found."
msgstr "Автор или имя не найдены."
#: ../../include/follow.php:84
msgid "No browser URL could be matched to this address."
msgstr "Нет URL браузера, который соответствует этому адресу."
#: ../../include/follow.php:86
msgid ""
"Unable to match @-style Identity Address with a known protocol or email "
"contact."
msgstr ""
#: ../../include/follow.php:87
msgid "Use mailto: in front of address to force email check."
msgstr ""
#: ../../include/follow.php:93
msgid ""
"The profile address specified belongs to a network which has been disabled "
"on this site."
msgstr "Указанный адрес профиля принадлежит сети, недоступной на этом сайта."
#: ../../include/follow.php:103
msgid ""
"Limited profile. This person will be unable to receive direct/personal "
"notifications from you."
msgstr "Ограниченный профиль. Этот человек не сможет получить прямые / личные уведомления от вас."
#: ../../include/follow.php:205
msgid "Unable to retrieve contact information."
msgstr "Невозможно получить контактную информацию."
#: ../../include/follow.php:259
msgid "following"
msgstr "следует"
#: ../../include/items.php:3299
msgid "A new person is sharing with you at "
msgstr "Новый человек делится с вами"
#: ../../include/items.php:3299
msgid "You have a new follower at "
msgstr "У вас есть новый фолловер на "
#: ../../include/conversation.php:23
msgid "event"
#: ../../include/items.php:3980
msgid "Archives"
msgstr ""
#: ../../include/conversation.php:213 ../../include/conversation.php:488
#: ../../include/conversation.php:489
#, php-format
msgid "View %s's profile"
msgstr "Просмотреть профиль %s"
#: ../../include/user.php:38
msgid "An invitation is required."
msgstr "Требуется приглашение."
#: ../../include/conversation.php:222 ../../include/conversation.php:501
#, php-format
msgid "%s from %s"
msgstr "%s от %s"
#: ../../include/user.php:43
msgid "Invitation could not be verified."
msgstr "Приглашение не может быть проверено."
#: ../../include/conversation.php:230
msgid "View in context"
msgstr "Смотреть в контексте"
#: ../../include/user.php:51
msgid "Invalid OpenID url"
msgstr "Неверный URL OpenID"
#: ../../include/conversation.php:301
msgid "See more posts like this"
msgstr "Просмотреть другие сообщения, похожие на это"
#: ../../include/user.php:66
msgid "Please enter the required information."
msgstr "Пожалуйста, введите необходимую информацию."
#: ../../include/conversation.php:329
#, php-format
msgid "See all %d comments"
msgstr "Просмотреть все %d комментариев"
#: ../../include/user.php:80
msgid "Please use a shorter name."
msgstr "Пожалуйста, используйте более короткое имя."
#: ../../include/conversation.php:427
msgid "Select"
msgstr "Выберите"
#: ../../include/user.php:82
msgid "Name too short."
msgstr "Имя слишком короткое."
#: ../../include/conversation.php:429
msgid "toggle star status"
msgstr "переключить статус"
#: ../../include/user.php:97
msgid "That doesn't appear to be your full (First Last) name."
msgstr "Кажется, что это ваше неполное (Имя Фамилия) имя."
#: ../../include/conversation.php:490
msgid "to"
msgstr "к"
#: ../../include/user.php:102
msgid "Your email domain is not among those allowed on this site."
msgstr "Домен вашего адреса электронной почты не относится к числу разрешенных на этом сайте."
#: ../../include/conversation.php:491
msgid "Wall-to-Wall"
msgstr "Стена-на-Стену"
#: ../../include/user.php:105
msgid "Not a valid email address."
msgstr "Неверный адрес электронной почты."
#: ../../include/conversation.php:492
msgid "via Wall-To-Wall:"
msgstr "через Стена-на-Стену:"
#: ../../include/user.php:115
msgid "Cannot use that email."
msgstr "Нельзя использовать этот Email."
#: ../../include/conversation.php:534
msgid "Delete Selected Items"
msgstr "Удалить выбранные позиции"
#: ../../include/user.php:121
msgid ""
"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
"must also begin with a letter."
msgstr "Ваш \"ник\" может содержать только \"a-z\", \"0-9\", \"-\", и \"_\", а также должен начинаться с буквы."
#: ../../include/conversation.php:608
msgid "View status"
msgstr "Просмотреть статус"
#: ../../include/user.php:127 ../../include/user.php:225
msgid "Nickname is already registered. Please choose another."
msgstr "Такой ник уже зарегистрирован. Пожалуйста, выберите другой."
#: ../../include/conversation.php:609
msgid "View profile"
msgstr "Просмотреть профиль"
#: ../../include/user.php:137
msgid ""
"Nickname was once registered here and may not be re-used. Please choose "
"another."
msgstr ""
#: ../../include/conversation.php:610
msgid "View photos"
msgstr "Просмотреть фото"
#: ../../include/user.php:153
msgid "SERIOUS ERROR: Generation of security keys failed."
msgstr "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась."
#: ../../include/conversation.php:611
msgid "View recent"
msgstr "Просмотреть последние"
#: ../../include/user.php:211
msgid "An error occurred during registration. Please try again."
msgstr "Ошибка при регистрации. Пожалуйста, попробуйте еще раз."
#: ../../include/conversation.php:613
#: ../../include/user.php:246
msgid "An error occurred creating your default profile. Please try again."
msgstr "Ошибка создания вашего профиля. Пожалуйста, попробуйте еще раз."
#: ../../include/security.php:22
msgid "Welcome "
msgstr "Добро пожаловать, "
#: ../../include/security.php:23
msgid "Please upload a profile photo."
msgstr "Пожалуйста, загрузите фотографию профиля."
#: ../../include/security.php:26
msgid "Welcome back "
msgstr "Добро пожаловать обратно, "
#: ../../include/security.php:344
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.php:111
msgid "stopped following"
msgstr "остановлено следование"
#: ../../include/Contact.php:220 ../../include/conversation.php:734
msgid "Poke"
msgstr ""
#: ../../include/Contact.php:221 ../../include/conversation.php:728
msgid "View Status"
msgstr ""
#: ../../include/Contact.php:222 ../../include/conversation.php:729
msgid "View Profile"
msgstr ""
#: ../../include/Contact.php:223 ../../include/conversation.php:730
msgid "View Photos"
msgstr ""
#: ../../include/Contact.php:224 ../../include/Contact.php:237
#: ../../include/conversation.php:731
msgid "Network Posts"
msgstr ""
#: ../../include/Contact.php:225 ../../include/Contact.php:237
#: ../../include/conversation.php:732
msgid "Edit Contact"
msgstr ""
#: ../../include/Contact.php:226 ../../include/Contact.php:237
#: ../../include/conversation.php:733
msgid "Send PM"
msgstr "Отправить ЛС"
#: ../../include/conversation.php:663
#: ../../include/conversation.php:206
#, php-format
msgid "%1$s poked %2$s"
msgstr ""
#: ../../include/conversation.php:290
msgid "post/item"
msgstr ""
#: ../../include/conversation.php:291
#, php-format
msgid "%1$s marked %2$s's %3$s as favorite"
msgstr "%1$s пометил %2$s %3$s как Фаворит"
#: ../../include/conversation.php:545 ../../object/Item.php:218
msgid "Categories:"
msgstr ""
#: ../../include/conversation.php:546 ../../object/Item.php:219
msgid "Filed under:"
msgstr ""
#: ../../include/conversation.php:630
msgid "remove"
msgstr "удалить"
#: ../../include/conversation.php:634
msgid "Delete Selected Items"
msgstr "Удалить выбранные позиции"
#: ../../include/conversation.php:792
#, php-format
msgid "%s likes this."
msgstr "%s нравится это."
#: ../../include/conversation.php:663
#: ../../include/conversation.php:792
#, php-format
msgid "%s doesn't like this."
msgstr "%s не нравится это."
#: ../../include/conversation.php:667
#: ../../include/conversation.php:796
#, php-format
msgid "<span %1$s>%2$d people</span> like this."
msgstr "<span %1$s>%2$d чел.</span> нравится это."
#: ../../include/conversation.php:669
#: ../../include/conversation.php:798
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this."
msgstr "<span %1$s>%2$d чел.</span> не нравится это."
#: ../../include/conversation.php:675
#: ../../include/conversation.php:804
msgid "and"
msgstr "и"
#: ../../include/conversation.php:678
#: ../../include/conversation.php:807
#, php-format
msgid ", and %d other people"
msgstr ", и %d других чел."
#: ../../include/conversation.php:679
#: ../../include/conversation.php:808
#, php-format
msgid "%s like this."
msgstr "%s нравится это."
#: ../../include/conversation.php:679
#: ../../include/conversation.php:808
#, php-format
msgid "%s don't like this."
msgstr "%s не нравится это."
#: ../../include/conversation.php:698
#: ../../include/conversation.php:832 ../../include/conversation.php:849
msgid "Visible to <strong>everybody</strong>"
msgstr "Видимое <strong>всем</strong>"
#: ../../include/conversation.php:700
msgid "Please enter a YouTube link:"
msgstr "Пожалуйста, введите ссылку YouTube:"
#: ../../include/conversation.php:834 ../../include/conversation.php:851
msgid "Please enter a video link/URL:"
msgstr ""
#: ../../include/conversation.php:701
msgid "Please enter a video(.ogg) link/URL:"
msgstr "Пожалуйста, введите видео (.ogg) ссылку / URL:"
#: ../../include/conversation.php:835 ../../include/conversation.php:852
msgid "Please enter an audio link/URL:"
msgstr ""
#: ../../include/conversation.php:702
msgid "Please enter an audio(.ogg) link/URL:"
msgstr "Пожалуйста, введите аудио (.ogg) ссылку / URL:"
#: ../../include/conversation.php:836 ../../include/conversation.php:853
msgid "Tag term:"
msgstr ""
#: ../../include/conversation.php:703
#: ../../include/conversation.php:838 ../../include/conversation.php:855
msgid "Where are you right now?"
msgstr "И где вы сейчас?"
#: ../../include/conversation.php:704
msgid "Enter a title for this item"
msgstr "Введите название для данного элемента"
#: ../../include/conversation.php:898
msgid "upload photo"
msgstr "загрузить фото"
#: ../../include/conversation.php:755
msgid "Set title"
msgstr "Установить заголовок"
#: ../../include/conversation.php:900
msgid "attach file"
msgstr "приложить файл"
#: ../../boot.php:410
#: ../../include/conversation.php:902
msgid "web link"
msgstr "веб-ссылка"
#: ../../include/conversation.php:903
msgid "Insert video link"
msgstr "Вставить ссылку видео"
#: ../../include/conversation.php:904
msgid "video link"
msgstr "видео-ссылка"
#: ../../include/conversation.php:905
msgid "Insert audio link"
msgstr "Вставить ссылку аудио"
#: ../../include/conversation.php:906
msgid "audio link"
msgstr "аудио-ссылка"
#: ../../include/conversation.php:908
msgid "set location"
msgstr "установить местонахождение"
#: ../../include/conversation.php:910
msgid "clear location"
msgstr "убрать местонахождение"
#: ../../include/conversation.php:917
msgid "permissions"
msgstr "разрешения"
#: ../../include/plugin.php:389 ../../include/plugin.php:391
msgid "Click here to upgrade."
msgstr ""
#: ../../include/plugin.php:397
msgid "This action exceeds the limits set by your subscription plan."
msgstr ""
#: ../../include/plugin.php:402
msgid "This action is not available under your subscription plan."
msgstr ""
#: ../../boot.php:573
msgid "Delete this item?"
msgstr "Удалить этот элемент?"
#: ../../boot.php:636
#: ../../boot.php:576
msgid "show fewer"
msgstr "показать меньше"
#: ../../boot.php:783
#, php-format
msgid "Update %s failed. See error logs."
msgstr ""
#: ../../boot.php:785
#, php-format
msgid "Update Error at %s"
msgstr ""
#: ../../boot.php:886
msgid "Create a New Account"
msgstr "Создать новый аккаунт"
#: ../../boot.php:643
#: ../../boot.php:914
msgid "Nickname or Email address: "
msgstr "Ник или адрес электронной почты: "
#: ../../boot.php:644
#: ../../boot.php:915
msgid "Password: "
msgstr "Пароль: "
#: ../../boot.php:649
msgid "Nickname/Email/OpenID: "
msgstr "Ник / Email / OpenID: "
#: ../../boot.php:918
msgid "Or login using OpenID: "
msgstr ""
#: ../../boot.php:650
msgid "Password (if not OpenID): "
msgstr "Пароль (если не OpenID): "
#: ../../boot.php:653
#: ../../boot.php:924
msgid "Forgot your password?"
msgstr "Забыли пароль?"
#: ../../boot.php:853
msgid "Connect"
msgstr "Подключиться"
#: ../../boot.php:1035
msgid "Requested account is not available."
msgstr ""
#: ../../boot.php:872
msgid ", "
msgstr ", "
#: ../../boot.php:1112
msgid "Edit profile"
msgstr "Редактировать профиль"
#: ../../boot.php:884
msgid "Status:"
msgstr "Статус:"
#: ../../boot.php:1178
msgid "Message"
msgstr ""
#: ../../boot.php:975
#: ../../boot.php:1300 ../../boot.php:1386
msgid "g A l F d"
msgstr "g A l F d"
#: ../../boot.php:993
msgid "Birthday Reminders"
msgstr "Напоминания о днях рождения"
#: ../../boot.php:1301 ../../boot.php:1387
msgid "F d"
msgstr "F d"
#: ../../boot.php:994
msgid "Birthdays this week:"
msgstr "Дни рождения на этой неделе:"
#: ../../boot.php:995
msgid "(Adjusted for local time)"
msgstr "(С поправкой на местное время)"
#: ../../boot.php:1006
#: ../../boot.php:1346 ../../boot.php:1427
msgid "[today]"
msgstr "[сегодня]"
#: ../../index.php:209
msgid "Not Found"
msgstr "Не найдено"
#: ../../boot.php:1358
msgid "Birthday Reminders"
msgstr "Напоминания о днях рождения"
#: ../../index.php:210
msgid "Page not found."
msgstr "Страница не найдена."
#: ../../boot.php:1359
msgid "Birthdays this week:"
msgstr "Дни рождения на этой неделе:"
#: ../../boot.php:1420
msgid "[No description]"
msgstr "[без описания]"
#: ../../boot.php:1438
msgid "Event Reminders"
msgstr "Напоминания о мероприятиях"
#: ../../boot.php:1439
msgid "Events this week:"
msgstr "Мероприятия на этой неделе:"
#: ../../boot.php:1668
msgid "Status Messages and Posts"
msgstr ""
#: ../../boot.php:1675
msgid "Profile Details"
msgstr ""
#: ../../boot.php:1692
msgid "Events and Calendar"
msgstr ""
#: ../../boot.php:1699
msgid "Only You Can See This"
msgstr ""

View file

@ -1,109 +1,136 @@
<?php
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<10 || $n%100>=20) ? 1 : 2);;
}
;
$a->strings["Post successful."] = "Успешно добавлено.";
$a->strings["[Embedded content - reload page to view]"] = "[Встроенное содержание - перезагрузите страницу для просмотра]";
$a->strings["Contact settings applied."] = "Установки контакта приняты.";
$a->strings["Contact update failed."] = "Обновление контакта неудачное.";
$a->strings["Permission denied."] = "Нет разрешения.";
$a->strings["Contact not found."] = "Контакт не найден.";
$a->strings["Repair Contact Settings"] = "Восстановить установки контакта";
$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact will stop working."] = "<strong>ВНИМАНИЕ: Это крайне важно</strong> и если вы введете неверную информацию, ваша связь с этим контактом перестанет работать.";
$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ВНИМАНИЕ: Это крайне важно!</strong> Если вы введете неверную информацию, ваша связь с этим контактом перестанет работать.";
$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Пожалуйста, нажмите клавишу вашего браузера 'Back' или 'Назад' <strong>сейчас</strong>, если вы не уверены, что делаете на этой странице.";
$a->strings["Return to contact editor"] = "";
$a->strings["Name"] = "Имя";
$a->strings["Account Nickname"] = "Ник аккаунта";
$a->strings["@Tagname - overrides Name/Nickname"] = "";
$a->strings["Account URL"] = "URL аккаунта";
$a->strings["Friend Request URL"] = "URL запроса в друзья";
$a->strings["Friend Confirm URL"] = "URL подтверждения друга";
$a->strings["Notification Endpoint URL"] = "URL эндпоинта уведомления";
$a->strings["Poll/Feed URL"] = "URL опроса/ленты";
$a->strings["New photo from this URL"] = "Новое фото из этой URL";
$a->strings["Submit"] = "Подтвердить";
$a->strings["Help:"] = "Помощь:";
$a->strings["Help"] = "Помощь";
$a->strings["Not Found"] = "Не найдено";
$a->strings["Page not found."] = "Страница не найдена.";
$a->strings["File exceeds size limit of %d"] = "Файл превышает предельный размер %d";
$a->strings["File upload failed."] = "Загрузка файла не удалась.";
$a->strings["Friend suggestion sent."] = "";
$a->strings["Suggest Friends"] = "";
$a->strings["Suggest a friend for %s"] = "";
$a->strings["Status"] = "Статус";
$a->strings["Profile"] = "Профиль";
$a->strings["Photos"] = "Фото";
$a->strings["Events"] = "";
$a->strings["Personal Notes"] = "";
$a->strings["Create New Event"] = "";
$a->strings["Previous"] = "";
$a->strings["Next"] = "";
$a->strings["l, F j"] = "";
$a->strings["Edit event"] = "";
$a->strings["Friend suggestion sent."] = "Приглашение в друзья отправлено.";
$a->strings["Suggest Friends"] = "Предложить друзей";
$a->strings["Suggest a friend for %s"] = "Предложить друга для %s.";
$a->strings["Event title and start time are required."] = "";
$a->strings["l, F j"] = "l, j F";
$a->strings["Edit event"] = "Редактировать мероприятие";
$a->strings["link to source"] = "ссылка на источник";
$a->strings["hour:minute"] = "";
$a->strings["Event details"] = "";
$a->strings["Format is %s %s. Starting date and Description are required."] = "";
$a->strings["Event Starts:"] = "";
$a->strings["Finish date/time is not known or not relevant"] = "";
$a->strings["Event Finishes:"] = "";
$a->strings["Adjust for viewer timezone"] = "";
$a->strings["Description:"] = "";
$a->strings["Location:"] = "Местоположение:";
$a->strings["Share this event"] = "";
$a->strings["Events"] = "Мероприятия";
$a->strings["Create New Event"] = "Создать новое мероприятие";
$a->strings["Previous"] = "Назад";
$a->strings["Next"] = "Далее";
$a->strings["hour:minute"] = "час:минута";
$a->strings["Event details"] = "Сведения о мероприятии";
$a->strings["Format is %s %s. Starting date and Title are required."] = "";
$a->strings["Event Starts:"] = "Начало мероприятия:";
$a->strings["Required"] = "";
$a->strings["Finish date/time is not known or not relevant"] = "Дата/время окончания не известны, или не указаны";
$a->strings["Event Finishes:"] = "Окончание мероприятия:";
$a->strings["Adjust for viewer timezone"] = "Настройка часового пояса";
$a->strings["Description:"] = "Описание:";
$a->strings["Location:"] = "Откуда:";
$a->strings["Title:"] = "";
$a->strings["Share this event"] = "Поделитесь этим мероприятием";
$a->strings["Cancel"] = "Отмена";
$a->strings["Tag removed"] = "Ключевое слово удалено";
$a->strings["Remove Item Tag"] = "Удалить ключевое слово";
$a->strings["Select a tag to remove: "] = "Выберите ключевое слово для удаления: ";
$a->strings["Remove"] = "Удалить";
$a->strings["%s welcomes %s"] = "%s приглашает %s";
$a->strings["%s welcomes %s"] = "%s приветствует %s";
$a->strings["Authorize application connection"] = "Разрешить связь с приложением";
$a->strings["Return to your app and insert this Securty Code:"] = "Вернитесь в ваше приложение и задайте этот код:";
$a->strings["Please login to continue."] = "Пожалуйста, войдите для продолжения.";
$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "";
$a->strings["Yes"] = "Да";
$a->strings["No"] = "Нет";
$a->strings["Photo Albums"] = "Фотоальбомы";
$a->strings["Contact Photos"] = "Фотографии контакта";
$a->strings["everybody"] = "все";
$a->strings["Contact information unavailable"] = "Контактная информация недоступна";
$a->strings["Upload New Photos"] = "Загрузить новые фото";
$a->strings["everybody"] = "каждый";
$a->strings["Contact information unavailable"] = "Информация о контакте недоступна";
$a->strings["Profile Photos"] = "Фотографии профиля";
$a->strings["Album not found."] = "Альбом не найден.";
$a->strings["Delete Album"] = "Удалить альбом";
$a->strings["Delete Photo"] = "Удалить фото";
$a->strings["was tagged in a"] = "отмечен/а/ в";
$a->strings["photo"] = "фото";
$a->strings["by"] = "от";
$a->strings["by"] = "с";
$a->strings["Image exceeds size limit of "] = "Размер фото превышает лимит ";
$a->strings["Image file is empty."] = "";
$a->strings["Image file is empty."] = "Файл изображения пуст.";
$a->strings["Unable to process image."] = "Невозможно обработать фото.";
$a->strings["Image upload failed."] = "Загрузка фото неудачная.";
$a->strings["Public access denied."] = "Свободный доступ закрыт.";
$a->strings["No photos selected"] = "Не выбрано фото.";
$a->strings["Access to this item is restricted."] = "";
$a->strings["Access to this item is restricted."] = "Доступ к этому пункту ограничен.";
$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "";
$a->strings["You have used %1$.2f Mbytes of photo storage."] = "";
$a->strings["Upload Photos"] = "Загрузить фото";
$a->strings["New album name: "] = "Название нового альбома: ";
$a->strings["or existing album name: "] = "или название существующего альбома: ";
$a->strings["Do not show a status post for this upload"] = "Не показывать статус-сообщение для этой закачки";
$a->strings["Permissions"] = "Разрешения";
$a->strings["Edit Album"] = "Редактировать альбом";
$a->strings["View Photo"] = "Просмотреть фото";
$a->strings["Show Newest First"] = "";
$a->strings["Show Oldest First"] = "";
$a->strings["View Photo"] = "Просмотр фото";
$a->strings["Permission denied. Access to this item may be restricted."] = "Нет разрешения. Доступ к этому элементу ограничен.";
$a->strings["Photo not available"] = "Фото недоступно";
$a->strings["View photo"] = "Просмотр фото";
$a->strings["Edit photo"] = "Редактировать фото";
$a->strings["Use as profile photo"] = "Использовать как фото профиля";
$a->strings["Private Message"] = "Личное сообщение";
$a->strings["View Full Size"] = "Просмотреть полный размер";
$a->strings["Tags: "] = "Ключевые слова: ";
$a->strings["[Remove any tag]"] = "[Удалить любое ключевое слово]";
$a->strings["Rotate CW (right)"] = "";
$a->strings["Rotate CCW (left)"] = "";
$a->strings["New album name"] = "Название нового альбома";
$a->strings["Caption"] = "Подпись";
$a->strings["Add a Tag"] = "Добавить ключевое слово";
$a->strings["Add a Tag"] = "Добавить ключевое слово (таг)";
$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
$a->strings["I like this (toggle)"] = "Мне нравится это (флаг)";
$a->strings["I don't like this (toggle)"] = "Мне не нравится это (флаг)";
$a->strings["I like this (toggle)"] = "Нравится";
$a->strings["I don't like this (toggle)"] = "Не нравится";
$a->strings["Share"] = "Поделиться";
$a->strings["Please wait"] = "Пожалуйста, подождите";
$a->strings["This is you"] = "Это вы";
$a->strings["Comment"] = "Комментарий";
$a->strings["Preview"] = "предварительный просмотр";
$a->strings["Delete"] = "Удалить";
$a->strings["Recent Photos"] = "Последние фото";
$a->strings["Upload New Photos"] = "Загрузить новые фотографии";
$a->strings["View Album"] = "Просмотреть альбом";
$a->strings["Not available."] = "";
$a->strings["Community"] = "";
$a->strings["Recent Photos"] = "Последние фото";
$a->strings["Not available."] = "Недоступно.";
$a->strings["Community"] = "Сообщество";
$a->strings["No results."] = "Нет результатов.";
$a->strings["Shared content is covered by the <a href=\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons Attribution 3.0</a> license."] = "Общий контент покрывается лицензией <a href=\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons Attribution 3.0</a>.";
$a->strings["Item not found"] = "Пункт не найден";
$a->strings["This is Friendica, version"] = "Это Friendica, версия";
$a->strings["running at web location"] = "работает на веб-узле";
$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "";
$a->strings["Bug reports and issues: please visit"] = "Отчет об ошибках и проблемах: пожалуйста, посетите";
$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "";
$a->strings["Installed plugins/addons/apps:"] = "";
$a->strings["No installed plugins/addons/apps"] = "Нет установленных плагинов / добавок / приложений";
$a->strings["Item not found"] = "Элемент не найден";
$a->strings["Edit post"] = "Редактировать сообщение";
$a->strings["Post to Email"] = "Отправить на Email";
$a->strings["Edit"] = "Редактировать";
@ -114,182 +141,294 @@ $a->strings["Insert YouTube video"] = "Вставить видео YouTube";
$a->strings["Insert Vorbis [.ogg] video"] = "Вставить Vorbis [.ogg] видео";
$a->strings["Insert Vorbis [.ogg] audio"] = "Вставить Vorbis [.ogg] аудио";
$a->strings["Set your location"] = "Задать ваше местоположение";
$a->strings["Clear browser location"] = "Очистить местоположение браузера";
$a->strings["Clear browser location"] = "Очистить местонахождение браузера";
$a->strings["Permission settings"] = "Настройки разрешений";
$a->strings["CC: email addresses"] = "CC: адреса электронной почты";
$a->strings["CC: email addresses"] = "Копии на email адреса";
$a->strings["Public post"] = "Публичное сообщение";
$a->strings["Set title"] = "Установить заголовок";
$a->strings["Categories (comma-separated list)"] = "Категории (список через запятую)";
$a->strings["Example: bob@example.com, mary@example.com"] = "Пример: bob@example.com, mary@example.com";
$a->strings["This introduction has already been accepted."] = "Эта краткая информация уже была принята.";
$a->strings["This introduction has already been accepted."] = "Этот запрос был уже принят.";
$a->strings["Profile location is not valid or does not contain profile information."] = "Местоположение профиля является недопустимым или не содержит информацию о профиле.";
$a->strings["Warning: profile location has no identifiable owner name."] = "Внимание: местоположение профиля не имеет идентифицируемого имени владельца.";
$a->strings["Warning: profile location has no profile photo."] = "Внимание: местоположение профиля не имеет еще фотографии профиля.";
$a->strings["%d required parameter was not found at the given location"] = array(
0 => "%d требуемый параметр не был найден в заданном месте",
1 => "%d требуемые параметры не были найдены в заданном месте",
2 => "%d требуемые параметры не были найдены в заданном месте",
1 => "%d требуемых параметров не были найдены в заданном месте",
2 => "%d требуемых параметров не были найдены в заданном месте",
);
$a->strings["Introduction complete."] = "Краткая информация заполнена.";
$a->strings["Introduction complete."] = "Запрос создан.";
$a->strings["Unrecoverable protocol error."] = "Неисправимая ошибка протокола.";
$a->strings["Profile unavailable."] = "Профиль недоступен.";
$a->strings["%s has received too many connection requests today."] = "К %s пришло сегодня слишком много запросов на подключение.";
$a->strings["Spam protection measures have been invoked."] = "Были применены меры защиты от спама.";
$a->strings["Friends are advised to please try again in 24 hours."] = "Друзья советуют попробовать еще раз в ближайшие 24 часа.";
$a->strings["Invalid locator"] = "Недопустимый локатор";
$a->strings["Invalid email address."] = "";
$a->strings["This account has not been configured for email. Request failed."] = "";
$a->strings["Unable to resolve your name at the provided location."] = "Не удается установить ваше имя на предложенном местоположении.";
$a->strings["You have already introduced yourself here."] = "Вы уже ввели информацию о себе здесь.";
$a->strings["Apparently you are already friends with %s."] = "Похоже, что вы уже друзья с %s.";
$a->strings["Invalid profile URL."] = "Неверный URL профиля.";
$a->strings["Disallowed profile URL."] = "Запрещенный URL профиля.";
$a->strings["Failed to update contact record."] = "Не удалось обновить запись контакта.";
$a->strings["Your introduction has been sent."] = "Ваша краткая информация отправлена.";
$a->strings["Please login to confirm introduction."] = "Пожалуйста, войдите с паролем для подтверждения краткой информации.";
$a->strings["Your introduction has been sent."] = "Ваш запрос отправлен.";
$a->strings["Please login to confirm introduction."] = "Для подтверждения запроса войдите пожалуйста с паролем.";
$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Неверно идентифицирован вход. Пожалуйста, войдите в <strong>этот</strong> профиль.";
$a->strings["Hide this contact"] = "";
$a->strings["Welcome home %s."] = "Добро пожаловать домой, %s!";
$a->strings["Please confirm your introduction/connection request to %s."] = "Пожалуйста, подтвердите краткую информацию / запрос на подключение к %s.";
$a->strings["Confirm"] = "Подтвердить";
$a->strings["[Name Withheld]"] = "[Имя не разглашается]";
$a->strings["Introduction received at "] = "Краткая информация получена ";
$a->strings["Administrator"] = "Администратор";
$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "";
$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "";
$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "";
$a->strings["Friend/Connection Request"] = "Запрос в друзья / на подключение";
$a->strings["Examples: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, testuser@identi.ca"] = "Примеры: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, testuser@identi.ca";
$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Примеры: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, testuser@identi.ca";
$a->strings["Please answer the following:"] = "Пожалуйста, ответьте следующее:";
$a->strings["Does %s know you?"] = "";
$a->strings["Yes"] = "Да";
$a->strings["No"] = "Нет";
$a->strings["Does %s know you?"] = "%s знает вас?";
$a->strings["Add a personal note:"] = "Добавить личную заметку:";
$a->strings["Please enter your 'Identity Address' from one of the following supported social networks:"] = "Пожалуйста, введите ваш 'идентификационный адрес' одной из следующих поддерживаемых социальных сетей:";
$a->strings["Friendika"] = "Friendika";
$a->strings["Friendica"] = "Friendica";
$a->strings["StatusNet/Federated Social Web"] = "StatusNet / Federated Social Web";
$a->strings["Private (secure) network"] = "Частная (защищенная) сеть";
$a->strings["Public (insecure) network"] = "Общественная (незащищенная) сеть";
$a->strings["Diaspora"] = "Diaspora";
$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "";
$a->strings["Your Identity Address:"] = "Ваш идентификационный адрес:";
$a->strings["Submit Request"] = "Отправить запрос";
$a->strings["Could not create/connect to database."] = "Не удается создать / подключиться к базе данных.";
$a->strings["Connected to database."] = "Подключено к базе данных.";
$a->strings["Proceed with Installation"] = "Приступить к установке";
$a->strings["Your Friendika site database has been installed."] = "Ваша база данных сайта Friendika установлена.";
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "ВАЖНО: Вам нужно будет [вручную] установить запланированное задание для регистратора.";
$a->strings["Please see the file \"INSTALL.txt\"."] = "Пожалуйста, смотрите файл \"INSTALL.txt\".";
$a->strings["Proceed to registration"] = "Приступить к регистрации";
$a->strings["Database import failed."] = "Импорт базы данных неудачный.";
$a->strings["Friendica Social Communications Server - Setup"] = "";
$a->strings["Could not connect to database."] = "Не удалось подключиться к базе данных.";
$a->strings["Could not create table."] = "Не удалось создать таблицу.";
$a->strings["Your Friendica site database has been installed."] = "База данных сайта установлена.";
$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью PhpMyAdmin или MySQL.";
$a->strings["Welcome to Friendika."] = "Добро пожаловать в Friendika!";
$a->strings["Friendika Social Network"] = "Социальная сеть Friendika";
$a->strings["Installation"] = "Установка";
$a->strings["In order to install Friendika we need to know how to connect to your database."] = "";
$a->strings["Please see the file \"INSTALL.txt\"."] = "Пожалуйста, смотрите файл \"INSTALL.txt\".";
$a->strings["System check"] = "";
$a->strings["Check again"] = "Проверить еще раз";
$a->strings["Database connection"] = "Подключение к базе данных";
$a->strings["In order to install Friendica we need to know how to connect to your database."] = "";
$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Пожалуйста, свяжитесь с вашим хостинг-провайдером или администратором сайта, если у вас есть вопросы об этих параметрах.";
$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "";
$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Базы данных, указанная ниже, должна уже существовать. Если этого нет, пожалуйста, создайте ее перед продолжением.";
$a->strings["Database Server Name"] = "Имя сервера базы данных";
$a->strings["Database Login Name"] = "Логин базы данных";
$a->strings["Database Login Password"] = "Пароль базы данных";
$a->strings["Database Name"] = "Имя базы данных";
$a->strings["Site administrator email address"] = "Адрес электронной почты администратора сайта";
$a->strings["Your account email address must match this in order to use the web admin panel."] = "";
$a->strings["Please select a default timezone for your website"] = "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта";
$a->strings["Site administrator email address. Your account email address must match this in order to use the web admin panel."] = "";
$a->strings["Site settings"] = "Настройки сайта";
$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Не удалось найти PATH веб-сервера в установках PHP.";
$a->strings["This is required. Please adjust the configuration file .htconfig.php accordingly."] = "Это необходимо. Пожалуйста, измените файл конфигурации .htconfig.php соответственно.";
$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "";
$a->strings["PHP executable path"] = "PHP executable path";
$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "";
$a->strings["Command line PHP"] = "Command line PHP";
$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Не включено \"register_argc_argv\" в установках PHP.";
$a->strings["This is required for message delivery to work."] = "Это необходимо для работы доставки сообщений.";
$a->strings["PHP register_argc_argv"] = "";
$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Ошибка: функция \"openssl_pkey_new\" в этой системе не в состоянии генерировать ключи шифрования";
$a->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\".";
$a->strings["Generate encryption keys"] = "Генерация шифрованых ключей";
$a->strings["libCurl PHP module"] = "libCurl PHP модуль";
$a->strings["GD graphics PHP module"] = "GD graphics PHP модуль";
$a->strings["OpenSSL PHP module"] = "OpenSSL PHP модуль";
$a->strings["mysqli PHP module"] = "mysqli PHP модуль";
$a->strings["mb_string PHP module"] = "mb_string PHP модуль";
$a->strings["Apache mod_rewrite module"] = "";
$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Ошибка: необходим модуль веб-сервера Apache mod-rewrite, но он не установлен.";
$a->strings["Error: libCURL PHP module required but not installed."] = "Ошибка: необходим libCURL PHP модуль, но он не установлен.";
$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Ошибка: необходим PHP модуль GD графики с поддержкой JPEG, но он не установлен.";
$a->strings["Error: openssl PHP module required but not installed."] = "Ошибка: необходим PHP модуль OpenSSL, но он не установлен.";
$a->strings["Error: mysqli PHP module required but not installed."] = "Ошибка: необходим PHP модуль MySQLi, но он не установлен.";
$a->strings["Error: mb_string PHP module required but not installed."] = "";
$a->strings["Error: mb_string PHP module required but not installed."] = "Ошибка: необходим PHP модуль mb_string, но он не установлен.";
$a->strings["The web installer needs to be able to create a file called \".htconfig.php\ in the top folder of your web server and it is unable to do so."] = "Веб-инсталлятору требуется создать файл с именем \". htconfig.php\" в верхней папке веб-сервера, но он не в состоянии это сделать.";
$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Это наиболее частые параметры разрешений, когда веб-сервер не может записать файлы в папке - даже если вы можете.";
$a->strings["Please check with your site documentation or support people to see if this situation can be corrected."] = "Пожалуйста, посмотрите документацию вашего сайта или обратитесь к другим за поддержкой, чтобы убедиться, что эта ситуация может быть исправлена.";
$a->strings["If not, you may be required to perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Если нет, вам может потребоваться выполнить установку вручную. Пожалуйста, посмотрите файл \"INSTALL.txt\" для получения инструкций.";
$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "";
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "";
$a->strings[".htconfig.php is writable"] = ".htconfig.php is writable";
$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
$a->strings["Url rewrite is working"] = "";
$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Файл конфигурации базы данных \".htconfig.php\" не могла быть записан. Пожалуйста, используйте приложенный текст, чтобы создать конфигурационный файл в корневом каталоге веб-сервера.";
$a->strings["Errors encountered creating database tables."] = "Обнаружены ошибки при создании таблиц базы данных.";
$a->strings["[Embedded content - reload page to view]"] = "[Встроенный контент - перезагрузите страницу для просмотра]";
$a->strings["<h1>What next</h1>"] = "";
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "ВАЖНО: Вам нужно будет [вручную] установить запланированное задание для регистратора.";
$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
$a->strings["Time Conversion"] = "История общения";
$a->strings["Friendika provides this service for sharing events with other networks and friends in unknown timezones."] = "";
$a->strings["UTC time: %s"] = "UTC время: %s";
$a->strings["Current timezone: %s"] = "Ваш часовой пояс: %s";
$a->strings["Converted localtime: %s"] = "Ваше изменённое время: %s";
$a->strings["Please select your timezone:"] = "Выберите пожалуйста ваш часовой пояс:";
$a->strings["Poke/Prod"] = "";
$a->strings["poke, prod or do other things to somebody"] = "";
$a->strings["Recipient"] = "";
$a->strings["Choose what you wish to do to recipient"] = "";
$a->strings["Make this post private"] = "";
$a->strings["Profile Match"] = "Похожие профили";
$a->strings["No keywords to match. Please add keywords to your default profile."] = "";
$a->strings["No keywords to match. Please add keywords to your default profile."] = "Нет соответствующих ключевых слов. Пожалуйста, добавьте ключевые слова для вашего профиля по умолчанию.";
$a->strings["is interested in:"] = "";
$a->strings["Connect"] = "Подключить";
$a->strings["No matches"] = "Нет соответствий";
$a->strings["Remote privacy information not available."] = "Личная информация удаленно недоступна.";
$a->strings["Visible to:"] = "Кто может видеть:";
$a->strings["No such group"] = "Нет такой группы";
$a->strings["Group is empty"] = "Группа пуста";
$a->strings["Group: "] = "Группа: ";
$a->strings["Select"] = "Выберите";
$a->strings["View %s's profile @ %s"] = "";
$a->strings["%s from %s"] = "%s с %s";
$a->strings["View in context"] = "Смотреть в контексте";
$a->strings["%d comment"] = array(
0 => "%d комментарий",
1 => "%d комментариев",
2 => "%d комментариев",
);
$a->strings["comment"] = array(
0 => "",
1 => "",
2 => "комментарий",
);
$a->strings["show more"] = "показать больше";
$a->strings["like"] = "";
$a->strings["dislike"] = "не нравитса";
$a->strings["Share this"] = "";
$a->strings["share"] = "делиться";
$a->strings["Bold"] = "";
$a->strings["Italic"] = "";
$a->strings["Underline"] = "";
$a->strings["Quote"] = "";
$a->strings["Code"] = "";
$a->strings["Image"] = "";
$a->strings["Link"] = "";
$a->strings["Video"] = "";
$a->strings["add star"] = "пометить";
$a->strings["remove star"] = "убрать метку";
$a->strings["toggle star status"] = "переключить статус";
$a->strings["starred"] = "помечено";
$a->strings["add tag"] = "добавить ключевое слово (таг)";
$a->strings["save to folder"] = "сохранить в папке";
$a->strings["to"] = "к";
$a->strings["Wall-to-Wall"] = "Стена-на-Стену";
$a->strings["via Wall-To-Wall:"] = "через Стена-на-Стену:";
$a->strings["Welcome to %s"] = "Добро пожаловать на %s!";
$a->strings["Invalid request identifier."] = "Неверный идентификатор запроса.";
$a->strings["Discard"] = "Отказаться";
$a->strings["Ignore"] = "Игнорировать";
$a->strings["Pending Friend/Connect Notifications"] = "Ожидающие друзья / Уведомления о подключении";
$a->strings["System"] = "Система";
$a->strings["Network"] = "Сеть";
$a->strings["Personal"] = "Персонал";
$a->strings["Home"] = "Главная";
$a->strings["Introductions"] = "Запросы";
$a->strings["Messages"] = "Сообщения";
$a->strings["Show Ignored Requests"] = "Показать проигнорированные запросы";
$a->strings["Hide Ignored Requests"] = "Скрыть проигнорированные запросы";
$a->strings["Notification type: "] = "Тип уведомления: ";
$a->strings["Friend Suggestion"] = "";
$a->strings["suggested by %s"] = "";
$a->strings["Friend Suggestion"] = "Предложение в друзья";
$a->strings["suggested by %s"] = "предложено юзером %s";
$a->strings["Hide this contact from others"] = "Скрыть этот контакт от других";
$a->strings["Post a new friend activity"] = "";
$a->strings["if applicable"] = "";
$a->strings["Approve"] = "Одобрить";
$a->strings["Claims to be known to you: "] = "Претензии, о которых должно быть вам известно: ";
$a->strings["Claims to be known to you: "] = "Утверждения, о которых должно быть вам известно: ";
$a->strings["yes"] = "да";
$a->strings["no"] = "нет";
$a->strings["Approve as: "] = "Утвердить как: ";
$a->strings["Friend"] = "Друг";
$a->strings["Sharer"] = "Участник";
$a->strings["Fan/Admirer"] = "Фанат / Поклонник";
$a->strings["Friend/Connect Request"] = "Запрос в друзья / на подключение";
$a->strings["New Follower"] = "Новый фолловер";
$a->strings["No notifications."] = "Нет уведомлений.";
$a->strings["Invite Friends"] = "Пригласить друзей";
$a->strings["%d invitation available"] = array(
0 => "",
1 => "",
2 => "",
);
$a->strings["Find People With Shared Interests"] = "Найти людей с общими интересами";
$a->strings["Connect/Follow"] = "Подключиться/Следовать";
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Пример: bob@example.com, http://example.com/barbara";
$a->strings["Follow"] = "Следовать";
$a->strings["No introductions."] = "Запросов нет.";
$a->strings["Notifications"] = "Уведомления";
$a->strings["%s liked %s's post"] = "%s нравится %s сообшение";
$a->strings["%s disliked %s's post"] = "%s не нравится %s сообшение";
$a->strings["%s is now friends with %s"] = "%s теперь друзья с %s";
$a->strings["%s created a new post"] = "%s написал новое сообщение";
$a->strings["%s commented on %s's post"] = "%s прокомментировал %s сообщение";
$a->strings["No more network notifications."] = "Уведомлений из сети больше нет.";
$a->strings["Network Notifications"] = "Уведомления сети";
$a->strings["No more system notifications."] = "Системных уведомлений больше нет.";
$a->strings["System Notifications"] = "Уведомления системы";
$a->strings["No more personal notifications."] = "Персональных уведомлений больше нет.";
$a->strings["Personal Notifications"] = "Личные уведомления";
$a->strings["No more home notifications."] = "";
$a->strings["Home Notifications"] = "";
$a->strings["Could not access contact record."] = "Не удалось получить доступ к записи контакта.";
$a->strings["Could not locate selected profile."] = "Не удается найти выбранный профиль.";
$a->strings["Could not locate selected profile."] = "Не удалось найти выбранный профиль.";
$a->strings["Contact updated."] = "Контакт обновлен.";
$a->strings["Contact has been blocked"] = "Контакт заблокирован";
$a->strings["Contact has been unblocked"] = "Контакт разблокирован";
$a->strings["Contact has been ignored"] = "Контакт проигнорирован";
$a->strings["Contact has been unignored"] = "У контакта отменено игнорирование";
$a->strings["stopped following"] = "остановлено следование";
$a->strings["Contact has been archived"] = "";
$a->strings["Contact has been unarchived"] = "";
$a->strings["Contact has been removed."] = "Контакт удален.";
$a->strings["Mutual Friendship"] = "Взаимная дружба";
$a->strings["is a fan of yours"] = "является вашим поклонником";
$a->strings["you are a fan of"] = "Вы - поклонник";
$a->strings["Privacy Unavailable"] = "Конфиденциальность невозможна";
$a->strings["You are mutual friends with %s"] = "У Вас взаимная дружба с %s";
$a->strings["You are sharing with %s"] = "Вы делитесь с %s";
$a->strings["%s is sharing with you"] = "%s делитса с Вами";
$a->strings["Private communications are not available for this contact."] = "Личные коммуникации недоступны для этого контакта.";
$a->strings["Never"] = "Никогда";
$a->strings["(Update was successful)"] = "(Обновление было успешным)";
$a->strings["(Update was successful)"] = "(Обновление было успешно)";
$a->strings["(Update was not successful)"] = "(Обновление не удалось)";
$a->strings["Suggest friends"] = "";
$a->strings["Suggest friends"] = "Предложить друзей";
$a->strings["Network type: %s"] = "Сеть: %s";
$a->strings["%d contact in common"] = array(
0 => "%d Контакт",
1 => "%d Контактов",
2 => "%d Контактов",
);
$a->strings["View all contacts"] = "Показать все контакты";
$a->strings["Unblock"] = "Разблокировать";
$a->strings["Block"] = "Блокировать";
$a->strings["Toggle Blocked status"] = "";
$a->strings["Unignore"] = "Не игнорировать";
$a->strings["Toggle Ignored status"] = "";
$a->strings["Unarchive"] = "";
$a->strings["Archive"] = "";
$a->strings["Toggle Archive status"] = "";
$a->strings["Repair"] = "Восстановить";
$a->strings["Advanced Contact Settings"] = "";
$a->strings["Communications lost with this contact!"] = "";
$a->strings["Contact Editor"] = "Редактор контакта";
$a->strings["Profile Visibility"] = "Видимость профиля";
$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Пожалуйста, выберите профиль, который вы хотите отображать %s, когда просмотр вашего профиля безопасен.";
$a->strings["Contact Information / Notes"] = "Контактная информация / Заметки";
$a->strings["Online Reputation"] = "Репутация в онлайне";
$a->strings["Occasionally your friends may wish to inquire about this person's online legitimacy."] = "Иногда ваши друзья, возможно, захотят узнать о легитимности в онлайне этого человека.";
$a->strings["You may help them choose whether or not to interact with this person by providing a <em>reputation</em> to guide them."] = "Вы можете помочь им решить, следует ли общаться с этим человеком, предлагая <em>репутацию</em> для ознакомления.";
$a->strings["Please take a moment to elaborate on this selection if you feel it could be helpful to others."] = "Пожалуйста, найдите время, чтобы остановиться на этом выборе, если вы чувствуете, что можете быть полезным для других.";
$a->strings["Visit %s's profile [%s]"] = "";
$a->strings["Contact Information / Notes"] = "Информация о контакте / Заметки";
$a->strings["Edit contact notes"] = "Редактировать заметки контакта";
$a->strings["Visit %s's profile [%s]"] = "Посетить профиль %s [%s]";
$a->strings["Block/Unblock contact"] = "Блокировать / Разблокировать контакт";
$a->strings["Ignore contact"] = "Игнорировать контакт";
$a->strings["Repair contact URL settings"] = "Восстановить установки URL контакта";
$a->strings["Repair contact URL settings (WARNING: Advanced)"] = "Восстановить установки URL контакта (ВНИМАНИЕ: Расширено)";
$a->strings["View conversations"] = "Просмотр общения";
$a->strings["Repair URL settings"] = "Восстановить настройки URL";
$a->strings["View conversations"] = "Просмотр бесед";
$a->strings["Delete contact"] = "Удалить контакт";
$a->strings["Last updated: "] = "Последнее обновление: ";
$a->strings["Update public posts: "] = "Обновить сообщения для всех: ";
$a->strings["Last update:"] = "Последнее обновление: ";
$a->strings["Update public posts"] = "Обновить публичные сообщения";
$a->strings["Update now"] = "Обновить сейчас";
$a->strings["Unblock this contact"] = "Разблокировать этот контакт";
$a->strings["Block this contact"] = "Блокировать этот контакт";
$a->strings["Unignore this contact"] = "Не игнорировать этот контакт";
$a->strings["Ignore this contact"] = "Игнорировать этот контакт";
$a->strings["Currently blocked"] = "В настоящее время заблокирован";
$a->strings["Currently ignored"] = "В настоящее время игнорируется";
$a->strings["Currently archived"] = "";
$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "";
$a->strings["Suggestions"] = "";
$a->strings["Suggest potential friends"] = "";
$a->strings["All Contacts"] = "Все контакты";
$a->strings["Show all contacts"] = "";
$a->strings["Unblocked"] = "";
$a->strings["Only show unblocked contacts"] = "";
$a->strings["Blocked"] = "";
$a->strings["Only show blocked contacts"] = "";
$a->strings["Ignored"] = "";
$a->strings["Only show ignored contacts"] = "";
$a->strings["Archived"] = "";
$a->strings["Only show archived contacts"] = "";
$a->strings["Hidden"] = "";
$a->strings["Only show hidden contacts"] = "";
$a->strings["Mutual Friendship"] = "Взаимная дружба";
$a->strings["is a fan of yours"] = "является вашим поклонником";
$a->strings["you are a fan of"] = "Вы - поклонник";
$a->strings["Edit contact"] = "Редактировать контакт";
$a->strings["Contacts"] = "Контакты";
$a->strings["Show Blocked Connections"] = "Показать заблокированные подключения";
$a->strings["Hide Blocked Connections"] = "Скрыть заблокированные подключения";
$a->strings["Search your contacts"] = "Поиск ваших контактов";
$a->strings["Finding: "] = "Результат поиска: ";
$a->strings["Find"] = "Найти";
$a->strings["Edit contact"] = "Изменить контакт";
$a->strings["No valid account found."] = "";
$a->strings["No valid account found."] = "Не найдено действительного аккаунта.";
$a->strings["Password reset request issued. Check your email."] = "Запрос на сброс пароля принят. Проверьте вашу электронную почту.";
$a->strings["Password reset requested at %s"] = "Запрос на сброс пароля получен %s";
$a->strings["Administrator"] = "Администратор";
$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Запрос не может быть проверен. (Вы, возможно, ранее представляли его.) Попытка сброса пароля неудачная.";
$a->strings["Password Reset"] = "Сброс пароля";
$a->strings["Your password has been reset as requested."] = "Ваш пароль был сброшен по требованию.";
@ -301,39 +440,104 @@ $a->strings["Forgot your Password?"] = "Забыли пароль?";
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Введите адрес электронной почты и подтвердите, что вы хотите сбросить ваш пароль. Затем проверьте свою электронную почту для получения дальнейших инструкций.";
$a->strings["Nickname or Email: "] = "Ник или E-mail: ";
$a->strings["Reset"] = "Сброс";
$a->strings["Account settings"] = "Настройки аккаунта";
$a->strings["Display settings"] = "Параметры дисплея";
$a->strings["Connector settings"] = "Настройки соединителя";
$a->strings["Plugin settings"] = "Настройки плагина";
$a->strings["Connected apps"] = "";
$a->strings["Export personal data"] = "Экспорт личных данных";
$a->strings["Remove account"] = "";
$a->strings["Settings"] = "Настройки";
$a->strings["Missing some important data!"] = "Не хватает важных данных!";
$a->strings["Update"] = "Обновление";
$a->strings["Failed to connect with email account using the settings provided."] = "Не удалось подключиться к аккаунту e-mail, используя указанные настройки.";
$a->strings["Email settings updated."] = "Настройки эл. почты обновлены.";
$a->strings["Passwords do not match. Password unchanged."] = "Пароли не совпадают. Пароль не изменен.";
$a->strings["Empty passwords are not allowed. Password unchanged."] = "Пустые пароли не допускаются. Пароль не изменен.";
$a->strings["Password changed."] = "Пароль изменен.";
$a->strings["Password update failed. Please try again."] = "Обновление пароля не удалось. Пожалуйста, попробуйте еще раз.";
$a->strings["Failed to connect with email account using the settings provided."] = "";
$a->strings[" Please use a shorter name."] = " Пожалуйста, используйте более короткое имя.";
$a->strings[" Name too short."] = " Имя слишком короткое.";
$a->strings[" Not valid email."] = " Неверный e-mail.";
$a->strings[" Cannot change to that email."] = " Невозможно изменить на этот e-mail.";
$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "";
$a->strings["Private forum has no privacy permissions and no default privacy group."] = "";
$a->strings["Settings updated."] = "Настройки обновлены.";
$a->strings["Account settings"] = "";
$a->strings["Plugin settings"] = "";
$a->strings["Add application"] = "Добавить приложения";
$a->strings["Consumer Key"] = "Consumer Key";
$a->strings["Consumer Secret"] = "Consumer Secret";
$a->strings["Redirect"] = "Перенаправление";
$a->strings["Icon url"] = "URL символа";
$a->strings["You can't edit this application."] = "Вы не можете изменить это приложение.";
$a->strings["Connected Apps"] = "Подключенные приложения";
$a->strings["Client key starts with"] = "Ключ клиента начинается с";
$a->strings["No name"] = "Нет имени";
$a->strings["Remove authorization"] = "Удалить авторизацию";
$a->strings["No Plugin settings configured"] = "Нет сконфигурированных настроек плагина";
$a->strings["Plugin Settings"] = "Настройки плагина";
$a->strings["Normal Account"] = "Обычный аккаунт";
$a->strings["Built-in support for %s connectivity is %s"] = "Встроенная поддержка для %s подключение %s";
$a->strings["enabled"] = "подключено";
$a->strings["disabled"] = "отключено";
$a->strings["StatusNet"] = "StatusNet";
$a->strings["Email access is disabled on this site."] = "Доступ эл. почты отключен на этом сайте.";
$a->strings["Connector Settings"] = "Настройки соединителя";
$a->strings["Email/Mailbox Setup"] = "Настройка эл. почты / почтового ящика";
$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику.";
$a->strings["Last successful email check:"] = "Последняя успешная проверка электронной почты:";
$a->strings["IMAP server name:"] = "Имя IMAP сервера:";
$a->strings["IMAP port:"] = "Порт IMAP:";
$a->strings["Security:"] = "Безопасность:";
$a->strings["None"] = "Ничего";
$a->strings["Email login name:"] = "Логин эл. почты:";
$a->strings["Email password:"] = "Пароль эл. почты:";
$a->strings["Reply-to address:"] = "Адрес для ответа:";
$a->strings["Send public posts to all email contacts:"] = "Отправлять открытые сообщения на все контакты электронной почты:";
$a->strings["Action after import:"] = "Действие после импорта:";
$a->strings["Mark as seen"] = "";
$a->strings["Move to folder"] = "";
$a->strings["Move to folder:"] = "";
$a->strings["No special theme for mobile devices"] = "";
$a->strings["Display Settings"] = "Параметры дисплея";
$a->strings["Display Theme:"] = "Показать тему:";
$a->strings["Mobile Theme:"] = "";
$a->strings["Update browser every xx seconds"] = "Обновление браузера каждые хх секунд";
$a->strings["Minimum of 10 seconds, no maximum"] = "Минимум 10 секунд, максимума нет";
$a->strings["Number of items to display per page:"] = "";
$a->strings["Maximum of 100 items"] = "";
$a->strings["Don't show emoticons"] = "не показывать emoticons";
$a->strings["Normal Account Page"] = "";
$a->strings["This account is a normal personal profile"] = "Этот аккаунт является обычным персональным профилем";
$a->strings["Soapbox Account"] = "Аккаунт Витрина";
$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Автоматически одобряются все подключения / запросы в друзья, только для чтения поклонниками";
$a->strings["Community/Celebrity Account"] = "Аккаунт Сообщество / Знаменитость";
$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Автоматически одобряются все подключения / запросы в друзья, для чтения и записей поклонников";
$a->strings["Automatic Friend Account"] = "Аккаунт Автоматический друг";
$a->strings["Soapbox Page"] = "";
$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Автоматически одобряются все подключения / запросы в друзья, \"только для чтения\" поклонниками";
$a->strings["Community Forum/Celebrity Account"] = "";
$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Автоматически одобряются все подключения / запросы в друзья, \"для чтения и записей\" поклонников";
$a->strings["Automatic Friend Page"] = "";
$a->strings["Automatically approve all connection/friend requests as friends"] = "Автоматически одобряются все подключения / запросы в друзья, расширяется список друзей";
$a->strings["OpenID:"] = "";
$a->strings["(Optional) Allow this OpenID to login to this account."] = "";
$a->strings["Publish your default profile in your local site directory?"] = "";
$a->strings["Publish your default profile in the global social directory?"] = "";
$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "";
$a->strings["Hide profile details and all your messages from unknown viewers?"] = "Скрыть детали профиля и все ваши сообщения от неизвестных зрителей?";
$a->strings["Private Forum [Experimental]"] = "";
$a->strings["Private forum - approved members only"] = "";
$a->strings["OpenID:"] = "OpenID:";
$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Необязательно) Разрешить этому OpenID входить в этот аккаунт";
$a->strings["Publish your default profile in your local site directory?"] = "Публиковать ваш профиль по умолчанию в вашем локальном каталоге на сайте?";
$a->strings["Publish your default profile in the global social directory?"] = "Публиковать ваш профиль по умолчанию в глобальном социальном каталоге?";
$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Скрывать ваш список контактов/друзей от посетителей вашего профиля по умолчанию?";
$a->strings["Hide your profile details from unknown viewers?"] = "Скрыть данные профиля из неизвестных зрителей?";
$a->strings["Allow friends to post to your profile page?"] = "Разрешить друзьям оставлять сообщения на страницу вашего профиля?";
$a->strings["Allow friends to tag your posts?"] = "Разрешить друзьям отмечять ваши сообщения?";
$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Позвольть предлогать Вам потенциальных друзей?";
$a->strings["Permit unknown people to send you private mail?"] = "";
$a->strings["Profile is <strong>not published</strong>."] = "Профиль <strong>не публикуется</strong>.";
$a->strings["or"] = "или";
$a->strings["Your Identity Address is"] = "Ваш идентификационный адрес";
$a->strings["Automatically expire posts after this many days:"] = "Автоматическое истекание срока действия сообщения после стольких дней:";
$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Если пусто, срок действия сообщений не будет ограничен. Сообщения с истекшим сроком действия будут удалены";
$a->strings["Advanced expiration settings"] = "Настройки расширенного окончания срока действия";
$a->strings["Advanced Expiration"] = "Расширенное окончание срока действия";
$a->strings["Expire posts:"] = "Срок хранения сообщений:";
$a->strings["Expire personal notes:"] = "Срок хранения личных заметок:";
$a->strings["Expire starred posts:"] = "Срок хранения усеянных сообщений:";
$a->strings["Expire photos:"] = "Срок хранения фотографий:";
$a->strings["Only expire posts by others:"] = "";
$a->strings["Account Settings"] = "Настройки аккаунта";
$a->strings["Export Personal Data"] = "Экспорт личных данных";
$a->strings["Password Settings"] = "Настройка пароля";
$a->strings["New Password:"] = "Новый пароль:";
$a->strings["Confirm:"] = "Подтвердите:";
@ -342,76 +546,112 @@ $a->strings["Basic Settings"] = "Основные параметры";
$a->strings["Full Name:"] = "Полное имя:";
$a->strings["Email Address:"] = "Адрес электронной почты:";
$a->strings["Your Timezone:"] = "Ваш часовой пояс:";
$a->strings["Default Post Location:"] = "Местоположение сообщения по умолчанию:";
$a->strings["Default Post Location:"] = "Местонахождение по умолчанию:";
$a->strings["Use Browser Location:"] = "Использовать определение местоположения браузером:";
$a->strings["Display Theme:"] = "Показать тему:";
$a->strings["Security and Privacy Settings"] = "Параметры безопасности и конфиденциальности";
$a->strings["Maximum Friend Requests/Day:"] = "Максимум запросов в друзья в день:";
$a->strings["(to prevent spam abuse)"] = "(для предотвращения спама)";
$a->strings["Default Post Permissions"] = "По умолчанию разрешения на сообщения";
$a->strings["Default Post Permissions"] = "Разрешение на сообщения по умолчанию";
$a->strings["(click to open/close)"] = "(нажмите, чтобы открыть / закрыть)";
$a->strings["Allow friends to post to your profile page:"] = "Разрешить друзьям оставлять сообщения на странице вашего профиля:";
$a->strings["Automatically expire posts after days:"] = "";
$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "";
$a->strings["Maximum private messages per day from unknown people:"] = "";
$a->strings["Notification Settings"] = "Настройка уведомлений";
$a->strings["By default post a status message when:"] = "";
$a->strings["accepting a friend request"] = "";
$a->strings["joining a forum/community"] = "";
$a->strings["making an <em>interesting</em> profile change"] = "";
$a->strings["Send a notification email when:"] = "Отправлять уведомление по электронной почте, когда:";
$a->strings["You receive an introduction"] = "Вы получаете краткую информацию";
$a->strings["Your introductions are confirmed"] = "Ваши сообщения с краткой информацией подтверждены";
$a->strings["You receive an introduction"] = "Вы получили запрос";
$a->strings["Your introductions are confirmed"] = "Ваши запросы подтверждены";
$a->strings["Someone writes on your profile wall"] = "Кто-то пишет на стене вашего профиля";
$a->strings["Someone writes a followup comment"] = "Кто-то пишет последующий комментарий";
$a->strings["You receive a private message"] = "Вы получаете личное сообщение";
$a->strings["Email/Mailbox Setup"] = "Настройка Email / почтового ящика";
$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику.";
$a->strings["Last successful email check:"] = "";
$a->strings["Email access is disabled on this site."] = "Email доступ отключен на этом сайте.";
$a->strings["IMAP server name:"] = "Имя IMAP сервера:";
$a->strings["IMAP port:"] = "Порт IMAP:";
$a->strings["Security:"] = "";
$a->strings["None"] = "";
$a->strings["Email login name:"] = "Email логин:";
$a->strings["Email password:"] = "Email пароль:";
$a->strings["Reply-to address:"] = "";
$a->strings["Send public posts to all email contacts:"] = "Отправлять открытые сообщения на все контакты электронной почты:";
$a->strings["Advanced Page Settings"] = "Дополнительные параметры страницы";
$a->strings["Welcome back %s"] = "С возвращением, %s";
$a->strings["You receive a friend suggestion"] = "";
$a->strings["You are tagged in a post"] = "";
$a->strings["You are poked/prodded/etc. in a post"] = "";
$a->strings["Advanced Account/Page Type Settings"] = "";
$a->strings["Change the behaviour of this account for special situations"] = "";
$a->strings["Manage Identities and/or Pages"] = "Управление идентификацией и / или страницами";
$a->strings["(Toggle between different identities or community/group pages which share your account details.)"] = "(Переключение между различными идентификациями или страницами сообществ / групп, которые делают публичными данные своего аккаунта.)";
$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "";
$a->strings["Select an identity to manage: "] = "Выберите идентификацию для управления: ";
$a->strings["View Conversations"] = "";
$a->strings["View New Items"] = "";
$a->strings["View Any Items"] = "";
$a->strings["View Starred Items"] = "";
$a->strings["Search Results For:"] = "";
$a->strings["Remove term"] = "Удалить элемент";
$a->strings["Saved Searches"] = "запомненные поиски";
$a->strings["add"] = "добавить";
$a->strings["Commented Order"] = "Прокомментированный запрос";
$a->strings["Sort by Comment Date"] = "";
$a->strings["Posted Order"] = "Отправленный запрос";
$a->strings["Sort by Post Date"] = "";
$a->strings["Posts that mention or involve you"] = "";
$a->strings["New"] = "Новый";
$a->strings["Activity Stream - by date"] = "";
$a->strings["Starred"] = "Помеченный";
$a->strings["Favourite Posts"] = "";
$a->strings["Shared Links"] = "";
$a->strings["Interesting Links"] = "";
$a->strings["Warning: This group contains %s member from an insecure network."] = array(
0 => "Внимание: Эта группа содержит %s участника с незащищенной сети.",
1 => "Внимание: Эта группа содержит %s участников с незащищенной сети.",
2 => "Внимание: Эта группа содержит %s участников с незащищенной сети.",
);
$a->strings["Private messages to this group are at risk of public disclosure."] = "Личные сообщения к этой группе находятся под угрозой обнародования.";
$a->strings["No such group"] = "Нет такой группы";
$a->strings["Group is empty"] = "Группа пуста";
$a->strings["Group: "] = "Группа: ";
$a->strings["Contact: "] = "Контакт: ";
$a->strings["Private messages to this person are at risk of public disclosure."] = "Личные сообщения этому человеку находятся под угрозой обнародования.";
$a->strings["Invalid contact."] = "Недопустимый контакт.";
$a->strings["Personal Notes"] = "Личные заметки";
$a->strings["Save"] = "Сохранить";
$a->strings["Welcome to Friendika"] = "";
$a->strings["New Member Checklist"] = "";
$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page."] = "";
$a->strings["On your <em>Settings</em> page - change your initial password. Also make a note of your Identity Address. This will be useful in making friends."] = "";
$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "";
$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "";
$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "";
$a->strings["Enter your email access information on your Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "";
$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "";
$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "";
$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Connect</em> dialog."] = "";
$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "";
$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "";
$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "";
$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "";
$a->strings["No recipient selected."] = "Не выбран получатель.";
$a->strings["Unable to check your home location."] = "";
$a->strings["Message could not be sent."] = "Сообщение не может быть отправлено.";
$a->strings["Message collection failure."] = "";
$a->strings["Message sent."] = "Сообщение отправлено.";
$a->strings["No recipient."] = "";
$a->strings["Please enter a link URL:"] = "Пожалуйста, введите URL ссылки:";
$a->strings["Send Private Message"] = "Отправить личное сообщение";
$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "";
$a->strings["To:"] = "Кому:";
$a->strings["Subject:"] = "Тема:";
$a->strings["Your message:"] = "Ваше сообщение:";
$a->strings["Welcome to Friendica"] = "Добро пожаловать в Friendica";
$a->strings["New Member Checklist"] = "Новый контрольный список участников";
$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "";
$a->strings["Getting Started"] = "";
$a->strings["Friendica Walk-Through"] = "";
$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "";
$a->strings["Go to Your Settings"] = "";
$a->strings["On your <em>Settings</em> page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "";
$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Просмотрите другие установки, в частности, параметры конфиденциальности. Неопубликованные пункты каталога с частными номерами телефона. В общем, вам, вероятно, следует опубликовать свою информацию - если все ваши друзья и потенциальные друзья точно знают, как вас найти.";
$a->strings["Profile"] = "Профиль";
$a->strings["Upload Profile Photo"] = "Загрузить фото профиля";
$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Загрузите фотографию профиля, если вы еще не сделали это. Исследования показали, что люди с реальными фотографиями имеют в десять раз больше шансов подружиться, чем люди, которые этого не делают.";
$a->strings["Edit Your Profile"] = "";
$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Отредактируйте профиль <strong>по умолчанию</strong> на свой ​​вкус. Просмотрите установки для сокрытия вашего списка друзей и сокрытия профиля от неизвестных посетителей.";
$a->strings["Profile Keywords"] = "";
$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Установите некоторые публичные ключевые слова для вашего профиля по умолчанию, которые описывают ваши интересы. Мы можем быть в состоянии найти других людей со схожими интересами и предложить дружбу.";
$a->strings["Connecting"] = "";
$a->strings["Facebook"] = "Facebook";
$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Авторизуйте Facebook Connector , если у вас уже есть аккаунт на Facebook, и мы (по желанию) импортируем всех ваших друзей и беседы с Facebook.";
$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "";
$a->strings["Importing Emails"] = "";
$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "";
$a->strings["Go to Your Contacts Page"] = "";
$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "";
$a->strings["Go to Your Site's Directory"] = "";
$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "На странице каталога вы можете найти других людей в этой сети или на других похожих сайтах. Ищите ссылки <em>Подключить</em> или <em>Следовать</em> на страницах их профилей. Укажите свой собственный адрес идентификации, если требуется.";
$a->strings["Finding New People"] = "";
$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "";
$a->strings["Groups"] = "Группы";
$a->strings["Group Your Contacts"] = "";
$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "После того, как вы найдете несколько друзей, организуйте их в группы частных бесед в боковой панели на странице Контакты, а затем вы можете взаимодействовать с каждой группой приватно или на вашей странице Сеть.";
$a->strings["Why Aren't My Posts Public?"] = "";
$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "";
$a->strings["Getting Help"] = "";
$a->strings["Go to the Help Section"] = "";
$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Наши страницы <strong>помощи</strong> могут проконсультировать о подробностях и возможностях программы и ресурса.";
$a->strings["Item not available."] = "Пункт не доступен.";
$a->strings["Item was not found."] = "Пункт не был найден.";
$a->strings["Group created."] = "Группа создана.";
$a->strings["Could not create group."] = "Не удается создать группу.";
$a->strings["Could not create group."] = "Не удалось создать группу.";
$a->strings["Group not found."] = "Группа не найдена.";
$a->strings["Group name changed."] = "Название группы изменено.";
$a->strings["Permission denied"] = "Доступ запрещен";
@ -419,81 +659,63 @@ $a->strings["Create a group of contacts/friends."] = "Создать групп
$a->strings["Group Name: "] = "Название группы: ";
$a->strings["Group removed."] = "Группа удалена.";
$a->strings["Unable to remove group."] = "Не удается удалить группу.";
$a->strings["Click on a contact to add or remove."] = "Нажмите на контакт, чтобы добавить или удалить.";
$a->strings["Group Editor"] = "Редактор группы";
$a->strings["Group Editor"] = "Редактор групп";
$a->strings["Members"] = "Участники";
$a->strings["All Contacts"] = "Все контакты";
$a->strings["Click on a contact to add or remove."] = "Нажмите на контакт, чтобы добавить или удалить.";
$a->strings["Invalid profile identifier."] = "Недопустимый идентификатор профиля.";
$a->strings["Profile Visibility Editor"] = "Редактор видимости профиля";
$a->strings["Visible To"] = "Видимый для";
$a->strings["All Contacts (with secure profile access)"] = "Все контакты (с безопасным доступом к профилю)";
$a->strings["View Contacts"] = "Просмотр контактов";
$a->strings["No contacts."] = "Нет контактов.";
$a->strings["An invitation is required."] = "";
$a->strings["Invitation could not be verified."] = "";
$a->strings["Invalid OpenID url"] = "Неверный URL OpenID";
$a->strings["Please enter the required information."] = "Пожалуйста, введите необходимую информацию.";
$a->strings["Please use a shorter name."] = "Пожалуйста, используйте более короткое имя.";
$a->strings["Name too short."] = "Имя слишком короткое.";
$a->strings["That doesn't appear to be your full (First Last) name."] = "Кажется, что это ваше неполное (Имя Фамилия) имя.";
$a->strings["Your email domain is not among those allowed on this site."] = "Домен вашего адреса электронной почты не относится к числу разрешенных на этом сайте.";
$a->strings["Not a valid email address."] = "Неверный адрес электронной почты.";
$a->strings["Cannot use that email."] = "Нельзя использовать этот Email.";
$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Ваш \"ник\" может содержать только \"a-z\", \"0-9\", \"-\", и \"_\", а также должен начинаться с буквы.";
$a->strings["Nickname is already registered. Please choose another."] = "Такой ник уже зарегистрирован. Пожалуйста, выберите другой.";
$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась.";
$a->strings["An error occurred during registration. Please try again."] = "Ошибка при регистрации. Пожалуйста, попробуйте еще раз.";
$a->strings["An error occurred creating your default profile. Please try again."] = "Ошибка создания вашего профиля по умолчанию. Пожалуйста, попробуйте еще раз.";
$a->strings["View Contacts"] = "Просмотр контактов";
$a->strings["Registration details for %s"] = "Подробности регистрации для %s";
$a->strings["Registration successful. Please check your email for further instructions."] = "Регистрация успешна. Пожалуйста, проверьте свою электронную почту для получения дальнейших инструкций.";
$a->strings["Failed to send email message. Here is the message that failed."] = "Невозможно отправить сообщение электронной почтой. Вот сообщение, которое не удалось.";
$a->strings["Your registration can not be processed."] = "Ваша регистрация не может быть обработана.";
$a->strings["Registration request at %s"] = "Запрос на регистрацию на %s";
$a->strings["Your registration is pending approval by the site owner."] = "Ваша регистрация в ожидании одобрения владельцем сайта.";
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "";
$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Вы можете (по желанию), заполнить эту форму с помощью OpenID, поддерживая ваш OpenID и нажав клавишу \"Регистрация\".";
$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Если вы не знакомы с OpenID, пожалуйста, оставьте это поле пустым и заполните остальные элементы.";
$a->strings["Your OpenID (optional): "] = "Ваш OpenID (необязательно):";
$a->strings["Include your profile in member directory?"] = "Включить ваш профиль в каталог участников?";
$a->strings["Membership on this site is by invitation only."] = "";
$a->strings["Your invitation ID: "] = "";
$a->strings["Membership on this site is by invitation only."] = "Членство на сайте только по приглашению.";
$a->strings["Your invitation ID: "] = "ID вашего приглашения:";
$a->strings["Registration"] = "Регистрация";
$a->strings["Your Full Name (e.g. Joe Smith): "] = "Ваше полное имя (например, Joe Smith): ";
$a->strings["Your Email Address: "] = "Ваш адрес электронной почты: ";
$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Выбор ник профиля. Он должен начинаться с буквы. Адрес вашего профиля на данном сайте будет в этом случае '<strong>nickname@\$sitename</strong>'.";
$a->strings["Choose a nickname: "] = "Выберите ник: ";
$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Выбор псевдонима профиля. Он должен начинаться с буквы. Адрес вашего профиля на данном сайте будет в этом случае '<strong>nickname@\$sitename</strong>'.";
$a->strings["Choose a nickname: "] = "Выберите псевдоним: ";
$a->strings["Register"] = "Регистрация";
$a->strings["People Search"] = "Поиск людей";
$a->strings["status"] = "статус";
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s нравится %3\$s от %2\$s ";
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s не нравится %3\$s от %2\$s ";
$a->strings["This is Friendika version"] = "Это версия Friendika";
$a->strings["running at web location"] = "работает на веб-узле";
$a->strings["Shared content within the Friendika network is provided under the <a href=\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons Attribution 3.0 license</a>"] = "Общий контент в сети Friendika предоставляется по лицензии <a href=\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons Attribution 3.0</a>";
$a->strings["Please visit <a href=\"http://project.friendika.com\">Project.Friendika.com</a> to learn more about the Friendika project."] = "Пожалуйста, посетите <a href=\"http://project.friendika.com\">Project.Friendika.com</a>, чтобы узнать больше о проекте Friendika.";
$a->strings["Bug reports and issues: please visit"] = "Отчеты об ошибках и проблемы: пожалуйста, посетите";
$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendika - dot com"] = "Предложения, похвалы, пожертвования и т.д. - пожалуйста, напишите Email \"Info\" на Friendika - dot com";
$a->strings["Installed plugins/addons/apps"] = "Установленные плагины / добавки / приложения";
$a->strings["No installed plugins/addons/apps"] = "Нет установленных плагинов / добавок / приложений";
$a->strings["Item not found."] = "Пункт не найден.";
$a->strings["Access denied."] = "Доступ запрещен.";
$a->strings["Photos"] = "Фото";
$a->strings["Files"] = "";
$a->strings["Account approved."] = "Аккаунт утвержден.";
$a->strings["Registration revoked for %s"] = "Регистрация отменена для %s";
$a->strings["Please login."] = "Пожалуйста, войдите с паролем.";
$a->strings["Unable to locate original post."] = "Не удалось найти оригинальный пост.";
$a->strings["Empty post discarded."] = "Пустое сообщение отбрасывается.";
$a->strings["Wall Photos"] = "Фото стены";
$a->strings["noreply"] = "без ответа";
$a->strings["Administrator@"] = "Администратор @";
$a->strings["%s commented on an item at %s"] = "%s оставил/а/ комментарий на %s";
$a->strings["%s posted to your profile wall at %s"] = "% S. написал/а/ на стене вашего профиля на %s";
$a->strings["System error. Post not saved."] = "Системная ошибка. Сообщение не сохранено.";
$a->strings["This message was sent to you by %s, a member of the Friendika social network."] = "Это письмо было отправлено вам от %s, участника социальной сети Friendika.";
$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "";
$a->strings["You may visit them online at %s"] = "Вы можете посетить их в онлайне на %s";
$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не хотите получать эти сообщения.";
$a->strings["%s posted an update."] = "%s отправил/а/ обновление.";
$a->strings["%1\$s is currently %2\$s"] = "";
$a->strings["Mood"] = "";
$a->strings["Set your current mood and tell your friends"] = "";
$a->strings["Image uploaded but image cropping failed."] = "Изображение загружено, но обрезка изображения не удалась.";
$a->strings["Image size reduction [%s] failed."] = "Уменьшение размера изображения [%s] не удалось.";
$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "";
$a->strings["Unable to process image"] = "Не удается обработать изображение";
$a->strings["Image exceeds size limit of %d"] = "Изображение превышает предельный размер %d";
$a->strings["Upload File:"] = "Загрузить файл:";
$a->strings["Upload Profile Photo"] = "Загрузить фото профиля";
$a->strings["Select a profile:"] = "";
$a->strings["Upload"] = "Загрузить";
$a->strings["skip this step"] = "пропустить этот шаг";
$a->strings["select a photo from your photo albums"] = "выберите фото из ваших фотоальбомов";
@ -505,145 +727,232 @@ $a->strings["No profile"] = "Нет профиля";
$a->strings["Remove My Account"] = "Удалить мой аккаунт";
$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит.";
$a->strings["Please enter your password for verification:"] = "Пожалуйста, введите свой пароль для проверки:";
$a->strings["No recipient selected."] = "Не выбран получатель.";
$a->strings["[no subject]"] = "[без темы]";
$a->strings["Unable to locate contact information."] = "Не удалось найти контактную информацию.";
$a->strings["Message sent."] = "Сообщение отправлено.";
$a->strings["Message could not be sent."] = "Сообщение не может быть отправлено.";
$a->strings["Messages"] = "Сообщения";
$a->strings["Inbox"] = "Входящие";
$a->strings["Outbox"] = "Исходящие";
$a->strings["New Message"] = "Новое сообщение";
$a->strings["Unable to locate contact information."] = "Не удалось найти контактную информацию.";
$a->strings["Message deleted."] = "Сообщение удалено.";
$a->strings["Conversation removed."] = "История общения удалена.";
$a->strings["Please enter a link URL:"] = "Пожалуйста, введите URL ссылки:";
$a->strings["Send Private Message"] = "Отправить личное сообщение";
$a->strings["To:"] = "Кому:";
$a->strings["Subject:"] = "Тема:";
$a->strings["Your message:"] = "Ваше сообщение:";
$a->strings["Conversation removed."] = "Беседа удалена.";
$a->strings["No messages."] = "Нет сообщений.";
$a->strings["Unknown sender - %s"] = "";
$a->strings["You and %s"] = "";
$a->strings["%s and You"] = "%s и Вы";
$a->strings["Delete conversation"] = "Удалить историю общения";
$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
$a->strings["%d message"] = array(
0 => "%d сообщение",
1 => "%d сообщений",
2 => "%d сообщений",
);
$a->strings["Message not available."] = "Сообщение не доступно.";
$a->strings["Delete message"] = "Удалить сообщение";
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "";
$a->strings["Send Reply"] = "Отправить ответ";
$a->strings["Site"] = "";
$a->strings["Users"] = "";
$a->strings["Plugins"] = "";
$a->strings["Update"] = "";
$a->strings["Logs"] = "";
$a->strings["User registrations waiting for confirmation"] = "";
$a->strings["Item not found."] = "Пункт не найден.";
$a->strings["Administration"] = "";
$a->strings["Summary"] = "";
$a->strings["Registered users"] = "";
$a->strings["Pending registrations"] = "";
$a->strings["Version"] = "";
$a->strings["Active plugins"] = "";
$a->strings["Site settings updated."] = "";
$a->strings["Closed"] = "";
$a->strings["Requires approval"] = "";
$a->strings["Open"] = "";
$a->strings["File upload"] = "";
$a->strings["Policies"] = "";
$a->strings["Advanced"] = "";
$a->strings["Site name"] = "";
$a->strings["Banner/Logo"] = "";
$a->strings["System language"] = "";
$a->strings["System theme"] = "";
$a->strings["Maximum image size"] = "";
$a->strings["Register policy"] = "";
$a->strings["Register text"] = "";
$a->strings["Allowed friend domains"] = "";
$a->strings["Allowed email domains"] = "";
$a->strings["Block public"] = "";
$a->strings["Force publish"] = "";
$a->strings["Global directory update URL"] = "";
$a->strings["Block multiple registrations"] = "";
$a->strings["OpenID support"] = "";
$a->strings["Gravatar support"] = "";
$a->strings["Fullname check"] = "";
$a->strings["UTF-8 Regular expressions"] = "";
$a->strings["Show Community Page"] = "";
$a->strings["Enable OStatus support"] = "";
$a->strings["Only allow Friendika contacts"] = "";
$a->strings["Verify SSL"] = "";
$a->strings["Proxy user"] = "";
$a->strings["Proxy URL"] = "";
$a->strings["Network timeout"] = "";
$a->strings["%s user blocked"] = array(
$a->strings["Friends of %s"] = "%s Друзья";
$a->strings["No friends to display."] = "Нет друзей.";
$a->strings["Theme settings updated."] = "";
$a->strings["Site"] = "Сайт";
$a->strings["Users"] = "Пользователи";
$a->strings["Plugins"] = "Плагины";
$a->strings["Themes"] = "";
$a->strings["DB updates"] = "";
$a->strings["Logs"] = "Журналы";
$a->strings["Admin"] = "Администратор";
$a->strings["Plugin Features"] = "";
$a->strings["User registrations waiting for confirmation"] = "Регистрации пользователей, ожидающие подтверждения";
$a->strings["Normal Account"] = "Обычный аккаунт";
$a->strings["Soapbox Account"] = "Аккаунт Витрина";
$a->strings["Community/Celebrity Account"] = "Аккаунт Сообщество / Знаменитость";
$a->strings["Automatic Friend Account"] = "\"Автоматический друг\" Аккаунт";
$a->strings["Blog Account"] = "";
$a->strings["Private Forum"] = "";
$a->strings["Message queues"] = "";
$a->strings["Administration"] = "Администрация";
$a->strings["Summary"] = "Резюме";
$a->strings["Registered users"] = "Зарегистрированные пользователи";
$a->strings["Pending registrations"] = "Ожидающие регистрации";
$a->strings["Version"] = "Версия";
$a->strings["Active plugins"] = "Активные плагины";
$a->strings["Site settings updated."] = "Установки сайта обновлены.";
$a->strings["Closed"] = "Закрыто";
$a->strings["Requires approval"] = "Требуется подтверждение";
$a->strings["Open"] = "Открыто";
$a->strings["No SSL policy, links will track page SSL state"] = "";
$a->strings["Force all links to use SSL"] = "Заставить все ссылки использовать SSL";
$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "";
$a->strings["File upload"] = "Загрузка файлов";
$a->strings["Policies"] = "Политики";
$a->strings["Advanced"] = "Расширенный";
$a->strings["Site name"] = "Название сайта";
$a->strings["Banner/Logo"] = "Баннер/Логотип";
$a->strings["System language"] = "Системный язык";
$a->strings["System theme"] = "Системная тема";
$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "";
$a->strings["Mobile system theme"] = "";
$a->strings["Theme for mobile devices"] = "";
$a->strings["SSL link policy"] = "";
$a->strings["Determines whether generated links should be forced to use SSL"] = "Ссылки должны быть вынуждены использовать SSL";
$a->strings["Maximum image size"] = "Максимальный размер изображения";
$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "";
$a->strings["Maximum image length"] = "";
$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "";
$a->strings["JPEG image quality"] = "";
$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "";
$a->strings["Register policy"] = "Политика регистрация";
$a->strings["Register text"] = "Текст регистрации";
$a->strings["Will be displayed prominently on the registration page."] = "";
$a->strings["Accounts abandoned after x days"] = "Аккаунт считается после x дней не воспользованным";
$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "";
$a->strings["Allowed friend domains"] = "Разрешенные домены друзей";
$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "";
$a->strings["Allowed email domains"] = "Разрешенные почтовые домены";
$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "";
$a->strings["Block public"] = "Блокировать общественный доступ";
$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "";
$a->strings["Force publish"] = "Принудительная публикация";
$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "";
$a->strings["Global directory update URL"] = "URL обновления глобального каталога";
$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "";
$a->strings["Allow threaded items"] = "";
$a->strings["Allow infinite level threading for items on this site."] = "";
$a->strings["Private posts by default for new users"] = "";
$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "";
$a->strings["Block multiple registrations"] = "Блокировать множественные регистрации";
$a->strings["Disallow users to register additional accounts for use as pages."] = "Запретить пользователям регистрировать дополнительные аккаунты для использования в качестве страниц.";
$a->strings["OpenID support"] = "Поддержка OpenID";
$a->strings["OpenID support for registration and logins."] = "";
$a->strings["Fullname check"] = "Проверка полного имени";
$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "";
$a->strings["UTF-8 Regular expressions"] = "UTF-8 регулярные выражения";
$a->strings["Use PHP UTF8 regular expressions"] = "";
$a->strings["Show Community Page"] = "Показать страницу сообщества";
$a->strings["Display a Community page showing all recent public postings on this site."] = "Показывать страницу сообщества с указанием всех последних публичных сообщений на этом сайте.";
$a->strings["Enable OStatus support"] = "Включить поддержку OStatus";
$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "";
$a->strings["Enable Diaspora support"] = "Включить поддержку Diaspora";
$a->strings["Provide built-in Diaspora network compatibility."] = "";
$a->strings["Only allow Friendica contacts"] = "Позвольть только Friendica контакты";
$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Все контакты должны использовать только Friendica протоколы. Все другие встроенные коммуникационные протоколы отключены.";
$a->strings["Verify SSL"] = "Проверка SSL";
$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "";
$a->strings["Proxy user"] = "Прокси пользователь";
$a->strings["Proxy URL"] = "Прокси URL";
$a->strings["Network timeout"] = "Тайм-аут сети";
$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "";
$a->strings["Delivery interval"] = "";
$a->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."] = "";
$a->strings["Poll interval"] = "";
$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "";
$a->strings["Maximum Load Average"] = "";
$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "";
$a->strings["Update has been marked successful"] = "";
$a->strings["Executing %s failed. Check system logs."] = "";
$a->strings["Update %s was successfully applied."] = "";
$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "";
$a->strings["Update function %s could not be found."] = "";
$a->strings["No failed updates."] = "";
$a->strings["Failed Updates"] = "";
$a->strings["This does not include updates prior to 1139, which did not return a status."] = "";
$a->strings["Mark success (if update was manually applied)"] = "";
$a->strings["Attempt to execute this update step automatically"] = "";
$a->strings["%s user blocked/unblocked"] = array(
0 => "",
1 => "",
2 => "",
);
$a->strings["%s user deleted"] = array(
0 => "",
1 => "",
2 => "",
0 => "%s человек удален",
1 => "%s чел. удалено",
2 => "%s чел. удалено",
);
$a->strings["User '%s' deleted"] = "";
$a->strings["User '%s' unblocked"] = "";
$a->strings["User '%s' blocked"] = "";
$a->strings["select all"] = "";
$a->strings["User '%s' deleted"] = "Пользователь '%s' удален";
$a->strings["User '%s' unblocked"] = "Пользователь '%s' разблокирован";
$a->strings["User '%s' blocked"] = "Пользователь '%s' блокирован";
$a->strings["select all"] = "выбрать все";
$a->strings["User registrations waiting for confirm"] = "Регистрации пользователей, ожидающие подтверждения";
$a->strings["Request date"] = "";
$a->strings["Email"] = "";
$a->strings["Request date"] = "Запрос даты";
$a->strings["Email"] = "Эл. почта";
$a->strings["No registrations."] = "Нет регистраций.";
$a->strings["Deny"] = "Отклонить";
$a->strings["Block"] = "";
$a->strings["Unblock"] = "";
$a->strings["Register date"] = "";
$a->strings["Last login"] = "";
$a->strings["Last item"] = "";
$a->strings["Account"] = "";
$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
$a->strings["Plugin %s disabled."] = "";
$a->strings["Plugin %s enabled."] = "";
$a->strings["Disable"] = "";
$a->strings["Enable"] = "";
$a->strings["Toggle"] = "";
$a->strings["Settings"] = "Настройки";
$a->strings["Log settings updated."] = "";
$a->strings["Clear"] = "";
$a->strings["Debugging"] = "";
$a->strings["Log file"] = "";
$a->strings["Must be writable by web server. Relative to your Friendika index.php."] = "";
$a->strings["Log level"] = "";
$a->strings["Close"] = "";
$a->strings["FTP Host"] = "";
$a->strings["FTP Path"] = "";
$a->strings["FTP User"] = "";
$a->strings["FTP Password"] = "";
$a->strings["Site admin"] = "";
$a->strings["Register date"] = "Дата регистрации";
$a->strings["Last login"] = "Последний вход";
$a->strings["Last item"] = "Последний пункт";
$a->strings["Account"] = "Аккаунт";
$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Выбранные пользователи будут удалены!\\n\\nВсе, что эти пользователи написали на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?";
$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Пользователь {0} будет удален!\\n\\nВсе, что этот пользователь написал на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?";
$a->strings["Plugin %s disabled."] = "Плагин %s отключен.";
$a->strings["Plugin %s enabled."] = "Плагин %s включен.";
$a->strings["Disable"] = "Отключить";
$a->strings["Enable"] = "Включить";
$a->strings["Toggle"] = "Переключить";
$a->strings["Author: "] = "Автор:";
$a->strings["Maintainer: "] = "";
$a->strings["No themes found."] = "";
$a->strings["Screenshot"] = "Скриншот";
$a->strings["[Experimental]"] = "[экспериментально]";
$a->strings["[Unsupported]"] = "[Неподдерживаемое]";
$a->strings["Log settings updated."] = "Настройки журнала обновлены.";
$a->strings["Clear"] = "Очистить";
$a->strings["Debugging"] = "Отладка";
$a->strings["Log file"] = "Лог-файл";
$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "";
$a->strings["Log level"] = "Уровень лога";
$a->strings["Close"] = "Закрыть";
$a->strings["FTP Host"] = "FTP хост";
$a->strings["FTP Path"] = "Путь FTP";
$a->strings["FTP User"] = "FTP пользователь";
$a->strings["FTP Password"] = "FTP пароль";
$a->strings["Requested profile is not available."] = "Запрашиваемый профиль недоступен.";
$a->strings["Access to this profile has been restricted."] = "Доступ к этому профилю ограничен.";
$a->strings["Tips for New Members"] = "";
$a->strings["Tips for New Members"] = "Советы для новых участников";
$a->strings["{0} wants to be your friend"] = "{0} хочет стать Вашим другом";
$a->strings["{0} sent you a message"] = "{0} отправил Вам сообщение";
$a->strings["{0} requested registration"] = "{0} требуемая регистрация";
$a->strings["{0} commented %s's post"] = "{0} прокомментировал сообщение от %s";
$a->strings["{0} liked %s's post"] = "{0} нравится сообщение от %s";
$a->strings["{0} disliked %s's post"] = "{0} не нравится сообщение от %s";
$a->strings["{0} is now friends with %s"] = "{0} теперь друзья с %s";
$a->strings["{0} posted"] = "{0} опубликовано";
$a->strings["{0} tagged %s's post with #%s"] = "{0} пометил сообщение %s с #%s";
$a->strings["{0} mentioned you in a post"] = "{0} упоменул Вас в сообщение";
$a->strings["Contacts who are not members of a group"] = "";
$a->strings["OpenID protocol error. No ID returned."] = "";
$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Аккаунт не найден и OpenID регистрация не допускается на этом сайте.";
$a->strings["Login failed."] = "Войти не удалось.";
$a->strings["Welcome "] = "Добро пожаловать, ";
$a->strings["Please upload a profile photo."] = "Пожалуйста, загрузите фотографию профиля.";
$a->strings["Welcome back "] = "Добро пожаловать обратно, ";
$a->strings["This site is not configured to allow communications with other networks."] = "";
$a->strings["No compatible communication protocols or feeds were discovered."] = "Обнаружены несовместимые протоколы связи или каналы.";
$a->strings["The profile address specified does not provide adequate information."] = "Указанный адрес профиля не дает адекватной информации.";
$a->strings["An author or name was not found."] = "Автор или имя не найдены.";
$a->strings["No browser URL could be matched to this address."] = "Нет URL браузера, который соответствует этому адресу.";
$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Указанный адрес профиля принадлежит сети, недоступной на этом сайта.";
$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Ограниченный профиль. Этот человек не сможет получить прямые / личные уведомления от вас.";
$a->strings["Unable to retrieve contact information."] = "Невозможно получить контактную информацию.";
$a->strings["following"] = "следует";
$a->strings["Contact added"] = "";
$a->strings["Common Friends"] = "Общие друзья";
$a->strings["No contacts in common."] = "";
$a->strings["link"] = "";
$a->strings["Item has been removed."] = "Пункт был удален.";
$a->strings["New mail received at "] = "Новая почта получена ";
$a->strings["Applications"] = "Приложения";
$a->strings["No installed applications."] = "";
$a->strings["No installed applications."] = "Нет установленных приложений.";
$a->strings["Search"] = "Поиск";
$a->strings["Profile not found."] = "Профиль не найден.";
$a->strings["Profile Name is required."] = "Необходимо имя профиля.";
$a->strings["Marital Status"] = "";
$a->strings["Romantic Partner"] = "";
$a->strings["Likes"] = "";
$a->strings["Dislikes"] = "";
$a->strings["Work/Employment"] = "";
$a->strings["Religion"] = "";
$a->strings["Political Views"] = "";
$a->strings["Gender"] = "";
$a->strings["Sexual Preference"] = "";
$a->strings["Homepage"] = "";
$a->strings["Interests"] = "";
$a->strings["Address"] = "";
$a->strings["Location"] = "";
$a->strings["Profile updated."] = "Профиль обновлен.";
$a->strings[" and "] = "";
$a->strings["public profile"] = "";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "";
$a->strings[" - Visit %1\$s's %2\$s"] = "";
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "";
$a->strings["Profile deleted."] = "Профиль удален.";
$a->strings["Profile-"] = "Профиль-";
$a->strings["New profile created."] = "Новый профиль создан.";
$a->strings["Profile unavailable to clone."] = "Профиль недоступен для клонирования.";
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Скрывать ваш список контактов / друзей от посетителей этого профиля?";
$a->strings["Edit Profile Details"] = "Изменить подробности профиля";
$a->strings["Edit Profile Details"] = "Редактировать детали профиля";
$a->strings["View this profile"] = "Просмотреть этот профиль";
$a->strings["Create a new profile using these settings"] = "Создать новый профиль, используя эти настройки";
$a->strings["Clone this profile"] = "Клонировать этот профиль";
@ -652,21 +961,25 @@ $a->strings["Profile Name:"] = "Имя профиля:";
$a->strings["Your Full Name:"] = "Ваше полное имя:";
$a->strings["Title/Description:"] = "Заголовок / Описание:";
$a->strings["Your Gender:"] = "Ваш пол:";
$a->strings["Birthday (%s):"] = "";
$a->strings["Birthday (%s):"] = "День рождения (%s):";
$a->strings["Street Address:"] = "Адрес:";
$a->strings["Locality/City:"] = "Город / Населенный пункт:";
$a->strings["Postal/Zip Code:"] = "Почтовый индекс:";
$a->strings["Country:"] = "Страна:";
$a->strings["Region/State:"] = "Район / Область:";
$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Семейное положение:";
$a->strings["Who: (if applicable)"] = "Кто: (если применимо)";
$a->strings["Who: (if applicable)"] = "Кто: (если требуется)";
$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Примеры: cathy123, Кэти Уильямс, cathy@example.com";
$a->strings["Since [date]:"] = "";
$a->strings["Sexual Preference:"] = "Сексуальные предпочтения:";
$a->strings["Homepage URL:"] = "Адрес домашней странички:";
$a->strings["Hometown:"] = "";
$a->strings["Political Views:"] = "Политические взгляды:";
$a->strings["Religious Views:"] = "Религиозные взгляды:";
$a->strings["Public Keywords:"] = "Общественные ключевые слова:";
$a->strings["Private Keywords:"] = "Личные ключевые слова:";
$a->strings["Likes:"] = "";
$a->strings["Dislikes:"] = "";
$a->strings["Example: fishing photography software"] = "Пример: рыбалка фотографии программное обеспечение";
$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Используется для предложения потенциальным друзьям, могут увидеть другие)";
$a->strings["(Used for searching profiles, never shown to others)"] = "(Используется для поиска профилей, никогда не показывается другим)";
@ -682,70 +995,360 @@ $a->strings["Work/employment"] = "Работа / занятость";
$a->strings["School/education"] = "Школа / образование";
$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Это ваш <strong>публичный</strong> профиль. <br /> Он <strong>может</strong> быть виден каждому, используя Интернет.";
$a->strings["Age: "] = "Возраст: ";
$a->strings["Profiles"] = "Профили";
$a->strings["Edit/Manage Profiles"] = "Редактировать профиль";
$a->strings["Change profile photo"] = "Изменить фото профиля";
$a->strings["Create New Profile"] = "Создать новый профиль";
$a->strings["Profile Image"] = "Фото профиля";
$a->strings["visible to everybody"] = "";
$a->strings["Edit visibility"] = "Изменить видимость";
$a->strings["visible to everybody"] = "видимый всем";
$a->strings["Edit visibility"] = "Редактировать видимость";
$a->strings["Save to Folder:"] = "Сохранить в папку:";
$a->strings["- select -"] = "";
$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s tagged %2\$s's %3\$s в %4\$s";
$a->strings["No potential page delegates located."] = "";
$a->strings["Delegate Page Management"] = "Делегировать управление страницей";
$a->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."] = "";
$a->strings["Existing Page Managers"] = "Существующие менеджеры страницы";
$a->strings["Existing Page Delegates"] = "Существующие уполномоченные страницы";
$a->strings["Potential Delegates"] = "";
$a->strings["Add"] = "Добавить";
$a->strings["No entries."] = "Нет записей.";
$a->strings["Source (bbcode) text:"] = "";
$a->strings["Source (Diaspora) text to convert to BBcode:"] = "";
$a->strings["Source input: "] = "";
$a->strings["bb2html: "] = "";
$a->strings["bb2html2bb: "] = "";
$a->strings["bb2md: "] = "";
$a->strings["bb2md2html: "] = "";
$a->strings["bb2dia2bb: "] = "";
$a->strings["bb2md2html2bb: "] = "";
$a->strings["Source input (Diaspora format): "] = "";
$a->strings["diaspora2bb: "] = "";
$a->strings["Friend Suggestions"] = "Предложения друзей";
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "";
$a->strings["Ignore/Hide"] = "Проигнорировать/Скрыть";
$a->strings["Global Directory"] = "Глобальный каталог";
$a->strings["Normal site view"] = "Стандартный вид сайта";
$a->strings["View all site entries"] = "Посмотреть все записи сайта";
$a->strings["Find on this site"] = "Найти на этом сайте";
$a->strings["Site Directory"] = "Каталог сайта";
$a->strings["Gender: "] = "Пол: ";
$a->strings["Gender:"] = "Пол:";
$a->strings["Status:"] = "Статус:";
$a->strings["Homepage:"] = "Домашняя страничка:";
$a->strings["About:"] = "О себе:";
$a->strings["No entries (some entries may be hidden)."] = "Нет записей (некоторые записи могут быть скрыты).";
$a->strings["%s : Not a valid email address."] = "%s: Неверный адрес электронной почты.";
$a->strings["Please join my network on %s"] = "Пожалуйста, присоединяйтесь к моей сети на %s";
$a->strings["Please join us on Friendica"] = "";
$a->strings["%s : Message delivery failed."] = "%s: Доставка сообщения не удалась.";
$a->strings["%d message sent."] = array(
0 => "%d сообщение отправлено.",
1 => "%d сообщений отправлено.",
2 => "%d сообщений отправлено.",
);
$a->strings["You have no more invitations available"] = "";
$a->strings["You have no more invitations available"] = "У вас нет больше приглашений";
$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "";
$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "";
$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "";
$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "";
$a->strings["Send invitations"] = "Отправить приглашения";
$a->strings["Enter email addresses, one per line:"] = "Введите адреса электронной почты, по одному в строке:";
$a->strings["Please join my social network on %s"] = "Пожалуйста, присоединяйтесь к моей социальной сети на %s";
$a->strings["To accept this invitation, please visit:"] = "Чтобы принять это приглашение, пожалуйста, посетите:";
$a->strings["You will need to supply this invitation code: \$invite_code"] = "";
$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "";
$a->strings["You will need to supply this invitation code: \$invite_code"] = "Вам нужно будет предоставить этот код приглашения: \$invite_code";
$a->strings["Once you have registered, please connect with me via my profile page at:"] = "После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через мою страницу профиля по адресу:";
$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "";
$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "";
$a->strings["Response from remote site was not understood."] = "Ответ от удаленного сайта не был понят.";
$a->strings["Unexpected response from remote site: "] = "Неожиданный ответ от удаленного сайта: ";
$a->strings["Confirmation completed successfully."] = "Подтверждение успешно завершено.";
$a->strings["Remote site reported: "] = "Удаленный сайт сообщил: ";
$a->strings["Temporary failure. Please wait and try again."] = "Временные неудачи. Подождите и попробуйте еще раз.";
$a->strings["Introduction failed or was revoked."] = "Краткая информация ошибочна или была отозвана.";
$a->strings["Introduction failed or was revoked."] = "Запрос ошибочен или был отозван.";
$a->strings["Unable to set contact photo."] = "Не удается установить фото контакта.";
$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s и %2\$s теперь друзья";
$a->strings["No user record found for '%s' "] = "Не найдено записи пользователя для '%s' ";
$a->strings["Our site encryption key is apparently messed up."] = "Наш ключ шифрования сайта, по-видимому, перепутался.";
$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Был предоставлен пустой URL сайта ​​или URL не может быть расшифрован нами.";
$a->strings["Contact record was not found for you on our site."] = "Запись контакта не найдена для вас на нашем сайте.";
$a->strings["Site public key not available in contact record for URL %s."] = "";
$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "ID, предложенный вашей системой, является дубликатом в нашей системе. Он должен работать, если вы повторите попытку.";
$a->strings["Unable to set your contact credentials on our system."] = "Не удалось установить ваши учетные данные контакта в нашей системе.";
$a->strings["Unable to update your contact profile details on our system"] = "Не удается обновить ваши контактные детали профиля в нашей системе";
$a->strings["Connection accepted at %s"] = "Подключение принято в %s";
$a->strings["Facebook disabled"] = "Facebook недоступен";
$a->strings["%1\$s has joined %2\$s"] = "";
$a->strings["Google+ Import Settings"] = "";
$a->strings["Enable Google+ Import"] = "";
$a->strings["Google Account ID"] = "";
$a->strings["Google+ Import Settings saved."] = "";
$a->strings["Facebook disabled"] = "Facebook отключен";
$a->strings["Updating contacts"] = "Обновление контактов";
$a->strings["Facebook API key is missing."] = "Отсутствует ключ Facebook API.";
$a->strings["Facebook Connect"] = "Facebook Connect";
$a->strings["Facebook Connect"] = "Facebook подключение";
$a->strings["Install Facebook connector for this account."] = "Установить Facebook Connector для этого аккаунта.";
$a->strings["Remove Facebook connector"] = "Удалить Facebook Connector";
$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "";
$a->strings["Post to Facebook by default"] = "Отправлять на Facebook по умолчанию";
$a->strings["Link all your Facebook friends and conversations"] = "Привязать все ваши разговоры и друзей на Facebook";
$a->strings["Warning: Your Facebook privacy settings can not be imported."] = "Внимание: Ваши установки безопасности на Facebook не могут быть импортированы.";
$a->strings["Linked Facebook items <strong>may</strong> be publicly visible, depending on your privacy settings for this website/account."] = "";
$a->strings["Facebook"] = "Facebook";
$a->strings["Facebook Connector Settings"] = "Настройки Facebook Connector";
$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "";
$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "";
$a->strings["Link all your Facebook friends and conversations on this website"] = "";
$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "";
$a->strings["On this website, your Facebook friend stream is only visible to you."] = "";
$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "";
$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "";
$a->strings["Do not import your Facebook profile wall conversations"] = "Не импортировать Facebook разговоров с Вашей страницы";
$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "";
$a->strings["Comma separated applications to ignore"] = "Игнорировать приложения (список через запятую)";
$a->strings["Problems with Facebook Real-Time Updates"] = "";
$a->strings["Facebook Connector Settings"] = "Настройки подключения Facebook";
$a->strings["Facebook API Key"] = "Facebook API Key";
$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "";
$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "";
$a->strings["The given API Key seems to work correctly."] = "";
$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "";
$a->strings["App-ID / API-Key"] = "App-ID / API-Key";
$a->strings["Application secret"] = "Секрет приложения";
$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "";
$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "";
$a->strings["Real-Time Updates"] = "";
$a->strings["Real-Time Updates are activated."] = "";
$a->strings["Deactivate Real-Time Updates"] = "Отключить Real-Time обновления";
$a->strings["Real-Time Updates not activated."] = "";
$a->strings["Activate Real-Time Updates"] = "Активировать Real-Time обновления";
$a->strings["The new values have been saved."] = "";
$a->strings["Post to Facebook"] = "Отправить на Facebook";
$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Отправка на Facebook отменена из-за конфликта разрешений доступа разных сетей.";
$a->strings["Image: "] = "Изображение: ";
$a->strings["View on Friendika"] = "Просмотреть на Friendika";
$a->strings["Facebook post failed. Queued for retry."] = "";
$a->strings["View on Friendica"] = "";
$a->strings["Facebook post failed. Queued for retry."] = "Ошибка отправки сообщения на Facebook. В очереди на еще одну попытку.";
$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "";
$a->strings["Facebook connection became invalid"] = "Facebook подключение не удалось";
$a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."] = "";
$a->strings["StatusNet AutoFollow settings updated."] = "";
$a->strings["StatusNet AutoFollow Settings"] = "";
$a->strings["Automatically follow any StatusNet followers/mentioners"] = "";
$a->strings["Bg settings updated."] = "";
$a->strings["Bg Settings"] = "";
$a->strings["How many contacts to display on profile sidebar"] = "";
$a->strings["Lifetime of the cache (in hours)"] = "";
$a->strings["Cache Statistics"] = "";
$a->strings["Number of items"] = "";
$a->strings["Size of the cache"] = "";
$a->strings["Delete the whole cache"] = "";
$a->strings["Facebook Post disabled"] = "";
$a->strings["Facebook Post"] = "";
$a->strings["Install Facebook Post connector for this account."] = "";
$a->strings["Remove Facebook Post connector"] = "";
$a->strings["Facebook Post Settings"] = "";
$a->strings["%d person likes this"] = array(
0 => "",
1 => "",
2 => "",
);
$a->strings["%d person doesn't like this"] = array(
0 => "",
1 => "",
2 => "",
);
$a->strings["Get added to this list!"] = "";
$a->strings["Generate new key"] = "Сгенерировать новый ключ";
$a->strings["Widgets key"] = "";
$a->strings["Widgets available"] = "";
$a->strings["Connect on Friendika!"] = "Подключись на Friendika!";
$a->strings["Widgets key"] = "Ключ виджетов";
$a->strings["Widgets available"] = "Виджеты доступны";
$a->strings["Connect on Friendica!"] = "Подключены к Friendica!";
$a->strings["bitchslap"] = "";
$a->strings["bitchslapped"] = "";
$a->strings["shag"] = "";
$a->strings["shagged"] = "";
$a->strings["do something obscenely biological to"] = "";
$a->strings["did something obscenely biological to"] = "";
$a->strings["point out the poke feature to"] = "";
$a->strings["pointed out the poke feature to"] = "";
$a->strings["declare undying love for"] = "";
$a->strings["declared undying love for"] = "";
$a->strings["patent"] = "";
$a->strings["patented"] = "";
$a->strings["stroke beard"] = "";
$a->strings["stroked their beard at"] = "";
$a->strings["bemoan the declining standards of modern secondary and tertiary education to"] = "";
$a->strings["bemoans the declining standards of modern secondary and tertiary education to"] = "";
$a->strings["hug"] = "";
$a->strings["hugged"] = "";
$a->strings["kiss"] = "";
$a->strings["kissed"] = "";
$a->strings["raise eyebrows at"] = "";
$a->strings["raised their eyebrows at"] = "";
$a->strings["insult"] = "";
$a->strings["insulted"] = "";
$a->strings["praise"] = "";
$a->strings["praised"] = "";
$a->strings["be dubious of"] = "";
$a->strings["was dubious of"] = "";
$a->strings["eat"] = "";
$a->strings["ate"] = "";
$a->strings["giggle and fawn at"] = "";
$a->strings["giggled and fawned at"] = "";
$a->strings["doubt"] = "";
$a->strings["doubted"] = "";
$a->strings["glare"] = "";
$a->strings["glared at"] = "";
$a->strings["YourLS Settings"] = "";
$a->strings["URL: http://"] = "URL: http://";
$a->strings["Username:"] = "Имя:";
$a->strings["Password:"] = "Пароль:";
$a->strings["Use SSL "] = "Использовать SSL";
$a->strings["yourls Settings saved."] = "Настройки сохранены.";
$a->strings["Post to LiveJournal"] = "";
$a->strings["LiveJournal Post Settings"] = "";
$a->strings["Enable LiveJournal Post Plugin"] = "Включить LiveJournal плагин сообщений";
$a->strings["LiveJournal username"] = "";
$a->strings["LiveJournal password"] = "";
$a->strings["Post to LiveJournal by default"] = "";
$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "";
$a->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."] = "";
$a->strings["Enable Content filter"] = "Включить фильтр содержимого";
$a->strings["Comma separated list of keywords to hide"] = "ключевые слова, которые скрыть (список через запятую)";
$a->strings["Use /expression/ to provide regular expressions"] = "";
$a->strings["NSFW Settings saved."] = "NSFW Настройки сохранены.";
$a->strings["%s - Click to open/close"] = "%s - Нажмите для открытия / закрытия";
$a->strings["Forums"] = "Форумы";
$a->strings["Forums:"] = "";
$a->strings["Page settings updated."] = "";
$a->strings["Page Settings"] = "";
$a->strings["How many forums to display on sidebar without paging"] = "";
$a->strings["Randomise Page/Forum list"] = "";
$a->strings["Show pages/forums on profile page"] = "";
$a->strings["Planets Settings"] = "";
$a->strings["Enable Planets Plugin"] = "";
$a->strings["Login"] = "Вход";
$a->strings["OpenID"] = "OpenID";
$a->strings["Latest users"] = "";
$a->strings["Most active users"] = "Самые активные пользователи";
$a->strings["Latest photos"] = "";
$a->strings["Latest likes"] = "";
$a->strings["event"] = "мероприятие";
$a->strings["No access"] = "";
$a->strings["Could not open component for editing"] = "";
$a->strings["Go back to the calendar"] = "";
$a->strings["Event data"] = "";
$a->strings["Calendar"] = "";
$a->strings["Special color"] = "";
$a->strings["Subject"] = "";
$a->strings["Starts"] = "";
$a->strings["Ends"] = "";
$a->strings["Description"] = "";
$a->strings["Recurrence"] = "";
$a->strings["Frequency"] = "";
$a->strings["Daily"] = "Ежедневно";
$a->strings["Weekly"] = "Еженедельно";
$a->strings["Monthly"] = "Ежемесячно";
$a->strings["Yearly"] = "";
$a->strings["days"] = "дней";
$a->strings["weeks"] = "недель";
$a->strings["months"] = "мес.";
$a->strings["years"] = "лет";
$a->strings["Interval"] = "";
$a->strings["All %select% %time%"] = "";
$a->strings["Days"] = "";
$a->strings["Sunday"] = "Воскресенье";
$a->strings["Monday"] = "Понедельник";
$a->strings["Tuesday"] = "Вторник";
$a->strings["Wednesday"] = "Среда";
$a->strings["Thursday"] = "Четверг";
$a->strings["Friday"] = "Пятница";
$a->strings["Saturday"] = "Суббота";
$a->strings["First day of week:"] = "";
$a->strings["Day of month"] = "";
$a->strings["#num#th of each month"] = "";
$a->strings["#num#th-last of each month"] = "";
$a->strings["#num#th #wkday# of each month"] = "";
$a->strings["#num#th-last #wkday# of each month"] = "";
$a->strings["Month"] = "";
$a->strings["#num#th of the given month"] = "";
$a->strings["#num#th-last of the given month"] = "";
$a->strings["#num#th #wkday# of the given month"] = "";
$a->strings["#num#th-last #wkday# of the given month"] = "";
$a->strings["Repeat until"] = "";
$a->strings["Infinite"] = "";
$a->strings["Until the following date"] = "";
$a->strings["Number of times"] = "";
$a->strings["Exceptions"] = "";
$a->strings["none"] = "";
$a->strings["Notification"] = "";
$a->strings["Notify by"] = "";
$a->strings["E-Mail"] = "";
$a->strings["On Friendica / Display"] = "";
$a->strings["Time"] = "";
$a->strings["Hours"] = "";
$a->strings["Minutes"] = "";
$a->strings["Seconds"] = "";
$a->strings["Weeks"] = "";
$a->strings["before the"] = "";
$a->strings["start of the event"] = "";
$a->strings["end of the event"] = "";
$a->strings["Add a notification"] = "";
$a->strings["The event #name# will start at #date"] = "";
$a->strings["#name# is about to begin."] = "";
$a->strings["Saved"] = "";
$a->strings["U.S. Time Format (mm/dd/YYYY)"] = "";
$a->strings["German Time Format (dd.mm.YYYY)"] = "";
$a->strings["Private Events"] = "";
$a->strings["Private Addressbooks"] = "";
$a->strings["Friendica-Native events"] = "";
$a->strings["Friendica-Contacts"] = "";
$a->strings["Your Friendica-Contacts"] = "";
$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = "";
$a->strings["Something went wrong when trying to import the file. Sorry."] = "";
$a->strings["The ICS-File has been imported."] = "";
$a->strings["No file was uploaded."] = "";
$a->strings["Import a ICS-file"] = "";
$a->strings["ICS-File"] = "";
$a->strings["Overwrite all #num# existing events"] = "";
$a->strings["New event"] = "";
$a->strings["Today"] = "";
$a->strings["Day"] = "";
$a->strings["Week"] = "";
$a->strings["Reload"] = "";
$a->strings["Date"] = "";
$a->strings["Error"] = "";
$a->strings["The calendar has been updated."] = "";
$a->strings["The new calendar has been created."] = "";
$a->strings["The calendar has been deleted."] = "";
$a->strings["Calendar Settings"] = "";
$a->strings["Date format"] = "";
$a->strings["Time zone"] = "";
$a->strings["Calendars"] = "";
$a->strings["Create a new calendar"] = "";
$a->strings["Limitations"] = "";
$a->strings["Warning"] = "";
$a->strings["Synchronization (iPhone, Thunderbird Lightning, Android, ...)"] = "";
$a->strings["Synchronizing this calendar with the iPhone"] = "";
$a->strings["Synchronizing your Friendica-Contacts with the iPhone"] = "";
$a->strings["The current version of this plugin has not been set up correctly. Please contact the system administrator of your installation of friendica to fix this."] = "";
$a->strings["Extended calendar with CalDAV-support"] = "";
$a->strings["noreply"] = "без ответа";
$a->strings["Notification: "] = "";
$a->strings["The database tables have been installed."] = "";
$a->strings["An error occurred during the installation."] = "";
$a->strings["The database tables have been updated."] = "";
$a->strings["An error occurred during the update."] = "";
$a->strings["No system-wide settings yet."] = "";
$a->strings["Database status"] = "";
$a->strings["Installed"] = "";
$a->strings["Upgrade needed"] = "";
$a->strings["Please back up all calendar data (the tables beginning with dav_*) before proceeding. While all calendar events <i>should</i> be converted to the new database structure, it's always safe to have a backup. Below, you can have a look at the database-queries that will be made when pressing the 'update'-button."] = "";
$a->strings["Upgrade"] = "";
$a->strings["Not installed"] = "";
$a->strings["Install"] = "";
$a->strings["Unknown"] = "";
$a->strings["Something really went wrong. I cannot recover from this state automatically, sorry. Please go to the database backend, back up the data, and delete all tables beginning with 'dav_' manually. Afterwards, this installation routine should be able to reinitialize the tables automatically."] = "";
$a->strings["Troubleshooting"] = "";
$a->strings["Manual creation of the database tables:"] = "";
$a->strings["Show SQL-statements"] = "";
$a->strings["Private Calendar"] = "";
$a->strings["Friendica Events: Mine"] = "";
$a->strings["Friendica Events: Contacts"] = "";
$a->strings["Private Addresses"] = "";
$a->strings["Friendica Contacts"] = "";
$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"] = "";
$a->strings["Template URL (with {category})"] = "";
$a->strings["OAuth end-point"] = "";
$a->strings["Api"] = "Api";
$a->strings["Member since:"] = "Зарегистрирован с:";
$a->strings["Three Dimensional Tic-Tac-Toe"] = "Трехмерные крестики-нолики";
$a->strings["3D Tic-Tac-Toe"] = "3D Tic-Tac-Toe";
$a->strings["New game"] = "Новая игра";
@ -759,33 +1362,153 @@ $a->strings["You won!"] = "Вы выиграли!";
$a->strings["\"Cat\" game!"] = "Игра \"Кошка\"!";
$a->strings["I won!"] = "Я выиграл!";
$a->strings["Randplace Settings"] = "Настройки Случайного места";
$a->strings["Enable Randplace Plugin"] = "Включить плагин Случайное место";
$a->strings["Enable Randplace Plugin"] = "Включить Randplace плагин";
$a->strings["Post to Dreamwidth"] = "";
$a->strings["Dreamwidth Post Settings"] = "Dreamwidth настройки сообщений";
$a->strings["Enable dreamwidth Post Plugin"] = "Включить dreamwidth плагин сообщений";
$a->strings["dreamwidth username"] = "dreamwidth имя пользователя";
$a->strings["dreamwidth password"] = "dreamwidth пароль";
$a->strings["Post to dreamwidth by default"] = "";
$a->strings["Post to Drupal"] = "";
$a->strings["Drupal Post Settings"] = "";
$a->strings["Enable Drupal Post Plugin"] = "Включить Drupal плагин сообщений";
$a->strings["Drupal username"] = "Drupal имя пользователя";
$a->strings["Drupal password"] = "Drupal пароль";
$a->strings["Post Type - article,page,or blog"] = "";
$a->strings["Drupal site URL"] = "Drupal site URL";
$a->strings["Drupal site uses clean URLS"] = "";
$a->strings["Post to Drupal by default"] = "";
$a->strings["Post from Friendica"] = "Сообщение от Friendica";
$a->strings["Startpage Settings"] = "";
$a->strings["Home page to load after login - leave blank for profile wall"] = "";
$a->strings["Examples: &quot;network&quot; or &quot;notifications/system&quot;"] = "";
$a->strings["Geonames settings updated."] = "";
$a->strings["Geonames Settings"] = "";
$a->strings["Enable Geonames Plugin"] = "Включить Geonames плагин";
$a->strings["Your account on %s will expire in a few days."] = "";
$a->strings["Your Friendica account is about to expire."] = "";
$a->strings["Hi %1\$s,\n\nYour account on %2\$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"] = "";
$a->strings["Upload a file"] = "Загрузить файл";
$a->strings["Drop files here to upload"] = "Перетащите файлы здесь для загрузки";
$a->strings["Drop files here to upload"] = "Перетащите файлы сюда для загрузки";
$a->strings["Failed"] = "Ошибка";
$a->strings["No files were uploaded."] = "Нет загруженных файлов.";
$a->strings["Uploaded file is empty"] = "Загруженный файл пустой";
$a->strings["File has an invalid extension, it should be one of "] = "Файл имеет недопустимое расширение, оно должно быть одним из следующих ";
$a->strings["Upload was cancelled, or server error encountered"] = "Загрузка была отменена, или произошла ошибка сервера";
$a->strings["Impressum"] = "";
$a->strings["Site Owner"] = "";
$a->strings["Email Address"] = "";
$a->strings["Postal Address"] = "";
$a->strings["The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "";
$a->strings["Site Owners Profile"] = "";
$a->strings["Notes"] = "";
$a->strings["OEmbed settings updated"] = "OEmbed настройки обновлены";
$a->strings["Use OEmbed for YouTube videos"] = "";
$a->strings["Use OEmbed for YouTube videos"] = "Использовать OEmbed для видео YouTube";
$a->strings["URL to embed:"] = "URL для встраивания:";
$a->strings["show/hide"] = "";
$a->strings["No forum subscriptions"] = "";
$a->strings["Forumlist settings updated."] = "";
$a->strings["Forumlist Settings"] = "";
$a->strings["Randomise forum list"] = "";
$a->strings["Show forums on profile page"] = "";
$a->strings["Impressum"] = "Impressum";
$a->strings["Site Owner"] = "Владелец сайта";
$a->strings["Email Address"] = "Адрес электронной почты";
$a->strings["Postal Address"] = "Почтовый адрес";
$a->strings["The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "Расширение Impressum должно быть настроено!<br /> Пожалуйста, добавьте по крайней мере переменную <tt>владельца</tt> в ваш конфигурационный файл. Описание других переменных можно найти в файле README для расширения.";
$a->strings["The page operators name."] = "";
$a->strings["Site Owners Profile"] = "Профиль владельцев сайта";
$a->strings["Profile address of the operator."] = "";
$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "";
$a->strings["Notes"] = "Заметки";
$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "";
$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "";
$a->strings["Footer note"] = "";
$a->strings["Text for the footer. You can use BBCode here."] = "";
$a->strings["Report Bug"] = "Сообщить об ошибке";
$a->strings["No Timeline settings updated."] = "";
$a->strings["No Timeline Settings"] = "";
$a->strings["Disable Archive selector on profile wall"] = "";
$a->strings["\"Blockem\" Settings"] = "\"Blockem\" настройки";
$a->strings["Comma separated profile URLS to block"] = "URLS, которые заблокировать (список через запятую)";
$a->strings["BLOCKEM Settings saved."] = "BLOCKEM-Настройки сохранены.";
$a->strings["Blocked %s - Click to open/close"] = "Заблокированные %s - Нажмите, чтобы открыть/закрыть";
$a->strings["Unblock Author"] = "";
$a->strings["Block Author"] = "Блокировать Автора";
$a->strings["blockem settings updated"] = "\"Blockem\" настройки обновлены";
$a->strings[":-)"] = ":-)";
$a->strings[":-("] = ":-(";
$a->strings["lol"] = "lol";
$a->strings["Quick Comment Settings"] = "";
$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "";
$a->strings["Enter quick comments, one per line"] = "Введите короткие комментарии, по одному в строке:";
$a->strings["Quick Comment settings saved."] = "";
$a->strings["Tile Server URL"] = "";
$a->strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "Список <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">общедоступных серверов</a>";
$a->strings["Default zoom"] = "zoom по умолчанию";
$a->strings["The default zoom level. (1:world, 18:highest)"] = "";
$a->strings["Editplain settings updated."] = "Editplain настройки обновлены.";
$a->strings["Group Text"] = "";
$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = "";
$a->strings["Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"] = "";
$a->strings["generic profile image"] = "";
$a->strings["random geometric pattern"] = "";
$a->strings["monster face"] = "";
$a->strings["computer generated face"] = "";
$a->strings["retro arcade style face"] = "";
$a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = "";
$a->strings["This addon is not functional on your server."] = "";
$a->strings["Information"] = "";
$a->strings["Gravatar addon is installed. Please disable the Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "";
$a->strings["Default avatar image"] = "";
$a->strings["Select default avatar image if none was found. See README"] = "";
$a->strings["Libravatar settings updated."] = "";
$a->strings["Post to libertree"] = "";
$a->strings["libertree Post Settings"] = "";
$a->strings["Enable Libertree Post Plugin"] = "";
$a->strings["Libertree API token"] = "";
$a->strings["Libertree site URL"] = "";
$a->strings["Post to Libertree by default"] = "";
$a->strings["Altpager settings updated."] = "";
$a->strings["Alternate Pagination Setting"] = "";
$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = "";
$a->strings["The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail."] = "";
$a->strings["Use the MathJax renderer"] = "";
$a->strings["MathJax Base URL"] = "";
$a->strings["The URL for the javascript file that should be included to use MathJax. Can be either the MathJax CDN or another installation of MathJax."] = "";
$a->strings["Editplain Settings"] = "Editplain настройки";
$a->strings["Disable richtext status editor"] = "Отключить richtext status editor";
$a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "";
$a->strings["Select default avatar image if none was found at Gravatar. See README"] = "";
$a->strings["Rating of images"] = "";
$a->strings["Select the appropriate avatar rating for your site. See README"] = "";
$a->strings["Gravatar settings updated."] = "";
$a->strings["Your Friendica test account is about to expire."] = "";
$a->strings["Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."] = "";
$a->strings["\"pageheader\" Settings"] = "";
$a->strings["pageheader Settings saved."] = "";
$a->strings["Post to Insanejournal"] = "";
$a->strings["InsaneJournal Post Settings"] = "";
$a->strings["Enable InsaneJournal Post Plugin"] = "Включить InsaneJournal плагин сообщений";
$a->strings["InsaneJournal username"] = "";
$a->strings["InsaneJournal password"] = "";
$a->strings["Post to InsaneJournal by default"] = "";
$a->strings["Jappix Mini addon settings"] = "";
$a->strings["Activate addon"] = "";
$a->strings["Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"] = "";
$a->strings["Jabber username"] = "";
$a->strings["Jabber server"] = "";
$a->strings["Jabber BOSH host"] = "";
$a->strings["Jabber password"] = "";
$a->strings["Encrypt Jabber password with Friendica password (recommended)"] = "";
$a->strings["Friendica password"] = "";
$a->strings["Approve subscription requests from Friendica contacts automatically"] = "";
$a->strings["Subscribe to Friendica contacts automatically"] = "";
$a->strings["Purge internal list of jabber addresses of contacts"] = "";
$a->strings["Add contact"] = "";
$a->strings["View Source"] = "Просмотр HTML-кода";
$a->strings["Post to StatusNet"] = "Отправить на StatusNet";
$a->strings["Please contact your site administrator.<br />The provided API URL is not valid."] = "Пожалуйста, обратитесь к администратору сайта. <br /> Предложенный URL API недействителен.";
$a->strings["We could not contact the StatusNet API with the Path you entered."] = "Мы не смогли связаться с API StatusNet с маршрутом, который вы ввели.";
$a->strings["StatusNet settings updated."] = "Настройки StatusNet обновлены.";
$a->strings["StatusNet Posting Settings"] = "Настройка отправки сообщений на StatusNet";
$a->strings["Globally Available StatusNet OAuthKeys"] = "Глобально доступные StatusNet OAuthKeys";
$a->strings["There are preconfigured OAuth key pairs for some StatusNet servers available. If you are useing one of them, please use these credentials. If not feel free to connect to any other StatusNet instance (see below)."] = "Есть предварительно сконфигурированные OAuth пары ключей для некоторых серверов StatusNet. Если вы используете один из них, пожалуйста, используйте эти учетные данные. Если нет, не стесняйтесь подключиться к любому другому экземпляру StatusNet (см. ниже).";
$a->strings["There are preconfigured OAuth key pairs for some StatusNet servers available. If you are useing one of them, please use these credentials. If not feel free to connect to any other StatusNet instance (see below)."] = "Доступны предварительно сконфигурированные OAuth пары ключей для некоторых серверов StatusNet. Если вы используете один из них, пожалуйста, используйте эти учетные данные. Если нет, не стесняйтесь подключиться к любому другому экземпляру StatusNet (см. ниже).";
$a->strings["Provide your own OAuth Credentials"] = "Укажите свои собственные полномочия OAuth";
$a->strings["No consumer key pair for StatusNet found. Register your Friendika Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendika installation at your favorited StatusNet installation."] = "Не найдено пары ключей для StatusNet. Зарегистрируйте ваш аккаунт Friendika счета как для клиент настольного ПК на вашем аккаунте StatusNet, скопируйте пару ключей покупателя здесь и введите корень базы API. <br /> Перед тем, как вы зарегистрируете свою собственную пару ключей OAuth, спросите администратора, может уже есть пара ключей для этой инсталляции Friendika в вашей избранной установке StatusNet.";
$a->strings["No consumer key pair for StatusNet found. Register your Friendica Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorited StatusNet installation."] = "";
$a->strings["OAuth Consumer Key"] = "OAuth Consumer Key";
$a->strings["OAuth Consumer Secret"] = "OAuth Consumer Secret";
$a->strings["Base API Path (remember the trailing /)"] = "Путь базы API (помните о слеше /)";
@ -796,39 +1519,136 @@ $a->strings["Cancel Connection Process"] = "Отмена процесса под
$a->strings["Current StatusNet API is"] = "Текущим StatusNet API является";
$a->strings["Cancel StatusNet Connection"] = "Отмена StatusNet подключения";
$a->strings["Currently connected to: "] = "В настоящее время соединены с: ";
$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated StatusNet account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "";
$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated StatusNet account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Если включено, то все ваши <strong>общественные сообщения</strong> могут быть отправлены на соответствующий аккаунт StatusNet. Вы можете сделать это по умолчанию (здесь) или для каждого сообщения отдельно при написании записи.";
$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to StatusNet will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "";
$a->strings["Allow posting to StatusNet"] = "Разрешить отправку на StatusNet";
$a->strings["Send public postings to StatusNet by default"] = "Отправлять публичные сообщения на StatusNet по умолчанию";
$a->strings["Send linked #-tags and @-names to StatusNet"] = "";
$a->strings["Clear OAuth configuration"] = "Очистить конфигурацию OAuth";
$a->strings["API URL"] = "API URL";
$a->strings["Consumer Secret"] = "Consumer Secret";
$a->strings["Consumer Key"] = "Consumer Key";
$a->strings["Piwik Base URL"] = "";
$a->strings["Site ID"] = "";
$a->strings["Show opt-out cookie link?"] = "";
$a->strings["Infinite Improbability Drive"] = "";
$a->strings["Post to Tumblr"] = "Написать в Tumblr";
$a->strings["Tumblr Post Settings"] = "Tumblr Настройки сообщения";
$a->strings["Enable Tumblr Post Plugin"] = "Включить Tumblr плагин сообщений";
$a->strings["Tumblr login"] = "Tumblr вход";
$a->strings["Tumblr password"] = "Tumblr пароль";
$a->strings["Post to Tumblr by default"] = "Сообщение Tumblr по умолчанию";
$a->strings["Numfriends settings updated."] = "";
$a->strings["Numfriends Settings"] = "";
$a->strings["Gnot settings updated."] = "";
$a->strings["Gnot Settings"] = "";
$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "";
$a->strings["Enable this plugin/addon?"] = "Включить этот плагин / аддон?";
$a->strings["[Friendica:Notify] Comment to conversation #%d"] = "";
$a->strings["Post to Wordpress"] = "Сообщение для Wordpress";
$a->strings["WordPress Post Settings"] = "Настройки сообщений для Wordpress";
$a->strings["Enable WordPress Post Plugin"] = "Включить WordPress плагин сообщений";
$a->strings["WordPress username"] = "WordPress Имя пользователя";
$a->strings["WordPress password"] = "WordPress паролъ";
$a->strings["WordPress API URL"] = "WordPress API URL";
$a->strings["Post to WordPress by default"] = "Сообщение WordPress по умолчанию";
$a->strings["Provide a backlink to the Friendica post"] = "";
$a->strings["Read the original post and comment stream on Friendica"] = "";
$a->strings["\"Show more\" Settings"] = "";
$a->strings["Enable Show More"] = "Включить Показать больше";
$a->strings["Cutting posts after how much characters"] = "Обрезание сообщения после превывения числа символов";
$a->strings["Show More Settings saved."] = "";
$a->strings["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "Этот веб-сайт отслеживается с помощью <a href='http://www.piwik.org'> Piwik </ a> инструмент аналитики.";
$a->strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "Если вы не хотите, чтобы ваши посещения записывались таким образом, вы <a href='%s'> можете установить куки для предотвращения отслеживания Piwik от дальнейших посещений сайта </a> (opt-out).";
$a->strings["Piwik Base URL"] = "Piwik основной URL";
$a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "";
$a->strings["Site ID"] = "ID сайта";
$a->strings["Show opt-out cookie link?"] = "Показать ссылку opt-out cookie?";
$a->strings["Asynchronous tracking"] = "Асинхронное отслеживание";
$a->strings["Post to Twitter"] = "Отправить в Твиттер";
$a->strings["Twitter settings updated."] = "";
$a->strings["Twitter settings updated."] = "Настройки Твиттера обновлены.";
$a->strings["Twitter Posting Settings"] = "Настройка отправки сообщений в Твиттер";
$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Не найдено пары потребительских ключей для Твиттера. Пожалуйста, обратитесь к администратору сайта.";
$a->strings["At this Friendika 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 <strong>public</strong> posts will be posted to Twitter."] = "В этой установке Friendika плагин Твиттер был включен, но вы еще не подключили ваш аккаунт к аккаунту Твиттер. Для этого нажмите на кнопку ниже, чтобы получить PIN-код из Твиттера, который нужно скопировать в поле ввода ниже, и отправить форму. Только ваши <strong>публичные сообщения</strong> будут размещены на Твиттере.";
$a->strings["At this Friendica 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 <strong>public</strong> posts will be posted to Twitter."] = "";
$a->strings["Log in with Twitter"] = "Войдите с Твиттером";
$a->strings["Copy the PIN from Twitter here"] = "Скопируйте PIN с Твиттера здесь";
$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "";
$a->strings["Allow posting to Twitter"] = "";
$a->strings["Send public postings to Twitter by default"] = "";
$a->strings["Consumer key"] = "";
$a->strings["Consumer secret"] = "";
$a->strings["Gender:"] = "Пол:";
$a->strings["Birthday:"] = "День рождения:";
$a->strings["Copy the PIN from Twitter here"] = "Скопируйте PIN с Twitter здесь";
$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Если включено, то все ваши <strong>общественные сообщения</strong> могут быть отправлены на связанный аккаунт Твиттер. Вы можете сделать это по умолчанию (здесь) или для каждого сообщения отдельно при написании записи.";
$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) 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."] = "";
$a->strings["Allow posting to Twitter"] = "Разрешить отправку сообщений на Twitter";
$a->strings["Send public postings to Twitter by default"] = "Отправлять сообщения для всех на Твиттер по умолчанию";
$a->strings["Send linked #-tags and @-names to Twitter"] = "";
$a->strings["Consumer key"] = "Consumer key";
$a->strings["Consumer secret"] = "Consumer secret";
$a->strings["IRC Settings"] = "";
$a->strings["Channel(s) to auto connect (comma separated)"] = "";
$a->strings["Popular Channels (comma separated)"] = "";
$a->strings["IRC settings saved."] = "";
$a->strings["IRC Chatroom"] = "";
$a->strings["Popular Channels"] = "";
$a->strings["Fromapp settings updated."] = "";
$a->strings["FromApp Settings"] = "";
$a->strings["The application name you would like to show your posts originating from."] = "";
$a->strings["Use this application name even if another application was used."] = "";
$a->strings["Post to blogger"] = "";
$a->strings["Blogger Post Settings"] = "";
$a->strings["Enable Blogger Post Plugin"] = "";
$a->strings["Blogger username"] = "";
$a->strings["Blogger password"] = "";
$a->strings["Blogger API URL"] = "";
$a->strings["Post to Blogger by default"] = "";
$a->strings["Post to Posterous"] = "";
$a->strings["Posterous Post Settings"] = "";
$a->strings["Enable Posterous Post Plugin"] = "Включить Posterous плагин сообщений";
$a->strings["Posterous login"] = "";
$a->strings["Posterous password"] = "";
$a->strings["Posterous site ID"] = "";
$a->strings["Posterous API token"] = "";
$a->strings["Post to Posterous by default"] = "";
$a->strings["Theme settings"] = "";
$a->strings["Set resize level for images in posts and comments (width and height)"] = "";
$a->strings["Set font-size for posts and comments"] = "";
$a->strings["Set theme width"] = "";
$a->strings["Color scheme"] = "Цветовая схема";
$a->strings["Your posts and conversations"] = "Ваши сообщения и беседы";
$a->strings["Your profile page"] = "Страница Вашего профиля";
$a->strings["Your contacts"] = "Ваши контакты";
$a->strings["Your photos"] = "Ваши фотографии";
$a->strings["Your events"] = "Ваши события";
$a->strings["Personal notes"] = "Личные заметки";
$a->strings["Your personal photos"] = "Ваши личные фотографии";
$a->strings["Community Pages"] = "Страницы сообщества";
$a->strings["Community Profiles"] = "";
$a->strings["Last users"] = "Последние пользователи";
$a->strings["Last likes"] = "Последние likes";
$a->strings["Last photos"] = "Последние фото";
$a->strings["Find Friends"] = "Найти друзей";
$a->strings["Local Directory"] = "";
$a->strings["Similar Interests"] = "Похожие интересы";
$a->strings["Invite Friends"] = "Пригласить друзей";
$a->strings["Earth Layers"] = "";
$a->strings["Set zoomfactor for Earth Layers"] = "";
$a->strings["Set longitude (X) for Earth Layers"] = "";
$a->strings["Set latitude (Y) for Earth Layers"] = "";
$a->strings["Help or @NewHere ?"] = "";
$a->strings["Connect Services"] = "Подключить службы";
$a->strings["Last Tweets"] = "";
$a->strings["Set twitter search term"] = "";
$a->strings["don't show"] = "не показывать";
$a->strings["show"] = "показывать";
$a->strings["Show/hide boxes at right-hand column:"] = "";
$a->strings["Set line-height for posts and comments"] = "";
$a->strings["Set resolution for middle column"] = "";
$a->strings["Set color scheme"] = "";
$a->strings["Set zoomfactor for Earth Layer"] = "";
$a->strings["Last tweets"] = "";
$a->strings["Alignment"] = "Выравнивание";
$a->strings["Left"] = "";
$a->strings["Center"] = "Центр";
$a->strings["Set colour scheme"] = "";
$a->strings["j F, Y"] = "j F, Y";
$a->strings["j F"] = "j F";
$a->strings["Birthday:"] = "День рождения:";
$a->strings["Age:"] = "Возраст:";
$a->strings["<span class=\"heart\">&hearts;</span> Status:"] = "<span class=\"heart\">&hearts;</span> Статус:";
$a->strings["Homepage:"] = "Домашняя страничка:";
$a->strings["for %1\$d %2\$s"] = "";
$a->strings["Tags:"] = "";
$a->strings["Religion:"] = "Религия:";
$a->strings["About:"] = "Немного о себе:";
$a->strings["Hobbies/Interests:"] = "Хобби / Интересы:";
$a->strings["Contact information and Social Networks:"] = "Контактная информация и социальные сети:";
$a->strings["Contact information and Social Networks:"] = "Информация о контакте и социальных сетях:";
$a->strings["Musical interests:"] = "Музыкальные интересы:";
$a->strings["Books, literature:"] = "Книги, литература:";
$a->strings["Television:"] = "Телевидение:";
@ -845,12 +1665,15 @@ $a->strings["Reputable, has my trust"] = "Уважаемые, есть мое д
$a->strings["Frequently"] = "Часто";
$a->strings["Hourly"] = "Раз в час";
$a->strings["Twice daily"] = "Два раза в день";
$a->strings["Daily"] = "Ежедневно";
$a->strings["Weekly"] = "Еженедельно";
$a->strings["Monthly"] = "Ежемесячно";
$a->strings["OStatus"] = "OStatus";
$a->strings["RSS/Atom"] = "RSS/Atom";
$a->strings["Zot!"] = "Zot!";
$a->strings["LinkedIn"] = "LinkedIn";
$a->strings["XMPP/IM"] = "XMPP/IM";
$a->strings["MySpace"] = "MySpace";
$a->strings["Male"] = "Мужчина";
$a->strings["Female"] = "Женщина";
$a->strings["Currently Male"] = "В настоящее время мужчина";
$a->strings["Currently Male"] = "В данный момент мужчина";
$a->strings["Currently Female"] = "В настоящее время женщина";
$a->strings["Mostly Male"] = "В основном мужчина";
$a->strings["Mostly Female"] = "В основном женщина";
@ -871,56 +1694,89 @@ $a->strings["Bisexual"] = "Бисексуал";
$a->strings["Autosexual"] = "Автосексуал";
$a->strings["Abstinent"] = "Воздержанный";
$a->strings["Virgin"] = "Девственница";
$a->strings["Deviant"] = "Девиант";
$a->strings["Deviant"] = "Deviant";
$a->strings["Fetish"] = "Фетиш";
$a->strings["Oodles"] = "Групповой";
$a->strings["Nonsexual"] = "Нет интереса к сексу";
$a->strings["Single"] = "Без пары";
$a->strings["Lonely"] = "Пока никого нет";
$a->strings["Available"] = "Ищу спутника";
$a->strings["Available"] = "Доступный";
$a->strings["Unavailable"] = "Не ищу никого";
$a->strings["Dating"] = "Для знакомства";
$a->strings["Has crush"] = "";
$a->strings["Infatuated"] = "";
$a->strings["Dating"] = "Свидания";
$a->strings["Unfaithful"] = "Изменяю супругу";
$a->strings["Sex Addict"] = "Люблю секс";
$a->strings["Friends"] = "Друзья";
$a->strings["Friends/Benefits"] = "Друзья / Предпочтения";
$a->strings["Casual"] = "Случайные связи";
$a->strings["Engaged"] = "Есть спутник";
$a->strings["Casual"] = "Обычный";
$a->strings["Engaged"] = "Занят";
$a->strings["Married"] = "Женат / Замужем";
$a->strings["Imaginarily married"] = "";
$a->strings["Partners"] = "Партнеры";
$a->strings["Cohabiting"] = "Сожительствую с человеком";
$a->strings["Cohabiting"] = "Партнерство";
$a->strings["Common law"] = "";
$a->strings["Happy"] = "Счастлив/а/";
$a->strings["Not Looking"] = "Не ищу";
$a->strings["Not looking"] = "";
$a->strings["Swinger"] = "Свинг";
$a->strings["Betrayed"] = "Преданный";
$a->strings["Separated"] = "Разделенный";
$a->strings["Unstable"] = "Нестабильный";
$a->strings["Divorced"] = "Разведенный";
$a->strings["Divorced"] = "Разведен(а)";
$a->strings["Imaginarily divorced"] = "";
$a->strings["Widowed"] = "Овдовевший";
$a->strings["Uncertain"] = "Неопределенный";
$a->strings["Complicated"] = "Сложный";
$a->strings["It's complicated"] = "";
$a->strings["Don't care"] = "Не беспокоить";
$a->strings["Ask me"] = "Спросите меня";
$a->strings["l F d, Y \\@ g:i A"] = "";
$a->strings["Starts:"] = "";
$a->strings["Finishes:"] = "";
$a->strings["Starts:"] = "Начало:";
$a->strings["Finishes:"] = "Окончание:";
$a->strings["(no subject)"] = "(без темы)";
$a->strings[" on Last.fm"] = "";
$a->strings["prev"] = "пред.";
$a->strings["first"] = "первый";
$a->strings["last"] = "последний";
$a->strings["next"] = "след.";
$a->strings["newer"] = "";
$a->strings["older"] = "";
$a->strings["No contacts"] = "Нет контактов";
$a->strings["%d Contact"] = array(
0 => "%d контакт",
1 => "%d контактов",
2 => "%d контактов",
);
$a->strings["Monday"] = "Понедельник";
$a->strings["Tuesday"] = "Вторник";
$a->strings["Wednesday"] = "Среда";
$a->strings["Thursday"] = "Четверг";
$a->strings["Friday"] = "Пятница";
$a->strings["Saturday"] = "Суббота";
$a->strings["Sunday"] = "Воскресенье";
$a->strings["poke"] = "";
$a->strings["poked"] = "";
$a->strings["ping"] = "";
$a->strings["pinged"] = "";
$a->strings["prod"] = "";
$a->strings["prodded"] = "";
$a->strings["slap"] = "";
$a->strings["slapped"] = "";
$a->strings["finger"] = "";
$a->strings["fingered"] = "";
$a->strings["rebuff"] = "";
$a->strings["rebuffed"] = "";
$a->strings["happy"] = "";
$a->strings["sad"] = "";
$a->strings["mellow"] = "";
$a->strings["tired"] = "";
$a->strings["perky"] = "";
$a->strings["angry"] = "";
$a->strings["stupified"] = "";
$a->strings["puzzled"] = "";
$a->strings["interested"] = "";
$a->strings["bitter"] = "";
$a->strings["cheerful"] = "";
$a->strings["alive"] = "";
$a->strings["annoyed"] = "";
$a->strings["anxious"] = "";
$a->strings["cranky"] = "";
$a->strings["disturbed"] = "";
$a->strings["frustrated"] = "";
$a->strings["motivated"] = "";
$a->strings["relaxed"] = "";
$a->strings["surprised"] = "";
$a->strings["January"] = "Январь";
$a->strings["February"] = "Февраль";
$a->strings["March"] = "Март";
@ -934,81 +1790,183 @@ $a->strings["October"] = "Октябрь";
$a->strings["November"] = "Ноябрь";
$a->strings["December"] = "Декабрь";
$a->strings["bytes"] = "байт";
$a->strings["Select an alternate language"] = "";
$a->strings["Click to open/close"] = "Нажмите, чтобы открыть / закрыть";
$a->strings["default"] = "значение по умолчанию";
$a->strings["Select an alternate language"] = "Выбор альтернативного языка";
$a->strings["activity"] = "активность";
$a->strings["post"] = "";
$a->strings["Item filed"] = "";
$a->strings["Sharing notification from Diaspora network"] = "Делиться уведомлениями из сети Diaspora";
$a->strings["Attachments:"] = "Вложения:";
$a->strings["view full size"] = "посмотреть в полный размер";
$a->strings["Embedded content"] = "Встроенное содержание";
$a->strings["Embedding disabled"] = "Встраивание отключено";
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "";
$a->strings["Default privacy group for new contacts"] = "";
$a->strings["Everybody"] = "Каждый";
$a->strings["edit"] = "редактировать";
$a->strings["Edit group"] = "Редактировать группу";
$a->strings["Create a new group"] = "Создать новую группу";
$a->strings["Everybody"] = "Все";
$a->strings["Contacts not in any group"] = "";
$a->strings["Logout"] = "Выход";
$a->strings["End this session"] = "";
$a->strings["Login"] = "Вход";
$a->strings["Sign in"] = "";
$a->strings["Home"] = "Главная";
$a->strings["Home Page"] = "";
$a->strings["Create an account"] = "";
$a->strings["Help and documentation"] = "";
$a->strings["End this session"] = "Конец этой сессии";
$a->strings["Status"] = "Статус";
$a->strings["Sign in"] = "Вход";
$a->strings["Home Page"] = "Главная страница";
$a->strings["Create an account"] = "Создать аккаунт";
$a->strings["Help and documentation"] = "Помощь и документация";
$a->strings["Apps"] = "Приложения";
$a->strings["Addon applications, utilities, games"] = "";
$a->strings["Search site content"] = "";
$a->strings["Conversations on this site"] = "";
$a->strings["Addon applications, utilities, games"] = "Дополнительные приложения, утилиты, игры";
$a->strings["Search site content"] = "Поиск по сайту";
$a->strings["Conversations on this site"] = "Беседы на этом сайте";
$a->strings["Directory"] = "Каталог";
$a->strings["People directory"] = "";
$a->strings["Network"] = "Сеть";
$a->strings["Conversations from your friends"] = "";
$a->strings["Your posts and conversations"] = "";
$a->strings["Notifications"] = "Уведомления";
$a->strings["Friend requests"] = "";
$a->strings["Private mail"] = "";
$a->strings["People directory"] = "Каталог участников";
$a->strings["Conversations from your friends"] = "Беседы с друзьями";
$a->strings["Friend Requests"] = "Запросы на добавление в список друзей";
$a->strings["See all notifications"] = "Посмотреть все уведомления";
$a->strings["Mark all system notifications seen"] = "";
$a->strings["Private mail"] = "Личная почта";
$a->strings["Inbox"] = "Входящие";
$a->strings["Outbox"] = "Исходящие";
$a->strings["Manage"] = "Управлять";
$a->strings["Manage other pages"] = "";
$a->strings["Manage/edit profiles"] = "";
$a->strings["Manage/edit friends and contacts"] = "";
$a->strings["Admin"] = "";
$a->strings["Site setup and configuration"] = "";
$a->strings["Manage other pages"] = "Управление другими страницами";
$a->strings["Profiles"] = "Профили";
$a->strings["Manage/edit profiles"] = "Управление / редактирование профилей";
$a->strings["Manage/edit friends and contacts"] = "Управление / редактирование друзей и контактов";
$a->strings["Site setup and configuration"] = "Установка и конфигурация сайта";
$a->strings["Nothing new here"] = "Ничего нового здесь";
$a->strings["Add New Contact"] = "Добавить контакт";
$a->strings["Enter address or web location"] = "Введите адрес или веб-местонахождение";
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Пример: bob@example.com, http://example.com/barbara";
$a->strings["%d invitation available"] = array(
0 => "%d приглашение доступно",
1 => "%d приглашений доступно",
2 => "%d приглашений доступно",
);
$a->strings["Find People"] = "Поиск людей";
$a->strings["Enter name or interest"] = "Введите имя или интерес";
$a->strings["Connect/Follow"] = "Подключиться/Следовать";
$a->strings["Examples: Robert Morgenstein, Fishing"] = "Примеры: Роберт Morgenstein, Рыбалка";
$a->strings["Random Profile"] = "";
$a->strings["Networks"] = "Сети";
$a->strings["All Networks"] = "Все сети";
$a->strings["Saved Folders"] = "";
$a->strings["Everything"] = "Всё";
$a->strings["Categories"] = "Категории";
$a->strings["Logged out."] = "Выход из системы.";
$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "";
$a->strings["The error message was:"] = "";
$a->strings["Miscellaneous"] = "Разное";
$a->strings["year"] = "год";
$a->strings["month"] = "месяц";
$a->strings["month"] = "мес.";
$a->strings["day"] = "день";
$a->strings["never"] = "";
$a->strings["less than a second ago"] = "менее секунды назад";
$a->strings["years"] = "лет";
$a->strings["months"] = "месяцев";
$a->strings["never"] = "никогда";
$a->strings["less than a second ago"] = "менее сек. назад";
$a->strings["week"] = "неделя";
$a->strings["weeks"] = "недель";
$a->strings["days"] = "дней";
$a->strings["hour"] = "час";
$a->strings["hours"] = "часов";
$a->strings["hours"] = "час.";
$a->strings["minute"] = "минута";
$a->strings["minutes"] = "минут";
$a->strings["minutes"] = "мин.";
$a->strings["second"] = "секунда";
$a->strings["seconds"] = "секунд";
$a->strings[" ago"] = " назад";
$a->strings["seconds"] = "сек.";
$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s назад";
$a->strings["%s's birthday"] = "";
$a->strings["Happy Birthday %s"] = "";
$a->strings["From: "] = "От: ";
$a->strings["Image/photo"] = "Изображение / Фото";
$a->strings["$1 wrote:"] = "$1 написал:";
$a->strings["Encrypted content"] = "";
$a->strings["Cannot locate DNS info for database server '%s'"] = "Не могу найти информацию для DNS-сервера базы данных '%s'";
$a->strings["[no subject]"] = "[без темы]";
$a->strings["Visible to everybody"] = "Видимо всем";
$a->strings["show"] = "";
$a->strings["don't show"] = "";
$a->strings["(no subject)"] = "(без темы)";
$a->strings["Friendica Notification"] = "Friendica уведомления";
$a->strings["Thank You,"] = "Спасибо,";
$a->strings["%s Administrator"] = "%s администратор";
$a->strings["%s <!item_type!>"] = "";
$a->strings["[Friendica:Notify] New mail received at %s"] = "";
$a->strings["%1\$s sent you a new private message at %2\$s."] = "";
$a->strings["%1\$s sent you %2\$s."] = "";
$a->strings["a private message"] = "личное сообщение";
$a->strings["Please visit %s to view and/or reply to your private messages."] = "";
$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "";
$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "";
$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "";
$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "";
$a->strings["%s commented on an item/conversation you have been following."] = "";
$a->strings["Please visit %s to view and/or reply to the conversation."] = "";
$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "";
$a->strings["%1\$s posted to your profile wall at %2\$s"] = "";
$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "";
$a->strings["[Friendica:Notify] %s tagged you"] = "";
$a->strings["%1\$s tagged you at %2\$s"] = "";
$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "";
$a->strings["[Friendica:Notify] %1\$s poked you"] = "";
$a->strings["%1\$s poked you at %2\$s"] = "";
$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "";
$a->strings["[Friendica:Notify] %s tagged your post"] = "";
$a->strings["%1\$s tagged your post at %2\$s"] = "";
$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "";
$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Сообщение] получен запрос";
$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "";
$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "";
$a->strings["You may visit their profile at %s"] = "";
$a->strings["Please visit %s to approve or reject the introduction."] = "Посетите %s для подтверждения или отказа запроса.";
$a->strings["[Friendica:Notify] Friend suggestion received"] = "";
$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "";
$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "";
$a->strings["Name:"] = "Имя:";
$a->strings["Photo:"] = "Фото:";
$a->strings["Please visit %s to approve or reject the suggestion."] = "";
$a->strings["Connect URL missing."] = "Connect-URL отсутствует.";
$a->strings["This site is not configured to allow communications with other networks."] = "Данный сайт не настроен так, чтобы держать связь с другими сетями.";
$a->strings["No compatible communication protocols or feeds were discovered."] = "Обнаружены несовместимые протоколы связи или каналы.";
$a->strings["The profile address specified does not provide adequate information."] = "Указанный адрес профиля не дает адекватной информации.";
$a->strings["An author or name was not found."] = "Автор или имя не найдены.";
$a->strings["No browser URL could be matched to this address."] = "Нет URL браузера, который соответствует этому адресу.";
$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "";
$a->strings["Use mailto: in front of address to force email check."] = "";
$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Указанный адрес профиля принадлежит сети, недоступной на этом сайта.";
$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Ограниченный профиль. Этот человек не сможет получить прямые / личные уведомления от вас.";
$a->strings["Unable to retrieve contact information."] = "Невозможно получить контактную информацию.";
$a->strings["following"] = "следует";
$a->strings["A new person is sharing with you at "] = "Новый человек делится с вами";
$a->strings["You have a new follower at "] = "У вас есть новый фолловер на ";
$a->strings["event"] = "";
$a->strings["View %s's profile"] = "Просмотреть профиль %s";
$a->strings["%s from %s"] = "%s от %s";
$a->strings["View in context"] = "Смотреть в контексте";
$a->strings["See more posts like this"] = "Просмотреть другие сообщения, похожие на это";
$a->strings["See all %d comments"] = "Просмотреть все %d комментариев";
$a->strings["Select"] = "Выберите";
$a->strings["toggle star status"] = "переключить статус";
$a->strings["to"] = "к";
$a->strings["Wall-to-Wall"] = "Стена-на-Стену";
$a->strings["via Wall-To-Wall:"] = "через Стена-на-Стену:";
$a->strings["Delete Selected Items"] = "Удалить выбранные позиции";
$a->strings["View status"] = "Просмотреть статус";
$a->strings["View profile"] = "Просмотреть профиль";
$a->strings["View photos"] = "Просмотреть фото";
$a->strings["View recent"] = "Просмотреть последние";
$a->strings["Archives"] = "";
$a->strings["An invitation is required."] = "Требуется приглашение.";
$a->strings["Invitation could not be verified."] = "Приглашение не может быть проверено.";
$a->strings["Invalid OpenID url"] = "Неверный URL OpenID";
$a->strings["Please enter the required information."] = "Пожалуйста, введите необходимую информацию.";
$a->strings["Please use a shorter name."] = "Пожалуйста, используйте более короткое имя.";
$a->strings["Name too short."] = "Имя слишком короткое.";
$a->strings["That doesn't appear to be your full (First Last) name."] = "Кажется, что это ваше неполное (Имя Фамилия) имя.";
$a->strings["Your email domain is not among those allowed on this site."] = "Домен вашего адреса электронной почты не относится к числу разрешенных на этом сайте.";
$a->strings["Not a valid email address."] = "Неверный адрес электронной почты.";
$a->strings["Cannot use that email."] = "Нельзя использовать этот Email.";
$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Ваш \"ник\" может содержать только \"a-z\", \"0-9\", \"-\", и \"_\", а также должен начинаться с буквы.";
$a->strings["Nickname is already registered. Please choose another."] = "Такой ник уже зарегистрирован. Пожалуйста, выберите другой.";
$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "";
$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась.";
$a->strings["An error occurred during registration. Please try again."] = "Ошибка при регистрации. Пожалуйста, попробуйте еще раз.";
$a->strings["An error occurred creating your default profile. Please try again."] = "Ошибка создания вашего профиля. Пожалуйста, попробуйте еще раз.";
$a->strings["Welcome "] = "Добро пожаловать, ";
$a->strings["Please upload a profile photo."] = "Пожалуйста, загрузите фотографию профиля.";
$a->strings["Welcome back "] = "Добро пожаловать обратно, ";
$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "";
$a->strings["stopped following"] = "остановлено следование";
$a->strings["Poke"] = "";
$a->strings["View Status"] = "";
$a->strings["View Profile"] = "";
$a->strings["View Photos"] = "";
$a->strings["Network Posts"] = "";
$a->strings["Edit Contact"] = "";
$a->strings["Send PM"] = "Отправить ЛС";
$a->strings["%1\$s poked %2\$s"] = "";
$a->strings["post/item"] = "";
$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s пометил %2\$s %3\$s как Фаворит";
$a->strings["Categories:"] = "";
$a->strings["Filed under:"] = "";
$a->strings["remove"] = "удалить";
$a->strings["Delete Selected Items"] = "Удалить выбранные позиции";
$a->strings["%s likes this."] = "%s нравится это.";
$a->strings["%s doesn't like this."] = "%s не нравится это.";
$a->strings["<span %1\$s>%2\$d people</span> like this."] = "<span %1\$s>%2\$d чел.</span> нравится это.";
@ -1018,26 +1976,44 @@ $a->strings[", and %d other people"] = ", и %d других чел.";
$a->strings["%s like this."] = "%s нравится это.";
$a->strings["%s don't like this."] = "%s не нравится это.";
$a->strings["Visible to <strong>everybody</strong>"] = "Видимое <strong>всем</strong>";
$a->strings["Please enter a YouTube link:"] = "Пожалуйста, введите ссылку YouTube:";
$a->strings["Please enter a video(.ogg) link/URL:"] = "Пожалуйста, введите видео (.ogg) ссылку / URL:";
$a->strings["Please enter an audio(.ogg) link/URL:"] = "Пожалуйста, введите аудио (.ogg) ссылку / URL:";
$a->strings["Please enter a video link/URL:"] = "";
$a->strings["Please enter an audio link/URL:"] = "";
$a->strings["Tag term:"] = "";
$a->strings["Where are you right now?"] = "И где вы сейчас?";
$a->strings["Enter a title for this item"] = "Введите название для данного элемента";
$a->strings["Set title"] = "Установить заголовок";
$a->strings["upload photo"] = "загрузить фото";
$a->strings["attach file"] = "приложить файл";
$a->strings["web link"] = "веб-ссылка";
$a->strings["Insert video link"] = "Вставить ссылку видео";
$a->strings["video link"] = "видео-ссылка";
$a->strings["Insert audio link"] = "Вставить ссылку аудио";
$a->strings["audio link"] = "аудио-ссылка";
$a->strings["set location"] = "установить местонахождение";
$a->strings["clear location"] = "убрать местонахождение";
$a->strings["permissions"] = "разрешения";
$a->strings["Click here to upgrade."] = "";
$a->strings["This action exceeds the limits set by your subscription plan."] = "";
$a->strings["This action is not available under your subscription plan."] = "";
$a->strings["Delete this item?"] = "Удалить этот элемент?";
$a->strings["show fewer"] = "показать меньше";
$a->strings["Update %s failed. See error logs."] = "";
$a->strings["Update Error at %s"] = "";
$a->strings["Create a New Account"] = "Создать новый аккаунт";
$a->strings["Nickname or Email address: "] = "Ник или адрес электронной почты: ";
$a->strings["Password: "] = "Пароль: ";
$a->strings["Nickname/Email/OpenID: "] = "Ник / Email / OpenID: ";
$a->strings["Password (if not OpenID): "] = "Пароль (если не OpenID): ";
$a->strings["Or login using OpenID: "] = "";
$a->strings["Forgot your password?"] = "Забыли пароль?";
$a->strings["Connect"] = "Подключиться";
$a->strings[", "] = ", ";
$a->strings["Status:"] = "Статус:";
$a->strings["Requested account is not available."] = "";
$a->strings["Edit profile"] = "Редактировать профиль";
$a->strings["Message"] = "";
$a->strings["g A l F d"] = "g A l F d";
$a->strings["F d"] = "F d";
$a->strings["[today]"] = "[сегодня]";
$a->strings["Birthday Reminders"] = "Напоминания о днях рождения";
$a->strings["Birthdays this week:"] = "Дни рождения на этой неделе:";
$a->strings["(Adjusted for local time)"] = "(С поправкой на местное время)";
$a->strings["[today]"] = "[сегодня]";
$a->strings["Not Found"] = "Не найдено";
$a->strings["Page not found."] = "Страница не найдена.";
$a->strings["[No description]"] = "[без описания]";
$a->strings["Event Reminders"] = "Напоминания о мероприятиях";
$a->strings["Events this week:"] = "Мероприятия на этой неделе:";
$a->strings["Status Messages and Posts"] = "";
$a->strings["Profile Details"] = "";
$a->strings["Events and Calendar"] = "";
$a->strings["Only You Can See This"] = "";

View file

@ -519,7 +519,7 @@ div[id$="wrapper"]{height:100%;}div[id$="wrapper"] br{clear:left;}
.type-text{background-position:-60px 0px;}
.type-unkn{background-position:-80px 0;}
.cc-license{margin-top:100px;font-size:0.7em;}
footer{display:block;clear:both;}
footer{display:block;clear:both;text-align:center;}
#sectionfooter{margin:1em 0 1em 0;}
#profile-jot-text{height:20px;color:#eeeecc;background:#2e2f2e;border:1px solid #eeeecc;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;width:99.5%;}
#photo-edit-perms-select,#photos-upload-permissions-wrapper,#profile-jot-acl-wrapper{display:block !important;background:#2e2f2e;color:#eeeecc;}

View file

@ -519,7 +519,7 @@ div[id$="wrapper"]{height:100%;}div[id$="wrapper"] br{clear:left;}
.type-text{background-position:-60px 0px;}
.type-unkn{background-position:-80px 0;}
.cc-license{margin-top:100px;font-size:0.7em;}
footer{display:block;clear:both;}
footer{display:block;clear:both;text-align:center;}
#sectionfooter{margin:1em 0 1em 0;}
#profile-jot-text{height:20px;color:#666666;background:#cccccc;border:1px solid #111111;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;width:99.5%;}
#photo-edit-perms-select,#photos-upload-permissions-wrapper,#profile-jot-acl-wrapper{display:block !important;background:#eeeeec;color:#111111;}

View file

@ -245,8 +245,9 @@ section {
/* footer */
footer {
display: none;
text-align: right;
padding-bottom: 1em;
padding-right: 3em;
}
.birthday-today, .event-today {

View file

@ -10,6 +10,8 @@ Photo album display?
- Get "add contact" back on contacts page
- Allow creating a new private message
- Admin: access to more pages than summary?
- Find a way to show embedded videos at the normal size for tablets that can handle it

View file

@ -21,9 +21,7 @@
<section><?php if(x($page,'content')) echo $page['content']; ?>
</section>
</div>
<footer>
<a href="<?php echo $a->get_baseurl() ?>/toggle_mobile?off=1&address=<?php echo curPageURL() ?>">toggle mobile</a>
</footer>
<footer><?php if(x($page,'footer')) echo $page['footer']; ?></footer>
<?php } else { ?>
<div class='main-container'>
@ -36,10 +34,7 @@
</div>
<right_aside><?php if(x($page,'right_aside')) echo $page['right_aside']; ?></right_aside>
<?php if( ($a->module === 'contacts') && x($page,'aside')) echo $page['aside']; ?>
<footer>
<a href="<?php echo $a->get_baseurl() ?>/toggle_mobile?off=1&address=<?php echo curPageURL() ?>">toggle mobile</a>
<?php if(x($page,'footer')) echo $page['footer']; ?>
</footer>
<footer><?php if(x($page,'footer')) echo $page['footer']; ?></footer>
<!-- </div>-->
</div>
<?php } ?>

View file

@ -185,7 +185,7 @@
var eSysmsg = $j(data).find('sysmsgs');
eSysmsg.children("notice").each(function(){
text = $j(this).text();
$j.jGrowl(text, { sticky: false, theme: 'notice', life: 1500 });
$j.jGrowl(text, { sticky: false, theme: 'notice', life: 1000 });
});
eSysmsg.children("info").each(function(){
text = $j(this).text();

File diff suppressed because one or more lines are too long

View file

@ -1402,6 +1402,13 @@ input#dfrn-url {
line-height: 23px;
}
.wall-item-body iframe {
display: block;
clear: both;
margin-top: 1.5em;
margin-bottom: 1.5em;
}
.wall-item-body code {
width: 260px;
overflow: hidden;

View file

@ -4,7 +4,7 @@
* Name: Frost--mobile version
* Description: Like frosted glass
* Credits: Navigation icons taken from http://iconza.com. Other icons taken from http://thenounproject.com, including: Like, Dislike, Black Lock, Unlock, Pencil, Tag, Camera, Paperclip (Marie Coons), Folder (Sergio Calcara), Chain-link (Andrew Fortnum), Speaker (Harold Kim), Quotes (Henry Ryder), Video Camera (Anas Ramadan), and Left Arrow, Right Arrow, and Delete X (all three P.J. Onori). All under Attribution (CC BY 3.0). Others from The Noun Project are public domain or No Rights Reserved (CC0).
* Version: Version 0.2.12
* Version: Version 0.2.13
* Author: Zach P <techcity@f.shmuz.in>
* Maintainer: Zach P <techcity@f.shmuz.in>
*/

View file

@ -21,6 +21,7 @@
<section><?php if(x($page,'content')) echo $page['content']; ?>
</section>
</div>
<footer><?php if(x($page,'footer')) echo $page['footer']; ?></footer>
<?php } else { ?>
<div class='main-container'>

View file

@ -178,11 +178,11 @@
var eSysmsg = $j(data).find('sysmsgs');
eSysmsg.children("notice").each(function(){
text = $j(this).text();
$j.jGrowl(text, { sticky: false, theme: 'notice', life: 2000 }); // originally: sticky: true,
$j.jGrowl(text, { sticky: false, theme: 'notice', life: 3000 }); // originally: sticky: true,
});
eSysmsg.children("info").each(function(){
text = $j(this).text();
$j.jGrowl(text, { sticky: false, theme: 'info', life: 1500 });
$j.jGrowl(text, { sticky: false, theme: 'info', life: 1000 });
});
});

File diff suppressed because one or more lines are too long

View file

@ -135,3 +135,9 @@ div.section-wrapper {
text-align: left;
font-size: 12px;
}
footer {
text-align: center;
padding-top: 3em;
padding-bottom: 1em;
}

View file

@ -354,8 +354,8 @@ section {
/* footer */
footer {
display: none;
text-align: center;
padding-bottom: 1em;
}
.birthday-today, .event-today {
@ -620,6 +620,10 @@ input#dfrn-url {
clear: both;
}
#croppa {
max-width: 510px;
}
.intro-wrapper {
margin-top: 20px;
}
@ -1351,6 +1355,13 @@ input#dfrn-url {
line-height: 18px;
}
.wall-item-body iframe {
display: block;
clear: both;
margin-top: 1.5em;
margin-bottom: 1.5em;
}
.wall-item-tools {
clear: both;
/* background-image: url("head.jpg");
@ -3193,7 +3204,7 @@ aside input[type='text'] {
display: block;
margin-left: 50px;
color: #666666;
clear: left;
}
.field .onoff {
@ -3291,6 +3302,10 @@ aside input[type='text'] {
#adminpage table tr:hover { background-color: #bbc7d7; }
#adminpage .selectall { text-align: right; }
#adminpage .screenshot img {
max-width: 550px;
}
/*
* UPDATE
*/

View file

@ -4,7 +4,7 @@
* Name: Frost
* Description: Like frosted glass
* Credits: Navigation icons taken from http://iconza.com. Other icons taken from http://thenounproject.com, including: Like, Dislike, Black Lock, Unlock, Pencil, Tag, Camera, Paperclip (Marie Coons), Folder (Sergio Calcara), Chain-link (Andrew Fortnum), Speaker (Harold Kim), Quotes (Henry Ryder), Video Camera (Anas Ramadan), and Left Arrow, Right Arrow, and Delete X (all three P.J. Onori). All under Attribution (CC BY 3.0). Others from The Noun Project are public domain or No Rights Reserved (CC0).
* Version: Version 0.2.10
* Version: Version 0.2.11
* Author: Zach P <techcity@f.shmuz.in>
* Maintainer: Zach P <techcity@f.shmuz.in>
*/

View file

@ -0,0 +1,2 @@
<a id="toggle_mobile_link" href="$toggle_link">$toggle_text</a>