diff --git a/.gitignore b/.gitignore index 18543589c..80fe3ec72 100755 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,7 @@ include/jquery-1.4.2.min.js home.html addon *~ +.*.swp compiled/ custom/ /store/ diff --git a/app/admin.apd b/app/admin.apd new file mode 100644 index 000000000..dbd2f6971 --- /dev/null +++ b/app/admin.apd @@ -0,0 +1,4 @@ +url: $baseurl/admin +requires: admin +name: Site Admin +photo: $baseurl/app/admin.png diff --git a/app/admin.png b/app/admin.png new file mode 100644 index 000000000..f1954e52a Binary files /dev/null and b/app/admin.png differ diff --git a/app/bookmarks.apd b/app/bookmarks.apd new file mode 100644 index 000000000..f126a35c5 --- /dev/null +++ b/app/bookmarks.apd @@ -0,0 +1,4 @@ +url: $baseurl/bookmarks +requires: local_user +name: Bookmarks +photo: $baseurl/app/bookmarks.png diff --git a/app/bookmarks.png b/app/bookmarks.png new file mode 100644 index 000000000..fffad3329 Binary files /dev/null and b/app/bookmarks.png differ diff --git a/app/manage.apd b/app/manage.apd new file mode 100644 index 000000000..ed6cb9f0a --- /dev/null +++ b/app/manage.apd @@ -0,0 +1,4 @@ +url: $baseurl/manage +requires: local_user +name: Channel Select +photo: $baseurl/app/manage.png diff --git a/app/manage.png b/app/manage.png new file mode 100644 index 000000000..4c4d13162 Binary files /dev/null and b/app/manage.png differ diff --git a/app/settings.apd b/app/settings.apd new file mode 100644 index 000000000..311f793ff --- /dev/null +++ b/app/settings.apd @@ -0,0 +1,4 @@ +url: $baseurl/settings +requires: local_user +name: Settings +photo: $baseurl/app/settings.png diff --git a/app/settings.png b/app/settings.png new file mode 100644 index 000000000..ff5d8e5d2 Binary files /dev/null and b/app/settings.png differ diff --git a/app/storage.apd b/app/storage.apd new file mode 100644 index 000000000..5900faae8 --- /dev/null +++ b/app/storage.apd @@ -0,0 +1,4 @@ +url: $baseurl/cloud/$nick +requires: local_user +name: Files +photo: $baseurl/app/storage.png diff --git a/app/storage.png b/app/storage.png new file mode 100644 index 000000000..c1f2df801 Binary files /dev/null and b/app/storage.png differ diff --git a/app/webpages.apd b/app/webpages.apd new file mode 100644 index 000000000..4241dbb8e --- /dev/null +++ b/app/webpages.apd @@ -0,0 +1,4 @@ +url: $baseurl/webpages/$nick +requires: local_user +name: Webpages +photo: $baseurl/app/webpages.png diff --git a/app/webpages.png b/app/webpages.png new file mode 100644 index 000000000..460117bae Binary files /dev/null and b/app/webpages.png differ diff --git a/boot.php b/boot.php index 24f7d5532..14a3d8770 100755 --- a/boot.php +++ b/boot.php @@ -47,13 +47,12 @@ define ( 'RED_PLATFORM', 'Red Matrix' ); define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'R'); define ( 'ZOT_REVISION', 1 ); -define ( 'DB_UPDATE_VERSION', 1109 ); +define ( 'DB_UPDATE_VERSION', 1111 ); define ( 'EOL', '
' . "\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); - define ( 'DIRECTORY_MODE_NORMAL', 0x0000); // This is technically DIRECTORY_MODE_TERTIARY, but it's the default, hence 0x0000 define ( 'DIRECTORY_MODE_PRIMARY', 0x0001); define ( 'DIRECTORY_MODE_SECONDARY', 0x0002); diff --git a/include/ItemObject.php b/include/ItemObject.php index cdb09ecf1..19283c317 100644 --- a/include/ItemObject.php +++ b/include/ItemObject.php @@ -131,12 +131,12 @@ class Item extends BaseObject { } else { $like_list_part = ''; } - $like_button_label = ((x($alike,$item['mid'])) && ($alike[$item['mid']] < 2 ) ? t('Like') : t('Likes')); + $like_button_label = tt('Like','Likes',$like_count,'noun'); if (feature_enabled($conv->get_profile_owner(),'dislike')) { $dislike_count = ((x($dlike,$item['mid'])) ? $dlike[$item['mid']] : ''); $dislike_list = ((x($dlike,$item['mid'])) ? $dlike[$item['mid'] . '-l'] : ''); - $dislike_button_label = ((x($dlike,$item['mid'])) && ($dlike[$item['mid']] < 2) ? t('Dislike') : t('Dislikes')); + $dislike_button_label = tt('Dislike','Dislikes',$dislike_count,'noun'); if (count($dislike_list) > MAX_LIKERS) { $dislike_list_part = array_slice($dislike_list, 0, MAX_LIKERS); array_push($dislike_list_part, '' . t('View all') . ''); @@ -276,8 +276,8 @@ class Item extends BaseObject { 'like_list' => $like_list, 'like_list_part' => $like_list_part, 'like_button_label' => $like_button_label, - 'like_modal_title' => t('Likes'), - 'dislike_modal_title' => t('Dislikes'), + 'like_modal_title' => t('Likes','noun'), + 'dislike_modal_title' => t('Dislikes','noun'), 'dislike_count' => ((feature_enabled($conv->get_profile_owner(),'dislike')) ? $dislike_count : ''), 'dislike_list' => ((feature_enabled($conv->get_profile_owner(),'dislike')) ? $dislike_list : ''), 'dislike_list_part' => ((feature_enabled($conv->get_profile_owner(),'dislike')) ? $dislike_list_part : ''), diff --git a/include/apps.php b/include/apps.php index 09aee0389..9eb54af00 100644 --- a/include/apps.php +++ b/include/apps.php @@ -31,11 +31,14 @@ function get_system_apps() { } } } - + usort($ret,'app_name_compare'); return $ret; } +function app_name_compare($a,$b) { + return strcmp($a['name'],$b['name']); +} function parse_app_description($f) { $ret = array(); @@ -79,6 +82,10 @@ function parse_app_description($f) { if(local_user()) unset($ret); break; + case 'admin': + if(! is_site_admin()) + unset($ret); + break; case 'local_user': if(! local_user()) unset($ret); @@ -93,7 +100,7 @@ function parse_app_description($f) { break; } - logger('require: ' . print_r($ret,true)); +// logger('require: ' . print_r($ret,true)); } if($ret) { translate_system_apps($ret); @@ -104,7 +111,16 @@ function parse_app_description($f) { function translate_system_apps(&$arr) { - $apps = array( 'Matrix' => t('Matrix'), + $apps = array( + 'Site Admin' => t('Site Admin'), + 'Bookmarks' => t('Bookmarks'), + 'Address Book' => t('Address Book'), + 'Login' => t('Login'), + 'Channel Select' => t('Channel Select'), + 'Matrix' => t('Matrix'), + 'Settings' => t('Settings'), + 'Files' => t('Files'), + 'Webpages' => t('Webpages'), 'Channel Home' => t('Channel Home'), 'Profile' => t('Profile'), 'Photos' => t('Photos'), @@ -118,19 +134,71 @@ function translate_system_apps(&$arr) { } -function app_render($app) { + +// papp is a portable app + +function app_render($papp,$mode = 'view') { + + /** + * modes: + * view: normal mode for viewing an app via bbcode from a conversation or page + * provides install/update button if you're logged in locally + * list: normal mode for viewing an app on the app page + * no buttons are shown + * edit: viewing the app page in editing mode provides a delete button + */ + + $installed = false; + + if(! $papp['photo']) + $papp['photo'] = z_root() . '/' . get_default_profile_photo(80); + $papp['papp'] = papp_encode($papp); + foreach($papp as $k => $v) { + if(strpos($v,'http') === 0 && $k != 'papp') + $papp[$k] = zid($v); + if($k === 'desc') + $papp['desc'] = str_replace(array('\'','"'),array(''','&dquot;'),$papp['desc']); + } + if(local_user()) { + $installed = app_installed(local_user(),$papp); + } + $install_action = (($installed) ? t('Update') : t('Install')); + + return replace_macros(get_markup_template('app.tpl'),array( + '$app' => $papp, + '$purchase' => (($papp['page'] && (! $installed)) ? t('Purchase') : ''), + '$install' => ((local_user() && $mode == 'view') ? $install_action : ''), + '$edit' => ((local_user() && $installed && $mode == 'edit') ? t('Edit') : ''), + '$delete' => ((local_user() && $installed && $mode == 'edit') ? t('Delete') : '') + )); } function app_install($uid,$app) { + $app['uid'] = $uid; + if(app_installed($uid,$app)) + $x = app_update($app); + else + $x = app_store($app); + if($x['success']) + return $x['app_id']; + return false; +} +function app_destroy($uid,$app) { + if($uid && $app['guid']) { + $r = q("delete from app where app_id = '%s' and app_channel = %d limit 1", + dbesc($app['guid']), + intval($uid) + ); + } } @@ -155,30 +223,41 @@ function app_list($uid) { function app_decode($s) { - $x = base64_decode($s); + $x = base64_decode(str_replace(array('
',"\r","\n",' '),array('','','',''),$s)); return json_decode($x,true); } function app_store($arr) { + // logger('app_store: ' . print_r($arr,true)); + $darray = array(); $ret = array('success' => false); $darray['app_url'] = ((x($arr,'url')) ? $arr['url'] : ''); $darray['app_channel'] = ((x($arr,'uid')) ? $arr['uid'] : 0); - if((! $darray['url']) || (! $darray['app_channel'])) + if((! $darray['app_url']) || (! $darray['app_channel'])) return $ret; - $darray['app_id'] = ((x($arr,'guid')) ? $arr['guid'] : random_string()); + if($arr['photo'] && ! strstr($arr['photo'],z_root())) { + $x = import_profile_photo($arr['photo'],get_observer_hash(),true); + $arr['photo'] = $x[1]; + } + + + $darray['app_id'] = ((x($arr,'guid')) ? $arr['guid'] : random_string(). '.' . get_app()->get_hostname()); $darray['app_sig'] = ((x($arr,'sig')) ? $arr['sig'] : ''); $darray['app_author'] = ((x($arr,'author')) ? $arr['author'] : get_observer_hash()); $darray['app_name'] = ((x($arr,'name')) ? escape_tags($arr['name']) : t('Unknown')); $darray['app_desc'] = ((x($arr,'desc')) ? escape_tags($arr['desc']) : ''); $darray['app_photo'] = ((x($arr,'photo')) ? $arr['photo'] : z_root() . '/' . get_default_profile_photo(80)); $darray['app_version'] = ((x($arr,'version')) ? escape_tags($arr['version']) : ''); + $darray['app_addr'] = ((x($arr,'addr')) ? escape_tags($arr['addr']) : ''); + $darray['app_price'] = ((x($arr,'price')) ? escape_tags($arr['price']) : ''); + $darray['app_page'] = ((x($arr,'page')) ? escape_tags($arr['page']) : ''); - $r = q("insert into app ( app_id, app_sig, app_author, app_name, app_desc, app_url, app_photo, app_version, app_channel) values ( '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d )", + $r = q("insert into app ( app_id, app_sig, app_author, app_name, app_desc, app_url, app_photo, app_version, app_channel, app_addr, app_price, app_page ) values ( '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, '%s', '%s', '%s' )", dbesc($darray['app_id']), dbesc($darray['app_sig']), dbesc($darray['app_author']), @@ -187,18 +266,122 @@ function app_store($arr) { dbesc($darray['app_url']), dbesc($darray['app_photo']), dbesc($darray['app_version']), - intval($darray['app_channel']) + intval($darray['app_channel']), + dbesc($darray['app_addr']), + dbesc($darray['app_price']), + dbesc($darray['app_page']) ); - if($r) + if($r) { $ret['success'] = true; - + $ret['app_id'] = $darray['app_id']; + } return $ret; } function app_update($arr) { + $darray = array(); + $ret = array('success' => false); + + $darray['app_url'] = ((x($arr,'url')) ? $arr['url'] : ''); + $darray['app_channel'] = ((x($arr,'uid')) ? $arr['uid'] : 0); + $darray['app_id'] = ((x($arr,'guid')) ? $arr['guid'] : 0); + if((! $darray['app_url']) || (! $darray['app_channel']) || (! $darray['app_id'])) + return $ret; + + if($arr['photo'] && ! strstr($arr['photo'],z_root())) { + $x = import_profile_photo($arr['photo'],get_observer_hash(),true); + $arr['photo'] = $x[1]; + } + + $darray['app_sig'] = ((x($arr,'sig')) ? $arr['sig'] : ''); + $darray['app_author'] = ((x($arr,'author')) ? $arr['author'] : get_observer_hash()); + $darray['app_name'] = ((x($arr,'name')) ? escape_tags($arr['name']) : t('Unknown')); + $darray['app_desc'] = ((x($arr,'desc')) ? escape_tags($arr['desc']) : ''); + $darray['app_photo'] = ((x($arr,'photo')) ? $arr['photo'] : z_root() . '/' . get_default_profile_photo(80)); + $darray['app_version'] = ((x($arr,'version')) ? escape_tags($arr['version']) : ''); + $darray['app_addr'] = ((x($arr,'addr')) ? escape_tags($arr['addr']) : ''); + $darray['app_price'] = ((x($arr,'price')) ? escape_tags($arr['price']) : ''); + $darray['app_page'] = ((x($arr,'page')) ? escape_tags($arr['page']) : ''); + + $r = q("update app set app_sig = '%s', app_author = '%s', app_name = '%s', app_desc = '%s', app_url = '%s', app_photo = '%s', app_version = '%s', app_addr = '%s', app_price = '%s', app_page = '%s' where app_id = '%s' and app_channel = %d limit 1", + dbesc($darray['app_sig']), + dbesc($darray['app_author']), + dbesc($darray['app_name']), + dbesc($darray['app_desc']), + dbesc($darray['app_url']), + dbesc($darray['app_photo']), + dbesc($darray['app_version']), + dbesc($darray['app_addr']), + dbesc($darray['app_price']), + dbesc($darray['app_page']), + dbesc($darray['app_id']), + intval($darray['app_channel']) + ); + if($r) { + $ret['success'] = true; + $ret['app_id'] = $darray['app_id']; + } + + return $ret; + +} +function app_encode($app,$embed = false) { + + $ret = array(); + + if($app['app_id']) + $ret['guid'] = $app['app_id']; + + if($app['app_id']) + $ret['guid'] = $app['app_id']; + + if($app['app_sig']) + $ret['sig'] = $app['app_sig']; + + if($app['app_author']) + $ret['author'] = $app['app_author']; + + if($app['app_name']) + $ret['name'] = $app['app_name']; + + if($app['app_desc']) + $ret['desc'] = $app['app_desc']; + + if($app['app_url']) + $ret['url'] = $app['app_url']; + + if($app['app_photo']) + $ret['photo'] = $app['app_photo']; + + if($app['app_version']) + $ret['version'] = $app['app_version']; + + if($app['app_addr']) + $ret['addr'] = $app['app_addr']; + + if($app['app_price']) + $ret['price'] = $app['app_price']; + + if($app['app_page']) + $ret['page'] = $app['app_page']; + +// if($app['alt_url']) +// $ret['alt_url'] = $app['alt_url']; + + if(! $embed) + return $ret; + + $j = json_encode($ret); + return '[app]' . chunk_split(base64_encode($j),72,"\n") . '[/app]'; + +} + + +function papp_encode($papp) { + return chunk_split(base64_encode(json_encode($papp)),72,"\n"); } \ No newline at end of file diff --git a/include/bbcode.php b/include/bbcode.php index a4e7560d6..674b5f45a 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -166,6 +166,15 @@ function bb_parse_crypt($match) { } +function bb_parse_app($match) { + require_once('include/apps.php'); + + $app = app_decode($match[1]); + if($app) + return app_render($app); + +} + function bb_qr($match) { return '' . t('QR code') . ''; } @@ -684,6 +693,11 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true) { $Text = preg_replace_callback("/\[crypt (.*?)\](.*?)\[\/crypt\]/ism", 'bb_parse_crypt', $Text); } + if(strpos($Text,'[/app]') !== false) { + $Text = preg_replace_callback("/\[app\](.*?)\[\/app\]/ism",'bb_parse_app', $Text); + } + + // html5 video and audio if (strpos($Text,'[/video]') !== false) { $Text = preg_replace_callback("/\[video\](.*?\.(ogg|ogv|oga|ogm|webm|mp4))\[\/video\]/ism", 'tryzrlvideo', $Text); diff --git a/include/items.php b/include/items.php index 5aaeb55c0..1c44b7df5 100755 --- a/include/items.php +++ b/include/items.php @@ -2438,7 +2438,7 @@ function tag_deliver($uid,$item_id) { if($terms) { foreach($terms as $term) { - if((strcasecmp($term['term'],$u[0]['channel_name']) == 0) && link_compare($term['url'],$link)) { + if(link_compare($term['url'],$link)) { $mention = true; break; } @@ -2474,11 +2474,11 @@ function tag_deliver($uid,$item_id) { $tagged = false; $plustagged = false; - $pattern = '/@\!?\[zrl\=' . preg_quote($term['url'],'/') . '\]' . preg_quote($u[0]['channel_name'],'/') . '\[\/zrl\]/'; + $pattern = '/@\!?\[zrl\=' . preg_quote($term['url'],'/') . '\]' . preg_quote($term['term'],'/') . '\[\/zrl\]/'; if(preg_match($pattern,$body,$matches)) $tagged = true; - $pattern = '/@\!?\[zrl\=' . preg_quote($term['url'],'/') . '\]' . preg_quote($u[0]['channel_name'] . '+','/') . '\[\/zrl\]/'; + $pattern = '/@\!?\[zrl\=' . preg_quote($term['url'],'/') . '\]' . preg_quote($term['term'] . '+','/') . '\[\/zrl\]/'; if(preg_match($pattern,$body,$matches)) $plustagged = true; @@ -2607,7 +2607,7 @@ function tgroup_check($uid,$item) { if($terms) { foreach($terms as $term) { - if(($term['term'] == $u[0]['channel_name']) && link_compare($term['url'],$link)) { + if(link_compare($term['url'],$link)) { $mention = true; break; } @@ -2625,7 +2625,7 @@ function tgroup_check($uid,$item) { $body = preg_replace('/\[share(.*?)\[\/share\]/','',$item['body']); - $pattern = '/@\!?\[zrl\=' . preg_quote($term['url'],'/') . '\]' . preg_quote($u[0]['channel_name'] . '+','/') . '\[\/zrl\]/'; + $pattern = '/@\!?\[zrl\=' . preg_quote($term['url'],'/') . '\]' . preg_quote($term['term'] . '+','/') . '\[\/zrl\]/'; if(! preg_match($pattern,$body,$matches)) { logger('tgroup_check: mention was in a reshare - ignoring'); diff --git a/include/language.php b/include/language.php index b43f5aacc..cfaa855dd 100644 --- a/include/language.php +++ b/include/language.php @@ -145,25 +145,29 @@ function load_translation_table($lang, $install = false) { /** * @brief translate string if translation exists. * - * @param s string that should get translated + * @param $s string that should get translated + * @param $ctx optional context to appear in po file * @return translated string if exsists, otherwise s + * */ -function t($s) { +function t($s,$ctx = '') { global $a; - if(x($a->strings,$s)) { - $t = $a->strings[$s]; + $cs = $ctx?"__ctx:".$ctx."__ ".$s:$s; + if(x($a->strings,$cs)) { + $t = $a->strings[$cs]; return is_array($t) ? $t[0] : $t; } return $s; } -function tt($singular, $plural, $count){ +function tt($singular, $plural, $count, $ctx = ''){ $a = get_app(); - if(x($a->strings,$singular)) { - $t = $a->strings[$singular]; + $cs = $ctx?"__ctx:".$ctx."__ ".$singular:$singular; + if(x($a->strings,$cs)) { + $t = $a->strings[$cs]; $f = 'string_plural_select_' . str_replace('-', '_', $a->language); if(! function_exists($f)) $f = 'string_plural_select_default'; @@ -210,8 +214,10 @@ function detect_language($s) { if($min_confidence === false) $min_confidence = LANGUAGE_DETECT_MIN_CONFIDENCE; + // embedded apps have long base64 strings which will trip up the detector. + $naked_body = preg_replace('/\[app\](.*?)\[\/app\]/','',$s); // strip off bbcode - $naked_body = preg_replace('/\[(.+?)\]/', '', $s); + $naked_body = preg_replace('/\[(.+?)\]/', '', $naked_body); if(mb_strlen($naked_body) < intval($min_length)) { logger('detect language: string length less than ' . intval($min_length), LOGGER_DATA); return ''; diff --git a/include/nav.php b/include/nav.php index a97b434bc..2d0d43d5a 100644 --- a/include/nav.php +++ b/include/nav.php @@ -138,8 +138,8 @@ EOT; if(! get_config('system','hide_help')) $nav['help'] = array($help_url, t('Help'), "", t('Help and documentation')); - if(count($a->get_apps()) > 0) - $nav['apps'] = array('apps', t('Apps'), "", t('Addon applications, utilities, games')); + + $nav['apps'] = array('apps', t('Apps'), "", t('Applications, utilities, links, games')); $nav['search'] = array('search', t('Search'), "", t('Search site content')); @@ -221,7 +221,6 @@ EOT; '$userinfo' => $x['usermenu'], '$localuser' => local_user(), '$sel' => $a->nav_sel, - '$apps' => $a->get_apps(), '$pleasewait' => t('Please wait...') )); diff --git a/include/widgets.php b/include/widgets.php index 37a079bc7..1043acce0 100644 --- a/include/widgets.php +++ b/include/widgets.php @@ -76,11 +76,11 @@ function widget_collections($args) { function widget_appselect($arr) { return replace_macros(get_markup_template('app_select.tpl'),array( - '$title' => t('App Category'), + '$title' => t('Apps'), '$system' => t('System'), '$personal' => t('Personal'), - '$featured' => t('Featured'), - '$new' => t('New') + '$new' => t('Create Personal App'), + '$edit' => t('Edit Personal App') )); } diff --git a/install/database.sql b/install/database.sql index 0de5879a2..d03cebd4b 100644 --- a/install/database.sql +++ b/install/database.sql @@ -85,7 +85,7 @@ CREATE TABLE IF NOT EXISTS `addon` ( CREATE TABLE IF NOT EXISTS `app` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `app_id` char(64) NOT NULL DEFAULT '', + `app_id` char(255) NOT NULL DEFAULT '', `app_sig` char(255) NOT NULL DEFAULT '', `app_author` char(255) NOT NULL DEFAULT '', `app_name` char(255) NOT NULL DEFAULT '', diff --git a/install/update.php b/install/update.php index 561070ba4..cc755c8c2 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ intval($_REQUEST['uid']), + 'url' => escape_tags($_REQUEST['url']), + 'guid' => escape_tags($_REQUEST['guid']), + 'author' => escape_tags($_REQUEST['author']), + 'addr' => escape_tags($_REQUEST['addr']), + 'name' => escape_tags($_REQUEST['name']), + 'desc' => escape_tags($_REQUEST['desc']), + 'photo' => escape_tags($_REQUEST['photo']), + 'version' => escape_tags($_REQUEST['version']), + 'price' => escape_tags($_REQUEST['price']), + 'sig' => escape_tags($_REQUEST['sig']) + ); + + $_REQUEST['appid'] = app_install(local_user(),$arr); + if(app_installed(local_user(),$arr)) + info( t('App installed.') . EOL); + return; + } + + + $papp = app_decode($_POST['papp']); + + if(! is_array($papp)) { + notice( t('Malformed app.') . EOL); + return; + } + + if($_POST['install']) { + app_install(local_user(),$papp); + } + + if($_POST['delete']) { + app_destroy(local_user(),$papp); + } + + if($_POST['edit']) { + return; + } + + if($_SESSION['return_url']) + goaway(z_root() . '/' . $_SESSION['return_url']); + goaway(z_root() . '/apps/personal'); + + +} + + +function appman_content(&$a) { + + if(! local_user()) { + notice( t('Permission denied.') . EOL); + return; + } +logger('content'); + $channel = $a->get_channel(); + $app = null; + $embed = null; + if($_REQUEST['appid']) { + $r = q("select * from app where app_id = '%s' and app_channel = %d limit 1", + dbesc($_REQUEST['appid']), + dbesc(local_user()) + ); + if($r) + $app = $r[0]; + $embed = array('embed', t('Embed code'), app_encode($app,true),''); + + } + + return replace_macros(get_markup_template('app_create.tpl'), array( + + '$banner' => (($app) ? t('Edit App') : t('Create App')), + '$app' => $app, + '$guid' => (($app) ? $app['app_id'] : ''), + '$author' => (($app) ? $app['app_author'] : $channel['channel_hash']), + '$addr' => (($app) ? $app['app_addr'] : $channel['xchan_addr']), + '$name' => array('name', t('Name of app'),(($app) ? $app['app_name'] : ''), t('Required')), + '$url' => array('url', t('Location (URL) of app'),(($app) ? $app['app_url'] : ''), t('Required')), + '$desc' => array('desc', t('Description'),(($app) ? $app['app_desc'] : ''), ''), + '$photo' => array('photo', t('Photo icon URL'),(($app) ? $app['app_url'] : ''), t('80 x 80 pixels - optional')), + '$version' => array('version', t('Version ID'),(($app) ? $app['app_version'] : ''), ''), + '$price' => array('price', t('Price of app'),(($app) ? $app['app_price'] : ''), ''), + '$page' => array('page', t('Location (URL) to purchase app'),(($app) ? $app['app_page'] : ''), ''), + '$embed' => $embed, + '$submit' => t('Submit') + )); + +} \ No newline at end of file diff --git a/mod/apps.php b/mod/apps.php index 3d06abd49..e88c54c66 100644 --- a/mod/apps.php +++ b/mod/apps.php @@ -5,15 +5,34 @@ require_once('include/apps.php'); function apps_content(&$a) { + if(argc() == 1 || (! local_user())) { - $apps = get_system_apps(); + $apps = get_system_apps(); -// $o .= print_r($apps,true); + // $o .= print_r($apps,true); -// return $o; + // return $o; + return replace_macros(get_markup_template('apps.tpl'), array( + '$title' => t('Apps'), + '$apps' => $apps, + )); + } - return replace_macros(get_markup_template('apps.tpl'), array( + if(argc() == 3 && argv(2) == 'edit') + $mode = 'edit'; + else + $mode = 'list'; + + $apps = array(); + $list = app_list(local_user()); + if($list) { + foreach($list as $app) { + $apps[] = app_render(app_encode($app),$mode); + } + } + + return replace_macros(get_markup_template('myapps.tpl'), array( '$title' => t('Apps'), '$apps' => $apps, )); diff --git a/mod/home.php b/mod/home.php index 05626dcb5..862f6303c 100644 --- a/mod/home.php +++ b/mod/home.php @@ -12,9 +12,11 @@ function home_init(&$a) { $channel = $a->get_channel(); if(local_user() && $channel && $channel['xchan_url']) { - $dest = get_pconfig(local_user(),'system','startpage'); + $dest = $channel['channel_startpage']; if(! $dest) - $dest = z_root() . '/network'; + $dest = get_pconfig(local_user(),'system','startpage'); + if(! $dest) + $dest = z_root() . '/apps'; goaway($dest); } diff --git a/util/messages.po b/util/messages.po index c92f0e5f9..fd710f9fa 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2014-05-16.677\n" +"Project-Id-Version: 2014-05-20.681\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-16 00:02-0700\n" +"POT-Creation-Date: 2014-05-21 05:30-0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,46 +17,510 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../include/dba/dba_driver.php:50 +#: ../../include/follow.php:23 +msgid "Channel is blocked on this site." +msgstr "" + +#: ../../include/follow.php:28 +msgid "Channel location missing." +msgstr "" + +#: ../../include/follow.php:54 +msgid "Response from remote channel was incomplete." +msgstr "" + +#: ../../include/follow.php:85 +msgid "Channel was deleted and no longer exists." +msgstr "" + +#: ../../include/follow.php:132 +msgid "Channel discovery failed." +msgstr "" + +#: ../../include/follow.php:149 +msgid "local account not found." +msgstr "" + +#: ../../include/follow.php:158 +msgid "Cannot connect to yourself." +msgstr "" + +#: ../../include/reddav.php:1045 +msgid "Edit File properties" +msgstr "" + +#: ../../include/event.php:11 ../../include/bb2diaspora.php:433 +msgid "l F d, Y \\@ g:i A" +msgstr "" + +#: ../../include/event.php:20 ../../include/bb2diaspora.php:439 +msgid "Starts:" +msgstr "" + +#: ../../include/event.php:30 ../../include/bb2diaspora.php:447 +msgid "Finishes:" +msgstr "" + +#: ../../include/event.php:40 ../../include/bb2diaspora.php:455 +#: ../../include/identity.php:726 ../../mod/dirprofile.php:105 +#: ../../mod/directory.php:156 ../../mod/events.php:474 +msgid "Location:" +msgstr "" + +#: ../../include/widgets.php:29 ../../include/contact_widgets.php:92 +msgid "Categories" +msgstr "" + +#: ../../include/widgets.php:79 +msgid "App Category" +msgstr "" + +#: ../../include/widgets.php:80 +msgid "System" +msgstr "" + +#: ../../include/widgets.php:81 ../../include/conversation.php:1415 +msgid "Personal" +msgstr "" + +#: ../../include/widgets.php:127 ../../include/widgets.php:167 +#: ../../include/Contact.php:107 ../../include/identity.php:675 +#: ../../mod/dirprofile.php:164 ../../mod/directory.php:183 +#: ../../mod/suggest.php:51 ../../mod/match.php:62 +msgid "Connect" +msgstr "" + +#: ../../include/widgets.php:129 ../../mod/suggest.php:53 +msgid "Ignore/Hide" +msgstr "" + +#: ../../include/widgets.php:135 ../../mod/connections.php:266 +msgid "Suggestions" +msgstr "" + +#: ../../include/widgets.php:136 +msgid "See more..." +msgstr "" + +#: ../../include/widgets.php:158 #, php-format -msgid "Cannot locate DNS info for database server '%s'" +msgid "You have %1$.0f of %2$.0f allowed connections." msgstr "" -#: ../../include/photo/photo_driver.php:643 ../../include/photos.php:51 -#: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 -#: ../../mod/profile_photo.php:421 ../../mod/photos.php:91 -#: ../../mod/photos.php:655 ../../mod/photos.php:677 -msgid "Profile Photos" +#: ../../include/widgets.php:164 +msgid "Add New Connection" msgstr "" -#: ../../include/apps.php:107 ../../include/nav.php:158 -msgid "Matrix" +#: ../../include/widgets.php:165 +msgid "Enter the channel address" msgstr "" -#: ../../include/apps.php:107 ../../include/nav.php:161 -msgid "Channel Home" +#: ../../include/widgets.php:166 +msgid "Example: bob@example.com, http://example.com/barbara" msgstr "" -#: ../../include/apps.php:107 ../../include/identity.php:942 -#: ../../include/identity.php:1031 ../../mod/profperm.php:112 -msgid "Profile" +#: ../../include/widgets.php:183 +msgid "Notes" msgstr "" -#: ../../include/apps.php:108 ../../include/conversation.php:1501 -#: ../../include/nav.php:84 ../../mod/fbrowser.php:25 +#: ../../include/widgets.php:185 ../../include/text.php:815 +#: ../../include/text.php:829 ../../mod/filer.php:50 ../../mod/rbmark.php:28 +#: ../../mod/rbmark.php:98 +msgid "Save" +msgstr "" + +#: ../../include/widgets.php:255 +msgid "Remove term" +msgstr "" + +#: ../../include/widgets.php:264 ../../include/features.php:52 +msgid "Saved Searches" +msgstr "" + +#: ../../include/widgets.php:265 ../../include/group.php:290 +msgid "add" +msgstr "" + +#: ../../include/widgets.php:295 ../../include/features.php:66 +#: ../../include/contact_widgets.php:58 +msgid "Saved Folders" +msgstr "" + +#: ../../include/widgets.php:298 ../../include/contact_widgets.php:61 +#: ../../include/contact_widgets.php:95 +msgid "Everything" +msgstr "" + +#: ../../include/widgets.php:334 +msgid "Archives" +msgstr "" + +#: ../../include/widgets.php:396 +msgid "Refresh" +msgstr "" + +#: ../../include/widgets.php:397 ../../mod/connedit.php:428 +msgid "Me" +msgstr "" + +#: ../../include/widgets.php:398 ../../mod/connedit.php:430 +msgid "Best Friends" +msgstr "" + +#: ../../include/widgets.php:399 ../../include/profile_selectors.php:42 +#: ../../include/identity.php:342 ../../mod/connedit.php:431 +msgid "Friends" +msgstr "" + +#: ../../include/widgets.php:400 +msgid "Co-workers" +msgstr "" + +#: ../../include/widgets.php:401 ../../mod/connedit.php:432 +msgid "Former Friends" +msgstr "" + +#: ../../include/widgets.php:402 ../../mod/connedit.php:433 +msgid "Acquaintances" +msgstr "" + +#: ../../include/widgets.php:403 +msgid "Everybody" +msgstr "" + +#: ../../include/widgets.php:435 +msgid "Account settings" +msgstr "" + +#: ../../include/widgets.php:441 +msgid "Channel settings" +msgstr "" + +#: ../../include/widgets.php:447 +msgid "Additional features" +msgstr "" + +#: ../../include/widgets.php:453 +msgid "Feature settings" +msgstr "" + +#: ../../include/widgets.php:459 +msgid "Display settings" +msgstr "" + +#: ../../include/widgets.php:465 +msgid "Connected apps" +msgstr "" + +#: ../../include/widgets.php:471 +msgid "Export channel" +msgstr "" + +#: ../../include/widgets.php:483 +msgid "Automatic Permissions (Advanced)" +msgstr "" + +#: ../../include/widgets.php:493 +msgid "Premium Channel Settings" +msgstr "" + +#: ../../include/widgets.php:502 ../../include/features.php:43 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "" + +#: ../../include/widgets.php:513 ../../include/nav.php:186 +#: ../../mod/admin.php:976 ../../mod/admin.php:1181 +msgid "Settings" +msgstr "" + +#: ../../include/widgets.php:530 +msgid "Check Mail" +msgstr "" + +#: ../../include/widgets.php:535 ../../include/nav.php:177 +msgid "New Message" +msgstr "" + +#: ../../include/widgets.php:611 +msgid "Chat Rooms" +msgstr "" + +#: ../../include/widgets.php:629 +msgid "Bookmarked Chatrooms" +msgstr "" + +#: ../../include/widgets.php:647 +msgid "Suggested Chatrooms" +msgstr "" + +#: ../../include/api.php:1016 +msgid "Public Timeline" +msgstr "" + +#: ../../include/nav.php:77 ../../include/nav.php:96 ../../boot.php:1450 +msgid "Logout" +msgstr "" + +#: ../../include/nav.php:77 ../../include/nav.php:96 +msgid "End this session" +msgstr "" + +#: ../../include/nav.php:80 ../../include/nav.php:130 +msgid "Home" +msgstr "" + +#: ../../include/nav.php:80 +msgid "Your posts and conversations" +msgstr "" + +#: ../../include/nav.php:81 ../../include/conversation.php:937 +#: ../../mod/connedit.php:351 ../../mod/connedit.php:465 +msgid "View Profile" +msgstr "" + +#: ../../include/nav.php:81 +msgid "Your profile page" +msgstr "" + +#: ../../include/nav.php:83 +msgid "Edit Profiles" +msgstr "" + +#: ../../include/nav.php:83 +msgid "Manage/Edit profiles" +msgstr "" + +#: ../../include/nav.php:84 ../../include/conversation.php:1501 +#: ../../include/apps.php:110 ../../mod/fbrowser.php:25 msgid "Photos" msgstr "" -#: ../../include/apps.php:108 ../../include/conversation.php:1532 -#: ../../include/nav.php:87 ../../include/nav.php:180 ../../mod/events.php:366 +#: ../../include/nav.php:84 +msgid "Your photos" +msgstr "" + +#: ../../include/nav.php:85 ../../include/conversation.php:1510 +#: ../../mod/fbrowser.php:114 +msgid "Files" +msgstr "" + +#: ../../include/nav.php:85 +msgid "Your files" +msgstr "" + +#: ../../include/nav.php:86 +msgid "Chat" +msgstr "" + +#: ../../include/nav.php:86 +msgid "Your chatrooms" +msgstr "" + +#: ../../include/nav.php:87 ../../include/nav.php:180 +#: ../../include/conversation.php:1532 ../../include/apps.php:111 +#: ../../mod/events.php:366 msgid "Events" msgstr "" -#: ../../include/apps.php:108 ../../include/nav.php:147 +#: ../../include/nav.php:87 +msgid "Your events" +msgstr "" + +#: ../../include/nav.php:88 ../../include/conversation.php:1540 +msgid "Bookmarks" +msgstr "" + +#: ../../include/nav.php:88 +msgid "Your bookmarks" +msgstr "" + +#: ../../include/nav.php:90 ../../include/conversation.php:1551 +#: ../../mod/webpages.php:79 +msgid "Webpages" +msgstr "" + +#: ../../include/nav.php:90 +msgid "Your webpages" +msgstr "" + +#: ../../include/nav.php:94 ../../boot.php:1451 +msgid "Login" +msgstr "" + +#: ../../include/nav.php:94 +msgid "Sign in" +msgstr "" + +#: ../../include/nav.php:111 +#, php-format +msgid "%s - click to logout" +msgstr "" + +#: ../../include/nav.php:116 +msgid "Click to authenticate to your home hub" +msgstr "" + +#: ../../include/nav.php:130 +msgid "Home Page" +msgstr "" + +#: ../../include/nav.php:134 ../../mod/register.php:206 ../../boot.php:1427 +msgid "Register" +msgstr "" + +#: ../../include/nav.php:134 +msgid "Create an account" +msgstr "" + +#: ../../include/nav.php:139 ../../include/apps.php:113 ../../mod/help.php:60 +#: ../../mod/help.php:65 +msgid "Help" +msgstr "" + +#: ../../include/nav.php:139 +msgid "Help and documentation" +msgstr "" + +#: ../../include/nav.php:142 ../../mod/apps.php:17 ../../mod/apps.php:35 +msgid "Apps" +msgstr "" + +#: ../../include/nav.php:142 +msgid "Addon applications, utilities, games" +msgstr "" + +#: ../../include/nav.php:144 ../../include/text.php:813 +#: ../../include/text.php:827 ../../mod/search.php:29 +msgid "Search" +msgstr "" + +#: ../../include/nav.php:144 +msgid "Search site content" +msgstr "" + +#: ../../include/nav.php:147 ../../include/apps.php:112 #: ../../mod/directory.php:210 msgid "Directory" msgstr "" +#: ../../include/nav.php:147 +msgid "Channel Locator" +msgstr "" + +#: ../../include/nav.php:158 ../../include/apps.php:107 +msgid "Matrix" +msgstr "" + +#: ../../include/nav.php:158 +msgid "Your matrix" +msgstr "" + +#: ../../include/nav.php:159 +msgid "Mark all matrix notifications seen" +msgstr "" + +#: ../../include/nav.php:161 ../../include/apps.php:108 +msgid "Channel Home" +msgstr "" + +#: ../../include/nav.php:161 +msgid "Channel home" +msgstr "" + +#: ../../include/nav.php:162 +msgid "Mark all channel notifications seen" +msgstr "" + +#: ../../include/nav.php:165 ../../include/nav.php:188 +#: ../../mod/connections.php:385 +msgid "Connections" +msgstr "" + +#: ../../include/nav.php:168 +msgid "Notices" +msgstr "" + +#: ../../include/nav.php:168 +msgid "Notifications" +msgstr "" + +#: ../../include/nav.php:169 +msgid "See all notifications" +msgstr "" + +#: ../../include/nav.php:170 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "" + +#: ../../include/nav.php:172 +msgid "Mail" +msgstr "" + +#: ../../include/nav.php:172 +msgid "Private mail" +msgstr "" + +#: ../../include/nav.php:173 +msgid "See all private messages" +msgstr "" + +#: ../../include/nav.php:174 +msgid "Mark all private messages seen" +msgstr "" + +#: ../../include/nav.php:175 +msgid "Inbox" +msgstr "" + +#: ../../include/nav.php:176 +msgid "Outbox" +msgstr "" + +#: ../../include/nav.php:180 +msgid "Event Calendar" +msgstr "" + +#: ../../include/nav.php:181 +msgid "See all events" +msgstr "" + +#: ../../include/nav.php:182 +msgid "Mark all events seen" +msgstr "" + +#: ../../include/nav.php:184 +msgid "Channel Select" +msgstr "" + +#: ../../include/nav.php:184 +msgid "Manage Your Channels" +msgstr "" + +#: ../../include/nav.php:186 +msgid "Account/Channel Settings" +msgstr "" + +#: ../../include/nav.php:188 +msgid "Manage/Edit Friends and Connections" +msgstr "" + +#: ../../include/nav.php:195 ../../mod/admin.php:117 +msgid "Admin" +msgstr "" + +#: ../../include/nav.php:195 +msgid "Site Setup and Configuration" +msgstr "" + +#: ../../include/nav.php:220 +msgid "Nothing new here" +msgstr "" + +#: ../../include/nav.php:225 +msgid "Please wait..." +msgstr "" + #: ../../include/oembed.php:171 msgid "Embedded content" msgstr "" @@ -65,299 +529,565 @@ msgstr "" msgid "Embedding disabled" msgstr "" -#: ../../include/notify.php:23 -msgid "created a new post" +#: ../../include/bbcode.php:128 ../../include/bbcode.php:642 +#: ../../include/bbcode.php:645 ../../include/bbcode.php:650 +#: ../../include/bbcode.php:653 ../../include/bbcode.php:656 +#: ../../include/bbcode.php:659 ../../include/bbcode.php:664 +#: ../../include/bbcode.php:667 ../../include/bbcode.php:672 +#: ../../include/bbcode.php:675 ../../include/bbcode.php:678 +#: ../../include/bbcode.php:681 +msgid "Image/photo" msgstr "" -#: ../../include/notify.php:24 +#: ../../include/bbcode.php:163 ../../include/bbcode.php:692 +msgid "Encrypted content" +msgstr "" + +#: ../../include/bbcode.php:179 +msgid "QR code" +msgstr "" + +#: ../../include/bbcode.php:228 #, php-format -msgid "commented on %s's post" +msgid "%1$s wrote the following %2$s %3$s" msgstr "" -#: ../../include/Contact.php:107 ../../include/identity.php:675 -#: ../../include/widgets.php:127 ../../include/widgets.php:167 -#: ../../mod/directory.php:183 ../../mod/dirprofile.php:164 -#: ../../mod/suggest.php:51 ../../mod/match.php:62 -msgid "Connect" +#: ../../include/bbcode.php:230 +msgid "post" msgstr "" -#: ../../include/Contact.php:123 -msgid "New window" +#: ../../include/bbcode.php:610 ../../include/bbcode.php:630 +msgid "$1 wrote:" msgstr "" -#: ../../include/Contact.php:124 -msgid "Open the selected location in a different window or browser tab" +#: ../../include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." msgstr "" -#: ../../include/page_widgets.php:6 -msgid "New Page" +#: ../../include/group.php:223 +msgid "Default privacy group for new contacts" msgstr "" -#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../include/ItemObject.php:96 ../../include/menu.php:42 -#: ../../mod/blocks.php:94 ../../mod/connections.php:392 -#: ../../mod/settings.php:577 ../../mod/editblock.php:111 -#: ../../mod/editlayout.php:106 ../../mod/editpost.php:112 -#: ../../mod/editwebpage.php:143 ../../mod/filestorage.php:174 -#: ../../mod/thing.php:235 ../../mod/layouts.php:112 ../../mod/menu.php:59 -#: ../../mod/webpages.php:119 -msgid "Edit" +#: ../../include/group.php:242 ../../mod/admin.php:762 +msgid "All Channels" msgstr "" -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:97 -#: ../../mod/layouts.php:116 ../../mod/webpages.php:122 -msgid "View" +#: ../../include/group.php:264 +msgid "edit" msgstr "" -#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:570 -#: ../../include/conversation.php:1088 ../../mod/editblock.php:141 -#: ../../mod/editlayout.php:135 ../../mod/editpost.php:140 -#: ../../mod/editwebpage.php:175 ../../mod/webpages.php:123 -#: ../../mod/photos.php:994 +#: ../../include/group.php:285 +msgid "Collections" +msgstr "" + +#: ../../include/group.php:286 +msgid "Edit collection" +msgstr "" + +#: ../../include/group.php:287 +msgid "Create a new collection" +msgstr "" + +#: ../../include/group.php:288 +msgid "Channels not in any collection" +msgstr "" + +#: ../../include/conversation.php:117 ../../include/text.php:1705 +#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 +#: ../../mod/tagger.php:45 ../../mod/like.php:111 +msgid "photo" +msgstr "" + +#: ../../include/conversation.php:120 ../../include/text.php:1708 +#: ../../mod/tagger.php:49 +msgid "event" +msgstr "" + +#: ../../include/conversation.php:123 +msgid "channel" +msgstr "" + +#: ../../include/conversation.php:145 ../../include/text.php:1711 +#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 +#: ../../mod/tagger.php:53 ../../mod/like.php:111 +msgid "status" +msgstr "" + +#: ../../include/conversation.php:147 ../../include/text.php:1713 +#: ../../mod/tagger.php:55 +msgid "comment" +msgstr "" + +#: ../../include/conversation.php:161 ../../mod/like.php:142 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "" + +#: ../../include/conversation.php:164 ../../mod/like.php:144 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "" + +#: ../../include/conversation.php:201 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "" + +#: ../../include/conversation.php:236 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: ../../include/conversation.php:240 ../../include/text.php:895 +msgid "poked" +msgstr "" + +#: ../../include/conversation.php:258 ../../mod/mood.php:63 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "" + +#: ../../include/conversation.php:631 ../../include/ItemObject.php:114 +msgid "Select" +msgstr "" + +#: ../../include/conversation.php:632 ../../include/ItemObject.php:108 +#: ../../include/apps.php:156 ../../mod/group.php:176 ../../mod/thing.php:236 +#: ../../mod/filestorage.php:175 ../../mod/connedit.php:398 +#: ../../mod/settings.php:578 ../../mod/photos.php:1043 +#: ../../mod/admin.php:757 ../../mod/admin.php:886 +msgid "Delete" +msgstr "" + +#: ../../include/conversation.php:639 ../../include/ItemObject.php:89 +#: ../../mod/photos.php:846 +msgid "Private Message" +msgstr "" + +#: ../../include/conversation.php:646 ../../include/ItemObject.php:182 +msgid "Message is verified" +msgstr "" + +#: ../../include/conversation.php:666 +#, php-format +msgid "View %s's profile @ %s" +msgstr "" + +#: ../../include/conversation.php:680 +msgid "Categories:" +msgstr "" + +#: ../../include/conversation.php:681 +msgid "Filed under:" +msgstr "" + +#: ../../include/conversation.php:690 ../../include/ItemObject.php:247 +#, php-format +msgid " from %s" +msgstr "" + +#: ../../include/conversation.php:693 ../../include/ItemObject.php:250 +#, php-format +msgid "last edited: %s" +msgstr "" + +#: ../../include/conversation.php:694 ../../include/ItemObject.php:251 +#, php-format +msgid "Expires: %s" +msgstr "" + +#: ../../include/conversation.php:709 +msgid "View in context" +msgstr "" + +#: ../../include/conversation.php:711 ../../include/conversation.php:1127 +#: ../../include/ItemObject.php:290 ../../mod/editlayout.php:115 +#: ../../mod/editpost.php:121 ../../mod/photos.php:974 +#: ../../mod/editblock.php:120 ../../mod/editwebpage.php:152 +#: ../../mod/mail.php:222 ../../mod/mail.php:336 +msgid "Please wait" +msgstr "" + +#: ../../include/conversation.php:838 +msgid "remove" +msgstr "" + +#: ../../include/conversation.php:842 +msgid "Loading..." +msgstr "" + +#: ../../include/conversation.php:843 +msgid "Delete Selected Items" +msgstr "" + +#: ../../include/conversation.php:934 +msgid "View Source" +msgstr "" + +#: ../../include/conversation.php:935 +msgid "Follow Thread" +msgstr "" + +#: ../../include/conversation.php:936 +msgid "View Status" +msgstr "" + +#: ../../include/conversation.php:938 +msgid "View Photos" +msgstr "" + +#: ../../include/conversation.php:939 +msgid "Matrix Activity" +msgstr "" + +#: ../../include/conversation.php:940 +msgid "Edit Contact" +msgstr "" + +#: ../../include/conversation.php:941 +msgid "Send PM" +msgstr "" + +#: ../../include/conversation.php:942 +msgid "Poke" +msgstr "" + +#: ../../include/conversation.php:998 +#, php-format +msgid "%s likes this." +msgstr "" + +#: ../../include/conversation.php:998 +#, php-format +msgid "%s doesn't like this." +msgstr "" + +#: ../../include/conversation.php:1002 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1004 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1010 +msgid "and" +msgstr "" + +#: ../../include/conversation.php:1013 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1014 +#, php-format +msgid "%s like this." +msgstr "" + +#: ../../include/conversation.php:1014 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: ../../include/conversation.php:1071 +msgid "Visible to everybody" +msgstr "" + +#: ../../include/conversation.php:1072 ../../mod/mail.php:171 +#: ../../mod/mail.php:269 +msgid "Please enter a link URL:" +msgstr "" + +#: ../../include/conversation.php:1073 +msgid "Please enter a video link/URL:" +msgstr "" + +#: ../../include/conversation.php:1074 +msgid "Please enter an audio link/URL:" +msgstr "" + +#: ../../include/conversation.php:1075 +msgid "Tag term:" +msgstr "" + +#: ../../include/conversation.php:1076 ../../mod/filer.php:49 +msgid "Save to Folder:" +msgstr "" + +#: ../../include/conversation.php:1077 +msgid "Where are you right now?" +msgstr "" + +#: ../../include/conversation.php:1078 ../../mod/editpost.php:52 +#: ../../mod/mail.php:172 ../../mod/mail.php:270 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "" + +#: ../../include/conversation.php:1088 ../../include/ItemObject.php:588 +#: ../../include/page_widgets.php:40 ../../mod/editlayout.php:135 +#: ../../mod/webpages.php:123 ../../mod/editpost.php:140 +#: ../../mod/photos.php:994 ../../mod/editblock.php:141 +#: ../../mod/editwebpage.php:175 msgid "Preview" msgstr "" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:124 -msgid "Actions" +#: ../../include/conversation.php:1102 ../../mod/photos.php:973 +#: ../../mod/layouts.php:113 +msgid "Share" msgstr "" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:125 -msgid "Page Link" +#: ../../include/conversation.php:1104 ../../mod/editwebpage.php:139 +msgid "Page link title" msgstr "" -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:126 -msgid "Title" +#: ../../include/conversation.php:1107 +msgid "Post as" msgstr "" -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:127 -msgid "Created" +#: ../../include/conversation.php:1108 ../../mod/editlayout.php:107 +#: ../../mod/editpost.php:113 ../../mod/editblock.php:112 +#: ../../mod/editwebpage.php:144 ../../mod/mail.php:219 ../../mod/mail.php:332 +msgid "Upload photo" msgstr "" -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:128 -msgid "Edited" +#: ../../include/conversation.php:1109 +msgid "upload photo" msgstr "" -#: ../../include/permissions.php:13 -msgid "Can view my \"public\" stream and posts" +#: ../../include/conversation.php:1110 ../../mod/editlayout.php:108 +#: ../../mod/editpost.php:114 ../../mod/editblock.php:113 +#: ../../mod/editwebpage.php:145 ../../mod/mail.php:220 ../../mod/mail.php:333 +msgid "Attach file" msgstr "" -#: ../../include/permissions.php:14 -msgid "Can view my \"public\" channel profile" +#: ../../include/conversation.php:1111 +msgid "attach file" msgstr "" -#: ../../include/permissions.php:15 -msgid "Can view my \"public\" photo albums" +#: ../../include/conversation.php:1112 ../../mod/editlayout.php:109 +#: ../../mod/editpost.php:115 ../../mod/editblock.php:114 +#: ../../mod/editwebpage.php:146 ../../mod/mail.php:221 ../../mod/mail.php:334 +msgid "Insert web link" msgstr "" -#: ../../include/permissions.php:16 -msgid "Can view my \"public\" address book" +#: ../../include/conversation.php:1113 +msgid "web link" msgstr "" -#: ../../include/permissions.php:17 -msgid "Can view my \"public\" file storage" +#: ../../include/conversation.php:1114 +msgid "Insert video link" msgstr "" -#: ../../include/permissions.php:18 -msgid "Can view my \"public\" pages" +#: ../../include/conversation.php:1115 +msgid "video link" msgstr "" -#: ../../include/permissions.php:21 -msgid "Can send me their channel stream and posts" +#: ../../include/conversation.php:1116 +msgid "Insert audio link" msgstr "" -#: ../../include/permissions.php:22 -msgid "Can post on my channel page (\"wall\")" +#: ../../include/conversation.php:1117 +msgid "audio link" msgstr "" -#: ../../include/permissions.php:23 -msgid "Can comment on my posts" +#: ../../include/conversation.php:1118 ../../mod/editlayout.php:113 +#: ../../mod/editpost.php:119 ../../mod/editblock.php:118 +#: ../../mod/editwebpage.php:150 +msgid "Set your location" msgstr "" -#: ../../include/permissions.php:24 -msgid "Can send me private mail messages" +#: ../../include/conversation.php:1119 +msgid "set location" msgstr "" -#: ../../include/permissions.php:25 -msgid "Can post photos to my photo albums" +#: ../../include/conversation.php:1120 ../../mod/editlayout.php:114 +#: ../../mod/editpost.php:120 ../../mod/editblock.php:119 +#: ../../mod/editwebpage.php:151 +msgid "Clear browser location" msgstr "" -#: ../../include/permissions.php:26 -msgid "Can forward to all my channel contacts via post @mentions" +#: ../../include/conversation.php:1121 +msgid "clear location" msgstr "" -#: ../../include/permissions.php:26 -msgid "Advanced - useful for creating group forum channels" +#: ../../include/conversation.php:1123 ../../mod/editlayout.php:126 +#: ../../mod/editpost.php:132 ../../mod/editblock.php:132 +#: ../../mod/editwebpage.php:167 +msgid "Set title" msgstr "" -#: ../../include/permissions.php:27 -msgid "Can chat with me (when available)" +#: ../../include/conversation.php:1126 ../../mod/editlayout.php:129 +#: ../../mod/editpost.php:134 ../../mod/editblock.php:135 +#: ../../mod/editwebpage.php:169 +msgid "Categories (comma-separated list)" msgstr "" -#: ../../include/permissions.php:28 -msgid "Can write to my \"public\" file storage" +#: ../../include/conversation.php:1128 ../../mod/editlayout.php:116 +#: ../../mod/editpost.php:122 ../../mod/editblock.php:121 +#: ../../mod/editwebpage.php:153 +msgid "Permission settings" msgstr "" -#: ../../include/permissions.php:29 -msgid "Can edit my \"public\" pages" +#: ../../include/conversation.php:1129 +msgid "permissions" msgstr "" -#: ../../include/permissions.php:31 -msgid "Can source my \"public\" posts in derived channels" +#: ../../include/conversation.php:1136 ../../mod/editlayout.php:123 +#: ../../mod/editpost.php:129 ../../mod/editblock.php:129 +#: ../../mod/editwebpage.php:162 +msgid "Public post" msgstr "" -#: ../../include/permissions.php:31 -msgid "Somewhat advanced - very useful in open communities" +#: ../../include/conversation.php:1138 ../../mod/editlayout.php:130 +#: ../../mod/editpost.php:135 ../../mod/editblock.php:136 +#: ../../mod/editwebpage.php:170 +msgid "Example: bob@example.com, mary@example.com" msgstr "" -#: ../../include/permissions.php:33 -msgid "Can administer my channel resources" +#: ../../include/conversation.php:1151 ../../mod/editlayout.php:140 +#: ../../mod/editpost.php:146 ../../mod/editblock.php:146 +#: ../../mod/editwebpage.php:180 ../../mod/mail.php:226 ../../mod/mail.php:339 +msgid "Set expiration date" msgstr "" -#: ../../include/permissions.php:33 -msgid "Extremely advanced. Leave this alone unless you know what you are doing" +#: ../../include/conversation.php:1153 ../../include/ItemObject.php:591 +#: ../../mod/editpost.php:148 ../../mod/mail.php:228 ../../mod/mail.php:341 +msgid "Encrypt text" msgstr "" -#: ../../include/account.php:23 -msgid "Not a valid email address" +#: ../../include/conversation.php:1155 ../../mod/editpost.php:150 +msgid "OK" msgstr "" -#: ../../include/account.php:25 -msgid "Your email domain is not among those allowed on this site" +#: ../../include/conversation.php:1156 ../../mod/tagrm.php:11 +#: ../../mod/tagrm.php:94 ../../mod/editpost.php:151 +#: ../../mod/settings.php:516 ../../mod/settings.php:542 +#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117 +msgid "Cancel" msgstr "" -#: ../../include/account.php:31 -msgid "Your email address is already registered at this site." +#: ../../include/conversation.php:1392 +msgid "Discover" msgstr "" -#: ../../include/account.php:64 -msgid "An invitation is required." +#: ../../include/conversation.php:1395 +msgid "Imported public streams" msgstr "" -#: ../../include/account.php:68 -msgid "Invitation could not be verified." +#: ../../include/conversation.php:1400 +msgid "Commented Order" msgstr "" -#: ../../include/account.php:119 -msgid "Please enter the required information." +#: ../../include/conversation.php:1403 +msgid "Sort by Comment Date" msgstr "" -#: ../../include/account.php:187 -msgid "Failed to store account information." +#: ../../include/conversation.php:1407 +msgid "Posted Order" msgstr "" -#: ../../include/account.php:273 -#, php-format -msgid "Registration request at %s" +#: ../../include/conversation.php:1410 +msgid "Sort by Post Date" msgstr "" -#: ../../include/account.php:275 ../../include/account.php:302 -#: ../../include/account.php:359 -msgid "Administrator" +#: ../../include/conversation.php:1418 +msgid "Posts that mention or involve you" msgstr "" -#: ../../include/account.php:297 -msgid "your registration password" +#: ../../include/conversation.php:1424 ../../mod/connections.php:211 +#: ../../mod/connections.php:224 ../../mod/menu.php:61 +msgid "New" msgstr "" -#: ../../include/account.php:300 ../../include/account.php:357 -#, php-format -msgid "Registration details for %s" +#: ../../include/conversation.php:1427 +msgid "Activity Stream - by date" msgstr "" -#: ../../include/account.php:366 -msgid "Account approved." +#: ../../include/conversation.php:1433 +msgid "Starred" msgstr "" -#: ../../include/account.php:400 -#, php-format -msgid "Registration revoked for %s" +#: ../../include/conversation.php:1436 +msgid "Favourite Posts" msgstr "" -#: ../../include/photos.php:15 ../../include/attach.php:119 -#: ../../include/attach.php:166 ../../include/attach.php:229 -#: ../../include/attach.php:243 ../../include/attach.php:283 -#: ../../include/attach.php:297 ../../include/attach.php:322 -#: ../../include/attach.php:513 ../../include/attach.php:585 -#: ../../include/chat.php:116 ../../include/items.php:3645 -#: ../../mod/mood.php:119 ../../mod/mitem.php:73 ../../mod/achievements.php:27 -#: ../../mod/poke.php:128 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/authtest.php:13 ../../mod/profile.php:64 ../../mod/profile.php:72 -#: ../../mod/block.php:22 ../../mod/block.php:72 -#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 -#: ../../mod/blocks.php:29 ../../mod/blocks.php:44 ../../mod/profiles.php:152 -#: ../../mod/profiles.php:453 ../../mod/bookmarks.php:46 -#: ../../mod/channel.php:89 ../../mod/channel.php:193 -#: ../../mod/channel.php:236 ../../mod/chat.php:90 ../../mod/chat.php:95 -#: ../../mod/register.php:68 ../../mod/regmod.php:18 ../../mod/common.php:35 -#: ../../mod/network.php:12 ../../mod/connections.php:169 -#: ../../mod/connedit.php:221 ../../mod/delegate.php:6 ../../mod/page.php:30 -#: ../../mod/page.php:80 ../../mod/settings.php:492 ../../mod/setup.php:203 -#: ../../mod/editblock.php:34 ../../mod/pdledit.php:21 -#: ../../mod/editlayout.php:48 ../../mod/editpost.php:13 -#: ../../mod/editwebpage.php:44 ../../mod/editwebpage.php:83 -#: ../../mod/events.php:140 ../../mod/sources.php:66 -#: ../../mod/filestorage.php:10 ../../mod/filestorage.php:59 -#: ../../mod/filestorage.php:75 ../../mod/filestorage.php:98 -#: ../../mod/fsuggest.php:78 ../../mod/suggest.php:26 ../../mod/group.php:9 -#: ../../mod/thing.php:247 ../../mod/thing.php:263 ../../mod/thing.php:298 -#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/item.php:179 -#: ../../mod/item.php:187 ../../mod/item.php:872 ../../mod/layouts.php:27 -#: ../../mod/layouts.php:39 ../../mod/viewconnections.php:22 -#: ../../mod/viewconnections.php:27 ../../mod/viewsrc.php:12 -#: ../../mod/mail.php:108 ../../mod/manage.php:6 ../../mod/menu.php:44 -#: ../../mod/webpages.php:40 ../../mod/message.php:16 -#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97 -#: ../../mod/photos.php:68 ../../mod/photos.php:526 -#: ../../mod/notifications.php:66 ../../index.php:187 ../../index.php:362 -msgid "Permission denied." +#: ../../include/conversation.php:1443 +msgid "Spam" msgstr "" -#: ../../include/photos.php:89 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" +#: ../../include/conversation.php:1446 +msgid "Posts flagged as SPAM" msgstr "" -#: ../../include/photos.php:96 -msgid "Image file is empty." +#: ../../include/conversation.php:1480 ../../mod/admin.php:890 +msgid "Channel" msgstr "" -#: ../../include/photos.php:123 ../../mod/profile_photo.php:216 -msgid "Unable to process image" +#: ../../include/conversation.php:1483 +msgid "Status Messages and Posts" msgstr "" -#: ../../include/photos.php:186 -msgid "Photo storage failed." +#: ../../include/conversation.php:1492 +msgid "About" msgstr "" -#: ../../include/photos.php:311 ../../include/conversation.php:1504 +#: ../../include/conversation.php:1495 +msgid "Profile Details" +msgstr "" + +#: ../../include/conversation.php:1504 ../../include/photos.php:311 msgid "Photo Albums" msgstr "" -#: ../../include/photos.php:315 ../../mod/photos.php:693 -#: ../../mod/photos.php:1190 -msgid "Upload New Photos" +#: ../../include/conversation.php:1513 +msgid "Files and Storage" msgstr "" -#: ../../include/acl_selectors.php:238 -msgid "Visible to everybody" +#: ../../include/conversation.php:1522 ../../include/conversation.php:1525 +msgid "Chatrooms" msgstr "" -#: ../../include/acl_selectors.php:239 -msgid "Show" +#: ../../include/conversation.php:1535 +msgid "Events and Calendar" msgstr "" -#: ../../include/acl_selectors.php:240 -msgid "Don't show" +#: ../../include/conversation.php:1543 +msgid "Saved Bookmarks" msgstr "" -#: ../../include/acl_selectors.php:246 ../../mod/chat.php:209 -#: ../../mod/filestorage.php:126 ../../mod/photos.php:606 -#: ../../mod/photos.php:949 -msgid "Permissions" +#: ../../include/conversation.php:1554 +msgid "Manage Webpages" msgstr "" -#: ../../include/acl_selectors.php:247 -msgid "Close" +#: ../../include/comanche.php:35 ../../view/theme/redbasic/php/config.php:84 +msgid "Default" +msgstr "" + +#: ../../include/message.php:18 +msgid "No recipient provided." +msgstr "" + +#: ../../include/message.php:23 +msgid "[no subject]" +msgstr "" + +#: ../../include/message.php:42 +msgid "Unable to determine sender." +msgstr "" + +#: ../../include/message.php:143 +msgid "Stored post could not be verified." msgstr "" #: ../../include/activities.php:39 @@ -383,8 +1113,548 @@ msgstr "" msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" -#: ../../include/api.php:1016 -msgid "Public Timeline" +#: ../../include/network.php:652 +msgid "view full size" +msgstr "" + +#: ../../include/bookmarks.php:42 +#, php-format +msgid "%1$s's bookmarks" +msgstr "" + +#: ../../include/taxonomy.php:210 +msgid "Tags" +msgstr "" + +#: ../../include/taxonomy.php:227 +msgid "Keywords" +msgstr "" + +#: ../../include/taxonomy.php:252 +msgid "have" +msgstr "" + +#: ../../include/taxonomy.php:252 +msgid "has" +msgstr "" + +#: ../../include/taxonomy.php:253 +msgid "want" +msgstr "" + +#: ../../include/taxonomy.php:253 +msgid "wants" +msgstr "" + +#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:205 +msgid "like" +msgstr "" + +#: ../../include/taxonomy.php:254 +msgid "likes" +msgstr "" + +#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:206 +msgid "dislike" +msgstr "" + +#: ../../include/taxonomy.php:255 +msgid "dislikes" +msgstr "" + +#: ../../include/ItemObject.php:96 ../../include/page_widgets.php:8 +#: ../../include/page_widgets.php:36 ../../include/menu.php:42 +#: ../../mod/editlayout.php:106 ../../mod/webpages.php:119 +#: ../../mod/thing.php:235 ../../mod/blocks.php:94 +#: ../../mod/filestorage.php:174 ../../mod/editpost.php:112 +#: ../../mod/settings.php:577 ../../mod/layouts.php:112 +#: ../../mod/connections.php:392 ../../mod/editblock.php:111 +#: ../../mod/editwebpage.php:143 ../../mod/menu.php:59 +msgid "Edit" +msgstr "" + +#: ../../include/ItemObject.php:118 +msgid "save to folder" +msgstr "" + +#: ../../include/ItemObject.php:130 ../../include/ItemObject.php:142 +msgid "View all" +msgstr "" + +#: ../../include/ItemObject.php:134 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/ItemObject.php:139 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/ItemObject.php:167 +msgid "add star" +msgstr "" + +#: ../../include/ItemObject.php:168 +msgid "remove star" +msgstr "" + +#: ../../include/ItemObject.php:169 +msgid "toggle star status" +msgstr "" + +#: ../../include/ItemObject.php:173 +msgid "starred" +msgstr "" + +#: ../../include/ItemObject.php:190 +msgid "add tag" +msgstr "" + +#: ../../include/ItemObject.php:205 ../../mod/photos.php:971 +msgid "I like this (toggle)" +msgstr "" + +#: ../../include/ItemObject.php:206 ../../mod/photos.php:972 +msgid "I don't like this (toggle)" +msgstr "" + +#: ../../include/ItemObject.php:208 +msgid "Share this" +msgstr "" + +#: ../../include/ItemObject.php:208 +msgid "share" +msgstr "" + +#: ../../include/ItemObject.php:232 ../../include/ItemObject.php:233 +#, php-format +msgid "View %s's profile - %s" +msgstr "" + +#: ../../include/ItemObject.php:234 +msgid "to" +msgstr "" + +#: ../../include/ItemObject.php:235 +msgid "via" +msgstr "" + +#: ../../include/ItemObject.php:236 +msgid "Wall-to-Wall" +msgstr "" + +#: ../../include/ItemObject.php:237 +msgid "via Wall-To-Wall:" +msgstr "" + +#: ../../include/ItemObject.php:271 +msgid "Bookmark Links" +msgstr "" + +#: ../../include/ItemObject.php:279 +msgctxt "noun" +msgid "Likes" +msgstr "" + +#: ../../include/ItemObject.php:280 +msgctxt "noun" +msgid "Dislikes" +msgstr "" + +#: ../../include/ItemObject.php:285 ../../include/acl_selectors.php:247 +msgid "Close" +msgstr "" + +#: ../../include/ItemObject.php:311 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/ItemObject.php:312 ../../include/contact_widgets.php:130 +#: ../../include/js_strings.php:7 +msgid "show more" +msgstr "" + +#: ../../include/ItemObject.php:576 ../../mod/photos.php:990 +#: ../../mod/photos.php:1077 +msgid "This is you" +msgstr "" + +#: ../../include/ItemObject.php:578 ../../include/js_strings.php:6 +#: ../../mod/photos.php:992 ../../mod/photos.php:1079 +msgid "Comment" +msgstr "" + +#: ../../include/ItemObject.php:579 ../../mod/group.php:81 +#: ../../mod/thing.php:283 ../../mod/thing.php:326 ../../mod/connect.php:92 +#: ../../mod/pdledit.php:58 ../../mod/sources.php:104 +#: ../../mod/sources.php:138 ../../mod/filestorage.php:135 +#: ../../mod/fsuggest.php:108 ../../mod/connedit.php:476 +#: ../../mod/settings.php:515 ../../mod/settings.php:627 +#: ../../mod/settings.php:655 ../../mod/settings.php:679 +#: ../../mod/settings.php:751 ../../mod/settings.php:929 +#: ../../mod/setup.php:307 ../../mod/setup.php:350 ../../mod/events.php:481 +#: ../../mod/photos.php:565 ../../mod/photos.php:670 ../../mod/photos.php:953 +#: ../../mod/photos.php:993 ../../mod/photos.php:1080 ../../mod/import.php:387 +#: ../../mod/mood.php:142 ../../mod/chat.php:177 ../../mod/chat.php:211 +#: ../../mod/profiles.php:506 ../../mod/mail.php:223 ../../mod/mail.php:335 +#: ../../mod/appman.php:91 ../../mod/poke.php:166 ../../mod/admin.php:441 +#: ../../mod/admin.php:750 ../../mod/admin.php:884 ../../mod/admin.php:1017 +#: ../../mod/admin.php:1216 ../../mod/admin.php:1303 ../../mod/invite.php:156 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "" + +#: ../../include/ItemObject.php:580 +msgid "Bold" +msgstr "" + +#: ../../include/ItemObject.php:581 +msgid "Italic" +msgstr "" + +#: ../../include/ItemObject.php:582 +msgid "Underline" +msgstr "" + +#: ../../include/ItemObject.php:583 +msgid "Quote" +msgstr "" + +#: ../../include/ItemObject.php:584 +msgid "Code" +msgstr "" + +#: ../../include/ItemObject.php:585 +msgid "Image" +msgstr "" + +#: ../../include/ItemObject.php:586 +msgid "Link" +msgstr "" + +#: ../../include/ItemObject.php:587 +msgid "Video" +msgstr "" + +#: ../../include/items.php:306 ../../mod/group.php:68 +#: ../../mod/subthread.php:49 ../../mod/profperm.php:23 ../../mod/like.php:63 +#: ../../index.php:361 +msgid "Permission denied" +msgstr "" + +#: ../../include/items.php:830 +msgid "(Unknown)" +msgstr "" + +#: ../../include/items.php:3583 ../../mod/home.php:63 ../../mod/thing.php:78 +#: ../../mod/filestorage.php:18 ../../mod/viewsrc.php:18 +#: ../../mod/display.php:32 ../../mod/admin.php:159 ../../mod/admin.php:921 +#: ../../mod/admin.php:1124 +msgid "Item not found." +msgstr "" + +#: ../../include/items.php:3645 ../../include/attach.php:119 +#: ../../include/attach.php:166 ../../include/attach.php:229 +#: ../../include/attach.php:243 ../../include/attach.php:283 +#: ../../include/attach.php:297 ../../include/attach.php:322 +#: ../../include/attach.php:513 ../../include/attach.php:585 +#: ../../include/photos.php:15 ../../include/chat.php:116 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/editlayout.php:48 ../../mod/webpages.php:40 +#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97 +#: ../../mod/group.php:9 ../../mod/thing.php:247 ../../mod/thing.php:263 +#: ../../mod/thing.php:298 ../../mod/notifications.php:66 +#: ../../mod/block.php:22 ../../mod/block.php:72 ../../mod/message.php:16 +#: ../../mod/mitem.php:73 ../../mod/item.php:179 ../../mod/item.php:187 +#: ../../mod/item.php:872 ../../mod/suggest.php:26 ../../mod/network.php:12 +#: ../../mod/bookmarks.php:46 ../../mod/channel.php:89 +#: ../../mod/channel.php:193 ../../mod/channel.php:236 +#: ../../mod/pdledit.php:21 ../../mod/sources.php:66 +#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 +#: ../../mod/blocks.php:29 ../../mod/blocks.php:44 +#: ../../mod/filestorage.php:10 ../../mod/filestorage.php:59 +#: ../../mod/filestorage.php:75 ../../mod/filestorage.php:98 +#: ../../mod/authtest.php:13 ../../mod/fsuggest.php:78 +#: ../../mod/connedit.php:221 ../../mod/viewsrc.php:12 +#: ../../mod/achievements.php:27 ../../mod/editpost.php:13 +#: ../../mod/settings.php:492 ../../mod/setup.php:203 ../../mod/events.php:140 +#: ../../mod/photos.php:68 ../../mod/photos.php:526 ../../mod/delegate.php:6 +#: ../../mod/layouts.php:27 ../../mod/layouts.php:39 +#: ../../mod/connections.php:169 ../../mod/page.php:30 ../../mod/page.php:80 +#: ../../mod/mood.php:119 ../../mod/chat.php:90 ../../mod/chat.php:95 +#: ../../mod/editblock.php:34 ../../mod/editwebpage.php:44 +#: ../../mod/editwebpage.php:83 ../../mod/profiles.php:152 +#: ../../mod/profiles.php:453 ../../mod/menu.php:44 ../../mod/mail.php:108 +#: ../../mod/appman.php:58 ../../mod/poke.php:128 +#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 +#: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/register.php:68 +#: ../../mod/manage.php:6 ../../mod/invite.php:13 ../../mod/invite.php:104 +#: ../../mod/common.php:35 ../../mod/regmod.php:18 ../../index.php:187 +#: ../../index.php:362 +msgid "Permission denied." +msgstr "" + +#: ../../include/items.php:4007 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." +msgstr "" + +#: ../../include/items.php:4022 +msgid "Collection is empty." +msgstr "" + +#: ../../include/items.php:4029 +#, php-format +msgid "Collection: %s" +msgstr "" + +#: ../../include/items.php:4040 +#, php-format +msgid "Connection: %s" +msgstr "" + +#: ../../include/items.php:4043 +msgid "Connection not found." +msgstr "" + +#: ../../include/dir_fns.php:36 +msgid "Sort Options" +msgstr "" + +#: ../../include/dir_fns.php:37 +msgid "Alphabetic" +msgstr "" + +#: ../../include/dir_fns.php:38 +msgid "Reverse Alphabetic" +msgstr "" + +#: ../../include/dir_fns.php:39 +msgid "Newest to Oldest" +msgstr "" + +#: ../../include/dir_fns.php:51 +msgid "Enable Safe Search" +msgstr "" + +#: ../../include/dir_fns.php:53 +msgid "Disable Safe Search" +msgstr "" + +#: ../../include/dir_fns.php:55 +msgid "Safe Mode" +msgstr "" + +#: ../../include/security.php:301 +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/notify.php:23 +msgid "created a new post" +msgstr "" + +#: ../../include/notify.php:24 +#, php-format +msgid "commented on %s's post" +msgstr "" + +#: ../../include/enotify.php:41 +msgid "Red Matrix Notification" +msgstr "" + +#: ../../include/enotify.php:42 +msgid "redmatrix" +msgstr "" + +#: ../../include/enotify.php:44 +msgid "Thank You," +msgstr "" + +#: ../../include/enotify.php:46 +#, php-format +msgid "%s Administrator" +msgstr "" + +#: ../../include/enotify.php:81 +#, php-format +msgid "%s " +msgstr "" + +#: ../../include/enotify.php:85 +#, php-format +msgid "[Red:Notify] New mail received at %s" +msgstr "" + +#: ../../include/enotify.php:87 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "" + +#: ../../include/enotify.php:88 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "" + +#: ../../include/enotify.php:88 +msgid "a private message" +msgstr "" + +#: ../../include/enotify.php:89 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "" + +#: ../../include/enotify.php:144 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +msgstr "" + +#: ../../include/enotify.php:152 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "" + +#: ../../include/enotify.php:161 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "" + +#: ../../include/enotify.php:172 +#, php-format +msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" +msgstr "" + +#: ../../include/enotify.php:173 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." +msgstr "" + +#: ../../include/enotify.php:176 ../../include/enotify.php:191 +#: ../../include/enotify.php:217 ../../include/enotify.php:236 +#: ../../include/enotify.php:250 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "" + +#: ../../include/enotify.php:182 +#, php-format +msgid "[Red:Notify] %s posted to your profile wall" +msgstr "" + +#: ../../include/enotify.php:184 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "" + +#: ../../include/enotify.php:186 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "" + +#: ../../include/enotify.php:210 +#, php-format +msgid "[Red:Notify] %s tagged you" +msgstr "" + +#: ../../include/enotify.php:211 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "" + +#: ../../include/enotify.php:212 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgstr "" + +#: ../../include/enotify.php:225 +#, php-format +msgid "[Red:Notify] %1$s poked you" +msgstr "" + +#: ../../include/enotify.php:226 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "" + +#: ../../include/enotify.php:227 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +msgstr "" + +#: ../../include/enotify.php:243 +#, php-format +msgid "[Red:Notify] %s tagged your post" +msgstr "" + +#: ../../include/enotify.php:244 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "" + +#: ../../include/enotify.php:245 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "" + +#: ../../include/enotify.php:257 +msgid "[Red:Notify] Introduction received" +msgstr "" + +#: ../../include/enotify.php:258 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgstr "" + +#: ../../include/enotify.php:259 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "" + +#: ../../include/enotify.php:263 ../../include/enotify.php:282 +#, php-format +msgid "You may visit their profile at %s" +msgstr "" + +#: ../../include/enotify.php:265 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "" + +#: ../../include/enotify.php:272 +msgid "[Red:Notify] Friend suggestion received" +msgstr "" + +#: ../../include/enotify.php:273 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "" + +#: ../../include/enotify.php:274 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s." +msgstr "" + +#: ../../include/enotify.php:280 +msgid "Name:" +msgstr "" + +#: ../../include/enotify.php:281 +msgid "Photo:" +msgstr "" + +#: ../../include/enotify.php:284 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." msgstr "" #: ../../include/attach.php:224 ../../include/attach.php:278 @@ -445,340 +1715,388 @@ msgstr "" msgid "database storage failed." msgstr "" -#: ../../include/auth.php:79 -msgid "Logged out." +#: ../../include/page_widgets.php:6 +msgid "New Page" msgstr "" -#: ../../include/auth.php:198 -msgid "Failed authentication" +#: ../../include/page_widgets.php:39 ../../mod/webpages.php:122 +#: ../../mod/blocks.php:97 ../../mod/layouts.php:116 +msgid "View" msgstr "" -#: ../../include/auth.php:213 ../../mod/openid.php:188 -msgid "Login failed." +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:124 +msgid "Actions" msgstr "" -#: ../../include/bb2diaspora.php:433 ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:125 +msgid "Page Link" msgstr "" -#: ../../include/bb2diaspora.php:439 ../../include/event.php:20 -msgid "Starts:" +#: ../../include/page_widgets.php:43 ../../mod/webpages.php:126 +msgid "Title" msgstr "" -#: ../../include/bb2diaspora.php:447 ../../include/event.php:30 -msgid "Finishes:" +#: ../../include/page_widgets.php:44 ../../mod/webpages.php:127 +msgid "Created" msgstr "" -#: ../../include/bb2diaspora.php:455 ../../include/event.php:40 -#: ../../include/identity.php:726 ../../mod/directory.php:156 -#: ../../mod/dirprofile.php:105 ../../mod/events.php:474 -msgid "Location:" +#: ../../include/page_widgets.php:45 ../../mod/webpages.php:128 +msgid "Edited" msgstr "" -#: ../../include/bbcode.php:128 ../../include/bbcode.php:633 -#: ../../include/bbcode.php:636 ../../include/bbcode.php:641 -#: ../../include/bbcode.php:644 ../../include/bbcode.php:647 -#: ../../include/bbcode.php:650 ../../include/bbcode.php:655 -#: ../../include/bbcode.php:658 ../../include/bbcode.php:663 -#: ../../include/bbcode.php:666 ../../include/bbcode.php:669 -#: ../../include/bbcode.php:672 -msgid "Image/photo" +#: ../../include/photos.php:51 ../../include/photo/photo_driver.php:643 +#: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 +#: ../../mod/profile_photo.php:421 ../../mod/photos.php:91 +#: ../../mod/photos.php:655 ../../mod/photos.php:677 +msgid "Profile Photos" msgstr "" -#: ../../include/bbcode.php:163 ../../include/bbcode.php:683 -msgid "Encrypted content" -msgstr "" - -#: ../../include/bbcode.php:170 -msgid "QR code" -msgstr "" - -#: ../../include/bbcode.php:219 +#: ../../include/photos.php:89 #, php-format -msgid "%1$s wrote the following %2$s %3$s" +msgid "Image exceeds website size limit of %lu bytes" msgstr "" -#: ../../include/bbcode.php:221 -msgid "post" +#: ../../include/photos.php:96 +msgid "Image file is empty." msgstr "" -#: ../../include/bbcode.php:601 ../../include/bbcode.php:621 -msgid "$1 wrote:" +#: ../../include/photos.php:123 ../../mod/profile_photo.php:216 +msgid "Unable to process image" msgstr "" -#: ../../include/ItemObject.php:89 ../../include/conversation.php:639 -#: ../../mod/photos.php:846 -msgid "Private Message" +#: ../../include/photos.php:186 +msgid "Photo storage failed." msgstr "" -#: ../../include/ItemObject.php:108 ../../include/conversation.php:632 -#: ../../mod/admin.php:757 ../../mod/admin.php:886 ../../mod/connedit.php:398 -#: ../../mod/settings.php:578 ../../mod/filestorage.php:175 -#: ../../mod/group.php:176 ../../mod/thing.php:236 ../../mod/photos.php:1043 -msgid "Delete" +#: ../../include/photos.php:315 ../../mod/photos.php:693 +#: ../../mod/photos.php:1190 +msgid "Upload New Photos" msgstr "" -#: ../../include/ItemObject.php:114 ../../include/conversation.php:631 -msgid "Select" -msgstr "" - -#: ../../include/ItemObject.php:118 -msgid "save to folder" -msgstr "" - -#: ../../include/ItemObject.php:128 -msgid "Like" -msgstr "" - -#: ../../include/ItemObject.php:128 ../../mod/profiles.php:302 -msgid "Likes" -msgstr "" - -#: ../../include/ItemObject.php:132 -msgid "Dislike" -msgstr "" - -#: ../../include/ItemObject.php:132 ../../mod/profiles.php:306 -msgid "Dislikes" -msgstr "" - -#: ../../include/ItemObject.php:154 -msgid "add star" -msgstr "" - -#: ../../include/ItemObject.php:155 -msgid "remove star" -msgstr "" - -#: ../../include/ItemObject.php:156 -msgid "toggle star status" -msgstr "" - -#: ../../include/ItemObject.php:160 -msgid "starred" -msgstr "" - -#: ../../include/ItemObject.php:169 ../../include/conversation.php:646 -msgid "Message is verified" -msgstr "" - -#: ../../include/ItemObject.php:177 -msgid "add tag" -msgstr "" - -#: ../../include/ItemObject.php:192 ../../mod/photos.php:971 -msgid "I like this (toggle)" -msgstr "" - -#: ../../include/ItemObject.php:192 ../../include/taxonomy.php:254 -msgid "like" -msgstr "" - -#: ../../include/ItemObject.php:193 ../../mod/photos.php:972 -msgid "I don't like this (toggle)" -msgstr "" - -#: ../../include/ItemObject.php:193 ../../include/taxonomy.php:255 -msgid "dislike" -msgstr "" - -#: ../../include/ItemObject.php:195 -msgid "Share this" -msgstr "" - -#: ../../include/ItemObject.php:195 -msgid "share" -msgstr "" - -#: ../../include/ItemObject.php:219 ../../include/ItemObject.php:220 +#: ../../include/dba/dba_driver.php:50 #, php-format -msgid "View %s's profile - %s" +msgid "Cannot locate DNS info for database server '%s'" msgstr "" -#: ../../include/ItemObject.php:221 -msgid "to" +#: ../../include/profile_selectors.php:6 +msgid "Male" msgstr "" -#: ../../include/ItemObject.php:222 -msgid "via" +#: ../../include/profile_selectors.php:6 +msgid "Female" msgstr "" -#: ../../include/ItemObject.php:223 -msgid "Wall-to-Wall" +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" msgstr "" -#: ../../include/ItemObject.php:224 -msgid "via Wall-To-Wall:" +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" msgstr "" -#: ../../include/ItemObject.php:234 ../../include/conversation.php:690 +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Males" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Females" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Gay" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "No Preference" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Virgin" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Deviant" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Fetish" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Oodles" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Single" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Lonely" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Available" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Dating" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Casual" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Engaged" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Married" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Partners" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Happy" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Not looking" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Swinger" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Separated" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Unstable" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Divorced" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Widowed" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Don't care" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Ask me" +msgstr "" + +#: ../../include/plugin.php:486 ../../include/plugin.php:488 +msgid "Click here to upgrade." +msgstr "" + +#: ../../include/plugin.php:494 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: ../../include/plugin.php:499 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: ../../include/acl_selectors.php:238 +msgid "Visible to everybody" +msgstr "" + +#: ../../include/acl_selectors.php:239 +msgid "Show" +msgstr "" + +#: ../../include/acl_selectors.php:240 +msgid "Don't show" +msgstr "" + +#: ../../include/acl_selectors.php:246 ../../mod/filestorage.php:126 +#: ../../mod/photos.php:606 ../../mod/photos.php:949 ../../mod/chat.php:209 +msgid "Permissions" +msgstr "" + +#: ../../include/account.php:23 +msgid "Not a valid email address" +msgstr "" + +#: ../../include/account.php:25 +msgid "Your email domain is not among those allowed on this site" +msgstr "" + +#: ../../include/account.php:31 +msgid "Your email address is already registered at this site." +msgstr "" + +#: ../../include/account.php:64 +msgid "An invitation is required." +msgstr "" + +#: ../../include/account.php:68 +msgid "Invitation could not be verified." +msgstr "" + +#: ../../include/account.php:119 +msgid "Please enter the required information." +msgstr "" + +#: ../../include/account.php:187 +msgid "Failed to store account information." +msgstr "" + +#: ../../include/account.php:273 #, php-format -msgid " from %s" +msgid "Registration request at %s" msgstr "" -#: ../../include/ItemObject.php:237 ../../include/conversation.php:693 +#: ../../include/account.php:275 ../../include/account.php:302 +#: ../../include/account.php:359 +msgid "Administrator" +msgstr "" + +#: ../../include/account.php:297 +msgid "your registration password" +msgstr "" + +#: ../../include/account.php:300 ../../include/account.php:357 #, php-format -msgid "last edited: %s" +msgid "Registration details for %s" msgstr "" -#: ../../include/ItemObject.php:238 ../../include/conversation.php:694 +#: ../../include/account.php:366 +msgid "Account approved." +msgstr "" + +#: ../../include/account.php:400 #, php-format -msgid "Expires: %s" +msgid "Registration revoked for %s" msgstr "" -#: ../../include/ItemObject.php:258 -msgid "Bookmark Links" +#: ../../include/Contact.php:123 +msgid "New window" msgstr "" -#: ../../include/ItemObject.php:272 ../../include/conversation.php:711 -#: ../../include/conversation.php:1127 ../../mod/editblock.php:120 -#: ../../mod/editlayout.php:115 ../../mod/editpost.php:121 -#: ../../mod/editwebpage.php:152 ../../mod/mail.php:222 ../../mod/mail.php:336 -#: ../../mod/photos.php:974 -msgid "Please wait" -msgstr "" - -#: ../../include/ItemObject.php:293 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/ItemObject.php:294 ../../include/contact_widgets.php:130 -#: ../../include/js_strings.php:7 -msgid "show more" -msgstr "" - -#: ../../include/ItemObject.php:558 ../../mod/photos.php:990 -#: ../../mod/photos.php:1077 -msgid "This is you" -msgstr "" - -#: ../../include/ItemObject.php:560 ../../include/js_strings.php:6 -#: ../../mod/photos.php:992 ../../mod/photos.php:1079 -msgid "Comment" -msgstr "" - -#: ../../include/ItemObject.php:561 ../../mod/mood.php:142 -#: ../../mod/admin.php:441 ../../mod/admin.php:750 ../../mod/admin.php:884 -#: ../../mod/admin.php:1017 ../../mod/admin.php:1216 ../../mod/admin.php:1303 -#: ../../mod/poke.php:166 ../../mod/profiles.php:506 ../../mod/chat.php:177 -#: ../../mod/chat.php:211 ../../mod/connect.php:92 ../../mod/connedit.php:476 -#: ../../mod/settings.php:515 ../../mod/settings.php:627 -#: ../../mod/settings.php:655 ../../mod/settings.php:679 -#: ../../mod/settings.php:751 ../../mod/settings.php:929 -#: ../../mod/setup.php:307 ../../mod/setup.php:350 ../../mod/pdledit.php:58 -#: ../../mod/events.php:481 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/filestorage.php:135 -#: ../../mod/fsuggest.php:108 ../../mod/group.php:81 ../../mod/thing.php:283 -#: ../../mod/thing.php:326 ../../mod/import.php:387 ../../mod/invite.php:156 -#: ../../mod/mail.php:223 ../../mod/mail.php:335 ../../mod/photos.php:565 -#: ../../mod/photos.php:670 ../../mod/photos.php:953 ../../mod/photos.php:993 -#: ../../mod/photos.php:1080 ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/blogga/php/config.php:67 -#: ../../view/theme/blogga/view/theme/blog/config.php:67 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "" - -#: ../../include/ItemObject.php:562 -msgid "Bold" -msgstr "" - -#: ../../include/ItemObject.php:563 -msgid "Italic" -msgstr "" - -#: ../../include/ItemObject.php:564 -msgid "Underline" -msgstr "" - -#: ../../include/ItemObject.php:565 -msgid "Quote" -msgstr "" - -#: ../../include/ItemObject.php:566 -msgid "Code" -msgstr "" - -#: ../../include/ItemObject.php:567 -msgid "Image" -msgstr "" - -#: ../../include/ItemObject.php:568 -msgid "Link" -msgstr "" - -#: ../../include/ItemObject.php:569 -msgid "Video" -msgstr "" - -#: ../../include/ItemObject.php:573 ../../include/conversation.php:1153 -#: ../../mod/editpost.php:148 ../../mod/mail.php:228 ../../mod/mail.php:341 -msgid "Encrypt text" -msgstr "" - -#: ../../include/bookmarks.php:42 -#, php-format -msgid "%1$s's bookmarks" -msgstr "" - -#: ../../include/chat.php:10 -msgid "Missing room name" -msgstr "" - -#: ../../include/chat.php:19 -msgid "Duplicate room name" -msgstr "" - -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." -msgstr "" - -#: ../../include/chat.php:105 -msgid "Room not found." -msgstr "" - -#: ../../include/chat.php:126 -msgid "Room is full" -msgstr "" - -#: ../../include/taxonomy.php:210 -msgid "Tags" -msgstr "" - -#: ../../include/taxonomy.php:227 -msgid "Keywords" -msgstr "" - -#: ../../include/taxonomy.php:252 -msgid "have" -msgstr "" - -#: ../../include/taxonomy.php:252 -msgid "has" -msgstr "" - -#: ../../include/taxonomy.php:253 -msgid "want" -msgstr "" - -#: ../../include/taxonomy.php:253 -msgid "wants" -msgstr "" - -#: ../../include/taxonomy.php:254 -msgid "likes" -msgstr "" - -#: ../../include/taxonomy.php:255 -msgid "dislikes" -msgstr "" - -#: ../../include/comanche.php:35 ../../view/theme/apw/php/config.php:185 -#: ../../view/theme/redbasic/php/config.php:84 -msgid "Default" +#: ../../include/Contact.php:124 +msgid "Open the selected location in a different window or browser tab" msgstr "" #: ../../include/contact_selectors.php:30 @@ -842,7 +2160,7 @@ msgid "RSS/Atom" msgstr "" #: ../../include/contact_selectors.php:77 ../../mod/admin.php:753 -#: ../../mod/admin.php:762 ../../boot.php:1454 +#: ../../mod/admin.php:762 ../../boot.php:1453 msgid "Email" msgstr "" @@ -870,6 +2188,37 @@ msgstr "" msgid "MySpace" msgstr "" +#: ../../include/apps.php:109 ../../include/identity.php:942 +#: ../../include/identity.php:1031 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "" + +#: ../../include/apps.php:151 ../../mod/settings.php:79 +#: ../../mod/settings.php:541 +msgid "Update" +msgstr "" + +#: ../../include/apps.php:151 +msgid "Install" +msgstr "" + +#: ../../include/apps.php:231 ../../include/apps.php:279 +#: ../../mod/connedit.php:434 +msgid "Unknown" +msgstr "" + +#: ../../include/auth.php:79 +msgid "Logged out." +msgstr "" + +#: ../../include/auth.php:198 +msgid "Failed authentication" +msgstr "" + +#: ../../include/auth.php:213 ../../mod/openid.php:188 +msgid "Login failed." +msgstr "" + #: ../../include/text.php:320 msgid "prev" msgstr "" @@ -909,25 +2258,10 @@ msgstr[1] "" msgid "View Connections" msgstr "" -#: ../../include/text.php:813 ../../include/text.php:827 -#: ../../include/nav.php:144 ../../mod/search.php:29 -msgid "Search" -msgstr "" - -#: ../../include/text.php:815 ../../include/text.php:829 -#: ../../include/widgets.php:185 ../../mod/rbmark.php:28 -#: ../../mod/rbmark.php:98 ../../mod/filer.php:50 -msgid "Save" -msgstr "" - #: ../../include/text.php:895 msgid "poke" msgstr "" -#: ../../include/text.php:895 ../../include/conversation.php:240 -msgid "poked" -msgstr "" - #: ../../include/text.php:896 msgid "ping" msgstr "" @@ -1168,28 +2502,6 @@ msgstr "" msgid "Select an alternate language" msgstr "" -#: ../../include/text.php:1705 ../../include/conversation.php:117 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:45 ../../mod/like.php:111 -msgid "photo" -msgstr "" - -#: ../../include/text.php:1708 ../../include/conversation.php:120 -#: ../../mod/tagger.php:49 -msgid "event" -msgstr "" - -#: ../../include/text.php:1711 ../../include/conversation.php:145 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:53 ../../mod/like.php:111 -msgid "status" -msgstr "" - -#: ../../include/text.php:1713 ../../include/conversation.php:147 -#: ../../mod/tagger.php:55 -msgid "comment" -msgstr "" - #: ../../include/text.php:1718 msgid "activity" msgstr "" @@ -1214,781 +2526,24 @@ msgstr "" msgid "Pages" msgstr "" -#: ../../include/contact_widgets.php:14 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:445 -msgid "Advanced" -msgstr "" - -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "" - -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "" - -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "" - -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "" - -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:391 -#: ../../mod/directory.php:206 ../../mod/directory.php:211 -msgid "Find" -msgstr "" - -#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 -msgid "Channel Suggestions" -msgstr "" - -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "" - -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "" - -#: ../../include/contact_widgets.php:32 -msgid "Exammple: name=fred and country=iceland" -msgstr "" - -#: ../../include/contact_widgets.php:33 -msgid "Advanced Find" -msgstr "" - -#: ../../include/contact_widgets.php:58 ../../include/features.php:66 -#: ../../include/widgets.php:295 -msgid "Saved Folders" -msgstr "" - -#: ../../include/contact_widgets.php:61 ../../include/contact_widgets.php:95 -#: ../../include/widgets.php:298 -msgid "Everything" -msgstr "" - -#: ../../include/contact_widgets.php:92 ../../include/widgets.php:29 -msgid "Categories" -msgstr "" - -#: ../../include/contact_widgets.php:125 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:123 -msgid "channel" -msgstr "" - -#: ../../include/conversation.php:161 ../../mod/like.php:142 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "" - -#: ../../include/conversation.php:164 ../../mod/like.php:144 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "" - -#: ../../include/conversation.php:201 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "" - -#: ../../include/conversation.php:236 -#, php-format -msgid "%1$s poked %2$s" -msgstr "" - -#: ../../include/conversation.php:258 ../../mod/mood.php:63 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "" - -#: ../../include/conversation.php:666 -#, php-format -msgid "View %s's profile @ %s" -msgstr "" - -#: ../../include/conversation.php:680 -msgid "Categories:" -msgstr "" - -#: ../../include/conversation.php:681 -msgid "Filed under:" -msgstr "" - -#: ../../include/conversation.php:709 -msgid "View in context" -msgstr "" - -#: ../../include/conversation.php:838 -msgid "remove" -msgstr "" - -#: ../../include/conversation.php:842 -msgid "Loading..." -msgstr "" - -#: ../../include/conversation.php:843 -msgid "Delete Selected Items" -msgstr "" - -#: ../../include/conversation.php:934 -msgid "View Source" -msgstr "" - -#: ../../include/conversation.php:935 -msgid "Follow Thread" -msgstr "" - -#: ../../include/conversation.php:936 -msgid "View Status" -msgstr "" - -#: ../../include/conversation.php:937 ../../include/nav.php:81 -#: ../../mod/connedit.php:351 ../../mod/connedit.php:465 -msgid "View Profile" -msgstr "" - -#: ../../include/conversation.php:938 -msgid "View Photos" -msgstr "" - -#: ../../include/conversation.php:939 -msgid "Matrix Activity" -msgstr "" - -#: ../../include/conversation.php:940 -msgid "Edit Contact" -msgstr "" - -#: ../../include/conversation.php:941 -msgid "Send PM" -msgstr "" - -#: ../../include/conversation.php:942 -msgid "Poke" -msgstr "" - -#: ../../include/conversation.php:998 -#, php-format -msgid "%s likes this." -msgstr "" - -#: ../../include/conversation.php:998 -#, php-format -msgid "%s doesn't like this." -msgstr "" - -#: ../../include/conversation.php:1002 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1004 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1010 -msgid "and" -msgstr "" - -#: ../../include/conversation.php:1013 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1014 -#, php-format -msgid "%s like this." -msgstr "" - -#: ../../include/conversation.php:1014 -#, php-format -msgid "%s don't like this." -msgstr "" - -#: ../../include/conversation.php:1071 -msgid "Visible to everybody" -msgstr "" - -#: ../../include/conversation.php:1072 ../../mod/mail.php:171 -#: ../../mod/mail.php:269 -msgid "Please enter a link URL:" -msgstr "" - -#: ../../include/conversation.php:1073 -msgid "Please enter a video link/URL:" -msgstr "" - -#: ../../include/conversation.php:1074 -msgid "Please enter an audio link/URL:" -msgstr "" - -#: ../../include/conversation.php:1075 -msgid "Tag term:" -msgstr "" - -#: ../../include/conversation.php:1076 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "" - -#: ../../include/conversation.php:1077 -msgid "Where are you right now?" -msgstr "" - -#: ../../include/conversation.php:1078 ../../mod/editpost.php:52 -#: ../../mod/mail.php:172 ../../mod/mail.php:270 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "" - -#: ../../include/conversation.php:1102 ../../mod/layouts.php:113 -#: ../../mod/photos.php:973 -msgid "Share" -msgstr "" - -#: ../../include/conversation.php:1104 ../../mod/editwebpage.php:139 -msgid "Page link title" -msgstr "" - -#: ../../include/conversation.php:1107 -msgid "Post as" -msgstr "" - -#: ../../include/conversation.php:1108 ../../mod/editblock.php:112 -#: ../../mod/editlayout.php:107 ../../mod/editpost.php:113 -#: ../../mod/editwebpage.php:144 ../../mod/mail.php:219 ../../mod/mail.php:332 -msgid "Upload photo" -msgstr "" - -#: ../../include/conversation.php:1109 -msgid "upload photo" -msgstr "" - -#: ../../include/conversation.php:1110 ../../mod/editblock.php:113 -#: ../../mod/editlayout.php:108 ../../mod/editpost.php:114 -#: ../../mod/editwebpage.php:145 ../../mod/mail.php:220 ../../mod/mail.php:333 -msgid "Attach file" -msgstr "" - -#: ../../include/conversation.php:1111 -msgid "attach file" -msgstr "" - -#: ../../include/conversation.php:1112 ../../mod/editblock.php:114 -#: ../../mod/editlayout.php:109 ../../mod/editpost.php:115 -#: ../../mod/editwebpage.php:146 ../../mod/mail.php:221 ../../mod/mail.php:334 -msgid "Insert web link" -msgstr "" - -#: ../../include/conversation.php:1113 -msgid "web link" -msgstr "" - -#: ../../include/conversation.php:1114 -msgid "Insert video link" -msgstr "" - -#: ../../include/conversation.php:1115 -msgid "video link" -msgstr "" - -#: ../../include/conversation.php:1116 -msgid "Insert audio link" -msgstr "" - -#: ../../include/conversation.php:1117 -msgid "audio link" -msgstr "" - -#: ../../include/conversation.php:1118 ../../mod/editblock.php:118 -#: ../../mod/editlayout.php:113 ../../mod/editpost.php:119 -#: ../../mod/editwebpage.php:150 -msgid "Set your location" -msgstr "" - -#: ../../include/conversation.php:1119 -msgid "set location" -msgstr "" - -#: ../../include/conversation.php:1120 ../../mod/editblock.php:119 -#: ../../mod/editlayout.php:114 ../../mod/editpost.php:120 -#: ../../mod/editwebpage.php:151 -msgid "Clear browser location" -msgstr "" - -#: ../../include/conversation.php:1121 -msgid "clear location" -msgstr "" - -#: ../../include/conversation.php:1123 ../../mod/editblock.php:132 -#: ../../mod/editlayout.php:126 ../../mod/editpost.php:132 -#: ../../mod/editwebpage.php:167 -msgid "Set title" -msgstr "" - -#: ../../include/conversation.php:1126 ../../mod/editblock.php:135 -#: ../../mod/editlayout.php:129 ../../mod/editpost.php:134 -#: ../../mod/editwebpage.php:169 -msgid "Categories (comma-separated list)" -msgstr "" - -#: ../../include/conversation.php:1128 ../../mod/editblock.php:121 -#: ../../mod/editlayout.php:116 ../../mod/editpost.php:122 -#: ../../mod/editwebpage.php:153 -msgid "Permission settings" -msgstr "" - -#: ../../include/conversation.php:1129 -msgid "permissions" -msgstr "" - -#: ../../include/conversation.php:1136 ../../mod/editblock.php:129 -#: ../../mod/editlayout.php:123 ../../mod/editpost.php:129 -#: ../../mod/editwebpage.php:162 -msgid "Public post" -msgstr "" - -#: ../../include/conversation.php:1138 ../../mod/editblock.php:136 -#: ../../mod/editlayout.php:130 ../../mod/editpost.php:135 -#: ../../mod/editwebpage.php:170 -msgid "Example: bob@example.com, mary@example.com" -msgstr "" - -#: ../../include/conversation.php:1151 ../../mod/editblock.php:146 -#: ../../mod/editlayout.php:140 ../../mod/editpost.php:146 -#: ../../mod/editwebpage.php:180 ../../mod/mail.php:226 ../../mod/mail.php:339 -msgid "Set expiration date" -msgstr "" - -#: ../../include/conversation.php:1155 ../../mod/editpost.php:150 -msgid "OK" -msgstr "" - -#: ../../include/conversation.php:1156 ../../mod/settings.php:516 -#: ../../mod/settings.php:542 ../../mod/editpost.php:151 -#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117 ../../mod/tagrm.php:11 -#: ../../mod/tagrm.php:94 -msgid "Cancel" -msgstr "" - -#: ../../include/conversation.php:1392 -msgid "Discover" -msgstr "" - -#: ../../include/conversation.php:1395 -msgid "Imported public streams" -msgstr "" - -#: ../../include/conversation.php:1400 -msgid "Commented Order" -msgstr "" - -#: ../../include/conversation.php:1403 -msgid "Sort by Comment Date" -msgstr "" - -#: ../../include/conversation.php:1407 -msgid "Posted Order" -msgstr "" - -#: ../../include/conversation.php:1410 -msgid "Sort by Post Date" -msgstr "" - -#: ../../include/conversation.php:1415 ../../include/widgets.php:81 -msgid "Personal" -msgstr "" - -#: ../../include/conversation.php:1418 -msgid "Posts that mention or involve you" -msgstr "" - -#: ../../include/conversation.php:1424 ../../include/widgets.php:83 -#: ../../mod/connections.php:211 ../../mod/connections.php:224 -#: ../../mod/menu.php:61 -msgid "New" -msgstr "" - -#: ../../include/conversation.php:1427 -msgid "Activity Stream - by date" -msgstr "" - -#: ../../include/conversation.php:1433 -msgid "Starred" -msgstr "" - -#: ../../include/conversation.php:1436 -msgid "Favourite Posts" -msgstr "" - -#: ../../include/conversation.php:1443 -msgid "Spam" -msgstr "" - -#: ../../include/conversation.php:1446 -msgid "Posts flagged as SPAM" -msgstr "" - -#: ../../include/conversation.php:1480 ../../mod/admin.php:890 -msgid "Channel" -msgstr "" - -#: ../../include/conversation.php:1483 -msgid "Status Messages and Posts" -msgstr "" - -#: ../../include/conversation.php:1492 -msgid "About" -msgstr "" - -#: ../../include/conversation.php:1495 -msgid "Profile Details" -msgstr "" - -#: ../../include/conversation.php:1510 ../../include/nav.php:85 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "" - -#: ../../include/conversation.php:1513 -msgid "Files and Storage" -msgstr "" - -#: ../../include/conversation.php:1522 ../../include/conversation.php:1525 -msgid "Chatrooms" -msgstr "" - -#: ../../include/conversation.php:1535 -msgid "Events and Calendar" -msgstr "" - -#: ../../include/conversation.php:1540 ../../include/nav.php:88 -msgid "Bookmarks" -msgstr "" - -#: ../../include/conversation.php:1543 -msgid "Saved Bookmarks" -msgstr "" - -#: ../../include/conversation.php:1551 ../../include/nav.php:90 -#: ../../mod/webpages.php:79 -msgid "Webpages" -msgstr "" - -#: ../../include/conversation.php:1554 -msgid "Manage Webpages" -msgstr "" - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "" - -#: ../../include/datetime.php:152 ../../include/datetime.php:284 -msgid "year" -msgstr "" - -#: ../../include/datetime.php:157 ../../include/datetime.php:285 -msgid "month" -msgstr "" - -#: ../../include/datetime.php:162 ../../include/datetime.php:287 -msgid "day" -msgstr "" - -#: ../../include/datetime.php:275 -msgid "never" -msgstr "" - -#: ../../include/datetime.php:281 -msgid "less than a second ago" -msgstr "" - -#: ../../include/datetime.php:284 -msgid "years" -msgstr "" - -#: ../../include/datetime.php:285 -msgid "months" -msgstr "" - -#: ../../include/datetime.php:286 -msgid "week" -msgstr "" - -#: ../../include/datetime.php:286 -msgid "weeks" -msgstr "" - -#: ../../include/datetime.php:287 -msgid "days" -msgstr "" - -#: ../../include/datetime.php:288 -msgid "hour" -msgstr "" - -#: ../../include/datetime.php:288 -msgid "hours" -msgstr "" - -#: ../../include/datetime.php:289 -msgid "minute" -msgstr "" - -#: ../../include/datetime.php:289 -msgid "minutes" -msgstr "" - -#: ../../include/datetime.php:290 -msgid "second" -msgstr "" - -#: ../../include/datetime.php:290 -msgid "seconds" -msgstr "" - -#: ../../include/datetime.php:299 -#, php-format -msgid "%1$d %2$s ago" -msgstr "" - -#: ../../include/dir_fns.php:36 -msgid "Sort Options" -msgstr "" - -#: ../../include/dir_fns.php:37 -msgid "Alphabetic" -msgstr "" - -#: ../../include/dir_fns.php:38 -msgid "Reverse Alphabetic" -msgstr "" - -#: ../../include/dir_fns.php:39 -msgid "Newest to Oldest" -msgstr "" - -#: ../../include/dir_fns.php:51 -msgid "Enable Safe Search" -msgstr "" - -#: ../../include/dir_fns.php:53 -msgid "Disable Safe Search" -msgstr "" - -#: ../../include/dir_fns.php:55 -msgid "Safe Mode" -msgstr "" - -#: ../../include/enotify.php:41 -msgid "Red Matrix Notification" -msgstr "" - -#: ../../include/enotify.php:42 -msgid "redmatrix" -msgstr "" - -#: ../../include/enotify.php:44 -msgid "Thank You," -msgstr "" - -#: ../../include/enotify.php:46 -#, php-format -msgid "%s Administrator" -msgstr "" - -#: ../../include/enotify.php:81 -#, php-format -msgid "%s " -msgstr "" - -#: ../../include/enotify.php:85 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "" - -#: ../../include/enotify.php:87 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "" - -#: ../../include/enotify.php:88 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "" - -#: ../../include/enotify.php:88 -msgid "a private message" -msgstr "" - -#: ../../include/enotify.php:89 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "" - -#: ../../include/enotify.php:144 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "" - -#: ../../include/enotify.php:152 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "" - -#: ../../include/enotify.php:161 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "" - -#: ../../include/enotify.php:172 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "" - -#: ../../include/enotify.php:173 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "" - -#: ../../include/enotify.php:176 ../../include/enotify.php:191 -#: ../../include/enotify.php:217 ../../include/enotify.php:236 -#: ../../include/enotify.php:250 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "" - -#: ../../include/enotify.php:182 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "" - -#: ../../include/enotify.php:184 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "" - -#: ../../include/enotify.php:186 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "" - -#: ../../include/enotify.php:210 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "" - -#: ../../include/enotify.php:211 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "" - -#: ../../include/enotify.php:212 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "" - -#: ../../include/enotify.php:225 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "" - -#: ../../include/enotify.php:226 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "" - -#: ../../include/enotify.php:227 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "" - -#: ../../include/enotify.php:243 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "" - -#: ../../include/enotify.php:244 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "" - -#: ../../include/enotify.php:245 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "" - -#: ../../include/enotify.php:257 -msgid "[Red:Notify] Introduction received" -msgstr "" - -#: ../../include/enotify.php:258 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "" - -#: ../../include/enotify.php:259 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "" - -#: ../../include/enotify.php:263 ../../include/enotify.php:282 -#, php-format -msgid "You may visit their profile at %s" -msgstr "" - -#: ../../include/enotify.php:265 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "" - -#: ../../include/enotify.php:272 -msgid "[Red:Notify] Friend suggestion received" -msgstr "" - -#: ../../include/enotify.php:273 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +#: ../../include/chat.php:10 +msgid "Missing room name" msgstr "" -#: ../../include/enotify.php:274 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s." +#: ../../include/chat.php:19 +msgid "Duplicate room name" msgstr "" -#: ../../include/enotify.php:280 -msgid "Name:" +#: ../../include/chat.php:68 ../../include/chat.php:76 +msgid "Invalid room specifier." msgstr "" -#: ../../include/enotify.php:281 -msgid "Photo:" +#: ../../include/chat.php:105 +msgid "Room not found." msgstr "" -#: ../../include/enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." +#: ../../include/chat.php:126 +msgid "Room is full" msgstr "" #: ../../include/features.php:23 @@ -2075,11 +2630,6 @@ msgstr "" msgid "Allow previewing posts and comments before publishing them" msgstr "" -#: ../../include/features.php:43 ../../include/widgets.php:502 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "" - #: ../../include/features.php:43 msgid "Automatically import channel content from other channels or feeds" msgstr "" @@ -2113,10 +2663,6 @@ msgstr "" msgid "Enable widget to display Network posts only from selected collections" msgstr "" -#: ../../include/features.php:52 ../../include/widgets.php:264 -msgid "Saved Searches" -msgstr "" - #: ../../include/features.php:52 msgid "Save search terms for re-use" msgstr "" @@ -2209,71 +2755,229 @@ msgstr "" msgid "Provide a personal tag cloud on your channel page" msgstr "" -#: ../../include/follow.php:23 -msgid "Channel is blocked on this site." +#: ../../include/permissions.php:13 +msgid "Can view my \"public\" stream and posts" msgstr "" -#: ../../include/follow.php:28 -msgid "Channel location missing." +#: ../../include/permissions.php:14 +msgid "Can view my \"public\" channel profile" msgstr "" -#: ../../include/follow.php:54 -msgid "Response from remote channel was incomplete." +#: ../../include/permissions.php:15 +msgid "Can view my \"public\" photo albums" msgstr "" -#: ../../include/follow.php:85 -msgid "Channel was deleted and no longer exists." +#: ../../include/permissions.php:16 +msgid "Can view my \"public\" address book" msgstr "" -#: ../../include/follow.php:132 -msgid "Channel discovery failed." +#: ../../include/permissions.php:17 +msgid "Can view my \"public\" file storage" msgstr "" -#: ../../include/follow.php:149 -msgid "local account not found." +#: ../../include/permissions.php:18 +msgid "Can view my \"public\" pages" msgstr "" -#: ../../include/follow.php:158 -msgid "Cannot connect to yourself." +#: ../../include/permissions.php:21 +msgid "Can send me their channel stream and posts" msgstr "" -#: ../../include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." +#: ../../include/permissions.php:22 +msgid "Can post on my channel page (\"wall\")" msgstr "" -#: ../../include/group.php:223 -msgid "Default privacy group for new contacts" +#: ../../include/permissions.php:23 +msgid "Can comment on my posts" msgstr "" -#: ../../include/group.php:242 ../../mod/admin.php:762 -msgid "All Channels" +#: ../../include/permissions.php:24 +msgid "Can send me private mail messages" msgstr "" -#: ../../include/group.php:264 -msgid "edit" +#: ../../include/permissions.php:25 +msgid "Can post photos to my photo albums" msgstr "" -#: ../../include/group.php:285 -msgid "Collections" +#: ../../include/permissions.php:26 +msgid "Can forward to all my channel contacts via post @mentions" msgstr "" -#: ../../include/group.php:286 -msgid "Edit collection" +#: ../../include/permissions.php:26 +msgid "Advanced - useful for creating group forum channels" msgstr "" -#: ../../include/group.php:287 -msgid "Create a new collection" +#: ../../include/permissions.php:27 +msgid "Can chat with me (when available)" msgstr "" -#: ../../include/group.php:288 -msgid "Channels not in any collection" +#: ../../include/permissions.php:28 +msgid "Can write to my \"public\" file storage" msgstr "" -#: ../../include/group.php:290 ../../include/widgets.php:265 -msgid "add" +#: ../../include/permissions.php:29 +msgid "Can edit my \"public\" pages" +msgstr "" + +#: ../../include/permissions.php:31 +msgid "Can source my \"public\" posts in derived channels" +msgstr "" + +#: ../../include/permissions.php:31 +msgid "Somewhat advanced - very useful in open communities" +msgstr "" + +#: ../../include/permissions.php:33 +msgid "Can administer my channel resources" +msgstr "" + +#: ../../include/permissions.php:33 +msgid "Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "" + +#: ../../include/zot.php:587 +msgid "Invalid data packet" +msgstr "" + +#: ../../include/zot.php:597 +msgid "Unable to verify channel signature" +msgstr "" + +#: ../../include/zot.php:794 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "" + +#: ../../include/contact_widgets.php:14 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:445 +msgid "Advanced" +msgstr "" + +#: ../../include/contact_widgets.php:22 +msgid "Find Channels" +msgstr "" + +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" +msgstr "" + +#: ../../include/contact_widgets.php:24 +msgid "Connect/Follow" +msgstr "" + +#: ../../include/contact_widgets.php:25 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "" + +#: ../../include/contact_widgets.php:26 ../../mod/directory.php:206 +#: ../../mod/directory.php:211 ../../mod/connections.php:391 +msgid "Find" +msgstr "" + +#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 +msgid "Channel Suggestions" +msgstr "" + +#: ../../include/contact_widgets.php:29 +msgid "Random Profile" +msgstr "" + +#: ../../include/contact_widgets.php:30 +msgid "Invite Friends" +msgstr "" + +#: ../../include/contact_widgets.php:32 +msgid "Exammple: name=fred and country=iceland" +msgstr "" + +#: ../../include/contact_widgets.php:33 +msgid "Advanced Find" +msgstr "" + +#: ../../include/contact_widgets.php:125 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "" + +#: ../../include/datetime.php:152 ../../include/datetime.php:284 +msgid "year" +msgstr "" + +#: ../../include/datetime.php:157 ../../include/datetime.php:285 +msgid "month" +msgstr "" + +#: ../../include/datetime.php:162 ../../include/datetime.php:287 +msgid "day" +msgstr "" + +#: ../../include/datetime.php:275 +msgid "never" +msgstr "" + +#: ../../include/datetime.php:281 +msgid "less than a second ago" +msgstr "" + +#: ../../include/datetime.php:284 +msgid "years" +msgstr "" + +#: ../../include/datetime.php:285 +msgid "months" +msgstr "" + +#: ../../include/datetime.php:286 +msgid "week" +msgstr "" + +#: ../../include/datetime.php:286 +msgid "weeks" +msgstr "" + +#: ../../include/datetime.php:287 +msgid "days" +msgstr "" + +#: ../../include/datetime.php:288 +msgid "hour" +msgstr "" + +#: ../../include/datetime.php:288 +msgid "hours" +msgstr "" + +#: ../../include/datetime.php:289 +msgid "minute" +msgstr "" + +#: ../../include/datetime.php:289 +msgid "minutes" +msgstr "" + +#: ../../include/datetime.php:290 +msgid "second" +msgstr "" + +#: ../../include/datetime.php:290 +msgid "seconds" +msgstr "" + +#: ../../include/datetime.php:299 +#, php-format +msgid "%1$d %2$s ago" msgstr "" #: ../../include/identity.php:30 ../../mod/item.php:1244 @@ -2313,19 +3017,14 @@ msgstr "" msgid "Default Profile" msgstr "" -#: ../../include/identity.php:342 ../../include/profile_selectors.php:42 -#: ../../include/widgets.php:399 ../../mod/connedit.php:431 -msgid "Friends" -msgstr "" - #: ../../include/identity.php:509 msgid "Requested channel is not available." msgstr "" -#: ../../include/identity.php:557 ../../mod/achievements.php:8 -#: ../../mod/profile.php:16 ../../mod/blocks.php:10 ../../mod/connect.php:13 -#: ../../mod/filestorage.php:40 ../../mod/layouts.php:8 -#: ../../mod/webpages.php:8 +#: ../../include/identity.php:557 ../../mod/webpages.php:8 +#: ../../mod/connect.php:13 ../../mod/blocks.php:10 +#: ../../mod/filestorage.php:40 ../../mod/achievements.php:8 +#: ../../mod/layouts.php:8 ../../mod/profile.php:16 msgid "Requested profile is not available." msgstr "" @@ -2511,45 +3210,6 @@ msgstr "" msgid "School/education:" msgstr "" -#: ../../include/items.php:306 ../../mod/profperm.php:23 -#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:63 -#: ../../index.php:361 -msgid "Permission denied" -msgstr "" - -#: ../../include/items.php:830 -msgid "(Unknown)" -msgstr "" - -#: ../../include/items.php:3583 ../../mod/admin.php:159 -#: ../../mod/admin.php:921 ../../mod/admin.php:1124 ../../mod/display.php:32 -#: ../../mod/filestorage.php:18 ../../mod/home.php:63 ../../mod/thing.php:78 -#: ../../mod/viewsrc.php:18 -msgid "Item not found." -msgstr "" - -#: ../../include/items.php:4007 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "" - -#: ../../include/items.php:4022 -msgid "Collection is empty." -msgstr "" - -#: ../../include/items.php:4029 -#, php-format -msgid "Collection: %s" -msgstr "" - -#: ../../include/items.php:4040 -#, php-format -msgid "Connection: %s" -msgstr "" - -#: ../../include/items.php:4043 -msgid "Connection not found." -msgstr "" - #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "" @@ -2667,651 +3327,409 @@ msgstr "" msgid "timeago.numbers" msgstr "" -#: ../../include/message.php:18 -msgid "No recipient provided." +#: ../../mod/home.php:50 ../../mod/block.php:39 ../../mod/chanview.php:77 +#: ../../mod/page.php:47 ../../mod/wall_upload.php:28 +msgid "Channel not found." msgstr "" -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "" - -#: ../../include/message.php:42 -msgid "Unable to determine sender." -msgstr "" - -#: ../../include/message.php:143 -msgid "Stored post could not be verified." -msgstr "" - -#: ../../include/nav.php:77 ../../include/nav.php:96 ../../boot.php:1451 -msgid "Logout" -msgstr "" - -#: ../../include/nav.php:77 ../../include/nav.php:96 -msgid "End this session" -msgstr "" - -#: ../../include/nav.php:80 ../../include/nav.php:130 -msgid "Home" -msgstr "" - -#: ../../include/nav.php:80 -msgid "Your posts and conversations" -msgstr "" - -#: ../../include/nav.php:81 -msgid "Your profile page" -msgstr "" - -#: ../../include/nav.php:83 -msgid "Edit Profiles" -msgstr "" - -#: ../../include/nav.php:83 -msgid "Manage/Edit profiles" -msgstr "" - -#: ../../include/nav.php:84 -msgid "Your photos" -msgstr "" - -#: ../../include/nav.php:85 -msgid "Your files" -msgstr "" - -#: ../../include/nav.php:86 -msgid "Chat" -msgstr "" - -#: ../../include/nav.php:86 -msgid "Your chatrooms" -msgstr "" - -#: ../../include/nav.php:87 -msgid "Your events" -msgstr "" - -#: ../../include/nav.php:88 -msgid "Your bookmarks" -msgstr "" - -#: ../../include/nav.php:90 -msgid "Your webpages" -msgstr "" - -#: ../../include/nav.php:94 ../../boot.php:1452 -msgid "Login" -msgstr "" - -#: ../../include/nav.php:94 -msgid "Sign in" -msgstr "" - -#: ../../include/nav.php:111 +#: ../../mod/home.php:89 #, php-format -msgid "%s - click to logout" +msgid "Welcome to %s" msgstr "" -#: ../../include/nav.php:116 -msgid "Click to authenticate to your home hub" +#: ../../mod/follow.php:25 +msgid "Channel added." msgstr "" -#: ../../include/nav.php:130 -msgid "Home Page" +#: ../../mod/dirprofile.php:9 ../../mod/search.php:13 +#: ../../mod/directory.php:15 ../../mod/photos.php:443 ../../mod/display.php:9 +#: ../../mod/viewconnections.php:17 +msgid "Public access denied." msgstr "" -#: ../../include/nav.php:134 ../../mod/register.php:206 ../../boot.php:1428 -msgid "Register" +#: ../../mod/dirprofile.php:92 ../../mod/directory.php:143 +#: ../../mod/profiles.php:561 +msgid "Age: " msgstr "" -#: ../../include/nav.php:134 -msgid "Create an account" +#: ../../mod/dirprofile.php:95 ../../mod/directory.php:146 +msgid "Gender: " msgstr "" -#: ../../include/nav.php:139 ../../mod/help.php:60 ../../mod/help.php:65 -msgid "Help" +#: ../../mod/dirprofile.php:108 +msgid "Status: " msgstr "" -#: ../../include/nav.php:139 -msgid "Help and documentation" +#: ../../mod/dirprofile.php:109 +msgid "Sexual Preference: " msgstr "" -#: ../../include/nav.php:142 ../../mod/apps.php:17 -msgid "Apps" +#: ../../mod/dirprofile.php:111 +msgid "Homepage: " msgstr "" -#: ../../include/nav.php:142 -msgid "Addon applications, utilities, games" +#: ../../mod/dirprofile.php:112 +msgid "Hometown: " msgstr "" -#: ../../include/nav.php:144 -msgid "Search site content" +#: ../../mod/dirprofile.php:114 +msgid "About: " msgstr "" -#: ../../include/nav.php:147 -msgid "Channel Locator" +#: ../../mod/dirprofile.php:162 +msgid "Keywords: " msgstr "" -#: ../../include/nav.php:158 -msgid "Your matrix" +#: ../../mod/dirprofile.php:175 ../../mod/mitem.php:78 ../../mod/xchan.php:27 +#: ../../mod/menu.php:120 +msgid "Not found." msgstr "" -#: ../../include/nav.php:159 -msgid "Mark all matrix notifications seen" +#: ../../mod/acl.php:239 +msgid "network" msgstr "" -#: ../../include/nav.php:161 -msgid "Channel home" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" msgstr "" -#: ../../include/nav.php:162 -msgid "Mark all channel notifications seen" +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" msgstr "" -#: ../../include/nav.php:165 ../../include/nav.php:188 -#: ../../mod/connections.php:385 -msgid "Connections" +#: ../../mod/api.php:89 +msgid "Please login to continue." msgstr "" -#: ../../include/nav.php:168 -msgid "Notices" -msgstr "" - -#: ../../include/nav.php:168 -msgid "Notifications" -msgstr "" - -#: ../../include/nav.php:169 -msgid "See all notifications" -msgstr "" - -#: ../../include/nav.php:170 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "" - -#: ../../include/nav.php:172 -msgid "Mail" -msgstr "" - -#: ../../include/nav.php:172 -msgid "Private mail" -msgstr "" - -#: ../../include/nav.php:173 -msgid "See all private messages" -msgstr "" - -#: ../../include/nav.php:174 -msgid "Mark all private messages seen" -msgstr "" - -#: ../../include/nav.php:175 -msgid "Inbox" -msgstr "" - -#: ../../include/nav.php:176 -msgid "Outbox" -msgstr "" - -#: ../../include/nav.php:177 ../../include/widgets.php:535 -msgid "New Message" -msgstr "" - -#: ../../include/nav.php:180 -msgid "Event Calendar" -msgstr "" - -#: ../../include/nav.php:181 -msgid "See all events" -msgstr "" - -#: ../../include/nav.php:182 -msgid "Mark all events seen" -msgstr "" - -#: ../../include/nav.php:184 -msgid "Channel Select" -msgstr "" - -#: ../../include/nav.php:184 -msgid "Manage Your Channels" -msgstr "" - -#: ../../include/nav.php:186 ../../include/widgets.php:513 -#: ../../mod/admin.php:976 ../../mod/admin.php:1181 -msgid "Settings" -msgstr "" - -#: ../../include/nav.php:186 -msgid "Account/Channel Settings" -msgstr "" - -#: ../../include/nav.php:188 -msgid "Manage/Edit Friends and Connections" -msgstr "" - -#: ../../include/nav.php:195 ../../mod/admin.php:117 -msgid "Admin" -msgstr "" - -#: ../../include/nav.php:195 -msgid "Site Setup and Configuration" -msgstr "" - -#: ../../include/nav.php:220 -msgid "Nothing new here" -msgstr "" - -#: ../../include/nav.php:225 -msgid "Please wait..." -msgstr "" - -#: ../../include/network.php:652 -msgid "view full size" -msgstr "" - -#: ../../include/plugin.php:486 ../../include/plugin.php:488 -msgid "Click here to upgrade." -msgstr "" - -#: ../../include/plugin.php:494 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" - -#: ../../include/plugin.php:499 -msgid "This action is not available under your subscription plan." -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "" - -#: ../../include/reddav.php:1045 -msgid "Edit File properties" -msgstr "" - -#: ../../include/zot.php:587 -msgid "Invalid data packet" -msgstr "" - -#: ../../include/zot.php:597 -msgid "Unable to verify channel signature" -msgstr "" - -#: ../../include/zot.php:794 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "" - -#: ../../include/security.php:301 +#: ../../mod/api.php:104 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." +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" msgstr "" -#: ../../include/widgets.php:79 -msgid "App Category" +#: ../../mod/api.php:105 ../../mod/settings.php:879 ../../mod/settings.php:884 +#: ../../mod/settings.php:955 ../../mod/profiles.php:483 +#: ../../mod/admin.php:421 +msgid "Yes" msgstr "" -#: ../../include/widgets.php:80 -msgid "System" +#: ../../mod/api.php:106 ../../mod/settings.php:879 ../../mod/settings.php:884 +#: ../../mod/settings.php:955 ../../mod/profiles.php:484 +#: ../../mod/admin.php:419 +msgid "No" msgstr "" -#: ../../include/widgets.php:82 -msgid "Featured" +#: ../../mod/editlayout.php:36 ../../mod/editpost.php:20 +#: ../../mod/editblock.php:8 ../../mod/editblock.php:27 +#: ../../mod/editblock.php:53 ../../mod/editwebpage.php:32 +msgid "Item not found" msgstr "" -#: ../../include/widgets.php:129 ../../mod/suggest.php:53 -msgid "Ignore/Hide" +#: ../../mod/editlayout.php:72 +msgid "Edit Layout" msgstr "" -#: ../../include/widgets.php:135 ../../mod/connections.php:266 -msgid "Suggestions" +#: ../../mod/editlayout.php:82 +msgid "Delete layout?" msgstr "" -#: ../../include/widgets.php:136 -msgid "See more..." +#: ../../mod/editlayout.php:110 ../../mod/editpost.php:116 +#: ../../mod/editblock.php:115 ../../mod/editwebpage.php:147 +msgid "Insert YouTube video" msgstr "" -#: ../../include/widgets.php:158 +#: ../../mod/editlayout.php:111 ../../mod/editpost.php:117 +#: ../../mod/editblock.php:116 ../../mod/editwebpage.php:148 +msgid "Insert Vorbis [.ogg] video" +msgstr "" + +#: ../../mod/editlayout.php:112 ../../mod/editpost.php:118 +#: ../../mod/editblock.php:117 ../../mod/editwebpage.php:149 +msgid "Insert Vorbis [.ogg] audio" +msgstr "" + +#: ../../mod/editlayout.php:146 +msgid "Delete Layout" +msgstr "" + +#: ../../mod/magic.php:70 +msgid "Hub not found." +msgstr "" + +#: ../../mod/probe.php:23 ../../mod/probe.php:29 #, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." +msgid "Fetching URL returns error: %1$s" msgstr "" -#: ../../include/widgets.php:164 -msgid "Add New Connection" +#: ../../mod/tagrm.php:41 +msgid "Tag removed" msgstr "" -#: ../../include/widgets.php:165 -msgid "Enter the channel address" +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" msgstr "" -#: ../../include/widgets.php:166 -msgid "Example: bob@example.com, http://example.com/barbara" +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " msgstr "" -#: ../../include/widgets.php:183 -msgid "Notes" +#: ../../mod/tagrm.php:93 ../../mod/photos.php:908 ../../mod/delegate.php:130 +msgid "Remove" msgstr "" -#: ../../include/widgets.php:255 -msgid "Remove term" +#: ../../mod/new_channel.php:107 +msgid "Add a Channel" msgstr "" -#: ../../include/widgets.php:334 -msgid "Archives" +#: ../../mod/new_channel.php:108 +msgid "" +"A channel is your own collection of related web pages. A channel can be used " +"to hold social network profiles, blogs, conversation groups and forums, " +"celebrity pages, and much more. You may create as many channels as your " +"service provider allows." msgstr "" -#: ../../include/widgets.php:396 -msgid "Refresh" +#: ../../mod/new_channel.php:110 ../../mod/sources.php:103 +#: ../../mod/sources.php:137 +msgid "Channel Name" msgstr "" -#: ../../include/widgets.php:397 ../../mod/connedit.php:428 -msgid "Me" +#: ../../mod/new_channel.php:111 +msgid "" +"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " +"Group\" " msgstr "" -#: ../../include/widgets.php:398 ../../mod/connedit.php:430 -msgid "Best Friends" +#: ../../mod/new_channel.php:112 +msgid "Choose a short nickname" msgstr "" -#: ../../include/widgets.php:400 -msgid "Co-workers" +#: ../../mod/new_channel.php:113 +msgid "" +"Your nickname will be used to create an easily remembered channel address " +"(like an email address) which you can share with others." msgstr "" -#: ../../include/widgets.php:401 ../../mod/connedit.php:432 -msgid "Former Friends" +#: ../../mod/new_channel.php:114 +msgid "" +"Or import an existing channel from another location" msgstr "" -#: ../../include/widgets.php:402 ../../mod/connedit.php:433 -msgid "Acquaintances" +#: ../../mod/new_channel.php:117 ../../mod/mitem.php:142 ../../mod/menu.php:84 +msgid "Create" msgstr "" -#: ../../include/widgets.php:403 -msgid "Everybody" +#: ../../mod/pubsites.php:16 +msgid "Public Sites" msgstr "" -#: ../../include/widgets.php:435 -msgid "Account settings" +#: ../../mod/pubsites.php:19 +msgid "" +"The listed sites allow public registration into the Red Matrix. All sites in " +"the matrix are interlinked so membership on any of them conveys membership " +"in the matrix as a whole. Some sites may require subscription or provide " +"tiered service plans. The provider links may provide " +"additional details." msgstr "" -#: ../../include/widgets.php:441 -msgid "Channel settings" +#: ../../mod/pubsites.php:25 +msgid "Site URL" msgstr "" -#: ../../include/widgets.php:447 -msgid "Additional features" +#: ../../mod/pubsites.php:25 +msgid "Access Type" msgstr "" -#: ../../include/widgets.php:453 -msgid "Feature settings" +#: ../../mod/pubsites.php:25 +msgid "Registration Policy" msgstr "" -#: ../../include/widgets.php:459 -msgid "Display settings" +#: ../../mod/pubsites.php:25 ../../mod/profiles.php:344 +msgid "Location" msgstr "" -#: ../../include/widgets.php:465 -msgid "Connected apps" +#: ../../mod/update_search.php:46 ../../mod/update_network.php:23 +#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 +msgid "[Embedded content - reload page to view]" msgstr "" -#: ../../include/widgets.php:471 -msgid "Export channel" +#: ../../mod/group.php:20 +msgid "Collection created." msgstr "" -#: ../../include/widgets.php:483 -msgid "Automatic Permissions (Advanced)" +#: ../../mod/group.php:26 +msgid "Could not create collection." msgstr "" -#: ../../include/widgets.php:493 -msgid "Premium Channel Settings" +#: ../../mod/group.php:54 +msgid "Collection updated." msgstr "" -#: ../../include/widgets.php:530 -msgid "Check Mail" +#: ../../mod/group.php:86 +msgid "Create a collection of channels." msgstr "" -#: ../../include/widgets.php:611 -msgid "Chat Rooms" +#: ../../mod/group.php:87 ../../mod/group.php:183 +msgid "Collection Name: " msgstr "" -#: ../../include/widgets.php:629 -msgid "Bookmarked Chatrooms" +#: ../../mod/group.php:89 ../../mod/group.php:186 +msgid "Members are visible to other channels" msgstr "" -#: ../../include/widgets.php:647 -msgid "Suggested Chatrooms" +#: ../../mod/group.php:107 +msgid "Collection removed." msgstr "" -#: ../../mod/mood.php:138 -msgid "Mood" +#: ../../mod/group.php:109 +msgid "Unable to remove collection." msgstr "" -#: ../../mod/mood.php:139 -msgid "Set your current mood and tell your friends" +#: ../../mod/group.php:182 +msgid "Collection Editor" +msgstr "" + +#: ../../mod/group.php:196 +msgid "Members" +msgstr "" + +#: ../../mod/group.php:198 +msgid "All Connected Channels" +msgstr "" + +#: ../../mod/group.php:231 +msgid "Click on a channel to add or remove." +msgstr "" + +#: ../../mod/thing.php:98 +msgid "Thing updated" +msgstr "" + +#: ../../mod/thing.php:158 +msgid "Object store: failed" +msgstr "" + +#: ../../mod/thing.php:162 +msgid "Thing added" +msgstr "" + +#: ../../mod/thing.php:182 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "" + +#: ../../mod/thing.php:234 +msgid "Show Thing" +msgstr "" + +#: ../../mod/thing.php:241 +msgid "item not found." +msgstr "" + +#: ../../mod/thing.php:269 +msgid "Edit Thing" +msgstr "" + +#: ../../mod/thing.php:271 ../../mod/thing.php:318 +msgid "Select a profile" +msgstr "" + +#: ../../mod/thing.php:273 ../../mod/thing.php:320 +msgid "Select a category of stuff. e.g. I ______ something" +msgstr "" + +#: ../../mod/thing.php:275 ../../mod/thing.php:321 +msgid "Post an activity" +msgstr "" + +#: ../../mod/thing.php:275 ../../mod/thing.php:321 +msgid "Only sends to viewers of the applicable profile" +msgstr "" + +#: ../../mod/thing.php:277 ../../mod/thing.php:323 +msgid "Name of thing e.g. something" +msgstr "" + +#: ../../mod/thing.php:279 ../../mod/thing.php:324 +msgid "URL of thing (optional)" +msgstr "" + +#: ../../mod/thing.php:281 ../../mod/thing.php:325 +msgid "URL for photo of thing (optional)" +msgstr "" + +#: ../../mod/thing.php:316 +msgid "Add Thing to your Profile" +msgstr "" + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "" + +#: ../../mod/notifications.php:35 +msgid "Discard" +msgstr "" + +#: ../../mod/notifications.php:51 ../../mod/connedit.php:379 +#: ../../mod/connedit.php:516 +msgid "Ignore" +msgstr "" + +#: ../../mod/notifications.php:94 ../../mod/notify.php:54 +msgid "No more system notifications." +msgstr "" + +#: ../../mod/notifications.php:98 ../../mod/notify.php:58 +msgid "System Notifications" +msgstr "" + +#: ../../mod/block.php:27 ../../mod/page.php:35 +msgid "Invalid item." +msgstr "" + +#: ../../mod/block.php:75 ../../mod/help.php:72 ../../mod/page.php:83 +#: ../../mod/display.php:100 ../../index.php:237 +msgid "Page not found." +msgstr "" + +#: ../../mod/message.php:31 ../../mod/mail.php:121 +msgid "Messages" +msgstr "" + +#: ../../mod/message.php:41 +msgid "Conversation removed." +msgstr "" + +#: ../../mod/message.php:56 +msgid "No messages." +msgstr "" + +#: ../../mod/message.php:72 ../../mod/mail.php:292 +msgid "Delete message" +msgstr "" + +#: ../../mod/message.php:74 +msgid "D, d M Y - g:i A" +msgstr "" + +#: ../../mod/rpost.php:86 ../../mod/editpost.php:42 +msgid "Edit post" +msgstr "" + +#: ../../mod/directory.php:207 +msgid "Finding:" +msgstr "" + +#: ../../mod/directory.php:215 +msgid "next page" +msgstr "" + +#: ../../mod/directory.php:215 +msgid "previous page" +msgstr "" + +#: ../../mod/directory.php:222 +msgid "No entries (some entries may be hidden)." msgstr "" #: ../../mod/mitem.php:14 ../../mod/menu.php:92 @@ -3334,11 +3752,6 @@ msgstr "" msgid "Unable to add menu element." msgstr "" -#: ../../mod/mitem.php:78 ../../mod/dirprofile.php:175 ../../mod/menu.php:120 -#: ../../mod/xchan.php:27 -msgid "Not found." -msgstr "" - #: ../../mod/mitem.php:96 msgid "Manage Menu Elements" msgstr "" @@ -3411,10 +3824,6 @@ msgstr "" msgid "Higher numbers will sink to bottom of listing" msgstr "" -#: ../../mod/mitem.php:142 ../../mod/menu.php:84 ../../mod/new_channel.php:117 -msgid "Create" -msgstr "" - #: ../../mod/mitem.php:154 msgid "Menu item not found." msgstr "" @@ -3435,719 +3844,288 @@ msgstr "" msgid "Modify" msgstr "" -#: ../../mod/ping.php:192 -msgid "sent you a private message" +#: ../../mod/connect.php:55 ../../mod/connect.php:103 +msgid "Continue" msgstr "" -#: ../../mod/ping.php:250 -msgid "added your channel" +#: ../../mod/connect.php:84 +msgid "Premium Channel Setup" msgstr "" -#: ../../mod/ping.php:294 -msgid "posted an event" +#: ../../mod/connect.php:86 +msgid "Enable premium channel connection restrictions" msgstr "" -#: ../../mod/acl.php:239 -msgid "network" -msgstr "" - -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "" - -#: ../../mod/admin.php:92 ../../mod/admin.php:440 -msgid "Site" -msgstr "" - -#: ../../mod/admin.php:93 -msgid "Accounts" -msgstr "" - -#: ../../mod/admin.php:94 ../../mod/admin.php:883 -msgid "Channels" -msgstr "" - -#: ../../mod/admin.php:95 ../../mod/admin.php:974 ../../mod/admin.php:1016 -msgid "Plugins" -msgstr "" - -#: ../../mod/admin.php:96 ../../mod/admin.php:1179 ../../mod/admin.php:1215 -msgid "Themes" -msgstr "" - -#: ../../mod/admin.php:97 ../../mod/admin.php:540 -msgid "Server" -msgstr "" - -#: ../../mod/admin.php:98 -msgid "DB updates" -msgstr "" - -#: ../../mod/admin.php:112 ../../mod/admin.php:119 ../../mod/admin.php:1302 -msgid "Logs" -msgstr "" - -#: ../../mod/admin.php:118 -msgid "Plugin Features" -msgstr "" - -#: ../../mod/admin.php:120 -msgid "User registrations waiting for confirmation" -msgstr "" - -#: ../../mod/admin.php:197 -msgid "Message queues" -msgstr "" - -#: ../../mod/admin.php:202 ../../mod/admin.php:439 ../../mod/admin.php:539 -#: ../../mod/admin.php:748 ../../mod/admin.php:882 ../../mod/admin.php:973 -#: ../../mod/admin.php:1015 ../../mod/admin.php:1178 ../../mod/admin.php:1214 -#: ../../mod/admin.php:1301 -msgid "Administration" -msgstr "" - -#: ../../mod/admin.php:203 -msgid "Summary" -msgstr "" - -#: ../../mod/admin.php:205 -msgid "Registered users" -msgstr "" - -#: ../../mod/admin.php:207 ../../mod/admin.php:543 -msgid "Pending registrations" -msgstr "" - -#: ../../mod/admin.php:208 -msgid "Version" -msgstr "" - -#: ../../mod/admin.php:210 ../../mod/admin.php:544 -msgid "Active plugins" -msgstr "" - -#: ../../mod/admin.php:360 -msgid "Site settings updated." -msgstr "" - -#: ../../mod/admin.php:389 ../../mod/settings.php:708 -msgid "No special theme for mobile devices" -msgstr "" - -#: ../../mod/admin.php:391 -msgid "No special theme for accessibility" -msgstr "" - -#: ../../mod/admin.php:419 ../../mod/api.php:106 ../../mod/profiles.php:484 -#: ../../mod/settings.php:879 ../../mod/settings.php:884 -#: ../../mod/settings.php:955 -msgid "No" -msgstr "" - -#: ../../mod/admin.php:420 -msgid "Yes - with approval" -msgstr "" - -#: ../../mod/admin.php:421 ../../mod/api.php:105 ../../mod/profiles.php:483 -#: ../../mod/settings.php:879 ../../mod/settings.php:884 -#: ../../mod/settings.php:955 -msgid "Yes" -msgstr "" - -#: ../../mod/admin.php:426 -msgid "My site is not a public server" -msgstr "" - -#: ../../mod/admin.php:427 -msgid "My site has paid access only" -msgstr "" - -#: ../../mod/admin.php:428 -msgid "My site has free access only" -msgstr "" - -#: ../../mod/admin.php:429 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "" - -#: ../../mod/admin.php:442 ../../mod/register.php:189 -msgid "Registration" -msgstr "" - -#: ../../mod/admin.php:443 -msgid "File upload" -msgstr "" - -#: ../../mod/admin.php:444 -msgid "Policies" -msgstr "" - -#: ../../mod/admin.php:449 -msgid "Site name" -msgstr "" - -#: ../../mod/admin.php:450 -msgid "Banner/Logo" -msgstr "" - -#: ../../mod/admin.php:451 -msgid "Administrator Information" -msgstr "" - -#: ../../mod/admin.php:451 +#: ../../mod/connect.php:87 msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." msgstr "" -#: ../../mod/admin.php:452 -msgid "System language" -msgstr "" - -#: ../../mod/admin.php:453 -msgid "System theme" -msgstr "" - -#: ../../mod/admin.php:453 +#: ../../mod/connect.php:89 ../../mod/connect.php:109 msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" msgstr "" -#: ../../mod/admin.php:454 -msgid "Mobile system theme" -msgstr "" - -#: ../../mod/admin.php:454 -msgid "Theme for mobile devices" -msgstr "" - -#: ../../mod/admin.php:455 -msgid "Accessibility system theme" -msgstr "" - -#: ../../mod/admin.php:455 -msgid "Accessibility theme" -msgstr "" - -#: ../../mod/admin.php:456 -msgid "Channel to use for this website's static pages" -msgstr "" - -#: ../../mod/admin.php:456 -msgid "Site Channel" -msgstr "" - -#: ../../mod/admin.php:458 -msgid "Maximum image size" -msgstr "" - -#: ../../mod/admin.php:458 +#: ../../mod/connect.php:90 msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." +"Potential connections will then see the following text before proceeding:" msgstr "" -#: ../../mod/admin.php:459 -msgid "Does this site allow new member registration?" -msgstr "" - -#: ../../mod/admin.php:460 -msgid "Which best describes the types of account offered by this hub?" -msgstr "" - -#: ../../mod/admin.php:461 -msgid "Register text" -msgstr "" - -#: ../../mod/admin.php:461 -msgid "Will be displayed prominently on the registration page." -msgstr "" - -#: ../../mod/admin.php:462 -msgid "Accounts abandoned after x days" -msgstr "" - -#: ../../mod/admin.php:462 +#: ../../mod/connect.php:91 ../../mod/connect.php:112 msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." +"By continuing, I certify that I have complied with any instructions provided " +"on this page." msgstr "" -#: ../../mod/admin.php:463 -msgid "Allowed friend domains" +#: ../../mod/connect.php:100 +msgid "(No specific instructions have been provided by the channel owner.)" msgstr "" -#: ../../mod/admin.php:463 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" +#: ../../mod/connect.php:108 +msgid "Restricted or Premium Channel" msgstr "" -#: ../../mod/admin.php:464 -msgid "Allowed email domains" +#: ../../mod/item.php:147 +msgid "Unable to locate original post." msgstr "" -#: ../../mod/admin.php:464 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" +#: ../../mod/item.php:352 +msgid "Empty post discarded." msgstr "" -#: ../../mod/admin.php:465 -msgid "Block public" +#: ../../mod/item.php:392 +msgid "Executable content type not permitted to this channel." msgstr "" -#: ../../mod/admin.php:465 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." +#: ../../mod/item.php:806 +msgid "System error. Post not saved." msgstr "" -#: ../../mod/admin.php:466 -msgid "Force publish" -msgstr "" - -#: ../../mod/admin.php:466 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "" - -#: ../../mod/admin.php:467 -msgid "Disable discovery tab" -msgstr "" - -#: ../../mod/admin.php:467 -msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." -msgstr "" - -#: ../../mod/admin.php:468 -msgid "No login on Homepage" -msgstr "" - -#: ../../mod/admin.php:468 -msgid "" -"Check to hide the login form from your sites homepage when visitors arrive " -"who are not logged in (e.g. when you put the content of the homepage in via " -"the site channel)." -msgstr "" - -#: ../../mod/admin.php:470 -msgid "Proxy user" -msgstr "" - -#: ../../mod/admin.php:471 -msgid "Proxy URL" -msgstr "" - -#: ../../mod/admin.php:472 -msgid "Network timeout" -msgstr "" - -#: ../../mod/admin.php:472 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" - -#: ../../mod/admin.php:473 -msgid "Delivery interval" -msgstr "" - -#: ../../mod/admin.php:473 -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:474 -msgid "Poll interval" -msgstr "" - -#: ../../mod/admin.php:474 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "" - -#: ../../mod/admin.php:475 -msgid "Maximum Load Average" -msgstr "" - -#: ../../mod/admin.php:475 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "" - -#: ../../mod/admin.php:531 -msgid "No server found" -msgstr "" - -#: ../../mod/admin.php:538 ../../mod/admin.php:762 -msgid "ID" -msgstr "" - -#: ../../mod/admin.php:538 -msgid "for channel" -msgstr "" - -#: ../../mod/admin.php:538 -msgid "on server" -msgstr "" - -#: ../../mod/admin.php:538 -msgid "Status" -msgstr "" - -#: ../../mod/admin.php:559 -msgid "Update has been marked successful" -msgstr "" - -#: ../../mod/admin.php:569 +#: ../../mod/item.php:1249 #, php-format -msgid "Executing %s failed. Check system logs." +msgid "You have reached your limit of %1$.0f top level posts." msgstr "" -#: ../../mod/admin.php:572 +#: ../../mod/item.php:1255 #, php-format -msgid "Update %s was successfully applied." +msgid "You have reached your limit of %1$.0f webpages." msgstr "" -#: ../../mod/admin.php:576 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "" - -#: ../../mod/admin.php:579 -#, php-format -msgid "Update function %s could not be found." -msgstr "" - -#: ../../mod/admin.php:594 -msgid "No failed updates." -msgstr "" - -#: ../../mod/admin.php:598 -msgid "Failed Updates" -msgstr "" - -#: ../../mod/admin.php:600 -msgid "Mark success (if update was manually applied)" -msgstr "" - -#: ../../mod/admin.php:601 -msgid "Attempt to execute this update step automatically" -msgstr "" - -#: ../../mod/admin.php:627 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:634 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:665 -msgid "Account not found" -msgstr "" - -#: ../../mod/admin.php:676 -#, php-format -msgid "User '%s' deleted" -msgstr "" - -#: ../../mod/admin.php:685 -#, php-format -msgid "User '%s' unblocked" -msgstr "" - -#: ../../mod/admin.php:685 -#, php-format -msgid "User '%s' blocked" -msgstr "" - -#: ../../mod/admin.php:749 ../../mod/admin.php:761 -msgid "Users" -msgstr "" - -#: ../../mod/admin.php:751 ../../mod/admin.php:885 -msgid "select all" -msgstr "" - -#: ../../mod/admin.php:752 -msgid "User registrations waiting for confirm" -msgstr "" - -#: ../../mod/admin.php:753 -msgid "Request date" -msgstr "" - -#: ../../mod/admin.php:754 -msgid "No registrations." -msgstr "" - -#: ../../mod/admin.php:755 -msgid "Approve" -msgstr "" - -#: ../../mod/admin.php:756 -msgid "Deny" -msgstr "" - -#: ../../mod/admin.php:758 ../../mod/connedit.php:372 -#: ../../mod/connedit.php:515 -msgid "Block" -msgstr "" - -#: ../../mod/admin.php:759 ../../mod/connedit.php:372 -#: ../../mod/connedit.php:515 -msgid "Unblock" -msgstr "" - -#: ../../mod/admin.php:762 -msgid "Register date" -msgstr "" - -#: ../../mod/admin.php:762 -msgid "Last login" -msgstr "" - -#: ../../mod/admin.php:762 -msgid "Expires" -msgstr "" - -#: ../../mod/admin.php:762 -msgid "Service Class" -msgstr "" - -#: ../../mod/admin.php:764 +#: ../../mod/suggest.php:35 msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." msgstr "" -#: ../../mod/admin.php:765 +#: ../../mod/network.php:79 +msgid "No such group" +msgstr "" + +#: ../../mod/network.php:119 +msgid "Search Results For:" +msgstr "" + +#: ../../mod/network.php:173 +msgid "Collection is empty" +msgstr "" + +#: ../../mod/network.php:181 +msgid "Collection: " +msgstr "" + +#: ../../mod/network.php:194 +msgid "Connection: " +msgstr "" + +#: ../../mod/network.php:197 +msgid "Invalid connection." +msgstr "" + +#: ../../mod/siteinfo.php:57 +#, php-format +msgid "Version %s" +msgstr "" + +#: ../../mod/siteinfo.php:76 +msgid "Installed plugins/addons/apps:" +msgstr "" + +#: ../../mod/siteinfo.php:89 +msgid "No installed plugins/addons/apps" +msgstr "" + +#: ../../mod/siteinfo.php:97 +msgid "Red" +msgstr "" + +#: ../../mod/siteinfo.php:98 msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" +"This is a hub of the Red Matrix - a global cooperative network of " +"decentralised privacy enhanced websites." msgstr "" -#: ../../mod/admin.php:797 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channelss censored/uncensored" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:804 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:823 -msgid "Channel not found" +#: ../../mod/siteinfo.php:101 +msgid "Running at web location" msgstr "" -#: ../../mod/admin.php:834 -#, php-format -msgid "Channel '%s' deleted" -msgstr "" - -#: ../../mod/admin.php:844 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "" - -#: ../../mod/admin.php:844 -#, php-format -msgid "Channel '%s' censored" -msgstr "" - -#: ../../mod/admin.php:887 -msgid "Censor" -msgstr "" - -#: ../../mod/admin.php:888 -msgid "Uncensor" -msgstr "" - -#: ../../mod/admin.php:891 -msgid "UID" -msgstr "" - -#: ../../mod/admin.php:891 ../../mod/settings.php:517 -#: ../../mod/settings.php:543 -msgid "Name" -msgstr "" - -#: ../../mod/admin.php:891 ../../mod/profiles.php:337 -msgid "Address" -msgstr "" - -#: ../../mod/admin.php:893 +#: ../../mod/siteinfo.php:102 msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" +"Please visit GetZot.com to learn more " +"about the Red Matrix." msgstr "" -#: ../../mod/admin.php:894 +#: ../../mod/siteinfo.php:103 +msgid "Bug reports and issues: please visit" +msgstr "" + +#: ../../mod/siteinfo.php:106 msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" msgstr "" -#: ../../mod/admin.php:933 +#: ../../mod/siteinfo.php:108 +msgid "Site Administrators" +msgstr "" + +#: ../../mod/bookmarks.php:38 +msgid "Bookmark added" +msgstr "" + +#: ../../mod/bookmarks.php:58 +msgid "My Bookmarks" +msgstr "" + +#: ../../mod/bookmarks.php:69 +msgid "My Connections Bookmarks" +msgstr "" + +#: ../../mod/channel.php:25 ../../mod/chat.php:19 +msgid "You must be logged in to see this page." +msgstr "" + +#: ../../mod/channel.php:86 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "" + +#: ../../mod/pdledit.php:13 +msgid "Layout updated." +msgstr "" + +#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +msgid "Edit System Page Description" +msgstr "" + +#: ../../mod/pdledit.php:48 +msgid "Layout not found." +msgstr "" + +#: ../../mod/pdledit.php:54 +msgid "Module Name:" +msgstr "" + +#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59 +msgid "Layout Help" +msgstr "" + +#: ../../mod/oexchange.php:23 +msgid "Unable to find your hub." +msgstr "" + +#: ../../mod/oexchange.php:37 +msgid "Post successful." +msgstr "" + +#: ../../mod/subthread.php:103 #, php-format -msgid "Plugin %s disabled." +msgid "%1$s is following %2$s's %3$s" msgstr "" -#: ../../mod/admin.php:937 -#, php-format -msgid "Plugin %s enabled." +#: ../../mod/chanview.php:93 +msgid "toggle full screen mode" msgstr "" -#: ../../mod/admin.php:947 ../../mod/admin.php:1149 -msgid "Disable" +#: ../../mod/zfinger.php:23 +msgid "invalid target signature" msgstr "" -#: ../../mod/admin.php:949 ../../mod/admin.php:1151 -msgid "Enable" +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." msgstr "" -#: ../../mod/admin.php:975 ../../mod/admin.php:1180 -msgid "Toggle" +#: ../../mod/sources.php:45 +msgid "Source created." msgstr "" -#: ../../mod/admin.php:983 ../../mod/admin.php:1190 -msgid "Author: " +#: ../../mod/sources.php:57 +msgid "Source updated." msgstr "" -#: ../../mod/admin.php:984 ../../mod/admin.php:1191 -msgid "Maintainer: " +#: ../../mod/sources.php:82 +msgid "*" msgstr "" -#: ../../mod/admin.php:1113 -msgid "No themes found." +#: ../../mod/sources.php:89 +msgid "Manage remote sources of content for your channel." msgstr "" -#: ../../mod/admin.php:1172 -msgid "Screenshot" +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" msgstr "" -#: ../../mod/admin.php:1220 -msgid "[Experimental]" -msgstr "" - -#: ../../mod/admin.php:1221 -msgid "[Unsupported]" -msgstr "" - -#: ../../mod/admin.php:1248 -msgid "Log settings updated." -msgstr "" - -#: ../../mod/admin.php:1304 -msgid "Clear" -msgstr "" - -#: ../../mod/admin.php:1310 -msgid "Debugging" -msgstr "" - -#: ../../mod/admin.php:1311 -msgid "Log file" -msgstr "" - -#: ../../mod/admin.php:1311 +#: ../../mod/sources.php:101 ../../mod/sources.php:133 msgid "" -"Must be writable by web server. Relative to your Red top-level directory." +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." msgstr "" -#: ../../mod/admin.php:1312 -msgid "Log level" +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Only import content with these words (one per line)" msgstr "" -#: ../../mod/poke.php:159 -msgid "Poke/Prod" +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Leave blank to import all public content" msgstr "" -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" +#: ../../mod/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." msgstr "" -#: ../../mod/poke.php:161 -msgid "Recipient" +#: ../../mod/sources.php:130 +msgid "Edit Source" msgstr "" -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" +#: ../../mod/sources.php:131 +msgid "Delete Source" msgstr "" -#: ../../mod/poke.php:165 -msgid "Make this post private" +#: ../../mod/sources.php:158 +msgid "Source removed" msgstr "" -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" +#: ../../mod/sources.php:160 +msgid "Unable to remove source." msgstr "" -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." msgstr "" -#: ../../mod/api.php:89 -msgid "Please login to continue." +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" 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?" +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." msgstr "" -#: ../../mod/post.php:226 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please " -"logout and retry." +#: ../../mod/profperm.php:123 +msgid "Visible To" msgstr "" -#: ../../mod/post.php:257 ../../mod/openid.php:72 ../../mod/openid.php:178 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "" - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "" - -#: ../../mod/probe.php:23 ../../mod/probe.php:29 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "" - -#: ../../mod/block.php:27 ../../mod/page.php:35 -msgid "Invalid item." -msgstr "" - -#: ../../mod/block.php:39 ../../mod/chanview.php:77 ../../mod/page.php:47 -#: ../../mod/home.php:50 ../../mod/wall_upload.php:28 -msgid "Channel not found." -msgstr "" - -#: ../../mod/block.php:75 ../../mod/page.php:83 ../../mod/display.php:100 -#: ../../mod/help.php:72 ../../index.php:237 -msgid "Page not found." +#: ../../mod/profperm.php:139 ../../mod/connections.php:278 +msgid "All Connections" msgstr "" #: ../../mod/profile_photo.php:108 @@ -4234,701 +4212,111 @@ msgstr "" msgid "Block Name" msgstr "" -#: ../../mod/profiles.php:18 ../../mod/profiles.php:138 -#: ../../mod/profiles.php:168 ../../mod/profiles.php:463 -msgid "Profile not found." +#: ../../mod/post.php:226 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please " +"logout and retry." msgstr "" -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "" - -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "" - -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "" - -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "" - -#: ../../mod/profiles.php:178 -msgid "Profile Name is required." -msgstr "" - -#: ../../mod/profiles.php:294 -msgid "Marital Status" -msgstr "" - -#: ../../mod/profiles.php:298 -msgid "Romantic Partner" -msgstr "" - -#: ../../mod/profiles.php:310 -msgid "Work/Employment" -msgstr "" - -#: ../../mod/profiles.php:313 -msgid "Religion" -msgstr "" - -#: ../../mod/profiles.php:317 -msgid "Political Views" -msgstr "" - -#: ../../mod/profiles.php:321 -msgid "Gender" -msgstr "" - -#: ../../mod/profiles.php:325 -msgid "Sexual Preference" -msgstr "" - -#: ../../mod/profiles.php:329 -msgid "Homepage" -msgstr "" - -#: ../../mod/profiles.php:333 -msgid "Interests" -msgstr "" - -#: ../../mod/profiles.php:344 ../../mod/pubsites.php:25 -msgid "Location" -msgstr "" - -#: ../../mod/profiles.php:427 -msgid "Profile updated." -msgstr "" - -#: ../../mod/profiles.php:482 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "" - -#: ../../mod/profiles.php:505 -msgid "Edit Profile Details" -msgstr "" - -#: ../../mod/profiles.php:507 -msgid "View this profile" -msgstr "" - -#: ../../mod/profiles.php:508 -msgid "Change Profile Photo" -msgstr "" - -#: ../../mod/profiles.php:509 -msgid "Create a new profile using these settings" -msgstr "" - -#: ../../mod/profiles.php:510 -msgid "Clone this profile" -msgstr "" - -#: ../../mod/profiles.php:511 -msgid "Delete this profile" -msgstr "" - -#: ../../mod/profiles.php:512 -msgid "Profile Name:" -msgstr "" - -#: ../../mod/profiles.php:513 -msgid "Your Full Name:" -msgstr "" - -#: ../../mod/profiles.php:514 -msgid "Title/Description:" -msgstr "" - -#: ../../mod/profiles.php:515 -msgid "Your Gender:" -msgstr "" - -#: ../../mod/profiles.php:516 +#: ../../mod/post.php:257 ../../mod/openid.php:72 ../../mod/openid.php:178 #, php-format -msgid "Birthday (%s):" +msgid "Welcome %s. Remote authentication successful." msgstr "" -#: ../../mod/profiles.php:517 -msgid "Street Address:" +#: ../../mod/filestorage.php:68 +msgid "Permission Denied." msgstr "" -#: ../../mod/profiles.php:518 -msgid "Locality/City:" +#: ../../mod/filestorage.php:85 +msgid "File not found." msgstr "" -#: ../../mod/profiles.php:519 -msgid "Postal/Zip Code:" +#: ../../mod/filestorage.php:121 +msgid "Edit file permissions" msgstr "" -#: ../../mod/profiles.php:520 -msgid "Country:" +#: ../../mod/filestorage.php:129 +msgid "Set/edit permissions" msgstr "" -#: ../../mod/profiles.php:521 -msgid "Region/State:" +#: ../../mod/filestorage.php:130 +msgid "Include all files and sub folders" msgstr "" -#: ../../mod/profiles.php:522 -msgid " Marital Status:" +#: ../../mod/filestorage.php:131 +msgid "Return to file list" msgstr "" -#: ../../mod/profiles.php:523 -msgid "Who: (if applicable)" +#: ../../mod/filestorage.php:133 +msgid "Copy/paste this code to attach file to a post" msgstr "" -#: ../../mod/profiles.php:524 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +#: ../../mod/filestorage.php:134 +msgid "Copy/paste this URL to link file from a web page" msgstr "" -#: ../../mod/profiles.php:525 -msgid "Since [date]:" +#: ../../mod/filestorage.php:171 +msgid "Download" msgstr "" -#: ../../mod/profiles.php:527 -msgid "Homepage URL:" +#: ../../mod/filestorage.php:177 +msgid "Used: " msgstr "" -#: ../../mod/profiles.php:530 -msgid "Religious Views:" +#: ../../mod/filestorage.php:178 +msgid "[directory]" msgstr "" -#: ../../mod/profiles.php:531 -msgid "Keywords:" +#: ../../mod/filestorage.php:180 +msgid "Limit: " msgstr "" -#: ../../mod/profiles.php:534 -msgid "Example: fishing photography software" +#: ../../mod/lockview.php:30 ../../mod/lockview.php:36 +msgid "Remote privacy information not available." msgstr "" -#: ../../mod/profiles.php:535 -msgid "Used in directory listings" +#: ../../mod/lockview.php:45 +msgid "Visible to:" msgstr "" -#: ../../mod/profiles.php:536 -msgid "Tell us about yourself..." +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." msgstr "" -#: ../../mod/profiles.php:537 -msgid "Hobbies/Interests" +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." msgstr "" -#: ../../mod/profiles.php:538 -msgid "Contact information and Social Networks" +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" msgstr "" -#: ../../mod/profiles.php:539 -msgid "My other channels" -msgstr "" - -#: ../../mod/profiles.php:540 -msgid "Musical interests" -msgstr "" - -#: ../../mod/profiles.php:541 -msgid "Books, literature" -msgstr "" - -#: ../../mod/profiles.php:542 -msgid "Television" -msgstr "" - -#: ../../mod/profiles.php:543 -msgid "Film/dance/culture/entertainment" -msgstr "" - -#: ../../mod/profiles.php:544 -msgid "Love/romance" -msgstr "" - -#: ../../mod/profiles.php:545 -msgid "Work/employment" -msgstr "" - -#: ../../mod/profiles.php:546 -msgid "School/education" -msgstr "" - -#: ../../mod/profiles.php:551 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "" - -#: ../../mod/profiles.php:561 ../../mod/directory.php:143 -#: ../../mod/dirprofile.php:92 -msgid "Age: " -msgstr "" - -#: ../../mod/profiles.php:600 -msgid "Edit/Manage Profiles" -msgstr "" - -#: ../../mod/profiles.php:601 -msgid "Add profile things" -msgstr "" - -#: ../../mod/profiles.php:602 -msgid "Include desirable objects in your profile" -msgstr "" - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "" - -#: ../../mod/bookmarks.php:58 -msgid "My Bookmarks" -msgstr "" - -#: ../../mod/bookmarks.php:69 -msgid "My Connections Bookmarks" -msgstr "" - -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "" - -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "" - -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "" - -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "" - -#: ../../mod/profperm.php:139 ../../mod/connections.php:278 -msgid "All Connections" -msgstr "" - -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "" - -#: ../../mod/pubsites.php:19 -msgid "" -"The listed sites allow public registration into the Red Matrix. All sites in " -"the matrix are interlinked so membership on any of them conveys membership " -"in the matrix as a whole. Some sites may require subscription or provide " -"tiered service plans. The provider links may provide " -"additional details." -msgstr "" - -#: ../../mod/pubsites.php:25 -msgid "Site URL" -msgstr "" - -#: ../../mod/pubsites.php:25 -msgid "Access Type" -msgstr "" - -#: ../../mod/pubsites.php:25 -msgid "Registration Policy" -msgstr "" - -#: ../../mod/channel.php:25 ../../mod/chat.php:19 -msgid "You must be logged in to see this page." -msgstr "" - -#: ../../mod/channel.php:86 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "" - -#: ../../mod/chanview.php:93 -msgid "toggle full screen mode" -msgstr "" - -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "" - -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "" - -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "" - -#: ../../mod/rbmark.php:95 -msgid "Description" -msgstr "" - -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "" - -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "" - -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "" - -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "" - -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "" - -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "" - -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "" - -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "" - -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "" - -#: ../../mod/chat.php:225 +#: ../../mod/fsuggest.php:99 #, php-format -msgid "%1$s's Chatrooms" +msgid "Suggest a friend for %s" msgstr "" -#: ../../mod/register.php:43 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "" - -#: ../../mod/register.php:49 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "" - -#: ../../mod/register.php:77 -msgid "Passwords do not match." -msgstr "" - -#: ../../mod/register.php:105 -msgid "" -"Registration successful. Please check your email for validation instructions." -msgstr "" - -#: ../../mod/register.php:111 -msgid "Your registration is pending approval by the site owner." -msgstr "" - -#: ../../mod/register.php:114 -msgid "Your registration can not be processed." -msgstr "" - -#: ../../mod/register.php:147 -msgid "Registration on this site/hub is by approval only." -msgstr "" - -#: ../../mod/register.php:148 -msgid "Register at another affiliated site/hub" -msgstr "" - -#: ../../mod/register.php:156 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "" - -#: ../../mod/register.php:167 -msgid "Terms of Service" -msgstr "" - -#: ../../mod/register.php:173 +#: ../../mod/tagger.php:98 #, php-format -msgid "I accept the %s for this website" +msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" -#: ../../mod/register.php:175 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "" - -#: ../../mod/register.php:194 -msgid "Membership on this site is by invitation only." -msgstr "" - -#: ../../mod/register.php:195 -msgid "Please enter your invitation code" -msgstr "" - -#: ../../mod/register.php:198 -msgid "Your email address" -msgstr "" - -#: ../../mod/register.php:199 -msgid "Choose a password" -msgstr "" - -#: ../../mod/register.php:200 -msgid "Please re-enter your password" -msgstr "" - -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "" - -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "" - -#: ../../mod/regmod.php:12 -msgid "Please login." -msgstr "" - -#: ../../mod/cloud.php:112 -msgid "Red Matrix - Guests: Username: {your email address}, Password: +++" -msgstr "" - -#: ../../mod/removeme.php:49 -msgid "Remove This Channel" -msgstr "" - -#: ../../mod/removeme.php:50 -msgid "" -"This will completely remove this channel from the network. Once this has " -"been done it is not recoverable." -msgstr "" - -#: ../../mod/removeme.php:51 -msgid "Please enter your password for verification:" -msgstr "" - -#: ../../mod/removeme.php:52 -msgid "Remove this channel and all its clones from the network" -msgstr "" - -#: ../../mod/removeme.php:52 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "" - -#: ../../mod/removeme.php:53 -msgid "Remove Channel" -msgstr "" - -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "" - -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "" - -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "" - -#: ../../mod/rmagic.php:38 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "" - -#: ../../mod/rmagic.php:38 -msgid "The error message was:" -msgstr "" - -#: ../../mod/rmagic.php:42 -msgid "Authentication failed." -msgstr "" - -#: ../../mod/rmagic.php:78 -msgid "Remote Authentication" -msgstr "" - -#: ../../mod/rmagic.php:79 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "" - -#: ../../mod/rmagic.php:80 -msgid "Authenticate" -msgstr "" - -#: ../../mod/connect.php:55 ../../mod/connect.php:103 -msgid "Continue" -msgstr "" - -#: ../../mod/connect.php:84 -msgid "Premium Channel Setup" -msgstr "" - -#: ../../mod/connect.php:86 -msgid "Enable premium channel connection restrictions" -msgstr "" - -#: ../../mod/connect.php:87 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "" - -#: ../../mod/connect.php:89 ../../mod/connect.php:109 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "" - -#: ../../mod/connect.php:90 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "" - -#: ../../mod/connect.php:91 ../../mod/connect.php:112 -msgid "" -"By continuing, I certify that I have complied with any instructions provided " -"on this page." -msgstr "" - -#: ../../mod/connect.php:100 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "" - -#: ../../mod/connect.php:108 -msgid "Restricted or Premium Channel" -msgstr "" - -#: ../../mod/network.php:79 -msgid "No such group" -msgstr "" - -#: ../../mod/network.php:119 -msgid "Search Results For:" -msgstr "" - -#: ../../mod/network.php:173 -msgid "Collection is empty" -msgstr "" - -#: ../../mod/network.php:181 -msgid "Collection: " -msgstr "" - -#: ../../mod/network.php:194 -msgid "Connection: " -msgstr "" - -#: ../../mod/network.php:197 -msgid "Invalid connection." -msgstr "" - -#: ../../mod/connections.php:37 ../../mod/connedit.php:64 +#: ../../mod/connedit.php:64 ../../mod/connections.php:37 msgid "Could not access contact record." msgstr "" -#: ../../mod/connections.php:51 ../../mod/connedit.php:78 +#: ../../mod/connedit.php:78 ../../mod/connections.php:51 msgid "Could not locate selected profile." msgstr "" -#: ../../mod/connections.php:94 ../../mod/connedit.php:131 +#: ../../mod/connedit.php:131 ../../mod/connections.php:94 msgid "Connection updated." msgstr "" -#: ../../mod/connections.php:96 ../../mod/connedit.php:133 +#: ../../mod/connedit.php:133 ../../mod/connections.php:96 msgid "Failed to update connection record." msgstr "" -#: ../../mod/connections.php:191 ../../mod/connections.php:291 -msgid "Blocked" -msgstr "" - -#: ../../mod/connections.php:196 ../../mod/connections.php:298 -msgid "Ignored" -msgstr "" - -#: ../../mod/connections.php:201 ../../mod/connections.php:312 -msgid "Hidden" -msgstr "" - -#: ../../mod/connections.php:206 ../../mod/connections.php:305 -msgid "Archived" -msgstr "" - -#: ../../mod/connections.php:230 ../../mod/connections.php:244 -msgid "All" -msgstr "" - -#: ../../mod/connections.php:239 ../../mod/connections.php:319 -msgid "Unconnected" -msgstr "" - -#: ../../mod/connections.php:269 -msgid "Suggest new connections" -msgstr "" - -#: ../../mod/connections.php:272 -msgid "New Connections" -msgstr "" - -#: ../../mod/connections.php:275 -msgid "Show pending (new) connections" -msgstr "" - -#: ../../mod/connections.php:281 -msgid "Show all connections" -msgstr "" - -#: ../../mod/connections.php:284 -msgid "Unblocked" -msgstr "" - -#: ../../mod/connections.php:287 -msgid "Only show unblocked connections" -msgstr "" - -#: ../../mod/connections.php:294 -msgid "Only show blocked connections" -msgstr "" - -#: ../../mod/connections.php:301 -msgid "Only show ignored connections" -msgstr "" - -#: ../../mod/connections.php:308 -msgid "Only show archived connections" -msgstr "" - -#: ../../mod/connections.php:315 -msgid "Only show hidden connections" -msgstr "" - -#: ../../mod/connections.php:322 -msgid "Only show one-way connections" -msgstr "" - -#: ../../mod/connections.php:367 -#, php-format -msgid "%1$s [%2$s]" -msgstr "" - -#: ../../mod/connections.php:368 -msgid "Edit contact" -msgstr "" - -#: ../../mod/connections.php:389 -msgid "Search your connections" -msgstr "" - -#: ../../mod/connections.php:390 -msgid "Finding: " -msgstr "" - -#: ../../mod/rpost.php:86 ../../mod/editpost.php:42 -msgid "Edit post" -msgstr "" - #: ../../mod/connedit.php:243 msgid "Could not access address book record." msgstr "" @@ -5008,6 +4396,16 @@ msgstr "" msgid "View recent posts and comments" msgstr "" +#: ../../mod/connedit.php:372 ../../mod/connedit.php:515 +#: ../../mod/admin.php:759 +msgid "Unblock" +msgstr "" + +#: ../../mod/connedit.php:372 ../../mod/connedit.php:515 +#: ../../mod/admin.php:758 +msgid "Block" +msgstr "" + #: ../../mod/connedit.php:375 msgid "Block or Unblock this connection" msgstr "" @@ -5016,11 +4414,6 @@ msgstr "" msgid "Unignore" msgstr "" -#: ../../mod/connedit.php:379 ../../mod/connedit.php:516 -#: ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "" - #: ../../mod/connedit.php:382 msgid "Ignore or Unignore this connection" msgstr "" @@ -5053,10 +4446,6 @@ msgstr "" msgid "Delete this connection" msgstr "" -#: ../../mod/connedit.php:434 -msgid "Unknown" -msgstr "" - #: ../../mod/connedit.php:444 ../../mod/connedit.php:473 msgid "Approve this connection" msgstr "" @@ -5231,99 +4620,48 @@ msgid "" "Replies/likes to your public posts may still be visible" msgstr "" -#: ../../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:130 ../../mod/tagrm.php:93 ../../mod/photos.php:908 -msgid "Remove" -msgstr "" - -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "" - -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "" - -#: ../../mod/search.php:13 ../../mod/directory.php:15 -#: ../../mod/dirprofile.php:9 ../../mod/display.php:9 -#: ../../mod/viewconnections.php:17 ../../mod/photos.php:443 -msgid "Public access denied." -msgstr "" - -#: ../../mod/directory.php:146 ../../mod/dirprofile.php:95 -msgid "Gender: " -msgstr "" - -#: ../../mod/directory.php:207 -msgid "Finding:" -msgstr "" - -#: ../../mod/directory.php:215 -msgid "next page" -msgstr "" - -#: ../../mod/directory.php:215 -msgid "previous page" -msgstr "" - -#: ../../mod/directory.php:222 -msgid "No entries (some entries may be hidden)." -msgstr "" - -#: ../../mod/dirprofile.php:108 -msgid "Status: " -msgstr "" - -#: ../../mod/dirprofile.php:109 -msgid "Sexual Preference: " -msgstr "" - -#: ../../mod/dirprofile.php:111 -msgid "Homepage: " -msgstr "" - -#: ../../mod/dirprofile.php:112 -msgid "Hometown: " -msgstr "" - -#: ../../mod/dirprofile.php:114 -msgid "About: " -msgstr "" - -#: ../../mod/dirprofile.php:162 -msgid "Keywords: " -msgstr "" - #: ../../mod/dirsearch.php:21 msgid "This site is not a directory server" msgstr "" +#: ../../mod/rmagic.php:38 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "" + +#: ../../mod/rmagic.php:38 +msgid "The error message was:" +msgstr "" + +#: ../../mod/rmagic.php:42 +msgid "Authentication failed." +msgstr "" + +#: ../../mod/rmagic.php:78 +msgid "Remote Authentication" +msgstr "" + +#: ../../mod/rmagic.php:79 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "" + +#: ../../mod/rmagic.php:80 +msgid "Authenticate" +msgstr "" + +#: ../../mod/attach.php:9 +msgid "Item not available." +msgstr "" + +#: ../../mod/editpost.php:31 +msgid "Item is not editable" +msgstr "" + +#: ../../mod/editpost.php:53 +msgid "Delete item?" +msgstr "" + #: ../../mod/settings.php:71 msgid "Name is required" msgstr "" @@ -5332,10 +4670,6 @@ msgstr "" msgid "Key and Secret are required" msgstr "" -#: ../../mod/settings.php:79 ../../mod/settings.php:541 -msgid "Update" -msgstr "" - #: ../../mod/settings.php:195 msgid "Passwords do not match. Password unchanged." msgstr "" @@ -5373,6 +4707,11 @@ msgstr "" msgid "Add application" msgstr "" +#: ../../mod/settings.php:517 ../../mod/settings.php:543 +#: ../../mod/admin.php:891 +msgid "Name" +msgstr "" + #: ../../mod/settings.php:517 msgid "Name of application" msgstr "" @@ -5482,6 +4821,10 @@ msgstr "" msgid "Connector Settings" msgstr "" +#: ../../mod/settings.php:708 ../../mod/admin.php:389 +msgid "No special theme for mobile devices" +msgstr "" + #: ../../mod/settings.php:749 msgid "Display Settings" msgstr "" @@ -6133,137 +5476,6 @@ msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" -#: ../../mod/editblock.php:8 ../../mod/editblock.php:27 -#: ../../mod/editblock.php:53 ../../mod/editlayout.php:36 -#: ../../mod/editpost.php:20 ../../mod/editwebpage.php:32 -msgid "Item not found" -msgstr "" - -#: ../../mod/editblock.php:77 -msgid "Edit Block" -msgstr "" - -#: ../../mod/editblock.php:87 -msgid "Delete block?" -msgstr "" - -#: ../../mod/editblock.php:115 ../../mod/editlayout.php:110 -#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:147 -msgid "Insert YouTube video" -msgstr "" - -#: ../../mod/editblock.php:116 ../../mod/editlayout.php:111 -#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:148 -msgid "Insert Vorbis [.ogg] video" -msgstr "" - -#: ../../mod/editblock.php:117 ../../mod/editlayout.php:112 -#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:149 -msgid "Insert Vorbis [.ogg] audio" -msgstr "" - -#: ../../mod/editblock.php:153 -msgid "Delete Block" -msgstr "" - -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "" - -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "" - -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "" - -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "" - -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59 -msgid "Layout Help" -msgstr "" - -#: ../../mod/editlayout.php:72 -msgid "Edit Layout" -msgstr "" - -#: ../../mod/editlayout.php:82 -msgid "Delete layout?" -msgstr "" - -#: ../../mod/editlayout.php:146 -msgid "Delete Layout" -msgstr "" - -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "" - -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "" - -#: ../../mod/editwebpage.php:106 -msgid "Edit Webpage" -msgstr "" - -#: ../../mod/editwebpage.php:116 -msgid "Delete webpage?" -msgstr "" - -#: ../../mod/editwebpage.php:187 -msgid "Delete Webpage" -msgstr "" - -#: ../../mod/siteinfo.php:57 -#, php-format -msgid "Version %s" -msgstr "" - -#: ../../mod/siteinfo.php:76 -msgid "Installed plugins/addons/apps:" -msgstr "" - -#: ../../mod/siteinfo.php:89 -msgid "No installed plugins/addons/apps" -msgstr "" - -#: ../../mod/siteinfo.php:97 -msgid "Red" -msgstr "" - -#: ../../mod/siteinfo.php:98 -msgid "" -"This is a hub of the Red Matrix - a global cooperative network of " -"decentralised privacy enhanced websites." -msgstr "" - -#: ../../mod/siteinfo.php:101 -msgid "Running at web location" -msgstr "" - -#: ../../mod/siteinfo.php:102 -msgid "" -"Please visit GetZot.com to learn more " -"about the Red Matrix." -msgstr "" - -#: ../../mod/siteinfo.php:103 -msgid "Bug reports and issues: please visit" -msgstr "" - -#: ../../mod/siteinfo.php:106 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" -msgstr "" - -#: ../../mod/siteinfo.php:108 -msgid "Site Administrators" -msgstr "" - #: ../../mod/events.php:72 msgid "Event title and start time are required." msgstr "" @@ -6301,7 +5513,8 @@ msgstr "" msgid "Event Starts:" msgstr "" -#: ../../mod/events.php:462 ../../mod/events.php:476 +#: ../../mod/events.php:462 ../../mod/events.php:476 ../../mod/appman.php:83 +#: ../../mod/appman.php:84 msgid "Required" msgstr "" @@ -6329,843 +5542,6 @@ msgstr "" msgid "Share this event" msgstr "" -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "" - -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "" - -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "" - -#: ../../mod/sources.php:82 -msgid "*" -msgstr "" - -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "" - -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "" - -#: ../../mod/sources.php:101 ../../mod/sources.php:133 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "" - -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:110 -msgid "Channel Name" -msgstr "" - -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "" - -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "" - -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "" - -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "" - -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "" - -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "" - -#: ../../mod/filestorage.php:68 -msgid "Permission Denied." -msgstr "" - -#: ../../mod/filestorage.php:85 -msgid "File not found." -msgstr "" - -#: ../../mod/filestorage.php:121 -msgid "Edit file permissions" -msgstr "" - -#: ../../mod/filestorage.php:129 -msgid "Set/edit permissions" -msgstr "" - -#: ../../mod/filestorage.php:130 -msgid "Include all files and sub folders" -msgstr "" - -#: ../../mod/filestorage.php:131 -msgid "Return to file list" -msgstr "" - -#: ../../mod/filestorage.php:133 -msgid "Copy/paste this code to attach file to a post" -msgstr "" - -#: ../../mod/filestorage.php:134 -msgid "Copy/paste this URL to link file from a web page" -msgstr "" - -#: ../../mod/filestorage.php:171 -msgid "Download" -msgstr "" - -#: ../../mod/filestorage.php:177 -msgid "Used: " -msgstr "" - -#: ../../mod/filestorage.php:178 -msgid "[directory]" -msgstr "" - -#: ../../mod/filestorage.php:180 -msgid "Limit: " -msgstr "" - -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "" - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "" - -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "" - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "" - -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "" - -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "" - -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "" - -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "" - -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "" - -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "" - -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "" - -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "" - -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "" - -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "" - -#: ../../mod/group.php:196 -msgid "Members" -msgstr "" - -#: ../../mod/group.php:198 -msgid "All Connected Channels" -msgstr "" - -#: ../../mod/group.php:231 -msgid "Click on a channel to add or remove." -msgstr "" - -#: ../../mod/tagger.php:98 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "" - -#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55 -msgid "Help:" -msgstr "" - -#: ../../mod/help.php:69 ../../index.php:234 -msgid "Not Found" -msgstr "" - -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "" - -#: ../../mod/home.php:89 -#, php-format -msgid "Welcome to %s" -msgstr "" - -#: ../../mod/thing.php:98 -msgid "Thing updated" -msgstr "" - -#: ../../mod/thing.php:158 -msgid "Object store: failed" -msgstr "" - -#: ../../mod/thing.php:162 -msgid "Thing added" -msgstr "" - -#: ../../mod/thing.php:182 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "" - -#: ../../mod/thing.php:234 -msgid "Show Thing" -msgstr "" - -#: ../../mod/thing.php:241 -msgid "item not found." -msgstr "" - -#: ../../mod/thing.php:269 -msgid "Edit Thing" -msgstr "" - -#: ../../mod/thing.php:271 ../../mod/thing.php:318 -msgid "Select a profile" -msgstr "" - -#: ../../mod/thing.php:273 ../../mod/thing.php:320 -msgid "Select a category of stuff. e.g. I ______ something" -msgstr "" - -#: ../../mod/thing.php:275 ../../mod/thing.php:321 -msgid "Post an activity" -msgstr "" - -#: ../../mod/thing.php:275 ../../mod/thing.php:321 -msgid "Only sends to viewers of the applicable profile" -msgstr "" - -#: ../../mod/thing.php:277 ../../mod/thing.php:323 -msgid "Name of thing e.g. something" -msgstr "" - -#: ../../mod/thing.php:279 ../../mod/thing.php:324 -msgid "URL of thing (optional)" -msgstr "" - -#: ../../mod/thing.php:281 ../../mod/thing.php:325 -msgid "URL for photo of thing (optional)" -msgstr "" - -#: ../../mod/thing.php:316 -msgid "Add Thing to your Profile" -msgstr "" - -#: ../../mod/import.php:36 -msgid "Nothing to import." -msgstr "" - -#: ../../mod/import.php:58 -msgid "Unable to download data from old server" -msgstr "" - -#: ../../mod/import.php:64 -msgid "Imported file is empty." -msgstr "" - -#: ../../mod/import.php:88 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "" - -#: ../../mod/import.php:106 -msgid "Channel clone failed. Import failed." -msgstr "" - -#: ../../mod/import.php:116 -msgid "Cloned channel not found. Import failed." -msgstr "" - -#: ../../mod/import.php:358 -msgid "Import completed." -msgstr "" - -#: ../../mod/import.php:371 -msgid "You must be logged in to use this feature." -msgstr "" - -#: ../../mod/import.php:376 -msgid "Import Channel" -msgstr "" - -#: ../../mod/import.php:377 -msgid "" -"Use this form to import an existing channel from a different server/hub. You " -"may retrieve the channel identity from the old server/hub via the network or " -"provide an export file. Only identity and connections/relationships will be " -"imported. Importation of content is not yet available." -msgstr "" - -#: ../../mod/import.php:378 -msgid "File to Upload" -msgstr "" - -#: ../../mod/import.php:379 -msgid "Or provide the old server/hub details" -msgstr "" - -#: ../../mod/import.php:380 -msgid "Your old identity address (xyz@example.com)" -msgstr "" - -#: ../../mod/import.php:381 -msgid "Your old login email address" -msgstr "" - -#: ../../mod/import.php:382 -msgid "Your old login password" -msgstr "" - -#: ../../mod/import.php:383 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be " -"able to post from either location, but only one can be marked as the primary " -"location for files, photos, and media." -msgstr "" - -#: ../../mod/import.php:384 -msgid "Make this hub my primary location" -msgstr "" - -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "" - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "" - -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "" - -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "" - -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "" - -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "" - -#: ../../mod/invite.php:141 -msgid "Send invitations" -msgstr "" - -#: ../../mod/invite.php:142 -msgid "Enter email addresses, one per line:" -msgstr "" - -#: ../../mod/invite.php:143 ../../mod/mail.php:216 ../../mod/mail.php:328 -msgid "Your message:" -msgstr "" - -#: ../../mod/invite.php:144 -msgid "" -"You are cordially invited to join me and some other close friends on the Red " -"Matrix - a revolutionary new decentralised communication and information " -"tool." -msgstr "" - -#: ../../mod/invite.php:146 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "" - -#: ../../mod/invite.php:147 -msgid "Please visit my channel at" -msgstr "" - -#: ../../mod/invite.php:151 -msgid "" -"Once you have registered (on ANY Red Matrix site - they are all inter-" -"connected), please connect with my Red Matrix channel address:" -msgstr "" - -#: ../../mod/invite.php:153 -msgid "Click the [Register] link on the following page to join." -msgstr "" - -#: ../../mod/invite.php:155 -msgid "" -"For more information about the Red Matrix Project and why it has the " -"potential to change the internet as we know it, please visit http://getzot." -"com" -msgstr "" - -#: ../../mod/item.php:147 -msgid "Unable to locate original post." -msgstr "" - -#: ../../mod/item.php:352 -msgid "Empty post discarded." -msgstr "" - -#: ../../mod/item.php:392 -msgid "Executable content type not permitted to this channel." -msgstr "" - -#: ../../mod/item.php:806 -msgid "System error. Post not saved." -msgstr "" - -#: ../../mod/item.php:1249 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "" - -#: ../../mod/item.php:1255 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "" - -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 -msgid "[Embedded content - reload page to view]" -msgstr "" - -#: ../../mod/layouts.php:62 -msgid "Help with this feature" -msgstr "" - -#: ../../mod/layouts.php:84 -msgid "Layout Name" -msgstr "" - -#: ../../mod/lockview.php:30 ../../mod/lockview.php:36 -msgid "Remote privacy information not available." -msgstr "" - -#: ../../mod/lockview.php:45 -msgid "Visible to:" -msgstr "" - -#: ../../mod/viewconnections.php:58 -msgid "No connections." -msgstr "" - -#: ../../mod/viewconnections.php:70 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "" - -#: ../../mod/viewconnections.php:85 -msgid "View Connnections" -msgstr "" - -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "" - -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "" - -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 -#, php-format -msgid "Site Member (%s)" -msgstr "" - -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "" - -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "" - -#: ../../mod/lostpass.php:85 ../../boot.php:1462 -msgid "Password Reset" -msgstr "" - -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." -msgstr "" - -#: ../../mod/lostpass.php:87 -msgid "Your new password is" -msgstr "" - -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" -msgstr "" - -#: ../../mod/lostpass.php:89 -msgid "click here to login" -msgstr "" - -#: ../../mod/lostpass.php:90 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "" - -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has changed at %s" -msgstr "" - -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "" - -#: ../../mod/lostpass.php:123 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "" - -#: ../../mod/lostpass.php:124 -msgid "Email Address" -msgstr "" - -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "" - -#: ../../mod/magic.php:70 -msgid "Hub not found." -msgstr "" - -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "" - -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "" - -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "" - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "" - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "" - -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "" - -#: ../../mod/mail.php:121 ../../mod/message.php:31 -msgid "Messages" -msgstr "" - -#: ../../mod/mail.php:132 -msgid "Message deleted." -msgstr "" - -#: ../../mod/mail.php:149 -msgid "Message recalled." -msgstr "" - -#: ../../mod/mail.php:206 -msgid "Send Private Message" -msgstr "" - -#: ../../mod/mail.php:207 ../../mod/mail.php:323 -msgid "To:" -msgstr "" - -#: ../../mod/mail.php:212 ../../mod/mail.php:325 -msgid "Subject:" -msgstr "" - -#: ../../mod/mail.php:249 -msgid "Message not found." -msgstr "" - -#: ../../mod/mail.php:292 ../../mod/message.php:72 -msgid "Delete message" -msgstr "" - -#: ../../mod/mail.php:293 -msgid "Recall message" -msgstr "" - -#: ../../mod/mail.php:295 -msgid "Message has been recalled." -msgstr "" - -#: ../../mod/mail.php:312 -msgid "Private Conversation" -msgstr "" - -#: ../../mod/mail.php:316 -msgid "Delete conversation" -msgstr "" - -#: ../../mod/mail.php:318 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "" - -#: ../../mod/mail.php:322 -msgid "Send Reply" -msgstr "" - -#: ../../mod/manage.php:64 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "" - -#: ../../mod/manage.php:72 -msgid "Create a new channel" -msgstr "" - -#: ../../mod/manage.php:77 -msgid "Channel Manager" -msgstr "" - -#: ../../mod/manage.php:78 -msgid "Current Channel" -msgstr "" - -#: ../../mod/manage.php:80 -msgid "Attach to one of your channels by selecting it." -msgstr "" - -#: ../../mod/manage.php:81 -msgid "Default Channel" -msgstr "" - -#: ../../mod/manage.php:82 -msgid "Make Default" -msgstr "" - -#: ../../mod/wall_upload.php:34 -msgid "Wall Photos" -msgstr "" - -#: ../../mod/match.php:16 -msgid "Profile Match" -msgstr "" - -#: ../../mod/match.php:24 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "" - -#: ../../mod/match.php:61 -msgid "is interested in:" -msgstr "" - -#: ../../mod/match.php:69 -msgid "No matches" -msgstr "" - -#: ../../mod/menu.php:21 -msgid "Menu updated." -msgstr "" - -#: ../../mod/menu.php:25 -msgid "Unable to update menu." -msgstr "" - -#: ../../mod/menu.php:30 -msgid "Menu created." -msgstr "" - -#: ../../mod/menu.php:34 -msgid "Unable to create menu." -msgstr "" - -#: ../../mod/menu.php:57 -msgid "Manage Menus" -msgstr "" - -#: ../../mod/menu.php:60 -msgid "Drop" -msgstr "" - -#: ../../mod/menu.php:62 -msgid "Create a new menu" -msgstr "" - -#: ../../mod/menu.php:63 -msgid "Delete this menu" -msgstr "" - -#: ../../mod/menu.php:64 ../../mod/menu.php:109 -msgid "Edit menu contents" -msgstr "" - -#: ../../mod/menu.php:65 -msgid "Edit this menu" -msgstr "" - -#: ../../mod/menu.php:80 -msgid "New Menu" -msgstr "" - -#: ../../mod/menu.php:81 ../../mod/menu.php:110 -msgid "Menu name" -msgstr "" - -#: ../../mod/menu.php:81 ../../mod/menu.php:110 -msgid "Must be unique, only seen by you" -msgstr "" - -#: ../../mod/menu.php:82 ../../mod/menu.php:111 -msgid "Menu title" -msgstr "" - -#: ../../mod/menu.php:82 ../../mod/menu.php:111 -msgid "Menu title as seen by others" -msgstr "" - -#: ../../mod/menu.php:83 ../../mod/menu.php:112 -msgid "Allow bookmarks" -msgstr "" - -#: ../../mod/menu.php:83 ../../mod/menu.php:112 -msgid "Menu may be used to store saved bookmarks" -msgstr "" - -#: ../../mod/menu.php:98 -msgid "Menu deleted." -msgstr "" - -#: ../../mod/menu.php:100 -msgid "Menu could not be deleted." -msgstr "" - -#: ../../mod/menu.php:106 -msgid "Edit Menu" -msgstr "" - -#: ../../mod/menu.php:108 -msgid "Add or remove entries to this menu" -msgstr "" - -#: ../../mod/message.php:41 -msgid "Conversation removed." -msgstr "" - -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "" - -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "" - -#: ../../mod/new_channel.php:107 -msgid "Add a Channel" -msgstr "" - -#: ../../mod/new_channel.php:108 -msgid "" -"A channel is your own collection of related web pages. A channel can be used " -"to hold social network profiles, blogs, conversation groups and forums, " -"celebrity pages, and much more. You may create as many channels as your " -"service provider allows." -msgstr "" - -#: ../../mod/new_channel.php:111 -msgid "" -"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " -"Group\" " -msgstr "" - -#: ../../mod/new_channel.php:112 -msgid "Choose a short nickname" -msgstr "" - -#: ../../mod/new_channel.php:113 -msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." -msgstr "" - -#: ../../mod/new_channel.php:114 -msgid "" -"Or import an existing channel from another location" -msgstr "" - #: ../../mod/photos.php:77 msgid "Page owner information could not be retrieved." msgstr "" @@ -7293,199 +5669,1767 @@ msgstr "" msgid "Recent Photos" msgstr "" -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." +#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55 +msgid "Help:" msgstr "" -#: ../../mod/notifications.php:35 -msgid "Discard" +#: ../../mod/help.php:69 ../../index.php:234 +msgid "Not Found" msgstr "" -#: ../../mod/notifications.php:94 ../../mod/notify.php:54 -msgid "No more system notifications." +#: ../../mod/ping.php:192 +msgid "sent you a private message" msgstr "" -#: ../../mod/notifications.php:98 ../../mod/notify.php:58 -msgid "System Notifications" +#: ../../mod/ping.php:250 +msgid "added your channel" msgstr "" -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." +#: ../../mod/ping.php:294 +msgid "posted an event" msgstr "" -#: ../../mod/oexchange.php:37 -msgid "Post successful." +#: ../../mod/lostpass.php:15 +msgid "No valid account found." msgstr "" -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" +#: ../../mod/lostpass.php:29 +msgid "Password reset request issued. Check your email." +msgstr "" + +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#, php-format +msgid "Site Member (%s)" +msgstr "" + +#: ../../mod/lostpass.php:40 +#, php-format +msgid "Password reset requested at %s" +msgstr "" + +#: ../../mod/lostpass.php:63 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "" + +#: ../../mod/lostpass.php:85 ../../boot.php:1461 +msgid "Password Reset" +msgstr "" + +#: ../../mod/lostpass.php:86 +msgid "Your password has been reset as requested." +msgstr "" + +#: ../../mod/lostpass.php:87 +msgid "Your new password is" +msgstr "" + +#: ../../mod/lostpass.php:88 +msgid "Save or copy your new password - and then" +msgstr "" + +#: ../../mod/lostpass.php:89 +msgid "click here to login" +msgstr "" + +#: ../../mod/lostpass.php:90 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "" + +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has changed at %s" +msgstr "" + +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "" + +#: ../../mod/lostpass.php:123 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "" + +#: ../../mod/lostpass.php:124 +msgid "Email Address" +msgstr "" + +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "" + +#: ../../mod/removeme.php:49 +msgid "Remove This Channel" +msgstr "" + +#: ../../mod/removeme.php:50 +msgid "" +"This will completely remove this channel from the network. Once this has " +"been done it is not recoverable." +msgstr "" + +#: ../../mod/removeme.php:51 +msgid "Please enter your password for verification:" +msgstr "" + +#: ../../mod/removeme.php:52 +msgid "Remove this channel and all its clones from the network" +msgstr "" + +#: ../../mod/removeme.php:52 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "" + +#: ../../mod/removeme.php:53 +msgid "Remove Channel" +msgstr "" + +#: ../../mod/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/layouts.php:62 +msgid "Help with this feature" +msgstr "" + +#: ../../mod/layouts.php:84 +msgid "Layout Name" +msgstr "" + +#: ../../mod/connections.php:191 ../../mod/connections.php:291 +msgid "Blocked" +msgstr "" + +#: ../../mod/connections.php:196 ../../mod/connections.php:298 +msgid "Ignored" +msgstr "" + +#: ../../mod/connections.php:201 ../../mod/connections.php:312 +msgid "Hidden" +msgstr "" + +#: ../../mod/connections.php:206 ../../mod/connections.php:305 +msgid "Archived" +msgstr "" + +#: ../../mod/connections.php:230 ../../mod/connections.php:244 +msgid "All" +msgstr "" + +#: ../../mod/connections.php:239 ../../mod/connections.php:319 +msgid "Unconnected" +msgstr "" + +#: ../../mod/connections.php:269 +msgid "Suggest new connections" +msgstr "" + +#: ../../mod/connections.php:272 +msgid "New Connections" +msgstr "" + +#: ../../mod/connections.php:275 +msgid "Show pending (new) connections" +msgstr "" + +#: ../../mod/connections.php:281 +msgid "Show all connections" +msgstr "" + +#: ../../mod/connections.php:284 +msgid "Unblocked" +msgstr "" + +#: ../../mod/connections.php:287 +msgid "Only show unblocked connections" +msgstr "" + +#: ../../mod/connections.php:294 +msgid "Only show blocked connections" +msgstr "" + +#: ../../mod/connections.php:301 +msgid "Only show ignored connections" +msgstr "" + +#: ../../mod/connections.php:308 +msgid "Only show archived connections" +msgstr "" + +#: ../../mod/connections.php:315 +msgid "Only show hidden connections" +msgstr "" + +#: ../../mod/connections.php:322 +msgid "Only show one-way connections" +msgstr "" + +#: ../../mod/connections.php:367 +#, php-format +msgid "%1$s [%2$s]" +msgstr "" + +#: ../../mod/connections.php:368 +msgid "Edit contact" +msgstr "" + +#: ../../mod/connections.php:389 +msgid "Search your connections" +msgstr "" + +#: ../../mod/connections.php:390 +msgid "Finding: " +msgstr "" + +#: ../../mod/import.php:36 +msgid "Nothing to import." +msgstr "" + +#: ../../mod/import.php:58 +msgid "Unable to download data from old server" +msgstr "" + +#: ../../mod/import.php:64 +msgid "Imported file is empty." +msgstr "" + +#: ../../mod/import.php:88 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "" + +#: ../../mod/import.php:106 +msgid "Channel clone failed. Import failed." +msgstr "" + +#: ../../mod/import.php:116 +msgid "Cloned channel not found. Import failed." +msgstr "" + +#: ../../mod/import.php:358 +msgid "Import completed." +msgstr "" + +#: ../../mod/import.php:371 +msgid "You must be logged in to use this feature." +msgstr "" + +#: ../../mod/import.php:376 +msgid "Import Channel" +msgstr "" + +#: ../../mod/import.php:377 +msgid "" +"Use this form to import an existing channel from a different server/hub. You " +"may retrieve the channel identity from the old server/hub via the network or " +"provide an export file. Only identity and connections/relationships will be " +"imported. Importation of content is not yet available." +msgstr "" + +#: ../../mod/import.php:378 +msgid "File to Upload" +msgstr "" + +#: ../../mod/import.php:379 +msgid "Or provide the old server/hub details" +msgstr "" + +#: ../../mod/import.php:380 +msgid "Your old identity address (xyz@example.com)" +msgstr "" + +#: ../../mod/import.php:381 +msgid "Your old login email address" +msgstr "" + +#: ../../mod/import.php:382 +msgid "Your old login password" +msgstr "" + +#: ../../mod/import.php:383 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be " +"able to post from either location, but only one can be marked as the primary " +"location for files, photos, and media." +msgstr "" + +#: ../../mod/import.php:384 +msgid "Make this hub my primary location" +msgstr "" + +#: ../../mod/mood.php:138 +msgid "Mood" +msgstr "" + +#: ../../mod/mood.php:139 +msgid "Set your current mood and tell your friends" +msgstr "" + +#: ../../mod/chat.php:167 +msgid "Room not found" +msgstr "" + +#: ../../mod/chat.php:178 +msgid "Leave Room" +msgstr "" + +#: ../../mod/chat.php:179 +msgid "Delete This Room" +msgstr "" + +#: ../../mod/chat.php:180 +msgid "I am away right now" +msgstr "" + +#: ../../mod/chat.php:181 +msgid "I am online" +msgstr "" + +#: ../../mod/chat.php:183 +msgid "Bookmark this room" +msgstr "" + +#: ../../mod/chat.php:207 ../../mod/chat.php:229 +msgid "New Chatroom" +msgstr "" + +#: ../../mod/chat.php:208 +msgid "Chatroom Name" +msgstr "" + +#: ../../mod/chat.php:225 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "" + +#: ../../mod/editblock.php:77 +msgid "Edit Block" +msgstr "" + +#: ../../mod/editblock.php:87 +msgid "Delete block?" +msgstr "" + +#: ../../mod/editblock.php:153 +msgid "Delete Block" +msgstr "" + +#: ../../mod/match.php:16 +msgid "Profile Match" +msgstr "" + +#: ../../mod/match.php:24 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "" + +#: ../../mod/match.php:61 +msgid "is interested in:" +msgstr "" + +#: ../../mod/match.php:69 +msgid "No matches" +msgstr "" + +#: ../../mod/chatsvc.php:111 +msgid "Away" +msgstr "" + +#: ../../mod/chatsvc.php:115 +msgid "Online" +msgstr "" + +#: ../../mod/editwebpage.php:106 +msgid "Edit Webpage" +msgstr "" + +#: ../../mod/editwebpage.php:116 +msgid "Delete webpage?" +msgstr "" + +#: ../../mod/editwebpage.php:187 +msgid "Delete Webpage" +msgstr "" + +#: ../../mod/profiles.php:18 ../../mod/profiles.php:138 +#: ../../mod/profiles.php:168 ../../mod/profiles.php:463 +msgid "Profile not found." +msgstr "" + +#: ../../mod/profiles.php:38 +msgid "Profile deleted." +msgstr "" + +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" +msgstr "" + +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." +msgstr "" + +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." +msgstr "" + +#: ../../mod/profiles.php:178 +msgid "Profile Name is required." +msgstr "" + +#: ../../mod/profiles.php:294 +msgid "Marital Status" +msgstr "" + +#: ../../mod/profiles.php:298 +msgid "Romantic Partner" +msgstr "" + +#: ../../mod/profiles.php:302 +msgid "Likes" +msgstr "" + +#: ../../mod/profiles.php:306 +msgid "Dislikes" +msgstr "" + +#: ../../mod/profiles.php:310 +msgid "Work/Employment" +msgstr "" + +#: ../../mod/profiles.php:313 +msgid "Religion" +msgstr "" + +#: ../../mod/profiles.php:317 +msgid "Political Views" +msgstr "" + +#: ../../mod/profiles.php:321 +msgid "Gender" +msgstr "" + +#: ../../mod/profiles.php:325 +msgid "Sexual Preference" +msgstr "" + +#: ../../mod/profiles.php:329 +msgid "Homepage" +msgstr "" + +#: ../../mod/profiles.php:333 +msgid "Interests" +msgstr "" + +#: ../../mod/profiles.php:337 ../../mod/admin.php:891 +msgid "Address" +msgstr "" + +#: ../../mod/profiles.php:427 +msgid "Profile updated." +msgstr "" + +#: ../../mod/profiles.php:482 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "" + +#: ../../mod/profiles.php:505 +msgid "Edit Profile Details" +msgstr "" + +#: ../../mod/profiles.php:507 +msgid "View this profile" +msgstr "" + +#: ../../mod/profiles.php:508 +msgid "Change Profile Photo" +msgstr "" + +#: ../../mod/profiles.php:509 +msgid "Create a new profile using these settings" +msgstr "" + +#: ../../mod/profiles.php:510 +msgid "Clone this profile" +msgstr "" + +#: ../../mod/profiles.php:511 +msgid "Delete this profile" +msgstr "" + +#: ../../mod/profiles.php:512 +msgid "Profile Name:" +msgstr "" + +#: ../../mod/profiles.php:513 +msgid "Your Full Name:" +msgstr "" + +#: ../../mod/profiles.php:514 +msgid "Title/Description:" +msgstr "" + +#: ../../mod/profiles.php:515 +msgid "Your Gender:" +msgstr "" + +#: ../../mod/profiles.php:516 +#, php-format +msgid "Birthday (%s):" +msgstr "" + +#: ../../mod/profiles.php:517 +msgid "Street Address:" +msgstr "" + +#: ../../mod/profiles.php:518 +msgid "Locality/City:" +msgstr "" + +#: ../../mod/profiles.php:519 +msgid "Postal/Zip Code:" +msgstr "" + +#: ../../mod/profiles.php:520 +msgid "Country:" +msgstr "" + +#: ../../mod/profiles.php:521 +msgid "Region/State:" +msgstr "" + +#: ../../mod/profiles.php:522 +msgid " Marital Status:" +msgstr "" + +#: ../../mod/profiles.php:523 +msgid "Who: (if applicable)" +msgstr "" + +#: ../../mod/profiles.php:524 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "" + +#: ../../mod/profiles.php:525 +msgid "Since [date]:" +msgstr "" + +#: ../../mod/profiles.php:527 +msgid "Homepage URL:" +msgstr "" + +#: ../../mod/profiles.php:530 +msgid "Religious Views:" +msgstr "" + +#: ../../mod/profiles.php:531 +msgid "Keywords:" +msgstr "" + +#: ../../mod/profiles.php:534 +msgid "Example: fishing photography software" +msgstr "" + +#: ../../mod/profiles.php:535 +msgid "Used in directory listings" +msgstr "" + +#: ../../mod/profiles.php:536 +msgid "Tell us about yourself..." +msgstr "" + +#: ../../mod/profiles.php:537 +msgid "Hobbies/Interests" +msgstr "" + +#: ../../mod/profiles.php:538 +msgid "Contact information and Social Networks" +msgstr "" + +#: ../../mod/profiles.php:539 +msgid "My other channels" +msgstr "" + +#: ../../mod/profiles.php:540 +msgid "Musical interests" +msgstr "" + +#: ../../mod/profiles.php:541 +msgid "Books, literature" +msgstr "" + +#: ../../mod/profiles.php:542 +msgid "Television" +msgstr "" + +#: ../../mod/profiles.php:543 +msgid "Film/dance/culture/entertainment" +msgstr "" + +#: ../../mod/profiles.php:544 +msgid "Love/romance" +msgstr "" + +#: ../../mod/profiles.php:545 +msgid "Work/employment" +msgstr "" + +#: ../../mod/profiles.php:546 +msgid "School/education" +msgstr "" + +#: ../../mod/profiles.php:551 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "" + +#: ../../mod/profiles.php:600 +msgid "Edit/Manage Profiles" +msgstr "" + +#: ../../mod/profiles.php:601 +msgid "Add profile things" +msgstr "" + +#: ../../mod/profiles.php:602 +msgid "Include desirable objects in your profile" +msgstr "" + +#: ../../mod/menu.php:21 +msgid "Menu updated." +msgstr "" + +#: ../../mod/menu.php:25 +msgid "Unable to update menu." +msgstr "" + +#: ../../mod/menu.php:30 +msgid "Menu created." +msgstr "" + +#: ../../mod/menu.php:34 +msgid "Unable to create menu." +msgstr "" + +#: ../../mod/menu.php:57 +msgid "Manage Menus" +msgstr "" + +#: ../../mod/menu.php:60 +msgid "Drop" +msgstr "" + +#: ../../mod/menu.php:62 +msgid "Create a new menu" +msgstr "" + +#: ../../mod/menu.php:63 +msgid "Delete this menu" +msgstr "" + +#: ../../mod/menu.php:64 ../../mod/menu.php:109 +msgid "Edit menu contents" +msgstr "" + +#: ../../mod/menu.php:65 +msgid "Edit this menu" +msgstr "" + +#: ../../mod/menu.php:80 +msgid "New Menu" +msgstr "" + +#: ../../mod/menu.php:81 ../../mod/menu.php:110 +msgid "Menu name" +msgstr "" + +#: ../../mod/menu.php:81 ../../mod/menu.php:110 +msgid "Must be unique, only seen by you" +msgstr "" + +#: ../../mod/menu.php:82 ../../mod/menu.php:111 +msgid "Menu title" +msgstr "" + +#: ../../mod/menu.php:82 ../../mod/menu.php:111 +msgid "Menu title as seen by others" +msgstr "" + +#: ../../mod/menu.php:83 ../../mod/menu.php:112 +msgid "Allow bookmarks" +msgstr "" + +#: ../../mod/menu.php:83 ../../mod/menu.php:112 +msgid "Menu may be used to store saved bookmarks" +msgstr "" + +#: ../../mod/menu.php:98 +msgid "Menu deleted." +msgstr "" + +#: ../../mod/menu.php:100 +msgid "Menu could not be deleted." +msgstr "" + +#: ../../mod/menu.php:106 +msgid "Edit Menu" +msgstr "" + +#: ../../mod/menu.php:108 +msgid "Add or remove entries to this menu" msgstr "" #: ../../mod/openid.php:26 msgid "OpenID protocol error. No ID returned." msgstr "" -#: ../../view/theme/apw/php/config.php:202 -#: ../../view/theme/apw/php/config.php:236 -msgid "Schema Default" +#: ../../mod/cloud.php:112 +msgid "Red Matrix - Guests: Username: {your email address}, Password: +++" msgstr "" -#: ../../view/theme/apw/php/config.php:203 -msgid "Sans-Serif" +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." msgstr "" -#: ../../view/theme/apw/php/config.php:204 -msgid "Monospace" +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." +msgstr "" + +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." +msgstr "" + +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "" + +#: ../../mod/mail.php:132 +msgid "Message deleted." +msgstr "" + +#: ../../mod/mail.php:149 +msgid "Message recalled." +msgstr "" + +#: ../../mod/mail.php:206 +msgid "Send Private Message" +msgstr "" + +#: ../../mod/mail.php:207 ../../mod/mail.php:323 +msgid "To:" +msgstr "" + +#: ../../mod/mail.php:212 ../../mod/mail.php:325 +msgid "Subject:" +msgstr "" + +#: ../../mod/mail.php:216 ../../mod/mail.php:328 ../../mod/invite.php:143 +msgid "Your message:" +msgstr "" + +#: ../../mod/mail.php:249 +msgid "Message not found." +msgstr "" + +#: ../../mod/mail.php:293 +msgid "Recall message" +msgstr "" + +#: ../../mod/mail.php:295 +msgid "Message has been recalled." +msgstr "" + +#: ../../mod/mail.php:312 +msgid "Private Conversation" +msgstr "" + +#: ../../mod/mail.php:316 +msgid "Delete conversation" +msgstr "" + +#: ../../mod/mail.php:318 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "" + +#: ../../mod/mail.php:322 +msgid "Send Reply" +msgstr "" + +#: ../../mod/appman.php:27 +msgid "App installed." +msgstr "" + +#: ../../mod/appman.php:35 +msgid "Malformed app." +msgstr "" + +#: ../../mod/appman.php:72 +msgid "Embed code" +msgstr "" + +#: ../../mod/appman.php:78 +msgid "Create App" +msgstr "" + +#: ../../mod/appman.php:83 +msgid "Name of app" +msgstr "" + +#: ../../mod/appman.php:84 +msgid "Location (URL) of app" +msgstr "" + +#: ../../mod/appman.php:85 ../../mod/rbmark.php:95 +msgid "Description" +msgstr "" + +#: ../../mod/appman.php:86 +msgid "Photo icon URL" +msgstr "" + +#: ../../mod/appman.php:86 +msgid "80 x 80 pixels - optional" +msgstr "" + +#: ../../mod/appman.php:87 +msgid "Version ID" +msgstr "" + +#: ../../mod/appman.php:88 +msgid "Price of app" +msgstr "" + +#: ../../mod/appman.php:89 +msgid "Location (URL) to purchase app" +msgstr "" + +#: ../../mod/poke.php:159 +msgid "Poke/Prod" +msgstr "" + +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" +msgstr "" + +#: ../../mod/poke.php:161 +msgid "Recipient" +msgstr "" + +#: ../../mod/poke.php:162 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: ../../mod/poke.php:165 +msgid "Make this post private" +msgstr "" + +#: ../../mod/viewconnections.php:58 +msgid "No connections." +msgstr "" + +#: ../../mod/viewconnections.php:70 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "" + +#: ../../mod/viewconnections.php:85 +msgid "View Connnections" +msgstr "" + +#: ../../mod/admin.php:52 +msgid "Theme settings updated." +msgstr "" + +#: ../../mod/admin.php:92 ../../mod/admin.php:440 +msgid "Site" +msgstr "" + +#: ../../mod/admin.php:93 +msgid "Accounts" +msgstr "" + +#: ../../mod/admin.php:94 ../../mod/admin.php:883 +msgid "Channels" +msgstr "" + +#: ../../mod/admin.php:95 ../../mod/admin.php:974 ../../mod/admin.php:1016 +msgid "Plugins" +msgstr "" + +#: ../../mod/admin.php:96 ../../mod/admin.php:1179 ../../mod/admin.php:1215 +msgid "Themes" +msgstr "" + +#: ../../mod/admin.php:97 ../../mod/admin.php:540 +msgid "Server" +msgstr "" + +#: ../../mod/admin.php:98 +msgid "DB updates" +msgstr "" + +#: ../../mod/admin.php:112 ../../mod/admin.php:119 ../../mod/admin.php:1302 +msgid "Logs" +msgstr "" + +#: ../../mod/admin.php:118 +msgid "Plugin Features" +msgstr "" + +#: ../../mod/admin.php:120 +msgid "User registrations waiting for confirmation" +msgstr "" + +#: ../../mod/admin.php:197 +msgid "Message queues" +msgstr "" + +#: ../../mod/admin.php:202 ../../mod/admin.php:439 ../../mod/admin.php:539 +#: ../../mod/admin.php:748 ../../mod/admin.php:882 ../../mod/admin.php:973 +#: ../../mod/admin.php:1015 ../../mod/admin.php:1178 ../../mod/admin.php:1214 +#: ../../mod/admin.php:1301 +msgid "Administration" +msgstr "" + +#: ../../mod/admin.php:203 +msgid "Summary" +msgstr "" + +#: ../../mod/admin.php:205 +msgid "Registered users" +msgstr "" + +#: ../../mod/admin.php:207 ../../mod/admin.php:543 +msgid "Pending registrations" +msgstr "" + +#: ../../mod/admin.php:208 +msgid "Version" +msgstr "" + +#: ../../mod/admin.php:210 ../../mod/admin.php:544 +msgid "Active plugins" +msgstr "" + +#: ../../mod/admin.php:360 +msgid "Site settings updated." +msgstr "" + +#: ../../mod/admin.php:391 +msgid "No special theme for accessibility" +msgstr "" + +#: ../../mod/admin.php:420 +msgid "Yes - with approval" +msgstr "" + +#: ../../mod/admin.php:426 +msgid "My site is not a public server" +msgstr "" + +#: ../../mod/admin.php:427 +msgid "My site has paid access only" +msgstr "" + +#: ../../mod/admin.php:428 +msgid "My site has free access only" +msgstr "" + +#: ../../mod/admin.php:429 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "" + +#: ../../mod/admin.php:442 ../../mod/register.php:189 +msgid "Registration" +msgstr "" + +#: ../../mod/admin.php:443 +msgid "File upload" +msgstr "" + +#: ../../mod/admin.php:444 +msgid "Policies" +msgstr "" + +#: ../../mod/admin.php:449 +msgid "Site name" +msgstr "" + +#: ../../mod/admin.php:450 +msgid "Banner/Logo" +msgstr "" + +#: ../../mod/admin.php:451 +msgid "Administrator Information" +msgstr "" + +#: ../../mod/admin.php:451 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "" + +#: ../../mod/admin.php:452 +msgid "System language" +msgstr "" + +#: ../../mod/admin.php:453 +msgid "System theme" +msgstr "" + +#: ../../mod/admin.php:453 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "" + +#: ../../mod/admin.php:454 +msgid "Mobile system theme" +msgstr "" + +#: ../../mod/admin.php:454 +msgid "Theme for mobile devices" +msgstr "" + +#: ../../mod/admin.php:455 +msgid "Accessibility system theme" +msgstr "" + +#: ../../mod/admin.php:455 +msgid "Accessibility theme" +msgstr "" + +#: ../../mod/admin.php:456 +msgid "Channel to use for this website's static pages" +msgstr "" + +#: ../../mod/admin.php:456 +msgid "Site Channel" +msgstr "" + +#: ../../mod/admin.php:458 +msgid "Maximum image size" +msgstr "" + +#: ../../mod/admin.php:458 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "" + +#: ../../mod/admin.php:459 +msgid "Does this site allow new member registration?" +msgstr "" + +#: ../../mod/admin.php:460 +msgid "Which best describes the types of account offered by this hub?" +msgstr "" + +#: ../../mod/admin.php:461 +msgid "Register text" +msgstr "" + +#: ../../mod/admin.php:461 +msgid "Will be displayed prominently on the registration page." +msgstr "" + +#: ../../mod/admin.php:462 +msgid "Accounts abandoned after x days" +msgstr "" + +#: ../../mod/admin.php:462 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "" + +#: ../../mod/admin.php:463 +msgid "Allowed friend domains" +msgstr "" + +#: ../../mod/admin.php:463 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "" + +#: ../../mod/admin.php:464 +msgid "Allowed email domains" +msgstr "" + +#: ../../mod/admin.php:464 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "" + +#: ../../mod/admin.php:465 +msgid "Block public" +msgstr "" + +#: ../../mod/admin.php:465 +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:466 +msgid "Force publish" +msgstr "" + +#: ../../mod/admin.php:466 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" + +#: ../../mod/admin.php:467 +msgid "Disable discovery tab" +msgstr "" + +#: ../../mod/admin.php:467 +msgid "" +"Remove the tab in the network view with public content pulled from sources " +"chosen for this site." +msgstr "" + +#: ../../mod/admin.php:468 +msgid "No login on Homepage" +msgstr "" + +#: ../../mod/admin.php:468 +msgid "" +"Check to hide the login form from your sites homepage when visitors arrive " +"who are not logged in (e.g. when you put the content of the homepage in via " +"the site channel)." +msgstr "" + +#: ../../mod/admin.php:470 +msgid "Proxy user" +msgstr "" + +#: ../../mod/admin.php:471 +msgid "Proxy URL" +msgstr "" + +#: ../../mod/admin.php:472 +msgid "Network timeout" +msgstr "" + +#: ../../mod/admin.php:472 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: ../../mod/admin.php:473 +msgid "Delivery interval" +msgstr "" + +#: ../../mod/admin.php:473 +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:474 +msgid "Poll interval" +msgstr "" + +#: ../../mod/admin.php:474 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "" + +#: ../../mod/admin.php:475 +msgid "Maximum Load Average" +msgstr "" + +#: ../../mod/admin.php:475 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "" + +#: ../../mod/admin.php:531 +msgid "No server found" +msgstr "" + +#: ../../mod/admin.php:538 ../../mod/admin.php:762 +msgid "ID" +msgstr "" + +#: ../../mod/admin.php:538 +msgid "for channel" +msgstr "" + +#: ../../mod/admin.php:538 +msgid "on server" +msgstr "" + +#: ../../mod/admin.php:538 +msgid "Status" +msgstr "" + +#: ../../mod/admin.php:559 +msgid "Update has been marked successful" +msgstr "" + +#: ../../mod/admin.php:569 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "" + +#: ../../mod/admin.php:572 +#, php-format +msgid "Update %s was successfully applied." +msgstr "" + +#: ../../mod/admin.php:576 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "" + +#: ../../mod/admin.php:579 +#, php-format +msgid "Update function %s could not be found." +msgstr "" + +#: ../../mod/admin.php:594 +msgid "No failed updates." +msgstr "" + +#: ../../mod/admin.php:598 +msgid "Failed Updates" +msgstr "" + +#: ../../mod/admin.php:600 +msgid "Mark success (if update was manually applied)" +msgstr "" + +#: ../../mod/admin.php:601 +msgid "Attempt to execute this update step automatically" +msgstr "" + +#: ../../mod/admin.php:627 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:634 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:665 +msgid "Account not found" +msgstr "" + +#: ../../mod/admin.php:676 +#, php-format +msgid "User '%s' deleted" +msgstr "" + +#: ../../mod/admin.php:685 +#, php-format +msgid "User '%s' unblocked" +msgstr "" + +#: ../../mod/admin.php:685 +#, php-format +msgid "User '%s' blocked" +msgstr "" + +#: ../../mod/admin.php:749 ../../mod/admin.php:761 +msgid "Users" +msgstr "" + +#: ../../mod/admin.php:751 ../../mod/admin.php:885 +msgid "select all" +msgstr "" + +#: ../../mod/admin.php:752 +msgid "User registrations waiting for confirm" +msgstr "" + +#: ../../mod/admin.php:753 +msgid "Request date" +msgstr "" + +#: ../../mod/admin.php:754 +msgid "No registrations." +msgstr "" + +#: ../../mod/admin.php:755 +msgid "Approve" +msgstr "" + +#: ../../mod/admin.php:756 +msgid "Deny" +msgstr "" + +#: ../../mod/admin.php:762 +msgid "Register date" +msgstr "" + +#: ../../mod/admin.php:762 +msgid "Last login" +msgstr "" + +#: ../../mod/admin.php:762 +msgid "Expires" +msgstr "" + +#: ../../mod/admin.php:762 +msgid "Service Class" +msgstr "" + +#: ../../mod/admin.php:764 +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:765 +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:797 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channelss censored/uncensored" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:804 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:823 +msgid "Channel not found" +msgstr "" + +#: ../../mod/admin.php:834 +#, php-format +msgid "Channel '%s' deleted" +msgstr "" + +#: ../../mod/admin.php:844 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "" + +#: ../../mod/admin.php:844 +#, php-format +msgid "Channel '%s' censored" +msgstr "" + +#: ../../mod/admin.php:887 +msgid "Censor" +msgstr "" + +#: ../../mod/admin.php:888 +msgid "Uncensor" +msgstr "" + +#: ../../mod/admin.php:891 +msgid "UID" +msgstr "" + +#: ../../mod/admin.php:893 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../mod/admin.php:894 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../mod/admin.php:933 +#, php-format +msgid "Plugin %s disabled." +msgstr "" + +#: ../../mod/admin.php:937 +#, php-format +msgid "Plugin %s enabled." +msgstr "" + +#: ../../mod/admin.php:947 ../../mod/admin.php:1149 +msgid "Disable" +msgstr "" + +#: ../../mod/admin.php:949 ../../mod/admin.php:1151 +msgid "Enable" +msgstr "" + +#: ../../mod/admin.php:975 ../../mod/admin.php:1180 +msgid "Toggle" +msgstr "" + +#: ../../mod/admin.php:983 ../../mod/admin.php:1190 +msgid "Author: " +msgstr "" + +#: ../../mod/admin.php:984 ../../mod/admin.php:1191 +msgid "Maintainer: " +msgstr "" + +#: ../../mod/admin.php:1113 +msgid "No themes found." +msgstr "" + +#: ../../mod/admin.php:1172 +msgid "Screenshot" +msgstr "" + +#: ../../mod/admin.php:1220 +msgid "[Experimental]" +msgstr "" + +#: ../../mod/admin.php:1221 +msgid "[Unsupported]" +msgstr "" + +#: ../../mod/admin.php:1248 +msgid "Log settings updated." +msgstr "" + +#: ../../mod/admin.php:1304 +msgid "Clear" +msgstr "" + +#: ../../mod/admin.php:1310 +msgid "Debugging" +msgstr "" + +#: ../../mod/admin.php:1311 +msgid "Log file" +msgstr "" + +#: ../../mod/admin.php:1311 +msgid "" +"Must be writable by web server. Relative to your Red top-level directory." +msgstr "" + +#: ../../mod/admin.php:1312 +msgid "Log level" +msgstr "" + +#: ../../mod/register.php:43 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "" + +#: ../../mod/register.php:49 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "" + +#: ../../mod/register.php:77 +msgid "Passwords do not match." +msgstr "" + +#: ../../mod/register.php:105 +msgid "" +"Registration successful. Please check your email for validation instructions." +msgstr "" + +#: ../../mod/register.php:111 +msgid "Your registration is pending approval by the site owner." +msgstr "" + +#: ../../mod/register.php:114 +msgid "Your registration can not be processed." +msgstr "" + +#: ../../mod/register.php:147 +msgid "Registration on this site/hub is by approval only." +msgstr "" + +#: ../../mod/register.php:148 +msgid "Register at another affiliated site/hub" +msgstr "" + +#: ../../mod/register.php:156 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "" + +#: ../../mod/register.php:167 +msgid "Terms of Service" +msgstr "" + +#: ../../mod/register.php:173 +#, php-format +msgid "I accept the %s for this website" +msgstr "" + +#: ../../mod/register.php:175 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "" + +#: ../../mod/register.php:194 +msgid "Membership on this site is by invitation only." +msgstr "" + +#: ../../mod/register.php:195 +msgid "Please enter your invitation code" +msgstr "" + +#: ../../mod/register.php:198 +msgid "Your email address" +msgstr "" + +#: ../../mod/register.php:199 +msgid "Choose a password" +msgstr "" + +#: ../../mod/register.php:200 +msgid "Please re-enter your password" +msgstr "" + +#: ../../mod/filer.php:49 +msgid "- select -" +msgstr "" + +#: ../../mod/manage.php:64 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "" + +#: ../../mod/manage.php:72 +msgid "Create a new channel" +msgstr "" + +#: ../../mod/manage.php:77 +msgid "Channel Manager" +msgstr "" + +#: ../../mod/manage.php:78 +msgid "Current Channel" +msgstr "" + +#: ../../mod/manage.php:80 +msgid "Attach to one of your channels by selecting it." +msgstr "" + +#: ../../mod/manage.php:81 +msgid "Default Channel" +msgstr "" + +#: ../../mod/manage.php:82 +msgid "Make Default" +msgstr "" + +#: ../../mod/invite.php:25 +msgid "Total invitation limit exceeded." +msgstr "" + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "" + +#: ../../mod/invite.php:76 +msgid "Please join us on Red" +msgstr "" + +#: ../../mod/invite.php:87 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "" + +#: ../../mod/invite.php:92 +#, php-format +msgid "%s : Message delivery failed." +msgstr "" + +#: ../../mod/invite.php:96 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/invite.php:115 +msgid "You have no more invitations available" +msgstr "" + +#: ../../mod/invite.php:141 +msgid "Send invitations" +msgstr "" + +#: ../../mod/invite.php:142 +msgid "Enter email addresses, one per line:" +msgstr "" + +#: ../../mod/invite.php:144 +msgid "" +"You are cordially invited to join me and some other close friends on the Red " +"Matrix - a revolutionary new decentralised communication and information " +"tool." +msgstr "" + +#: ../../mod/invite.php:146 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "" + +#: ../../mod/invite.php:147 +msgid "Please visit my channel at" +msgstr "" + +#: ../../mod/invite.php:151 +msgid "" +"Once you have registered (on ANY Red Matrix site - they are all inter-" +"connected), please connect with my Red Matrix channel address:" +msgstr "" + +#: ../../mod/invite.php:153 +msgid "Click the [Register] link on the following page to join." +msgstr "" + +#: ../../mod/invite.php:155 +msgid "" +"For more information about the Red Matrix Project and why it has the " +"potential to change the internet as we know it, please visit http://getzot." +"com" +msgstr "" + +#: ../../mod/wall_upload.php:34 +msgid "Wall Photos" +msgstr "" + +#: ../../mod/common.php:10 +msgid "No channel." +msgstr "" + +#: ../../mod/common.php:39 +msgid "Common connections" +msgstr "" + +#: ../../mod/common.php:44 +msgid "No connections in common." +msgstr "" + +#: ../../mod/regmod.php:12 +msgid "Please login." +msgstr "" + +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" +msgstr "" + +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" +msgstr "" + +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" +msgstr "" + +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "" + +#: ../../boot.php:1259 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "" + +#: ../../boot.php:1262 +#, php-format +msgid "Update Error at %s" +msgstr "" + +#: ../../boot.php:1426 +msgid "" +"Create an account to access services and applications within the Red Matrix" +msgstr "" + +#: ../../boot.php:1454 +msgid "Password" +msgstr "" + +#: ../../boot.php:1455 +msgid "Remember me" +msgstr "" + +#: ../../boot.php:1460 +msgid "Forgot your password?" +msgstr "" + +#: ../../boot.php:1525 +msgid "permission denied" +msgstr "" + +#: ../../boot.php:1526 +msgid "Got Zot?" +msgstr "" + +#: ../../boot.php:1956 +msgid "toggle mobile" msgstr "" -#: ../../view/theme/apw/php/config.php:259 -#: ../../view/theme/blogga/php/config.php:69 -#: ../../view/theme/blogga/view/theme/blog/config.php:69 #: ../../view/theme/redbasic/php/config.php:102 msgid "Theme settings" msgstr "" -#: ../../view/theme/apw/php/config.php:260 #: ../../view/theme/redbasic/php/config.php:103 msgid "Set scheme" msgstr "" -#: ../../view/theme/apw/php/config.php:261 -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set font-size for posts and comments" -msgstr "" - -#: ../../view/theme/apw/php/config.php:262 -msgid "Set font face" -msgstr "" - -#: ../../view/theme/apw/php/config.php:263 -msgid "Set iconset" -msgstr "" - -#: ../../view/theme/apw/php/config.php:264 -msgid "Set big shadow size, default 15px 15px 15px" -msgstr "" - -#: ../../view/theme/apw/php/config.php:265 -msgid "Set small shadow size, default 5px 5px 5px" -msgstr "" - -#: ../../view/theme/apw/php/config.php:266 -msgid "Set shadow colour, default #000" -msgstr "" - -#: ../../view/theme/apw/php/config.php:267 -msgid "Set radius size, default 5px" -msgstr "" - -#: ../../view/theme/apw/php/config.php:268 -msgid "Set line-height for posts and comments" -msgstr "" - -#: ../../view/theme/apw/php/config.php:269 -msgid "Set background image" -msgstr "" - -#: ../../view/theme/apw/php/config.php:270 -msgid "Set background attachment" -msgstr "" - -#: ../../view/theme/apw/php/config.php:271 -msgid "Set background colour" -msgstr "" - -#: ../../view/theme/apw/php/config.php:272 -msgid "Set section background image" -msgstr "" - -#: ../../view/theme/apw/php/config.php:273 -msgid "Set section background colour" -msgstr "" - -#: ../../view/theme/apw/php/config.php:274 -msgid "Set colour of items - use hex" -msgstr "" - -#: ../../view/theme/apw/php/config.php:275 -msgid "Set colour of links - use hex" -msgstr "" - -#: ../../view/theme/apw/php/config.php:276 -msgid "Set max-width for items. Default 400px" -msgstr "" - -#: ../../view/theme/apw/php/config.php:277 -msgid "Set min-width for items. Default 240px" -msgstr "" - -#: ../../view/theme/apw/php/config.php:278 -msgid "Set the generic content wrapper width. Default 48%" -msgstr "" - -#: ../../view/theme/apw/php/config.php:279 -msgid "Set colour of fonts - use hex" -msgstr "" - -#: ../../view/theme/apw/php/config.php:280 -msgid "Set background-size element" -msgstr "" - -#: ../../view/theme/apw/php/config.php:281 -msgid "Item opacity" -msgstr "" - -#: ../../view/theme/apw/php/config.php:282 -msgid "Display post previews only" -msgstr "" - -#: ../../view/theme/apw/php/config.php:283 -msgid "Display side bar on channel page" -msgstr "" - -#: ../../view/theme/apw/php/config.php:284 -msgid "Colour of the navigation bar" -msgstr "" - -#: ../../view/theme/apw/php/config.php:285 -msgid "Item float" -msgstr "" - -#: ../../view/theme/apw/php/config.php:286 -msgid "Left offset of the section element" -msgstr "" - -#: ../../view/theme/apw/php/config.php:287 -msgid "Right offset of the section element" -msgstr "" - -#: ../../view/theme/apw/php/config.php:288 -msgid "Section width" -msgstr "" - -#: ../../view/theme/apw/php/config.php:289 -msgid "Left offset of the aside" -msgstr "" - -#: ../../view/theme/apw/php/config.php:290 -msgid "Right offset of the aside element" -msgstr "" - -#: ../../view/theme/blogga/php/config.php:47 -#: ../../view/theme/blogga/view/theme/blog/config.php:47 -msgid "None" -msgstr "" - -#: ../../view/theme/blogga/php/config.php:70 -#: ../../view/theme/blogga/view/theme/blog/config.php:70 -msgid "Header image" -msgstr "" - -#: ../../view/theme/blogga/php/config.php:71 -#: ../../view/theme/blogga/view/theme/blog/config.php:71 -msgid "Header image only on profile pages" -msgstr "" - #: ../../view/theme/redbasic/php/config.php:104 msgid "Narrow navbar" msgstr "" @@ -7566,6 +7510,10 @@ msgstr "" msgid "Set font-size for the entire application" msgstr "" +#: ../../view/theme/redbasic/php/config.php:124 +msgid "Set font-size for posts and comments" +msgstr "" + #: ../../view/theme/redbasic/php/config.php:125 msgid "Set font-colour for posts and comments" msgstr "" @@ -7605,42 +7553,3 @@ msgstr "" #: ../../view/theme/redbasic/php/config.php:133 msgid "Are you a clean desk or a messy desk person?" msgstr "" - -#: ../../boot.php:1260 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "" - -#: ../../boot.php:1263 -#, php-format -msgid "Update Error at %s" -msgstr "" - -#: ../../boot.php:1427 -msgid "" -"Create an account to access services and applications within the Red Matrix" -msgstr "" - -#: ../../boot.php:1455 -msgid "Password" -msgstr "" - -#: ../../boot.php:1456 -msgid "Remember me" -msgstr "" - -#: ../../boot.php:1461 -msgid "Forgot your password?" -msgstr "" - -#: ../../boot.php:1526 -msgid "permission denied" -msgstr "" - -#: ../../boot.php:1527 -msgid "Got Zot?" -msgstr "" - -#: ../../boot.php:1957 -msgid "toggle mobile" -msgstr "" diff --git a/util/po2php.php b/util/po2php.php index edb1a35a8..d3e6d190c 100644 --- a/util/po2php.php +++ b/util/po2php.php @@ -30,6 +30,7 @@ function po2php_run($argv, $argc) { $infile = file($pofile); $k=""; $v=""; + $ctx=""; $arr = False; $ink = False; $inv = False; @@ -92,23 +93,27 @@ function po2php_run($argv, $argc) { if ($k!="") $out .= $arr?");\n":";\n"; $arr=False; $k = str_replace("msgid ","",$l); - if ($k != '""' ) { - $k = trim($k,"\"\r\n"); - } else { - $k = ""; - } - + $k = trim($k,"\"\r\n"); + $k = $ctx.$k; + // echo $ctx ? $ctx."\nX\n":""; $k = preg_replace_callback($escape_s_exp,'escape_s',$k); + $ctx = ""; $ink = True; } - if ($inv && substr($l,0,6)!="msgstr") { + if ($inv && substr($l,0,6)!="msgstr" && substr($l,0,7)!="msgctxt") { $v .= trim($l,"\"\r\n"); $v = preg_replace_callback($escape_s_exp,'escape_s',$v); //$out .= '$a->strings['.$k.'] = '; } - - + + if (substr($l,0,7)=="msgctxt") { + $ctx = str_replace("msgctxt ","",$l); + $ctx = trim($ctx,"\"\r\n"); + $ctx = "__ctx:".$ctx."__ "; + $ctx = preg_replace_callback($escape_s_exp,'escape_s',$ctx); + } + } if ($inv) { $inv = False; $out .= '"'.$v.'"'; } diff --git a/util/run_xgettext.sh b/util/run_xgettext.sh index 3be355c44..3eca8a8b3 100755 --- a/util/run_xgettext.sh +++ b/util/run_xgettext.sh @@ -44,7 +44,7 @@ OPTS= # fi #fi -KEYWORDS="-k -kt -ktt:1,2" +KEYWORDS="-k -kt:1 -kt:1,2c,2t -ktt:1,2 -ktt:1,2,4c,4t" echo "extract strings to $OUTFILE.." diff --git a/util/strings.php b/util/strings.php index 2614d7fc2..ef15500f1 100644 --- a/util/strings.php +++ b/util/strings.php @@ -1,256 +1,83 @@ strings["Visible to everybody"] = ""; -$a->strings["show"] = ""; -$a->strings["don't show"] = ""; -$a->strings[" and "] = ""; -$a->strings["public profile"] = ""; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = ""; -$a->strings["Visit %1\$s's %2\$s"] = ""; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; -$a->strings["Public Timeline"] = ""; -$a->strings["Red Matrix Notification"] = ""; -$a->strings["Thank You,"] = ""; -$a->strings["%s Administrator"] = ""; -$a->strings["%s "] = ""; -$a->strings["[Red: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 [zrl=%2\$s]a %3\$s[/zrl]"] = ""; -$a->strings["%1\$s commented on [zrl=%2\$s]%3\$s's %4\$s[/zrl]"] = ""; -$a->strings["%1\$s commented on [zrl=%2\$s]your %3\$s[/zrl]"] = ""; -$a->strings["[Red: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["[Red: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 [zrl=%2\$s]your wall[/zrl]"] = ""; -$a->strings["[Red:Notify] %s tagged you"] = ""; -$a->strings["%1\$s tagged you at %2\$s"] = ""; -$a->strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = ""; -$a->strings["[Red:Notify] %1\$s poked you"] = ""; -$a->strings["%1\$s poked you at %2\$s"] = ""; -$a->strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = ""; -$a->strings["[Red:Notify] %s tagged your post"] = ""; -$a->strings["%1\$s tagged your post at %2\$s"] = ""; -$a->strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = ""; -$a->strings["[Red:Notify] Introduction received"] = ""; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = ""; -$a->strings["You've received [zrl=%1\$s]an introduction[/zrl] 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["[Red:Notify] Friend suggestion received"] = ""; -$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = ""; -$a->strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] 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"] = ""; -$a->strings["New window"] = ""; -$a->strings["Open the selected location in a different window or browser tab"] = ""; -$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["Unknown | Not categorised"] = ""; -$a->strings["Block immediately"] = ""; -$a->strings["Shady, spammer, self-marketer"] = ""; -$a->strings["Known to me, but no opinion"] = ""; -$a->strings["OK, probably harmless"] = ""; -$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["Friendica"] = ""; -$a->strings["OStatus"] = ""; -$a->strings["RSS/Atom"] = ""; -$a->strings["Email"] = ""; -$a->strings["Diaspora"] = ""; -$a->strings["Facebook"] = ""; -$a->strings["Zot!"] = ""; -$a->strings["LinkedIn"] = ""; -$a->strings["XMPP/IM"] = ""; -$a->strings["MySpace"] = ""; -$a->strings["Add New Connection"] = ""; -$a->strings["Enter the channel address"] = ""; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = ""; -$a->strings["%d invitation available"] = array( - 0 => "", - 1 => "", -); -$a->strings["Find Channels"] = ""; -$a->strings["Enter name or interest"] = ""; -$a->strings["Connect/Follow"] = ""; -$a->strings["Examples: Robert Morgenstein, Fishing"] = ""; -$a->strings["Find"] = ""; -$a->strings["Channel Suggestions"] = ""; -$a->strings["Similar Interests"] = ""; -$a->strings["Random Profile"] = ""; -$a->strings["Invite Friends"] = ""; -$a->strings["Saved Folders"] = ""; -$a->strings["Everything"] = ""; -$a->strings["Categories"] = ""; -$a->strings["%d connection in common"] = array( - 0 => "", - 1 => "", -); -$a->strings["show more"] = ""; -$a->strings["Miscellaneous"] = ""; -$a->strings["year"] = ""; -$a->strings["month"] = ""; -$a->strings["day"] = ""; -$a->strings["never"] = ""; -$a->strings["less than a second ago"] = ""; -$a->strings["years"] = ""; -$a->strings["months"] = ""; -$a->strings["week"] = ""; -$a->strings["weeks"] = ""; -$a->strings["days"] = ""; -$a->strings["hour"] = ""; -$a->strings["hours"] = ""; -$a->strings["minute"] = ""; -$a->strings["minutes"] = ""; -$a->strings["second"] = ""; -$a->strings["seconds"] = ""; -$a->strings["%1\$d %2\$s ago"] = ""; -$a->strings["Cannot locate DNS info for database server '%s'"] = ""; +$a->strings["Channel is blocked on this site."] = ""; +$a->strings["Channel location missing."] = ""; +$a->strings["Response from remote channel was incomplete."] = ""; +$a->strings["Channel was deleted and no longer exists."] = ""; +$a->strings["Channel discovery failed."] = ""; +$a->strings["local account not found."] = ""; +$a->strings["Cannot connect to yourself."] = ""; +$a->strings["Edit File properties"] = ""; $a->strings["l F d, Y \\@ g:i A"] = ""; $a->strings["Starts:"] = ""; $a->strings["Finishes:"] = ""; $a->strings["Location:"] = ""; -$a->strings["General Features"] = ""; -$a->strings["Content Expiration"] = ""; -$a->strings["Remove old posts/comments after a period of time"] = ""; -$a->strings["Multiple Profiles"] = ""; -$a->strings["Ability to create multiple profiles"] = ""; -$a->strings["Web Pages"] = ""; -$a->strings["Provide managed web pages on your channel"] = ""; -$a->strings["Enhanced Photo Albums"] = ""; -$a->strings["Enable photo album with enhanced features"] = ""; -$a->strings["Extended Identity Sharing"] = ""; -$a->strings[" "] = ""; -$a->strings["Expert Mode"] = ""; -$a->strings["Enable Expert Mode to provide advanced configuration options"] = ""; -$a->strings["Post Composition Features"] = ""; -$a->strings["Richtext Editor"] = ""; -$a->strings["Enable richtext editor"] = ""; -$a->strings["Post Preview"] = ""; -$a->strings["Allow previewing posts and comments before publishing them"] = ""; -$a->strings["Network and Stream Filtering"] = ""; -$a->strings["Search by Date"] = ""; -$a->strings["Ability to select posts by date ranges"] = ""; -$a->strings["Collections Filter"] = ""; -$a->strings["Enable widget to display Network posts only from selected collections"] = ""; +$a->strings["Categories"] = ""; +$a->strings["App Category"] = ""; +$a->strings["System"] = ""; +$a->strings["Personal"] = ""; +$a->strings["Connect"] = ""; +$a->strings["Ignore/Hide"] = ""; +$a->strings["Suggestions"] = ""; +$a->strings["See more..."] = ""; +$a->strings["You have %1$.0f of %2$.0f allowed connections."] = ""; +$a->strings["Add New Connection"] = ""; +$a->strings["Enter the channel address"] = ""; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = ""; +$a->strings["Notes"] = ""; +$a->strings["Save"] = ""; +$a->strings["Remove term"] = ""; $a->strings["Saved Searches"] = ""; -$a->strings["Save search terms for re-use"] = ""; -$a->strings["Network Personal Tab"] = ""; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = ""; -$a->strings["Network New Tab"] = ""; -$a->strings["Enable tab to display all new Network activity"] = ""; -$a->strings["Affinity Tool"] = ""; -$a->strings["Filter stream activity by depth of relationships"] = ""; -$a->strings["Post/Comment Tools"] = ""; -$a->strings["Multiple Deletion"] = ""; -$a->strings["Select and delete multiple posts/comments at once"] = ""; -$a->strings["Edit Sent Posts"] = ""; -$a->strings["Edit and correct posts and comments after sending"] = ""; -$a->strings["Tagging"] = ""; -$a->strings["Ability to tag existing posts"] = ""; -$a->strings["Post Categories"] = ""; -$a->strings["Add categories to your posts"] = ""; -$a->strings["Ability to file posts under folders"] = ""; -$a->strings["Dislike Posts"] = ""; -$a->strings["Ability to dislike posts/comments"] = ""; -$a->strings["Star Posts"] = ""; -$a->strings["Ability to mark special posts with a star indicator"] = ""; -$a->strings["Tag Cloud"] = ""; -$a->strings["Provide a personal tag cloud on your channel page"] = ""; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = ""; -$a->strings["Default privacy group for new contacts"] = ""; -$a->strings["All Channels"] = ""; -$a->strings["edit"] = ""; -$a->strings["Collections"] = ""; -$a->strings["Edit collection"] = ""; -$a->strings["Create a new collection"] = ""; -$a->strings["Channels not in any collection"] = ""; $a->strings["add"] = ""; -$a->strings["Delete this item?"] = ""; -$a->strings["Comment"] = ""; -$a->strings["show fewer"] = ""; -$a->strings["Password too short"] = ""; -$a->strings["Passwords do not match"] = ""; -$a->strings["everybody"] = ""; -$a->strings["timeago.prefixAgo"] = ""; -$a->strings["timeago.suffixAgo"] = ""; -$a->strings["ago"] = ""; -$a->strings["from now"] = ""; -$a->strings["less than a minute"] = ""; -$a->strings["about a minute"] = ""; -$a->strings["%d minutes"] = ""; -$a->strings["about an hour"] = ""; -$a->strings["about %d hours"] = ""; -$a->strings["a day"] = ""; -$a->strings["%d days"] = ""; -$a->strings["about a month"] = ""; -$a->strings["%d months"] = ""; -$a->strings["about a year"] = ""; -$a->strings["%d years"] = ""; -$a->strings["timeago.numbers"] = ""; -$a->strings["No recipient provided."] = ""; -$a->strings["[no subject]"] = ""; -$a->strings["Unable to determine sender."] = ""; -$a->strings["Stored post could not be verified."] = ""; -$a->strings["view full size"] = ""; -$a->strings["Profile Photos"] = ""; -$a->strings["Profile"] = ""; -$a->strings["Full Name:"] = ""; -$a->strings["Gender:"] = ""; -$a->strings["j F, Y"] = ""; -$a->strings["j F"] = ""; -$a->strings["Birthday:"] = ""; -$a->strings["Age:"] = ""; -$a->strings["Status:"] = ""; -$a->strings["for %1\$d %2\$s"] = ""; -$a->strings["Sexual Preference:"] = ""; -$a->strings["Homepage:"] = ""; -$a->strings["Hometown:"] = ""; -$a->strings["Tags:"] = ""; -$a->strings["Political Views:"] = ""; -$a->strings["Religion:"] = ""; -$a->strings["About:"] = ""; -$a->strings["Hobbies/Interests:"] = ""; -$a->strings["Likes:"] = ""; -$a->strings["Dislikes:"] = ""; -$a->strings["Contact information and Social Networks:"] = ""; -$a->strings["Musical interests:"] = ""; -$a->strings["Books, literature:"] = ""; -$a->strings["Television:"] = ""; -$a->strings["Film/dance/culture/entertainment:"] = ""; -$a->strings["Love/Romance:"] = ""; -$a->strings["Work/employment:"] = ""; -$a->strings["School/education:"] = ""; -$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["Saved Folders"] = ""; +$a->strings["Everything"] = ""; +$a->strings["Archives"] = ""; +$a->strings["Refresh"] = ""; +$a->strings["Me"] = ""; +$a->strings["Best Friends"] = ""; +$a->strings["Friends"] = ""; +$a->strings["Co-workers"] = ""; +$a->strings["Former Friends"] = ""; +$a->strings["Acquaintances"] = ""; +$a->strings["Everybody"] = ""; +$a->strings["Account settings"] = ""; +$a->strings["Channel settings"] = ""; +$a->strings["Additional features"] = ""; +$a->strings["Feature settings"] = ""; +$a->strings["Display settings"] = ""; +$a->strings["Connected apps"] = ""; +$a->strings["Export channel"] = ""; +$a->strings["Automatic Permissions (Advanced)"] = ""; +$a->strings["Premium Channel Settings"] = ""; +$a->strings["Channel Sources"] = ""; +$a->strings["Settings"] = ""; +$a->strings["Check Mail"] = ""; +$a->strings["New Message"] = ""; +$a->strings["Chat Rooms"] = ""; +$a->strings["Bookmarked Chatrooms"] = ""; +$a->strings["Suggested Chatrooms"] = ""; +$a->strings["Public Timeline"] = ""; $a->strings["Logout"] = ""; $a->strings["End this session"] = ""; $a->strings["Home"] = ""; $a->strings["Your posts and conversations"] = ""; +$a->strings["View Profile"] = ""; $a->strings["Your profile page"] = ""; $a->strings["Edit Profiles"] = ""; -$a->strings["Manage/Edit Profiles"] = ""; +$a->strings["Manage/Edit profiles"] = ""; $a->strings["Photos"] = ""; $a->strings["Your photos"] = ""; +$a->strings["Files"] = ""; +$a->strings["Your files"] = ""; +$a->strings["Chat"] = ""; +$a->strings["Your chatrooms"] = ""; +$a->strings["Events"] = ""; +$a->strings["Your events"] = ""; +$a->strings["Bookmarks"] = ""; +$a->strings["Your bookmarks"] = ""; +$a->strings["Webpages"] = ""; +$a->strings["Your webpages"] = ""; $a->strings["Login"] = ""; $a->strings["Sign in"] = ""; $a->strings["%s - click to logout"] = ""; @@ -267,14 +94,12 @@ $a->strings["Search site content"] = ""; $a->strings["Directory"] = ""; $a->strings["Channel Locator"] = ""; $a->strings["Matrix"] = ""; -$a->strings["Conversations from your grid"] = ""; -$a->strings["See all matrix notifications"] = ""; +$a->strings["Your matrix"] = ""; $a->strings["Mark all matrix notifications seen"] = ""; -$a->strings["See all channel notifications"] = ""; +$a->strings["Channel Home"] = ""; +$a->strings["Channel home"] = ""; $a->strings["Mark all channel notifications seen"] = ""; -$a->strings["Intros"] = ""; -$a->strings["New Connections"] = ""; -$a->strings["See all channel introductions"] = ""; +$a->strings["Connections"] = ""; $a->strings["Notices"] = ""; $a->strings["Notifications"] = ""; $a->strings["See all notifications"] = ""; @@ -285,32 +110,296 @@ $a->strings["See all private messages"] = ""; $a->strings["Mark all private messages seen"] = ""; $a->strings["Inbox"] = ""; $a->strings["Outbox"] = ""; -$a->strings["New Message"] = ""; -$a->strings["Events"] = ""; $a->strings["Event Calendar"] = ""; $a->strings["See all events"] = ""; $a->strings["Mark all events seen"] = ""; $a->strings["Channel Select"] = ""; $a->strings["Manage Your Channels"] = ""; -$a->strings["Settings"] = ""; $a->strings["Account/Channel Settings"] = ""; -$a->strings["Connections"] = ""; $a->strings["Manage/Edit Friends and Connections"] = ""; $a->strings["Admin"] = ""; $a->strings["Site Setup and Configuration"] = ""; $a->strings["Nothing new here"] = ""; $a->strings["Please wait..."] = ""; -$a->strings["created a new post"] = ""; -$a->strings["commented on %s's post"] = ""; $a->strings["Embedded content"] = ""; $a->strings["Embedding disabled"] = ""; +$a->strings["Image/photo"] = ""; +$a->strings["Encrypted content"] = ""; +$a->strings["QR code"] = ""; +$a->strings["%1\$s wrote the following %2\$s %3\$s"] = ""; +$a->strings["post"] = ""; +$a->strings["$1 wrote:"] = ""; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = ""; +$a->strings["Default privacy group for new contacts"] = ""; +$a->strings["All Channels"] = ""; +$a->strings["edit"] = ""; +$a->strings["Collections"] = ""; +$a->strings["Edit collection"] = ""; +$a->strings["Create a new collection"] = ""; +$a->strings["Channels not in any collection"] = ""; +$a->strings["photo"] = ""; +$a->strings["event"] = ""; +$a->strings["channel"] = ""; +$a->strings["status"] = ""; +$a->strings["comment"] = ""; +$a->strings["%1\$s likes %2\$s's %3\$s"] = ""; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = ""; +$a->strings["%1\$s is now connected with %2\$s"] = ""; +$a->strings["%1\$s poked %2\$s"] = ""; +$a->strings["poked"] = ""; +$a->strings["%1\$s is currently %2\$s"] = ""; +$a->strings["Select"] = ""; +$a->strings["Delete"] = ""; +$a->strings["Private Message"] = ""; +$a->strings["Message is verified"] = ""; +$a->strings["View %s's profile @ %s"] = ""; +$a->strings["Categories:"] = ""; +$a->strings["Filed under:"] = ""; +$a->strings[" from %s"] = ""; +$a->strings["last edited: %s"] = ""; +$a->strings["Expires: %s"] = ""; +$a->strings["View in context"] = ""; +$a->strings["Please wait"] = ""; +$a->strings["remove"] = ""; +$a->strings["Loading..."] = ""; +$a->strings["Delete Selected Items"] = ""; +$a->strings["View Source"] = ""; +$a->strings["Follow Thread"] = ""; +$a->strings["View Status"] = ""; +$a->strings["View Photos"] = ""; +$a->strings["Matrix Activity"] = ""; +$a->strings["Edit Contact"] = ""; +$a->strings["Send PM"] = ""; +$a->strings["Poke"] = ""; +$a->strings["%s likes this."] = ""; +$a->strings["%s doesn't like this."] = ""; +$a->strings["%2\$d people like this."] = array( + 0 => "", + 1 => "", +); +$a->strings["%2\$d people don't like this."] = array( + 0 => "", + 1 => "", +); +$a->strings["and"] = ""; +$a->strings[", and %d other people"] = array( + 0 => "", + 1 => "", +); +$a->strings["%s like this."] = ""; +$a->strings["%s don't like this."] = ""; +$a->strings["Visible to everybody"] = ""; +$a->strings["Please enter a link URL:"] = ""; +$a->strings["Please enter a video link/URL:"] = ""; +$a->strings["Please enter an audio link/URL:"] = ""; +$a->strings["Tag term:"] = ""; +$a->strings["Save to Folder:"] = ""; +$a->strings["Where are you right now?"] = ""; +$a->strings["Expires YYYY-MM-DD HH:MM"] = ""; +$a->strings["Preview"] = ""; +$a->strings["Share"] = ""; +$a->strings["Page link title"] = ""; +$a->strings["Post as"] = ""; +$a->strings["Upload photo"] = ""; +$a->strings["upload photo"] = ""; +$a->strings["Attach file"] = ""; +$a->strings["attach file"] = ""; +$a->strings["Insert web link"] = ""; +$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 your location"] = ""; +$a->strings["set location"] = ""; +$a->strings["Clear browser location"] = ""; +$a->strings["clear location"] = ""; +$a->strings["Set title"] = ""; +$a->strings["Categories (comma-separated list)"] = ""; +$a->strings["Permission settings"] = ""; +$a->strings["permissions"] = ""; +$a->strings["Public post"] = ""; +$a->strings["Example: bob@example.com, mary@example.com"] = ""; +$a->strings["Set expiration date"] = ""; +$a->strings["Encrypt text"] = ""; +$a->strings["OK"] = ""; +$a->strings["Cancel"] = ""; +$a->strings["Discover"] = ""; +$a->strings["Imported public streams"] = ""; +$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["Spam"] = ""; +$a->strings["Posts flagged as SPAM"] = ""; +$a->strings["Channel"] = ""; +$a->strings["Status Messages and Posts"] = ""; +$a->strings["About"] = ""; +$a->strings["Profile Details"] = ""; +$a->strings["Photo Albums"] = ""; +$a->strings["Files and Storage"] = ""; +$a->strings["Chatrooms"] = ""; +$a->strings["Events and Calendar"] = ""; +$a->strings["Saved Bookmarks"] = ""; +$a->strings["Manage Webpages"] = ""; +$a->strings["Default"] = ""; +$a->strings["No recipient provided."] = ""; +$a->strings["[no subject]"] = ""; +$a->strings["Unable to determine sender."] = ""; +$a->strings["Stored post could not be verified."] = ""; +$a->strings[" and "] = ""; +$a->strings["public profile"] = ""; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = ""; +$a->strings["Visit %1\$s's %2\$s"] = ""; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; +$a->strings["view full size"] = ""; +$a->strings["%1\$s's bookmarks"] = ""; +$a->strings["Tags"] = ""; +$a->strings["Keywords"] = ""; +$a->strings["have"] = ""; +$a->strings["has"] = ""; +$a->strings["want"] = ""; +$a->strings["wants"] = ""; +$a->strings["like"] = ""; +$a->strings["likes"] = ""; +$a->strings["dislike"] = ""; +$a->strings["dislikes"] = ""; +$a->strings["Edit"] = ""; +$a->strings["save to folder"] = ""; +$a->strings["View all"] = ""; +$a->strings["__ctx:noun__ Like"] = array( + 0 => "", + 1 => "", +); +$a->strings["__ctx:noun__ Dislike"] = array( + 0 => "", + 1 => "", +); +$a->strings["add star"] = ""; +$a->strings["remove star"] = ""; +$a->strings["toggle star status"] = ""; +$a->strings["starred"] = ""; +$a->strings["add tag"] = ""; +$a->strings["I like this (toggle)"] = ""; +$a->strings["I don't like this (toggle)"] = ""; +$a->strings["Share this"] = ""; +$a->strings["share"] = ""; +$a->strings["View %s's profile - %s"] = ""; +$a->strings["to"] = ""; +$a->strings["via"] = ""; +$a->strings["Wall-to-Wall"] = ""; +$a->strings["via Wall-To-Wall:"] = ""; +$a->strings["Bookmark Links"] = ""; +$a->strings["__ctx:noun__ Likes"] = ""; +$a->strings["__ctx:noun__ Dislikes"] = ""; +$a->strings["Close"] = ""; +$a->strings["%d comment"] = array( + 0 => "", + 1 => "", +); +$a->strings["show more"] = ""; +$a->strings["This is you"] = ""; +$a->strings["Comment"] = ""; +$a->strings["Submit"] = ""; +$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["Permission denied"] = ""; +$a->strings["(Unknown)"] = ""; +$a->strings["Item not found."] = ""; $a->strings["Permission denied."] = ""; +$a->strings["Collection not found."] = ""; +$a->strings["Collection is empty."] = ""; +$a->strings["Collection: %s"] = ""; +$a->strings["Connection: %s"] = ""; +$a->strings["Connection not found."] = ""; +$a->strings["Sort Options"] = ""; +$a->strings["Alphabetic"] = ""; +$a->strings["Reverse Alphabetic"] = ""; +$a->strings["Newest to Oldest"] = ""; +$a->strings["Enable Safe Search"] = ""; +$a->strings["Disable Safe Search"] = ""; +$a->strings["Safe Mode"] = ""; +$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["created a new post"] = ""; +$a->strings["commented on %s's post"] = ""; +$a->strings["Red Matrix Notification"] = ""; +$a->strings["redmatrix"] = ""; +$a->strings["Thank You,"] = ""; +$a->strings["%s Administrator"] = ""; +$a->strings["%s "] = ""; +$a->strings["[Red:Notify] New mail received at %s"] = ""; +$a->strings["%1\$s, %2\$s sent you a new private message at %3\$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, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = ""; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = ""; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = ""; +$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = ""; +$a->strings["%1\$s, %2\$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["[Red:Notify] %s posted to your profile wall"] = ""; +$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = ""; +$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = ""; +$a->strings["[Red:Notify] %s tagged you"] = ""; +$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = ""; +$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = ""; +$a->strings["[Red:Notify] %1\$s poked you"] = ""; +$a->strings["%1\$s, %2\$s poked you at %3\$s"] = ""; +$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = ""; +$a->strings["[Red:Notify] %s tagged your post"] = ""; +$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = ""; +$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = ""; +$a->strings["[Red:Notify] Introduction received"] = ""; +$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = ""; +$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = ""; +$a->strings["You may visit their profile at %s"] = ""; +$a->strings["Please visit %s to approve or reject the connection request."] = ""; +$a->strings["[Red:Notify] Friend suggestion received"] = ""; +$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = ""; +$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = ""; +$a->strings["Name:"] = ""; +$a->strings["Photo:"] = ""; +$a->strings["Please visit %s to approve or reject the suggestion."] = ""; +$a->strings["Item was not found."] = ""; +$a->strings["No source file."] = ""; +$a->strings["Cannot locate file to replace"] = ""; +$a->strings["Cannot locate file to revise/update"] = ""; +$a->strings["File exceeds size limit of %d"] = ""; +$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = ""; +$a->strings["File upload failed. Possible system limit or action terminated."] = ""; +$a->strings["Stored file could not be verified. Upload failed."] = ""; +$a->strings["Path not available."] = ""; +$a->strings["Empty pathname"] = ""; +$a->strings["duplicate filename or path"] = ""; +$a->strings["Path not found."] = ""; +$a->strings["mkdir failed."] = ""; +$a->strings["database storage failed."] = ""; +$a->strings["New Page"] = ""; +$a->strings["View"] = ""; +$a->strings["Actions"] = ""; +$a->strings["Page Link"] = ""; +$a->strings["Title"] = ""; +$a->strings["Created"] = ""; +$a->strings["Edited"] = ""; +$a->strings["Profile Photos"] = ""; $a->strings["Image exceeds website size limit of %lu bytes"] = ""; $a->strings["Image file is empty."] = ""; $a->strings["Unable to process image"] = ""; $a->strings["Photo storage failed."] = ""; -$a->strings["Photo Albums"] = ""; $a->strings["Upload New Photos"] = ""; +$a->strings["Cannot locate DNS info for database server '%s'"] = ""; $a->strings["Male"] = ""; $a->strings["Female"] = ""; $a->strings["Currently Male"] = ""; @@ -347,7 +436,6 @@ $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"] = ""; @@ -369,6 +457,13 @@ $a->strings["Uncertain"] = ""; $a->strings["It's complicated"] = ""; $a->strings["Don't care"] = ""; $a->strings["Ask me"] = ""; +$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["Visible to everybody"] = ""; +$a->strings["Show"] = ""; +$a->strings["Don't show"] = ""; +$a->strings["Permissions"] = ""; $a->strings["Not a valid email address"] = ""; $a->strings["Your email domain is not among those allowed on this site"] = ""; $a->strings["Your email address is already registered at this site."] = ""; @@ -382,19 +477,37 @@ $a->strings["your registration password"] = ""; $a->strings["Registration details for %s"] = ""; $a->strings["Account approved."] = ""; $a->strings["Registration revoked for %s"] = ""; -$a->strings["Unable to obtain identity information from database"] = ""; -$a->strings["Empty name"] = ""; -$a->strings["Name too long"] = ""; -$a->strings["No account identifier"] = ""; -$a->strings["Nickname has unsupported characters or is already being used on this site."] = ""; -$a->strings["Unable to retrieve created identity"] = ""; -$a->strings["Default Profile"] = ""; -$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["Invalid data packet"] = ""; -$a->strings["Unable to verify channel signature"] = ""; -$a->strings["Unable to verify site signature for %s"] = ""; +$a->strings["New window"] = ""; +$a->strings["Open the selected location in a different window or browser tab"] = ""; +$a->strings["Unknown | Not categorised"] = ""; +$a->strings["Block immediately"] = ""; +$a->strings["Shady, spammer, self-marketer"] = ""; +$a->strings["Known to me, but no opinion"] = ""; +$a->strings["OK, probably harmless"] = ""; +$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["Friendica"] = ""; +$a->strings["OStatus"] = ""; +$a->strings["RSS/Atom"] = ""; +$a->strings["Email"] = ""; +$a->strings["Diaspora"] = ""; +$a->strings["Facebook"] = ""; +$a->strings["Zot!"] = ""; +$a->strings["LinkedIn"] = ""; +$a->strings["XMPP/IM"] = ""; +$a->strings["MySpace"] = ""; +$a->strings["Profile"] = ""; +$a->strings["Update"] = ""; +$a->strings["Install"] = ""; +$a->strings["Unknown"] = ""; +$a->strings["Logged out."] = ""; +$a->strings["Failed authentication"] = ""; +$a->strings["Login failed."] = ""; $a->strings["prev"] = ""; $a->strings["first"] = ""; $a->strings["last"] = ""; @@ -407,9 +520,7 @@ $a->strings["%d Connection"] = array( 1 => "", ); $a->strings["View Connections"] = ""; -$a->strings["Save"] = ""; $a->strings["poke"] = ""; -$a->strings["poked"] = ""; $a->strings["ping"] = ""; $a->strings["pinged"] = ""; $a->strings["prod"] = ""; @@ -437,6 +548,7 @@ $a->strings["anxious"] = ""; $a->strings["cranky"] = ""; $a->strings["disturbed"] = ""; $a->strings["frustrated"] = ""; +$a->strings["depressed"] = ""; $a->strings["motivated"] = ""; $a->strings["relaxed"] = ""; $a->strings["surprised"] = ""; @@ -461,29 +573,76 @@ $a->strings["November"] = ""; $a->strings["December"] = ""; $a->strings["unknown.???"] = ""; $a->strings["bytes"] = ""; -$a->strings["remove"] = ""; -$a->strings["[remove]"] = ""; -$a->strings["Categories:"] = ""; -$a->strings["Filed under:"] = ""; +$a->strings["remove category"] = ""; +$a->strings["remove from file"] = ""; $a->strings["Click to open/close"] = ""; $a->strings["link to source"] = ""; +$a->strings["Select a page layout: "] = ""; $a->strings["default"] = ""; +$a->strings["Page content type: "] = ""; $a->strings["Select an alternate language"] = ""; -$a->strings["photo"] = ""; -$a->strings["event"] = ""; -$a->strings["status"] = ""; -$a->strings["comment"] = ""; $a->strings["activity"] = ""; -$a->strings["Logged out."] = ""; -$a->strings["Failed authentication"] = ""; -$a->strings["Login failed."] = ""; -$a->strings["Channel is blocked on this site."] = ""; -$a->strings["Channel location missing."] = ""; -$a->strings["Channel discovery failed. Website may be down or misconfigured."] = ""; -$a->strings["Response from remote channel was not understood."] = ""; -$a->strings["Response from remote channel was incomplete."] = ""; -$a->strings["local account not found."] = ""; -$a->strings["Cannot connect to yourself."] = ""; +$a->strings["Design"] = ""; +$a->strings["Blocks"] = ""; +$a->strings["Menus"] = ""; +$a->strings["Layouts"] = ""; +$a->strings["Pages"] = ""; +$a->strings["Missing room name"] = ""; +$a->strings["Duplicate room name"] = ""; +$a->strings["Invalid room specifier."] = ""; +$a->strings["Room not found."] = ""; +$a->strings["Room is full"] = ""; +$a->strings["General Features"] = ""; +$a->strings["Content Expiration"] = ""; +$a->strings["Remove posts/comments and/or private messages at a future time"] = ""; +$a->strings["Multiple Profiles"] = ""; +$a->strings["Ability to create multiple profiles"] = ""; +$a->strings["Web Pages"] = ""; +$a->strings["Provide managed web pages on your channel"] = ""; +$a->strings["Private Notes"] = ""; +$a->strings["Enables a tool to store notes and reminders"] = ""; +$a->strings["Extended Identity Sharing"] = ""; +$a->strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = ""; +$a->strings["Expert Mode"] = ""; +$a->strings["Enable Expert Mode to provide advanced configuration options"] = ""; +$a->strings["Premium Channel"] = ""; +$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = ""; +$a->strings["Post Composition Features"] = ""; +$a->strings["Richtext Editor"] = ""; +$a->strings["Enable richtext editor"] = ""; +$a->strings["Post Preview"] = ""; +$a->strings["Allow previewing posts and comments before publishing them"] = ""; +$a->strings["Automatically import channel content from other channels or feeds"] = ""; +$a->strings["Even More Encryption"] = ""; +$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = ""; +$a->strings["Network and Stream Filtering"] = ""; +$a->strings["Search by Date"] = ""; +$a->strings["Ability to select posts by date ranges"] = ""; +$a->strings["Collections Filter"] = ""; +$a->strings["Enable widget to display Network posts only from selected collections"] = ""; +$a->strings["Save search terms for re-use"] = ""; +$a->strings["Network Personal Tab"] = ""; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = ""; +$a->strings["Network New Tab"] = ""; +$a->strings["Enable tab to display all new Network activity"] = ""; +$a->strings["Affinity Tool"] = ""; +$a->strings["Filter stream activity by depth of relationships"] = ""; +$a->strings["Suggest Channels"] = ""; +$a->strings["Show channel suggestions"] = ""; +$a->strings["Post/Comment Tools"] = ""; +$a->strings["Edit Sent Posts"] = ""; +$a->strings["Edit and correct posts and comments after sending"] = ""; +$a->strings["Tagging"] = ""; +$a->strings["Ability to tag existing posts"] = ""; +$a->strings["Post Categories"] = ""; +$a->strings["Add categories to your posts"] = ""; +$a->strings["Ability to file posts under folders"] = ""; +$a->strings["Dislike Posts"] = ""; +$a->strings["Ability to dislike posts/comments"] = ""; +$a->strings["Star Posts"] = ""; +$a->strings["Ability to mark special posts with a star indicator"] = ""; +$a->strings["Tag Cloud"] = ""; +$a->strings["Provide a personal tag cloud on your channel page"] = ""; $a->strings["Can view my \"public\" stream and posts"] = ""; $a->strings["Can view my \"public\" channel profile"] = ""; $a->strings["Can view my \"public\" photo albums"] = ""; @@ -498,186 +657,553 @@ $a->strings["Can post photos to my photo albums"] = ""; $a->strings["Can forward to all my channel contacts via post @mentions"] = ""; $a->strings["Advanced - useful for creating group forum channels"] = ""; $a->strings["Can chat with me (when available)"] = ""; -$a->strings["Requires compatible chat plugin"] = ""; $a->strings["Can write to my \"public\" file storage"] = ""; $a->strings["Can edit my \"public\" pages"] = ""; +$a->strings["Can source my \"public\" posts in derived channels"] = ""; +$a->strings["Somewhat advanced - very useful in open communities"] = ""; $a->strings["Can administer my channel resources"] = ""; $a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = ""; -$a->strings["Tags"] = ""; -$a->strings["have"] = ""; -$a->strings["has"] = ""; -$a->strings["want"] = ""; -$a->strings["wants"] = ""; -$a->strings["like"] = ""; -$a->strings["likes"] = ""; -$a->strings["dislike"] = ""; -$a->strings["dislikes"] = ""; -$a->strings["Item was not found."] = ""; -$a->strings["No source file."] = ""; -$a->strings["Cannot locate file to replace"] = ""; -$a->strings["Cannot locate file to revise/update"] = ""; -$a->strings["File exceeds size limit of %d"] = ""; -$a->strings["File upload failed. Possible system limit or action terminated."] = ""; -$a->strings["Stored file could not be verified. Upload failed."] = ""; -$a->strings["Path not available."] = ""; -$a->strings["Private Message"] = ""; -$a->strings["Edit"] = ""; -$a->strings["Delete"] = ""; -$a->strings["Select"] = ""; -$a->strings["save to folder"] = ""; -$a->strings["add star"] = ""; -$a->strings["remove star"] = ""; -$a->strings["toggle star status"] = ""; -$a->strings["starred"] = ""; -$a->strings["add tag"] = ""; -$a->strings["I like this (toggle)"] = ""; -$a->strings["I don't like this (toggle)"] = ""; -$a->strings["Share this"] = ""; -$a->strings["share"] = ""; -$a->strings["View %s's profile - %s"] = ""; -$a->strings["to"] = ""; -$a->strings["Wall-to-Wall"] = ""; -$a->strings["via Wall-To-Wall:"] = ""; -$a->strings[" from %s"] = ""; -$a->strings["Please wait"] = ""; -$a->strings["%d comment"] = array( +$a->strings["Invalid data packet"] = ""; +$a->strings["Unable to verify channel signature"] = ""; +$a->strings["Unable to verify site signature for %s"] = ""; +$a->strings["%d invitation available"] = array( 0 => "", 1 => "", ); -$a->strings["This is you"] = ""; -$a->strings["Submit"] = ""; -$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["Preview"] = ""; -$a->strings["channel"] = ""; -$a->strings["%1\$s likes %2\$s's %3\$s"] = ""; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = ""; -$a->strings["%1\$s is now connected with %2\$s"] = ""; -$a->strings["%1\$s poked %2\$s"] = ""; -$a->strings["%1\$s is currently %2\$s"] = ""; -$a->strings["View %s's profile @ %s"] = ""; -$a->strings["View in context"] = ""; -$a->strings["Loading..."] = ""; -$a->strings["Delete Selected Items"] = ""; -$a->strings["Follow Thread"] = ""; -$a->strings["%s likes this."] = ""; -$a->strings["%s doesn't like this."] = ""; -$a->strings["%2\$d people like this."] = ""; -$a->strings["%2\$d people don't like this."] = ""; -$a->strings["and"] = ""; -$a->strings[", and %d other people"] = ""; -$a->strings["%s like this."] = ""; -$a->strings["%s don't like this."] = ""; -$a->strings["Visible to everybody"] = ""; -$a->strings["Please enter a link URL:"] = ""; -$a->strings["Please enter a video link/URL:"] = ""; -$a->strings["Please enter an audio link/URL:"] = ""; -$a->strings["Tag term:"] = ""; -$a->strings["Save to Folder:"] = ""; -$a->strings["Where are you right now?"] = ""; -$a->strings["Share"] = ""; -$a->strings["Page link title"] = ""; -$a->strings["Upload photo"] = ""; -$a->strings["upload photo"] = ""; -$a->strings["Attach file"] = ""; -$a->strings["attach file"] = ""; -$a->strings["Insert web link"] = ""; -$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 your location"] = ""; -$a->strings["set location"] = ""; -$a->strings["Clear browser location"] = ""; -$a->strings["clear location"] = ""; -$a->strings["Set title"] = ""; -$a->strings["Categories (comma-separated list)"] = ""; -$a->strings["Permission settings"] = ""; -$a->strings["permissions"] = ""; -$a->strings["Public post"] = ""; -$a->strings["Example: bob@example.com, mary@example.com"] = ""; -$a->strings["Permission denied"] = ""; -$a->strings["Item not found."] = ""; -$a->strings["Archives"] = ""; -$a->strings["Collection not found."] = ""; -$a->strings["Collection has no members."] = ""; -$a->strings["Connection not found."] = ""; -$a->strings["Image/photo"] = ""; -$a->strings["%1\$s wrote the following %2\$s %3\$s"] = ""; -$a->strings["post"] = ""; -$a->strings["$1 wrote:"] = ""; -$a->strings["Encrypted content"] = ""; -$a->strings["No channel."] = ""; -$a->strings["Common connections"] = ""; -$a->strings["No connections in common."] = ""; -$a->strings["Event title and start time are required."] = ""; -$a->strings["l, F j"] = ""; -$a->strings["Edit event"] = ""; -$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["Title:"] = ""; -$a->strings["Share this event"] = ""; -$a->strings["Object store: failed"] = ""; -$a->strings["thing/stuff added"] = ""; -$a->strings["OBJ: %1\$s %2\$s %3\$s"] = ""; -$a->strings["not yet implemented."] = ""; -$a->strings["Add Stuff to your Profile"] = ""; -$a->strings["Select a profile"] = ""; -$a->strings["Select a category of stuff. e.g. I ______ something"] = ""; -$a->strings["Name of thing or stuff e.g. something"] = ""; -$a->strings["URL of thing or stuff (optional)"] = ""; -$a->strings["URL for photo of thing or stuff (optional)"] = ""; -$a->strings["Total invitation limit exceeded."] = ""; -$a->strings["%s : Not a valid email address."] = ""; -$a->strings["Please join us on Red"] = ""; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = ""; -$a->strings["%s : Message delivery failed."] = ""; -$a->strings["%d message sent."] = array( +$a->strings["Advanced"] = ""; +$a->strings["Find Channels"] = ""; +$a->strings["Enter name or interest"] = ""; +$a->strings["Connect/Follow"] = ""; +$a->strings["Examples: Robert Morgenstein, Fishing"] = ""; +$a->strings["Find"] = ""; +$a->strings["Channel Suggestions"] = ""; +$a->strings["Random Profile"] = ""; +$a->strings["Invite Friends"] = ""; +$a->strings["Exammple: name=fred and country=iceland"] = ""; +$a->strings["Advanced Find"] = ""; +$a->strings["%d connection in common"] = array( 0 => "", 1 => "", ); -$a->strings["You have no more invitations available"] = ""; -$a->strings["Send invitations"] = ""; -$a->strings["Enter email addresses, one per line:"] = ""; -$a->strings["Your message:"] = ""; -$a->strings["You are cordially invited to join me and some other close friends on the Red Matrix - a revolutionary new decentralised social and information tool."] = ""; -$a->strings["You will need to supply this invitation code: \$invite_code"] = ""; -$a->strings["Please visit my channel at"] = ""; -$a->strings["Once you have registered, please connect with my Red Matrix channel address:"] = ""; -$a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = ""; -$a->strings["Friends of %s"] = ""; -$a->strings["No friends to display."] = ""; +$a->strings["Miscellaneous"] = ""; +$a->strings["year"] = ""; +$a->strings["month"] = ""; +$a->strings["day"] = ""; +$a->strings["never"] = ""; +$a->strings["less than a second ago"] = ""; +$a->strings["years"] = ""; +$a->strings["months"] = ""; +$a->strings["week"] = ""; +$a->strings["weeks"] = ""; +$a->strings["days"] = ""; +$a->strings["hour"] = ""; +$a->strings["hours"] = ""; +$a->strings["minute"] = ""; +$a->strings["minutes"] = ""; +$a->strings["second"] = ""; +$a->strings["seconds"] = ""; +$a->strings["%1\$d %2\$s ago"] = ""; +$a->strings["Unable to obtain identity information from database"] = ""; +$a->strings["Empty name"] = ""; +$a->strings["Name too long"] = ""; +$a->strings["No account identifier"] = ""; +$a->strings["Nickname is required."] = ""; +$a->strings["Reserved nickname. Please choose another."] = ""; +$a->strings["Nickname has unsupported characters or is already being used on this site."] = ""; +$a->strings["Unable to retrieve created identity"] = ""; +$a->strings["Default Profile"] = ""; +$a->strings["Requested channel is not available."] = ""; $a->strings["Requested profile is not available."] = ""; -$a->strings["View"] = ""; +$a->strings["Change profile photo"] = ""; +$a->strings["Profiles"] = ""; +$a->strings["Manage/edit profiles"] = ""; +$a->strings["Create New Profile"] = ""; +$a->strings["Edit Profile"] = ""; +$a->strings["Profile Image"] = ""; +$a->strings["visible to everybody"] = ""; +$a->strings["Edit visibility"] = ""; +$a->strings["Gender:"] = ""; +$a->strings["Status:"] = ""; +$a->strings["Homepage:"] = ""; +$a->strings["Online Now"] = ""; +$a->strings["g A l F d"] = ""; +$a->strings["F d"] = ""; +$a->strings["[today]"] = ""; +$a->strings["Birthday Reminders"] = ""; +$a->strings["Birthdays this week:"] = ""; +$a->strings["[No description]"] = ""; +$a->strings["Event Reminders"] = ""; +$a->strings["Events this week:"] = ""; +$a->strings["Full Name:"] = ""; +$a->strings["j F, Y"] = ""; +$a->strings["j F"] = ""; +$a->strings["Birthday:"] = ""; +$a->strings["Age:"] = ""; +$a->strings["for %1\$d %2\$s"] = ""; +$a->strings["Sexual Preference:"] = ""; +$a->strings["Hometown:"] = ""; +$a->strings["Tags:"] = ""; +$a->strings["Political Views:"] = ""; +$a->strings["Religion:"] = ""; +$a->strings["About:"] = ""; +$a->strings["Hobbies/Interests:"] = ""; +$a->strings["Likes:"] = ""; +$a->strings["Dislikes:"] = ""; +$a->strings["Contact information and Social Networks:"] = ""; +$a->strings["My other channels:"] = ""; +$a->strings["Musical interests:"] = ""; +$a->strings["Books, literature:"] = ""; +$a->strings["Television:"] = ""; +$a->strings["Film/dance/culture/entertainment:"] = ""; +$a->strings["Love/Romance:"] = ""; +$a->strings["Work/employment:"] = ""; +$a->strings["School/education:"] = ""; +$a->strings["Delete this item?"] = ""; +$a->strings["show fewer"] = ""; +$a->strings["+ Show More"] = ""; +$a->strings["- Show Less"] = ""; +$a->strings["Password too short"] = ""; +$a->strings["Passwords do not match"] = ""; +$a->strings["everybody"] = ""; +$a->strings["Secret Passphrase"] = ""; +$a->strings["Passphrase hint"] = ""; +$a->strings["Notice: Permissions have changed but have not yet been submitted."] = ""; +$a->strings["close all"] = ""; +$a->strings["timeago.prefixAgo"] = ""; +$a->strings["timeago.prefixFromNow"] = ""; +$a->strings["ago"] = ""; +$a->strings["from now"] = ""; +$a->strings["less than a minute"] = ""; +$a->strings["about a minute"] = ""; +$a->strings["%d minutes"] = ""; +$a->strings["about an hour"] = ""; +$a->strings["about %d hours"] = ""; +$a->strings["a day"] = ""; +$a->strings["%d days"] = ""; +$a->strings["about a month"] = ""; +$a->strings["%d months"] = ""; +$a->strings["about a year"] = ""; +$a->strings["%d years"] = ""; +$a->strings[" "] = ""; +$a->strings["timeago.numbers"] = ""; +$a->strings["Channel not found."] = ""; +$a->strings["Welcome to %s"] = ""; +$a->strings["Channel added."] = ""; +$a->strings["Public access denied."] = ""; +$a->strings["Age: "] = ""; +$a->strings["Gender: "] = ""; +$a->strings["Status: "] = ""; +$a->strings["Sexual Preference: "] = ""; +$a->strings["Homepage: "] = ""; +$a->strings["Hometown: "] = ""; +$a->strings["About: "] = ""; +$a->strings["Keywords: "] = ""; +$a->strings["Not found."] = ""; +$a->strings["network"] = ""; $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["You must be logged in to see this page."] = ""; -$a->strings["No installed applications."] = ""; -$a->strings["Applications"] = ""; +$a->strings["Item not found"] = ""; +$a->strings["Edit Layout"] = ""; +$a->strings["Delete layout?"] = ""; +$a->strings["Insert YouTube video"] = ""; +$a->strings["Insert Vorbis [.ogg] video"] = ""; +$a->strings["Insert Vorbis [.ogg] audio"] = ""; +$a->strings["Delete Layout"] = ""; +$a->strings["Hub not found."] = ""; +$a->strings["Fetching URL returns error: %1\$s"] = ""; +$a->strings["Tag removed"] = ""; +$a->strings["Remove Item Tag"] = ""; +$a->strings["Select a tag to remove: "] = ""; +$a->strings["Remove"] = ""; +$a->strings["Add a Channel"] = ""; +$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = ""; +$a->strings["Channel Name"] = ""; +$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = ""; +$a->strings["Choose a short nickname"] = ""; +$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = ""; +$a->strings["Or import an existing channel from another location"] = ""; +$a->strings["Create"] = ""; +$a->strings["Public Sites"] = ""; +$a->strings["The listed sites allow public registration into the Red Matrix. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = ""; +$a->strings["Site URL"] = ""; +$a->strings["Access Type"] = ""; +$a->strings["Registration Policy"] = ""; +$a->strings["Location"] = ""; +$a->strings["[Embedded content - reload page to view]"] = ""; +$a->strings["Collection created."] = ""; +$a->strings["Could not create collection."] = ""; +$a->strings["Collection updated."] = ""; +$a->strings["Create a collection of channels."] = ""; +$a->strings["Collection Name: "] = ""; +$a->strings["Members are visible to other channels"] = ""; +$a->strings["Collection removed."] = ""; +$a->strings["Unable to remove collection."] = ""; +$a->strings["Collection Editor"] = ""; +$a->strings["Members"] = ""; +$a->strings["All Connected Channels"] = ""; +$a->strings["Click on a channel to add or remove."] = ""; +$a->strings["Thing updated"] = ""; +$a->strings["Object store: failed"] = ""; +$a->strings["Thing added"] = ""; +$a->strings["OBJ: %1\$s %2\$s %3\$s"] = ""; +$a->strings["Show Thing"] = ""; +$a->strings["item not found."] = ""; +$a->strings["Edit Thing"] = ""; +$a->strings["Select a profile"] = ""; +$a->strings["Select a category of stuff. e.g. I ______ something"] = ""; +$a->strings["Post an activity"] = ""; +$a->strings["Only sends to viewers of the applicable profile"] = ""; +$a->strings["Name of thing e.g. something"] = ""; +$a->strings["URL of thing (optional)"] = ""; +$a->strings["URL for photo of thing (optional)"] = ""; +$a->strings["Add Thing to your Profile"] = ""; +$a->strings["Invalid request identifier."] = ""; +$a->strings["Discard"] = ""; +$a->strings["Ignore"] = ""; +$a->strings["No more system notifications."] = ""; +$a->strings["System Notifications"] = ""; $a->strings["Invalid item."] = ""; -$a->strings["Channel not found."] = ""; +$a->strings["Page not found."] = ""; +$a->strings["Messages"] = ""; +$a->strings["Conversation removed."] = ""; +$a->strings["No messages."] = ""; +$a->strings["Delete message"] = ""; +$a->strings["D, d M Y - g:i A"] = ""; +$a->strings["Edit post"] = ""; +$a->strings["Finding:"] = ""; +$a->strings["next page"] = ""; +$a->strings["previous page"] = ""; +$a->strings["No entries (some entries may be hidden)."] = ""; +$a->strings["Menu not found."] = ""; +$a->strings["Menu element updated."] = ""; +$a->strings["Unable to update menu element."] = ""; +$a->strings["Menu element added."] = ""; +$a->strings["Unable to add menu element."] = ""; +$a->strings["Manage Menu Elements"] = ""; +$a->strings["Edit menu"] = ""; +$a->strings["Edit element"] = ""; +$a->strings["Drop element"] = ""; +$a->strings["New element"] = ""; +$a->strings["Edit this menu container"] = ""; +$a->strings["Add menu element"] = ""; +$a->strings["Delete this menu item"] = ""; +$a->strings["Edit this menu item"] = ""; +$a->strings["New Menu Element"] = ""; +$a->strings["Menu Item Permissions"] = ""; +$a->strings["(click to open/close)"] = ""; +$a->strings["Link text"] = ""; +$a->strings["URL of link"] = ""; +$a->strings["Use Red magic-auth if available"] = ""; +$a->strings["Open link in new window"] = ""; +$a->strings["Order in list"] = ""; +$a->strings["Higher numbers will sink to bottom of listing"] = ""; +$a->strings["Menu item not found."] = ""; +$a->strings["Menu item deleted."] = ""; +$a->strings["Menu item could not be deleted."] = ""; +$a->strings["Edit Menu Element"] = ""; +$a->strings["Modify"] = ""; +$a->strings["Continue"] = ""; +$a->strings["Premium Channel Setup"] = ""; +$a->strings["Enable premium channel connection restrictions"] = ""; +$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = ""; +$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = ""; +$a->strings["Potential connections will then see the following text before proceeding:"] = ""; +$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = ""; +$a->strings["(No specific instructions have been provided by the channel owner.)"] = ""; +$a->strings["Restricted or Premium Channel"] = ""; +$a->strings["Unable to locate original post."] = ""; +$a->strings["Empty post discarded."] = ""; +$a->strings["Executable content type not permitted to this channel."] = ""; +$a->strings["System error. Post not saved."] = ""; +$a->strings["You have reached your limit of %1$.0f top level posts."] = ""; +$a->strings["You have reached your limit of %1$.0f webpages."] = ""; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = ""; +$a->strings["No such group"] = ""; +$a->strings["Search Results For:"] = ""; +$a->strings["Collection is empty"] = ""; +$a->strings["Collection: "] = ""; +$a->strings["Connection: "] = ""; +$a->strings["Invalid connection."] = ""; +$a->strings["Version %s"] = ""; +$a->strings["Installed plugins/addons/apps:"] = ""; +$a->strings["No installed plugins/addons/apps"] = ""; +$a->strings["Red"] = ""; +$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralised privacy enhanced websites."] = ""; +$a->strings["Running at web location"] = ""; +$a->strings["Please visit GetZot.com to learn more about the Red Matrix."] = ""; +$a->strings["Bug reports and issues: please visit"] = ""; +$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = ""; +$a->strings["Site Administrators"] = ""; +$a->strings["Bookmark added"] = ""; +$a->strings["My Bookmarks"] = ""; +$a->strings["My Connections Bookmarks"] = ""; +$a->strings["You must be logged in to see this page."] = ""; +$a->strings["Insufficient permissions. Request redirected to profile page."] = ""; +$a->strings["Layout updated."] = ""; +$a->strings["Edit System Page Description"] = ""; +$a->strings["Layout not found."] = ""; +$a->strings["Module Name:"] = ""; +$a->strings["Layout Help"] = ""; +$a->strings["Unable to find your hub."] = ""; +$a->strings["Post successful."] = ""; +$a->strings["%1\$s is following %2\$s's %3\$s"] = ""; +$a->strings["toggle full screen mode"] = ""; +$a->strings["invalid target signature"] = ""; +$a->strings["Failed to create source. No channel selected."] = ""; +$a->strings["Source created."] = ""; +$a->strings["Source updated."] = ""; +$a->strings["*"] = ""; +$a->strings["Manage remote sources of content for your channel."] = ""; +$a->strings["New Source"] = ""; +$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = ""; +$a->strings["Only import content with these words (one per line)"] = ""; +$a->strings["Leave blank to import all public content"] = ""; +$a->strings["Source not found."] = ""; +$a->strings["Edit Source"] = ""; +$a->strings["Delete Source"] = ""; +$a->strings["Source removed"] = ""; +$a->strings["Unable to remove source."] = ""; +$a->strings["Invalid profile identifier."] = ""; +$a->strings["Profile Visibility Editor"] = ""; +$a->strings["Click on a contact to add or remove."] = ""; +$a->strings["Visible To"] = ""; +$a->strings["All Connections"] = ""; +$a->strings["Image uploaded but image cropping failed."] = ""; +$a->strings["Image resize failed."] = ""; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = ""; +$a->strings["Image exceeds size limit of %d"] = ""; +$a->strings["Unable to process image."] = ""; +$a->strings["Photo not available."] = ""; +$a->strings["Upload File:"] = ""; +$a->strings["Select a profile:"] = ""; +$a->strings["Upload Profile Photo"] = ""; +$a->strings["Upload"] = ""; +$a->strings["or"] = ""; +$a->strings["skip this step"] = ""; +$a->strings["select a photo from your photo albums"] = ""; +$a->strings["Crop Image"] = ""; +$a->strings["Please adjust the image cropping for optimum viewing."] = ""; +$a->strings["Done Editing"] = ""; +$a->strings["Image uploaded successfully."] = ""; +$a->strings["Image upload failed."] = ""; +$a->strings["Image size reduction [%s] failed."] = ""; +$a->strings["Block Name"] = ""; +$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = ""; +$a->strings["Welcome %s. Remote authentication successful."] = ""; +$a->strings["Permission Denied."] = ""; +$a->strings["File not found."] = ""; +$a->strings["Edit file permissions"] = ""; +$a->strings["Set/edit permissions"] = ""; +$a->strings["Include all files and sub folders"] = ""; +$a->strings["Return to file list"] = ""; +$a->strings["Copy/paste this code to attach file to a post"] = ""; +$a->strings["Copy/paste this URL to link file from a web page"] = ""; +$a->strings["Download"] = ""; +$a->strings["Used: "] = ""; +$a->strings["[directory]"] = ""; +$a->strings["Limit: "] = ""; +$a->strings["Remote privacy information not available."] = ""; +$a->strings["Visible to:"] = ""; +$a->strings["Contact not found."] = ""; +$a->strings["Friend suggestion sent."] = ""; +$a->strings["Suggest Friends"] = ""; +$a->strings["Suggest a friend for %s"] = ""; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = ""; +$a->strings["Could not access contact record."] = ""; +$a->strings["Could not locate selected profile."] = ""; +$a->strings["Connection updated."] = ""; +$a->strings["Failed to update connection record."] = ""; +$a->strings["Could not access address book record."] = ""; +$a->strings["Refresh failed - channel is currently unavailable."] = ""; +$a->strings["Channel has been unblocked"] = ""; +$a->strings["Channel has been blocked"] = ""; +$a->strings["Unable to set address book parameters."] = ""; +$a->strings["Channel has been unignored"] = ""; +$a->strings["Channel has been ignored"] = ""; +$a->strings["Channel has been unarchived"] = ""; +$a->strings["Channel has been archived"] = ""; +$a->strings["Channel has been unhidden"] = ""; +$a->strings["Channel has been hidden"] = ""; +$a->strings["Channel has been approved"] = ""; +$a->strings["Channel has been unapproved"] = ""; +$a->strings["Connection has been removed."] = ""; +$a->strings["View %s's profile"] = ""; +$a->strings["Refresh Permissions"] = ""; +$a->strings["Fetch updated permissions"] = ""; +$a->strings["Recent Activity"] = ""; +$a->strings["View recent posts and comments"] = ""; +$a->strings["Unblock"] = ""; +$a->strings["Block"] = ""; +$a->strings["Block or Unblock this connection"] = ""; +$a->strings["Unignore"] = ""; +$a->strings["Ignore or Unignore this connection"] = ""; +$a->strings["Unarchive"] = ""; +$a->strings["Archive"] = ""; +$a->strings["Archive or Unarchive this connection"] = ""; +$a->strings["Unhide"] = ""; +$a->strings["Hide"] = ""; +$a->strings["Hide or Unhide this connection"] = ""; +$a->strings["Delete this connection"] = ""; +$a->strings["Approve this connection"] = ""; +$a->strings["Accept connection to allow communication"] = ""; +$a->strings["Automatic Permissions Settings"] = ""; +$a->strings["Connections: settings for %s"] = ""; +$a->strings["When receiving a channel introduction, any permissions provided here will be applied to the new connection automatically and the introduction approved. Leave this page if you do not wish to use this feature."] = ""; +$a->strings["Slide to adjust your degree of friendship"] = ""; +$a->strings["inherited"] = ""; +$a->strings["Connection has no individual permissions!"] = ""; +$a->strings["This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"."] = ""; +$a->strings["Profile Visibility"] = ""; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = ""; +$a->strings["Contact Information / Notes"] = ""; +$a->strings["Edit contact notes"] = ""; +$a->strings["Their Settings"] = ""; +$a->strings["My Settings"] = ""; +$a->strings["Clear/Disable Automatic Permissions"] = ""; +$a->strings["Forum Members"] = ""; +$a->strings["Soapbox"] = ""; +$a->strings["Full Sharing (typical social network permissions)"] = ""; +$a->strings["Cautious Sharing "] = ""; +$a->strings["Follow Only"] = ""; +$a->strings["Individual Permissions"] = ""; +$a->strings["Some permissions may be inherited from your channel privacy settings, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = ""; +$a->strings["Advanced Permissions"] = ""; +$a->strings["Simple Permissions (select one and submit)"] = ""; +$a->strings["Visit %s's profile - %s"] = ""; +$a->strings["Block/Unblock contact"] = ""; +$a->strings["Ignore contact"] = ""; +$a->strings["Repair URL settings"] = ""; +$a->strings["View conversations"] = ""; +$a->strings["Delete contact"] = ""; +$a->strings["Last update:"] = ""; +$a->strings["Update public posts"] = ""; +$a->strings["Update now"] = ""; +$a->strings["Currently blocked"] = ""; +$a->strings["Currently ignored"] = ""; +$a->strings["Currently archived"] = ""; +$a->strings["Currently pending"] = ""; +$a->strings["Hide this contact from others"] = ""; +$a->strings["Replies/likes to your public posts may still be visible"] = ""; +$a->strings["This site is not a directory server"] = ""; +$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["Authentication failed."] = ""; +$a->strings["Remote Authentication"] = ""; +$a->strings["Enter your channel address (e.g. channel@example.com)"] = ""; +$a->strings["Authenticate"] = ""; $a->strings["Item not available."] = ""; +$a->strings["Item is not editable"] = ""; +$a->strings["Delete item?"] = ""; +$a->strings["Name is required"] = ""; +$a->strings["Key and Secret are required"] = ""; +$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["Not valid email."] = ""; +$a->strings["Protected email address. Cannot change to that email."] = ""; +$a->strings["System failure storing new email. Please try again."] = ""; +$a->strings["Settings updated."] = ""; +$a->strings["Add application"] = ""; +$a->strings["Name"] = ""; +$a->strings["Name of application"] = ""; +$a->strings["Consumer Key"] = ""; +$a->strings["Automatically generated - change if desired. Max length 20"] = ""; +$a->strings["Consumer Secret"] = ""; +$a->strings["Redirect"] = ""; +$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = ""; +$a->strings["Icon url"] = ""; +$a->strings["Optional"] = ""; +$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 feature settings configured"] = ""; +$a->strings["Feature Settings"] = ""; +$a->strings["Account Settings"] = ""; +$a->strings["Password Settings"] = ""; +$a->strings["New Password:"] = ""; +$a->strings["Confirm:"] = ""; +$a->strings["Leave password fields blank unless changing"] = ""; +$a->strings["Email Address:"] = ""; +$a->strings["Remove Account"] = ""; +$a->strings["Warning: This action is permanent and cannot be reversed."] = ""; +$a->strings["Off"] = ""; +$a->strings["On"] = ""; +$a->strings["Additional Features"] = ""; +$a->strings["Connector Settings"] = ""; +$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"] = ""; +$a->strings["Maximum number of conversations to load at any time:"] = ""; +$a->strings["Maximum of 100 items"] = ""; +$a->strings["Don't show emoticons"] = ""; +$a->strings["Do not view remote profiles in frames"] = ""; +$a->strings["By default open in a sub-window of your own site"] = ""; +$a->strings["System Page Layout Editor - (advanced)"] = ""; +$a->strings["Nobody except yourself"] = ""; +$a->strings["Only those you specifically allow"] = ""; +$a->strings["Anybody in your address book"] = ""; +$a->strings["Anybody on this website"] = ""; +$a->strings["Anybody in this network"] = ""; +$a->strings["Anybody authenticated"] = ""; +$a->strings["Anybody on the internet"] = ""; +$a->strings["Publish your default profile in the network directory"] = ""; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = ""; +$a->strings["Your channel address is"] = ""; +$a->strings["Channel Settings"] = ""; +$a->strings["Basic Settings"] = ""; +$a->strings["Your Timezone:"] = ""; +$a->strings["Default Post Location:"] = ""; +$a->strings["Geographical location to display on your posts"] = ""; +$a->strings["Use Browser Location:"] = ""; +$a->strings["Adult Content"] = ""; +$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = ""; +$a->strings["Security and Privacy Settings"] = ""; +$a->strings["Hide my online presence"] = ""; +$a->strings["Prevents displaying in your profile that you are online"] = ""; +$a->strings["Simple Privacy Settings:"] = ""; +$a->strings["Very Public - extremely permissive (should be used with caution)"] = ""; +$a->strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = ""; +$a->strings["Private - default private, never open or public"] = ""; +$a->strings["Blocked - default blocked to/from everybody"] = ""; +$a->strings["Allow others to tag your posts"] = ""; +$a->strings["Often used by the community to retro-actively flag inappropriate content"] = ""; +$a->strings["Advanced Privacy Settings"] = ""; +$a->strings["Expire other channel content after this many days"] = ""; +$a->strings["0 or blank prevents expiration"] = ""; +$a->strings["Maximum Friend Requests/Day:"] = ""; +$a->strings["May reduce spam activity"] = ""; +$a->strings["Default Post Permissions"] = ""; +$a->strings["Maximum private messages per day from unknown people:"] = ""; +$a->strings["Useful to reduce spamming"] = ""; +$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 interesting profile change"] = ""; +$a->strings["Send a notification email when:"] = ""; +$a->strings["You receive a connection request"] = ""; +$a->strings["Your connections 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["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["Please enable expert mode (in Settings > Additional features) to adjust!"] = ""; +$a->strings["Miscellaneous Settings"] = ""; +$a->strings["Personal menu to display in your channel pages"] = ""; $a->strings["Red Matrix Server - Setup"] = ""; $a->strings["Could not connect to database."] = ""; $a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = ""; @@ -686,6 +1212,7 @@ $a->strings["Your site database has been installed."] = ""; $a->strings["You may need to import the file \"install/database.sql\" manually using phpmyadmin or mysql."] = ""; $a->strings["Please see the file \"install/INSTALL.txt\"."] = ""; $a->strings["System check"] = ""; +$a->strings["Next"] = ""; $a->strings["Check again"] = ""; $a->strings["Database connection"] = ""; $a->strings["In order to install Red Matrix we need to know how to connect to your database."] = ""; @@ -741,164 +1268,41 @@ $a->strings["In order to store these compiled templates, the web server needs to $a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = ""; $a->strings["Note: as a security measure, you should give the web server write access to view/tpl/smarty3/ only--not the template files (.tpl) that it contains."] = ""; $a->strings["view/tpl/smarty3 is writable"] = ""; -$a->strings["SSL certificate validation"] = ""; +$a->strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = ""; +$a->strings["store is writable"] = ""; $a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = ""; +$a->strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = ""; +$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = ""; +$a->strings["If your certificate is not recognised, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = ""; +$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = ""; +$a->strings["Providers are available that issue free certificates which are browser-valid."] = ""; +$a->strings["SSL certificate validation"] = ""; $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."] = ""; $a->strings["Errors encountered creating database tables."] = ""; $a->strings["

What next

"] = ""; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = ""; -$a->strings["%1\$s is following %2\$s's %3\$s"] = ""; -$a->strings["[Embedded content - reload page to view]"] = ""; -$a->strings["toggle full screen mode"] = ""; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = ""; -$a->strings["Account settings"] = ""; -$a->strings["Channel settings"] = ""; -$a->strings["Additional features"] = ""; -$a->strings["Feature settings"] = ""; -$a->strings["Display settings"] = ""; -$a->strings["Connected apps"] = ""; -$a->strings["Export channel"] = ""; -$a->strings["Automatic Permissions (Advanced)"] = ""; -$a->strings["Missing some important data!"] = ""; -$a->strings["Update"] = ""; -$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["Not valid email."] = ""; -$a->strings["Protected email address. Cannot change to that email."] = ""; -$a->strings["System failure storing new email. Please try again."] = ""; -$a->strings["Settings updated."] = ""; -$a->strings["Add application"] = ""; -$a->strings["Cancel"] = ""; -$a->strings["Name"] = ""; -$a->strings["Consumer Key"] = ""; -$a->strings["Consumer Secret"] = ""; -$a->strings["Redirect"] = ""; -$a->strings["Icon 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 feature settings configured"] = ""; -$a->strings["Feature Settings"] = ""; -$a->strings["Account Settings"] = ""; -$a->strings["Password Settings"] = ""; -$a->strings["New Password:"] = ""; -$a->strings["Confirm:"] = ""; -$a->strings["Leave password fields blank unless changing"] = ""; -$a->strings["Email Address:"] = ""; -$a->strings["Remove Account"] = ""; -$a->strings["Warning: This action is permanent and cannot be reversed."] = ""; -$a->strings["Off"] = ""; -$a->strings["On"] = ""; -$a->strings["Additional Features"] = ""; -$a->strings["Connector Settings"] = ""; -$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"] = ""; -$a->strings["Maximum number of conversations to load at any time:"] = ""; -$a->strings["Maximum of 100 items"] = ""; -$a->strings["Don't show emoticons"] = ""; -$a->strings["Nobody except yourself"] = ""; -$a->strings["Only those you specifically allow"] = ""; -$a->strings["Anybody in your address book"] = ""; -$a->strings["Anybody on this website"] = ""; -$a->strings["Anybody in this network"] = ""; -$a->strings["Anybody on the internet"] = ""; -$a->strings["Publish your default profile in the network directory"] = ""; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = ""; -$a->strings["or"] = ""; -$a->strings["Your channel 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 starred posts:"] = ""; -$a->strings["Expire photos:"] = ""; -$a->strings["Only expire posts by others:"] = ""; -$a->strings["Channel Settings"] = ""; -$a->strings["Basic Settings"] = ""; -$a->strings["Your Timezone:"] = ""; -$a->strings["Default Post Location:"] = ""; -$a->strings["Use Browser Location:"] = ""; -$a->strings["Security and Privacy Settings"] = ""; -$a->strings["Quick Privacy Settings:"] = ""; -$a->strings["Very Public - extremely permissive"] = ""; -$a->strings["Typical - default public, privacy when desired"] = ""; -$a->strings["Private - default private, rarely open or public"] = ""; -$a->strings["Blocked - default blocked to/from everybody"] = ""; -$a->strings["Maximum Friend Requests/Day:"] = ""; -$a->strings["May reduce spam activity"] = ""; -$a->strings["Default Post Permissions"] = ""; -$a->strings["(click to open/close)"] = ""; -$a->strings["Maximum private messages per day from unknown people:"] = ""; -$a->strings["Useful to reduce spamming"] = ""; -$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 interesting profile change"] = ""; -$a->strings["Send a notification email when:"] = ""; -$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["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["Public access denied."] = ""; -$a->strings["No connections."] = ""; -$a->strings["Visit %s's profile [%s]"] = ""; -$a->strings["View Connnections"] = ""; -$a->strings["Tag removed"] = ""; -$a->strings["Remove Item Tag"] = ""; -$a->strings["Select a tag to remove: "] = ""; -$a->strings["Remove"] = ""; -$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["Age: "] = ""; -$a->strings["Gender: "] = ""; -$a->strings["Finding:"] = ""; -$a->strings["next page"] = ""; -$a->strings["previous page"] = ""; -$a->strings["No entries (some entries may be hidden)."] = ""; -$a->strings["People Search"] = ""; -$a->strings["No matches"] = ""; -$a->strings["Collection created."] = ""; -$a->strings["Could not create collection."] = ""; -$a->strings["Collection name changed."] = ""; -$a->strings["Create a collection of channels."] = ""; -$a->strings["Collection Name: "] = ""; -$a->strings["Members are visible to other channels"] = ""; -$a->strings["Collection removed."] = ""; -$a->strings["Unable to remove collection."] = ""; -$a->strings["Collection Editor"] = ""; -$a->strings["Members"] = ""; -$a->strings["All Connected Channels"] = ""; -$a->strings["Click on a channel to add or remove."] = ""; +$a->strings["Event title and start time are required."] = ""; +$a->strings["l, F j"] = ""; +$a->strings["Edit event"] = ""; +$a->strings["Create New Event"] = ""; +$a->strings["Previous"] = ""; +$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["Title:"] = ""; +$a->strings["Share this event"] = ""; $a->strings["Page owner information could not be retrieved."] = ""; $a->strings["Album not found."] = ""; $a->strings["Delete Album"] = ""; $a->strings["Delete Photo"] = ""; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = ""; -$a->strings["a photo"] = ""; $a->strings["No photos selected"] = ""; $a->strings["Access to this item is restricted."] = ""; $a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = ""; @@ -907,7 +1311,6 @@ $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["Contact Photos"] = ""; $a->strings["Edit Album"] = ""; $a->strings["Show Newest First"] = ""; @@ -924,281 +1327,55 @@ $a->strings["New album name"] = ""; $a->strings["Caption"] = ""; $a->strings["Add a Tag"] = ""; $a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = ""; +$a->strings["In This Photo:"] = ""; $a->strings["View Album"] = ""; $a->strings["Recent Photos"] = ""; -$a->strings["sent you a private message"] = ""; -$a->strings["added your channel"] = ""; -$a->strings["g A l F d"] = ""; -$a->strings["[today]"] = ""; -$a->strings["posted an event"] = ""; -$a->strings["Not found."] = ""; -$a->strings["- select -"] = ""; -$a->strings["Welcome to %s"] = ""; -$a->strings["Check Mail"] = ""; -$a->strings["Unable to lookup recipient."] = ""; -$a->strings["Unable to communicate with requested channel."] = ""; -$a->strings["Cannot verify requested channel."] = ""; -$a->strings["Selected channel has private message restrictions. Send failed."] = ""; -$a->strings["Messages"] = ""; -$a->strings["Message deleted."] = ""; -$a->strings["Conversation removed."] = ""; -$a->strings["Send Private Message"] = ""; -$a->strings["To:"] = ""; -$a->strings["Subject:"] = ""; -$a->strings["No messages."] = ""; -$a->strings["Delete message"] = ""; -$a->strings["D, d M Y - g:i A"] = ""; -$a->strings["Message not found."] = ""; -$a->strings["Delete conversation"] = ""; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; -$a->strings["Send Reply"] = ""; -$a->strings["No profile"] = ""; $a->strings["Help:"] = ""; $a->strings["Not Found"] = ""; -$a->strings["Page not found."] = ""; -$a->strings["Remote Authentication"] = ""; -$a->strings["Enter your channel address (e.g. channel@example.com)"] = ""; -$a->strings["Authenticate"] = ""; -$a->strings["Unable to locate original post."] = ""; -$a->strings["Empty post discarded."] = ""; -$a->strings["System error. Post not saved."] = ""; -$a->strings["Wall Photos"] = ""; -$a->strings["Remove term"] = ""; -$a->strings["Commented Order"] = ""; -$a->strings["Sort by Comment Date"] = ""; -$a->strings["Posted Order"] = ""; -$a->strings["Sort by Post Date"] = ""; -$a->strings["Personal"] = ""; -$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["Spam"] = ""; -$a->strings["Posts flagged as SPAM"] = ""; -$a->strings["Refresh"] = ""; -$a->strings["Me"] = ""; -$a->strings["Best Friends"] = ""; -$a->strings["Co-workers"] = ""; -$a->strings["Former Friends"] = ""; -$a->strings["Acquaintances"] = ""; -$a->strings["Everybody"] = ""; -$a->strings["Search Results For:"] = ""; -$a->strings["No such group"] = ""; -$a->strings["Group is empty"] = ""; -$a->strings["Contact: "] = ""; -$a->strings["Invalid contact."] = ""; -$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["Plugin Features"] = ""; -$a->strings["User registrations waiting for confirmation"] = ""; -$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["No special theme for accessibility"] = ""; -$a->strings["Closed"] = ""; -$a->strings["Requires approval"] = ""; -$a->strings["Open"] = ""; -$a->strings["Private"] = ""; -$a->strings["Paid Access"] = ""; -$a->strings["Free Access"] = ""; -$a->strings["No SSL policy, links will track page SSL state"] = ""; -$a->strings["Force all links to use SSL"] = ""; -$a->strings["Registration"] = ""; -$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 - change theme settings"] = ""; -$a->strings["Mobile system theme"] = ""; -$a->strings["Theme for mobile devices"] = ""; -$a->strings["Accessibility system theme"] = ""; -$a->strings["Accessibility theme"] = ""; -$a->strings["Channel to use for this website's static pages"] = ""; -$a->strings["Site Channel"] = ""; -$a->strings["SSL link policy"] = ""; -$a->strings["Determines whether generated links should be forced to use SSL"] = ""; -$a->strings["Maximum image size"] = ""; -$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = ""; -$a->strings["Register policy"] = ""; -$a->strings["Access policy"] = ""; -$a->strings["Register text"] = ""; -$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"] = ""; -$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["Proxy user"] = ""; -$a->strings["Proxy 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["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 => "", - 1 => "", -); -$a->strings["Account not found"] = ""; -$a->strings["User '%s' deleted"] = ""; -$a->strings["User '%s' unblocked"] = ""; -$a->strings["User '%s' blocked"] = ""; -$a->strings["Normal Account"] = ""; -$a->strings["Soapbox Account"] = ""; -$a->strings["Community/Celebrity Account"] = ""; -$a->strings["Automatic Friend Account"] = ""; -$a->strings["select all"] = ""; -$a->strings["User registrations waiting for confirm"] = ""; -$a->strings["Request date"] = ""; -$a->strings["No registrations."] = ""; -$a->strings["Approve"] = ""; -$a->strings["Deny"] = ""; -$a->strings["Block"] = ""; -$a->strings["Unblock"] = ""; -$a->strings["Register date"] = ""; -$a->strings["Last login"] = ""; -$a->strings["Service Class"] = ""; -$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["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 Red top-level directory."] = ""; -$a->strings["Log level"] = ""; -$a->strings["Ignore"] = ""; -$a->strings["Connection updated."] = ""; -$a->strings["Connection update failed."] = ""; -$a->strings["Introductions and Connection Requests"] = ""; -$a->strings["No pending introductions."] = ""; -$a->strings["System error. Please try again later."] = ""; -$a->strings["Hide this contact from others"] = ""; -$a->strings["Post a new friend activity"] = ""; -$a->strings["if applicable"] = ""; -$a->strings["Discard"] = ""; -$a->strings["Could not access contact record."] = ""; -$a->strings["Could not locate selected profile."] = ""; -$a->strings["Failed to update connection record."] = ""; -$a->strings["Could not access address book record."] = ""; -$a->strings["Refresh failed - channel is currently unavailable."] = ""; -$a->strings["Channel has been unblocked"] = ""; -$a->strings["Channel has been blocked"] = ""; -$a->strings["Unable to set address book parameters."] = ""; -$a->strings["Channel has been unignored"] = ""; -$a->strings["Channel has been ignored"] = ""; -$a->strings["Channel has been unarchived"] = ""; -$a->strings["Channel has been archived"] = ""; -$a->strings["Channel has been unhidden"] = ""; -$a->strings["Channel has been hidden"] = ""; -$a->strings["Channel has been approved"] = ""; -$a->strings["Channel has been unapproved"] = ""; -$a->strings["Contact has been removed."] = ""; -$a->strings["View %s's profile"] = ""; -$a->strings["Refresh Permissions"] = ""; -$a->strings["Fetch updated permissions"] = ""; -$a->strings["Block or Unblock this connection"] = ""; -$a->strings["Unignore"] = ""; -$a->strings["Ignore or Unignore this connection"] = ""; -$a->strings["Unarchive"] = ""; -$a->strings["Archive"] = ""; -$a->strings["Archive or Unarchive this connection"] = ""; -$a->strings["Unhide"] = ""; -$a->strings["Hide"] = ""; -$a->strings["Hide or Unhide this connection"] = ""; -$a->strings["Delete this connection"] = ""; -$a->strings["Unknown"] = ""; -$a->strings["Approve this connection"] = ""; -$a->strings["Accept connection to allow communication"] = ""; -$a->strings["Automatic Permissions Settings"] = ""; -$a->strings["Connections: settings for %s"] = ""; -$a->strings["When receiving a channel introduction, any permissions provided here will be applied to the new connection automatically and the introduction approved. Leave this page if you do not wish to use this feature."] = ""; -$a->strings["Slide to adjust your degree of friendship"] = ""; -$a->strings["Connection has no individual permissions!"] = ""; -$a->strings["This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"."] = ""; -$a->strings["Profile Visibility"] = ""; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = ""; -$a->strings["Contact Information / Notes"] = ""; -$a->strings["Edit contact notes"] = ""; -$a->strings["Their Settings"] = ""; -$a->strings["My Settings"] = ""; -$a->strings["Forum Members"] = ""; -$a->strings["Soapbox"] = ""; -$a->strings["Full Sharing"] = ""; -$a->strings["Cautious Sharing"] = ""; -$a->strings["Follow Only"] = ""; -$a->strings["Individual Permissions"] = ""; -$a->strings["Individual permissions are only enabled for privacy settings which are set to \"Only those you specifically allow\". Otherwise they are controlled by your privacy settings."] = ""; -$a->strings["Advanced Permissions"] = ""; -$a->strings["Quick Links"] = ""; -$a->strings["Visit %s's profile - %s"] = ""; -$a->strings["Block/Unblock contact"] = ""; -$a->strings["Ignore contact"] = ""; -$a->strings["Repair URL settings"] = ""; -$a->strings["View conversations"] = ""; -$a->strings["Delete contact"] = ""; -$a->strings["Last update:"] = ""; -$a->strings["Update public posts"] = ""; -$a->strings["Update now"] = ""; -$a->strings["Currently blocked"] = ""; -$a->strings["Currently ignored"] = ""; -$a->strings["Currently archived"] = ""; -$a->strings["Currently pending"] = ""; -$a->strings["Replies/likes to your public posts may still be visible"] = ""; +$a->strings["sent you a private message"] = ""; +$a->strings["added your channel"] = ""; +$a->strings["posted an event"] = ""; +$a->strings["No valid account found."] = ""; +$a->strings["Password reset request issued. Check your email."] = ""; +$a->strings["Site Member (%s)"] = ""; +$a->strings["Password reset requested at %s"] = ""; +$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."] = ""; +$a->strings["Your new password is"] = ""; +$a->strings["Save or copy your new password - and then"] = ""; +$a->strings["click here to login"] = ""; +$a->strings["Your password may be changed from the Settings page after successful login."] = ""; +$a->strings["Your password has changed at %s"] = ""; +$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["Email Address"] = ""; +$a->strings["Reset"] = ""; +$a->strings["Remove This Channel"] = ""; +$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = ""; +$a->strings["Please enter your password for verification:"] = ""; +$a->strings["Remove this channel and all its clones from the network"] = ""; +$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = ""; +$a->strings["Remove Channel"] = ""; +$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["Help with this feature"] = ""; +$a->strings["Layout Name"] = ""; $a->strings["Blocked"] = ""; $a->strings["Ignored"] = ""; $a->strings["Hidden"] = ""; $a->strings["Archived"] = ""; $a->strings["All"] = ""; -$a->strings["Suggestions"] = ""; +$a->strings["Unconnected"] = ""; $a->strings["Suggest new connections"] = ""; +$a->strings["New Connections"] = ""; $a->strings["Show pending (new) connections"] = ""; -$a->strings["All Connections"] = ""; $a->strings["Show all connections"] = ""; $a->strings["Unblocked"] = ""; $a->strings["Only show unblocked connections"] = ""; @@ -1206,15 +1383,51 @@ $a->strings["Only show blocked connections"] = ""; $a->strings["Only show ignored connections"] = ""; $a->strings["Only show archived connections"] = ""; $a->strings["Only show hidden connections"] = ""; +$a->strings["Only show one-way connections"] = ""; $a->strings["%1\$s [%2\$s]"] = ""; $a->strings["Edit contact"] = ""; $a->strings["Search your connections"] = ""; $a->strings["Finding: "] = ""; -$a->strings["This site is not a directory server"] = ""; -$a->strings["Remote privacy information not available."] = ""; -$a->strings["Visible to:"] = ""; -$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = ""; -$a->strings["Welcome %s. Remote authentication successful."] = ""; +$a->strings["Nothing to import."] = ""; +$a->strings["Unable to download data from old server"] = ""; +$a->strings["Imported file is empty."] = ""; +$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = ""; +$a->strings["Channel clone failed. Import failed."] = ""; +$a->strings["Cloned channel not found. Import failed."] = ""; +$a->strings["Import completed."] = ""; +$a->strings["You must be logged in to use this feature."] = ""; +$a->strings["Import Channel"] = ""; +$a->strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = ""; +$a->strings["File to Upload"] = ""; +$a->strings["Or provide the old server/hub details"] = ""; +$a->strings["Your old identity address (xyz@example.com)"] = ""; +$a->strings["Your old login email address"] = ""; +$a->strings["Your old login password"] = ""; +$a->strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = ""; +$a->strings["Make this hub my primary location"] = ""; +$a->strings["Mood"] = ""; +$a->strings["Set your current mood and tell your friends"] = ""; +$a->strings["Room not found"] = ""; +$a->strings["Leave Room"] = ""; +$a->strings["Delete This Room"] = ""; +$a->strings["I am away right now"] = ""; +$a->strings["I am online"] = ""; +$a->strings["Bookmark this room"] = ""; +$a->strings["New Chatroom"] = ""; +$a->strings["Chatroom Name"] = ""; +$a->strings["%1\$s's Chatrooms"] = ""; +$a->strings["Edit Block"] = ""; +$a->strings["Delete block?"] = ""; +$a->strings["Delete Block"] = ""; +$a->strings["Profile Match"] = ""; +$a->strings["No keywords to match. Please add keywords to your default profile."] = ""; +$a->strings["is interested in:"] = ""; +$a->strings["No matches"] = ""; +$a->strings["Away"] = ""; +$a->strings["Online"] = ""; +$a->strings["Edit Webpage"] = ""; +$a->strings["Delete webpage?"] = ""; +$a->strings["Delete Webpage"] = ""; $a->strings["Profile not found."] = ""; $a->strings["Profile deleted."] = ""; $a->strings["Profile-"] = ""; @@ -1233,7 +1446,6 @@ $a->strings["Sexual Preference"] = ""; $a->strings["Homepage"] = ""; $a->strings["Interests"] = ""; $a->strings["Address"] = ""; -$a->strings["Location"] = ""; $a->strings["Profile updated."] = ""; $a->strings["Hide your contact/friend list from viewers of this profile?"] = ""; $a->strings["Edit Profile Details"] = ""; @@ -1274,169 +1486,220 @@ $a->strings["Work/employment"] = ""; $a->strings["School/education"] = ""; $a->strings["This is your public profile.
It may be visible to anybody using the internet."] = ""; $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["Add a Channel"] = ""; -$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = ""; -$a->strings["Channel Name"] = ""; -$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = ""; -$a->strings["Choose a short nickname"] = ""; -$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = ""; -$a->strings["Or import an existing channel from another location"] = ""; -$a->strings["Create"] = ""; -$a->strings["No valid account found."] = ""; -$a->strings["Password reset request issued. Check your email."] = ""; -$a->strings["Site Member (%s)"] = ""; -$a->strings["Password reset requested at %s"] = ""; -$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."] = ""; -$a->strings["Your new password is"] = ""; -$a->strings["Save or copy your new password - and then"] = ""; -$a->strings["click here to login"] = ""; -$a->strings["Your password may be changed from the Settings page after successful login."] = ""; -$a->strings["Your password has changed at %s"] = ""; -$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["Email Address"] = ""; -$a->strings["Reset"] = ""; -$a->strings["Nothing to import."] = ""; -$a->strings["Unable to download data from old server"] = ""; -$a->strings["Imported file is empty."] = ""; -$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = ""; -$a->strings["Channel clone failed. Import failed."] = ""; -$a->strings["Cloned channel not found. Import failed."] = ""; -$a->strings["Import completed."] = ""; -$a->strings["You must be logged in to use this feature."] = ""; -$a->strings["Import Channel"] = ""; -$a->strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = ""; -$a->strings["File to Upload"] = ""; -$a->strings["Or provide the old server/hub details"] = ""; -$a->strings["Your old identity address (xyz@example.com)"] = ""; -$a->strings["Your old login email address"] = ""; -$a->strings["Your old login password"] = ""; -$a->strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = ""; -$a->strings["Make this hub my primary location"] = ""; -$a->strings["Create a new channel"] = ""; -$a->strings["Channel Manager"] = ""; -$a->strings["Current Channel"] = ""; -$a->strings["Attach to one of your channels by selecting it."] = ""; -$a->strings["Default Channel"] = ""; -$a->strings["Make Default"] = ""; -$a->strings["Profile Match"] = ""; -$a->strings["No keywords to match. Please add keywords to your default profile."] = ""; -$a->strings["is interested in:"] = ""; -$a->strings["Contact settings applied."] = ""; -$a->strings["Contact update failed."] = ""; -$a->strings["Contact not found."] = ""; -$a->strings["Repair Contact Settings"] = ""; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = ""; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = ""; -$a->strings["Return to contact editor"] = ""; -$a->strings["Account Nickname"] = ""; -$a->strings["@Tagname - overrides Name/Nickname"] = ""; -$a->strings["Account URL"] = ""; -$a->strings["Friend Request URL"] = ""; -$a->strings["Friend Confirm URL"] = ""; -$a->strings["Notification Endpoint URL"] = ""; -$a->strings["Poll/Feed URL"] = ""; -$a->strings["New photo from this URL"] = ""; -$a->strings["invalid target signature"] = ""; -$a->strings["Channel added."] = ""; -$a->strings["Contacts who are not members of a group"] = ""; -$a->strings["Image uploaded but image cropping failed."] = ""; -$a->strings["Image resize failed."] = ""; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = ""; -$a->strings["Image exceeds size limit of %d"] = ""; -$a->strings["Unable to process image."] = ""; -$a->strings["Photo not available."] = ""; -$a->strings["Upload File:"] = ""; -$a->strings["Select a profile:"] = ""; -$a->strings["Upload Profile Photo"] = ""; -$a->strings["Upload"] = ""; -$a->strings["skip this step"] = ""; -$a->strings["select a photo from your photo albums"] = ""; -$a->strings["Crop Image"] = ""; -$a->strings["Please adjust the image cropping for optimum viewing."] = ""; -$a->strings["Done Editing"] = ""; -$a->strings["Image uploaded successfully."] = ""; -$a->strings["Image upload failed."] = ""; -$a->strings["Image size reduction [%s] failed."] = ""; -$a->strings["Item not found"] = ""; -$a->strings["Edit post"] = ""; -$a->strings["Insert YouTube video"] = ""; -$a->strings["Insert Vorbis [.ogg] video"] = ""; -$a->strings["Insert Vorbis [.ogg] audio"] = ""; -$a->strings["Invalid request identifier."] = ""; -$a->strings["System"] = ""; -$a->strings["Introductions"] = ""; -$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["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 introductions."] = ""; -$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["Post successful."] = ""; -$a->strings["Item is not editable"] = ""; -$a->strings["Access to this profile has been restricted."] = ""; +$a->strings["Add profile things"] = ""; +$a->strings["Include desirable objects in your profile"] = ""; +$a->strings["Menu updated."] = ""; +$a->strings["Unable to update menu."] = ""; +$a->strings["Menu created."] = ""; +$a->strings["Unable to create menu."] = ""; +$a->strings["Manage Menus"] = ""; +$a->strings["Drop"] = ""; +$a->strings["Create a new menu"] = ""; +$a->strings["Delete this menu"] = ""; +$a->strings["Edit menu contents"] = ""; +$a->strings["Edit this menu"] = ""; +$a->strings["New Menu"] = ""; +$a->strings["Menu name"] = ""; +$a->strings["Must be unique, only seen by you"] = ""; +$a->strings["Menu title"] = ""; +$a->strings["Menu title as seen by others"] = ""; +$a->strings["Allow bookmarks"] = ""; +$a->strings["Menu may be used to store saved bookmarks"] = ""; +$a->strings["Menu deleted."] = ""; +$a->strings["Menu could not be deleted."] = ""; +$a->strings["Edit Menu"] = ""; +$a->strings["Add or remove entries to this menu"] = ""; +$a->strings["OpenID protocol error. No ID returned."] = ""; +$a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"] = ""; +$a->strings["Unable to lookup recipient."] = ""; +$a->strings["Unable to communicate with requested channel."] = ""; +$a->strings["Cannot verify requested channel."] = ""; +$a->strings["Selected channel has private message restrictions. Send failed."] = ""; +$a->strings["Message deleted."] = ""; +$a->strings["Message recalled."] = ""; +$a->strings["Send Private Message"] = ""; +$a->strings["To:"] = ""; +$a->strings["Subject:"] = ""; +$a->strings["Your message:"] = ""; +$a->strings["Message not found."] = ""; +$a->strings["Recall message"] = ""; +$a->strings["Message has been recalled."] = ""; +$a->strings["Private Conversation"] = ""; +$a->strings["Delete conversation"] = ""; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; +$a->strings["Send Reply"] = ""; +$a->strings["App installed."] = ""; +$a->strings["Malformed app."] = ""; +$a->strings["Embed code"] = ""; +$a->strings["Create App"] = ""; +$a->strings["Name of app"] = ""; +$a->strings["Location (URL) of app"] = ""; +$a->strings["Description"] = ""; +$a->strings["Photo icon URL"] = ""; +$a->strings["80 x 80 pixels - optional"] = ""; +$a->strings["Version ID"] = ""; +$a->strings["Price of app"] = ""; +$a->strings["Location (URL) to purchase app"] = ""; $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["Not available."] = ""; -$a->strings["Community"] = ""; -$a->strings["No results."] = ""; -$a->strings["Files"] = ""; -$a->strings["Friend suggestion sent."] = ""; -$a->strings["Suggest Friends"] = ""; -$a->strings["Suggest a friend for %s"] = ""; -$a->strings["Invalid profile identifier."] = ""; -$a->strings["Profile Visibility Editor"] = ""; -$a->strings["Click on a contact to add or remove."] = ""; -$a->strings["Visible To"] = ""; -$a->strings["All Contacts (with secure profile access)"] = ""; -$a->strings["Version %s"] = ""; -$a->strings["Installed plugins/addons/apps:"] = ""; -$a->strings["No installed plugins/addons/apps"] = ""; -$a->strings["Red"] = ""; -$a->strings["This is Red - another decentralized, distributed communications project by the folks at Friendica."] = ""; -$a->strings["Running at web location"] = ""; -$a->strings["Please visit Friendica.com to learn more about the Friendica and/or Red project."] = ""; -$a->strings["Bug reports and issues: please visit"] = ""; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = ""; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = ""; -$a->strings["Ignore/Hide"] = ""; +$a->strings["No connections."] = ""; +$a->strings["Visit %s's profile [%s]"] = ""; +$a->strings["View Connnections"] = ""; +$a->strings["Theme settings updated."] = ""; +$a->strings["Site"] = ""; +$a->strings["Accounts"] = ""; +$a->strings["Channels"] = ""; +$a->strings["Plugins"] = ""; +$a->strings["Themes"] = ""; +$a->strings["Server"] = ""; +$a->strings["DB updates"] = ""; +$a->strings["Logs"] = ""; +$a->strings["Plugin Features"] = ""; +$a->strings["User registrations waiting for confirmation"] = ""; +$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["No special theme for accessibility"] = ""; +$a->strings["Yes - with approval"] = ""; +$a->strings["My site is not a public server"] = ""; +$a->strings["My site has paid access only"] = ""; +$a->strings["My site has free access only"] = ""; +$a->strings["My site offers free accounts with optional paid upgrades"] = ""; +$a->strings["Registration"] = ""; +$a->strings["File upload"] = ""; +$a->strings["Policies"] = ""; +$a->strings["Site name"] = ""; +$a->strings["Banner/Logo"] = ""; +$a->strings["Administrator Information"] = ""; +$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = ""; +$a->strings["System language"] = ""; +$a->strings["System theme"] = ""; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = ""; +$a->strings["Mobile system theme"] = ""; +$a->strings["Theme for mobile devices"] = ""; +$a->strings["Accessibility system theme"] = ""; +$a->strings["Accessibility theme"] = ""; +$a->strings["Channel to use for this website's static pages"] = ""; +$a->strings["Site Channel"] = ""; +$a->strings["Maximum image size"] = ""; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = ""; +$a->strings["Does this site allow new member registration?"] = ""; +$a->strings["Which best describes the types of account offered by this hub?"] = ""; +$a->strings["Register text"] = ""; +$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"] = ""; +$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["Disable discovery tab"] = ""; +$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = ""; +$a->strings["No login on Homepage"] = ""; +$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = ""; +$a->strings["Proxy user"] = ""; +$a->strings["Proxy 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["No server found"] = ""; +$a->strings["ID"] = ""; +$a->strings["for channel"] = ""; +$a->strings["on server"] = ""; +$a->strings["Status"] = ""; +$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["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 => "", + 1 => "", +); +$a->strings["Account not found"] = ""; +$a->strings["User '%s' deleted"] = ""; +$a->strings["User '%s' unblocked"] = ""; +$a->strings["User '%s' blocked"] = ""; +$a->strings["Users"] = ""; +$a->strings["select all"] = ""; +$a->strings["User registrations waiting for confirm"] = ""; +$a->strings["Request date"] = ""; +$a->strings["No registrations."] = ""; +$a->strings["Approve"] = ""; +$a->strings["Deny"] = ""; +$a->strings["Register date"] = ""; +$a->strings["Last login"] = ""; +$a->strings["Expires"] = ""; +$a->strings["Service Class"] = ""; +$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["%s channel censored/uncensored"] = array( + 0 => "", + 1 => "", +); +$a->strings["%s channel deleted"] = array( + 0 => "", + 1 => "", +); +$a->strings["Channel not found"] = ""; +$a->strings["Channel '%s' deleted"] = ""; +$a->strings["Channel '%s' uncensored"] = ""; +$a->strings["Channel '%s' censored"] = ""; +$a->strings["Censor"] = ""; +$a->strings["Uncensor"] = ""; +$a->strings["UID"] = ""; +$a->strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; +$a->strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; +$a->strings["Plugin %s disabled."] = ""; +$a->strings["Plugin %s enabled."] = ""; +$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 Red top-level directory."] = ""; +$a->strings["Log level"] = ""; $a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = ""; $a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = ""; +$a->strings["Passwords do not match."] = ""; $a->strings["Registration successful. Please check your email for validation instructions."] = ""; $a->strings["Your registration is pending approval by the site owner."] = ""; $a->strings["Your registration can not be processed."] = ""; +$a->strings["Registration on this site/hub is by approval only."] = ""; +$a->strings["Register at another affiliated site/hub"] = ""; $a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = ""; $a->strings["Terms of Service"] = ""; $a->strings["I accept the %s for this website"] = ""; @@ -1446,46 +1709,80 @@ $a->strings["Please enter your invitation code"] = ""; $a->strings["Your email address"] = ""; $a->strings["Choose a password"] = ""; $a->strings["Please re-enter your password"] = ""; +$a->strings["- select -"] = ""; +$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = ""; +$a->strings["Create a new channel"] = ""; +$a->strings["Channel Manager"] = ""; +$a->strings["Current Channel"] = ""; +$a->strings["Attach to one of your channels by selecting it."] = ""; +$a->strings["Default Channel"] = ""; +$a->strings["Make Default"] = ""; +$a->strings["Total invitation limit exceeded."] = ""; +$a->strings["%s : Not a valid email address."] = ""; +$a->strings["Please join us on Red"] = ""; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = ""; +$a->strings["%s : Message delivery failed."] = ""; +$a->strings["%d message sent."] = array( + 0 => "", + 1 => "", +); +$a->strings["You have no more invitations available"] = ""; +$a->strings["Send invitations"] = ""; +$a->strings["Enter email addresses, one per line:"] = ""; +$a->strings["You are cordially invited to join me and some other close friends on the Red Matrix - a revolutionary new decentralised communication and information tool."] = ""; +$a->strings["You will need to supply this invitation code: \$invite_code"] = ""; +$a->strings["Please visit my channel at"] = ""; +$a->strings["Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:"] = ""; +$a->strings["Click the [Register] link on the following page to join."] = ""; +$a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = ""; +$a->strings["Wall Photos"] = ""; +$a->strings["No channel."] = ""; +$a->strings["Common connections"] = ""; +$a->strings["No connections in common."] = ""; $a->strings["Please login."] = ""; -$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["Mood"] = ""; -$a->strings["Set your current mood and tell your friends"] = ""; -$a->strings["Theme settings"] = ""; -$a->strings["Set font-size for posts and comments"] = ""; -$a->strings["Set line-height for posts and comments"] = ""; -$a->strings["Set colour scheme"] = ""; -$a->strings["Draw shadows"] = ""; -$a->strings["Navigation bar colour"] = ""; -$a->strings["Display style"] = ""; -$a->strings["Display colour of links - hex value, do not include the #"] = ""; -$a->strings["Icons"] = ""; -$a->strings["Shiny style"] = ""; -$a->strings["Corner radius"] = ""; -$a->strings["0-99 default: 5"] = ""; +$a->strings["Select a bookmark folder"] = ""; +$a->strings["Save Bookmark"] = ""; +$a->strings["URL of bookmark"] = ""; +$a->strings["Or enter new bookmark folder name"] = ""; $a->strings["Update %s failed. See error logs."] = ""; $a->strings["Update Error at %s"] = ""; -$a->strings["Create a New Account"] = ""; +$a->strings["Create an account to access services and applications within the Red Matrix"] = ""; $a->strings["Password"] = ""; $a->strings["Remember me"] = ""; $a->strings["Forgot your password?"] = ""; -$a->strings["Requested channel is not available."] = ""; -$a->strings[" Sorry, you don't have the permission to view this profile. "] = ""; -$a->strings["Profiles"] = ""; -$a->strings["Manage/edit profiles"] = ""; -$a->strings["Edit Profile"] = ""; -$a->strings["F d"] = ""; -$a->strings["Birthday Reminders"] = ""; -$a->strings["Birthdays this week:"] = ""; -$a->strings["[No description]"] = ""; -$a->strings["Event Reminders"] = ""; -$a->strings["Events this week:"] = ""; -$a->strings["Channel"] = ""; -$a->strings["Status Messages and Posts"] = ""; -$a->strings["About"] = ""; -$a->strings["Profile Details"] = ""; -$a->strings["Events and Calendar"] = ""; -$a->strings["Webpages"] = ""; -$a->strings["Manage Webpages"] = ""; +$a->strings["permission denied"] = ""; +$a->strings["Got Zot?"] = ""; $a->strings["toggle mobile"] = ""; +$a->strings["Theme settings"] = ""; +$a->strings["Set scheme"] = ""; +$a->strings["Narrow navbar"] = ""; +$a->strings["Navigation bar background colour"] = ""; +$a->strings["Navigation bar gradient top colour"] = ""; +$a->strings["Navigation bar gradient bottom colour"] = ""; +$a->strings["Navigation active button gradient top colour"] = ""; +$a->strings["Navigation active button gradient bottom colour"] = ""; +$a->strings["Navigation bar border colour "] = ""; +$a->strings["Navigation bar icon colour "] = ""; +$a->strings["Navigation bar active icon colour "] = ""; +$a->strings["link colour"] = ""; +$a->strings["Set font-colour for banner"] = ""; +$a->strings["Set the background colour"] = ""; +$a->strings["Set the background image"] = ""; +$a->strings["Set the background colour of items"] = ""; +$a->strings["Set the background colour of comments"] = ""; +$a->strings["Set the border colour of comments"] = ""; +$a->strings["Set the indent for comments"] = ""; +$a->strings["Set the basic colour for item icons"] = ""; +$a->strings["Set the hover colour for item icons"] = ""; +$a->strings["Set font-size for the entire application"] = ""; +$a->strings["Set font-size for posts and comments"] = ""; +$a->strings["Set font-colour for posts and comments"] = ""; +$a->strings["Set radius of corners"] = ""; +$a->strings["Set shadow depth of photos"] = ""; +$a->strings["Set maximum width of conversation regions"] = ""; +$a->strings["Center conversation regions"] = ""; +$a->strings["Set minimum opacity of nav bar - to hide it"] = ""; +$a->strings["Set size of conversation author photo"] = ""; +$a->strings["Set size of followup author photos"] = ""; +$a->strings["Sloppy photo albums"] = ""; +$a->strings["Are you a clean desk or a messy desk person?"] = ""; diff --git a/version.inc b/version.inc index 934b9cd3c..21f2b8fa8 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-05-18.679 +2014-05-22.683 diff --git a/view/css/conversation.css b/view/css/conversation.css index 4e7b59f80..3fc82154b 100644 --- a/view/css/conversation.css +++ b/view/css/conversation.css @@ -199,60 +199,21 @@ /* comment_item */ -.comment-wwedit-wrapper.threaded > .comment-edit-form > .comment-edit-photo { - width: 40px; -} - -.comment-wwedit-wrapper.threaded > .comment-edit-form > .comment-edit-text-empty { - height: 1.5em; -} - -.comment-wwedit-wrapper.threaded > .comment-edit-form > .comment-edit-submit-wrapper > .comment-edit-submit { - margin-left: 50px; -} - -.comment-edit-photo { - margin: 10px 10px 10px 7px; - float: left; -} - -[class^="comment-edit-bb"] { - display: none; - margin: 0px 0 -5px 0px; - padding: 0px; - width: 75%; - min-width: 170px -} - -[class^="comment-edit-bb"] > li { - display: inline-block; - margin: 10px 10px 0 0; - visibility: none; -} - -[class^="comment-edit-bb-end"] { - clear: both; -} - .comment-edit-text-empty, .comment-edit-text-full { float: left; - margin-top: 10px; - padding: 3px 1px 1px 3px; + width: 100%; padding: 8px; } .comment-edit-text-empty { height: 2.8em; - width: 30%; - min-width: 170px; overflow: auto; - margin-bottom: 10px; + resize: none; + } .comment-edit-text-full { height: 150px; - width: 50%; - min-width: 170px; overflow: auto; } @@ -280,14 +241,12 @@ filter:alpha(opacity=100); } -.comment-edit-text-end { - clear: both; +.comment-tools { + display: none; + margin-top: 7px; } -.comment-edit-submit { - margin: 10px 0px 10px 52px; -} - -.comment-preview-icon { - margin-left: 15px; +.comment-edit-preview { + display: none; + margin-top: 7px; } diff --git a/view/it/messages.po b/view/it/messages.po index d1821ee2d..880a3ddf7 100644 --- a/view/it/messages.po +++ b/view/it/messages.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: Red Matrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-16 00:02-0700\n" -"PO-Revision-Date: 2014-05-17 09:17+0000\n" +"POT-Creation-Date: 2014-05-21 05:30-0300\n" +"PO-Revision-Date: 2014-05-22 10:56+0000\n" "Last-Translator: tuscanhobbit Pa \n" "Language-Team: Italian (http://www.transifex.com/projects/p/red-matrix/language/it/)\n" "MIME-Version: 1.0\n" @@ -23,46 +23,510 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../include/dba/dba_driver.php:50 +#: ../../include/follow.php:23 +msgid "Channel is blocked on this site." +msgstr "Il canale è bloccato per questo sito." + +#: ../../include/follow.php:28 +msgid "Channel location missing." +msgstr "Manca l'indirizzo del canale." + +#: ../../include/follow.php:54 +msgid "Response from remote channel was incomplete." +msgstr "La risposta dal canale non è completa." + +#: ../../include/follow.php:85 +msgid "Channel was deleted and no longer exists." +msgstr "Il canale è stato rimosso e non esiste più." + +#: ../../include/follow.php:132 +msgid "Channel discovery failed." +msgstr "La ricerca del canale non ha avuto successo." + +#: ../../include/follow.php:149 +msgid "local account not found." +msgstr "l'account locale non è stato trovato." + +#: ../../include/follow.php:158 +msgid "Cannot connect to yourself." +msgstr "Non puoi connetterti a te stesso." + +#: ../../include/reddav.php:1045 +msgid "Edit File properties" +msgstr "Modifica le proprietà dei file" + +#: ../../include/event.php:11 ../../include/bb2diaspora.php:433 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" + +#: ../../include/event.php:20 ../../include/bb2diaspora.php:439 +msgid "Starts:" +msgstr "Inizio:" + +#: ../../include/event.php:30 ../../include/bb2diaspora.php:447 +msgid "Finishes:" +msgstr "Fine:" + +#: ../../include/event.php:40 ../../include/bb2diaspora.php:455 +#: ../../include/identity.php:726 ../../mod/dirprofile.php:105 +#: ../../mod/directory.php:156 ../../mod/events.php:474 +msgid "Location:" +msgstr "Luogo:" + +#: ../../include/widgets.php:29 ../../include/contact_widgets.php:92 +msgid "Categories" +msgstr "Categorie" + +#: ../../include/widgets.php:79 +msgid "App Category" +msgstr "Categoria app" + +#: ../../include/widgets.php:80 +msgid "System" +msgstr "Sistema" + +#: ../../include/widgets.php:81 ../../include/conversation.php:1415 +msgid "Personal" +msgstr "Personali" + +#: ../../include/widgets.php:127 ../../include/widgets.php:167 +#: ../../include/Contact.php:107 ../../include/identity.php:675 +#: ../../mod/dirprofile.php:164 ../../mod/directory.php:183 +#: ../../mod/suggest.php:51 ../../mod/match.php:62 +msgid "Connect" +msgstr "Entra in contatto" + +#: ../../include/widgets.php:129 ../../mod/suggest.php:53 +msgid "Ignore/Hide" +msgstr "Ignora/nascondi" + +#: ../../include/widgets.php:135 ../../mod/connections.php:266 +msgid "Suggestions" +msgstr "Suggerimenti" + +#: ../../include/widgets.php:136 +msgid "See more..." +msgstr "Altro..." + +#: ../../include/widgets.php:158 #, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Non trovo le informazioni DNS per il database server '%s'" +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Hai attivato %1$.0f delle %2$.0f connessioni permesse." -#: ../../include/photo/photo_driver.php:643 ../../include/photos.php:51 -#: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 -#: ../../mod/profile_photo.php:421 ../../mod/photos.php:91 -#: ../../mod/photos.php:655 ../../mod/photos.php:677 -msgid "Profile Photos" -msgstr "Foto del profilo" +#: ../../include/widgets.php:164 +msgid "Add New Connection" +msgstr "Aggiungi un contatto" -#: ../../include/apps.php:107 ../../include/nav.php:158 -msgid "Matrix" -msgstr "La tua rete" +#: ../../include/widgets.php:165 +msgid "Enter the channel address" +msgstr "Scrivi l'indirizzo del canale" -#: ../../include/apps.php:107 ../../include/nav.php:161 -msgid "Channel Home" -msgstr "Bacheca del canale" +#: ../../include/widgets.php:166 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Per esempio: mario@pippo.it oppure http://pluto.com/barbara" -#: ../../include/apps.php:107 ../../include/identity.php:942 -#: ../../include/identity.php:1031 ../../mod/profperm.php:112 -msgid "Profile" +#: ../../include/widgets.php:183 +msgid "Notes" +msgstr "Note" + +#: ../../include/widgets.php:185 ../../include/text.php:815 +#: ../../include/text.php:829 ../../mod/filer.php:50 ../../mod/rbmark.php:28 +#: ../../mod/rbmark.php:98 +msgid "Save" +msgstr "Salva" + +#: ../../include/widgets.php:255 +msgid "Remove term" +msgstr "Rimuovi termine" + +#: ../../include/widgets.php:264 ../../include/features.php:52 +msgid "Saved Searches" +msgstr "Ricerche salvate" + +#: ../../include/widgets.php:265 ../../include/group.php:290 +msgid "add" +msgstr "aggiungi" + +#: ../../include/widgets.php:295 ../../include/features.php:66 +#: ../../include/contact_widgets.php:58 +msgid "Saved Folders" +msgstr "Cartelle salvate" + +#: ../../include/widgets.php:298 ../../include/contact_widgets.php:61 +#: ../../include/contact_widgets.php:95 +msgid "Everything" +msgstr "Tutto" + +#: ../../include/widgets.php:334 +msgid "Archives" +msgstr "Archivi" + +#: ../../include/widgets.php:396 +msgid "Refresh" +msgstr "Aggiorna" + +#: ../../include/widgets.php:397 ../../mod/connedit.php:428 +msgid "Me" +msgstr "Io" + +#: ../../include/widgets.php:398 ../../mod/connedit.php:430 +msgid "Best Friends" +msgstr "Buoni amici" + +#: ../../include/widgets.php:399 ../../include/profile_selectors.php:42 +#: ../../include/identity.php:342 ../../mod/connedit.php:431 +msgid "Friends" +msgstr "Amici" + +#: ../../include/widgets.php:400 +msgid "Co-workers" +msgstr "Colleghi" + +#: ../../include/widgets.php:401 ../../mod/connedit.php:432 +msgid "Former Friends" +msgstr "Ex amici" + +#: ../../include/widgets.php:402 ../../mod/connedit.php:433 +msgid "Acquaintances" +msgstr "Conoscenti" + +#: ../../include/widgets.php:403 +msgid "Everybody" +msgstr "Tutti" + +#: ../../include/widgets.php:435 +msgid "Account settings" +msgstr "Impostazioni dell'account" + +#: ../../include/widgets.php:441 +msgid "Channel settings" +msgstr "Impostazioni del canale" + +#: ../../include/widgets.php:447 +msgid "Additional features" +msgstr "Funzionalità aggiuntive" + +#: ../../include/widgets.php:453 +msgid "Feature settings" +msgstr "Impostazioni aggiuntive" + +#: ../../include/widgets.php:459 +msgid "Display settings" +msgstr "Impostazioni grafiche" + +#: ../../include/widgets.php:465 +msgid "Connected apps" +msgstr "App connesse" + +#: ../../include/widgets.php:471 +msgid "Export channel" +msgstr "Esporta il canale" + +#: ../../include/widgets.php:483 +msgid "Automatic Permissions (Advanced)" +msgstr "Permessi predefiniti (avanzato)" + +#: ../../include/widgets.php:493 +msgid "Premium Channel Settings" +msgstr "Canale premium - impostazioni" + +#: ../../include/widgets.php:502 ../../include/features.php:43 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "Sorgenti del canale" + +#: ../../include/widgets.php:513 ../../include/nav.php:186 +#: ../../mod/admin.php:976 ../../mod/admin.php:1181 +msgid "Settings" +msgstr "Impostazioni" + +#: ../../include/widgets.php:530 +msgid "Check Mail" +msgstr "Controlla i messaggi" + +#: ../../include/widgets.php:535 ../../include/nav.php:177 +msgid "New Message" +msgstr "Nuovo messaggio" + +#: ../../include/widgets.php:611 +msgid "Chat Rooms" +msgstr "Chat attive" + +#: ../../include/widgets.php:629 +msgid "Bookmarked Chatrooms" +msgstr "Chat nei segnalibri" + +#: ../../include/widgets.php:647 +msgid "Suggested Chatrooms" +msgstr "Chat suggerite" + +#: ../../include/api.php:1016 +msgid "Public Timeline" +msgstr "Diario pubblico" + +#: ../../include/nav.php:77 ../../include/nav.php:96 ../../boot.php:1450 +msgid "Logout" +msgstr "Esci" + +#: ../../include/nav.php:77 ../../include/nav.php:96 +msgid "End this session" +msgstr "Chiudi questa sessione" + +#: ../../include/nav.php:80 ../../include/nav.php:130 +msgid "Home" +msgstr "Bacheca" + +#: ../../include/nav.php:80 +msgid "Your posts and conversations" +msgstr "I tuoi articoli e conversazioni" + +#: ../../include/nav.php:81 ../../include/conversation.php:937 +#: ../../mod/connedit.php:351 ../../mod/connedit.php:465 +msgid "View Profile" msgstr "Profilo" -#: ../../include/apps.php:108 ../../include/conversation.php:1501 -#: ../../include/nav.php:84 ../../mod/fbrowser.php:25 +#: ../../include/nav.php:81 +msgid "Your profile page" +msgstr "Il tuo profilo" + +#: ../../include/nav.php:83 +msgid "Edit Profiles" +msgstr "Modifica i profili" + +#: ../../include/nav.php:83 +msgid "Manage/Edit profiles" +msgstr "Gestisci/modifica i profili" + +#: ../../include/nav.php:84 ../../include/conversation.php:1501 +#: ../../include/apps.php:110 ../../mod/fbrowser.php:25 msgid "Photos" msgstr "Foto" -#: ../../include/apps.php:108 ../../include/conversation.php:1532 -#: ../../include/nav.php:87 ../../include/nav.php:180 ../../mod/events.php:366 +#: ../../include/nav.php:84 +msgid "Your photos" +msgstr "Le tue foto" + +#: ../../include/nav.php:85 ../../include/conversation.php:1510 +#: ../../mod/fbrowser.php:114 +msgid "Files" +msgstr "Elenco file" + +#: ../../include/nav.php:85 +msgid "Your files" +msgstr "I tuoi file" + +#: ../../include/nav.php:86 +msgid "Chat" +msgstr "Chat" + +#: ../../include/nav.php:86 +msgid "Your chatrooms" +msgstr "Le tue chat" + +#: ../../include/nav.php:87 ../../include/nav.php:180 +#: ../../include/conversation.php:1532 ../../include/apps.php:111 +#: ../../mod/events.php:366 msgid "Events" msgstr "Eventi" -#: ../../include/apps.php:108 ../../include/nav.php:147 +#: ../../include/nav.php:87 +msgid "Your events" +msgstr "I tuoi eventi" + +#: ../../include/nav.php:88 ../../include/conversation.php:1540 +msgid "Bookmarks" +msgstr "Segnalibri" + +#: ../../include/nav.php:88 +msgid "Your bookmarks" +msgstr "I tuoi segnalibri" + +#: ../../include/nav.php:90 ../../include/conversation.php:1551 +#: ../../mod/webpages.php:79 +msgid "Webpages" +msgstr "Pagine web" + +#: ../../include/nav.php:90 +msgid "Your webpages" +msgstr "Le tue pagine web" + +#: ../../include/nav.php:94 ../../boot.php:1451 +msgid "Login" +msgstr "Accedi" + +#: ../../include/nav.php:94 +msgid "Sign in" +msgstr "Entra" + +#: ../../include/nav.php:111 +#, php-format +msgid "%s - click to logout" +msgstr "%s - clicca per uscire" + +#: ../../include/nav.php:116 +msgid "Click to authenticate to your home hub" +msgstr "Clicca per autenticarti sul tuo server principale" + +#: ../../include/nav.php:130 +msgid "Home Page" +msgstr "Bacheca" + +#: ../../include/nav.php:134 ../../mod/register.php:206 ../../boot.php:1427 +msgid "Register" +msgstr "Iscriviti" + +#: ../../include/nav.php:134 +msgid "Create an account" +msgstr "Crea un account" + +#: ../../include/nav.php:139 ../../include/apps.php:113 ../../mod/help.php:60 +#: ../../mod/help.php:65 +msgid "Help" +msgstr "Guida" + +#: ../../include/nav.php:139 +msgid "Help and documentation" +msgstr "Guida e documentazione" + +#: ../../include/nav.php:142 ../../mod/apps.php:17 ../../mod/apps.php:35 +msgid "Apps" +msgstr "Apps" + +#: ../../include/nav.php:142 +msgid "Addon applications, utilities, games" +msgstr "App, strumenti e giochi aggiuntivi" + +#: ../../include/nav.php:144 ../../include/text.php:813 +#: ../../include/text.php:827 ../../mod/search.php:29 +msgid "Search" +msgstr "Cerca" + +#: ../../include/nav.php:144 +msgid "Search site content" +msgstr "Cerca nel sito" + +#: ../../include/nav.php:147 ../../include/apps.php:112 #: ../../mod/directory.php:210 msgid "Directory" msgstr "Tutti i canali" +#: ../../include/nav.php:147 +msgid "Channel Locator" +msgstr "Ricerca canali" + +#: ../../include/nav.php:158 ../../include/apps.php:107 +msgid "Matrix" +msgstr "La tua rete" + +#: ../../include/nav.php:158 +msgid "Your matrix" +msgstr "La tua rete" + +#: ../../include/nav.php:159 +msgid "Mark all matrix notifications seen" +msgstr "Segna come lette le notifiche della tua rete" + +#: ../../include/nav.php:161 ../../include/apps.php:108 +msgid "Channel Home" +msgstr "Bacheca del canale" + +#: ../../include/nav.php:161 +msgid "Channel home" +msgstr "Bacheca del canale" + +#: ../../include/nav.php:162 +msgid "Mark all channel notifications seen" +msgstr "Segna come lette le notifiche dei canali" + +#: ../../include/nav.php:165 ../../include/nav.php:188 +#: ../../mod/connections.php:385 +msgid "Connections" +msgstr "Contatti" + +#: ../../include/nav.php:168 +msgid "Notices" +msgstr "Notifiche" + +#: ../../include/nav.php:168 +msgid "Notifications" +msgstr "Notifiche" + +#: ../../include/nav.php:169 +msgid "See all notifications" +msgstr "Vedi tutte le notifiche" + +#: ../../include/nav.php:170 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "Segna come lette le notifiche di sistema" + +#: ../../include/nav.php:172 +msgid "Mail" +msgstr "Messaggi" + +#: ../../include/nav.php:172 +msgid "Private mail" +msgstr "Messaggi privati" + +#: ../../include/nav.php:173 +msgid "See all private messages" +msgstr "Guarda tutti i messaggi privati" + +#: ../../include/nav.php:174 +msgid "Mark all private messages seen" +msgstr "Segna come letti tutti i messaggi privati" + +#: ../../include/nav.php:175 +msgid "Inbox" +msgstr "In arrivo" + +#: ../../include/nav.php:176 +msgid "Outbox" +msgstr "Inviati" + +#: ../../include/nav.php:180 +msgid "Event Calendar" +msgstr "Calendario" + +#: ../../include/nav.php:181 +msgid "See all events" +msgstr "Guarda tutti gli eventi" + +#: ../../include/nav.php:182 +msgid "Mark all events seen" +msgstr "Marca come letti tutti gli eventi" + +#: ../../include/nav.php:184 +msgid "Channel Select" +msgstr "Gestisci i canali" + +#: ../../include/nav.php:184 +msgid "Manage Your Channels" +msgstr "Gestisci i contatti dei tuoi canali" + +#: ../../include/nav.php:186 +msgid "Account/Channel Settings" +msgstr "Impostazioni account e canali" + +#: ../../include/nav.php:188 +msgid "Manage/Edit Friends and Connections" +msgstr "Modifica amici e contatti" + +#: ../../include/nav.php:195 ../../mod/admin.php:117 +msgid "Admin" +msgstr "Amministrazione" + +#: ../../include/nav.php:195 +msgid "Site Setup and Configuration" +msgstr "Configurazione del sito" + +#: ../../include/nav.php:220 +msgid "Nothing new here" +msgstr "Niente di nuovo qui" + +#: ../../include/nav.php:225 +msgid "Please wait..." +msgstr "Attendere..." + #: ../../include/oembed.php:171 msgid "Embedded content" msgstr "Contenuti incorporati" @@ -71,301 +535,566 @@ msgstr "Contenuti incorporati" msgid "Embedding disabled" msgstr "Contenuti incorporati - funzione disabilitata" -#: ../../include/notify.php:23 -msgid "created a new post" -msgstr "Ha creato un nuovo articolo" +#: ../../include/bbcode.php:128 ../../include/bbcode.php:642 +#: ../../include/bbcode.php:645 ../../include/bbcode.php:650 +#: ../../include/bbcode.php:653 ../../include/bbcode.php:656 +#: ../../include/bbcode.php:659 ../../include/bbcode.php:664 +#: ../../include/bbcode.php:667 ../../include/bbcode.php:672 +#: ../../include/bbcode.php:675 ../../include/bbcode.php:678 +#: ../../include/bbcode.php:681 +msgid "Image/photo" +msgstr "Immagine" -#: ../../include/notify.php:24 +#: ../../include/bbcode.php:163 ../../include/bbcode.php:692 +msgid "Encrypted content" +msgstr "Contenuto crittografato" + +#: ../../include/bbcode.php:179 +msgid "QR code" +msgstr "QR code" + +#: ../../include/bbcode.php:228 #, php-format -msgid "commented on %s's post" -msgstr "ha commentato l'articolo di %s" +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s ha scritto %2$s %3$s" -#: ../../include/Contact.php:107 ../../include/identity.php:675 -#: ../../include/widgets.php:127 ../../include/widgets.php:167 -#: ../../mod/directory.php:183 ../../mod/dirprofile.php:164 -#: ../../mod/suggest.php:51 ../../mod/match.php:62 -msgid "Connect" -msgstr "Entra in contatto" +#: ../../include/bbcode.php:230 +msgid "post" +msgstr "l'articolo" -#: ../../include/Contact.php:123 -msgid "New window" -msgstr "Nuova finestra" +#: ../../include/bbcode.php:610 ../../include/bbcode.php:630 +msgid "$1 wrote:" +msgstr "$1 ha scritto:" -#: ../../include/Contact.php:124 -msgid "Open the selected location in a different window or browser tab" -msgstr "Apri l'indirizzo selezionato in una nuova scheda o finestra" +#: ../../include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "È stato ripristinato un insieme con lo stesso nome che era stato eliminato in precedenza. I permessi già presenti potrebbero rimanere validi per i nuovi canali. Se non vuoi che ciò accada, devi creare un altro insieme con un nome diverso." -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Nuova pagina web" +#: ../../include/group.php:223 +msgid "Default privacy group for new contacts" +msgstr "Insieme predefinito per i canali che inizi a seguire" -#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../include/ItemObject.php:96 ../../include/menu.php:42 -#: ../../mod/blocks.php:94 ../../mod/connections.php:392 -#: ../../mod/settings.php:577 ../../mod/editblock.php:111 -#: ../../mod/editlayout.php:106 ../../mod/editpost.php:112 -#: ../../mod/editwebpage.php:143 ../../mod/filestorage.php:174 -#: ../../mod/thing.php:235 ../../mod/layouts.php:112 ../../mod/menu.php:59 -#: ../../mod/webpages.php:119 -msgid "Edit" -msgstr "Modifica" +#: ../../include/group.php:242 ../../mod/admin.php:762 +msgid "All Channels" +msgstr "Tutti i canali" -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:97 -#: ../../mod/layouts.php:116 ../../mod/webpages.php:122 -msgid "View" -msgstr "Guarda" +#: ../../include/group.php:264 +msgid "edit" +msgstr "modifica" -#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:570 -#: ../../include/conversation.php:1088 ../../mod/editblock.php:141 -#: ../../mod/editlayout.php:135 ../../mod/editpost.php:140 -#: ../../mod/editwebpage.php:175 ../../mod/webpages.php:123 -#: ../../mod/photos.php:994 +#: ../../include/group.php:285 +msgid "Collections" +msgstr "Insiemi di canali" + +#: ../../include/group.php:286 +msgid "Edit collection" +msgstr "Modifica l'insieme di canali" + +#: ../../include/group.php:287 +msgid "Create a new collection" +msgstr "Crea un nuovo insieme" + +#: ../../include/group.php:288 +msgid "Channels not in any collection" +msgstr "Canali che non sono in un insieme" + +#: ../../include/conversation.php:117 ../../include/text.php:1705 +#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 +#: ../../mod/tagger.php:45 ../../mod/like.php:111 +msgid "photo" +msgstr "la foto" + +#: ../../include/conversation.php:120 ../../include/text.php:1708 +#: ../../mod/tagger.php:49 +msgid "event" +msgstr "l'evento" + +#: ../../include/conversation.php:123 +msgid "channel" +msgstr "canale" + +#: ../../include/conversation.php:145 ../../include/text.php:1711 +#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 +#: ../../mod/tagger.php:53 ../../mod/like.php:111 +msgid "status" +msgstr "il messaggio di stato" + +#: ../../include/conversation.php:147 ../../include/text.php:1713 +#: ../../mod/tagger.php:55 +msgid "comment" +msgstr "il commento" + +#: ../../include/conversation.php:161 ../../mod/like.php:142 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s piace %3$s di %2$s" + +#: ../../include/conversation.php:164 ../../mod/like.php:144 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "A %1$s non piace %3$s di %2$s" + +#: ../../include/conversation.php:201 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s adesso è connesso con %2$s" + +#: ../../include/conversation.php:236 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ha mandato un poke a %2$s" + +#: ../../include/conversation.php:240 ../../include/text.php:895 +msgid "poked" +msgstr "ha ricevuto un poke" + +#: ../../include/conversation.php:258 ../../mod/mood.php:63 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s al momento è %2$s" + +#: ../../include/conversation.php:631 ../../include/ItemObject.php:114 +msgid "Select" +msgstr "Seleziona" + +#: ../../include/conversation.php:632 ../../include/ItemObject.php:108 +#: ../../include/apps.php:156 ../../mod/group.php:176 ../../mod/thing.php:236 +#: ../../mod/filestorage.php:175 ../../mod/connedit.php:398 +#: ../../mod/settings.php:578 ../../mod/photos.php:1043 +#: ../../mod/admin.php:757 ../../mod/admin.php:886 +msgid "Delete" +msgstr "Elimina" + +#: ../../include/conversation.php:639 ../../include/ItemObject.php:89 +#: ../../mod/photos.php:846 +msgid "Private Message" +msgstr "Messaggio privato" + +#: ../../include/conversation.php:646 ../../include/ItemObject.php:182 +msgid "Message is verified" +msgstr "Messaggio verificato" + +#: ../../include/conversation.php:666 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Vedi il profilo di %s @ %s" + +#: ../../include/conversation.php:680 +msgid "Categories:" +msgstr "Categorie:" + +#: ../../include/conversation.php:681 +msgid "Filed under:" +msgstr "Classificato come:" + +#: ../../include/conversation.php:690 ../../include/ItemObject.php:247 +#, php-format +msgid " from %s" +msgstr " da %s" + +#: ../../include/conversation.php:693 ../../include/ItemObject.php:250 +#, php-format +msgid "last edited: %s" +msgstr "ultima modifica: %s" + +#: ../../include/conversation.php:694 ../../include/ItemObject.php:251 +#, php-format +msgid "Expires: %s" +msgstr "Scadenza: %s" + +#: ../../include/conversation.php:709 +msgid "View in context" +msgstr "Vedi nel contesto" + +#: ../../include/conversation.php:711 ../../include/conversation.php:1127 +#: ../../include/ItemObject.php:290 ../../mod/editlayout.php:115 +#: ../../mod/editpost.php:121 ../../mod/photos.php:974 +#: ../../mod/editblock.php:120 ../../mod/editwebpage.php:152 +#: ../../mod/mail.php:222 ../../mod/mail.php:336 +msgid "Please wait" +msgstr "Attendere" + +#: ../../include/conversation.php:838 +msgid "remove" +msgstr "rimuovi" + +#: ../../include/conversation.php:842 +msgid "Loading..." +msgstr "Caricamento in corso..." + +#: ../../include/conversation.php:843 +msgid "Delete Selected Items" +msgstr "Elimina gli oggetti selezionati" + +#: ../../include/conversation.php:934 +msgid "View Source" +msgstr "Vedi il sorgente" + +#: ../../include/conversation.php:935 +msgid "Follow Thread" +msgstr "Segui la discussione" + +#: ../../include/conversation.php:936 +msgid "View Status" +msgstr "Guarda il messaggio di stato" + +#: ../../include/conversation.php:938 +msgid "View Photos" +msgstr "Guarda le foto" + +#: ../../include/conversation.php:939 +msgid "Matrix Activity" +msgstr "Attività nella tua rete" + +#: ../../include/conversation.php:940 +msgid "Edit Contact" +msgstr "Modifica il contatto" + +#: ../../include/conversation.php:941 +msgid "Send PM" +msgstr "Invia messaggio privato" + +#: ../../include/conversation.php:942 +msgid "Poke" +msgstr "Poke" + +#: ../../include/conversation.php:998 +#, php-format +msgid "%s likes this." +msgstr "Piace a %s." + +#: ../../include/conversation.php:998 +#, php-format +msgid "%s doesn't like this." +msgstr "Non piace a %s." + +#: ../../include/conversation.php:1002 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "" +msgstr[1] "Piace a %2$d persone." + +#: ../../include/conversation.php:1004 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "" +msgstr[1] "Non piace a %2$d persone." + +#: ../../include/conversation.php:1010 +msgid "and" +msgstr "e" + +#: ../../include/conversation.php:1013 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "e altre %d persone" + +#: ../../include/conversation.php:1014 +#, php-format +msgid "%s like this." +msgstr "Piace a %s." + +#: ../../include/conversation.php:1014 +#, php-format +msgid "%s don't like this." +msgstr "Non piace a %s." + +#: ../../include/conversation.php:1071 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: ../../include/conversation.php:1072 ../../mod/mail.php:171 +#: ../../mod/mail.php:269 +msgid "Please enter a link URL:" +msgstr "Inserisci l'indirizzo del link:" + +#: ../../include/conversation.php:1073 +msgid "Please enter a video link/URL:" +msgstr "Inserisci l'indirizzo del video:" + +#: ../../include/conversation.php:1074 +msgid "Please enter an audio link/URL:" +msgstr "Inserisci l'indirizzo dell'audio:" + +#: ../../include/conversation.php:1075 +msgid "Tag term:" +msgstr "Tag:" + +#: ../../include/conversation.php:1076 ../../mod/filer.php:49 +msgid "Save to Folder:" +msgstr "Salva nella cartella:" + +#: ../../include/conversation.php:1077 +msgid "Where are you right now?" +msgstr "Dove sei ora?" + +#: ../../include/conversation.php:1078 ../../mod/editpost.php:52 +#: ../../mod/mail.php:172 ../../mod/mail.php:270 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Scade il YYYY-MM-DD HH:MM" + +#: ../../include/conversation.php:1088 ../../include/ItemObject.php:588 +#: ../../include/page_widgets.php:40 ../../mod/editlayout.php:135 +#: ../../mod/webpages.php:123 ../../mod/editpost.php:140 +#: ../../mod/photos.php:994 ../../mod/editblock.php:141 +#: ../../mod/editwebpage.php:175 msgid "Preview" msgstr "Anteprima" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:124 -msgid "Actions" -msgstr "Azioni" +#: ../../include/conversation.php:1102 ../../mod/photos.php:973 +#: ../../mod/layouts.php:113 +msgid "Share" +msgstr "Condividi" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:125 -msgid "Page Link" -msgstr "Link alla pagina" +#: ../../include/conversation.php:1104 ../../mod/editwebpage.php:139 +msgid "Page link title" +msgstr "Link del titolo" -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:126 -msgid "Title" -msgstr "Titolo" +#: ../../include/conversation.php:1107 +msgid "Post as" +msgstr "Pubblica come " -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:127 -msgid "Created" -msgstr "Creato" +#: ../../include/conversation.php:1108 ../../mod/editlayout.php:107 +#: ../../mod/editpost.php:113 ../../mod/editblock.php:112 +#: ../../mod/editwebpage.php:144 ../../mod/mail.php:219 ../../mod/mail.php:332 +msgid "Upload photo" +msgstr "Carica foto" -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:128 -msgid "Edited" -msgstr "Modificato" +#: ../../include/conversation.php:1109 +msgid "upload photo" +msgstr "carica foto" -#: ../../include/permissions.php:13 -msgid "Can view my \"public\" stream and posts" -msgstr "Può vedere i miei contenuti \"pubblici\"" +#: ../../include/conversation.php:1110 ../../mod/editlayout.php:108 +#: ../../mod/editpost.php:114 ../../mod/editblock.php:113 +#: ../../mod/editwebpage.php:145 ../../mod/mail.php:220 ../../mod/mail.php:333 +msgid "Attach file" +msgstr "Allega file" -#: ../../include/permissions.php:14 -msgid "Can view my \"public\" channel profile" -msgstr "Può vedere il profilo del mio canale \"pubblico\"" +#: ../../include/conversation.php:1111 +msgid "attach file" +msgstr "allega file" -#: ../../include/permissions.php:15 -msgid "Can view my \"public\" photo albums" -msgstr "Può vedere il mio album fotografico \"pubblico\"" +#: ../../include/conversation.php:1112 ../../mod/editlayout.php:109 +#: ../../mod/editpost.php:115 ../../mod/editblock.php:114 +#: ../../mod/editwebpage.php:146 ../../mod/mail.php:221 ../../mod/mail.php:334 +msgid "Insert web link" +msgstr "Inserisci un indirizzo web" -#: ../../include/permissions.php:16 -msgid "Can view my \"public\" address book" -msgstr "Può vedere il mio elenco contatti \"pubblico\"" +#: ../../include/conversation.php:1113 +msgid "web link" +msgstr "link web" -#: ../../include/permissions.php:17 -msgid "Can view my \"public\" file storage" -msgstr "Può vedere il mio archivio file \"pubblico\"" +#: ../../include/conversation.php:1114 +msgid "Insert video link" +msgstr "Inserisci l'indirizzo di un video" -#: ../../include/permissions.php:18 -msgid "Can view my \"public\" pages" -msgstr "Può vedere le mie pagine web \"pubbliche\"" +#: ../../include/conversation.php:1115 +msgid "video link" +msgstr "link video" -#: ../../include/permissions.php:21 -msgid "Can send me their channel stream and posts" -msgstr "È tra i canali che seguo" +#: ../../include/conversation.php:1116 +msgid "Insert audio link" +msgstr "Inserisci l'indirizzo di un audio" -#: ../../include/permissions.php:22 -msgid "Can post on my channel page (\"wall\")" -msgstr "Può scrivere sulla bacheca del mio canale" +#: ../../include/conversation.php:1117 +msgid "audio link" +msgstr "link audio" -#: ../../include/permissions.php:23 -msgid "Can comment on my posts" -msgstr "Può commentare i miei articoli" +#: ../../include/conversation.php:1118 ../../mod/editlayout.php:113 +#: ../../mod/editpost.php:119 ../../mod/editblock.php:118 +#: ../../mod/editwebpage.php:150 +msgid "Set your location" +msgstr "La tua località" -#: ../../include/permissions.php:24 -msgid "Can send me private mail messages" -msgstr "Può inviarmi messaggi privati" +#: ../../include/conversation.php:1119 +msgid "set location" +msgstr "la tua località" -#: ../../include/permissions.php:25 -msgid "Can post photos to my photo albums" -msgstr "Può aggiungere foto ai miei album" +#: ../../include/conversation.php:1120 ../../mod/editlayout.php:114 +#: ../../mod/editpost.php:120 ../../mod/editblock.php:119 +#: ../../mod/editwebpage.php:151 +msgid "Clear browser location" +msgstr "Rimuovi la località data dal browser" -#: ../../include/permissions.php:26 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Può inoltrare articoli a tutti i contatti del canale tramite una @menzione" +#: ../../include/conversation.php:1121 +msgid "clear location" +msgstr "rimuovi la località" -#: ../../include/permissions.php:26 -msgid "Advanced - useful for creating group forum channels" -msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione" +#: ../../include/conversation.php:1123 ../../mod/editlayout.php:126 +#: ../../mod/editpost.php:132 ../../mod/editblock.php:132 +#: ../../mod/editwebpage.php:167 +msgid "Set title" +msgstr "Scegli un titolo" -#: ../../include/permissions.php:27 -msgid "Can chat with me (when available)" -msgstr "Può aprire una chat con me (se disponibile)" +#: ../../include/conversation.php:1126 ../../mod/editlayout.php:129 +#: ../../mod/editpost.php:134 ../../mod/editblock.php:135 +#: ../../mod/editwebpage.php:169 +msgid "Categories (comma-separated list)" +msgstr "Categorie (separate da virgola)" -#: ../../include/permissions.php:28 -msgid "Can write to my \"public\" file storage" -msgstr "Può scrivere sul mio archivio di file \"pubblico\"" +#: ../../include/conversation.php:1128 ../../mod/editlayout.php:116 +#: ../../mod/editpost.php:122 ../../mod/editblock.php:121 +#: ../../mod/editwebpage.php:153 +msgid "Permission settings" +msgstr "Impostazioni permessi" -#: ../../include/permissions.php:29 -msgid "Can edit my \"public\" pages" -msgstr "Può modificare le mie pagine web \"pubbliche\"" +#: ../../include/conversation.php:1129 +msgid "permissions" +msgstr "permessi" -#: ../../include/permissions.php:31 -msgid "Can source my \"public\" posts in derived channels" -msgstr "Può aggiungere i miei post \"pubblici\" a un suo canale derivato" +#: ../../include/conversation.php:1136 ../../mod/editlayout.php:123 +#: ../../mod/editpost.php:129 ../../mod/editblock.php:129 +#: ../../mod/editwebpage.php:162 +msgid "Public post" +msgstr "Articolo pubblico" -#: ../../include/permissions.php:31 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Piuttosto avanzato - molto utile nelle comunità aperte" +#: ../../include/conversation.php:1138 ../../mod/editlayout.php:130 +#: ../../mod/editpost.php:135 ../../mod/editblock.php:136 +#: ../../mod/editwebpage.php:170 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Per esempio: mario@esempio.com, simona@esempio.com" -#: ../../include/permissions.php:33 -msgid "Can administer my channel resources" -msgstr "Può amministrare i contenuti del mio canale" +#: ../../include/conversation.php:1151 ../../mod/editlayout.php:140 +#: ../../mod/editpost.php:146 ../../mod/editblock.php:146 +#: ../../mod/editwebpage.php:180 ../../mod/mail.php:226 ../../mod/mail.php:339 +msgid "Set expiration date" +msgstr "Data di scadenza" -#: ../../include/permissions.php:33 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri" +#: ../../include/conversation.php:1153 ../../include/ItemObject.php:591 +#: ../../mod/editpost.php:148 ../../mod/mail.php:228 ../../mod/mail.php:341 +msgid "Encrypt text" +msgstr "Crittografia del testo" -#: ../../include/account.php:23 -msgid "Not a valid email address" -msgstr "Email non valida" +#: ../../include/conversation.php:1155 ../../mod/editpost.php:150 +msgid "OK" +msgstr "OK" -#: ../../include/account.php:25 -msgid "Your email domain is not among those allowed on this site" -msgstr "Il dominio della tua email attualmente non è permesso su questo sito" +#: ../../include/conversation.php:1156 ../../mod/tagrm.php:11 +#: ../../mod/tagrm.php:94 ../../mod/editpost.php:151 +#: ../../mod/settings.php:516 ../../mod/settings.php:542 +#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117 +msgid "Cancel" +msgstr "Annulla" -#: ../../include/account.php:31 -msgid "Your email address is already registered at this site." -msgstr "La tua email è già registrata su questo sito." +#: ../../include/conversation.php:1392 +msgid "Discover" +msgstr "Scopri" -#: ../../include/account.php:64 -msgid "An invitation is required." -msgstr "È necessario un invito." +#: ../../include/conversation.php:1395 +msgid "Imported public streams" +msgstr "Contenuti pubblici importati" -#: ../../include/account.php:68 -msgid "Invitation could not be verified." -msgstr "L'invito non può essere verificato." +#: ../../include/conversation.php:1400 +msgid "Commented Order" +msgstr "Ultimi commenti" -#: ../../include/account.php:119 -msgid "Please enter the required information." -msgstr "Inserisci le informazioni richieste." +#: ../../include/conversation.php:1403 +msgid "Sort by Comment Date" +msgstr "Per data del commento" -#: ../../include/account.php:187 -msgid "Failed to store account information." -msgstr "Non è stato possibile salvare le informazioni del tuo account." +#: ../../include/conversation.php:1407 +msgid "Posted Order" +msgstr "Ultimi articoli" -#: ../../include/account.php:273 -#, php-format -msgid "Registration request at %s" -msgstr "Richiesta di registrazione su %s" +#: ../../include/conversation.php:1410 +msgid "Sort by Post Date" +msgstr "Per data di creazione" -#: ../../include/account.php:275 ../../include/account.php:302 -#: ../../include/account.php:359 -msgid "Administrator" -msgstr "Amministratore" +#: ../../include/conversation.php:1418 +msgid "Posts that mention or involve you" +msgstr "Articoli che ti riguardano o ti menzionano" -#: ../../include/account.php:297 -msgid "your registration password" -msgstr "la password di registrazione" +#: ../../include/conversation.php:1424 ../../mod/connections.php:211 +#: ../../mod/connections.php:224 ../../mod/menu.php:61 +msgid "New" +msgstr "Novità" -#: ../../include/account.php:300 ../../include/account.php:357 -#, php-format -msgid "Registration details for %s" -msgstr "Dettagli della registrazione di %s" +#: ../../include/conversation.php:1427 +msgid "Activity Stream - by date" +msgstr "Elenco attività - per data" -#: ../../include/account.php:366 -msgid "Account approved." -msgstr "Account approvato." +#: ../../include/conversation.php:1433 +msgid "Starred" +msgstr "Preferiti" -#: ../../include/account.php:400 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrazione revocata per %s" +#: ../../include/conversation.php:1436 +msgid "Favourite Posts" +msgstr "Articoli preferiti" -#: ../../include/photos.php:15 ../../include/attach.php:119 -#: ../../include/attach.php:166 ../../include/attach.php:229 -#: ../../include/attach.php:243 ../../include/attach.php:283 -#: ../../include/attach.php:297 ../../include/attach.php:322 -#: ../../include/attach.php:513 ../../include/attach.php:585 -#: ../../include/chat.php:116 ../../include/items.php:3645 -#: ../../mod/mood.php:119 ../../mod/mitem.php:73 ../../mod/achievements.php:27 -#: ../../mod/poke.php:128 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/authtest.php:13 ../../mod/profile.php:64 ../../mod/profile.php:72 -#: ../../mod/block.php:22 ../../mod/block.php:72 -#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 -#: ../../mod/blocks.php:29 ../../mod/blocks.php:44 ../../mod/profiles.php:152 -#: ../../mod/profiles.php:453 ../../mod/bookmarks.php:46 -#: ../../mod/channel.php:89 ../../mod/channel.php:193 -#: ../../mod/channel.php:236 ../../mod/chat.php:90 ../../mod/chat.php:95 -#: ../../mod/register.php:68 ../../mod/regmod.php:18 ../../mod/common.php:35 -#: ../../mod/network.php:12 ../../mod/connections.php:169 -#: ../../mod/connedit.php:221 ../../mod/delegate.php:6 ../../mod/page.php:30 -#: ../../mod/page.php:80 ../../mod/settings.php:492 ../../mod/setup.php:203 -#: ../../mod/editblock.php:34 ../../mod/pdledit.php:21 -#: ../../mod/editlayout.php:48 ../../mod/editpost.php:13 -#: ../../mod/editwebpage.php:44 ../../mod/editwebpage.php:83 -#: ../../mod/events.php:140 ../../mod/sources.php:66 -#: ../../mod/filestorage.php:10 ../../mod/filestorage.php:59 -#: ../../mod/filestorage.php:75 ../../mod/filestorage.php:98 -#: ../../mod/fsuggest.php:78 ../../mod/suggest.php:26 ../../mod/group.php:9 -#: ../../mod/thing.php:247 ../../mod/thing.php:263 ../../mod/thing.php:298 -#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/item.php:179 -#: ../../mod/item.php:187 ../../mod/item.php:872 ../../mod/layouts.php:27 -#: ../../mod/layouts.php:39 ../../mod/viewconnections.php:22 -#: ../../mod/viewconnections.php:27 ../../mod/viewsrc.php:12 -#: ../../mod/mail.php:108 ../../mod/manage.php:6 ../../mod/menu.php:44 -#: ../../mod/webpages.php:40 ../../mod/message.php:16 -#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97 -#: ../../mod/photos.php:68 ../../mod/photos.php:526 -#: ../../mod/notifications.php:66 ../../index.php:187 ../../index.php:362 -msgid "Permission denied." -msgstr "Permesso negato." +#: ../../include/conversation.php:1443 +msgid "Spam" +msgstr "Spam" -#: ../../include/photos.php:89 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "L'immagine supera il limite massimo di %lu bytes" +#: ../../include/conversation.php:1446 +msgid "Posts flagged as SPAM" +msgstr "Articoli marcati come spam" -#: ../../include/photos.php:96 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." +#: ../../include/conversation.php:1480 ../../mod/admin.php:890 +msgid "Channel" +msgstr "Canale" -#: ../../include/photos.php:123 ../../mod/profile_photo.php:216 -msgid "Unable to process image" -msgstr "Impossibile elaborare l'immagine" +#: ../../include/conversation.php:1483 +msgid "Status Messages and Posts" +msgstr "Articoli e messaggi di stato" -#: ../../include/photos.php:186 -msgid "Photo storage failed." -msgstr "Impossibile caricare la foto." +#: ../../include/conversation.php:1492 +msgid "About" +msgstr "Informazioni" -#: ../../include/photos.php:311 ../../include/conversation.php:1504 +#: ../../include/conversation.php:1495 +msgid "Profile Details" +msgstr "Dettagli del profilo" + +#: ../../include/conversation.php:1504 ../../include/photos.php:311 msgid "Photo Albums" msgstr "Album foto" -#: ../../include/photos.php:315 ../../mod/photos.php:693 -#: ../../mod/photos.php:1190 -msgid "Upload New Photos" -msgstr "Carica nuove foto" +#: ../../include/conversation.php:1513 +msgid "Files and Storage" +msgstr "Archivio file" -#: ../../include/acl_selectors.php:238 -msgid "Visible to everybody" -msgstr "Visibile a tutti" +#: ../../include/conversation.php:1522 ../../include/conversation.php:1525 +msgid "Chatrooms" +msgstr "Chat" -#: ../../include/acl_selectors.php:239 -msgid "Show" -msgstr "Mostra" +#: ../../include/conversation.php:1535 +msgid "Events and Calendar" +msgstr "Calendario eventi" -#: ../../include/acl_selectors.php:240 -msgid "Don't show" -msgstr "Non mostrare" +#: ../../include/conversation.php:1543 +msgid "Saved Bookmarks" +msgstr "Segnalibri salvati" -#: ../../include/acl_selectors.php:246 ../../mod/chat.php:209 -#: ../../mod/filestorage.php:126 ../../mod/photos.php:606 -#: ../../mod/photos.php:949 -msgid "Permissions" -msgstr "Permessi" +#: ../../include/conversation.php:1554 +msgid "Manage Webpages" +msgstr "Gestisci le pagine web" -#: ../../include/acl_selectors.php:247 -msgid "Close" -msgstr "Chiudi" +#: ../../include/comanche.php:35 ../../view/theme/redbasic/php/config.php:84 +msgid "Default" +msgstr "Predefinito" + +#: ../../include/message.php:18 +msgid "No recipient provided." +msgstr "Devi scegliere un destinatario." + +#: ../../include/message.php:23 +msgid "[no subject]" +msgstr "[nessun titolo]" + +#: ../../include/message.php:42 +msgid "Unable to determine sender." +msgstr "Impossibile determinare il mittente." + +#: ../../include/message.php:143 +msgid "Stored post could not be verified." +msgstr "Non è stato possibile verificare l'articolo inserito." #: ../../include/activities.php:39 msgid " and " @@ -390,9 +1119,550 @@ msgstr "Guarda %2$s di %1$s " msgid "%1$s has an updated %2$s, changing %3$s." msgstr "%1$s ha aggiornato %2$s cambiando %3$s." -#: ../../include/api.php:1016 -msgid "Public Timeline" -msgstr "Diario pubblico" +#: ../../include/network.php:652 +msgid "view full size" +msgstr "guarda nelle dimensioni reali" + +#: ../../include/bookmarks.php:42 +#, php-format +msgid "%1$s's bookmarks" +msgstr "I segnalibri di %1$s" + +#: ../../include/taxonomy.php:210 +msgid "Tags" +msgstr "Tag" + +#: ../../include/taxonomy.php:227 +msgid "Keywords" +msgstr "Parole chiave" + +#: ../../include/taxonomy.php:252 +msgid "have" +msgstr "ho" + +#: ../../include/taxonomy.php:252 +msgid "has" +msgstr "ha" + +#: ../../include/taxonomy.php:253 +msgid "want" +msgstr "voglio" + +#: ../../include/taxonomy.php:253 +msgid "wants" +msgstr "vuole" + +#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:205 +msgid "like" +msgstr "mi piace" + +#: ../../include/taxonomy.php:254 +msgid "likes" +msgstr "mi piace" + +#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:206 +msgid "dislike" +msgstr "non mi piace" + +#: ../../include/taxonomy.php:255 +msgid "dislikes" +msgstr "non mi piace" + +#: ../../include/ItemObject.php:96 ../../include/page_widgets.php:8 +#: ../../include/page_widgets.php:36 ../../include/menu.php:42 +#: ../../mod/editlayout.php:106 ../../mod/webpages.php:119 +#: ../../mod/thing.php:235 ../../mod/blocks.php:94 +#: ../../mod/filestorage.php:174 ../../mod/editpost.php:112 +#: ../../mod/settings.php:577 ../../mod/layouts.php:112 +#: ../../mod/connections.php:392 ../../mod/editblock.php:111 +#: ../../mod/editwebpage.php:143 ../../mod/menu.php:59 +msgid "Edit" +msgstr "Modifica" + +#: ../../include/ItemObject.php:118 +msgid "save to folder" +msgstr "salva in una cartella" + +#: ../../include/ItemObject.php:130 ../../include/ItemObject.php:142 +msgid "View all" +msgstr "Vedi tutto" + +#: ../../include/ItemObject.php:134 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Mi piace" +msgstr[1] "Mi piace" + +#: ../../include/ItemObject.php:139 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Non mi piace" +msgstr[1] "Non mi piace" + +#: ../../include/ItemObject.php:167 +msgid "add star" +msgstr "aggiungi ai preferiti" + +#: ../../include/ItemObject.php:168 +msgid "remove star" +msgstr "rimuovi dai preferiti" + +#: ../../include/ItemObject.php:169 +msgid "toggle star status" +msgstr "Attiva/disattiva preferito" + +#: ../../include/ItemObject.php:173 +msgid "starred" +msgstr "preferito" + +#: ../../include/ItemObject.php:190 +msgid "add tag" +msgstr "Aggiungi tag" + +#: ../../include/ItemObject.php:205 ../../mod/photos.php:971 +msgid "I like this (toggle)" +msgstr "Attiva/disattiva Mi piace" + +#: ../../include/ItemObject.php:206 ../../mod/photos.php:972 +msgid "I don't like this (toggle)" +msgstr "Attiva/disattiva Non mi piace" + +#: ../../include/ItemObject.php:208 +msgid "Share this" +msgstr "Condividi" + +#: ../../include/ItemObject.php:208 +msgid "share" +msgstr "condividi" + +#: ../../include/ItemObject.php:232 ../../include/ItemObject.php:233 +#, php-format +msgid "View %s's profile - %s" +msgstr "Guarda il profilo di %s - %s" + +#: ../../include/ItemObject.php:234 +msgid "to" +msgstr "a" + +#: ../../include/ItemObject.php:235 +msgid "via" +msgstr "via" + +#: ../../include/ItemObject.php:236 +msgid "Wall-to-Wall" +msgstr "Da bacheca a bacheca" + +#: ../../include/ItemObject.php:237 +msgid "via Wall-To-Wall:" +msgstr "da bacheca a bacheca:" + +#: ../../include/ItemObject.php:271 +msgid "Bookmark Links" +msgstr "I link dei segnalibri" + +#: ../../include/ItemObject.php:279 +msgctxt "noun" +msgid "Likes" +msgstr "Mi piace" + +#: ../../include/ItemObject.php:280 +msgctxt "noun" +msgid "Dislikes" +msgstr "Non mi piace" + +#: ../../include/ItemObject.php:285 ../../include/acl_selectors.php:247 +msgid "Close" +msgstr "Chiudi" + +#: ../../include/ItemObject.php:311 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d commento" +msgstr[1] "%d commenti" + +#: ../../include/ItemObject.php:312 ../../include/contact_widgets.php:130 +#: ../../include/js_strings.php:7 +msgid "show more" +msgstr "mostra tutto" + +#: ../../include/ItemObject.php:576 ../../mod/photos.php:990 +#: ../../mod/photos.php:1077 +msgid "This is you" +msgstr "Questo sei tu" + +#: ../../include/ItemObject.php:578 ../../include/js_strings.php:6 +#: ../../mod/photos.php:992 ../../mod/photos.php:1079 +msgid "Comment" +msgstr "Commento" + +#: ../../include/ItemObject.php:579 ../../mod/group.php:81 +#: ../../mod/thing.php:283 ../../mod/thing.php:326 ../../mod/connect.php:92 +#: ../../mod/pdledit.php:58 ../../mod/sources.php:104 +#: ../../mod/sources.php:138 ../../mod/filestorage.php:135 +#: ../../mod/fsuggest.php:108 ../../mod/connedit.php:476 +#: ../../mod/settings.php:515 ../../mod/settings.php:627 +#: ../../mod/settings.php:655 ../../mod/settings.php:679 +#: ../../mod/settings.php:751 ../../mod/settings.php:929 +#: ../../mod/setup.php:307 ../../mod/setup.php:350 ../../mod/events.php:481 +#: ../../mod/photos.php:565 ../../mod/photos.php:670 ../../mod/photos.php:953 +#: ../../mod/photos.php:993 ../../mod/photos.php:1080 ../../mod/import.php:387 +#: ../../mod/mood.php:142 ../../mod/chat.php:177 ../../mod/chat.php:211 +#: ../../mod/profiles.php:506 ../../mod/mail.php:223 ../../mod/mail.php:335 +#: ../../mod/appman.php:91 ../../mod/poke.php:166 ../../mod/admin.php:441 +#: ../../mod/admin.php:750 ../../mod/admin.php:884 ../../mod/admin.php:1017 +#: ../../mod/admin.php:1216 ../../mod/admin.php:1303 ../../mod/invite.php:156 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Salva" + +#: ../../include/ItemObject.php:580 +msgid "Bold" +msgstr "Grassetto" + +#: ../../include/ItemObject.php:581 +msgid "Italic" +msgstr "Corsivo" + +#: ../../include/ItemObject.php:582 +msgid "Underline" +msgstr "Sottolineato" + +#: ../../include/ItemObject.php:583 +msgid "Quote" +msgstr "Citazione" + +#: ../../include/ItemObject.php:584 +msgid "Code" +msgstr "Codice" + +#: ../../include/ItemObject.php:585 +msgid "Image" +msgstr "Immagine" + +#: ../../include/ItemObject.php:586 +msgid "Link" +msgstr "Link" + +#: ../../include/ItemObject.php:587 +msgid "Video" +msgstr "Video" + +#: ../../include/items.php:306 ../../mod/group.php:68 +#: ../../mod/subthread.php:49 ../../mod/profperm.php:23 ../../mod/like.php:63 +#: ../../index.php:361 +msgid "Permission denied" +msgstr "Permesso negato" + +#: ../../include/items.php:830 +msgid "(Unknown)" +msgstr "(Sconosciuto)" + +#: ../../include/items.php:3583 ../../mod/home.php:63 ../../mod/thing.php:78 +#: ../../mod/filestorage.php:18 ../../mod/viewsrc.php:18 +#: ../../mod/display.php:32 ../../mod/admin.php:159 ../../mod/admin.php:921 +#: ../../mod/admin.php:1124 +msgid "Item not found." +msgstr "Elemento non trovato." + +#: ../../include/items.php:3645 ../../include/attach.php:119 +#: ../../include/attach.php:166 ../../include/attach.php:229 +#: ../../include/attach.php:243 ../../include/attach.php:283 +#: ../../include/attach.php:297 ../../include/attach.php:322 +#: ../../include/attach.php:513 ../../include/attach.php:585 +#: ../../include/photos.php:15 ../../include/chat.php:116 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/editlayout.php:48 ../../mod/webpages.php:40 +#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97 +#: ../../mod/group.php:9 ../../mod/thing.php:247 ../../mod/thing.php:263 +#: ../../mod/thing.php:298 ../../mod/notifications.php:66 +#: ../../mod/block.php:22 ../../mod/block.php:72 ../../mod/message.php:16 +#: ../../mod/mitem.php:73 ../../mod/item.php:179 ../../mod/item.php:187 +#: ../../mod/item.php:872 ../../mod/suggest.php:26 ../../mod/network.php:12 +#: ../../mod/bookmarks.php:46 ../../mod/channel.php:89 +#: ../../mod/channel.php:193 ../../mod/channel.php:236 +#: ../../mod/pdledit.php:21 ../../mod/sources.php:66 +#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 +#: ../../mod/blocks.php:29 ../../mod/blocks.php:44 +#: ../../mod/filestorage.php:10 ../../mod/filestorage.php:59 +#: ../../mod/filestorage.php:75 ../../mod/filestorage.php:98 +#: ../../mod/authtest.php:13 ../../mod/fsuggest.php:78 +#: ../../mod/connedit.php:221 ../../mod/viewsrc.php:12 +#: ../../mod/achievements.php:27 ../../mod/editpost.php:13 +#: ../../mod/settings.php:492 ../../mod/setup.php:203 ../../mod/events.php:140 +#: ../../mod/photos.php:68 ../../mod/photos.php:526 ../../mod/delegate.php:6 +#: ../../mod/layouts.php:27 ../../mod/layouts.php:39 +#: ../../mod/connections.php:169 ../../mod/page.php:30 ../../mod/page.php:80 +#: ../../mod/mood.php:119 ../../mod/chat.php:90 ../../mod/chat.php:95 +#: ../../mod/editblock.php:34 ../../mod/editwebpage.php:44 +#: ../../mod/editwebpage.php:83 ../../mod/profiles.php:152 +#: ../../mod/profiles.php:453 ../../mod/menu.php:44 ../../mod/mail.php:108 +#: ../../mod/appman.php:58 ../../mod/poke.php:128 +#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 +#: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/register.php:68 +#: ../../mod/manage.php:6 ../../mod/invite.php:13 ../../mod/invite.php:104 +#: ../../mod/common.php:35 ../../mod/regmod.php:18 ../../index.php:187 +#: ../../index.php:362 +msgid "Permission denied." +msgstr "Permesso negato." + +#: ../../include/items.php:4007 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." +msgstr "Insieme non trovato." + +#: ../../include/items.php:4022 +msgid "Collection is empty." +msgstr "L'insieme di canali è vuoto." + +#: ../../include/items.php:4029 +#, php-format +msgid "Collection: %s" +msgstr "Insieme: %s" + +#: ../../include/items.php:4040 +#, php-format +msgid "Connection: %s" +msgstr "Contatto: %s" + +#: ../../include/items.php:4043 +msgid "Connection not found." +msgstr "Contatto non trovato." + +#: ../../include/dir_fns.php:36 +msgid "Sort Options" +msgstr "Opzioni di ordinamento" + +#: ../../include/dir_fns.php:37 +msgid "Alphabetic" +msgstr "Alfabetico" + +#: ../../include/dir_fns.php:38 +msgid "Reverse Alphabetic" +msgstr "Alfabetico inverso" + +#: ../../include/dir_fns.php:39 +msgid "Newest to Oldest" +msgstr "Dal più nuovo al più vecchio" + +#: ../../include/dir_fns.php:51 +msgid "Enable Safe Search" +msgstr "Abilita SafeSearch" + +#: ../../include/dir_fns.php:53 +msgid "Disable Safe Search" +msgstr "Disabilita SafeSearch" + +#: ../../include/dir_fns.php:55 +msgid "Safe Mode" +msgstr "Modalità SafeSearch" + +#: ../../include/security.php:301 +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 "L'identificativo di sicurezza del modulo che hai riempito non è corretto. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto." + +#: ../../include/notify.php:23 +msgid "created a new post" +msgstr "Ha creato un nuovo articolo" + +#: ../../include/notify.php:24 +#, php-format +msgid "commented on %s's post" +msgstr "ha commentato l'articolo di %s" + +#: ../../include/enotify.php:41 +msgid "Red Matrix Notification" +msgstr "Notifica di Red Matrix" + +#: ../../include/enotify.php:42 +msgid "redmatrix" +msgstr "redmatrix" + +#: ../../include/enotify.php:44 +msgid "Thank You," +msgstr "Grazie," + +#: ../../include/enotify.php:46 +#, php-format +msgid "%s Administrator" +msgstr "Amministratore %s" + +#: ../../include/enotify.php:81 +#, php-format +msgid "%s " +msgstr "%s " + +#: ../../include/enotify.php:85 +#, php-format +msgid "[Red:Notify] New mail received at %s" +msgstr "[Red:Notifica] Nuovo messaggio ricevuto su %s" + +#: ../../include/enotify.php:87 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "%1$s, %2$s ti ha mandato un messaggio privato su %3$s." + +#: ../../include/enotify.php:88 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s ti ha mandato %2$s." + +#: ../../include/enotify.php:88 +msgid "a private message" +msgstr "un messaggio privato" + +#: ../../include/enotify.php:89 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Visita %s per leggere i tuoi messaggi privati e rispondere." + +#: ../../include/enotify.php:144 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s[/zrl]" + +#: ../../include/enotify.php:152 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%5$s di %4$s[/zrl]" + +#: ../../include/enotify.php:161 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s che hai creato[/zrl]" + +#: ../../include/enotify.php:172 +#, php-format +msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Red:Notifica] Nuovo commento di %2$s alla conversazione #%1$d" + +#: ../../include/enotify.php:173 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." +msgstr "%1$s, %2$s ha commentato un elemento che stavi seguendo." + +#: ../../include/enotify.php:176 ../../include/enotify.php:191 +#: ../../include/enotify.php:217 ../../include/enotify.php:236 +#: ../../include/enotify.php:250 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Visita %s per leggere o commentare la conversazione." + +#: ../../include/enotify.php:182 +#, php-format +msgid "[Red:Notify] %s posted to your profile wall" +msgstr "[Red:Notifica] %s ha scritto sulla tua bacheca" + +#: ../../include/enotify.php:184 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "%1$s, %2$s ha scritto sulla bacheca del tuo profilo su %3$s" + +#: ../../include/enotify.php:186 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "%1$s, %2$s ha scritto sulla [zrl=%3$s]tua bacheca[/zrl]" + +#: ../../include/enotify.php:210 +#, php-format +msgid "[Red:Notify] %s tagged you" +msgstr "[Red:Notifica] %s ti ha taggato" + +#: ../../include/enotify.php:211 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "%1$s, %2$s ti ha taggato su %3$s" + +#: ../../include/enotify.php:212 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgstr "%1$s, %2$s [zrl=%3$s]ti ha taggato[/zrl]." + +#: ../../include/enotify.php:225 +#, php-format +msgid "[Red:Notify] %1$s poked you" +msgstr "[Red:Notifica] %1$s ti ha mandato un poke" + +#: ../../include/enotify.php:226 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "%1$s, %2$s ti ha mandato un poke su %3$s" + +#: ../../include/enotify.php:227 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s, %2$s [zrl=%2$s]ti ha mandato un poke[/zrl]." + +#: ../../include/enotify.php:243 +#, php-format +msgid "[Red:Notify] %s tagged your post" +msgstr "[Red:Notifica] %s ha taggato il tuo articolo" + +#: ../../include/enotify.php:244 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "%1$s, %2$s ha taggato il tuo articolo su %3$s" + +#: ../../include/enotify.php:245 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "%1$s, %2$s ha taggato [zrl=%3$s]il tuo articolo[/zrl]" + +#: ../../include/enotify.php:257 +msgid "[Red:Notify] Introduction received" +msgstr "[Red:Notifica] Hai una richiesta di amicizia" + +#: ../../include/enotify.php:258 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgstr "%1$s, hai ricevuto una richiesta di entrare in contatto da '%2$s' su %3$s" + +#: ../../include/enotify.php:259 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "%1$s, hai ricevuto una [zrl=%2$s]richiesta di entrare in contatto[/zrl] da %3$s." + +#: ../../include/enotify.php:263 ../../include/enotify.php:282 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Puoi visitare il suo profilo su %s" + +#: ../../include/enotify.php:265 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Visita %s per approvare o rifiutare la richiesta di entrare in contatto." + +#: ../../include/enotify.php:272 +msgid "[Red:Notify] Friend suggestion received" +msgstr "[Red:Notifica] Ti è stato suggerito un amico" + +#: ../../include/enotify.php:273 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, ti è stato suggerito un amico da '%2$s' su %3$s" + +#: ../../include/enotify.php:274 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " +"%4$s." +msgstr "%1$s, %4$s ti [zrl=%2$s]ha suggerito %3$s[/zrl] come amico." + +#: ../../include/enotify.php:280 +msgid "Name:" +msgstr "Nome:" + +#: ../../include/enotify.php:281 +msgid "Photo:" +msgstr "Foto:" + +#: ../../include/enotify.php:284 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Visita %s per approvare o rifiutare il suggerimento." #: ../../include/attach.php:224 ../../include/attach.php:278 msgid "Item was not found." @@ -452,341 +1722,389 @@ msgstr "mkdir fallito." msgid "database storage failed." msgstr "scrittura su database fallita." -#: ../../include/auth.php:79 -msgid "Logged out." -msgstr "Uscita effettuata." +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Nuova pagina web" -#: ../../include/auth.php:198 -msgid "Failed authentication" -msgstr "Autenticazione fallita" +#: ../../include/page_widgets.php:39 ../../mod/webpages.php:122 +#: ../../mod/blocks.php:97 ../../mod/layouts.php:116 +msgid "View" +msgstr "Guarda" -#: ../../include/auth.php:213 ../../mod/openid.php:188 -msgid "Login failed." -msgstr "Accesso fallito." +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:124 +msgid "Actions" +msgstr "Azioni" -#: ../../include/bb2diaspora.php:433 ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:125 +msgid "Page Link" +msgstr "Link alla pagina" -#: ../../include/bb2diaspora.php:439 ../../include/event.php:20 -msgid "Starts:" -msgstr "Inizio:" +#: ../../include/page_widgets.php:43 ../../mod/webpages.php:126 +msgid "Title" +msgstr "Titolo" -#: ../../include/bb2diaspora.php:447 ../../include/event.php:30 -msgid "Finishes:" -msgstr "Fine:" +#: ../../include/page_widgets.php:44 ../../mod/webpages.php:127 +msgid "Created" +msgstr "Creato" -#: ../../include/bb2diaspora.php:455 ../../include/event.php:40 -#: ../../include/identity.php:726 ../../mod/directory.php:156 -#: ../../mod/dirprofile.php:105 ../../mod/events.php:474 -msgid "Location:" -msgstr "Luogo:" +#: ../../include/page_widgets.php:45 ../../mod/webpages.php:128 +msgid "Edited" +msgstr "Modificato" -#: ../../include/bbcode.php:128 ../../include/bbcode.php:633 -#: ../../include/bbcode.php:636 ../../include/bbcode.php:641 -#: ../../include/bbcode.php:644 ../../include/bbcode.php:647 -#: ../../include/bbcode.php:650 ../../include/bbcode.php:655 -#: ../../include/bbcode.php:658 ../../include/bbcode.php:663 -#: ../../include/bbcode.php:666 ../../include/bbcode.php:669 -#: ../../include/bbcode.php:672 -msgid "Image/photo" -msgstr "Immagine" +#: ../../include/photos.php:51 ../../include/photo/photo_driver.php:643 +#: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 +#: ../../mod/profile_photo.php:421 ../../mod/photos.php:91 +#: ../../mod/photos.php:655 ../../mod/photos.php:677 +msgid "Profile Photos" +msgstr "Foto del profilo" -#: ../../include/bbcode.php:163 ../../include/bbcode.php:683 -msgid "Encrypted content" -msgstr "Contenuto crittografato" - -#: ../../include/bbcode.php:170 -msgid "QR code" -msgstr "QR code" - -#: ../../include/bbcode.php:219 +#: ../../include/photos.php:89 #, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s ha scritto %2$s %3$s" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "L'immagine supera il limite massimo di %lu bytes" -#: ../../include/bbcode.php:221 -msgid "post" -msgstr "l'articolo" +#: ../../include/photos.php:96 +msgid "Image file is empty." +msgstr "Il file dell'immagine è vuoto." -#: ../../include/bbcode.php:601 ../../include/bbcode.php:621 -msgid "$1 wrote:" -msgstr "$1 ha scritto:" +#: ../../include/photos.php:123 ../../mod/profile_photo.php:216 +msgid "Unable to process image" +msgstr "Impossibile elaborare l'immagine" -#: ../../include/ItemObject.php:89 ../../include/conversation.php:639 -#: ../../mod/photos.php:846 -msgid "Private Message" -msgstr "Messaggio privato" +#: ../../include/photos.php:186 +msgid "Photo storage failed." +msgstr "Impossibile caricare la foto." -#: ../../include/ItemObject.php:108 ../../include/conversation.php:632 -#: ../../mod/admin.php:757 ../../mod/admin.php:886 ../../mod/connedit.php:398 -#: ../../mod/settings.php:578 ../../mod/filestorage.php:175 -#: ../../mod/group.php:176 ../../mod/thing.php:236 ../../mod/photos.php:1043 -msgid "Delete" -msgstr "Elimina" +#: ../../include/photos.php:315 ../../mod/photos.php:693 +#: ../../mod/photos.php:1190 +msgid "Upload New Photos" +msgstr "Carica nuove foto" -#: ../../include/ItemObject.php:114 ../../include/conversation.php:631 -msgid "Select" -msgstr "Seleziona" - -#: ../../include/ItemObject.php:118 -msgid "save to folder" -msgstr "salva in una cartella" - -#: ../../include/ItemObject.php:128 -msgid "Like" -msgstr "Mi piace" - -#: ../../include/ItemObject.php:128 ../../mod/profiles.php:302 -msgid "Likes" -msgstr "Mi piace" - -#: ../../include/ItemObject.php:132 -msgid "Dislike" -msgstr "Non mi piace" - -#: ../../include/ItemObject.php:132 ../../mod/profiles.php:306 -msgid "Dislikes" -msgstr "Non mi piace" - -#: ../../include/ItemObject.php:154 -msgid "add star" -msgstr "aggiungi ai preferiti" - -#: ../../include/ItemObject.php:155 -msgid "remove star" -msgstr "rimuovi dai preferiti" - -#: ../../include/ItemObject.php:156 -msgid "toggle star status" -msgstr "Attiva/disattiva preferito" - -#: ../../include/ItemObject.php:160 -msgid "starred" -msgstr "preferito" - -#: ../../include/ItemObject.php:169 ../../include/conversation.php:646 -msgid "Message is verified" -msgstr "Messaggio verificato" - -#: ../../include/ItemObject.php:177 -msgid "add tag" -msgstr "Aggiungi tag" - -#: ../../include/ItemObject.php:192 ../../mod/photos.php:971 -msgid "I like this (toggle)" -msgstr "Attiva/disattiva Mi piace" - -#: ../../include/ItemObject.php:192 ../../include/taxonomy.php:254 -msgid "like" -msgstr "mi piace" - -#: ../../include/ItemObject.php:193 ../../mod/photos.php:972 -msgid "I don't like this (toggle)" -msgstr "Attiva/disattiva Non mi piace" - -#: ../../include/ItemObject.php:193 ../../include/taxonomy.php:255 -msgid "dislike" -msgstr "non mi piace" - -#: ../../include/ItemObject.php:195 -msgid "Share this" -msgstr "Condividi" - -#: ../../include/ItemObject.php:195 -msgid "share" -msgstr "condividi" - -#: ../../include/ItemObject.php:219 ../../include/ItemObject.php:220 +#: ../../include/dba/dba_driver.php:50 #, php-format -msgid "View %s's profile - %s" -msgstr "Guarda il profilo di %s - %s" +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Non trovo le informazioni DNS per il database server '%s'" -#: ../../include/ItemObject.php:221 -msgid "to" -msgstr "a" +#: ../../include/profile_selectors.php:6 +msgid "Male" +msgstr "Maschio" -#: ../../include/ItemObject.php:222 -msgid "via" -msgstr "via" +#: ../../include/profile_selectors.php:6 +msgid "Female" +msgstr "Femmina" -#: ../../include/ItemObject.php:223 -msgid "Wall-to-Wall" -msgstr "Da bacheca a bacheca" +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Al momento maschio" -#: ../../include/ItemObject.php:224 -msgid "via Wall-To-Wall:" -msgstr "da bacheca a bacheca:" +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Al momento femmina" -#: ../../include/ItemObject.php:234 ../../include/conversation.php:690 +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Prevalentemente maschio" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Prevalentemente femmina" + +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgender" + +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Intersex" + +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transessuale" + +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Ermafrodito" + +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neutro" + +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Non specificato" + +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "Altro" + +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Indeciso" + +#: ../../include/profile_selectors.php:23 +msgid "Males" +msgstr "Maschi" + +#: ../../include/profile_selectors.php:23 +msgid "Females" +msgstr "Femmine" + +#: ../../include/profile_selectors.php:23 +msgid "Gay" +msgstr "Gay" + +#: ../../include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbica" + +#: ../../include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Senza preferenza" + +#: ../../include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Bisessuale" + +#: ../../include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Autosessuale" + +#: ../../include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Astinente" + +#: ../../include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Vergine" + +#: ../../include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Deviato" + +#: ../../include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Feticista" + +#: ../../include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Un sacco" + +#: ../../include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Asessuato" + +#: ../../include/profile_selectors.php:42 +msgid "Single" +msgstr "Single" + +#: ../../include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Da solo" + +#: ../../include/profile_selectors.php:42 +msgid "Available" +msgstr "Disponibile" + +#: ../../include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Non disponibile" + +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "Ha una cotta" + +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "Infatuato/a" + +#: ../../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:42 +msgid "Sex Addict" +msgstr "Sesso-dipendente" + +#: ../../include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Amici piccanti" + +#: ../../include/profile_selectors.php:42 +msgid "Casual" +msgstr "Casual" + +#: ../../include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Impegnato" + +#: ../../include/profile_selectors.php:42 +msgid "Married" +msgstr "Sposato/a" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "Sogna il matrimonio" + +#: ../../include/profile_selectors.php:42 +msgid "Partners" +msgstr "Partner" + +#: ../../include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "Convivente" + +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "Matrimonio regolare" + +#: ../../include/profile_selectors.php:42 +msgid "Happy" +msgstr "Felice" + +#: ../../include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Non in cerca" + +#: ../../include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Scambista" + +#: ../../include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Tradito/a" + +#: ../../include/profile_selectors.php:42 +msgid "Separated" +msgstr "Separato/a" + +#: ../../include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Instabile" + +#: ../../include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Divorziato/a" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "Sogna il divorzio" + +#: ../../include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Vedovo/a" + +#: ../../include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Incerto/a" + +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "Relazione complicata" + +#: ../../include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Chi se ne frega" + +#: ../../include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Chiedimelo" + +#: ../../include/plugin.php:486 ../../include/plugin.php:488 +msgid "Click here to upgrade." +msgstr "Clicca qui per aggiornare." + +#: ../../include/plugin.php:494 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Questa operazione esce dai termini del tuo abbonamento." + +#: ../../include/plugin.php:499 +msgid "This action is not available under your subscription plan." +msgstr "Questa operazione non è prevista dal tuo abbonamento." + +#: ../../include/acl_selectors.php:238 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: ../../include/acl_selectors.php:239 +msgid "Show" +msgstr "Mostra" + +#: ../../include/acl_selectors.php:240 +msgid "Don't show" +msgstr "Non mostrare" + +#: ../../include/acl_selectors.php:246 ../../mod/filestorage.php:126 +#: ../../mod/photos.php:606 ../../mod/photos.php:949 ../../mod/chat.php:209 +msgid "Permissions" +msgstr "Permessi" + +#: ../../include/account.php:23 +msgid "Not a valid email address" +msgstr "Email non valida" + +#: ../../include/account.php:25 +msgid "Your email domain is not among those allowed on this site" +msgstr "Il dominio della tua email attualmente non è permesso su questo sito" + +#: ../../include/account.php:31 +msgid "Your email address is already registered at this site." +msgstr "La tua email è già registrata su questo sito." + +#: ../../include/account.php:64 +msgid "An invitation is required." +msgstr "È necessario un invito." + +#: ../../include/account.php:68 +msgid "Invitation could not be verified." +msgstr "L'invito non può essere verificato." + +#: ../../include/account.php:119 +msgid "Please enter the required information." +msgstr "Inserisci le informazioni richieste." + +#: ../../include/account.php:187 +msgid "Failed to store account information." +msgstr "Non è stato possibile salvare le informazioni del tuo account." + +#: ../../include/account.php:273 #, php-format -msgid " from %s" -msgstr " da %s" +msgid "Registration request at %s" +msgstr "Richiesta di registrazione su %s" -#: ../../include/ItemObject.php:237 ../../include/conversation.php:693 +#: ../../include/account.php:275 ../../include/account.php:302 +#: ../../include/account.php:359 +msgid "Administrator" +msgstr "Amministratore" + +#: ../../include/account.php:297 +msgid "your registration password" +msgstr "la password di registrazione" + +#: ../../include/account.php:300 ../../include/account.php:357 #, php-format -msgid "last edited: %s" -msgstr "ultima modifica: %s" +msgid "Registration details for %s" +msgstr "Dettagli della registrazione di %s" -#: ../../include/ItemObject.php:238 ../../include/conversation.php:694 +#: ../../include/account.php:366 +msgid "Account approved." +msgstr "Account approvato." + +#: ../../include/account.php:400 #, php-format -msgid "Expires: %s" -msgstr "Scadenza: %s" +msgid "Registration revoked for %s" +msgstr "Registrazione revocata per %s" -#: ../../include/ItemObject.php:258 -msgid "Bookmark Links" -msgstr "I link dei segnalibri" +#: ../../include/Contact.php:123 +msgid "New window" +msgstr "Nuova finestra" -#: ../../include/ItemObject.php:272 ../../include/conversation.php:711 -#: ../../include/conversation.php:1127 ../../mod/editblock.php:120 -#: ../../mod/editlayout.php:115 ../../mod/editpost.php:121 -#: ../../mod/editwebpage.php:152 ../../mod/mail.php:222 ../../mod/mail.php:336 -#: ../../mod/photos.php:974 -msgid "Please wait" -msgstr "Attendere" - -#: ../../include/ItemObject.php:293 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commento" -msgstr[1] "%d commenti" - -#: ../../include/ItemObject.php:294 ../../include/contact_widgets.php:130 -#: ../../include/js_strings.php:7 -msgid "show more" -msgstr "mostra tutto" - -#: ../../include/ItemObject.php:558 ../../mod/photos.php:990 -#: ../../mod/photos.php:1077 -msgid "This is you" -msgstr "Questo sei tu" - -#: ../../include/ItemObject.php:560 ../../include/js_strings.php:6 -#: ../../mod/photos.php:992 ../../mod/photos.php:1079 -msgid "Comment" -msgstr "Commento" - -#: ../../include/ItemObject.php:561 ../../mod/mood.php:142 -#: ../../mod/admin.php:441 ../../mod/admin.php:750 ../../mod/admin.php:884 -#: ../../mod/admin.php:1017 ../../mod/admin.php:1216 ../../mod/admin.php:1303 -#: ../../mod/poke.php:166 ../../mod/profiles.php:506 ../../mod/chat.php:177 -#: ../../mod/chat.php:211 ../../mod/connect.php:92 ../../mod/connedit.php:476 -#: ../../mod/settings.php:515 ../../mod/settings.php:627 -#: ../../mod/settings.php:655 ../../mod/settings.php:679 -#: ../../mod/settings.php:751 ../../mod/settings.php:929 -#: ../../mod/setup.php:307 ../../mod/setup.php:350 ../../mod/pdledit.php:58 -#: ../../mod/events.php:481 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/filestorage.php:135 -#: ../../mod/fsuggest.php:108 ../../mod/group.php:81 ../../mod/thing.php:283 -#: ../../mod/thing.php:326 ../../mod/import.php:387 ../../mod/invite.php:156 -#: ../../mod/mail.php:223 ../../mod/mail.php:335 ../../mod/photos.php:565 -#: ../../mod/photos.php:670 ../../mod/photos.php:953 ../../mod/photos.php:993 -#: ../../mod/photos.php:1080 ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/blogga/php/config.php:67 -#: ../../view/theme/blogga/view/theme/blog/config.php:67 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Salva" - -#: ../../include/ItemObject.php:562 -msgid "Bold" -msgstr "Grassetto" - -#: ../../include/ItemObject.php:563 -msgid "Italic" -msgstr "Corsivo" - -#: ../../include/ItemObject.php:564 -msgid "Underline" -msgstr "Sottolineato" - -#: ../../include/ItemObject.php:565 -msgid "Quote" -msgstr "Citazione" - -#: ../../include/ItemObject.php:566 -msgid "Code" -msgstr "Codice" - -#: ../../include/ItemObject.php:567 -msgid "Image" -msgstr "Immagine" - -#: ../../include/ItemObject.php:568 -msgid "Link" -msgstr "Link" - -#: ../../include/ItemObject.php:569 -msgid "Video" -msgstr "Video" - -#: ../../include/ItemObject.php:573 ../../include/conversation.php:1153 -#: ../../mod/editpost.php:148 ../../mod/mail.php:228 ../../mod/mail.php:341 -msgid "Encrypt text" -msgstr "Crittografia del testo" - -#: ../../include/bookmarks.php:42 -#, php-format -msgid "%1$s's bookmarks" -msgstr "I segnalibri di %1$s" - -#: ../../include/chat.php:10 -msgid "Missing room name" -msgstr "Chat senza nome" - -#: ../../include/chat.php:19 -msgid "Duplicate room name" -msgstr "Il nome della chat è duplicato" - -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." -msgstr "Il nome della chat non è valido." - -#: ../../include/chat.php:105 -msgid "Room not found." -msgstr "Chat non trovata." - -#: ../../include/chat.php:126 -msgid "Room is full" -msgstr "La chat è al completo" - -#: ../../include/taxonomy.php:210 -msgid "Tags" -msgstr "Tag" - -#: ../../include/taxonomy.php:227 -msgid "Keywords" -msgstr "Parole chiave" - -#: ../../include/taxonomy.php:252 -msgid "have" -msgstr "ho" - -#: ../../include/taxonomy.php:252 -msgid "has" -msgstr "ha" - -#: ../../include/taxonomy.php:253 -msgid "want" -msgstr "voglio" - -#: ../../include/taxonomy.php:253 -msgid "wants" -msgstr "vuole" - -#: ../../include/taxonomy.php:254 -msgid "likes" -msgstr "mi piace" - -#: ../../include/taxonomy.php:255 -msgid "dislikes" -msgstr "non mi piace" - -#: ../../include/comanche.php:35 ../../view/theme/apw/php/config.php:185 -#: ../../view/theme/redbasic/php/config.php:84 -msgid "Default" -msgstr "Predefinito" +#: ../../include/Contact.php:124 +msgid "Open the selected location in a different window or browser tab" +msgstr "Apri l'indirizzo selezionato in una nuova scheda o finestra" #: ../../include/contact_selectors.php:30 msgid "Unknown | Not categorised" @@ -849,7 +2167,7 @@ msgid "RSS/Atom" msgstr "RSS/Atom" #: ../../include/contact_selectors.php:77 ../../mod/admin.php:753 -#: ../../mod/admin.php:762 ../../boot.php:1454 +#: ../../mod/admin.php:762 ../../boot.php:1453 msgid "Email" msgstr "Email" @@ -877,6 +2195,37 @@ msgstr "XMPP/IM" msgid "MySpace" msgstr "MySpace" +#: ../../include/apps.php:109 ../../include/identity.php:942 +#: ../../include/identity.php:1031 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Profilo" + +#: ../../include/apps.php:151 ../../mod/settings.php:79 +#: ../../mod/settings.php:541 +msgid "Update" +msgstr "Aggiorna" + +#: ../../include/apps.php:151 +msgid "Install" +msgstr "Installa" + +#: ../../include/apps.php:231 ../../include/apps.php:279 +#: ../../mod/connedit.php:434 +msgid "Unknown" +msgstr "Sconosciuto" + +#: ../../include/auth.php:79 +msgid "Logged out." +msgstr "Uscita effettuata." + +#: ../../include/auth.php:198 +msgid "Failed authentication" +msgstr "Autenticazione fallita" + +#: ../../include/auth.php:213 ../../mod/openid.php:188 +msgid "Login failed." +msgstr "Accesso fallito." + #: ../../include/text.php:320 msgid "prev" msgstr "prec" @@ -916,25 +2265,10 @@ msgstr[1] "%d contatti" msgid "View Connections" msgstr "Elenco contatti" -#: ../../include/text.php:813 ../../include/text.php:827 -#: ../../include/nav.php:144 ../../mod/search.php:29 -msgid "Search" -msgstr "Cerca" - -#: ../../include/text.php:815 ../../include/text.php:829 -#: ../../include/widgets.php:185 ../../mod/rbmark.php:28 -#: ../../mod/rbmark.php:98 ../../mod/filer.php:50 -msgid "Save" -msgstr "Salva" - #: ../../include/text.php:895 msgid "poke" msgstr "poke" -#: ../../include/text.php:895 ../../include/conversation.php:240 -msgid "poked" -msgstr "ha ricevuto un poke" - #: ../../include/text.php:896 msgid "ping" msgstr "ping" @@ -1175,28 +2509,6 @@ msgstr "Contenuto della pagina:" msgid "Select an alternate language" msgstr "Seleziona una lingua diversa" -#: ../../include/text.php:1705 ../../include/conversation.php:117 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:45 ../../mod/like.php:111 -msgid "photo" -msgstr "la foto" - -#: ../../include/text.php:1708 ../../include/conversation.php:120 -#: ../../mod/tagger.php:49 -msgid "event" -msgstr "l'evento" - -#: ../../include/text.php:1711 ../../include/conversation.php:145 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:53 ../../mod/like.php:111 -msgid "status" -msgstr "il messaggio di stato" - -#: ../../include/text.php:1713 ../../include/conversation.php:147 -#: ../../mod/tagger.php:55 -msgid "comment" -msgstr "il commento" - #: ../../include/text.php:1718 msgid "activity" msgstr "l'attività" @@ -1221,783 +2533,25 @@ msgstr "Layout" msgid "Pages" msgstr "Pagine" -#: ../../include/contact_widgets.php:14 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invito disponibile" -msgstr[1] "%d inviti disponibili" +#: ../../include/chat.php:10 +msgid "Missing room name" +msgstr "Chat senza nome" -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:445 -msgid "Advanced" -msgstr "Avanzate" +#: ../../include/chat.php:19 +msgid "Duplicate room name" +msgstr "Il nome della chat è duplicato" -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "Ricerca canali" +#: ../../include/chat.php:68 ../../include/chat.php:76 +msgid "Invalid room specifier." +msgstr "Il nome della chat non è valido." -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "Scrivi un nome o un interesse" +#: ../../include/chat.php:105 +msgid "Room not found." +msgstr "Chat non trovata." -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "Entra in contatto" - -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Per esempio: Mario Rossi, Pesca" - -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:391 -#: ../../mod/directory.php:206 ../../mod/directory.php:211 -msgid "Find" -msgstr "Cerca" - -#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 -msgid "Channel Suggestions" -msgstr "Canali suggeriti" - -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "Profilo casuale" - -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "Invita amici" - -#: ../../include/contact_widgets.php:32 -msgid "Exammple: name=fred and country=iceland" -msgstr "Per esempio: name=mario e country=italy" - -#: ../../include/contact_widgets.php:33 -msgid "Advanced Find" -msgstr "Ricerca avanzata" - -#: ../../include/contact_widgets.php:58 ../../include/features.php:66 -#: ../../include/widgets.php:295 -msgid "Saved Folders" -msgstr "Cartelle salvate" - -#: ../../include/contact_widgets.php:61 ../../include/contact_widgets.php:95 -#: ../../include/widgets.php:298 -msgid "Everything" -msgstr "Tutto" - -#: ../../include/contact_widgets.php:92 ../../include/widgets.php:29 -msgid "Categories" -msgstr "Categorie" - -#: ../../include/contact_widgets.php:125 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d contatto in comune" -msgstr[1] "%d contatti in comune" - -#: ../../include/conversation.php:123 -msgid "channel" -msgstr "canale" - -#: ../../include/conversation.php:161 ../../mod/like.php:142 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s piace %3$s di %2$s" - -#: ../../include/conversation.php:164 ../../mod/like.php:144 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "A %1$s non piace %3$s di %2$s" - -#: ../../include/conversation.php:201 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s adesso è connesso con %2$s" - -#: ../../include/conversation.php:236 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha mandato un poke a %2$s" - -#: ../../include/conversation.php:258 ../../mod/mood.php:63 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s al momento è %2$s" - -#: ../../include/conversation.php:666 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Vedi il profilo di %s @ %s" - -#: ../../include/conversation.php:680 -msgid "Categories:" -msgstr "Categorie:" - -#: ../../include/conversation.php:681 -msgid "Filed under:" -msgstr "Classificato come:" - -#: ../../include/conversation.php:709 -msgid "View in context" -msgstr "Vedi nel contesto" - -#: ../../include/conversation.php:838 -msgid "remove" -msgstr "rimuovi" - -#: ../../include/conversation.php:842 -msgid "Loading..." -msgstr "Caricamento in corso..." - -#: ../../include/conversation.php:843 -msgid "Delete Selected Items" -msgstr "Elimina gli oggetti selezionati" - -#: ../../include/conversation.php:934 -msgid "View Source" -msgstr "Vedi il sorgente" - -#: ../../include/conversation.php:935 -msgid "Follow Thread" -msgstr "Segui la discussione" - -#: ../../include/conversation.php:936 -msgid "View Status" -msgstr "Guarda il messaggio di stato" - -#: ../../include/conversation.php:937 ../../include/nav.php:81 -#: ../../mod/connedit.php:351 ../../mod/connedit.php:465 -msgid "View Profile" -msgstr "Profilo" - -#: ../../include/conversation.php:938 -msgid "View Photos" -msgstr "Guarda le foto" - -#: ../../include/conversation.php:939 -msgid "Matrix Activity" -msgstr "Attività nella tua rete" - -#: ../../include/conversation.php:940 -msgid "Edit Contact" -msgstr "Modifica il contatto" - -#: ../../include/conversation.php:941 -msgid "Send PM" -msgstr "Invia messaggio privato" - -#: ../../include/conversation.php:942 -msgid "Poke" -msgstr "Poke" - -#: ../../include/conversation.php:998 -#, php-format -msgid "%s likes this." -msgstr "Piace a %s." - -#: ../../include/conversation.php:998 -#, php-format -msgid "%s doesn't like this." -msgstr "Non piace a %s." - -#: ../../include/conversation.php:1002 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "Piace a %2$d persone." - -#: ../../include/conversation.php:1004 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "" -msgstr[1] "Non piace a %2$d persone." - -#: ../../include/conversation.php:1010 -msgid "and" -msgstr "e" - -#: ../../include/conversation.php:1013 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "e altre %d persone" - -#: ../../include/conversation.php:1014 -#, php-format -msgid "%s like this." -msgstr "Piace a %s." - -#: ../../include/conversation.php:1014 -#, php-format -msgid "%s don't like this." -msgstr "Non piace a %s." - -#: ../../include/conversation.php:1071 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: ../../include/conversation.php:1072 ../../mod/mail.php:171 -#: ../../mod/mail.php:269 -msgid "Please enter a link URL:" -msgstr "Inserisci l'indirizzo del link:" - -#: ../../include/conversation.php:1073 -msgid "Please enter a video link/URL:" -msgstr "Inserisci l'indirizzo del video:" - -#: ../../include/conversation.php:1074 -msgid "Please enter an audio link/URL:" -msgstr "Inserisci l'indirizzo dell'audio:" - -#: ../../include/conversation.php:1075 -msgid "Tag term:" -msgstr "Tag:" - -#: ../../include/conversation.php:1076 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Salva nella cartella:" - -#: ../../include/conversation.php:1077 -msgid "Where are you right now?" -msgstr "Dove sei ora?" - -#: ../../include/conversation.php:1078 ../../mod/editpost.php:52 -#: ../../mod/mail.php:172 ../../mod/mail.php:270 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Scade il YYYY-MM-DD HH:MM" - -#: ../../include/conversation.php:1102 ../../mod/layouts.php:113 -#: ../../mod/photos.php:973 -msgid "Share" -msgstr "Condividi" - -#: ../../include/conversation.php:1104 ../../mod/editwebpage.php:139 -msgid "Page link title" -msgstr "Link del titolo" - -#: ../../include/conversation.php:1107 -msgid "Post as" -msgstr "Pubblica come " - -#: ../../include/conversation.php:1108 ../../mod/editblock.php:112 -#: ../../mod/editlayout.php:107 ../../mod/editpost.php:113 -#: ../../mod/editwebpage.php:144 ../../mod/mail.php:219 ../../mod/mail.php:332 -msgid "Upload photo" -msgstr "Carica foto" - -#: ../../include/conversation.php:1109 -msgid "upload photo" -msgstr "carica foto" - -#: ../../include/conversation.php:1110 ../../mod/editblock.php:113 -#: ../../mod/editlayout.php:108 ../../mod/editpost.php:114 -#: ../../mod/editwebpage.php:145 ../../mod/mail.php:220 ../../mod/mail.php:333 -msgid "Attach file" -msgstr "Allega file" - -#: ../../include/conversation.php:1111 -msgid "attach file" -msgstr "allega file" - -#: ../../include/conversation.php:1112 ../../mod/editblock.php:114 -#: ../../mod/editlayout.php:109 ../../mod/editpost.php:115 -#: ../../mod/editwebpage.php:146 ../../mod/mail.php:221 ../../mod/mail.php:334 -msgid "Insert web link" -msgstr "Inserisci un indirizzo web" - -#: ../../include/conversation.php:1113 -msgid "web link" -msgstr "link web" - -#: ../../include/conversation.php:1114 -msgid "Insert video link" -msgstr "Inserisci l'indirizzo di un video" - -#: ../../include/conversation.php:1115 -msgid "video link" -msgstr "link video" - -#: ../../include/conversation.php:1116 -msgid "Insert audio link" -msgstr "Inserisci l'indirizzo di un audio" - -#: ../../include/conversation.php:1117 -msgid "audio link" -msgstr "link audio" - -#: ../../include/conversation.php:1118 ../../mod/editblock.php:118 -#: ../../mod/editlayout.php:113 ../../mod/editpost.php:119 -#: ../../mod/editwebpage.php:150 -msgid "Set your location" -msgstr "La tua località" - -#: ../../include/conversation.php:1119 -msgid "set location" -msgstr "la tua località" - -#: ../../include/conversation.php:1120 ../../mod/editblock.php:119 -#: ../../mod/editlayout.php:114 ../../mod/editpost.php:120 -#: ../../mod/editwebpage.php:151 -msgid "Clear browser location" -msgstr "Rimuovi la località data dal browser" - -#: ../../include/conversation.php:1121 -msgid "clear location" -msgstr "rimuovi la località" - -#: ../../include/conversation.php:1123 ../../mod/editblock.php:132 -#: ../../mod/editlayout.php:126 ../../mod/editpost.php:132 -#: ../../mod/editwebpage.php:167 -msgid "Set title" -msgstr "Scegli un titolo" - -#: ../../include/conversation.php:1126 ../../mod/editblock.php:135 -#: ../../mod/editlayout.php:129 ../../mod/editpost.php:134 -#: ../../mod/editwebpage.php:169 -msgid "Categories (comma-separated list)" -msgstr "Categorie (separate da virgola)" - -#: ../../include/conversation.php:1128 ../../mod/editblock.php:121 -#: ../../mod/editlayout.php:116 ../../mod/editpost.php:122 -#: ../../mod/editwebpage.php:153 -msgid "Permission settings" -msgstr "Impostazioni permessi" - -#: ../../include/conversation.php:1129 -msgid "permissions" -msgstr "permessi" - -#: ../../include/conversation.php:1136 ../../mod/editblock.php:129 -#: ../../mod/editlayout.php:123 ../../mod/editpost.php:129 -#: ../../mod/editwebpage.php:162 -msgid "Public post" -msgstr "Articolo pubblico" - -#: ../../include/conversation.php:1138 ../../mod/editblock.php:136 -#: ../../mod/editlayout.php:130 ../../mod/editpost.php:135 -#: ../../mod/editwebpage.php:170 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Per esempio: mario@esempio.com, simona@esempio.com" - -#: ../../include/conversation.php:1151 ../../mod/editblock.php:146 -#: ../../mod/editlayout.php:140 ../../mod/editpost.php:146 -#: ../../mod/editwebpage.php:180 ../../mod/mail.php:226 ../../mod/mail.php:339 -msgid "Set expiration date" -msgstr "Data di scadenza" - -#: ../../include/conversation.php:1155 ../../mod/editpost.php:150 -msgid "OK" -msgstr "OK" - -#: ../../include/conversation.php:1156 ../../mod/settings.php:516 -#: ../../mod/settings.php:542 ../../mod/editpost.php:151 -#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117 ../../mod/tagrm.php:11 -#: ../../mod/tagrm.php:94 -msgid "Cancel" -msgstr "Annulla" - -#: ../../include/conversation.php:1392 -msgid "Discover" -msgstr "Scopri" - -#: ../../include/conversation.php:1395 -msgid "Imported public streams" -msgstr "Contenuti pubblici importati" - -#: ../../include/conversation.php:1400 -msgid "Commented Order" -msgstr "Ultimi commenti" - -#: ../../include/conversation.php:1403 -msgid "Sort by Comment Date" -msgstr "Per data del commento" - -#: ../../include/conversation.php:1407 -msgid "Posted Order" -msgstr "Ultimi articoli" - -#: ../../include/conversation.php:1410 -msgid "Sort by Post Date" -msgstr "Per data di creazione" - -#: ../../include/conversation.php:1415 ../../include/widgets.php:81 -msgid "Personal" -msgstr "Personali" - -#: ../../include/conversation.php:1418 -msgid "Posts that mention or involve you" -msgstr "Articoli che ti riguardano o ti menzionano" - -#: ../../include/conversation.php:1424 ../../include/widgets.php:83 -#: ../../mod/connections.php:211 ../../mod/connections.php:224 -#: ../../mod/menu.php:61 -msgid "New" -msgstr "Novità" - -#: ../../include/conversation.php:1427 -msgid "Activity Stream - by date" -msgstr "Elenco attività - per data" - -#: ../../include/conversation.php:1433 -msgid "Starred" -msgstr "Preferiti" - -#: ../../include/conversation.php:1436 -msgid "Favourite Posts" -msgstr "Articoli preferiti" - -#: ../../include/conversation.php:1443 -msgid "Spam" -msgstr "Spam" - -#: ../../include/conversation.php:1446 -msgid "Posts flagged as SPAM" -msgstr "Articoli marcati come spam" - -#: ../../include/conversation.php:1480 ../../mod/admin.php:890 -msgid "Channel" -msgstr "Canale" - -#: ../../include/conversation.php:1483 -msgid "Status Messages and Posts" -msgstr "Articoli e messaggi di stato" - -#: ../../include/conversation.php:1492 -msgid "About" -msgstr "Informazioni" - -#: ../../include/conversation.php:1495 -msgid "Profile Details" -msgstr "Dettagli del profilo" - -#: ../../include/conversation.php:1510 ../../include/nav.php:85 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "Elenco file" - -#: ../../include/conversation.php:1513 -msgid "Files and Storage" -msgstr "Archivio file" - -#: ../../include/conversation.php:1522 ../../include/conversation.php:1525 -msgid "Chatrooms" -msgstr "Chat" - -#: ../../include/conversation.php:1535 -msgid "Events and Calendar" -msgstr "Calendario eventi" - -#: ../../include/conversation.php:1540 ../../include/nav.php:88 -msgid "Bookmarks" -msgstr "Segnalibri" - -#: ../../include/conversation.php:1543 -msgid "Saved Bookmarks" -msgstr "Segnalibri salvati" - -#: ../../include/conversation.php:1551 ../../include/nav.php:90 -#: ../../mod/webpages.php:79 -msgid "Webpages" -msgstr "Pagine web" - -#: ../../include/conversation.php:1554 -msgid "Manage Webpages" -msgstr "Gestisci le pagine web" - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Altro" - -#: ../../include/datetime.php:152 ../../include/datetime.php:284 -msgid "year" -msgstr "anno" - -#: ../../include/datetime.php:157 ../../include/datetime.php:285 -msgid "month" -msgstr "mese" - -#: ../../include/datetime.php:162 ../../include/datetime.php:287 -msgid "day" -msgstr "giorno" - -#: ../../include/datetime.php:275 -msgid "never" -msgstr "mai" - -#: ../../include/datetime.php:281 -msgid "less than a second ago" -msgstr "meno di un secondo fa" - -#: ../../include/datetime.php:284 -msgid "years" -msgstr "anni" - -#: ../../include/datetime.php:285 -msgid "months" -msgstr "mesi" - -#: ../../include/datetime.php:286 -msgid "week" -msgstr "settimana" - -#: ../../include/datetime.php:286 -msgid "weeks" -msgstr "settimane" - -#: ../../include/datetime.php:287 -msgid "days" -msgstr "giorni" - -#: ../../include/datetime.php:288 -msgid "hour" -msgstr "ora" - -#: ../../include/datetime.php:288 -msgid "hours" -msgstr "ore" - -#: ../../include/datetime.php:289 -msgid "minute" -msgstr "minuto" - -#: ../../include/datetime.php:289 -msgid "minutes" -msgstr "minuti" - -#: ../../include/datetime.php:290 -msgid "second" -msgstr "secondo" - -#: ../../include/datetime.php:290 -msgid "seconds" -msgstr "secondi" - -#: ../../include/datetime.php:299 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s fa" - -#: ../../include/dir_fns.php:36 -msgid "Sort Options" -msgstr "Opzioni di ordinamento" - -#: ../../include/dir_fns.php:37 -msgid "Alphabetic" -msgstr "Alfabetico" - -#: ../../include/dir_fns.php:38 -msgid "Reverse Alphabetic" -msgstr "Alfabetico inverso" - -#: ../../include/dir_fns.php:39 -msgid "Newest to Oldest" -msgstr "Dal più nuovo al più vecchio" - -#: ../../include/dir_fns.php:51 -msgid "Enable Safe Search" -msgstr "Abilita SafeSearch" - -#: ../../include/dir_fns.php:53 -msgid "Disable Safe Search" -msgstr "Disabilita SafeSearch" - -#: ../../include/dir_fns.php:55 -msgid "Safe Mode" -msgstr "Modalità SafeSearch" - -#: ../../include/enotify.php:41 -msgid "Red Matrix Notification" -msgstr "Notifica di Red Matrix" - -#: ../../include/enotify.php:42 -msgid "redmatrix" -msgstr "redmatrix" - -#: ../../include/enotify.php:44 -msgid "Thank You," -msgstr "Grazie," - -#: ../../include/enotify.php:46 -#, php-format -msgid "%s Administrator" -msgstr "Amministratore %s" - -#: ../../include/enotify.php:81 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../include/enotify.php:85 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "[Red:Notifica] Nuovo messaggio ricevuto su %s" - -#: ../../include/enotify.php:87 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s ti ha mandato un messaggio privato su %3$s." - -#: ../../include/enotify.php:88 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s ti ha mandato %2$s." - -#: ../../include/enotify.php:88 -msgid "a private message" -msgstr "un messaggio privato" - -#: ../../include/enotify.php:89 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Visita %s per leggere i tuoi messaggi privati e rispondere." - -#: ../../include/enotify.php:144 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s[/zrl]" - -#: ../../include/enotify.php:152 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%5$s di %4$s[/zrl]" - -#: ../../include/enotify.php:161 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s che hai creato[/zrl]" - -#: ../../include/enotify.php:172 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Red:Notifica] Nuovo commento di %2$s alla conversazione #%1$d" - -#: ../../include/enotify.php:173 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s ha commentato un elemento che stavi seguendo." - -#: ../../include/enotify.php:176 ../../include/enotify.php:191 -#: ../../include/enotify.php:217 ../../include/enotify.php:236 -#: ../../include/enotify.php:250 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Visita %s per leggere o commentare la conversazione." - -#: ../../include/enotify.php:182 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "[Red:Notifica] %s ha scritto sulla tua bacheca" - -#: ../../include/enotify.php:184 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s ha scritto sulla bacheca del tuo profilo su %3$s" - -#: ../../include/enotify.php:186 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s ha scritto sulla [zrl=%3$s]tua bacheca[/zrl]" - -#: ../../include/enotify.php:210 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "[Red:Notifica] %s ti ha taggato" - -#: ../../include/enotify.php:211 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s ti ha taggato su %3$s" - -#: ../../include/enotify.php:212 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]ti ha taggato[/zrl]." - -#: ../../include/enotify.php:225 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "[Red:Notifica] %1$s ti ha mandato un poke" - -#: ../../include/enotify.php:226 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s ti ha mandato un poke su %3$s" - -#: ../../include/enotify.php:227 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]ti ha mandato un poke[/zrl]." - -#: ../../include/enotify.php:243 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "[Red:Notifica] %s ha taggato il tuo articolo" - -#: ../../include/enotify.php:244 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s ha taggato il tuo articolo su %3$s" - -#: ../../include/enotify.php:245 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s ha taggato [zrl=%3$s]il tuo articolo[/zrl]" - -#: ../../include/enotify.php:257 -msgid "[Red:Notify] Introduction received" -msgstr "[Red:Notifica] Hai una richiesta di amicizia" - -#: ../../include/enotify.php:258 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, hai ricevuto una richiesta di entrare in contatto da '%2$s' su %3$s" - -#: ../../include/enotify.php:259 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, hai ricevuto una [zrl=%2$s]richiesta di entrare in contatto[/zrl] da %3$s." - -#: ../../include/enotify.php:263 ../../include/enotify.php:282 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Puoi visitare il suo profilo su %s" - -#: ../../include/enotify.php:265 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Visita %s per approvare o rifiutare la richiesta di entrare in contatto." - -#: ../../include/enotify.php:272 -msgid "[Red:Notify] Friend suggestion received" -msgstr "[Red:Notifica] Ti è stato suggerito un amico" - -#: ../../include/enotify.php:273 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, ti è stato suggerito un amico da '%2$s' su %3$s" - -#: ../../include/enotify.php:274 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, %4$s ti [zrl=%2$s]ha suggerito %3$s[/zrl] come amico." - -#: ../../include/enotify.php:280 -msgid "Name:" -msgstr "Nome:" - -#: ../../include/enotify.php:281 -msgid "Photo:" -msgstr "Foto:" - -#: ../../include/enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Visita %s per approvare o rifiutare il suggerimento." +#: ../../include/chat.php:126 +msgid "Room is full" +msgstr "La chat è al completo" #: ../../include/features.php:23 msgid "General Features" @@ -2083,11 +2637,6 @@ msgstr "Anteprima articolo" msgid "Allow previewing posts and comments before publishing them" msgstr "Abilita l'anteprima degli articoli e dei commenti prima di pubblicarli" -#: ../../include/features.php:43 ../../include/widgets.php:502 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Sorgenti del canale" - #: ../../include/features.php:43 msgid "Automatically import channel content from other channels or feeds" msgstr "Importa automaticamente il contenuto del canale da altri canali o feed" @@ -2121,10 +2670,6 @@ msgstr "Filtra per insiemi di canali" msgid "Enable widget to display Network posts only from selected collections" msgstr "Mostra il riquadro per filtrare gli articoli di certi insiemi di canali" -#: ../../include/features.php:52 ../../include/widgets.php:264 -msgid "Saved Searches" -msgstr "Ricerche salvate" - #: ../../include/features.php:52 msgid "Save search terms for re-use" msgstr "Salva i termini delle ricerche per poterle ripetere" @@ -2217,72 +2762,231 @@ msgstr "Nuvola di tag" msgid "Provide a personal tag cloud on your channel page" msgstr "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale" -#: ../../include/follow.php:23 -msgid "Channel is blocked on this site." -msgstr "Il canale è bloccato per questo sito." +#: ../../include/permissions.php:13 +msgid "Can view my \"public\" stream and posts" +msgstr "Può vedere i miei contenuti \"pubblici\"" -#: ../../include/follow.php:28 -msgid "Channel location missing." -msgstr "Manca l'indirizzo del canale." +#: ../../include/permissions.php:14 +msgid "Can view my \"public\" channel profile" +msgstr "Può vedere il profilo del mio canale \"pubblico\"" -#: ../../include/follow.php:54 -msgid "Response from remote channel was incomplete." -msgstr "La risposta dal canale non è completa." +#: ../../include/permissions.php:15 +msgid "Can view my \"public\" photo albums" +msgstr "Può vedere il mio album fotografico \"pubblico\"" -#: ../../include/follow.php:85 -msgid "Channel was deleted and no longer exists." -msgstr "Il canale è stato rimosso e non esiste più." +#: ../../include/permissions.php:16 +msgid "Can view my \"public\" address book" +msgstr "Può vedere il mio elenco contatti \"pubblico\"" -#: ../../include/follow.php:132 -msgid "Channel discovery failed." -msgstr "La ricerca del canale non ha avuto successo." +#: ../../include/permissions.php:17 +msgid "Can view my \"public\" file storage" +msgstr "Può vedere il mio archivio file \"pubblico\"" -#: ../../include/follow.php:149 -msgid "local account not found." -msgstr "l'account locale non è stato trovato." +#: ../../include/permissions.php:18 +msgid "Can view my \"public\" pages" +msgstr "Può vedere le mie pagine web \"pubbliche\"" -#: ../../include/follow.php:158 -msgid "Cannot connect to yourself." -msgstr "Non puoi connetterti a te stesso." +#: ../../include/permissions.php:21 +msgid "Can send me their channel stream and posts" +msgstr "È tra i canali che seguo" -#: ../../include/group.php:25 +#: ../../include/permissions.php:22 +msgid "Can post on my channel page (\"wall\")" +msgstr "Può scrivere sulla bacheca del mio canale" + +#: ../../include/permissions.php:23 +msgid "Can comment on my posts" +msgstr "Può commentare i miei articoli" + +#: ../../include/permissions.php:24 +msgid "Can send me private mail messages" +msgstr "Può inviarmi messaggi privati" + +#: ../../include/permissions.php:25 +msgid "Can post photos to my photo albums" +msgstr "Può aggiungere foto ai miei album" + +#: ../../include/permissions.php:26 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Può inoltrare articoli a tutti i contatti del canale tramite una @menzione" + +#: ../../include/permissions.php:26 +msgid "Advanced - useful for creating group forum channels" +msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione" + +#: ../../include/permissions.php:27 +msgid "Can chat with me (when available)" +msgstr "Può aprire una chat con me (se disponibile)" + +#: ../../include/permissions.php:28 +msgid "Can write to my \"public\" file storage" +msgstr "Può scrivere sul mio archivio di file \"pubblico\"" + +#: ../../include/permissions.php:29 +msgid "Can edit my \"public\" pages" +msgstr "Può modificare le mie pagine web \"pubbliche\"" + +#: ../../include/permissions.php:31 +msgid "Can source my \"public\" posts in derived channels" +msgstr "Può aggiungere i miei post \"pubblici\" a un suo canale derivato" + +#: ../../include/permissions.php:31 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Piuttosto avanzato - molto utile nelle comunità aperte" + +#: ../../include/permissions.php:33 +msgid "Can administer my channel resources" +msgstr "Può amministrare i contenuti del mio canale" + +#: ../../include/permissions.php:33 msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "È stato ripristinato un insieme con lo stesso nome che era stato eliminato in precedenza. I permessi già presenti potrebbero rimanere validi per i nuovi canali. Se non vuoi che ciò accada, devi creare un altro insieme con un nome diverso." +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri" -#: ../../include/group.php:223 -msgid "Default privacy group for new contacts" -msgstr "Insieme predefinito per i canali che inizi a seguire" +#: ../../include/zot.php:587 +msgid "Invalid data packet" +msgstr "Dati non validi" -#: ../../include/group.php:242 ../../mod/admin.php:762 -msgid "All Channels" -msgstr "Tutti i canali" +#: ../../include/zot.php:597 +msgid "Unable to verify channel signature" +msgstr "Impossibile verificare la firma elettronica del canale" -#: ../../include/group.php:264 -msgid "edit" -msgstr "modifica" +#: ../../include/zot.php:794 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Impossibile verificare la firma elettronica del sito %s" -#: ../../include/group.php:285 -msgid "Collections" -msgstr "Insiemi di canali" +#: ../../include/contact_widgets.php:14 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invito disponibile" +msgstr[1] "%d inviti disponibili" -#: ../../include/group.php:286 -msgid "Edit collection" -msgstr "Modifica l'insieme di canali" +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:445 +msgid "Advanced" +msgstr "Avanzate" -#: ../../include/group.php:287 -msgid "Create a new collection" -msgstr "Crea un nuovo insieme" +#: ../../include/contact_widgets.php:22 +msgid "Find Channels" +msgstr "Ricerca canali" -#: ../../include/group.php:288 -msgid "Channels not in any collection" -msgstr "Canali che non sono in un insieme" +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" +msgstr "Scrivi un nome o un interesse" -#: ../../include/group.php:290 ../../include/widgets.php:265 -msgid "add" -msgstr "aggiungi" +#: ../../include/contact_widgets.php:24 +msgid "Connect/Follow" +msgstr "Entra in contatto" + +#: ../../include/contact_widgets.php:25 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Per esempio: Mario Rossi, Pesca" + +#: ../../include/contact_widgets.php:26 ../../mod/directory.php:206 +#: ../../mod/directory.php:211 ../../mod/connections.php:391 +msgid "Find" +msgstr "Cerca" + +#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 +msgid "Channel Suggestions" +msgstr "Canali suggeriti" + +#: ../../include/contact_widgets.php:29 +msgid "Random Profile" +msgstr "Profilo casuale" + +#: ../../include/contact_widgets.php:30 +msgid "Invite Friends" +msgstr "Invita amici" + +#: ../../include/contact_widgets.php:32 +msgid "Exammple: name=fred and country=iceland" +msgstr "Per esempio: name=mario e country=italy" + +#: ../../include/contact_widgets.php:33 +msgid "Advanced Find" +msgstr "Ricerca avanzata" + +#: ../../include/contact_widgets.php:125 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d contatto in comune" +msgstr[1] "%d contatti in comune" + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Altro" + +#: ../../include/datetime.php:152 ../../include/datetime.php:284 +msgid "year" +msgstr "anno" + +#: ../../include/datetime.php:157 ../../include/datetime.php:285 +msgid "month" +msgstr "mese" + +#: ../../include/datetime.php:162 ../../include/datetime.php:287 +msgid "day" +msgstr "giorno" + +#: ../../include/datetime.php:275 +msgid "never" +msgstr "mai" + +#: ../../include/datetime.php:281 +msgid "less than a second ago" +msgstr "meno di un secondo fa" + +#: ../../include/datetime.php:284 +msgid "years" +msgstr "anni" + +#: ../../include/datetime.php:285 +msgid "months" +msgstr "mesi" + +#: ../../include/datetime.php:286 +msgid "week" +msgstr "settimana" + +#: ../../include/datetime.php:286 +msgid "weeks" +msgstr "settimane" + +#: ../../include/datetime.php:287 +msgid "days" +msgstr "giorni" + +#: ../../include/datetime.php:288 +msgid "hour" +msgstr "ora" + +#: ../../include/datetime.php:288 +msgid "hours" +msgstr "ore" + +#: ../../include/datetime.php:289 +msgid "minute" +msgstr "minuto" + +#: ../../include/datetime.php:289 +msgid "minutes" +msgstr "minuti" + +#: ../../include/datetime.php:290 +msgid "second" +msgstr "secondo" + +#: ../../include/datetime.php:290 +msgid "seconds" +msgstr "secondi" + +#: ../../include/datetime.php:299 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s fa" #: ../../include/identity.php:30 ../../mod/item.php:1244 msgid "Unable to obtain identity information from database" @@ -2321,19 +3025,14 @@ msgstr "Impossibile caricare l'identità creata" msgid "Default Profile" msgstr "Profilo predefinito" -#: ../../include/identity.php:342 ../../include/profile_selectors.php:42 -#: ../../include/widgets.php:399 ../../mod/connedit.php:431 -msgid "Friends" -msgstr "Amici" - #: ../../include/identity.php:509 msgid "Requested channel is not available." msgstr "Il canale che cerchi non è disponibile." -#: ../../include/identity.php:557 ../../mod/achievements.php:8 -#: ../../mod/profile.php:16 ../../mod/blocks.php:10 ../../mod/connect.php:13 -#: ../../mod/filestorage.php:40 ../../mod/layouts.php:8 -#: ../../mod/webpages.php:8 +#: ../../include/identity.php:557 ../../mod/webpages.php:8 +#: ../../mod/connect.php:13 ../../mod/blocks.php:10 +#: ../../mod/filestorage.php:40 ../../mod/achievements.php:8 +#: ../../mod/layouts.php:8 ../../mod/profile.php:16 msgid "Requested profile is not available." msgstr "Il profilo richiesto non è disponibile." @@ -2519,45 +3218,6 @@ msgstr "Lavoro:" msgid "School/education:" msgstr "Scuola:" -#: ../../include/items.php:306 ../../mod/profperm.php:23 -#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:63 -#: ../../index.php:361 -msgid "Permission denied" -msgstr "Permesso negato" - -#: ../../include/items.php:830 -msgid "(Unknown)" -msgstr "(Sconosciuto)" - -#: ../../include/items.php:3583 ../../mod/admin.php:159 -#: ../../mod/admin.php:921 ../../mod/admin.php:1124 ../../mod/display.php:32 -#: ../../mod/filestorage.php:18 ../../mod/home.php:63 ../../mod/thing.php:78 -#: ../../mod/viewsrc.php:18 -msgid "Item not found." -msgstr "Elemento non trovato." - -#: ../../include/items.php:4007 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "Insieme non trovato." - -#: ../../include/items.php:4022 -msgid "Collection is empty." -msgstr "L'insieme di canali è vuoto." - -#: ../../include/items.php:4029 -#, php-format -msgid "Collection: %s" -msgstr "Insieme: %s" - -#: ../../include/items.php:4040 -#, php-format -msgid "Connection: %s" -msgstr "Contatto: %s" - -#: ../../include/items.php:4043 -msgid "Connection not found." -msgstr "Contatto non trovato." - #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Eliminare questo elemento?" @@ -2675,652 +3335,407 @@ msgstr " " msgid "timeago.numbers" msgstr "timeago.numbers" -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "Devi scegliere un destinatario." +#: ../../mod/home.php:50 ../../mod/block.php:39 ../../mod/chanview.php:77 +#: ../../mod/page.php:47 ../../mod/wall_upload.php:28 +msgid "Channel not found." +msgstr "Canale non trovato." -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "[nessun titolo]" - -#: ../../include/message.php:42 -msgid "Unable to determine sender." -msgstr "Impossibile determinare il mittente." - -#: ../../include/message.php:143 -msgid "Stored post could not be verified." -msgstr "Non è stato possibile verificare l'articolo inserito." - -#: ../../include/nav.php:77 ../../include/nav.php:96 ../../boot.php:1451 -msgid "Logout" -msgstr "Esci" - -#: ../../include/nav.php:77 ../../include/nav.php:96 -msgid "End this session" -msgstr "Chiudi questa sessione" - -#: ../../include/nav.php:80 ../../include/nav.php:130 -msgid "Home" -msgstr "Bacheca" - -#: ../../include/nav.php:80 -msgid "Your posts and conversations" -msgstr "I tuoi articoli e conversazioni" - -#: ../../include/nav.php:81 -msgid "Your profile page" -msgstr "Il tuo profilo" - -#: ../../include/nav.php:83 -msgid "Edit Profiles" -msgstr "Modifica i profili" - -#: ../../include/nav.php:83 -msgid "Manage/Edit profiles" -msgstr "Gestisci/modifica i profili" - -#: ../../include/nav.php:84 -msgid "Your photos" -msgstr "Le tue foto" - -#: ../../include/nav.php:85 -msgid "Your files" -msgstr "I tuoi file" - -#: ../../include/nav.php:86 -msgid "Chat" -msgstr "Chat" - -#: ../../include/nav.php:86 -msgid "Your chatrooms" -msgstr "Le tue chat" - -#: ../../include/nav.php:87 -msgid "Your events" -msgstr "I tuoi eventi" - -#: ../../include/nav.php:88 -msgid "Your bookmarks" -msgstr "I tuoi segnalibri" - -#: ../../include/nav.php:90 -msgid "Your webpages" -msgstr "Le tue pagine web" - -#: ../../include/nav.php:94 ../../boot.php:1452 -msgid "Login" -msgstr "Accedi" - -#: ../../include/nav.php:94 -msgid "Sign in" -msgstr "Entra" - -#: ../../include/nav.php:111 +#: ../../mod/home.php:89 #, php-format -msgid "%s - click to logout" -msgstr "%s - clicca per uscire" +msgid "Welcome to %s" +msgstr "%s ti dà il benvenuto" -#: ../../include/nav.php:116 -msgid "Click to authenticate to your home hub" -msgstr "Clicca per autenticarti sul tuo server principale" +#: ../../mod/follow.php:25 +msgid "Channel added." +msgstr "Canale aggiunto." -#: ../../include/nav.php:130 -msgid "Home Page" -msgstr "Bacheca" +#: ../../mod/dirprofile.php:9 ../../mod/search.php:13 +#: ../../mod/directory.php:15 ../../mod/photos.php:443 ../../mod/display.php:9 +#: ../../mod/viewconnections.php:17 +msgid "Public access denied." +msgstr "Accesso pubblico negato." -#: ../../include/nav.php:134 ../../mod/register.php:206 ../../boot.php:1428 -msgid "Register" -msgstr "Iscriviti" +#: ../../mod/dirprofile.php:92 ../../mod/directory.php:143 +#: ../../mod/profiles.php:561 +msgid "Age: " +msgstr "Età:" -#: ../../include/nav.php:134 -msgid "Create an account" -msgstr "Crea un account" +#: ../../mod/dirprofile.php:95 ../../mod/directory.php:146 +msgid "Gender: " +msgstr "Sesso:" -#: ../../include/nav.php:139 ../../mod/help.php:60 ../../mod/help.php:65 -msgid "Help" -msgstr "Guida" +#: ../../mod/dirprofile.php:108 +msgid "Status: " +msgstr "Stato:" -#: ../../include/nav.php:139 -msgid "Help and documentation" -msgstr "Guida e documentazione" +#: ../../mod/dirprofile.php:109 +msgid "Sexual Preference: " +msgstr "Preferenza sessuale:" -#: ../../include/nav.php:142 ../../mod/apps.php:17 -msgid "Apps" -msgstr "Apps" +#: ../../mod/dirprofile.php:111 +msgid "Homepage: " +msgstr "Homepage:" -#: ../../include/nav.php:142 -msgid "Addon applications, utilities, games" -msgstr "App, strumenti e giochi aggiuntivi" +#: ../../mod/dirprofile.php:112 +msgid "Hometown: " +msgstr "Città dove vivo:" -#: ../../include/nav.php:144 -msgid "Search site content" -msgstr "Cerca nel sito" +#: ../../mod/dirprofile.php:114 +msgid "About: " +msgstr "Informazioni:" -#: ../../include/nav.php:147 -msgid "Channel Locator" -msgstr "Ricerca canali" +#: ../../mod/dirprofile.php:162 +msgid "Keywords: " +msgstr "Parole chiave:" -#: ../../include/nav.php:158 -msgid "Your matrix" -msgstr "La tua rete" +#: ../../mod/dirprofile.php:175 ../../mod/mitem.php:78 ../../mod/xchan.php:27 +#: ../../mod/menu.php:120 +msgid "Not found." +msgstr "Non trovato." -#: ../../include/nav.php:159 -msgid "Mark all matrix notifications seen" -msgstr "Segna come lette le notifiche della tua rete" +#: ../../mod/acl.php:239 +msgid "network" +msgstr "rete" -#: ../../include/nav.php:161 -msgid "Channel home" -msgstr "Bacheca del canale" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autorizza la app" -#: ../../include/nav.php:162 -msgid "Mark all channel notifications seen" -msgstr "Segna come lette le notifiche dei canali" +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Torna alla app e inserisci questo codice di sicurezza:" -#: ../../include/nav.php:165 ../../include/nav.php:188 -#: ../../mod/connections.php:385 -msgid "Connections" -msgstr "Contatti" +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Accedi al sito per continuare." -#: ../../include/nav.php:168 -msgid "Notices" -msgstr "Notifiche" +#: ../../mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?" -#: ../../include/nav.php:168 -msgid "Notifications" -msgstr "Notifiche" +#: ../../mod/api.php:105 ../../mod/settings.php:879 ../../mod/settings.php:884 +#: ../../mod/settings.php:955 ../../mod/profiles.php:483 +#: ../../mod/admin.php:421 +msgid "Yes" +msgstr "Si" -#: ../../include/nav.php:169 -msgid "See all notifications" -msgstr "Vedi tutte le notifiche" +#: ../../mod/api.php:106 ../../mod/settings.php:879 ../../mod/settings.php:884 +#: ../../mod/settings.php:955 ../../mod/profiles.php:484 +#: ../../mod/admin.php:419 +msgid "No" +msgstr "No" -#: ../../include/nav.php:170 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Segna come lette le notifiche di sistema" +#: ../../mod/editlayout.php:36 ../../mod/editpost.php:20 +#: ../../mod/editblock.php:8 ../../mod/editblock.php:27 +#: ../../mod/editblock.php:53 ../../mod/editwebpage.php:32 +msgid "Item not found" +msgstr "Elemento non trovato" -#: ../../include/nav.php:172 -msgid "Mail" +#: ../../mod/editlayout.php:72 +msgid "Edit Layout" +msgstr "Modifica il layout" + +#: ../../mod/editlayout.php:82 +msgid "Delete layout?" +msgstr "Vuoi eliminare questo layout?" + +#: ../../mod/editlayout.php:110 ../../mod/editpost.php:116 +#: ../../mod/editblock.php:115 ../../mod/editwebpage.php:147 +msgid "Insert YouTube video" +msgstr "Inserisci video da YouTube" + +#: ../../mod/editlayout.php:111 ../../mod/editpost.php:117 +#: ../../mod/editblock.php:116 ../../mod/editwebpage.php:148 +msgid "Insert Vorbis [.ogg] video" +msgstr "Inserisci video Vorbis [.ogg]" + +#: ../../mod/editlayout.php:112 ../../mod/editpost.php:118 +#: ../../mod/editblock.php:117 ../../mod/editwebpage.php:149 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Inserisci audio Vorbis [.ogg]" + +#: ../../mod/editlayout.php:146 +msgid "Delete Layout" +msgstr "Elimina il layout" + +#: ../../mod/magic.php:70 +msgid "Hub not found." +msgstr "Server non trovato." + +#: ../../mod/probe.php:23 ../../mod/probe.php:29 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "La chiamata all'URL restituisce questo errore: %1$s" + +#: ../../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/photos.php:908 ../../mod/delegate.php:130 +msgid "Remove" +msgstr "Rimuovi" + +#: ../../mod/new_channel.php:107 +msgid "Add a Channel" +msgstr "Aggiungi un canale" + +#: ../../mod/new_channel.php:108 +msgid "" +"A channel is your own collection of related web pages. A channel can be used" +" to hold social network profiles, blogs, conversation groups and forums, " +"celebrity pages, and much more. You may create as many channels as your " +"service provider allows." +msgstr "I contenuti che pubblichi finiscono in un \"canale\". Un canale può essere usato per mantenere un tuo profilo personale, per avere un blog, per creare forum di discussione o gruppi di interesse, per pagine di celebrità e molto altro. Puoi creare quanti canali vuoi a meno di limiti dati dal gestore del sito." + +#: ../../mod/new_channel.php:110 ../../mod/sources.php:103 +#: ../../mod/sources.php:137 +msgid "Channel Name" +msgstr "Nome del canale" + +#: ../../mod/new_channel.php:111 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " +msgstr "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\"" + +#: ../../mod/new_channel.php:112 +msgid "Choose a short nickname" +msgstr "Scegli un nome breve" + +#: ../../mod/new_channel.php:113 +msgid "" +"Your nickname will be used to create an easily remembered channel address " +"(like an email address) which you can share with others." +msgstr "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale (simile a una email). Così potrai condividerlo e gli altri potranno trovarti." + +#: ../../mod/new_channel.php:114 +msgid "Or import an existing channel from another location" +msgstr "Oppure importa un tuo canale esistente da un altro server/hub" + +#: ../../mod/new_channel.php:117 ../../mod/mitem.php:142 ../../mod/menu.php:84 +msgid "Create" +msgstr "Crea" + +#: ../../mod/pubsites.php:16 +msgid "Public Sites" +msgstr "Siti pubblici" + +#: ../../mod/pubsites.php:19 +msgid "" +"The listed sites allow public registration into the Red Matrix. All sites in" +" the matrix are interlinked so membership on any of them conveys membership " +"in the matrix as a whole. Some sites may require subscription or provide " +"tiered service plans. The provider links may provide " +"additional details." +msgstr "Gli indirizzi elencati permettono la registrazione su Red Matrix. Tutti i siti di questa rete sono interconnessi, quindi essere registrati su uno è come essere registrati ovunque. Alcuni potrebbero richiedere un'iscrizione a pagamento o prevedere tipi diversi di abbonamento. Potrai trovare maggiori informazioni al riguardo visitando ciascun sito." + +#: ../../mod/pubsites.php:25 +msgid "Site URL" +msgstr "URL del sito" + +#: ../../mod/pubsites.php:25 +msgid "Access Type" +msgstr "Tipo di accesso" + +#: ../../mod/pubsites.php:25 +msgid "Registration Policy" +msgstr "Politica di registrazione" + +#: ../../mod/pubsites.php:25 ../../mod/profiles.php:344 +msgid "Location" +msgstr "Luogo attuale" + +#: ../../mod/update_search.php:46 ../../mod/update_network.php:23 +#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 +msgid "[Embedded content - reload page to view]" +msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" + +#: ../../mod/group.php:20 +msgid "Collection created." +msgstr "L'insieme di canali è stato creato." + +#: ../../mod/group.php:26 +msgid "Could not create collection." +msgstr "Impossibile creare l'insieme." + +#: ../../mod/group.php:54 +msgid "Collection updated." +msgstr "Insieme aggiornato." + +#: ../../mod/group.php:86 +msgid "Create a collection of channels." +msgstr "Crea un insieme di canali." + +#: ../../mod/group.php:87 ../../mod/group.php:183 +msgid "Collection Name: " +msgstr "Nome dell'insieme:" + +#: ../../mod/group.php:89 ../../mod/group.php:186 +msgid "Members are visible to other channels" +msgstr "I membri saranno visibili agli altri canali" + +#: ../../mod/group.php:107 +msgid "Collection removed." +msgstr "Insieme rimosso." + +#: ../../mod/group.php:109 +msgid "Unable to remove collection." +msgstr "Impossibile rimuovere l'insieme." + +#: ../../mod/group.php:182 +msgid "Collection Editor" +msgstr "Modifica l'insieme" + +#: ../../mod/group.php:196 +msgid "Members" +msgstr "Membri" + +#: ../../mod/group.php:198 +msgid "All Connected Channels" +msgstr "Tutti i canali connessi" + +#: ../../mod/group.php:231 +msgid "Click on a channel to add or remove." +msgstr "Clicca su un canale per aggiungerlo o rimuoverlo." + +#: ../../mod/thing.php:98 +msgid "Thing updated" +msgstr "L'oggetto è stato aggiornato" + +#: ../../mod/thing.php:158 +msgid "Object store: failed" +msgstr "Impossibile memorizzare l'oggetto." + +#: ../../mod/thing.php:162 +msgid "Thing added" +msgstr "L'oggetto è stato aggiunto" + +#: ../../mod/thing.php:182 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" + +#: ../../mod/thing.php:234 +msgid "Show Thing" +msgstr "Mostra l'oggetto" + +#: ../../mod/thing.php:241 +msgid "item not found." +msgstr "non trovato." + +#: ../../mod/thing.php:269 +msgid "Edit Thing" +msgstr "Modifica l'oggetto" + +#: ../../mod/thing.php:271 ../../mod/thing.php:318 +msgid "Select a profile" +msgstr "Scegli un profilo" + +#: ../../mod/thing.php:273 ../../mod/thing.php:320 +msgid "Select a category of stuff. e.g. I ______ something" +msgstr "Scegli come riferirsi all'oggetto. Esempio: Io _____ l'oggetto" + +#: ../../mod/thing.php:275 ../../mod/thing.php:321 +msgid "Post an activity" +msgstr "Pubblica un'attività" + +#: ../../mod/thing.php:275 ../../mod/thing.php:321 +msgid "Only sends to viewers of the applicable profile" +msgstr "Invia solo a chi segue il relativo canale" + +#: ../../mod/thing.php:277 ../../mod/thing.php:323 +msgid "Name of thing e.g. something" +msgstr "Nome dell'oggetto" + +#: ../../mod/thing.php:279 ../../mod/thing.php:324 +msgid "URL of thing (optional)" +msgstr "Indirizzo web dell'oggetto" + +#: ../../mod/thing.php:281 ../../mod/thing.php:325 +msgid "URL for photo of thing (optional)" +msgstr "Indirizzo di un'immagine dell'oggetto (facoltativo)" + +#: ../../mod/thing.php:316 +msgid "Add Thing to your Profile" +msgstr "Aggiungi l'oggetto al tuo profilo" + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "L'identificativo della richiesta non è valido." + +#: ../../mod/notifications.php:35 +msgid "Discard" +msgstr "Rifiuta" + +#: ../../mod/notifications.php:51 ../../mod/connedit.php:379 +#: ../../mod/connedit.php:516 +msgid "Ignore" +msgstr "Ignora" + +#: ../../mod/notifications.php:94 ../../mod/notify.php:54 +msgid "No more system notifications." +msgstr "Non ci sono nuove notifiche di sistema." + +#: ../../mod/notifications.php:98 ../../mod/notify.php:58 +msgid "System Notifications" +msgstr "Notifiche di sistema" + +#: ../../mod/block.php:27 ../../mod/page.php:35 +msgid "Invalid item." +msgstr "Elemento non valido." + +#: ../../mod/block.php:75 ../../mod/help.php:72 ../../mod/page.php:83 +#: ../../mod/display.php:100 ../../index.php:237 +msgid "Page not found." +msgstr "Pagina non trovata." + +#: ../../mod/message.php:31 ../../mod/mail.php:121 +msgid "Messages" msgstr "Messaggi" -#: ../../include/nav.php:172 -msgid "Private mail" -msgstr "Messaggi privati" +#: ../../mod/message.php:41 +msgid "Conversation removed." +msgstr "Conversazione rimossa." -#: ../../include/nav.php:173 -msgid "See all private messages" -msgstr "Guarda tutti i messaggi privati" +#: ../../mod/message.php:56 +msgid "No messages." +msgstr "Nessun messaggio." -#: ../../include/nav.php:174 -msgid "Mark all private messages seen" -msgstr "Segna come letti tutti i messaggi privati" +#: ../../mod/message.php:72 ../../mod/mail.php:292 +msgid "Delete message" +msgstr "Elimina il messaggio" -#: ../../include/nav.php:175 -msgid "Inbox" -msgstr "In arrivo" +#: ../../mod/message.php:74 +msgid "D, d M Y - g:i A" +msgstr "D d M Y - G:i" -#: ../../include/nav.php:176 -msgid "Outbox" -msgstr "Inviati" +#: ../../mod/rpost.php:86 ../../mod/editpost.php:42 +msgid "Edit post" +msgstr "Modifica articolo" -#: ../../include/nav.php:177 ../../include/widgets.php:535 -msgid "New Message" -msgstr "Nuovo messaggio" +#: ../../mod/directory.php:207 +msgid "Finding:" +msgstr "Ricerca:" -#: ../../include/nav.php:180 -msgid "Event Calendar" -msgstr "Calendario" +#: ../../mod/directory.php:215 +msgid "next page" +msgstr "pagina succ." -#: ../../include/nav.php:181 -msgid "See all events" -msgstr "Guarda tutti gli eventi" +#: ../../mod/directory.php:215 +msgid "previous page" +msgstr "pagina prec." -#: ../../include/nav.php:182 -msgid "Mark all events seen" -msgstr "Marca come letti tutti gli eventi" - -#: ../../include/nav.php:184 -msgid "Channel Select" -msgstr "Gestisci i canali" - -#: ../../include/nav.php:184 -msgid "Manage Your Channels" -msgstr "Gestisci i contatti dei tuoi canali" - -#: ../../include/nav.php:186 ../../include/widgets.php:513 -#: ../../mod/admin.php:976 ../../mod/admin.php:1181 -msgid "Settings" -msgstr "Impostazioni" - -#: ../../include/nav.php:186 -msgid "Account/Channel Settings" -msgstr "Impostazioni account e canali" - -#: ../../include/nav.php:188 -msgid "Manage/Edit Friends and Connections" -msgstr "Modifica amici e contatti" - -#: ../../include/nav.php:195 ../../mod/admin.php:117 -msgid "Admin" -msgstr "Amministrazione" - -#: ../../include/nav.php:195 -msgid "Site Setup and Configuration" -msgstr "Configurazione del sito" - -#: ../../include/nav.php:220 -msgid "Nothing new here" -msgstr "Niente di nuovo qui" - -#: ../../include/nav.php:225 -msgid "Please wait..." -msgstr "Attendere..." - -#: ../../include/network.php:652 -msgid "view full size" -msgstr "guarda nelle dimensioni reali" - -#: ../../include/plugin.php:486 ../../include/plugin.php:488 -msgid "Click here to upgrade." -msgstr "Clicca qui per aggiornare." - -#: ../../include/plugin.php:494 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Questa operazione esce dai termini del tuo abbonamento." - -#: ../../include/plugin.php:499 -msgid "This action is not available under your subscription plan." -msgstr "Questa operazione non è prevista dal tuo abbonamento." - -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "Maschio" - -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Femmina" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Al momento maschio" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Al momento femmina" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Prevalentemente maschio" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Prevalentemente femmina" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgender" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Intersex" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transessuale" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Ermafrodito" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neutro" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Non specificato" - -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "Altro" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Indeciso" - -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Maschi" - -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Femmine" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Gay" - -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesbica" - -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Senza preferenza" - -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Bisessuale" - -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Autosessuale" - -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Astinente" - -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Vergine" - -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Deviato" - -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Feticista" - -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Un sacco" - -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Asessuato" - -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "Single" - -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Da solo" - -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "Disponibile" - -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Non disponibile" - -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "Ha una cotta" - -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "Infatuato/a" - -#: ../../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:42 -msgid "Sex Addict" -msgstr "Sesso-dipendente" - -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Amici piccanti" - -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "Casual" - -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Impegnato" - -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "Sposato/a" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "Sogna il matrimonio" - -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "Partner" - -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "Convivente" - -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "Matrimonio regolare" - -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "Felice" - -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "Non in cerca" - -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Scambista" - -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Tradito/a" - -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "Separato/a" - -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Instabile" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Divorziato/a" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "Sogna il divorzio" - -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Vedovo/a" - -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Incerto/a" - -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "Relazione complicata" - -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Chi se ne frega" - -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Chiedimelo" - -#: ../../include/reddav.php:1045 -msgid "Edit File properties" -msgstr "Modifica le proprietà dei file" - -#: ../../include/zot.php:587 -msgid "Invalid data packet" -msgstr "Dati non validi" - -#: ../../include/zot.php:597 -msgid "Unable to verify channel signature" -msgstr "Impossibile verificare la firma elettronica del canale" - -#: ../../include/zot.php:794 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Impossibile verificare la firma elettronica del sito %s" - -#: ../../include/security.php:301 -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 "L'identificativo di sicurezza del modulo che hai riempito non è corretto. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto." - -#: ../../include/widgets.php:79 -msgid "App Category" -msgstr "Categorie App" - -#: ../../include/widgets.php:80 -msgid "System" -msgstr "Sistema" - -#: ../../include/widgets.php:82 -msgid "Featured" -msgstr "In evidenza" - -#: ../../include/widgets.php:129 ../../mod/suggest.php:53 -msgid "Ignore/Hide" -msgstr "Ignora/nascondi" - -#: ../../include/widgets.php:135 ../../mod/connections.php:266 -msgid "Suggestions" -msgstr "Suggerimenti" - -#: ../../include/widgets.php:136 -msgid "See more..." -msgstr "Altro..." - -#: ../../include/widgets.php:158 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Hai attivato %1$.0f delle %2$.0f connessioni permesse." - -#: ../../include/widgets.php:164 -msgid "Add New Connection" -msgstr "Aggiungi un contatto" - -#: ../../include/widgets.php:165 -msgid "Enter the channel address" -msgstr "Scrivi l'indirizzo del canale" - -#: ../../include/widgets.php:166 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Per esempio: mario@pippo.it oppure http://pluto.com/barbara" - -#: ../../include/widgets.php:183 -msgid "Notes" -msgstr "Note" - -#: ../../include/widgets.php:255 -msgid "Remove term" -msgstr "Rimuovi termine" - -#: ../../include/widgets.php:334 -msgid "Archives" -msgstr "Archivi" - -#: ../../include/widgets.php:396 -msgid "Refresh" -msgstr "Aggiorna" - -#: ../../include/widgets.php:397 ../../mod/connedit.php:428 -msgid "Me" -msgstr "Io" - -#: ../../include/widgets.php:398 ../../mod/connedit.php:430 -msgid "Best Friends" -msgstr "Buoni amici" - -#: ../../include/widgets.php:400 -msgid "Co-workers" -msgstr "Colleghi" - -#: ../../include/widgets.php:401 ../../mod/connedit.php:432 -msgid "Former Friends" -msgstr "Ex amici" - -#: ../../include/widgets.php:402 ../../mod/connedit.php:433 -msgid "Acquaintances" -msgstr "Conoscenti" - -#: ../../include/widgets.php:403 -msgid "Everybody" -msgstr "Tutti" - -#: ../../include/widgets.php:435 -msgid "Account settings" -msgstr "Impostazioni dell'account" - -#: ../../include/widgets.php:441 -msgid "Channel settings" -msgstr "Impostazioni del canale" - -#: ../../include/widgets.php:447 -msgid "Additional features" -msgstr "Funzionalità aggiuntive" - -#: ../../include/widgets.php:453 -msgid "Feature settings" -msgstr "Impostazioni aggiuntive" - -#: ../../include/widgets.php:459 -msgid "Display settings" -msgstr "Impostazioni grafiche" - -#: ../../include/widgets.php:465 -msgid "Connected apps" -msgstr "App connesse" - -#: ../../include/widgets.php:471 -msgid "Export channel" -msgstr "Esporta il canale" - -#: ../../include/widgets.php:483 -msgid "Automatic Permissions (Advanced)" -msgstr "Permessi predefiniti (avanzato)" - -#: ../../include/widgets.php:493 -msgid "Premium Channel Settings" -msgstr "Canale premium - impostazioni" - -#: ../../include/widgets.php:530 -msgid "Check Mail" -msgstr "Controlla i messaggi" - -#: ../../include/widgets.php:611 -msgid "Chat Rooms" -msgstr "Chat attive" - -#: ../../include/widgets.php:629 -msgid "Bookmarked Chatrooms" -msgstr "Chat nei segnalibri" - -#: ../../include/widgets.php:647 -msgid "Suggested Chatrooms" -msgstr "Chat suggerite" - -#: ../../mod/mood.php:138 -msgid "Mood" -msgstr "Umore" - -#: ../../mod/mood.php:139 -msgid "Set your current mood and tell your friends" -msgstr "Scegli il tuo umore attuale per mostrarlo agli amici" +#: ../../mod/directory.php:222 +msgid "No entries (some entries may be hidden)." +msgstr "Nessun risultato (qualcosa potrebbe essere nascosto)." #: ../../mod/mitem.php:14 ../../mod/menu.php:92 msgid "Menu not found." @@ -3342,11 +3757,6 @@ msgstr "Elemento aggiunto al menù." msgid "Unable to add menu element." msgstr "Impossibile aggiungere l'elemento al menù." -#: ../../mod/mitem.php:78 ../../mod/dirprofile.php:175 ../../mod/menu.php:120 -#: ../../mod/xchan.php:27 -msgid "Not found." -msgstr "Non trovato." - #: ../../mod/mitem.php:96 msgid "Manage Menu Elements" msgstr "Gestione elementi del menù" @@ -3419,10 +3829,6 @@ msgstr "Ordine dell'elenco" msgid "Higher numbers will sink to bottom of listing" msgstr "I numeri più alti andranno in fondo all'elenco" -#: ../../mod/mitem.php:142 ../../mod/menu.php:84 ../../mod/new_channel.php:117 -msgid "Create" -msgstr "Crea" - #: ../../mod/mitem.php:154 msgid "Menu item not found." msgstr "L'elemento del menù non è stato trovato." @@ -3443,720 +3849,290 @@ msgstr "Modifica l'elemento del menù" msgid "Modify" msgstr "Modifica" -#: ../../mod/ping.php:192 -msgid "sent you a private message" -msgstr "ti ha inviato un messaggio privato" +#: ../../mod/connect.php:55 ../../mod/connect.php:103 +msgid "Continue" +msgstr "Continua" -#: ../../mod/ping.php:250 -msgid "added your channel" -msgstr "ha aggiunto il tuo canale" +#: ../../mod/connect.php:84 +msgid "Premium Channel Setup" +msgstr "Canale premium - installazione" -#: ../../mod/ping.php:294 -msgid "posted an event" -msgstr "ha creato un evento" +#: ../../mod/connect.php:86 +msgid "Enable premium channel connection restrictions" +msgstr "Abilita le restrizioni del canale premium" -#: ../../mod/acl.php:239 -msgid "network" -msgstr "rete" - -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "Le impostazioni del tema sono state aggiornate." - -#: ../../mod/admin.php:92 ../../mod/admin.php:440 -msgid "Site" -msgstr "Sito" - -#: ../../mod/admin.php:93 -msgid "Accounts" -msgstr "Accounts" - -#: ../../mod/admin.php:94 ../../mod/admin.php:883 -msgid "Channels" -msgstr "Canali" - -#: ../../mod/admin.php:95 ../../mod/admin.php:974 ../../mod/admin.php:1016 -msgid "Plugins" -msgstr "Plugin" - -#: ../../mod/admin.php:96 ../../mod/admin.php:1179 ../../mod/admin.php:1215 -msgid "Themes" -msgstr "Temi" - -#: ../../mod/admin.php:97 ../../mod/admin.php:540 -msgid "Server" -msgstr "Server" - -#: ../../mod/admin.php:98 -msgid "DB updates" -msgstr "Aggiornamenti al DB" - -#: ../../mod/admin.php:112 ../../mod/admin.php:119 ../../mod/admin.php:1302 -msgid "Logs" -msgstr "Log" - -#: ../../mod/admin.php:118 -msgid "Plugin Features" -msgstr "Funzionalità dei componenti aggiuntivi" - -#: ../../mod/admin.php:120 -msgid "User registrations waiting for confirmation" -msgstr "Registrazioni in attesa" - -#: ../../mod/admin.php:197 -msgid "Message queues" -msgstr "Messaggi in attesa di recapito" - -#: ../../mod/admin.php:202 ../../mod/admin.php:439 ../../mod/admin.php:539 -#: ../../mod/admin.php:748 ../../mod/admin.php:882 ../../mod/admin.php:973 -#: ../../mod/admin.php:1015 ../../mod/admin.php:1178 ../../mod/admin.php:1214 -#: ../../mod/admin.php:1301 -msgid "Administration" -msgstr "Amministrazione" - -#: ../../mod/admin.php:203 -msgid "Summary" -msgstr "Riepilogo" - -#: ../../mod/admin.php:205 -msgid "Registered users" -msgstr "Utenti registrati" - -#: ../../mod/admin.php:207 ../../mod/admin.php:543 -msgid "Pending registrations" -msgstr "Registrazioni da approvare" - -#: ../../mod/admin.php:208 -msgid "Version" -msgstr "Versione" - -#: ../../mod/admin.php:210 ../../mod/admin.php:544 -msgid "Active plugins" -msgstr "Plugin attivi" - -#: ../../mod/admin.php:360 -msgid "Site settings updated." -msgstr "Impostazioni del sito aggiornate." - -#: ../../mod/admin.php:389 ../../mod/settings.php:708 -msgid "No special theme for mobile devices" -msgstr "Nessun tema per dispositivi mobili" - -#: ../../mod/admin.php:391 -msgid "No special theme for accessibility" -msgstr "Nessun tema speciale per l'accessibilità" - -#: ../../mod/admin.php:419 ../../mod/api.php:106 ../../mod/profiles.php:484 -#: ../../mod/settings.php:879 ../../mod/settings.php:884 -#: ../../mod/settings.php:955 -msgid "No" -msgstr "No" - -#: ../../mod/admin.php:420 -msgid "Yes - with approval" -msgstr "Sì - con approvazione" - -#: ../../mod/admin.php:421 ../../mod/api.php:105 ../../mod/profiles.php:483 -#: ../../mod/settings.php:879 ../../mod/settings.php:884 -#: ../../mod/settings.php:955 -msgid "Yes" -msgstr "Si" - -#: ../../mod/admin.php:426 -msgid "My site is not a public server" -msgstr "Non è un server pubblico" - -#: ../../mod/admin.php:427 -msgid "My site has paid access only" -msgstr "È un servizio a pagamento" - -#: ../../mod/admin.php:428 -msgid "My site has free access only" -msgstr "È un servizio gratuito" - -#: ../../mod/admin.php:429 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento" - -#: ../../mod/admin.php:442 ../../mod/register.php:189 -msgid "Registration" -msgstr "Registrazione" - -#: ../../mod/admin.php:443 -msgid "File upload" -msgstr "Caricamento file" - -#: ../../mod/admin.php:444 -msgid "Policies" -msgstr "Politiche" - -#: ../../mod/admin.php:449 -msgid "Site name" -msgstr "Nome del sito" - -#: ../../mod/admin.php:450 -msgid "Banner/Logo" -msgstr "Banner o logo" - -#: ../../mod/admin.php:451 -msgid "Administrator Information" -msgstr "Informazioni sull'amministrazione" - -#: ../../mod/admin.php:451 +#: ../../mod/connect.php:87 msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida o il sistema di pagamento ecc." -#: ../../mod/admin.php:452 -msgid "System language" -msgstr "Lingua di sistema" - -#: ../../mod/admin.php:453 -msgid "System theme" -msgstr "Tema di sistema" - -#: ../../mod/admin.php:453 +#: ../../mod/connect.php:89 ../../mod/connect.php:109 msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:" -#: ../../mod/admin.php:454 -msgid "Mobile system theme" -msgstr "Tema di sistema per dispositivi mobili" - -#: ../../mod/admin.php:454 -msgid "Theme for mobile devices" -msgstr "Tema per i dispositivi mobili" - -#: ../../mod/admin.php:455 -msgid "Accessibility system theme" -msgstr "Tema di sistema ad alta accessibilità" - -#: ../../mod/admin.php:455 -msgid "Accessibility theme" -msgstr "Tema ad alta accessibilità" - -#: ../../mod/admin.php:456 -msgid "Channel to use for this website's static pages" -msgstr "Canale da usare per le pagine statiche di questo sito" - -#: ../../mod/admin.php:456 -msgid "Site Channel" -msgstr "Canale del sito" - -#: ../../mod/admin.php:458 -msgid "Maximum image size" -msgstr "Dimensione massima immagini" - -#: ../../mod/admin.php:458 +#: ../../mod/connect.php:90 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." +"Potential connections will then see the following text before proceeding:" +msgstr "Il testo seguente comparirà a chi vorrà connettersi:" -#: ../../mod/admin.php:459 -msgid "Does this site allow new member registration?" -msgstr "Questo sito permette a nuovi utenti di registrarsi?" - -#: ../../mod/admin.php:460 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Come descriveresti il tipo di servizio proposto da questo server?" - -#: ../../mod/admin.php:461 -msgid "Register text" -msgstr "Testo diregistrazione" - -#: ../../mod/admin.php:461 -msgid "Will be displayed prominently on the registration page." -msgstr "Sarà mostrato ben visibile nella pagina di registrazione." - -#: ../../mod/admin.php:462 -msgid "Accounts abandoned after x days" -msgstr "Account abbandonati dopo X giorni" - -#: ../../mod/admin.php:462 +#: ../../mod/connect.php:91 ../../mod/connect.php:112 msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo." +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina." -#: ../../mod/admin.php:463 -msgid "Allowed friend domains" -msgstr "Domini fidati e consentiti" +#: ../../mod/connect.php:100 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Il gestore del canale non ha fornito istruzioni specifiche)" -#: ../../mod/admin.php:463 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio." +#: ../../mod/connect.php:108 +msgid "Restricted or Premium Channel" +msgstr "Canale premium - con restrizioni" -#: ../../mod/admin.php:464 -msgid "Allowed email domains" -msgstr "Domini email consentiti" +#: ../../mod/item.php:147 +msgid "Unable to locate original post." +msgstr "Impossibile trovare il messaggio originale." -#: ../../mod/admin.php:464 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio." +#: ../../mod/item.php:352 +msgid "Empty post discarded." +msgstr "L'articolo vuoto è stato ignorato." -#: ../../mod/admin.php:465 -msgid "Block public" -msgstr "Blocca pagine pubbliche" +#: ../../mod/item.php:392 +msgid "Executable content type not permitted to this channel." +msgstr "I contenuti eseguibili non sono permessi su questo canale." -#: ../../mod/admin.php:465 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso." +#: ../../mod/item.php:806 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Articolo non salvato." -#: ../../mod/admin.php:466 -msgid "Force publish" -msgstr "Forza la publicazione del profilo" - -#: ../../mod/admin.php:466 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Seleziona per mostrare nell'elenco dei canali del sito tutti i profili registrati." - -#: ../../mod/admin.php:467 -msgid "Disable discovery tab" -msgstr "Disabilita la funzione 'scopri'" - -#: ../../mod/admin.php:467 -msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." -msgstr "Nell'area della rete personale non comparirà più la scheda con i contenuti acquisiti da altri siti." - -#: ../../mod/admin.php:468 -msgid "No login on Homepage" -msgstr "Non mostrare il login sulla homepage" - -#: ../../mod/admin.php:468 -msgid "" -"Check to hide the login form from your sites homepage when visitors arrive " -"who are not logged in (e.g. when you put the content of the homepage in via " -"the site channel)." -msgstr "Per nascondere la possibilità di fare login ai visitatori (per esempio, quando il contenuto della homepage del sito è alimentato dal canale)." - -#: ../../mod/admin.php:470 -msgid "Proxy user" -msgstr "Utente proxy" - -#: ../../mod/admin.php:471 -msgid "Proxy URL" -msgstr "URL proxy" - -#: ../../mod/admin.php:472 -msgid "Network timeout" -msgstr "Timeout rete" - -#: ../../mod/admin.php:472 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)." - -#: ../../mod/admin.php:473 -msgid "Delivery interval" -msgstr "Recapito ritardato" - -#: ../../mod/admin.php:473 -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 "RItarda il processo di recapito di questo numero di secondi per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati." - -#: ../../mod/admin.php:474 -msgid "Poll interval" -msgstr "Intervallo di polling" - -#: ../../mod/admin.php:474 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Ritarda i processi di polling in background di questo numero di secondi per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'." - -#: ../../mod/admin.php:475 -msgid "Maximum Load Average" -msgstr "Carico massimo medio" - -#: ../../mod/admin.php:475 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50." - -#: ../../mod/admin.php:531 -msgid "No server found" -msgstr "Server non trovato" - -#: ../../mod/admin.php:538 ../../mod/admin.php:762 -msgid "ID" -msgstr "ID" - -#: ../../mod/admin.php:538 -msgid "for channel" -msgstr "per canale" - -#: ../../mod/admin.php:538 -msgid "on server" -msgstr "sul server" - -#: ../../mod/admin.php:538 -msgid "Status" -msgstr "Stato" - -#: ../../mod/admin.php:559 -msgid "Update has been marked successful" -msgstr "L'aggiornamento è stato marcato come eseguito." - -#: ../../mod/admin.php:569 +#: ../../mod/item.php:1249 #, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema." +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Hai raggiunto il limite massimo di %1$.0f articoli sulla pagina principale." -#: ../../mod/admin.php:572 +#: ../../mod/item.php:1255 #, php-format -msgid "Update %s was successfully applied." -msgstr "L'aggiornamento %s è terminato correttamente." +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web." -#: ../../mod/admin.php:576 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente." - -#: ../../mod/admin.php:579 -#, php-format -msgid "Update function %s could not be found." -msgstr "Impossibile trovare la funzione di aggiornamento %s" - -#: ../../mod/admin.php:594 -msgid "No failed updates." -msgstr "Nessun aggiornamento fallito." - -#: ../../mod/admin.php:598 -msgid "Failed Updates" -msgstr "Aggiornamenti falliti." - -#: ../../mod/admin.php:600 -msgid "Mark success (if update was manually applied)" -msgstr "Marca come eseguito (se applicato manualmente)." - -#: ../../mod/admin.php:601 -msgid "Attempt to execute this update step automatically" -msgstr "Tenta di eseguire in automatico questo passaggio dell'aggiornamento." - -#: ../../mod/admin.php:627 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s utente bloccato/sbloccato" -msgstr[1] "%s utenti bloccati/sbloccati" - -#: ../../mod/admin.php:634 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s utente cancellato" -msgstr[1] "%s utenti cancellati" - -#: ../../mod/admin.php:665 -msgid "Account not found" -msgstr "Account non trovato" - -#: ../../mod/admin.php:676 -#, php-format -msgid "User '%s' deleted" -msgstr "Utente '%s' eliminato" - -#: ../../mod/admin.php:685 -#, php-format -msgid "User '%s' unblocked" -msgstr "Utente '%s' sbloccato" - -#: ../../mod/admin.php:685 -#, php-format -msgid "User '%s' blocked" -msgstr "Utente '%s' bloccato" - -#: ../../mod/admin.php:749 ../../mod/admin.php:761 -msgid "Users" -msgstr "Utenti" - -#: ../../mod/admin.php:751 ../../mod/admin.php:885 -msgid "select all" -msgstr "seleziona tutti" - -#: ../../mod/admin.php:752 -msgid "User registrations waiting for confirm" -msgstr "Richieste di registrazione in attesa di conferma" - -#: ../../mod/admin.php:753 -msgid "Request date" -msgstr "Data richiesta" - -#: ../../mod/admin.php:754 -msgid "No registrations." -msgstr "Nessuna registrazione." - -#: ../../mod/admin.php:755 -msgid "Approve" -msgstr "Approva" - -#: ../../mod/admin.php:756 -msgid "Deny" -msgstr "Nega" - -#: ../../mod/admin.php:758 ../../mod/connedit.php:372 -#: ../../mod/connedit.php:515 -msgid "Block" -msgstr "Blocca" - -#: ../../mod/admin.php:759 ../../mod/connedit.php:372 -#: ../../mod/connedit.php:515 -msgid "Unblock" -msgstr "Sblocca" - -#: ../../mod/admin.php:762 -msgid "Register date" -msgstr "Data registrazione" - -#: ../../mod/admin.php:762 -msgid "Last login" -msgstr "Ultimo accesso" - -#: ../../mod/admin.php:762 -msgid "Expires" -msgstr "Con scadenza" - -#: ../../mod/admin.php:762 -msgid "Service Class" -msgstr "Service Class" - -#: ../../mod/admin.php:764 +#: ../../mod/suggest.php:35 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 eliminati!\\n\\nTutto quello che gli utenti hanno pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?" +"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/admin.php:765 +#: ../../mod/network.php:79 +msgid "No such group" +msgstr "Impossibile trovare l'insieme" + +#: ../../mod/network.php:119 +msgid "Search Results For:" +msgstr "Cerca risultati con:" + +#: ../../mod/network.php:173 +msgid "Collection is empty" +msgstr "L'insieme di canali è vuoto" + +#: ../../mod/network.php:181 +msgid "Collection: " +msgstr "Insieme:" + +#: ../../mod/network.php:194 +msgid "Connection: " +msgstr "Connessione:" + +#: ../../mod/network.php:197 +msgid "Invalid connection." +msgstr "Connessione non valida." + +#: ../../mod/siteinfo.php:57 +#, php-format +msgid "Version %s" +msgstr "Versione %s" + +#: ../../mod/siteinfo.php:76 +msgid "Installed plugins/addons/apps:" +msgstr "App e componenti aggiuntivi instalati:" + +#: ../../mod/siteinfo.php:89 +msgid "No installed plugins/addons/apps" +msgstr "Nessuna app o componente aggiuntivo installato" + +#: ../../mod/siteinfo.php:97 +msgid "Red" +msgstr "Red" + +#: ../../mod/siteinfo.php:98 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à eliminato!\\n\\nTutto quello che ha pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?" +"This is a hub of the Red Matrix - a global cooperative network of " +"decentralised privacy enhanced websites." +msgstr "Questo è un hub di Red Matrix - una rete cooperativa e decentralizzata di siti con elevato livello di privacy. " -#: ../../mod/admin.php:797 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channelss censored/uncensored" -msgstr[0] "Censura modificata per %s canale" -msgstr[1] "Censura modificata per %s canali" +#: ../../mod/siteinfo.php:101 +msgid "Running at web location" +msgstr "In esecuzione sull'indirizzo web" -#: ../../mod/admin.php:804 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s canale è stato rimosso" -msgstr[1] "%s canali sono stati rimossi" - -#: ../../mod/admin.php:823 -msgid "Channel not found" -msgstr "Canale non trovato" - -#: ../../mod/admin.php:834 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Il canale '%s' è stato rimosso" - -#: ../../mod/admin.php:844 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Rimossa la censura dal canale '%s'" - -#: ../../mod/admin.php:844 -#, php-format -msgid "Channel '%s' censored" -msgstr "Applicata una censura al canale '%s'" - -#: ../../mod/admin.php:887 -msgid "Censor" -msgstr "Applica una censura" - -#: ../../mod/admin.php:888 -msgid "Uncensor" -msgstr "Rimuovi la censura" - -#: ../../mod/admin.php:891 -msgid "UID" -msgstr "UID" - -#: ../../mod/admin.php:891 ../../mod/settings.php:517 -#: ../../mod/settings.php:543 -msgid "Name" -msgstr "Nome" - -#: ../../mod/admin.php:891 ../../mod/profiles.php:337 -msgid "Address" -msgstr "Indirizzo" - -#: ../../mod/admin.php:893 +#: ../../mod/siteinfo.php:102 msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" +"Please visit GetZot.com to learn more " +"about the Red Matrix." +msgstr "Visita GetZot.com per scoprire il progetto Red Matrix." -#: ../../mod/admin.php:894 +#: ../../mod/siteinfo.php:103 +msgid "Bug reports and issues: please visit" +msgstr "Per segnalare bug e problemi: visita" + +#: ../../mod/siteinfo.php:106 msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com" -#: ../../mod/admin.php:933 +#: ../../mod/siteinfo.php:108 +msgid "Site Administrators" +msgstr "Amministratori del sito" + +#: ../../mod/bookmarks.php:38 +msgid "Bookmark added" +msgstr "Segnalibro aggiunto" + +#: ../../mod/bookmarks.php:58 +msgid "My Bookmarks" +msgstr "I miei segnalibri" + +#: ../../mod/bookmarks.php:69 +msgid "My Connections Bookmarks" +msgstr "I segnalibri dei miei contatti" + +#: ../../mod/channel.php:25 ../../mod/chat.php:19 +msgid "You must be logged in to see this page." +msgstr "Devi aver effettuato l'accesso per vedere questa pagina." + +#: ../../mod/channel.php:86 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." + +#: ../../mod/pdledit.php:13 +msgid "Layout updated." +msgstr "Layout aggiornato." + +#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +msgid "Edit System Page Description" +msgstr "Modifica i layout di sistema" + +#: ../../mod/pdledit.php:48 +msgid "Layout not found." +msgstr "Layout non trovato." + +#: ../../mod/pdledit.php:54 +msgid "Module Name:" +msgstr "Nome del modulo:" + +#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59 +msgid "Layout Help" +msgstr "Guida al layout" + +#: ../../mod/oexchange.php:23 +msgid "Unable to find your hub." +msgstr "Impossibile raggiungere il tuo hub." + +#: ../../mod/oexchange.php:37 +msgid "Post successful." +msgstr "Inviato!" + +#: ../../mod/subthread.php:103 #, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s non attivo." +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s sta seguendo %3$s di %2$s" -#: ../../mod/admin.php:937 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s attivo." +#: ../../mod/chanview.php:93 +msgid "toggle full screen mode" +msgstr "attiva/disattiva schermo intero" -#: ../../mod/admin.php:947 ../../mod/admin.php:1149 -msgid "Disable" -msgstr "Disattiva" +#: ../../mod/zfinger.php:23 +msgid "invalid target signature" +msgstr "la firma riscontrata non è valida" -#: ../../mod/admin.php:949 ../../mod/admin.php:1151 -msgid "Enable" -msgstr "Attiva" +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." +msgstr "Impossibile creare la sorgente. Nessun canale selezionato." -#: ../../mod/admin.php:975 ../../mod/admin.php:1180 -msgid "Toggle" -msgstr "Attiva/disattiva" +#: ../../mod/sources.php:45 +msgid "Source created." +msgstr "Sorgente creata." -#: ../../mod/admin.php:983 ../../mod/admin.php:1190 -msgid "Author: " -msgstr "Autore:" +#: ../../mod/sources.php:57 +msgid "Source updated." +msgstr "Sorgente aggiornata." -#: ../../mod/admin.php:984 ../../mod/admin.php:1191 -msgid "Maintainer: " -msgstr "Gestore:" +#: ../../mod/sources.php:82 +msgid "*" +msgstr "*" -#: ../../mod/admin.php:1113 -msgid "No themes found." -msgstr "Nessun tema trovato." +#: ../../mod/sources.php:89 +msgid "Manage remote sources of content for your channel." +msgstr "Gestisci le sorgenti dei contenuti del tuo canale." -#: ../../mod/admin.php:1172 -msgid "Screenshot" -msgstr "Istantanea dello schermo" +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" +msgstr "Nuova sorgente" -#: ../../mod/admin.php:1220 -msgid "[Experimental]" -msgstr "[Sperimentale]" - -#: ../../mod/admin.php:1221 -msgid "[Unsupported]" -msgstr "[Non supportato]" - -#: ../../mod/admin.php:1248 -msgid "Log settings updated." -msgstr "Impostazioni di log aggiornate." - -#: ../../mod/admin.php:1304 -msgid "Clear" -msgstr "Pulisci" - -#: ../../mod/admin.php:1310 -msgid "Debugging" -msgstr "Debugging" - -#: ../../mod/admin.php:1311 -msgid "Log file" -msgstr "File di log" - -#: ../../mod/admin.php:1311 +#: ../../mod/sources.php:101 ../../mod/sources.php:133 msgid "" -"Must be writable by web server. Relative to your Red top-level directory." -msgstr "Deve essere scrivibile dal web server. È relativa alla cartella dove è installato Red." +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importa nel tuo canale tutti o una parte dei contenuti dal canale seguente." -#: ../../mod/admin.php:1312 -msgid "Log level" -msgstr "Livello di log" +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Only import content with these words (one per line)" +msgstr "Importa solo i contenuti che hanno queste parole (una per riga)" -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "Poke/Prod" +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Leave blank to import all public content" +msgstr "Lascia vuoto per importare tutti i contenuti pubblici" -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "Manda un poke, un prod o altro" +#: ../../mod/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." +msgstr "Sorgente non trovata." -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Destinatario" +#: ../../mod/sources.php:130 +msgid "Edit Source" +msgstr "Modifica la sorgente" -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "Scegli cosa vuoi inviare al destinatario" +#: ../../mod/sources.php:131 +msgid "Delete Source" +msgstr "Elimina la sorgente" -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "Rendi privato questo articolo" +#: ../../mod/sources.php:158 +msgid "Source removed" +msgstr "Sorgente eliminata" -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autorizza la app" +#: ../../mod/sources.php:160 +msgid "Unable to remove source." +msgstr "Impossibile rimuovere la sorgente." -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Torna alla app e inserisci questo codice di sicurezza:" +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." +msgstr "Indentificativo del profilo non valido." -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Accedi al sito per continuare." +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" +msgstr "Modifica la visibilità del profilo" -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?" +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." +msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." -#: ../../mod/post.php:226 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "L'autenticazione remota non è disponibile. Hai accesso solamente a questo sito. Puoi provare ad uscire per tentare di nuovo." +#: ../../mod/profperm.php:123 +msgid "Visible To" +msgstr "Visibile a" -#: ../../mod/post.php:257 ../../mod/openid.php:72 ../../mod/openid.php:178 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Ciao %s. La tua autenticazione da remoto è avvenuta con successo." - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Elemento non disponibile." - -#: ../../mod/probe.php:23 ../../mod/probe.php:29 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "La chiamata all'URL restituisce questo errore: %1$s" - -#: ../../mod/block.php:27 ../../mod/page.php:35 -msgid "Invalid item." -msgstr "Elemento non valido." - -#: ../../mod/block.php:39 ../../mod/chanview.php:77 ../../mod/page.php:47 -#: ../../mod/home.php:50 ../../mod/wall_upload.php:28 -msgid "Channel not found." -msgstr "Canale non trovato." - -#: ../../mod/block.php:75 ../../mod/page.php:83 ../../mod/display.php:100 -#: ../../mod/help.php:72 ../../index.php:237 -msgid "Page not found." -msgstr "Pagina non trovata." +#: ../../mod/profperm.php:139 ../../mod/connections.php:278 +msgid "All Connections" +msgstr "Tutti i contatti" #: ../../mod/profile_photo.php:108 msgid "Image uploaded but image cropping failed." @@ -4242,702 +4218,111 @@ msgstr "Il ridimensionamento del'immagine [%s] è fallito." msgid "Block Name" msgstr "Nome del riquadro" -#: ../../mod/profiles.php:18 ../../mod/profiles.php:138 -#: ../../mod/profiles.php:168 ../../mod/profiles.php:463 -msgid "Profile not found." -msgstr "Profilo non trovato." +#: ../../mod/post.php:226 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please" +" logout and retry." +msgstr "L'autenticazione remota non è disponibile. Hai accesso solamente a questo sito. Puoi provare ad uscire per tentare di nuovo." -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "Profilo eliminato." - -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "Profilo-" - -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "Il nuovo profilo è stato creato." - -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "Impossibile duplicare il profilo." - -#: ../../mod/profiles.php:178 -msgid "Profile Name is required." -msgstr "Il nome del profilo è obbligatorio ." - -#: ../../mod/profiles.php:294 -msgid "Marital Status" -msgstr "Stato sentimentale" - -#: ../../mod/profiles.php:298 -msgid "Romantic Partner" -msgstr "Partner affettivo" - -#: ../../mod/profiles.php:310 -msgid "Work/Employment" -msgstr "Lavoro/impiego" - -#: ../../mod/profiles.php:313 -msgid "Religion" -msgstr "Religione" - -#: ../../mod/profiles.php:317 -msgid "Political Views" -msgstr "Orientamento politico" - -#: ../../mod/profiles.php:321 -msgid "Gender" -msgstr "Sesso" - -#: ../../mod/profiles.php:325 -msgid "Sexual Preference" -msgstr "Preferenze sessuali" - -#: ../../mod/profiles.php:329 -msgid "Homepage" -msgstr "Home page" - -#: ../../mod/profiles.php:333 -msgid "Interests" -msgstr "Interessi" - -#: ../../mod/profiles.php:344 ../../mod/pubsites.php:25 -msgid "Location" -msgstr "Luogo attuale" - -#: ../../mod/profiles.php:427 -msgid "Profile updated." -msgstr "Profilo aggiornato." - -#: ../../mod/profiles.php:482 -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:505 -msgid "Edit Profile Details" -msgstr "Modifica i dettagli del profilo" - -#: ../../mod/profiles.php:507 -msgid "View this profile" -msgstr "Guarda questo profilo" - -#: ../../mod/profiles.php:508 -msgid "Change Profile Photo" -msgstr "Cambia la foto del profilo" - -#: ../../mod/profiles.php:509 -msgid "Create a new profile using these settings" -msgstr "Crea un nuovo profilo usando queste impostazioni" - -#: ../../mod/profiles.php:510 -msgid "Clone this profile" -msgstr "Clona questo profilo" - -#: ../../mod/profiles.php:511 -msgid "Delete this profile" -msgstr "Elimina questo profilo" - -#: ../../mod/profiles.php:512 -msgid "Profile Name:" -msgstr "Nome del profilo:" - -#: ../../mod/profiles.php:513 -msgid "Your Full Name:" -msgstr "Il tuo nome completo:" - -#: ../../mod/profiles.php:514 -msgid "Title/Description:" -msgstr "Titolo/descrizione:" - -#: ../../mod/profiles.php:515 -msgid "Your Gender:" -msgstr "Sesso:" - -#: ../../mod/profiles.php:516 +#: ../../mod/post.php:257 ../../mod/openid.php:72 ../../mod/openid.php:178 #, php-format -msgid "Birthday (%s):" -msgstr "Compleanno (%s):" +msgid "Welcome %s. Remote authentication successful." +msgstr "Ciao %s. La tua autenticazione da remoto è avvenuta con successo." -#: ../../mod/profiles.php:517 -msgid "Street Address:" -msgstr "Indirizzo (via/piazza):" +#: ../../mod/filestorage.php:68 +msgid "Permission Denied." +msgstr "Permesso negato." -#: ../../mod/profiles.php:518 -msgid "Locality/City:" -msgstr "Località:" +#: ../../mod/filestorage.php:85 +msgid "File not found." +msgstr "File non trovato." -#: ../../mod/profiles.php:519 -msgid "Postal/Zip Code:" -msgstr "CAP:" +#: ../../mod/filestorage.php:121 +msgid "Edit file permissions" +msgstr "Modifica i permessi del file" -#: ../../mod/profiles.php:520 -msgid "Country:" -msgstr "Nazione:" +#: ../../mod/filestorage.php:129 +msgid "Set/edit permissions" +msgstr "Modifica i permessi" -#: ../../mod/profiles.php:521 -msgid "Region/State:" -msgstr "Regione/stato:" +#: ../../mod/filestorage.php:130 +msgid "Include all files and sub folders" +msgstr "Includi tutti i file e le sottocartelle" -#: ../../mod/profiles.php:522 -msgid " Marital Status:" -msgstr " Stato sentimentale:" +#: ../../mod/filestorage.php:131 +msgid "Return to file list" +msgstr "Torna all'elenco dei file" -#: ../../mod/profiles.php:523 -msgid "Who: (if applicable)" -msgstr "Con chi: (se possibile)" +#: ../../mod/filestorage.php:133 +msgid "Copy/paste this code to attach file to a post" +msgstr "Copia/incolla questo codice per far comparire il file in un articolo" -#: ../../mod/profiles.php:524 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Per esempio: cathy123, Cathy Williams, cathy@example.com" +#: ../../mod/filestorage.php:134 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Copia/incolla questo indirizzo in una pagina web per avere un link al file" -#: ../../mod/profiles.php:525 -msgid "Since [date]:" -msgstr "dal [data]:" +#: ../../mod/filestorage.php:171 +msgid "Download" +msgstr "Scaricamento dati" -#: ../../mod/profiles.php:527 -msgid "Homepage URL:" -msgstr "Indirizzo home page:" +#: ../../mod/filestorage.php:177 +msgid "Used: " +msgstr "Usato:" -#: ../../mod/profiles.php:530 -msgid "Religious Views:" -msgstr "Orientamento religioso:" +#: ../../mod/filestorage.php:178 +msgid "[directory]" +msgstr "[cartella]" -#: ../../mod/profiles.php:531 -msgid "Keywords:" -msgstr "Parole chiave, tag:" +#: ../../mod/filestorage.php:180 +msgid "Limit: " +msgstr "Limite:" -#: ../../mod/profiles.php:534 -msgid "Example: fishing photography software" -msgstr "Per esempio: pesca fotografia programmazione" +#: ../../mod/lockview.php:30 ../../mod/lockview.php:36 +msgid "Remote privacy information not available." +msgstr "Le informazioni remote sulla privacy non sono disponibili." -#: ../../mod/profiles.php:535 -msgid "Used in directory listings" -msgstr "Visibile nell'elenco pubblico di canali" +#: ../../mod/lockview.php:45 +msgid "Visible to:" +msgstr "Visibile a:" -#: ../../mod/profiles.php:536 -msgid "Tell us about yourself..." -msgstr "Raccontaci di te..." +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." +msgstr "Contatto non trovato." -#: ../../mod/profiles.php:537 -msgid "Hobbies/Interests" -msgstr "Hobby/interessi" +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Suggerimento di amicizia inviato." -#: ../../mod/profiles.php:538 -msgid "Contact information and Social Networks" -msgstr "Contatti personali e i tuoi social network" +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Suggerisci amici" -#: ../../mod/profiles.php:539 -msgid "My other channels" -msgstr "I miei altri canali" - -#: ../../mod/profiles.php:540 -msgid "Musical interests" -msgstr "Interessi musicali" - -#: ../../mod/profiles.php:541 -msgid "Books, literature" -msgstr "Libri, letteratura" - -#: ../../mod/profiles.php:542 -msgid "Television" -msgstr "Televisione" - -#: ../../mod/profiles.php:543 -msgid "Film/dance/culture/entertainment" -msgstr "Film/danza/cultura/intrattenimento" - -#: ../../mod/profiles.php:544 -msgid "Love/romance" -msgstr "Amore" - -#: ../../mod/profiles.php:545 -msgid "Work/employment" -msgstr "Lavoro/impiego" - -#: ../../mod/profiles.php:546 -msgid "School/education" -msgstr "Scuola/educazione" - -#: ../../mod/profiles.php:551 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "Questo è il tuo profilo publico.
Potrebbe essere visto da chiunque attraverso internet." - -#: ../../mod/profiles.php:561 ../../mod/directory.php:143 -#: ../../mod/dirprofile.php:92 -msgid "Age: " -msgstr "Età:" - -#: ../../mod/profiles.php:600 -msgid "Edit/Manage Profiles" -msgstr "Modifica/gestisci i profili" - -#: ../../mod/profiles.php:601 -msgid "Add profile things" -msgstr "Aggiungi oggetti al profilo" - -#: ../../mod/profiles.php:602 -msgid "Include desirable objects in your profile" -msgstr "Aggiungi oggetti interessanti al tuo profilo" - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Segnalibro aggiunto" - -#: ../../mod/bookmarks.php:58 -msgid "My Bookmarks" -msgstr "I miei segnalibri" - -#: ../../mod/bookmarks.php:69 -msgid "My Connections Bookmarks" -msgstr "I segnalibri dei miei contatti" - -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Indentificativo del profilo non valido." - -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Modifica la visibilità del profilo" - -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." - -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Visibile a" - -#: ../../mod/profperm.php:139 ../../mod/connections.php:278 -msgid "All Connections" -msgstr "Tutti i contatti" - -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "Siti pubblici" - -#: ../../mod/pubsites.php:19 -msgid "" -"The listed sites allow public registration into the Red Matrix. All sites in" -" the matrix are interlinked so membership on any of them conveys membership " -"in the matrix as a whole. Some sites may require subscription or provide " -"tiered service plans. The provider links may provide " -"additional details." -msgstr "Gli indirizzi elencati permettono la registrazione su Red Matrix. Tutti i siti di questa rete sono interconnessi, quindi essere registrati su uno è come essere registrati ovunque. Alcuni potrebbero richiedere un'iscrizione a pagamento o prevedere tipi diversi di abbonamento. Potrai trovare maggiori informazioni al riguardo visitando ciascun sito." - -#: ../../mod/pubsites.php:25 -msgid "Site URL" -msgstr "URL del sito" - -#: ../../mod/pubsites.php:25 -msgid "Access Type" -msgstr "Tipo di accesso" - -#: ../../mod/pubsites.php:25 -msgid "Registration Policy" -msgstr "Politica di registrazione" - -#: ../../mod/channel.php:25 ../../mod/chat.php:19 -msgid "You must be logged in to see this page." -msgstr "Devi aver effettuato l'accesso per vedere questa pagina." - -#: ../../mod/channel.php:86 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." - -#: ../../mod/chanview.php:93 -msgid "toggle full screen mode" -msgstr "attiva/disattiva schermo intero" - -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "Scegli una cartella di segnalibri" - -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Salva segnalibro" - -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "URL del segnalibro" - -#: ../../mod/rbmark.php:95 -msgid "Description" -msgstr "Descrizione" - -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "O inserisci il nome di una nuova cartella di segnalibri" - -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "Chat non trovata" - -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "Lascia la chat" - -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Elimina questa chat" - -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "Non sono presente al momento" - -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Sono online" - -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Aggiungi chat ai segnalibri" - -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Nuova chat" - -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Nome della chat" - -#: ../../mod/chat.php:225 +#: ../../mod/fsuggest.php:99 #, php-format -msgid "%1$s's Chatrooms" -msgstr "Le chat di %1$s" +msgid "Suggest a friend for %s" +msgstr "Suggerisci un amico a %s" -#: ../../mod/register.php:43 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!" - -#: ../../mod/register.php:49 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio." - -#: ../../mod/register.php:77 -msgid "Passwords do not match." -msgstr "Le password non corrispondono." - -#: ../../mod/register.php:105 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata." - -#: ../../mod/register.php:111 -msgid "Your registration is pending approval by the site owner." -msgstr "La tua richiesta è in attesa di approvazione da parte dell'amministratore del sito." - -#: ../../mod/register.php:114 -msgid "Your registration can not be processed." -msgstr "La tua registrazione non puo' essere acquisita." - -#: ../../mod/register.php:147 -msgid "Registration on this site/hub is by approval only." -msgstr "La registrazione su questo sito è soggetta ad approvazione." - -#: ../../mod/register.php:148 -msgid "Register at another affiliated site/hub" -msgstr "Registrati su un altro server affiliato" - -#: ../../mod/register.php:156 -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:167 -msgid "Terms of Service" -msgstr "Condizioni d'Uso" - -#: ../../mod/register.php:173 +#: ../../mod/tagger.php:98 #, php-format -msgid "I accept the %s for this website" -msgstr "Accetto le %s di questo sito" +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/register.php:175 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Ho più di 13 anni e accetto le %s di questo sito" - -#: ../../mod/register.php:194 -msgid "Membership on this site is by invitation only." -msgstr "Per registrarsi su questo sito è necessario un invito." - -#: ../../mod/register.php:195 -msgid "Please enter your invitation code" -msgstr "Inserisci il codice dell'invito" - -#: ../../mod/register.php:198 -msgid "Your email address" -msgstr "Il tuo indirizzo email" - -#: ../../mod/register.php:199 -msgid "Choose a password" -msgstr "Scegli una password" - -#: ../../mod/register.php:200 -msgid "Please re-enter your password" -msgstr "Ripeti la password per verifica" - -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Assente" - -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "Online" - -#: ../../mod/regmod.php:12 -msgid "Please login." -msgstr "Accedi." - -#: ../../mod/cloud.php:112 -msgid "Red Matrix - Guests: Username: {your email address}, Password: +++" -msgstr "Accesso a Red Matrix. Inserisci l'email con cui sei registrato e la password." - -#: ../../mod/removeme.php:49 -msgid "Remove This Channel" -msgstr "Elimina questo canale" - -#: ../../mod/removeme.php:50 -msgid "" -"This will completely remove this channel from the network. Once this has " -"been done it is not recoverable." -msgstr "Questo comando rimuoverà completamente il canale che stai usando. Una volta fatto non sarà più possibile ripristinarlo." - -#: ../../mod/removeme.php:51 -msgid "Please enter your password for verification:" -msgstr "Inserisci la tua password per verifica:" - -#: ../../mod/removeme.php:52 -msgid "Remove this channel and all its clones from the network" -msgstr "Rimuovi questo canale e tutti i suoi cloni dalla rete" - -#: ../../mod/removeme.php:52 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni" - -#: ../../mod/removeme.php:53 -msgid "Remove Channel" -msgstr "Elimina questo canale" - -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Nessun canale." - -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Contatti in comune" - -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Nessun contatto in comune." - -#: ../../mod/rmagic.php:38 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Non è possibile effettuare login con l'OpenID che hai fornito. Per favore controlla che sia scritto correttamente." - -#: ../../mod/rmagic.php:38 -msgid "The error message was:" -msgstr "Messaggio di errore ricevuto:" - -#: ../../mod/rmagic.php:42 -msgid "Authentication failed." -msgstr "Autenticazione fallita." - -#: ../../mod/rmagic.php:78 -msgid "Remote Authentication" -msgstr "Autenticazione a distanza" - -#: ../../mod/rmagic.php:79 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)" - -#: ../../mod/rmagic.php:80 -msgid "Authenticate" -msgstr "Autenticazione" - -#: ../../mod/connect.php:55 ../../mod/connect.php:103 -msgid "Continue" -msgstr "Continua" - -#: ../../mod/connect.php:84 -msgid "Premium Channel Setup" -msgstr "Canale premium - installazione" - -#: ../../mod/connect.php:86 -msgid "Enable premium channel connection restrictions" -msgstr "Abilita le restrizioni del canale premium" - -#: ../../mod/connect.php:87 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida o il sistema di pagamento ecc." - -#: ../../mod/connect.php:89 ../../mod/connect.php:109 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:" - -#: ../../mod/connect.php:90 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Il testo seguente comparirà a chi vorrà connettersi:" - -#: ../../mod/connect.php:91 ../../mod/connect.php:112 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina." - -#: ../../mod/connect.php:100 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Il gestore del canale non ha fornito istruzioni specifiche)" - -#: ../../mod/connect.php:108 -msgid "Restricted or Premium Channel" -msgstr "Canale premium - con restrizioni" - -#: ../../mod/network.php:79 -msgid "No such group" -msgstr "Impossibile trovare l'insieme" - -#: ../../mod/network.php:119 -msgid "Search Results For:" -msgstr "Cerca risultati con:" - -#: ../../mod/network.php:173 -msgid "Collection is empty" -msgstr "L'insieme di canali è vuoto" - -#: ../../mod/network.php:181 -msgid "Collection: " -msgstr "Insieme:" - -#: ../../mod/network.php:194 -msgid "Connection: " -msgstr "Connessione:" - -#: ../../mod/network.php:197 -msgid "Invalid connection." -msgstr "Connessione non valida." - -#: ../../mod/connections.php:37 ../../mod/connedit.php:64 +#: ../../mod/connedit.php:64 ../../mod/connections.php:37 msgid "Could not access contact record." msgstr "Non è possibile accedere alle informazioni sul contatto." -#: ../../mod/connections.php:51 ../../mod/connedit.php:78 +#: ../../mod/connedit.php:78 ../../mod/connections.php:51 msgid "Could not locate selected profile." msgstr "Non riesco a trovare il profilo selezionato." -#: ../../mod/connections.php:94 ../../mod/connedit.php:131 +#: ../../mod/connedit.php:131 ../../mod/connections.php:94 msgid "Connection updated." msgstr "Contatto aggiornato." -#: ../../mod/connections.php:96 ../../mod/connedit.php:133 +#: ../../mod/connedit.php:133 ../../mod/connections.php:96 msgid "Failed to update connection record." msgstr "Impossibile aggiornare le informazioni del contatto." -#: ../../mod/connections.php:191 ../../mod/connections.php:291 -msgid "Blocked" -msgstr "Bloccati" - -#: ../../mod/connections.php:196 ../../mod/connections.php:298 -msgid "Ignored" -msgstr "Ignorati" - -#: ../../mod/connections.php:201 ../../mod/connections.php:312 -msgid "Hidden" -msgstr "Nascosti" - -#: ../../mod/connections.php:206 ../../mod/connections.php:305 -msgid "Archived" -msgstr "Archiviati" - -#: ../../mod/connections.php:230 ../../mod/connections.php:244 -msgid "All" -msgstr "Tutti" - -#: ../../mod/connections.php:239 ../../mod/connections.php:319 -msgid "Unconnected" -msgstr "Non connesso" - -#: ../../mod/connections.php:269 -msgid "Suggest new connections" -msgstr "Suggerisci nuovi contatti" - -#: ../../mod/connections.php:272 -msgid "New Connections" -msgstr "Nuovi contatti" - -#: ../../mod/connections.php:275 -msgid "Show pending (new) connections" -msgstr "Richieste di contatto in attesa" - -#: ../../mod/connections.php:281 -msgid "Show all connections" -msgstr "Mostra tutti i contatti" - -#: ../../mod/connections.php:284 -msgid "Unblocked" -msgstr "Non bloccati" - -#: ../../mod/connections.php:287 -msgid "Only show unblocked connections" -msgstr "Mostra solo i contatti non bloccati" - -#: ../../mod/connections.php:294 -msgid "Only show blocked connections" -msgstr "Mostra solo i contatti bloccati" - -#: ../../mod/connections.php:301 -msgid "Only show ignored connections" -msgstr "Mostra solo i contatti ignorati" - -#: ../../mod/connections.php:308 -msgid "Only show archived connections" -msgstr "Mostra solo i contatti archiviati" - -#: ../../mod/connections.php:315 -msgid "Only show hidden connections" -msgstr "Mostra solo i contatti nascosti" - -#: ../../mod/connections.php:322 -msgid "Only show one-way connections" -msgstr "Mostra solo i contatti non ricambiati" - -#: ../../mod/connections.php:367 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../mod/connections.php:368 -msgid "Edit contact" -msgstr "Modifica il contatto" - -#: ../../mod/connections.php:389 -msgid "Search your connections" -msgstr "Cerca tra i contatti" - -#: ../../mod/connections.php:390 -msgid "Finding: " -msgstr "Ricerca: " - -#: ../../mod/rpost.php:86 ../../mod/editpost.php:42 -msgid "Edit post" -msgstr "Modifica articolo" - #: ../../mod/connedit.php:243 msgid "Could not access address book record." msgstr "Impossibile accedere alle informazioni della rubrica." @@ -5017,6 +4402,16 @@ msgstr "Attività recenti" msgid "View recent posts and comments" msgstr "Leggi i post recenti e i commenti" +#: ../../mod/connedit.php:372 ../../mod/connedit.php:515 +#: ../../mod/admin.php:759 +msgid "Unblock" +msgstr "Sblocca" + +#: ../../mod/connedit.php:372 ../../mod/connedit.php:515 +#: ../../mod/admin.php:758 +msgid "Block" +msgstr "Blocca" + #: ../../mod/connedit.php:375 msgid "Block or Unblock this connection" msgstr "Per bloccare o meno questo contatto" @@ -5025,11 +4420,6 @@ msgstr "Per bloccare o meno questo contatto" msgid "Unignore" msgstr "Non ignorare" -#: ../../mod/connedit.php:379 ../../mod/connedit.php:516 -#: ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "Ignora" - #: ../../mod/connedit.php:382 msgid "Ignore or Unignore this connection" msgstr "Per ignorare o meno questo contatto" @@ -5062,10 +4452,6 @@ msgstr "Per nascondere o meno questo contatto" msgid "Delete this connection" msgstr "Elimina questo contatto" -#: ../../mod/connedit.php:434 -msgid "Unknown" -msgstr "Sconosciuto" - #: ../../mod/connedit.php:444 ../../mod/connedit.php:473 msgid "Approve this connection" msgstr "Approva questo contatto" @@ -5241,99 +4627,48 @@ msgid "" "Replies/likes to your public posts may still be visible" msgstr "Le risposte ai tuoi articoli pubblici potrebbero restare comunque visibili" -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Impossibile trovare delegati per questa pagina." - -#: ../../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 attuali della pagina" - -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "Delegati attuali della pagina" - -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "Delegati potenziali" - -#: ../../mod/delegate.php:130 ../../mod/tagrm.php:93 ../../mod/photos.php:908 -msgid "Remove" -msgstr "Rimuovi" - -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Aggiungi" - -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Nessun risultato." - -#: ../../mod/search.php:13 ../../mod/directory.php:15 -#: ../../mod/dirprofile.php:9 ../../mod/display.php:9 -#: ../../mod/viewconnections.php:17 ../../mod/photos.php:443 -msgid "Public access denied." -msgstr "Accesso pubblico negato." - -#: ../../mod/directory.php:146 ../../mod/dirprofile.php:95 -msgid "Gender: " -msgstr "Sesso:" - -#: ../../mod/directory.php:207 -msgid "Finding:" -msgstr "Ricerca:" - -#: ../../mod/directory.php:215 -msgid "next page" -msgstr "pagina succ." - -#: ../../mod/directory.php:215 -msgid "previous page" -msgstr "pagina prec." - -#: ../../mod/directory.php:222 -msgid "No entries (some entries may be hidden)." -msgstr "Nessun risultato (qualcosa potrebbe essere nascosto)." - -#: ../../mod/dirprofile.php:108 -msgid "Status: " -msgstr "Stato:" - -#: ../../mod/dirprofile.php:109 -msgid "Sexual Preference: " -msgstr "Preferenza sessuale:" - -#: ../../mod/dirprofile.php:111 -msgid "Homepage: " -msgstr "Homepage:" - -#: ../../mod/dirprofile.php:112 -msgid "Hometown: " -msgstr "Città dove vivo:" - -#: ../../mod/dirprofile.php:114 -msgid "About: " -msgstr "Informazioni:" - -#: ../../mod/dirprofile.php:162 -msgid "Keywords: " -msgstr "Parole chiave:" - #: ../../mod/dirsearch.php:21 msgid "This site is not a directory server" msgstr "Questo sito non fornisce l'elenco generale dei canali" +#: ../../mod/rmagic.php:38 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Non è possibile effettuare login con l'OpenID che hai fornito. Per favore controlla che sia scritto correttamente." + +#: ../../mod/rmagic.php:38 +msgid "The error message was:" +msgstr "Messaggio di errore ricevuto:" + +#: ../../mod/rmagic.php:42 +msgid "Authentication failed." +msgstr "Autenticazione fallita." + +#: ../../mod/rmagic.php:78 +msgid "Remote Authentication" +msgstr "Autenticazione a distanza" + +#: ../../mod/rmagic.php:79 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)" + +#: ../../mod/rmagic.php:80 +msgid "Authenticate" +msgstr "Autenticazione" + +#: ../../mod/attach.php:9 +msgid "Item not available." +msgstr "Elemento non disponibile." + +#: ../../mod/editpost.php:31 +msgid "Item is not editable" +msgstr "L'elemento non è modificabile" + +#: ../../mod/editpost.php:53 +msgid "Delete item?" +msgstr "Eliminare questo elemento?" + #: ../../mod/settings.php:71 msgid "Name is required" msgstr "Il nome è obbligatorio" @@ -5342,10 +4677,6 @@ msgstr "Il nome è obbligatorio" msgid "Key and Secret are required" msgstr "Chiave e Segreto sono richiesti" -#: ../../mod/settings.php:79 ../../mod/settings.php:541 -msgid "Update" -msgstr "Aggiorna" - #: ../../mod/settings.php:195 msgid "Passwords do not match. Password unchanged." msgstr "Le password non corrispondono. Password non cambiata." @@ -5383,6 +4714,11 @@ msgstr "Impostazioni aggiornate." msgid "Add application" msgstr "Aggiungi una app" +#: ../../mod/settings.php:517 ../../mod/settings.php:543 +#: ../../mod/admin.php:891 +msgid "Name" +msgstr "Nome" + #: ../../mod/settings.php:517 msgid "Name of application" msgstr "Nome dell'applicazione" @@ -5493,6 +4829,10 @@ msgstr "Funzionalità aggiuntive" msgid "Connector Settings" msgstr "Impostazioni del connettore" +#: ../../mod/settings.php:708 ../../mod/admin.php:389 +msgid "No special theme for mobile devices" +msgstr "Nessun tema per dispositivi mobili" + #: ../../mod/settings.php:749 msgid "Display Settings" msgstr "Impostazioni grafiche" @@ -6104,7 +5444,7 @@ msgstr "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da msgid "" "This can cause usability issues elsewhere (not just on your own site) so we " "must insist on this requirement." -msgstr "Ciò può creare gravi problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto." +msgstr "Ciò può creare problemi di usabilità molto gravi (non solo sul tuo sito), quindi dobbiamo insistere su questo punto." #: ../../mod/setup.php:574 msgid "" @@ -6146,138 +5486,6 @@ msgid "" "poller." msgstr "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling." -#: ../../mod/editblock.php:8 ../../mod/editblock.php:27 -#: ../../mod/editblock.php:53 ../../mod/editlayout.php:36 -#: ../../mod/editpost.php:20 ../../mod/editwebpage.php:32 -msgid "Item not found" -msgstr "Elemento non trovato" - -#: ../../mod/editblock.php:77 -msgid "Edit Block" -msgstr "Modifica il riquadro" - -#: ../../mod/editblock.php:87 -msgid "Delete block?" -msgstr "Vuoi eliminare questo riquadro?" - -#: ../../mod/editblock.php:115 ../../mod/editlayout.php:110 -#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:147 -msgid "Insert YouTube video" -msgstr "Inserisci video da YouTube" - -#: ../../mod/editblock.php:116 ../../mod/editlayout.php:111 -#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:148 -msgid "Insert Vorbis [.ogg] video" -msgstr "Inserisci video Vorbis [.ogg]" - -#: ../../mod/editblock.php:117 ../../mod/editlayout.php:112 -#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:149 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Inserisci audio Vorbis [.ogg]" - -#: ../../mod/editblock.php:153 -msgid "Delete Block" -msgstr "Elimina il riquadro" - -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "Layout aggiornato." - -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "Modifica i layout di sistema" - -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "Layout non trovato." - -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "Nome del modulo:" - -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59 -msgid "Layout Help" -msgstr "Guida al layout" - -#: ../../mod/editlayout.php:72 -msgid "Edit Layout" -msgstr "Modifica il layout" - -#: ../../mod/editlayout.php:82 -msgid "Delete layout?" -msgstr "Vuoi eliminare questo layout?" - -#: ../../mod/editlayout.php:146 -msgid "Delete Layout" -msgstr "Elimina il layout" - -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "L'elemento non è modificabile" - -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "Eliminare questo elemento?" - -#: ../../mod/editwebpage.php:106 -msgid "Edit Webpage" -msgstr "Modifica la pagina web" - -#: ../../mod/editwebpage.php:116 -msgid "Delete webpage?" -msgstr "Vuoi eliminare questa pagina web?" - -#: ../../mod/editwebpage.php:187 -msgid "Delete Webpage" -msgstr "Elimina la pagina web" - -#: ../../mod/siteinfo.php:57 -#, php-format -msgid "Version %s" -msgstr "Versione %s" - -#: ../../mod/siteinfo.php:76 -msgid "Installed plugins/addons/apps:" -msgstr "App e componenti aggiuntivi instalati:" - -#: ../../mod/siteinfo.php:89 -msgid "No installed plugins/addons/apps" -msgstr "Nessuna app o componente aggiuntivo installato" - -#: ../../mod/siteinfo.php:97 -msgid "Red" -msgstr "Red" - -#: ../../mod/siteinfo.php:98 -msgid "" -"This is a hub of the Red Matrix - a global cooperative network of " -"decentralised privacy enhanced websites." -msgstr "Questo è un hub di Red Matrix - una rete cooperativa e decentralizzata di siti con elevato livello di privacy. " - -#: ../../mod/siteinfo.php:101 -msgid "Running at web location" -msgstr "In esecuzione sull'indirizzo web" - -#: ../../mod/siteinfo.php:102 -msgid "" -"Please visit GetZot.com to learn more " -"about the Red Matrix." -msgstr "Visita GetZot.com per scoprire il progetto Red Matrix." - -#: ../../mod/siteinfo.php:103 -msgid "Bug reports and issues: please visit" -msgstr "Per segnalare bug e problemi: visita" - -#: ../../mod/siteinfo.php:106 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com" - -#: ../../mod/siteinfo.php:108 -msgid "Site Administrators" -msgstr "Amministratori del sito" - #: ../../mod/events.php:72 msgid "Event title and start time are required." msgstr "Sono necessari il titolo e l'ora d'inizio dell'evento." @@ -6315,7 +5523,8 @@ msgstr "Il formato è %s %s. L'inizio e il titolo sono obbligatori." msgid "Event Starts:" msgstr "Inizio:" -#: ../../mod/events.php:462 ../../mod/events.php:476 +#: ../../mod/events.php:462 ../../mod/events.php:476 ../../mod/appman.php:83 +#: ../../mod/appman.php:84 msgid "Required" msgstr "Obbligatorio" @@ -6343,840 +5552,6 @@ msgstr "Titolo:" msgid "Share this event" msgstr "Condividi questo evento" -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "Impossibile creare la sorgente. Nessun canale selezionato." - -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "Sorgente creata." - -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "Sorgente aggiornata." - -#: ../../mod/sources.php:82 -msgid "*" -msgstr "*" - -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "Gestisci le sorgenti dei contenuti del tuo canale." - -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "Nuova sorgente" - -#: ../../mod/sources.php:101 ../../mod/sources.php:133 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importa nel tuo canale tutti o una parte dei contenuti dal canale seguente." - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "Importa solo i contenuti che hanno queste parole (una per riga)" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "Lascia vuoto per importare tutti i contenuti pubblici" - -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:110 -msgid "Channel Name" -msgstr "Nome del canale" - -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "Sorgente non trovata." - -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "Modifica la sorgente" - -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "Elimina la sorgente" - -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "Sorgente eliminata" - -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "Impossibile rimuovere la sorgente." - -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "- scegli -" - -#: ../../mod/filestorage.php:68 -msgid "Permission Denied." -msgstr "Permesso negato." - -#: ../../mod/filestorage.php:85 -msgid "File not found." -msgstr "File non trovato." - -#: ../../mod/filestorage.php:121 -msgid "Edit file permissions" -msgstr "Modifica i permessi del file" - -#: ../../mod/filestorage.php:129 -msgid "Set/edit permissions" -msgstr "Modifica i permessi" - -#: ../../mod/filestorage.php:130 -msgid "Include all files and sub folders" -msgstr "Includi tutti i file e le sottocartelle" - -#: ../../mod/filestorage.php:131 -msgid "Return to file list" -msgstr "Torna all'elenco dei file" - -#: ../../mod/filestorage.php:133 -msgid "Copy/paste this code to attach file to a post" -msgstr "Copia/incolla questo codice per far comparire il file in un articolo" - -#: ../../mod/filestorage.php:134 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Copia/incolla questo indirizzo in una pagina web per avere un link al file" - -#: ../../mod/filestorage.php:171 -msgid "Download" -msgstr "Scaricamento dati" - -#: ../../mod/filestorage.php:177 -msgid "Used: " -msgstr "Usato:" - -#: ../../mod/filestorage.php:178 -msgid "[directory]" -msgstr "[cartella]" - -#: ../../mod/filestorage.php:180 -msgid "Limit: " -msgstr "Limite:" - -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Canale aggiunto." - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s sta seguendo %3$s di %2$s" - -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Contatto non trovato." - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Suggerimento di amicizia inviato." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Suggerisci amici" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Suggerisci un amico a %s" - -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore." - -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "L'insieme di canali è stato creato." - -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "Impossibile creare l'insieme." - -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "Insieme aggiornato." - -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "Crea un insieme di canali." - -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "Nome dell'insieme:" - -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "I membri saranno visibili agli altri canali" - -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "Insieme rimosso." - -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "Impossibile rimuovere l'insieme." - -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "Modifica l'insieme" - -#: ../../mod/group.php:196 -msgid "Members" -msgstr "Membri" - -#: ../../mod/group.php:198 -msgid "All Connected Channels" -msgstr "Tutti i canali connessi" - -#: ../../mod/group.php:231 -msgid "Click on a channel to add or remove." -msgstr "Clicca su un canale per aggiungerlo o rimuoverlo." - -#: ../../mod/tagger.php:98 -#, 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/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55 -msgid "Help:" -msgstr "Guida:" - -#: ../../mod/help.php:69 ../../index.php:234 -msgid "Not Found" -msgstr "Non disponibile" - -#: ../../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/home.php:89 -#, php-format -msgid "Welcome to %s" -msgstr "%s ti dà il benvenuto" - -#: ../../mod/thing.php:98 -msgid "Thing updated" -msgstr "L'oggetto è stato aggiornato" - -#: ../../mod/thing.php:158 -msgid "Object store: failed" -msgstr "Impossibile memorizzare l'oggetto." - -#: ../../mod/thing.php:162 -msgid "Thing added" -msgstr "L'oggetto è stato aggiunto" - -#: ../../mod/thing.php:182 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../mod/thing.php:234 -msgid "Show Thing" -msgstr "Mostra l'oggetto" - -#: ../../mod/thing.php:241 -msgid "item not found." -msgstr "non trovato." - -#: ../../mod/thing.php:269 -msgid "Edit Thing" -msgstr "Modifica l'oggetto" - -#: ../../mod/thing.php:271 ../../mod/thing.php:318 -msgid "Select a profile" -msgstr "Scegli un profilo" - -#: ../../mod/thing.php:273 ../../mod/thing.php:320 -msgid "Select a category of stuff. e.g. I ______ something" -msgstr "Scegli come riferirsi all'oggetto. Esempio: Io _____ l'oggetto" - -#: ../../mod/thing.php:275 ../../mod/thing.php:321 -msgid "Post an activity" -msgstr "Pubblica un'attività" - -#: ../../mod/thing.php:275 ../../mod/thing.php:321 -msgid "Only sends to viewers of the applicable profile" -msgstr "Invia solo a chi segue il relativo canale" - -#: ../../mod/thing.php:277 ../../mod/thing.php:323 -msgid "Name of thing e.g. something" -msgstr "Nome dell'oggetto" - -#: ../../mod/thing.php:279 ../../mod/thing.php:324 -msgid "URL of thing (optional)" -msgstr "Indirizzo web dell'oggetto" - -#: ../../mod/thing.php:281 ../../mod/thing.php:325 -msgid "URL for photo of thing (optional)" -msgstr "Indirizzo di un'immagine dell'oggetto (facoltativo)" - -#: ../../mod/thing.php:316 -msgid "Add Thing to your Profile" -msgstr "Aggiungi l'oggetto al tuo profilo" - -#: ../../mod/import.php:36 -msgid "Nothing to import." -msgstr "Non c'è niente da importare." - -#: ../../mod/import.php:58 -msgid "Unable to download data from old server" -msgstr "Impossibile importare i dati dal vecchio server" - -#: ../../mod/import.php:64 -msgid "Imported file is empty." -msgstr "Il file da importare è vuoto." - -#: ../../mod/import.php:88 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita." - -#: ../../mod/import.php:106 -msgid "Channel clone failed. Import failed." -msgstr "Impossibile clonare il canale. L'importazione è fallita." - -#: ../../mod/import.php:116 -msgid "Cloned channel not found. Import failed." -msgstr "Impossibile trovare il canale clonato. L'importazione è fallita." - -#: ../../mod/import.php:358 -msgid "Import completed." -msgstr "L'importazione è terminata con successo!" - -#: ../../mod/import.php:371 -msgid "You must be logged in to use this feature." -msgstr "Per questa funzionalità devi aver effettuato l'accesso." - -#: ../../mod/import.php:376 -msgid "Import Channel" -msgstr "Importa un canale" - -#: ../../mod/import.php:377 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file. Only identity and connections/relationships will " -"be imported. Importation of content is not yet available." -msgstr "Usa questo modulo per importare un tuo canale da un altro server/hub. Puoi scaricare i dati identificativi del canale direttamente dall'altro server/hub oppure tramite un file che hai esportato. Saranno importati solamente l'identità e i contatti. L'importazione dei contenuti non è ancora disponibile." - -#: ../../mod/import.php:378 -msgid "File to Upload" -msgstr "File da caricare" - -#: ../../mod/import.php:379 -msgid "Or provide the old server/hub details" -msgstr "Oppure fornisci i dettagli del vecchio server/hub" - -#: ../../mod/import.php:380 -msgid "Your old identity address (xyz@example.com)" -msgstr "Il tuo vecchio identificativo (per esempio pippo@esempio.com)" - -#: ../../mod/import.php:381 -msgid "Your old login email address" -msgstr "L'email che usavi per accedere sul vecchio server" - -#: ../../mod/import.php:382 -msgid "Your old login password" -msgstr "La password per il vecchio server" - -#: ../../mod/import.php:383 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Per ciascuna opzione, scegli se vuoi rendere questo server il tuo indirizzo primario, oppure se preferisci che lo rimanga il vecchio. Potrai pubblicare da entrambi i server, ma solamente uno sarà marcato come primario per i tuoi file, foto, ecc." - -#: ../../mod/import.php:384 -msgid "Make this hub my primary location" -msgstr "Rendi questo server il mio indirizzo primario" - -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Hai superato il numero massimo di inviti." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: non è un indirizzo email valido." - -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "Vieni con noi su Red" - -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario." - -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: la consegna del messaggio è fallita." - -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d messaggio inviato." -msgstr[1] "%d messaggi inviati." - -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "Non hai altri inviti disponibili" - -#: ../../mod/invite.php:141 -msgid "Send invitations" -msgstr "Spedisci inviti" - -#: ../../mod/invite.php:142 -msgid "Enter email addresses, one per line:" -msgstr "Inserisci gli indirizzi email, uno per riga:" - -#: ../../mod/invite.php:143 ../../mod/mail.php:216 ../../mod/mail.php:328 -msgid "Your message:" -msgstr "Il tuo messaggio:" - -#: ../../mod/invite.php:144 -msgid "" -"You are cordially invited to join me and some other close friends on the Red" -" Matrix - a revolutionary new decentralised communication and information " -"tool." -msgstr "Questo è un invito cordiale ad unirti a me e ad altri miei amici stretti su Red Matrix - uno nuovo strumento di comunicazione decentralizzato e rivoluzionario." - -#: ../../mod/invite.php:146 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Sarà necessario fornire questo codice invito: $invite_code" - -#: ../../mod/invite.php:147 -msgid "Please visit my channel at" -msgstr "Puoi visitare il mio canale su" - -#: ../../mod/invite.php:151 -msgid "" -"Once you have registered (on ANY Red Matrix site - they are all inter-" -"connected), please connect with my Red Matrix channel address:" -msgstr "Una volta che avrai completato la registrazione (su QUALSIASI sito Red Matrix - sono tutti interconnessi), potrai connetterti al mio canale:" - -#: ../../mod/invite.php:153 -msgid "Click the [Register] link on the following page to join." -msgstr "Fai clic su [Registrati] nella pagina seguente per iscriverti." - -#: ../../mod/invite.php:155 -msgid "" -"For more information about the Red Matrix Project and why it has the " -"potential to change the internet as we know it, please visit " -"http://getzot.com" -msgstr "Per saperne di più sul progetto Red Matrix e sul perché potrebbe cambiare internet per come la conosciamo, visita http://getzot.com" - -#: ../../mod/item.php:147 -msgid "Unable to locate original post." -msgstr "Impossibile trovare il messaggio originale." - -#: ../../mod/item.php:352 -msgid "Empty post discarded." -msgstr "L'articolo vuoto è stato ignorato." - -#: ../../mod/item.php:392 -msgid "Executable content type not permitted to this channel." -msgstr "I contenuti eseguibili non sono permessi su questo canale." - -#: ../../mod/item.php:806 -msgid "System error. Post not saved." -msgstr "Errore di sistema. Articolo non salvato." - -#: ../../mod/item.php:1249 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Hai raggiunto il limite massimo di %1$.0f articoli sulla pagina principale." - -#: ../../mod/item.php:1255 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web." - -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 -msgid "[Embedded content - reload page to view]" -msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" - -#: ../../mod/layouts.php:62 -msgid "Help with this feature" -msgstr "La guida per questa funzionalità" - -#: ../../mod/layouts.php:84 -msgid "Layout Name" -msgstr "Nome layout" - -#: ../../mod/lockview.php:30 ../../mod/lockview.php:36 -msgid "Remote privacy information not available." -msgstr "Le informazioni remote sulla privacy non sono disponibili." - -#: ../../mod/lockview.php:45 -msgid "Visible to:" -msgstr "Visibile a:" - -#: ../../mod/viewconnections.php:58 -msgid "No connections." -msgstr "Nessun contatto." - -#: ../../mod/viewconnections.php:70 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visita il profilo di %s [%s]" - -#: ../../mod/viewconnections.php:85 -msgid "View Connnections" -msgstr "Guarda i contatti" - -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "Nessun account valido trovato." - -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." - -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 -#, php-format -msgid "Site Member (%s)" -msgstr "Utente del sito (%s)" - -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "È stato richiesto di reimpostare password su %s" - -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non può essere reimpostata." - -#: ../../mod/lostpass.php:85 ../../boot.php:1462 -msgid "Password Reset" -msgstr "Reimposta la password" - -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." -msgstr "La password è stata reimpostata come richiesto." - -#: ../../mod/lostpass.php:87 -msgid "Your new password is" -msgstr "La tua nuova password è" - -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" -msgstr "Salva o copia la tua nuova password, quindi" - -#: ../../mod/lostpass.php:89 -msgid "click here to login" -msgstr "clicca qui per accedere" - -#: ../../mod/lostpass.php:90 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso." - -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has changed at %s" -msgstr "La tua password su %s è cambiata" - -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "Hai dimenticato la password?" - -#: ../../mod/lostpass.php:123 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare." - -#: ../../mod/lostpass.php:124 -msgid "Email Address" -msgstr "Indirizzo email" - -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "Reimposta" - -#: ../../mod/magic.php:70 -msgid "Hub not found." -msgstr "Server non trovato." - -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "Totale voti" - -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "Media" - -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Impossibile associare un destinatario." - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Impossibile comunicare con il canale richiesto." - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "Impossibile verificare il canale richiesto." - -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito." - -#: ../../mod/mail.php:121 ../../mod/message.php:31 -msgid "Messages" -msgstr "Messaggi" - -#: ../../mod/mail.php:132 -msgid "Message deleted." -msgstr "Messaggio eliminato." - -#: ../../mod/mail.php:149 -msgid "Message recalled." -msgstr "Messaggio revocato." - -#: ../../mod/mail.php:206 -msgid "Send Private Message" -msgstr "Invia un messaggio privato" - -#: ../../mod/mail.php:207 ../../mod/mail.php:323 -msgid "To:" -msgstr "A:" - -#: ../../mod/mail.php:212 ../../mod/mail.php:325 -msgid "Subject:" -msgstr "Oggetto:" - -#: ../../mod/mail.php:249 -msgid "Message not found." -msgstr "Messaggio non trovato." - -#: ../../mod/mail.php:292 ../../mod/message.php:72 -msgid "Delete message" -msgstr "Elimina il messaggio" - -#: ../../mod/mail.php:293 -msgid "Recall message" -msgstr "Revoca il messaggio" - -#: ../../mod/mail.php:295 -msgid "Message has been recalled." -msgstr "Il messaggio è stato revocato." - -#: ../../mod/mail.php:312 -msgid "Private Conversation" -msgstr "Conversazione privata" - -#: ../../mod/mail.php:316 -msgid "Delete conversation" -msgstr "Elimina la conversazione" - -#: ../../mod/mail.php:318 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Non è disponibile alcun sistema per comunicare in modo sicuro. Puoi verificare se eventualmente è possibile rispondere dalla pagina del profilo del mittente." - -#: ../../mod/mail.php:322 -msgid "Send Reply" -msgstr "Invia la risposta" - -#: ../../mod/manage.php:64 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Hai creato %1$.0f dei %2$.0f canali permessi." - -#: ../../mod/manage.php:72 -msgid "Create a new channel" -msgstr "Crea un nuovo canale" - -#: ../../mod/manage.php:77 -msgid "Channel Manager" -msgstr "Gestione canali" - -#: ../../mod/manage.php:78 -msgid "Current Channel" -msgstr "Canale attuale" - -#: ../../mod/manage.php:80 -msgid "Attach to one of your channels by selecting it." -msgstr "Seleziona il canale a cui vuoi passare." - -#: ../../mod/manage.php:81 -msgid "Default Channel" -msgstr "Canale predefinito" - -#: ../../mod/manage.php:82 -msgid "Make Default" -msgstr "Rendi predefinito" - -#: ../../mod/wall_upload.php:34 -msgid "Wall Photos" -msgstr "Foto della bacheca" - -#: ../../mod/match.php:16 -msgid "Profile Match" -msgstr "Profili corrispondenti" - -#: ../../mod/match.php:24 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Nessuna parola chiave per le ricerche. Aggiungi parole chiave al tuo profilo predefinito." - -#: ../../mod/match.php:61 -msgid "is interested in:" -msgstr "interessi personali:" - -#: ../../mod/match.php:69 -msgid "No matches" -msgstr "Nessun risultato" - -#: ../../mod/menu.php:21 -msgid "Menu updated." -msgstr "Menù aggiornato." - -#: ../../mod/menu.php:25 -msgid "Unable to update menu." -msgstr "Impossibile aggiornare il menù." - -#: ../../mod/menu.php:30 -msgid "Menu created." -msgstr "Menù creato." - -#: ../../mod/menu.php:34 -msgid "Unable to create menu." -msgstr "Impossibile creare il menù." - -#: ../../mod/menu.php:57 -msgid "Manage Menus" -msgstr "Gestione menù" - -#: ../../mod/menu.php:60 -msgid "Drop" -msgstr "Elimina" - -#: ../../mod/menu.php:62 -msgid "Create a new menu" -msgstr "Crea un nuovo menù" - -#: ../../mod/menu.php:63 -msgid "Delete this menu" -msgstr "Elimina questo menù" - -#: ../../mod/menu.php:64 ../../mod/menu.php:109 -msgid "Edit menu contents" -msgstr "Modifica i contenuti del menù" - -#: ../../mod/menu.php:65 -msgid "Edit this menu" -msgstr "Modifica questo menù" - -#: ../../mod/menu.php:80 -msgid "New Menu" -msgstr "Nuovo menù" - -#: ../../mod/menu.php:81 ../../mod/menu.php:110 -msgid "Menu name" -msgstr "Nome del menù" - -#: ../../mod/menu.php:81 ../../mod/menu.php:110 -msgid "Must be unique, only seen by you" -msgstr "Deve essere unico, lo vedrai solo tu" - -#: ../../mod/menu.php:82 ../../mod/menu.php:111 -msgid "Menu title" -msgstr "Titolo del menù" - -#: ../../mod/menu.php:82 ../../mod/menu.php:111 -msgid "Menu title as seen by others" -msgstr "Titolo del menù come comparirà a tutti" - -#: ../../mod/menu.php:83 ../../mod/menu.php:112 -msgid "Allow bookmarks" -msgstr "Permetti l'invio di segnalibri" - -#: ../../mod/menu.php:83 ../../mod/menu.php:112 -msgid "Menu may be used to store saved bookmarks" -msgstr "Puoi salvare i segnalibri nei menu" - -#: ../../mod/menu.php:98 -msgid "Menu deleted." -msgstr "Menù eliminato." - -#: ../../mod/menu.php:100 -msgid "Menu could not be deleted." -msgstr "Il menù non può essere eliminato." - -#: ../../mod/menu.php:106 -msgid "Edit Menu" -msgstr "Modifica menù" - -#: ../../mod/menu.php:108 -msgid "Add or remove entries to this menu" -msgstr "Aggiungi o rimuovi elementi di questo menù" - -#: ../../mod/message.php:41 -msgid "Conversation removed." -msgstr "Conversazione rimossa." - -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "Nessun messaggio." - -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "D d M Y - G:i" - -#: ../../mod/new_channel.php:107 -msgid "Add a Channel" -msgstr "Aggiungi un canale" - -#: ../../mod/new_channel.php:108 -msgid "" -"A channel is your own collection of related web pages. A channel can be used" -" to hold social network profiles, blogs, conversation groups and forums, " -"celebrity pages, and much more. You may create as many channels as your " -"service provider allows." -msgstr "I contenuti che pubblichi finiscono in un \"canale\". Un canale può essere usato per mantenere un tuo profilo personale, per avere un blog, per creare forum di discussione o gruppi di interesse, per pagine di celebrità e molto altro. Puoi creare quanti canali vuoi a meno di limiti dati dal gestore del sito." - -#: ../../mod/new_channel.php:111 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " -msgstr "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\"" - -#: ../../mod/new_channel.php:112 -msgid "Choose a short nickname" -msgstr "Scegli un nome breve" - -#: ../../mod/new_channel.php:113 -msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." -msgstr "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale (simile a una email). Così potrai condividerlo e gli altri potranno trovarti." - -#: ../../mod/new_channel.php:114 -msgid "Or import an existing channel from another location" -msgstr "Oppure importa un tuo canale esistente da un altro server/hub" - #: ../../mod/photos.php:77 msgid "Page owner information could not be retrieved." msgstr "Impossibile ottenere informazioni sul proprietario della pagina." @@ -7305,199 +5680,1768 @@ msgstr "Guarda l'album" msgid "Recent Photos" msgstr "Foto recenti" -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "L'identificativo della richiesta non è valido." +#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55 +msgid "Help:" +msgstr "Guida:" -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "Rifiuta" +#: ../../mod/help.php:69 ../../index.php:234 +msgid "Not Found" +msgstr "Non disponibile" -#: ../../mod/notifications.php:94 ../../mod/notify.php:54 -msgid "No more system notifications." -msgstr "Non ci sono nuove notifiche di sistema." +#: ../../mod/ping.php:192 +msgid "sent you a private message" +msgstr "ti ha inviato un messaggio privato" -#: ../../mod/notifications.php:98 ../../mod/notify.php:58 -msgid "System Notifications" -msgstr "Notifiche di sistema" +#: ../../mod/ping.php:250 +msgid "added your channel" +msgstr "ha aggiunto il tuo canale" -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "Impossibile raggiungere il tuo hub." +#: ../../mod/ping.php:294 +msgid "posted an event" +msgstr "ha creato un evento" -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Inviato!" +#: ../../mod/lostpass.php:15 +msgid "No valid account found." +msgstr "Nessun account valido trovato." -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" -msgstr "la firma riscontrata non è valida" +#: ../../mod/lostpass.php:29 +msgid "Password reset request issued. Check your email." +msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." + +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#, php-format +msgid "Site Member (%s)" +msgstr "Utente del sito (%s)" + +#: ../../mod/lostpass.php:40 +#, php-format +msgid "Password reset requested at %s" +msgstr "È stato richiesto di reimpostare password su %s" + +#: ../../mod/lostpass.php:63 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non può essere reimpostata." + +#: ../../mod/lostpass.php:85 ../../boot.php:1461 +msgid "Password Reset" +msgstr "Reimposta la password" + +#: ../../mod/lostpass.php:86 +msgid "Your password has been reset as requested." +msgstr "La password è stata reimpostata come richiesto." + +#: ../../mod/lostpass.php:87 +msgid "Your new password is" +msgstr "La tua nuova password è" + +#: ../../mod/lostpass.php:88 +msgid "Save or copy your new password - and then" +msgstr "Salva o copia la tua nuova password, quindi" + +#: ../../mod/lostpass.php:89 +msgid "click here to login" +msgstr "clicca qui per accedere" + +#: ../../mod/lostpass.php:90 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso." + +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has changed at %s" +msgstr "La tua password su %s è cambiata" + +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "Hai dimenticato la password?" + +#: ../../mod/lostpass.php:123 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare." + +#: ../../mod/lostpass.php:124 +msgid "Email Address" +msgstr "Indirizzo email" + +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "Reimposta" + +#: ../../mod/removeme.php:49 +msgid "Remove This Channel" +msgstr "Elimina questo canale" + +#: ../../mod/removeme.php:50 +msgid "" +"This will completely remove this channel from the network. Once this has " +"been done it is not recoverable." +msgstr "Questo comando rimuoverà completamente il canale che stai usando. Una volta fatto non sarà più possibile ripristinarlo." + +#: ../../mod/removeme.php:51 +msgid "Please enter your password for verification:" +msgstr "Inserisci la tua password per verifica:" + +#: ../../mod/removeme.php:52 +msgid "Remove this channel and all its clones from the network" +msgstr "Rimuovi questo canale e tutti i suoi cloni dalla rete" + +#: ../../mod/removeme.php:52 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni" + +#: ../../mod/removeme.php:53 +msgid "Remove Channel" +msgstr "Elimina questo canale" + +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "Impossibile trovare delegati per questa pagina." + +#: ../../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 attuali della pagina" + +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "Delegati attuali della pagina" + +#: ../../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 risultato." + +#: ../../mod/layouts.php:62 +msgid "Help with this feature" +msgstr "La guida per questa funzionalità" + +#: ../../mod/layouts.php:84 +msgid "Layout Name" +msgstr "Nome layout" + +#: ../../mod/connections.php:191 ../../mod/connections.php:291 +msgid "Blocked" +msgstr "Bloccati" + +#: ../../mod/connections.php:196 ../../mod/connections.php:298 +msgid "Ignored" +msgstr "Ignorati" + +#: ../../mod/connections.php:201 ../../mod/connections.php:312 +msgid "Hidden" +msgstr "Nascosti" + +#: ../../mod/connections.php:206 ../../mod/connections.php:305 +msgid "Archived" +msgstr "Archiviati" + +#: ../../mod/connections.php:230 ../../mod/connections.php:244 +msgid "All" +msgstr "Tutti" + +#: ../../mod/connections.php:239 ../../mod/connections.php:319 +msgid "Unconnected" +msgstr "Non connesso" + +#: ../../mod/connections.php:269 +msgid "Suggest new connections" +msgstr "Suggerisci nuovi contatti" + +#: ../../mod/connections.php:272 +msgid "New Connections" +msgstr "Nuovi contatti" + +#: ../../mod/connections.php:275 +msgid "Show pending (new) connections" +msgstr "Richieste di contatto in attesa" + +#: ../../mod/connections.php:281 +msgid "Show all connections" +msgstr "Mostra tutti i contatti" + +#: ../../mod/connections.php:284 +msgid "Unblocked" +msgstr "Non bloccati" + +#: ../../mod/connections.php:287 +msgid "Only show unblocked connections" +msgstr "Mostra solo i contatti non bloccati" + +#: ../../mod/connections.php:294 +msgid "Only show blocked connections" +msgstr "Mostra solo i contatti bloccati" + +#: ../../mod/connections.php:301 +msgid "Only show ignored connections" +msgstr "Mostra solo i contatti ignorati" + +#: ../../mod/connections.php:308 +msgid "Only show archived connections" +msgstr "Mostra solo i contatti archiviati" + +#: ../../mod/connections.php:315 +msgid "Only show hidden connections" +msgstr "Mostra solo i contatti nascosti" + +#: ../../mod/connections.php:322 +msgid "Only show one-way connections" +msgstr "Mostra solo i contatti non ricambiati" + +#: ../../mod/connections.php:367 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" + +#: ../../mod/connections.php:368 +msgid "Edit contact" +msgstr "Modifica il contatto" + +#: ../../mod/connections.php:389 +msgid "Search your connections" +msgstr "Cerca tra i contatti" + +#: ../../mod/connections.php:390 +msgid "Finding: " +msgstr "Ricerca: " + +#: ../../mod/import.php:36 +msgid "Nothing to import." +msgstr "Non c'è niente da importare." + +#: ../../mod/import.php:58 +msgid "Unable to download data from old server" +msgstr "Impossibile importare i dati dal vecchio server" + +#: ../../mod/import.php:64 +msgid "Imported file is empty." +msgstr "Il file da importare è vuoto." + +#: ../../mod/import.php:88 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita." + +#: ../../mod/import.php:106 +msgid "Channel clone failed. Import failed." +msgstr "Impossibile clonare il canale. L'importazione è fallita." + +#: ../../mod/import.php:116 +msgid "Cloned channel not found. Import failed." +msgstr "Impossibile trovare il canale clonato. L'importazione è fallita." + +#: ../../mod/import.php:358 +msgid "Import completed." +msgstr "L'importazione è terminata con successo!" + +#: ../../mod/import.php:371 +msgid "You must be logged in to use this feature." +msgstr "Per questa funzionalità devi aver effettuato l'accesso." + +#: ../../mod/import.php:376 +msgid "Import Channel" +msgstr "Importa un canale" + +#: ../../mod/import.php:377 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file. Only identity and connections/relationships will " +"be imported. Importation of content is not yet available." +msgstr "Usa questo modulo per importare un tuo canale da un altro server/hub. Puoi scaricare i dati identificativi del canale direttamente dall'altro server/hub oppure tramite un file che hai esportato. Saranno importati solamente l'identità e i contatti. L'importazione dei contenuti non è ancora disponibile." + +#: ../../mod/import.php:378 +msgid "File to Upload" +msgstr "File da caricare" + +#: ../../mod/import.php:379 +msgid "Or provide the old server/hub details" +msgstr "Oppure fornisci i dettagli del vecchio server/hub" + +#: ../../mod/import.php:380 +msgid "Your old identity address (xyz@example.com)" +msgstr "Il tuo vecchio identificativo (per esempio pippo@esempio.com)" + +#: ../../mod/import.php:381 +msgid "Your old login email address" +msgstr "L'email che usavi per accedere sul vecchio server" + +#: ../../mod/import.php:382 +msgid "Your old login password" +msgstr "La password per il vecchio server" + +#: ../../mod/import.php:383 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Per ciascuna opzione, scegli se vuoi rendere questo server il tuo indirizzo primario, oppure se preferisci che lo rimanga il vecchio. Potrai pubblicare da entrambi i server, ma solamente uno sarà marcato come primario per i tuoi file, foto, ecc." + +#: ../../mod/import.php:384 +msgid "Make this hub my primary location" +msgstr "Rendi questo server il mio indirizzo primario" + +#: ../../mod/mood.php:138 +msgid "Mood" +msgstr "Umore" + +#: ../../mod/mood.php:139 +msgid "Set your current mood and tell your friends" +msgstr "Scegli il tuo umore attuale per mostrarlo agli amici" + +#: ../../mod/chat.php:167 +msgid "Room not found" +msgstr "Chat non trovata" + +#: ../../mod/chat.php:178 +msgid "Leave Room" +msgstr "Lascia la chat" + +#: ../../mod/chat.php:179 +msgid "Delete This Room" +msgstr "Elimina questa chat" + +#: ../../mod/chat.php:180 +msgid "I am away right now" +msgstr "Non sono presente al momento" + +#: ../../mod/chat.php:181 +msgid "I am online" +msgstr "Sono online" + +#: ../../mod/chat.php:183 +msgid "Bookmark this room" +msgstr "Aggiungi chat ai segnalibri" + +#: ../../mod/chat.php:207 ../../mod/chat.php:229 +msgid "New Chatroom" +msgstr "Nuova chat" + +#: ../../mod/chat.php:208 +msgid "Chatroom Name" +msgstr "Nome della chat" + +#: ../../mod/chat.php:225 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Le chat di %1$s" + +#: ../../mod/editblock.php:77 +msgid "Edit Block" +msgstr "Modifica il riquadro" + +#: ../../mod/editblock.php:87 +msgid "Delete block?" +msgstr "Vuoi eliminare questo riquadro?" + +#: ../../mod/editblock.php:153 +msgid "Delete Block" +msgstr "Elimina il riquadro" + +#: ../../mod/match.php:16 +msgid "Profile Match" +msgstr "Profili corrispondenti" + +#: ../../mod/match.php:24 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Nessuna parola chiave per le ricerche. Aggiungi parole chiave al tuo profilo predefinito." + +#: ../../mod/match.php:61 +msgid "is interested in:" +msgstr "interessi personali:" + +#: ../../mod/match.php:69 +msgid "No matches" +msgstr "Nessun risultato" + +#: ../../mod/chatsvc.php:111 +msgid "Away" +msgstr "Assente" + +#: ../../mod/chatsvc.php:115 +msgid "Online" +msgstr "Online" + +#: ../../mod/editwebpage.php:106 +msgid "Edit Webpage" +msgstr "Modifica la pagina web" + +#: ../../mod/editwebpage.php:116 +msgid "Delete webpage?" +msgstr "Vuoi eliminare questa pagina web?" + +#: ../../mod/editwebpage.php:187 +msgid "Delete Webpage" +msgstr "Elimina la pagina web" + +#: ../../mod/profiles.php:18 ../../mod/profiles.php:138 +#: ../../mod/profiles.php:168 ../../mod/profiles.php:463 +msgid "Profile not found." +msgstr "Profilo non trovato." + +#: ../../mod/profiles.php:38 +msgid "Profile deleted." +msgstr "Profilo eliminato." + +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" +msgstr "Profilo-" + +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." +msgstr "Il nuovo profilo è stato creato." + +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." +msgstr "Impossibile duplicare il profilo." + +#: ../../mod/profiles.php:178 +msgid "Profile Name is required." +msgstr "Il nome del profilo è obbligatorio ." + +#: ../../mod/profiles.php:294 +msgid "Marital Status" +msgstr "Stato sentimentale" + +#: ../../mod/profiles.php:298 +msgid "Romantic Partner" +msgstr "Partner affettivo" + +#: ../../mod/profiles.php:302 +msgid "Likes" +msgstr "Mi piace" + +#: ../../mod/profiles.php:306 +msgid "Dislikes" +msgstr "Non mi piace" + +#: ../../mod/profiles.php:310 +msgid "Work/Employment" +msgstr "Lavoro/impiego" + +#: ../../mod/profiles.php:313 +msgid "Religion" +msgstr "Religione" + +#: ../../mod/profiles.php:317 +msgid "Political Views" +msgstr "Orientamento politico" + +#: ../../mod/profiles.php:321 +msgid "Gender" +msgstr "Sesso" + +#: ../../mod/profiles.php:325 +msgid "Sexual Preference" +msgstr "Preferenze sessuali" + +#: ../../mod/profiles.php:329 +msgid "Homepage" +msgstr "Home page" + +#: ../../mod/profiles.php:333 +msgid "Interests" +msgstr "Interessi" + +#: ../../mod/profiles.php:337 ../../mod/admin.php:891 +msgid "Address" +msgstr "Indirizzo" + +#: ../../mod/profiles.php:427 +msgid "Profile updated." +msgstr "Profilo aggiornato." + +#: ../../mod/profiles.php:482 +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:505 +msgid "Edit Profile Details" +msgstr "Modifica i dettagli del profilo" + +#: ../../mod/profiles.php:507 +msgid "View this profile" +msgstr "Guarda questo profilo" + +#: ../../mod/profiles.php:508 +msgid "Change Profile Photo" +msgstr "Cambia la foto del profilo" + +#: ../../mod/profiles.php:509 +msgid "Create a new profile using these settings" +msgstr "Crea un nuovo profilo usando queste impostazioni" + +#: ../../mod/profiles.php:510 +msgid "Clone this profile" +msgstr "Clona questo profilo" + +#: ../../mod/profiles.php:511 +msgid "Delete this profile" +msgstr "Elimina questo profilo" + +#: ../../mod/profiles.php:512 +msgid "Profile Name:" +msgstr "Nome del profilo:" + +#: ../../mod/profiles.php:513 +msgid "Your Full Name:" +msgstr "Il tuo nome completo:" + +#: ../../mod/profiles.php:514 +msgid "Title/Description:" +msgstr "Titolo/descrizione:" + +#: ../../mod/profiles.php:515 +msgid "Your Gender:" +msgstr "Sesso:" + +#: ../../mod/profiles.php:516 +#, php-format +msgid "Birthday (%s):" +msgstr "Compleanno (%s):" + +#: ../../mod/profiles.php:517 +msgid "Street Address:" +msgstr "Indirizzo (via/piazza):" + +#: ../../mod/profiles.php:518 +msgid "Locality/City:" +msgstr "Località:" + +#: ../../mod/profiles.php:519 +msgid "Postal/Zip Code:" +msgstr "CAP:" + +#: ../../mod/profiles.php:520 +msgid "Country:" +msgstr "Nazione:" + +#: ../../mod/profiles.php:521 +msgid "Region/State:" +msgstr "Regione/stato:" + +#: ../../mod/profiles.php:522 +msgid " Marital Status:" +msgstr " Stato sentimentale:" + +#: ../../mod/profiles.php:523 +msgid "Who: (if applicable)" +msgstr "Con chi: (se possibile)" + +#: ../../mod/profiles.php:524 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Per esempio: cathy123, Cathy Williams, cathy@example.com" + +#: ../../mod/profiles.php:525 +msgid "Since [date]:" +msgstr "dal [data]:" + +#: ../../mod/profiles.php:527 +msgid "Homepage URL:" +msgstr "Indirizzo home page:" + +#: ../../mod/profiles.php:530 +msgid "Religious Views:" +msgstr "Orientamento religioso:" + +#: ../../mod/profiles.php:531 +msgid "Keywords:" +msgstr "Parole chiave, tag:" + +#: ../../mod/profiles.php:534 +msgid "Example: fishing photography software" +msgstr "Per esempio: pesca fotografia programmazione" + +#: ../../mod/profiles.php:535 +msgid "Used in directory listings" +msgstr "Visibile nell'elenco pubblico di canali" + +#: ../../mod/profiles.php:536 +msgid "Tell us about yourself..." +msgstr "Raccontaci di te..." + +#: ../../mod/profiles.php:537 +msgid "Hobbies/Interests" +msgstr "Hobby/interessi" + +#: ../../mod/profiles.php:538 +msgid "Contact information and Social Networks" +msgstr "Contatti personali e i tuoi social network" + +#: ../../mod/profiles.php:539 +msgid "My other channels" +msgstr "I miei altri canali" + +#: ../../mod/profiles.php:540 +msgid "Musical interests" +msgstr "Interessi musicali" + +#: ../../mod/profiles.php:541 +msgid "Books, literature" +msgstr "Libri, letteratura" + +#: ../../mod/profiles.php:542 +msgid "Television" +msgstr "Televisione" + +#: ../../mod/profiles.php:543 +msgid "Film/dance/culture/entertainment" +msgstr "Film/danza/cultura/intrattenimento" + +#: ../../mod/profiles.php:544 +msgid "Love/romance" +msgstr "Amore" + +#: ../../mod/profiles.php:545 +msgid "Work/employment" +msgstr "Lavoro/impiego" + +#: ../../mod/profiles.php:546 +msgid "School/education" +msgstr "Scuola/educazione" + +#: ../../mod/profiles.php:551 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "Questo è il tuo profilo publico.
Potrebbe essere visto da chiunque attraverso internet." + +#: ../../mod/profiles.php:600 +msgid "Edit/Manage Profiles" +msgstr "Modifica/gestisci i profili" + +#: ../../mod/profiles.php:601 +msgid "Add profile things" +msgstr "Aggiungi oggetti al profilo" + +#: ../../mod/profiles.php:602 +msgid "Include desirable objects in your profile" +msgstr "Aggiungi oggetti interessanti al tuo profilo" + +#: ../../mod/menu.php:21 +msgid "Menu updated." +msgstr "Menù aggiornato." + +#: ../../mod/menu.php:25 +msgid "Unable to update menu." +msgstr "Impossibile aggiornare il menù." + +#: ../../mod/menu.php:30 +msgid "Menu created." +msgstr "Menù creato." + +#: ../../mod/menu.php:34 +msgid "Unable to create menu." +msgstr "Impossibile creare il menù." + +#: ../../mod/menu.php:57 +msgid "Manage Menus" +msgstr "Gestione menù" + +#: ../../mod/menu.php:60 +msgid "Drop" +msgstr "Elimina" + +#: ../../mod/menu.php:62 +msgid "Create a new menu" +msgstr "Crea un nuovo menù" + +#: ../../mod/menu.php:63 +msgid "Delete this menu" +msgstr "Elimina questo menù" + +#: ../../mod/menu.php:64 ../../mod/menu.php:109 +msgid "Edit menu contents" +msgstr "Modifica i contenuti del menù" + +#: ../../mod/menu.php:65 +msgid "Edit this menu" +msgstr "Modifica questo menù" + +#: ../../mod/menu.php:80 +msgid "New Menu" +msgstr "Nuovo menù" + +#: ../../mod/menu.php:81 ../../mod/menu.php:110 +msgid "Menu name" +msgstr "Nome del menù" + +#: ../../mod/menu.php:81 ../../mod/menu.php:110 +msgid "Must be unique, only seen by you" +msgstr "Deve essere unico, lo vedrai solo tu" + +#: ../../mod/menu.php:82 ../../mod/menu.php:111 +msgid "Menu title" +msgstr "Titolo del menù" + +#: ../../mod/menu.php:82 ../../mod/menu.php:111 +msgid "Menu title as seen by others" +msgstr "Titolo del menù come comparirà a tutti" + +#: ../../mod/menu.php:83 ../../mod/menu.php:112 +msgid "Allow bookmarks" +msgstr "Permetti l'invio di segnalibri" + +#: ../../mod/menu.php:83 ../../mod/menu.php:112 +msgid "Menu may be used to store saved bookmarks" +msgstr "Puoi salvare i segnalibri nei menu" + +#: ../../mod/menu.php:98 +msgid "Menu deleted." +msgstr "Menù eliminato." + +#: ../../mod/menu.php:100 +msgid "Menu could not be deleted." +msgstr "Il menù non può essere eliminato." + +#: ../../mod/menu.php:106 +msgid "Edit Menu" +msgstr "Modifica menù" + +#: ../../mod/menu.php:108 +msgid "Add or remove entries to this menu" +msgstr "Aggiungi o rimuovi elementi di questo menù" #: ../../mod/openid.php:26 msgid "OpenID protocol error. No ID returned." msgstr "Errore del protocollo OpenID. Nessun ID ricevuto in risposta." -#: ../../view/theme/apw/php/config.php:202 -#: ../../view/theme/apw/php/config.php:236 -msgid "Schema Default" -msgstr "Schema predefinito" +#: ../../mod/cloud.php:112 +msgid "Red Matrix - Guests: Username: {your email address}, Password: +++" +msgstr "Accesso a Red Matrix. Inserisci l'email con cui sei registrato e la password." -#: ../../view/theme/apw/php/config.php:203 -msgid "Sans-Serif" -msgstr "Sans-Serif" +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." +msgstr "Impossibile associare un destinatario." -#: ../../view/theme/apw/php/config.php:204 -msgid "Monospace" -msgstr "Monospace" +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." +msgstr "Impossibile comunicare con il canale richiesto." + +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." +msgstr "Impossibile verificare il canale richiesto." + +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito." + +#: ../../mod/mail.php:132 +msgid "Message deleted." +msgstr "Messaggio eliminato." + +#: ../../mod/mail.php:149 +msgid "Message recalled." +msgstr "Messaggio revocato." + +#: ../../mod/mail.php:206 +msgid "Send Private Message" +msgstr "Invia un messaggio privato" + +#: ../../mod/mail.php:207 ../../mod/mail.php:323 +msgid "To:" +msgstr "A:" + +#: ../../mod/mail.php:212 ../../mod/mail.php:325 +msgid "Subject:" +msgstr "Oggetto:" + +#: ../../mod/mail.php:216 ../../mod/mail.php:328 ../../mod/invite.php:143 +msgid "Your message:" +msgstr "Il tuo messaggio:" + +#: ../../mod/mail.php:249 +msgid "Message not found." +msgstr "Messaggio non trovato." + +#: ../../mod/mail.php:293 +msgid "Recall message" +msgstr "Revoca il messaggio" + +#: ../../mod/mail.php:295 +msgid "Message has been recalled." +msgstr "Il messaggio è stato revocato." + +#: ../../mod/mail.php:312 +msgid "Private Conversation" +msgstr "Conversazione privata" + +#: ../../mod/mail.php:316 +msgid "Delete conversation" +msgstr "Elimina la conversazione" + +#: ../../mod/mail.php:318 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Non è disponibile alcun sistema per comunicare in modo sicuro. Puoi verificare se eventualmente è possibile rispondere dalla pagina del profilo del mittente." + +#: ../../mod/mail.php:322 +msgid "Send Reply" +msgstr "Invia la risposta" + +#: ../../mod/appman.php:27 +msgid "App installed." +msgstr "App installata" + +#: ../../mod/appman.php:35 +msgid "Malformed app." +msgstr "App non corretta" + +#: ../../mod/appman.php:72 +msgid "Embed code" +msgstr "Inserisci del codice" + +#: ../../mod/appman.php:78 +msgid "Create App" +msgstr "Crea una app" + +#: ../../mod/appman.php:83 +msgid "Name of app" +msgstr "Nome app" + +#: ../../mod/appman.php:84 +msgid "Location (URL) of app" +msgstr "Indirizzo (URL) della app" + +#: ../../mod/appman.php:85 ../../mod/rbmark.php:95 +msgid "Description" +msgstr "Descrizione" + +#: ../../mod/appman.php:86 +msgid "Photo icon URL" +msgstr "URL icona" + +#: ../../mod/appman.php:86 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixel - facoltativa" + +#: ../../mod/appman.php:87 +msgid "Version ID" +msgstr "ID versione" + +#: ../../mod/appman.php:88 +msgid "Price of app" +msgstr "Prezzo app" + +#: ../../mod/appman.php:89 +msgid "Location (URL) to purchase app" +msgstr "Indirizzo (URL) per acquistare la app" + +#: ../../mod/poke.php:159 +msgid "Poke/Prod" +msgstr "Poke/Prod" + +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" +msgstr "Manda un poke, un prod o altro" + +#: ../../mod/poke.php:161 +msgid "Recipient" +msgstr "Destinatario" + +#: ../../mod/poke.php:162 +msgid "Choose what you wish to do to recipient" +msgstr "Scegli cosa vuoi inviare al destinatario" + +#: ../../mod/poke.php:165 +msgid "Make this post private" +msgstr "Rendi privato questo articolo" + +#: ../../mod/viewconnections.php:58 +msgid "No connections." +msgstr "Nessun contatto." + +#: ../../mod/viewconnections.php:70 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visita il profilo di %s [%s]" + +#: ../../mod/viewconnections.php:85 +msgid "View Connnections" +msgstr "Guarda i contatti" + +#: ../../mod/admin.php:52 +msgid "Theme settings updated." +msgstr "Le impostazioni del tema sono state aggiornate." + +#: ../../mod/admin.php:92 ../../mod/admin.php:440 +msgid "Site" +msgstr "Sito" + +#: ../../mod/admin.php:93 +msgid "Accounts" +msgstr "Accounts" + +#: ../../mod/admin.php:94 ../../mod/admin.php:883 +msgid "Channels" +msgstr "Canali" + +#: ../../mod/admin.php:95 ../../mod/admin.php:974 ../../mod/admin.php:1016 +msgid "Plugins" +msgstr "Plugin" + +#: ../../mod/admin.php:96 ../../mod/admin.php:1179 ../../mod/admin.php:1215 +msgid "Themes" +msgstr "Temi" + +#: ../../mod/admin.php:97 ../../mod/admin.php:540 +msgid "Server" +msgstr "Server" + +#: ../../mod/admin.php:98 +msgid "DB updates" +msgstr "Aggiornamenti al DB" + +#: ../../mod/admin.php:112 ../../mod/admin.php:119 ../../mod/admin.php:1302 +msgid "Logs" +msgstr "Log" + +#: ../../mod/admin.php:118 +msgid "Plugin Features" +msgstr "Funzionalità dei componenti aggiuntivi" + +#: ../../mod/admin.php:120 +msgid "User registrations waiting for confirmation" +msgstr "Registrazioni in attesa" + +#: ../../mod/admin.php:197 +msgid "Message queues" +msgstr "Messaggi in attesa di recapito" + +#: ../../mod/admin.php:202 ../../mod/admin.php:439 ../../mod/admin.php:539 +#: ../../mod/admin.php:748 ../../mod/admin.php:882 ../../mod/admin.php:973 +#: ../../mod/admin.php:1015 ../../mod/admin.php:1178 ../../mod/admin.php:1214 +#: ../../mod/admin.php:1301 +msgid "Administration" +msgstr "Amministrazione" + +#: ../../mod/admin.php:203 +msgid "Summary" +msgstr "Riepilogo" + +#: ../../mod/admin.php:205 +msgid "Registered users" +msgstr "Utenti registrati" + +#: ../../mod/admin.php:207 ../../mod/admin.php:543 +msgid "Pending registrations" +msgstr "Registrazioni da approvare" + +#: ../../mod/admin.php:208 +msgid "Version" +msgstr "Versione" + +#: ../../mod/admin.php:210 ../../mod/admin.php:544 +msgid "Active plugins" +msgstr "Plugin attivi" + +#: ../../mod/admin.php:360 +msgid "Site settings updated." +msgstr "Impostazioni del sito aggiornate." + +#: ../../mod/admin.php:391 +msgid "No special theme for accessibility" +msgstr "Nessun tema speciale per l'accessibilità" + +#: ../../mod/admin.php:420 +msgid "Yes - with approval" +msgstr "Sì - con approvazione" + +#: ../../mod/admin.php:426 +msgid "My site is not a public server" +msgstr "Non è un server pubblico" + +#: ../../mod/admin.php:427 +msgid "My site has paid access only" +msgstr "È un servizio a pagamento" + +#: ../../mod/admin.php:428 +msgid "My site has free access only" +msgstr "È un servizio gratuito" + +#: ../../mod/admin.php:429 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento" + +#: ../../mod/admin.php:442 ../../mod/register.php:189 +msgid "Registration" +msgstr "Registrazione" + +#: ../../mod/admin.php:443 +msgid "File upload" +msgstr "Caricamento file" + +#: ../../mod/admin.php:444 +msgid "Policies" +msgstr "Politiche" + +#: ../../mod/admin.php:449 +msgid "Site name" +msgstr "Nome del sito" + +#: ../../mod/admin.php:450 +msgid "Banner/Logo" +msgstr "Banner o logo" + +#: ../../mod/admin.php:451 +msgid "Administrator Information" +msgstr "Informazioni sull'amministrazione" + +#: ../../mod/admin.php:451 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode" + +#: ../../mod/admin.php:452 +msgid "System language" +msgstr "Lingua di sistema" + +#: ../../mod/admin.php:453 +msgid "System theme" +msgstr "Tema di sistema" + +#: ../../mod/admin.php:453 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema" + +#: ../../mod/admin.php:454 +msgid "Mobile system theme" +msgstr "Tema di sistema per dispositivi mobili" + +#: ../../mod/admin.php:454 +msgid "Theme for mobile devices" +msgstr "Tema per i dispositivi mobili" + +#: ../../mod/admin.php:455 +msgid "Accessibility system theme" +msgstr "Tema di sistema ad alta accessibilità" + +#: ../../mod/admin.php:455 +msgid "Accessibility theme" +msgstr "Tema ad alta accessibilità" + +#: ../../mod/admin.php:456 +msgid "Channel to use for this website's static pages" +msgstr "Canale da usare per le pagine statiche di questo sito" + +#: ../../mod/admin.php:456 +msgid "Site Channel" +msgstr "Canale del sito" + +#: ../../mod/admin.php:458 +msgid "Maximum image size" +msgstr "Dimensione massima immagini" + +#: ../../mod/admin.php:458 +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:459 +msgid "Does this site allow new member registration?" +msgstr "Questo sito permette a nuovi utenti di registrarsi?" + +#: ../../mod/admin.php:460 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Come descriveresti il tipo di servizio proposto da questo server?" + +#: ../../mod/admin.php:461 +msgid "Register text" +msgstr "Testo diregistrazione" + +#: ../../mod/admin.php:461 +msgid "Will be displayed prominently on the registration page." +msgstr "Sarà mostrato ben visibile nella pagina di registrazione." + +#: ../../mod/admin.php:462 +msgid "Accounts abandoned after x days" +msgstr "Account abbandonati dopo X giorni" + +#: ../../mod/admin.php:462 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo." + +#: ../../mod/admin.php:463 +msgid "Allowed friend domains" +msgstr "Domini fidati e consentiti" + +#: ../../mod/admin.php:463 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio." + +#: ../../mod/admin.php:464 +msgid "Allowed email domains" +msgstr "Domini email consentiti" + +#: ../../mod/admin.php:464 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio." + +#: ../../mod/admin.php:465 +msgid "Block public" +msgstr "Blocca pagine pubbliche" + +#: ../../mod/admin.php:465 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso." + +#: ../../mod/admin.php:466 +msgid "Force publish" +msgstr "Forza la publicazione del profilo" + +#: ../../mod/admin.php:466 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Seleziona per mostrare nell'elenco dei canali del sito tutti i profili registrati." + +#: ../../mod/admin.php:467 +msgid "Disable discovery tab" +msgstr "Disabilita la funzione 'scopri'" + +#: ../../mod/admin.php:467 +msgid "" +"Remove the tab in the network view with public content pulled from sources " +"chosen for this site." +msgstr "Nell'area della rete personale non comparirà più la scheda con i contenuti acquisiti da altri siti." + +#: ../../mod/admin.php:468 +msgid "No login on Homepage" +msgstr "Non mostrare il login sulla homepage" + +#: ../../mod/admin.php:468 +msgid "" +"Check to hide the login form from your sites homepage when visitors arrive " +"who are not logged in (e.g. when you put the content of the homepage in via " +"the site channel)." +msgstr "Per nascondere la possibilità di fare login ai visitatori (per esempio, quando il contenuto della homepage del sito è alimentato dal canale)." + +#: ../../mod/admin.php:470 +msgid "Proxy user" +msgstr "Utente proxy" + +#: ../../mod/admin.php:471 +msgid "Proxy URL" +msgstr "URL proxy" + +#: ../../mod/admin.php:472 +msgid "Network timeout" +msgstr "Timeout rete" + +#: ../../mod/admin.php:472 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)." + +#: ../../mod/admin.php:473 +msgid "Delivery interval" +msgstr "Recapito ritardato" + +#: ../../mod/admin.php:473 +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 "RItarda il processo di recapito di questo numero di secondi per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati." + +#: ../../mod/admin.php:474 +msgid "Poll interval" +msgstr "Intervallo di polling" + +#: ../../mod/admin.php:474 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Ritarda i processi di polling in background di questo numero di secondi per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'." + +#: ../../mod/admin.php:475 +msgid "Maximum Load Average" +msgstr "Carico massimo medio" + +#: ../../mod/admin.php:475 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50." + +#: ../../mod/admin.php:531 +msgid "No server found" +msgstr "Server non trovato" + +#: ../../mod/admin.php:538 ../../mod/admin.php:762 +msgid "ID" +msgstr "ID" + +#: ../../mod/admin.php:538 +msgid "for channel" +msgstr "per canale" + +#: ../../mod/admin.php:538 +msgid "on server" +msgstr "sul server" + +#: ../../mod/admin.php:538 +msgid "Status" +msgstr "Stato" + +#: ../../mod/admin.php:559 +msgid "Update has been marked successful" +msgstr "L'aggiornamento è stato marcato come eseguito." + +#: ../../mod/admin.php:569 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema." + +#: ../../mod/admin.php:572 +#, php-format +msgid "Update %s was successfully applied." +msgstr "L'aggiornamento %s è terminato correttamente." + +#: ../../mod/admin.php:576 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente." + +#: ../../mod/admin.php:579 +#, php-format +msgid "Update function %s could not be found." +msgstr "Impossibile trovare la funzione di aggiornamento %s" + +#: ../../mod/admin.php:594 +msgid "No failed updates." +msgstr "Nessun aggiornamento fallito." + +#: ../../mod/admin.php:598 +msgid "Failed Updates" +msgstr "Aggiornamenti falliti." + +#: ../../mod/admin.php:600 +msgid "Mark success (if update was manually applied)" +msgstr "Marca come eseguito (se applicato manualmente)." + +#: ../../mod/admin.php:601 +msgid "Attempt to execute this update step automatically" +msgstr "Tenta di eseguire in automatico questo passaggio dell'aggiornamento." + +#: ../../mod/admin.php:627 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s utente bloccato/sbloccato" +msgstr[1] "%s utenti bloccati/sbloccati" + +#: ../../mod/admin.php:634 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s utente cancellato" +msgstr[1] "%s utenti cancellati" + +#: ../../mod/admin.php:665 +msgid "Account not found" +msgstr "Account non trovato" + +#: ../../mod/admin.php:676 +#, php-format +msgid "User '%s' deleted" +msgstr "Utente '%s' eliminato" + +#: ../../mod/admin.php:685 +#, php-format +msgid "User '%s' unblocked" +msgstr "Utente '%s' sbloccato" + +#: ../../mod/admin.php:685 +#, php-format +msgid "User '%s' blocked" +msgstr "Utente '%s' bloccato" + +#: ../../mod/admin.php:749 ../../mod/admin.php:761 +msgid "Users" +msgstr "Utenti" + +#: ../../mod/admin.php:751 ../../mod/admin.php:885 +msgid "select all" +msgstr "seleziona tutti" + +#: ../../mod/admin.php:752 +msgid "User registrations waiting for confirm" +msgstr "Richieste di registrazione in attesa di conferma" + +#: ../../mod/admin.php:753 +msgid "Request date" +msgstr "Data richiesta" + +#: ../../mod/admin.php:754 +msgid "No registrations." +msgstr "Nessuna registrazione." + +#: ../../mod/admin.php:755 +msgid "Approve" +msgstr "Approva" + +#: ../../mod/admin.php:756 +msgid "Deny" +msgstr "Nega" + +#: ../../mod/admin.php:762 +msgid "Register date" +msgstr "Data registrazione" + +#: ../../mod/admin.php:762 +msgid "Last login" +msgstr "Ultimo accesso" + +#: ../../mod/admin.php:762 +msgid "Expires" +msgstr "Con scadenza" + +#: ../../mod/admin.php:762 +msgid "Service Class" +msgstr "Service Class" + +#: ../../mod/admin.php:764 +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 eliminati!\\n\\nTutto quello che gli utenti hanno pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?" + +#: ../../mod/admin.php:765 +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à eliminato!\\n\\nTutto quello che ha pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?" + +#: ../../mod/admin.php:797 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channelss censored/uncensored" +msgstr[0] "Censura modificata per %s canale" +msgstr[1] "Censura modificata per %s canali" + +#: ../../mod/admin.php:804 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s canale è stato rimosso" +msgstr[1] "%s canali sono stati rimossi" + +#: ../../mod/admin.php:823 +msgid "Channel not found" +msgstr "Canale non trovato" + +#: ../../mod/admin.php:834 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Il canale '%s' è stato rimosso" + +#: ../../mod/admin.php:844 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Rimossa la censura dal canale '%s'" + +#: ../../mod/admin.php:844 +#, php-format +msgid "Channel '%s' censored" +msgstr "Applicata una censura al canale '%s'" + +#: ../../mod/admin.php:887 +msgid "Censor" +msgstr "Applica una censura" + +#: ../../mod/admin.php:888 +msgid "Uncensor" +msgstr "Rimuovi la censura" + +#: ../../mod/admin.php:891 +msgid "UID" +msgstr "UID" + +#: ../../mod/admin.php:893 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" + +#: ../../mod/admin.php:894 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" + +#: ../../mod/admin.php:933 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s non attivo." + +#: ../../mod/admin.php:937 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s attivo." + +#: ../../mod/admin.php:947 ../../mod/admin.php:1149 +msgid "Disable" +msgstr "Disattiva" + +#: ../../mod/admin.php:949 ../../mod/admin.php:1151 +msgid "Enable" +msgstr "Attiva" + +#: ../../mod/admin.php:975 ../../mod/admin.php:1180 +msgid "Toggle" +msgstr "Attiva/disattiva" + +#: ../../mod/admin.php:983 ../../mod/admin.php:1190 +msgid "Author: " +msgstr "Autore:" + +#: ../../mod/admin.php:984 ../../mod/admin.php:1191 +msgid "Maintainer: " +msgstr "Gestore:" + +#: ../../mod/admin.php:1113 +msgid "No themes found." +msgstr "Nessun tema trovato." + +#: ../../mod/admin.php:1172 +msgid "Screenshot" +msgstr "Istantanea dello schermo" + +#: ../../mod/admin.php:1220 +msgid "[Experimental]" +msgstr "[Sperimentale]" + +#: ../../mod/admin.php:1221 +msgid "[Unsupported]" +msgstr "[Non supportato]" + +#: ../../mod/admin.php:1248 +msgid "Log settings updated." +msgstr "Impostazioni di log aggiornate." + +#: ../../mod/admin.php:1304 +msgid "Clear" +msgstr "Pulisci" + +#: ../../mod/admin.php:1310 +msgid "Debugging" +msgstr "Debugging" + +#: ../../mod/admin.php:1311 +msgid "Log file" +msgstr "File di log" + +#: ../../mod/admin.php:1311 +msgid "" +"Must be writable by web server. Relative to your Red top-level directory." +msgstr "Deve essere scrivibile dal web server. È relativa alla cartella dove è installato Red." + +#: ../../mod/admin.php:1312 +msgid "Log level" +msgstr "Livello di log" + +#: ../../mod/register.php:43 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!" + +#: ../../mod/register.php:49 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio." + +#: ../../mod/register.php:77 +msgid "Passwords do not match." +msgstr "Le password non corrispondono." + +#: ../../mod/register.php:105 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata." + +#: ../../mod/register.php:111 +msgid "Your registration is pending approval by the site owner." +msgstr "La tua richiesta è in attesa di approvazione da parte dell'amministratore del sito." + +#: ../../mod/register.php:114 +msgid "Your registration can not be processed." +msgstr "La tua registrazione non puo' essere acquisita." + +#: ../../mod/register.php:147 +msgid "Registration on this site/hub is by approval only." +msgstr "La registrazione su questo sito è soggetta ad approvazione." + +#: ../../mod/register.php:148 +msgid "Register at another affiliated site/hub" +msgstr "Registrati su un altro server affiliato" + +#: ../../mod/register.php:156 +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:167 +msgid "Terms of Service" +msgstr "Condizioni d'Uso" + +#: ../../mod/register.php:173 +#, php-format +msgid "I accept the %s for this website" +msgstr "Accetto le %s di questo sito" + +#: ../../mod/register.php:175 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Ho più di 13 anni e accetto le %s di questo sito" + +#: ../../mod/register.php:194 +msgid "Membership on this site is by invitation only." +msgstr "Per registrarsi su questo sito è necessario un invito." + +#: ../../mod/register.php:195 +msgid "Please enter your invitation code" +msgstr "Inserisci il codice dell'invito" + +#: ../../mod/register.php:198 +msgid "Your email address" +msgstr "Il tuo indirizzo email" + +#: ../../mod/register.php:199 +msgid "Choose a password" +msgstr "Scegli una password" + +#: ../../mod/register.php:200 +msgid "Please re-enter your password" +msgstr "Ripeti la password per verifica" + +#: ../../mod/filer.php:49 +msgid "- select -" +msgstr "- scegli -" + +#: ../../mod/manage.php:64 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Hai creato %1$.0f dei %2$.0f canali permessi." + +#: ../../mod/manage.php:72 +msgid "Create a new channel" +msgstr "Crea un nuovo canale" + +#: ../../mod/manage.php:77 +msgid "Channel Manager" +msgstr "Gestione canali" + +#: ../../mod/manage.php:78 +msgid "Current Channel" +msgstr "Canale attuale" + +#: ../../mod/manage.php:80 +msgid "Attach to one of your channels by selecting it." +msgstr "Seleziona il canale a cui vuoi passare." + +#: ../../mod/manage.php:81 +msgid "Default Channel" +msgstr "Canale predefinito" + +#: ../../mod/manage.php:82 +msgid "Make Default" +msgstr "Rendi predefinito" + +#: ../../mod/invite.php:25 +msgid "Total invitation limit exceeded." +msgstr "Hai superato il numero massimo di inviti." + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: non è un indirizzo email valido." + +#: ../../mod/invite.php:76 +msgid "Please join us on Red" +msgstr "Vieni con noi su Red" + +#: ../../mod/invite.php:87 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario." + +#: ../../mod/invite.php:92 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: la consegna del messaggio è fallita." + +#: ../../mod/invite.php:96 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d messaggio inviato." +msgstr[1] "%d messaggi inviati." + +#: ../../mod/invite.php:115 +msgid "You have no more invitations available" +msgstr "Non hai altri inviti disponibili" + +#: ../../mod/invite.php:141 +msgid "Send invitations" +msgstr "Spedisci inviti" + +#: ../../mod/invite.php:142 +msgid "Enter email addresses, one per line:" +msgstr "Inserisci gli indirizzi email, uno per riga:" + +#: ../../mod/invite.php:144 +msgid "" +"You are cordially invited to join me and some other close friends on the Red" +" Matrix - a revolutionary new decentralised communication and information " +"tool." +msgstr "Questo è un invito cordiale ad unirti a me e ad altri miei amici stretti su Red Matrix - uno nuovo strumento di comunicazione decentralizzato e rivoluzionario." + +#: ../../mod/invite.php:146 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Sarà necessario fornire questo codice invito: $invite_code" + +#: ../../mod/invite.php:147 +msgid "Please visit my channel at" +msgstr "Puoi visitare il mio canale su" + +#: ../../mod/invite.php:151 +msgid "" +"Once you have registered (on ANY Red Matrix site - they are all inter-" +"connected), please connect with my Red Matrix channel address:" +msgstr "Una volta che avrai completato la registrazione (su QUALSIASI sito Red Matrix - sono tutti interconnessi), potrai connetterti al mio canale:" + +#: ../../mod/invite.php:153 +msgid "Click the [Register] link on the following page to join." +msgstr "Fai clic su [Registrati] nella pagina seguente per iscriverti." + +#: ../../mod/invite.php:155 +msgid "" +"For more information about the Red Matrix Project and why it has the " +"potential to change the internet as we know it, please visit " +"http://getzot.com" +msgstr "Per saperne di più sul progetto Red Matrix e sul perché potrebbe cambiare internet per come la conosciamo, visita http://getzot.com" + +#: ../../mod/wall_upload.php:34 +msgid "Wall Photos" +msgstr "Foto della bacheca" + +#: ../../mod/common.php:10 +msgid "No channel." +msgstr "Nessun canale." + +#: ../../mod/common.php:39 +msgid "Common connections" +msgstr "Contatti in comune" + +#: ../../mod/common.php:44 +msgid "No connections in common." +msgstr "Nessun contatto in comune." + +#: ../../mod/regmod.php:12 +msgid "Please login." +msgstr "Accedi." + +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" +msgstr "Scegli una cartella di segnalibri" + +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" +msgstr "Salva segnalibro" + +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" +msgstr "URL del segnalibro" + +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "O inserisci il nome di una nuova cartella di segnalibri" + +#: ../../boot.php:1259 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "%s: aggiornamento fallito. Controlla i log di errore." + +#: ../../boot.php:1262 +#, php-format +msgid "Update Error at %s" +msgstr "Errore di aggiornamento su %s" + +#: ../../boot.php:1426 +msgid "" +"Create an account to access services and applications within the Red Matrix" +msgstr "Registrati per accedere ai servizi e alle applicazioni di Red Matrix" + +#: ../../boot.php:1454 +msgid "Password" +msgstr "Password" + +#: ../../boot.php:1455 +msgid "Remember me" +msgstr "Resta connesso" + +#: ../../boot.php:1460 +msgid "Forgot your password?" +msgstr "Hai dimenticato la password?" + +#: ../../boot.php:1525 +msgid "permission denied" +msgstr "permesso negato" + +#: ../../boot.php:1526 +msgid "Got Zot?" +msgstr "Hai Zot?" + +#: ../../boot.php:1956 +msgid "toggle mobile" +msgstr "attiva/disattiva versione mobile" -#: ../../view/theme/apw/php/config.php:259 -#: ../../view/theme/blogga/php/config.php:69 -#: ../../view/theme/blogga/view/theme/blog/config.php:69 #: ../../view/theme/redbasic/php/config.php:102 msgid "Theme settings" msgstr "Impostazioni del tema" -#: ../../view/theme/apw/php/config.php:260 #: ../../view/theme/redbasic/php/config.php:103 msgid "Set scheme" msgstr "Schema" -#: ../../view/theme/apw/php/config.php:261 -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set font-size for posts and comments" -msgstr "Dimensioni del carattere per articoli e commenti" - -#: ../../view/theme/apw/php/config.php:262 -msgid "Set font face" -msgstr "Tipo di carattere" - -#: ../../view/theme/apw/php/config.php:263 -msgid "Set iconset" -msgstr "Icone" - -#: ../../view/theme/apw/php/config.php:264 -msgid "Set big shadow size, default 15px 15px 15px" -msgstr "Ombra grande, predefinita 15px 15px 15px" - -#: ../../view/theme/apw/php/config.php:265 -msgid "Set small shadow size, default 5px 5px 5px" -msgstr "Ombra piccola, predefinita 5px 5px 5px" - -#: ../../view/theme/apw/php/config.php:266 -msgid "Set shadow colour, default #000" -msgstr "Colore dell'ombra, predefinito #000" - -#: ../../view/theme/apw/php/config.php:267 -msgid "Set radius size, default 5px" -msgstr "Raggio degli angoli, predefinito 5px" - -#: ../../view/theme/apw/php/config.php:268 -msgid "Set line-height for posts and comments" -msgstr "Altezza della riga per articoli e commenti" - -#: ../../view/theme/apw/php/config.php:269 -msgid "Set background image" -msgstr "Immagine di sfondo" - -#: ../../view/theme/apw/php/config.php:270 -msgid "Set background attachment" -msgstr "Imposta un allegato di sfondo" - -#: ../../view/theme/apw/php/config.php:271 -msgid "Set background colour" -msgstr "Colore di sfondo" - -#: ../../view/theme/apw/php/config.php:272 -msgid "Set section background image" -msgstr "Immagine di sfondo della sezione" - -#: ../../view/theme/apw/php/config.php:273 -msgid "Set section background colour" -msgstr "Colore di sfondo della sezione" - -#: ../../view/theme/apw/php/config.php:274 -msgid "Set colour of items - use hex" -msgstr "Colore degli elementi della pagina - esadecimale" - -#: ../../view/theme/apw/php/config.php:275 -msgid "Set colour of links - use hex" -msgstr "Colore dei link - esadecimale" - -#: ../../view/theme/apw/php/config.php:276 -msgid "Set max-width for items. Default 400px" -msgstr "Larghezza massima degli elementi della pagina. Predefinita: 400px" - -#: ../../view/theme/apw/php/config.php:277 -msgid "Set min-width for items. Default 240px" -msgstr "Larghezza minima degli elementi della pagina. Predefinita: 240px" - -#: ../../view/theme/apw/php/config.php:278 -msgid "Set the generic content wrapper width. Default 48%" -msgstr "Larghezza di tutta l'area dei contenuti. Predefinita: 48%" - -#: ../../view/theme/apw/php/config.php:279 -msgid "Set colour of fonts - use hex" -msgstr "Colore dei caratteri - esadecimale" - -#: ../../view/theme/apw/php/config.php:280 -msgid "Set background-size element" -msgstr "Background-size element" - -#: ../../view/theme/apw/php/config.php:281 -msgid "Item opacity" -msgstr "Opacità degli elementi della pagina" - -#: ../../view/theme/apw/php/config.php:282 -msgid "Display post previews only" -msgstr "Mostra le anteprime solo degli articoli" - -#: ../../view/theme/apw/php/config.php:283 -msgid "Display side bar on channel page" -msgstr "Mostra la colonna laterale sulla pagina del canale" - -#: ../../view/theme/apw/php/config.php:284 -msgid "Colour of the navigation bar" -msgstr "Colore della barra di navigazione" - -#: ../../view/theme/apw/php/config.php:285 -msgid "Item float" -msgstr "Float degli oggetti della pagina" - -#: ../../view/theme/apw/php/config.php:286 -msgid "Left offset of the section element" -msgstr "Spazio a sinistra dell'elemento section" - -#: ../../view/theme/apw/php/config.php:287 -msgid "Right offset of the section element" -msgstr "Spazio a destra dell'elemento section" - -#: ../../view/theme/apw/php/config.php:288 -msgid "Section width" -msgstr "Larghezza section" - -#: ../../view/theme/apw/php/config.php:289 -msgid "Left offset of the aside" -msgstr "Spazio a sinistra del aside" - -#: ../../view/theme/apw/php/config.php:290 -msgid "Right offset of the aside element" -msgstr "Spazio a destra del aside" - -#: ../../view/theme/blogga/php/config.php:47 -#: ../../view/theme/blogga/view/theme/blog/config.php:47 -msgid "None" -msgstr "Nessuno" - -#: ../../view/theme/blogga/php/config.php:70 -#: ../../view/theme/blogga/view/theme/blog/config.php:70 -msgid "Header image" -msgstr "Immagine dell'intestazione" - -#: ../../view/theme/blogga/php/config.php:71 -#: ../../view/theme/blogga/view/theme/blog/config.php:71 -msgid "Header image only on profile pages" -msgstr "È possibile mettere un'immagine solo nell'intestazione dei profili" - #: ../../view/theme/redbasic/php/config.php:104 msgid "Narrow navbar" msgstr "Barra di navigazione ristretta" @@ -7578,6 +7522,10 @@ msgstr "Colore per le icone in evidenza" msgid "Set font-size for the entire application" msgstr "Dimensione font per tutto il sito" +#: ../../view/theme/redbasic/php/config.php:124 +msgid "Set font-size for posts and comments" +msgstr "Dimensioni del carattere per articoli e commenti" + #: ../../view/theme/redbasic/php/config.php:125 msgid "Set font-colour for posts and comments" msgstr "Colore del carattere per articoli e commenti" @@ -7617,42 +7565,3 @@ msgstr "Album con foto storte" #: ../../view/theme/redbasic/php/config.php:133 msgid "Are you a clean desk or a messy desk person?" msgstr "La tua scrivania è sempre a posto? Sei una persona disordinata?" - -#: ../../boot.php:1260 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "%s: aggiornamento fallito. Controlla i log di errore." - -#: ../../boot.php:1263 -#, php-format -msgid "Update Error at %s" -msgstr "Errore di aggiornamento su %s" - -#: ../../boot.php:1427 -msgid "" -"Create an account to access services and applications within the Red Matrix" -msgstr "Registrati per accedere ai servizi e alle applicazioni di Red Matrix" - -#: ../../boot.php:1455 -msgid "Password" -msgstr "Password" - -#: ../../boot.php:1456 -msgid "Remember me" -msgstr "Resta connesso" - -#: ../../boot.php:1461 -msgid "Forgot your password?" -msgstr "Hai dimenticato la password?" - -#: ../../boot.php:1526 -msgid "permission denied" -msgstr "permesso negato" - -#: ../../boot.php:1527 -msgid "Got Zot?" -msgstr "Hai Zot?" - -#: ../../boot.php:1957 -msgid "toggle mobile" -msgstr "attiva/disattiva versione mobile" diff --git a/view/it/strings.php b/view/it/strings.php index 6e96adb3f..cb8b41aa7 100644 --- a/view/it/strings.php +++ b/view/it/strings.php @@ -5,126 +5,292 @@ function string_plural_select_it($n){ return ($n != 1);; }} ; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; -$a->strings["Profile Photos"] = "Foto del profilo"; -$a->strings["Matrix"] = "La tua rete"; -$a->strings["Channel Home"] = "Bacheca del canale"; -$a->strings["Profile"] = "Profilo"; -$a->strings["Photos"] = "Foto"; -$a->strings["Events"] = "Eventi"; -$a->strings["Directory"] = "Tutti i canali"; -$a->strings["Embedded content"] = "Contenuti incorporati"; -$a->strings["Embedding disabled"] = "Contenuti incorporati - funzione disabilitata"; -$a->strings["created a new post"] = "Ha creato un nuovo articolo"; -$a->strings["commented on %s's post"] = "ha commentato l'articolo di %s"; -$a->strings["Connect"] = "Entra in contatto"; -$a->strings["New window"] = "Nuova finestra"; -$a->strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra"; -$a->strings["New Page"] = "Nuova pagina web"; -$a->strings["Edit"] = "Modifica"; -$a->strings["View"] = "Guarda"; -$a->strings["Preview"] = "Anteprima"; -$a->strings["Actions"] = "Azioni"; -$a->strings["Page Link"] = "Link alla pagina"; -$a->strings["Title"] = "Titolo"; -$a->strings["Created"] = "Creato"; -$a->strings["Edited"] = "Modificato"; -$a->strings["Can view my \"public\" stream and posts"] = "Può vedere i miei contenuti \"pubblici\""; -$a->strings["Can view my \"public\" channel profile"] = "Può vedere il profilo del mio canale \"pubblico\""; -$a->strings["Can view my \"public\" photo albums"] = "Può vedere il mio album fotografico \"pubblico\""; -$a->strings["Can view my \"public\" address book"] = "Può vedere il mio elenco contatti \"pubblico\""; -$a->strings["Can view my \"public\" file storage"] = "Può vedere il mio archivio file \"pubblico\""; -$a->strings["Can view my \"public\" pages"] = "Può vedere le mie pagine web \"pubbliche\""; -$a->strings["Can send me their channel stream and posts"] = "È tra i canali che seguo"; -$a->strings["Can post on my channel page (\"wall\")"] = "Può scrivere sulla bacheca del mio canale"; -$a->strings["Can comment on my posts"] = "Può commentare i miei articoli"; -$a->strings["Can send me private mail messages"] = "Può inviarmi messaggi privati"; -$a->strings["Can post photos to my photo albums"] = "Può aggiungere foto ai miei album"; -$a->strings["Can forward to all my channel contacts via post @mentions"] = "Può inoltrare articoli a tutti i contatti del canale tramite una @menzione"; -$a->strings["Advanced - useful for creating group forum channels"] = "Impostazione avanzata - utile per creare un canale-forum di discussione"; -$a->strings["Can chat with me (when available)"] = "Può aprire una chat con me (se disponibile)"; -$a->strings["Can write to my \"public\" file storage"] = "Può scrivere sul mio archivio di file \"pubblico\""; -$a->strings["Can edit my \"public\" pages"] = "Può modificare le mie pagine web \"pubbliche\""; -$a->strings["Can source my \"public\" posts in derived channels"] = "Può aggiungere i miei post \"pubblici\" a un suo canale derivato"; -$a->strings["Somewhat advanced - very useful in open communities"] = "Piuttosto avanzato - molto utile nelle comunità aperte"; -$a->strings["Can administer my channel resources"] = "Può amministrare i contenuti del mio canale"; -$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"; -$a->strings["Not a valid email address"] = "Email non valida"; -$a->strings["Your email domain is not among those allowed on this site"] = "Il dominio della tua email attualmente non è permesso su questo sito"; -$a->strings["Your email address is already registered at this site."] = "La tua email è già registrata su questo sito."; -$a->strings["An invitation is required."] = "È necessario un invito."; -$a->strings["Invitation could not be verified."] = "L'invito non può essere verificato."; -$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste."; -$a->strings["Failed to store account information."] = "Non è stato possibile salvare le informazioni del tuo account."; -$a->strings["Registration request at %s"] = "Richiesta di registrazione su %s"; -$a->strings["Administrator"] = "Amministratore"; -$a->strings["your registration password"] = "la password di registrazione"; -$a->strings["Registration details for %s"] = "Dettagli della registrazione di %s"; -$a->strings["Account approved."] = "Account approvato."; -$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s"; -$a->strings["Permission denied."] = "Permesso negato."; -$a->strings["Image exceeds website size limit of %lu bytes"] = "L'immagine supera il limite massimo di %lu bytes"; -$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto."; -$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine"; -$a->strings["Photo storage failed."] = "Impossibile caricare la foto."; -$a->strings["Photo Albums"] = "Album foto"; -$a->strings["Upload New Photos"] = "Carica nuove foto"; -$a->strings["Visible to everybody"] = "Visibile a tutti"; -$a->strings["Show"] = "Mostra"; -$a->strings["Don't show"] = "Non mostrare"; -$a->strings["Permissions"] = "Permessi"; -$a->strings["Close"] = "Chiudi"; -$a->strings[" and "] = "e"; -$a->strings["public profile"] = "profilo pubblico"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; -$a->strings["Visit %1\$s's %2\$s"] = "Guarda %2\$s di %1\$s "; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha aggiornato %2\$s cambiando %3\$s."; -$a->strings["Public Timeline"] = "Diario pubblico"; -$a->strings["Item was not found."] = "Elemento non trovato."; -$a->strings["No source file."] = "Nessun file di origine."; -$a->strings["Cannot locate file to replace"] = "Il file da sostituire non è stato trovato"; -$a->strings["Cannot locate file to revise/update"] = "Il file da aggiornare non è stato trovato"; -$a->strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d"; -$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati."; -$a->strings["File upload failed. Possible system limit or action terminated."] = "Caricamento file fallito, potrebbe aver superato i limiti o l'azione potrebbe essere stata interrotta."; -$a->strings["Stored file could not be verified. Upload failed."] = "Il file non può essere verificato. Caricamento fallito."; -$a->strings["Path not available."] = "Percorso non disponibile."; -$a->strings["Empty pathname"] = "Il percorso del file è vuoto"; -$a->strings["duplicate filename or path"] = "il file o percorso del file è duplicato"; -$a->strings["Path not found."] = "Percorso del file non trovato."; -$a->strings["mkdir failed."] = "mkdir fallito."; -$a->strings["database storage failed."] = "scrittura su database fallita."; -$a->strings["Logged out."] = "Uscita effettuata."; -$a->strings["Failed authentication"] = "Autenticazione fallita"; -$a->strings["Login failed."] = "Accesso fallito."; +$a->strings["Channel is blocked on this site."] = "Il canale è bloccato per questo sito."; +$a->strings["Channel location missing."] = "Manca l'indirizzo del canale."; +$a->strings["Response from remote channel was incomplete."] = "La risposta dal canale non è completa."; +$a->strings["Channel was deleted and no longer exists."] = "Il canale è stato rimosso e non esiste più."; +$a->strings["Channel discovery failed."] = "La ricerca del canale non ha avuto successo."; +$a->strings["local account not found."] = "l'account locale non è stato trovato."; +$a->strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso."; +$a->strings["Edit File properties"] = "Modifica le proprietà dei file"; $a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; $a->strings["Starts:"] = "Inizio:"; $a->strings["Finishes:"] = "Fine:"; $a->strings["Location:"] = "Luogo:"; +$a->strings["Categories"] = "Categorie"; +$a->strings["App Category"] = "Categoria app"; +$a->strings["System"] = "Sistema"; +$a->strings["Personal"] = "Personali"; +$a->strings["Connect"] = "Entra in contatto"; +$a->strings["Ignore/Hide"] = "Ignora/nascondi"; +$a->strings["Suggestions"] = "Suggerimenti"; +$a->strings["See more..."] = "Altro..."; +$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Hai attivato %1$.0f delle %2$.0f connessioni permesse."; +$a->strings["Add New Connection"] = "Aggiungi un contatto"; +$a->strings["Enter the channel address"] = "Scrivi l'indirizzo del canale"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Per esempio: mario@pippo.it oppure http://pluto.com/barbara"; +$a->strings["Notes"] = "Note"; +$a->strings["Save"] = "Salva"; +$a->strings["Remove term"] = "Rimuovi termine"; +$a->strings["Saved Searches"] = "Ricerche salvate"; +$a->strings["add"] = "aggiungi"; +$a->strings["Saved Folders"] = "Cartelle salvate"; +$a->strings["Everything"] = "Tutto"; +$a->strings["Archives"] = "Archivi"; +$a->strings["Refresh"] = "Aggiorna"; +$a->strings["Me"] = "Io"; +$a->strings["Best Friends"] = "Buoni amici"; +$a->strings["Friends"] = "Amici"; +$a->strings["Co-workers"] = "Colleghi"; +$a->strings["Former Friends"] = "Ex amici"; +$a->strings["Acquaintances"] = "Conoscenti"; +$a->strings["Everybody"] = "Tutti"; +$a->strings["Account settings"] = "Impostazioni dell'account"; +$a->strings["Channel settings"] = "Impostazioni del canale"; +$a->strings["Additional features"] = "Funzionalità aggiuntive"; +$a->strings["Feature settings"] = "Impostazioni aggiuntive"; +$a->strings["Display settings"] = "Impostazioni grafiche"; +$a->strings["Connected apps"] = "App connesse"; +$a->strings["Export channel"] = "Esporta il canale"; +$a->strings["Automatic Permissions (Advanced)"] = "Permessi predefiniti (avanzato)"; +$a->strings["Premium Channel Settings"] = "Canale premium - impostazioni"; +$a->strings["Channel Sources"] = "Sorgenti del canale"; +$a->strings["Settings"] = "Impostazioni"; +$a->strings["Check Mail"] = "Controlla i messaggi"; +$a->strings["New Message"] = "Nuovo messaggio"; +$a->strings["Chat Rooms"] = "Chat attive"; +$a->strings["Bookmarked Chatrooms"] = "Chat nei segnalibri"; +$a->strings["Suggested Chatrooms"] = "Chat suggerite"; +$a->strings["Public Timeline"] = "Diario pubblico"; +$a->strings["Logout"] = "Esci"; +$a->strings["End this session"] = "Chiudi questa sessione"; +$a->strings["Home"] = "Bacheca"; +$a->strings["Your posts and conversations"] = "I tuoi articoli e conversazioni"; +$a->strings["View Profile"] = "Profilo"; +$a->strings["Your profile page"] = "Il tuo profilo"; +$a->strings["Edit Profiles"] = "Modifica i profili"; +$a->strings["Manage/Edit profiles"] = "Gestisci/modifica i profili"; +$a->strings["Photos"] = "Foto"; +$a->strings["Your photos"] = "Le tue foto"; +$a->strings["Files"] = "Elenco file"; +$a->strings["Your files"] = "I tuoi file"; +$a->strings["Chat"] = "Chat"; +$a->strings["Your chatrooms"] = "Le tue chat"; +$a->strings["Events"] = "Eventi"; +$a->strings["Your events"] = "I tuoi eventi"; +$a->strings["Bookmarks"] = "Segnalibri"; +$a->strings["Your bookmarks"] = "I tuoi segnalibri"; +$a->strings["Webpages"] = "Pagine web"; +$a->strings["Your webpages"] = "Le tue pagine web"; +$a->strings["Login"] = "Accedi"; +$a->strings["Sign in"] = "Entra"; +$a->strings["%s - click to logout"] = "%s - clicca per uscire"; +$a->strings["Click to authenticate to your home hub"] = "Clicca per autenticarti sul tuo server principale"; +$a->strings["Home Page"] = "Bacheca"; +$a->strings["Register"] = "Iscriviti"; +$a->strings["Create an account"] = "Crea un account"; +$a->strings["Help"] = "Guida"; +$a->strings["Help and documentation"] = "Guida e documentazione"; +$a->strings["Apps"] = "Apps"; +$a->strings["Addon applications, utilities, games"] = "App, strumenti e giochi aggiuntivi"; +$a->strings["Search"] = "Cerca"; +$a->strings["Search site content"] = "Cerca nel sito"; +$a->strings["Directory"] = "Tutti i canali"; +$a->strings["Channel Locator"] = "Ricerca canali"; +$a->strings["Matrix"] = "La tua rete"; +$a->strings["Your matrix"] = "La tua rete"; +$a->strings["Mark all matrix notifications seen"] = "Segna come lette le notifiche della tua rete"; +$a->strings["Channel Home"] = "Bacheca del canale"; +$a->strings["Channel home"] = "Bacheca del canale"; +$a->strings["Mark all channel notifications seen"] = "Segna come lette le notifiche dei canali"; +$a->strings["Connections"] = "Contatti"; +$a->strings["Notices"] = "Notifiche"; +$a->strings["Notifications"] = "Notifiche"; +$a->strings["See all notifications"] = "Vedi tutte le notifiche"; +$a->strings["Mark all system notifications seen"] = "Segna come lette le notifiche di sistema"; +$a->strings["Mail"] = "Messaggi"; +$a->strings["Private mail"] = "Messaggi privati"; +$a->strings["See all private messages"] = "Guarda tutti i messaggi privati"; +$a->strings["Mark all private messages seen"] = "Segna come letti tutti i messaggi privati"; +$a->strings["Inbox"] = "In arrivo"; +$a->strings["Outbox"] = "Inviati"; +$a->strings["Event Calendar"] = "Calendario"; +$a->strings["See all events"] = "Guarda tutti gli eventi"; +$a->strings["Mark all events seen"] = "Marca come letti tutti gli eventi"; +$a->strings["Channel Select"] = "Gestisci i canali"; +$a->strings["Manage Your Channels"] = "Gestisci i contatti dei tuoi canali"; +$a->strings["Account/Channel Settings"] = "Impostazioni account e canali"; +$a->strings["Manage/Edit Friends and Connections"] = "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["Please wait..."] = "Attendere..."; +$a->strings["Embedded content"] = "Contenuti incorporati"; +$a->strings["Embedding disabled"] = "Contenuti incorporati - funzione disabilitata"; $a->strings["Image/photo"] = "Immagine"; $a->strings["Encrypted content"] = "Contenuto crittografato"; $a->strings["QR code"] = "QR code"; $a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s"; $a->strings["post"] = "l'articolo"; $a->strings["$1 wrote:"] = "$1 ha scritto:"; -$a->strings["Private Message"] = "Messaggio privato"; -$a->strings["Delete"] = "Elimina"; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "È stato ripristinato un insieme con lo stesso nome che era stato eliminato in precedenza. I permessi già presenti potrebbero rimanere validi per i nuovi canali. Se non vuoi che ciò accada, devi creare un altro insieme con un nome diverso."; +$a->strings["Default privacy group for new contacts"] = "Insieme predefinito per i canali che inizi a seguire"; +$a->strings["All Channels"] = "Tutti i canali"; +$a->strings["edit"] = "modifica"; +$a->strings["Collections"] = "Insiemi di canali"; +$a->strings["Edit collection"] = "Modifica l'insieme di canali"; +$a->strings["Create a new collection"] = "Crea un nuovo insieme"; +$a->strings["Channels not in any collection"] = "Canali che non sono in un insieme"; +$a->strings["photo"] = "la foto"; +$a->strings["event"] = "l'evento"; +$a->strings["channel"] = "canale"; +$a->strings["status"] = "il messaggio di stato"; +$a->strings["comment"] = "il commento"; +$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["%1\$s is now connected with %2\$s"] = "%1\$s adesso è connesso con %2\$s"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s ha mandato un poke a %2\$s"; +$a->strings["poked"] = "ha ricevuto un poke"; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s al momento è %2\$s"; $a->strings["Select"] = "Seleziona"; +$a->strings["Delete"] = "Elimina"; +$a->strings["Private Message"] = "Messaggio privato"; +$a->strings["Message is verified"] = "Messaggio verificato"; +$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; +$a->strings["Categories:"] = "Categorie:"; +$a->strings["Filed under:"] = "Classificato come:"; +$a->strings[" from %s"] = " da %s"; +$a->strings["last edited: %s"] = "ultima modifica: %s"; +$a->strings["Expires: %s"] = "Scadenza: %s"; +$a->strings["View in context"] = "Vedi nel contesto"; +$a->strings["Please wait"] = "Attendere"; +$a->strings["remove"] = "rimuovi"; +$a->strings["Loading..."] = "Caricamento in corso..."; +$a->strings["Delete Selected Items"] = "Elimina gli oggetti selezionati"; +$a->strings["View Source"] = "Vedi il sorgente"; +$a->strings["Follow Thread"] = "Segui la discussione"; +$a->strings["View Status"] = "Guarda il messaggio di stato"; +$a->strings["View Photos"] = "Guarda le foto"; +$a->strings["Matrix Activity"] = "Attività nella tua rete"; +$a->strings["Edit Contact"] = "Modifica il contatto"; +$a->strings["Send PM"] = "Invia messaggio privato"; +$a->strings["Poke"] = "Poke"; +$a->strings["%s likes this."] = "Piace a %s."; +$a->strings["%s doesn't like this."] = "Non piace a %s."; +$a->strings["%2\$d people like this."] = array( + 0 => "", + 1 => "Piace a %2\$d persone.", +); +$a->strings["%2\$d people don't like this."] = array( + 0 => "", + 1 => "Non piace a %2\$d persone.", +); +$a->strings["and"] = "e"; +$a->strings[", and %d other people"] = array( + 0 => "", + 1 => "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 everybody"] = "Visibile a tutti"; +$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; +$a->strings["Please enter a video link/URL:"] = "Inserisci l'indirizzo del video:"; +$a->strings["Please enter an audio link/URL:"] = "Inserisci l'indirizzo dell'audio:"; +$a->strings["Tag term:"] = "Tag:"; +$a->strings["Save to Folder:"] = "Salva nella cartella:"; +$a->strings["Where are you right now?"] = "Dove sei ora?"; +$a->strings["Expires YYYY-MM-DD HH:MM"] = "Scade il YYYY-MM-DD HH:MM"; +$a->strings["Preview"] = "Anteprima"; +$a->strings["Share"] = "Condividi"; +$a->strings["Page link title"] = "Link del titolo"; +$a->strings["Post as"] = "Pubblica come "; +$a->strings["Upload photo"] = "Carica foto"; +$a->strings["upload photo"] = "carica foto"; +$a->strings["Attach file"] = "Allega file"; +$a->strings["attach file"] = "allega file"; +$a->strings["Insert web link"] = "Inserisci un indirizzo web"; +$a->strings["web link"] = "link web"; +$a->strings["Insert video link"] = "Inserisci l'indirizzo di un video"; +$a->strings["video link"] = "link video"; +$a->strings["Insert audio link"] = "Inserisci l'indirizzo di un audio"; +$a->strings["audio link"] = "link audio"; +$a->strings["Set your location"] = "La tua località"; +$a->strings["set location"] = "la tua località"; +$a->strings["Clear browser location"] = "Rimuovi la località data dal browser"; +$a->strings["clear location"] = "rimuovi la località"; +$a->strings["Set title"] = "Scegli un titolo"; +$a->strings["Categories (comma-separated list)"] = "Categorie (separate da virgola)"; +$a->strings["Permission settings"] = "Impostazioni permessi"; +$a->strings["permissions"] = "permessi"; +$a->strings["Public post"] = "Articolo pubblico"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Per esempio: mario@esempio.com, simona@esempio.com"; +$a->strings["Set expiration date"] = "Data di scadenza"; +$a->strings["Encrypt text"] = "Crittografia del testo"; +$a->strings["OK"] = "OK"; +$a->strings["Cancel"] = "Annulla"; +$a->strings["Discover"] = "Scopri"; +$a->strings["Imported public streams"] = "Contenuti pubblici importati"; +$a->strings["Commented Order"] = "Ultimi commenti"; +$a->strings["Sort by Comment Date"] = "Per data del commento"; +$a->strings["Posted Order"] = "Ultimi articoli"; +$a->strings["Sort by Post Date"] = "Per data di creazione"; +$a->strings["Posts that mention or involve you"] = "Articoli che ti riguardano o ti menzionano"; +$a->strings["New"] = "Novità"; +$a->strings["Activity Stream - by date"] = "Elenco attività - per data"; +$a->strings["Starred"] = "Preferiti"; +$a->strings["Favourite Posts"] = "Articoli preferiti"; +$a->strings["Spam"] = "Spam"; +$a->strings["Posts flagged as SPAM"] = "Articoli marcati come spam"; +$a->strings["Channel"] = "Canale"; +$a->strings["Status Messages and Posts"] = "Articoli e messaggi di stato"; +$a->strings["About"] = "Informazioni"; +$a->strings["Profile Details"] = "Dettagli del profilo"; +$a->strings["Photo Albums"] = "Album foto"; +$a->strings["Files and Storage"] = "Archivio file"; +$a->strings["Chatrooms"] = "Chat"; +$a->strings["Events and Calendar"] = "Calendario eventi"; +$a->strings["Saved Bookmarks"] = "Segnalibri salvati"; +$a->strings["Manage Webpages"] = "Gestisci le pagine web"; +$a->strings["Default"] = "Predefinito"; +$a->strings["No recipient provided."] = "Devi scegliere un destinatario."; +$a->strings["[no subject]"] = "[nessun titolo]"; +$a->strings["Unable to determine sender."] = "Impossibile determinare il mittente."; +$a->strings["Stored post could not be verified."] = "Non è stato possibile verificare l'articolo inserito."; +$a->strings[" and "] = "e"; +$a->strings["public profile"] = "profilo pubblico"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; +$a->strings["Visit %1\$s's %2\$s"] = "Guarda %2\$s di %1\$s "; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha aggiornato %2\$s cambiando %3\$s."; +$a->strings["view full size"] = "guarda nelle dimensioni reali"; +$a->strings["%1\$s's bookmarks"] = "I segnalibri di %1\$s"; +$a->strings["Tags"] = "Tag"; +$a->strings["Keywords"] = "Parole chiave"; +$a->strings["have"] = "ho"; +$a->strings["has"] = "ha"; +$a->strings["want"] = "voglio"; +$a->strings["wants"] = "vuole"; +$a->strings["like"] = "mi piace"; +$a->strings["likes"] = "mi piace"; +$a->strings["dislike"] = "non mi piace"; +$a->strings["dislikes"] = "non mi piace"; +$a->strings["Edit"] = "Modifica"; $a->strings["save to folder"] = "salva in una cartella"; -$a->strings["Like"] = "Mi piace"; -$a->strings["Likes"] = "Mi piace"; -$a->strings["Dislike"] = "Non mi piace"; -$a->strings["Dislikes"] = "Non mi piace"; +$a->strings["View all"] = "Vedi tutto"; +$a->strings["Like"] = array( + 0 => "Mi piace", + 1 => "Mi piace", +); +$a->strings["Dislike"] = array( + 0 => "Non mi piace", + 1 => "Non mi piace", +); $a->strings["add star"] = "aggiungi ai preferiti"; $a->strings["remove star"] = "rimuovi dai preferiti"; $a->strings["toggle star status"] = "Attiva/disattiva preferito"; $a->strings["starred"] = "preferito"; -$a->strings["Message is verified"] = "Messaggio verificato"; $a->strings["add tag"] = "Aggiungi tag"; $a->strings["I like this (toggle)"] = "Attiva/disattiva Mi piace"; -$a->strings["like"] = "mi piace"; $a->strings["I don't like this (toggle)"] = "Attiva/disattiva Non mi piace"; -$a->strings["dislike"] = "non mi piace"; $a->strings["Share this"] = "Condividi"; $a->strings["share"] = "condividi"; $a->strings["View %s's profile - %s"] = "Guarda il profilo di %s - %s"; @@ -132,11 +298,10 @@ $a->strings["to"] = "a"; $a->strings["via"] = "via"; $a->strings["Wall-to-Wall"] = "Da bacheca a bacheca"; $a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca:"; -$a->strings[" from %s"] = " da %s"; -$a->strings["last edited: %s"] = "ultima modifica: %s"; -$a->strings["Expires: %s"] = "Scadenza: %s"; $a->strings["Bookmark Links"] = "I link dei segnalibri"; -$a->strings["Please wait"] = "Attendere"; +$a->strings["Likes"] = "Mi piace"; +$a->strings["Dislikes"] = "Non mi piace"; +$a->strings["Close"] = "Chiudi"; $a->strings["%d comment"] = array( 0 => "%d commento", 1 => "%d commenti", @@ -153,22 +318,171 @@ $a->strings["Code"] = "Codice"; $a->strings["Image"] = "Immagine"; $a->strings["Link"] = "Link"; $a->strings["Video"] = "Video"; -$a->strings["Encrypt text"] = "Crittografia del testo"; -$a->strings["%1\$s's bookmarks"] = "I segnalibri di %1\$s"; -$a->strings["Missing room name"] = "Chat senza nome"; -$a->strings["Duplicate room name"] = "Il nome della chat è duplicato"; -$a->strings["Invalid room specifier."] = "Il nome della chat non è valido."; -$a->strings["Room not found."] = "Chat non trovata."; -$a->strings["Room is full"] = "La chat è al completo"; -$a->strings["Tags"] = "Tag"; -$a->strings["Keywords"] = "Parole chiave"; -$a->strings["have"] = "ho"; -$a->strings["has"] = "ha"; -$a->strings["want"] = "voglio"; -$a->strings["wants"] = "vuole"; -$a->strings["likes"] = "mi piace"; -$a->strings["dislikes"] = "non mi piace"; -$a->strings["Default"] = "Predefinito"; +$a->strings["Permission denied"] = "Permesso negato"; +$a->strings["(Unknown)"] = "(Sconosciuto)"; +$a->strings["Item not found."] = "Elemento non trovato."; +$a->strings["Permission denied."] = "Permesso negato."; +$a->strings["Collection not found."] = "Insieme non trovato."; +$a->strings["Collection is empty."] = "L'insieme di canali è vuoto."; +$a->strings["Collection: %s"] = "Insieme: %s"; +$a->strings["Connection: %s"] = "Contatto: %s"; +$a->strings["Connection not found."] = "Contatto non trovato."; +$a->strings["Sort Options"] = "Opzioni di ordinamento"; +$a->strings["Alphabetic"] = "Alfabetico"; +$a->strings["Reverse Alphabetic"] = "Alfabetico inverso"; +$a->strings["Newest to Oldest"] = "Dal più nuovo al più vecchio"; +$a->strings["Enable Safe Search"] = "Abilita SafeSearch"; +$a->strings["Disable Safe Search"] = "Disabilita SafeSearch"; +$a->strings["Safe Mode"] = "Modalità SafeSearch"; +$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."] = "L'identificativo di sicurezza del modulo che hai riempito non è corretto. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto."; +$a->strings["created a new post"] = "Ha creato un nuovo articolo"; +$a->strings["commented on %s's post"] = "ha commentato l'articolo di %s"; +$a->strings["Red Matrix Notification"] = "Notifica di Red Matrix"; +$a->strings["redmatrix"] = "redmatrix"; +$a->strings["Thank You,"] = "Grazie,"; +$a->strings["%s Administrator"] = "Amministratore %s"; +$a->strings["%s "] = "%s "; +$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Notifica] Nuovo messaggio ricevuto su %s"; +$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s ti ha mandato un messaggio privato su %3\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s ti ha mandato %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 leggere i tuoi messaggi privati e rispondere."; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%4\$s[/zrl]"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%5\$s di %4\$s[/zrl]"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%4\$s che hai creato[/zrl]"; +$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notifica] Nuovo commento di %2\$s alla conversazione #%1\$d"; +$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s ha commentato un elemento che stavi seguendo."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per leggere o commentare la conversazione."; +$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Notifica] %s ha scritto sulla tua bacheca"; +$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s ha scritto sulla bacheca del tuo profilo su %3\$s"; +$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s ha scritto sulla [zrl=%3\$s]tua bacheca[/zrl]"; +$a->strings["[Red:Notify] %s tagged you"] = "[Red:Notifica] %s ti ha taggato"; +$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s ti ha taggato su %3\$s"; +$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]ti ha taggato[/zrl]."; +$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Notifica] %1\$s ti ha mandato un poke"; +$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s ti ha mandato un poke su %3\$s"; +$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]ti ha mandato un poke[/zrl]."; +$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Notifica] %s ha taggato il tuo articolo"; +$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha taggato il tuo articolo su %3\$s"; +$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s ha taggato [zrl=%3\$s]il tuo articolo[/zrl]"; +$a->strings["[Red:Notify] Introduction received"] = "[Red:Notifica] Hai una richiesta di amicizia"; +$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, hai ricevuto una richiesta di entrare in contatto da '%2\$s' su %3\$s"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, hai ricevuto una [zrl=%2\$s]richiesta di entrare in contatto[/zrl] da %3\$s."; +$a->strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo su %s"; +$a->strings["Please visit %s to approve or reject the connection request."] = "Visita %s per approvare o rifiutare la richiesta di entrare in contatto."; +$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Notifica] Ti è stato suggerito un amico"; +$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, ti è stato suggerito un amico da '%2\$s' su %3\$s"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, %4\$s ti [zrl=%2\$s]ha suggerito %3\$s[/zrl] come amico."; +$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["Item was not found."] = "Elemento non trovato."; +$a->strings["No source file."] = "Nessun file di origine."; +$a->strings["Cannot locate file to replace"] = "Il file da sostituire non è stato trovato"; +$a->strings["Cannot locate file to revise/update"] = "Il file da aggiornare non è stato trovato"; +$a->strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d"; +$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati."; +$a->strings["File upload failed. Possible system limit or action terminated."] = "Caricamento file fallito, potrebbe aver superato i limiti o l'azione potrebbe essere stata interrotta."; +$a->strings["Stored file could not be verified. Upload failed."] = "Il file non può essere verificato. Caricamento fallito."; +$a->strings["Path not available."] = "Percorso non disponibile."; +$a->strings["Empty pathname"] = "Il percorso del file è vuoto"; +$a->strings["duplicate filename or path"] = "il file o percorso del file è duplicato"; +$a->strings["Path not found."] = "Percorso del file non trovato."; +$a->strings["mkdir failed."] = "mkdir fallito."; +$a->strings["database storage failed."] = "scrittura su database fallita."; +$a->strings["New Page"] = "Nuova pagina web"; +$a->strings["View"] = "Guarda"; +$a->strings["Actions"] = "Azioni"; +$a->strings["Page Link"] = "Link alla pagina"; +$a->strings["Title"] = "Titolo"; +$a->strings["Created"] = "Creato"; +$a->strings["Edited"] = "Modificato"; +$a->strings["Profile Photos"] = "Foto del profilo"; +$a->strings["Image exceeds website size limit of %lu bytes"] = "L'immagine supera il limite massimo di %lu bytes"; +$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto."; +$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine"; +$a->strings["Photo storage failed."] = "Impossibile caricare la foto."; +$a->strings["Upload New Photos"] = "Carica nuove foto"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; +$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"] = "Transgender"; +$a->strings["Intersex"] = "Intersex"; +$a->strings["Transsexual"] = "Transessuale"; +$a->strings["Hermaphrodite"] = "Ermafrodito"; +$a->strings["Neuter"] = "Neutro"; +$a->strings["Non-specific"] = "Non specificato"; +$a->strings["Other"] = "Altro"; +$a->strings["Undecided"] = "Indeciso"; +$a->strings["Males"] = "Maschi"; +$a->strings["Females"] = "Femmine"; +$a->strings["Gay"] = "Gay"; +$a->strings["Lesbian"] = "Lesbica"; +$a->strings["No Preference"] = "Senza preferenza"; +$a->strings["Bisexual"] = "Bisessuale"; +$a->strings["Autosexual"] = "Autosessuale"; +$a->strings["Abstinent"] = "Astinente"; +$a->strings["Virgin"] = "Vergine"; +$a->strings["Deviant"] = "Deviato"; +$a->strings["Fetish"] = "Feticista"; +$a->strings["Oodles"] = "Un sacco"; +$a->strings["Nonsexual"] = "Asessuato"; +$a->strings["Single"] = "Single"; +$a->strings["Lonely"] = "Da solo"; +$a->strings["Available"] = "Disponibile"; +$a->strings["Unavailable"] = "Non disponibile"; +$a->strings["Has crush"] = "Ha una cotta"; +$a->strings["Infatuated"] = "Infatuato/a"; +$a->strings["Dating"] = "Disponibile a un incontro"; +$a->strings["Unfaithful"] = "Infedele"; +$a->strings["Sex Addict"] = "Sesso-dipendente"; +$a->strings["Friends/Benefits"] = "Amici piccanti"; +$a->strings["Casual"] = "Casual"; +$a->strings["Engaged"] = "Impegnato"; +$a->strings["Married"] = "Sposato/a"; +$a->strings["Imaginarily married"] = "Sogna il matrimonio"; +$a->strings["Partners"] = "Partner"; +$a->strings["Cohabiting"] = "Convivente"; +$a->strings["Common law"] = "Matrimonio regolare"; +$a->strings["Happy"] = "Felice"; +$a->strings["Not looking"] = "Non in cerca"; +$a->strings["Swinger"] = "Scambista"; +$a->strings["Betrayed"] = "Tradito/a"; +$a->strings["Separated"] = "Separato/a"; +$a->strings["Unstable"] = "Instabile"; +$a->strings["Divorced"] = "Divorziato/a"; +$a->strings["Imaginarily divorced"] = "Sogna il divorzio"; +$a->strings["Widowed"] = "Vedovo/a"; +$a->strings["Uncertain"] = "Incerto/a"; +$a->strings["It's complicated"] = "Relazione complicata"; +$a->strings["Don't care"] = "Chi se ne frega"; +$a->strings["Ask me"] = "Chiedimelo"; +$a->strings["Click here to upgrade."] = "Clicca qui per aggiornare."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa operazione esce dai termini del tuo abbonamento."; +$a->strings["This action is not available under your subscription plan."] = "Questa operazione non è prevista dal tuo abbonamento."; +$a->strings["Visible to everybody"] = "Visibile a tutti"; +$a->strings["Show"] = "Mostra"; +$a->strings["Don't show"] = "Non mostrare"; +$a->strings["Permissions"] = "Permessi"; +$a->strings["Not a valid email address"] = "Email non valida"; +$a->strings["Your email domain is not among those allowed on this site"] = "Il dominio della tua email attualmente non è permesso su questo sito"; +$a->strings["Your email address is already registered at this site."] = "La tua email è già registrata su questo sito."; +$a->strings["An invitation is required."] = "È necessario un invito."; +$a->strings["Invitation could not be verified."] = "L'invito non può essere verificato."; +$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste."; +$a->strings["Failed to store account information."] = "Non è stato possibile salvare le informazioni del tuo account."; +$a->strings["Registration request at %s"] = "Richiesta di registrazione su %s"; +$a->strings["Administrator"] = "Amministratore"; +$a->strings["your registration password"] = "la password di registrazione"; +$a->strings["Registration details for %s"] = "Dettagli della registrazione di %s"; +$a->strings["Account approved."] = "Account approvato."; +$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s"; +$a->strings["New window"] = "Nuova finestra"; +$a->strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra"; $a->strings["Unknown | Not categorised"] = "Sconosciuto | Senza categoria"; $a->strings["Block immediately"] = "Blocca subito"; $a->strings["Shady, spammer, self-marketer"] = "Spammer o dedito al marketing"; @@ -191,6 +505,13 @@ $a->strings["Zot!"] = "Zot!"; $a->strings["LinkedIn"] = "LinkedIn"; $a->strings["XMPP/IM"] = "XMPP/IM"; $a->strings["MySpace"] = "MySpace"; +$a->strings["Profile"] = "Profilo"; +$a->strings["Update"] = "Aggiorna"; +$a->strings["Install"] = "Installa"; +$a->strings["Unknown"] = "Sconosciuto"; +$a->strings["Logged out."] = "Uscita effettuata."; +$a->strings["Failed authentication"] = "Autenticazione fallita"; +$a->strings["Login failed."] = "Accesso fallito."; $a->strings["prev"] = "prec"; $a->strings["first"] = "inizio"; $a->strings["last"] = "fine"; @@ -203,10 +524,7 @@ $a->strings["%d Connection"] = array( 1 => "%d contatti", ); $a->strings["View Connections"] = "Elenco contatti"; -$a->strings["Search"] = "Cerca"; -$a->strings["Save"] = "Salva"; $a->strings["poke"] = "poke"; -$a->strings["poked"] = "ha ricevuto un poke"; $a->strings["ping"] = "ping"; $a->strings["pinged"] = "ha ricevuto un ping"; $a->strings["prod"] = "prod"; @@ -267,201 +585,17 @@ $a->strings["Select a page layout: "] = "Scegli il layout della pagina:"; $a->strings["default"] = "predefinito"; $a->strings["Page content type: "] = "Contenuto della pagina:"; $a->strings["Select an alternate language"] = "Seleziona una lingua diversa"; -$a->strings["photo"] = "la foto"; -$a->strings["event"] = "l'evento"; -$a->strings["status"] = "il messaggio di stato"; -$a->strings["comment"] = "il commento"; $a->strings["activity"] = "l'attività"; $a->strings["Design"] = "Design"; $a->strings["Blocks"] = "Riquadri"; $a->strings["Menus"] = "Menù"; $a->strings["Layouts"] = "Layout"; $a->strings["Pages"] = "Pagine"; -$a->strings["%d invitation available"] = array( - 0 => "%d invito disponibile", - 1 => "%d inviti disponibili", -); -$a->strings["Advanced"] = "Avanzate"; -$a->strings["Find Channels"] = "Ricerca canali"; -$a->strings["Enter name or interest"] = "Scrivi un nome o un interesse"; -$a->strings["Connect/Follow"] = "Entra in contatto"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Per esempio: Mario Rossi, Pesca"; -$a->strings["Find"] = "Cerca"; -$a->strings["Channel Suggestions"] = "Canali suggeriti"; -$a->strings["Random Profile"] = "Profilo casuale"; -$a->strings["Invite Friends"] = "Invita amici"; -$a->strings["Exammple: name=fred and country=iceland"] = "Per esempio: name=mario e country=italy"; -$a->strings["Advanced Find"] = "Ricerca avanzata"; -$a->strings["Saved Folders"] = "Cartelle salvate"; -$a->strings["Everything"] = "Tutto"; -$a->strings["Categories"] = "Categorie"; -$a->strings["%d connection in common"] = array( - 0 => "%d contatto in comune", - 1 => "%d contatti in comune", -); -$a->strings["channel"] = "canale"; -$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["%1\$s is now connected with %2\$s"] = "%1\$s adesso è connesso con %2\$s"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s ha mandato un poke a %2\$s"; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s al momento è %2\$s"; -$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; -$a->strings["Categories:"] = "Categorie:"; -$a->strings["Filed under:"] = "Classificato come:"; -$a->strings["View in context"] = "Vedi nel contesto"; -$a->strings["remove"] = "rimuovi"; -$a->strings["Loading..."] = "Caricamento in corso..."; -$a->strings["Delete Selected Items"] = "Elimina gli oggetti selezionati"; -$a->strings["View Source"] = "Vedi il sorgente"; -$a->strings["Follow Thread"] = "Segui la discussione"; -$a->strings["View Status"] = "Guarda il messaggio di stato"; -$a->strings["View Profile"] = "Profilo"; -$a->strings["View Photos"] = "Guarda le foto"; -$a->strings["Matrix Activity"] = "Attività nella tua rete"; -$a->strings["Edit Contact"] = "Modifica il contatto"; -$a->strings["Send PM"] = "Invia messaggio privato"; -$a->strings["Poke"] = "Poke"; -$a->strings["%s likes this."] = "Piace a %s."; -$a->strings["%s doesn't like this."] = "Non piace a %s."; -$a->strings["%2\$d people like this."] = array( - 0 => "", - 1 => "Piace a %2\$d persone.", -); -$a->strings["%2\$d people don't like this."] = array( - 0 => "", - 1 => "Non piace a %2\$d persone.", -); -$a->strings["and"] = "e"; -$a->strings[", and %d other people"] = array( - 0 => "", - 1 => "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 everybody"] = "Visibile a tutti"; -$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; -$a->strings["Please enter a video link/URL:"] = "Inserisci l'indirizzo del video:"; -$a->strings["Please enter an audio link/URL:"] = "Inserisci l'indirizzo dell'audio:"; -$a->strings["Tag term:"] = "Tag:"; -$a->strings["Save to Folder:"] = "Salva nella cartella:"; -$a->strings["Where are you right now?"] = "Dove sei ora?"; -$a->strings["Expires YYYY-MM-DD HH:MM"] = "Scade il YYYY-MM-DD HH:MM"; -$a->strings["Share"] = "Condividi"; -$a->strings["Page link title"] = "Link del titolo"; -$a->strings["Post as"] = "Pubblica come "; -$a->strings["Upload photo"] = "Carica foto"; -$a->strings["upload photo"] = "carica foto"; -$a->strings["Attach file"] = "Allega file"; -$a->strings["attach file"] = "allega file"; -$a->strings["Insert web link"] = "Inserisci un indirizzo web"; -$a->strings["web link"] = "link web"; -$a->strings["Insert video link"] = "Inserisci l'indirizzo di un video"; -$a->strings["video link"] = "link video"; -$a->strings["Insert audio link"] = "Inserisci l'indirizzo di un audio"; -$a->strings["audio link"] = "link audio"; -$a->strings["Set your location"] = "La tua località"; -$a->strings["set location"] = "la tua località"; -$a->strings["Clear browser location"] = "Rimuovi la località data dal browser"; -$a->strings["clear location"] = "rimuovi la località"; -$a->strings["Set title"] = "Scegli un titolo"; -$a->strings["Categories (comma-separated list)"] = "Categorie (separate da virgola)"; -$a->strings["Permission settings"] = "Impostazioni permessi"; -$a->strings["permissions"] = "permessi"; -$a->strings["Public post"] = "Articolo pubblico"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Per esempio: mario@esempio.com, simona@esempio.com"; -$a->strings["Set expiration date"] = "Data di scadenza"; -$a->strings["OK"] = "OK"; -$a->strings["Cancel"] = "Annulla"; -$a->strings["Discover"] = "Scopri"; -$a->strings["Imported public streams"] = "Contenuti pubblici importati"; -$a->strings["Commented Order"] = "Ultimi commenti"; -$a->strings["Sort by Comment Date"] = "Per data del commento"; -$a->strings["Posted Order"] = "Ultimi articoli"; -$a->strings["Sort by Post Date"] = "Per data di creazione"; -$a->strings["Personal"] = "Personali"; -$a->strings["Posts that mention or involve you"] = "Articoli che ti riguardano o ti menzionano"; -$a->strings["New"] = "Novità"; -$a->strings["Activity Stream - by date"] = "Elenco attività - per data"; -$a->strings["Starred"] = "Preferiti"; -$a->strings["Favourite Posts"] = "Articoli preferiti"; -$a->strings["Spam"] = "Spam"; -$a->strings["Posts flagged as SPAM"] = "Articoli marcati come spam"; -$a->strings["Channel"] = "Canale"; -$a->strings["Status Messages and Posts"] = "Articoli e messaggi di stato"; -$a->strings["About"] = "Informazioni"; -$a->strings["Profile Details"] = "Dettagli del profilo"; -$a->strings["Files"] = "Elenco file"; -$a->strings["Files and Storage"] = "Archivio file"; -$a->strings["Chatrooms"] = "Chat"; -$a->strings["Events and Calendar"] = "Calendario eventi"; -$a->strings["Bookmarks"] = "Segnalibri"; -$a->strings["Saved Bookmarks"] = "Segnalibri salvati"; -$a->strings["Webpages"] = "Pagine web"; -$a->strings["Manage Webpages"] = "Gestisci le pagine web"; -$a->strings["Miscellaneous"] = "Altro"; -$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["%1\$d %2\$s ago"] = "%1\$d %2\$s fa"; -$a->strings["Sort Options"] = "Opzioni di ordinamento"; -$a->strings["Alphabetic"] = "Alfabetico"; -$a->strings["Reverse Alphabetic"] = "Alfabetico inverso"; -$a->strings["Newest to Oldest"] = "Dal più nuovo al più vecchio"; -$a->strings["Enable Safe Search"] = "Abilita SafeSearch"; -$a->strings["Disable Safe Search"] = "Disabilita SafeSearch"; -$a->strings["Safe Mode"] = "Modalità SafeSearch"; -$a->strings["Red Matrix Notification"] = "Notifica di Red Matrix"; -$a->strings["redmatrix"] = "redmatrix"; -$a->strings["Thank You,"] = "Grazie,"; -$a->strings["%s Administrator"] = "Amministratore %s"; -$a->strings["%s "] = "%s "; -$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Notifica] Nuovo messaggio ricevuto su %s"; -$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s ti ha mandato un messaggio privato su %3\$s."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s ti ha mandato %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 leggere i tuoi messaggi privati e rispondere."; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%4\$s[/zrl]"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%5\$s di %4\$s[/zrl]"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%4\$s che hai creato[/zrl]"; -$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notifica] Nuovo commento di %2\$s alla conversazione #%1\$d"; -$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s ha commentato un elemento che stavi seguendo."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per leggere o commentare la conversazione."; -$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Notifica] %s ha scritto sulla tua bacheca"; -$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s ha scritto sulla bacheca del tuo profilo su %3\$s"; -$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s ha scritto sulla [zrl=%3\$s]tua bacheca[/zrl]"; -$a->strings["[Red:Notify] %s tagged you"] = "[Red:Notifica] %s ti ha taggato"; -$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s ti ha taggato su %3\$s"; -$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]ti ha taggato[/zrl]."; -$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Notifica] %1\$s ti ha mandato un poke"; -$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s ti ha mandato un poke su %3\$s"; -$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]ti ha mandato un poke[/zrl]."; -$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Notifica] %s ha taggato il tuo articolo"; -$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha taggato il tuo articolo su %3\$s"; -$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s ha taggato [zrl=%3\$s]il tuo articolo[/zrl]"; -$a->strings["[Red:Notify] Introduction received"] = "[Red:Notifica] Hai una richiesta di amicizia"; -$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, hai ricevuto una richiesta di entrare in contatto da '%2\$s' su %3\$s"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, hai ricevuto una [zrl=%2\$s]richiesta di entrare in contatto[/zrl] da %3\$s."; -$a->strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo su %s"; -$a->strings["Please visit %s to approve or reject the connection request."] = "Visita %s per approvare o rifiutare la richiesta di entrare in contatto."; -$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Notifica] Ti è stato suggerito un amico"; -$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, ti è stato suggerito un amico da '%2\$s' su %3\$s"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, %4\$s ti [zrl=%2\$s]ha suggerito %3\$s[/zrl] come amico."; -$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["Missing room name"] = "Chat senza nome"; +$a->strings["Duplicate room name"] = "Il nome della chat è duplicato"; +$a->strings["Invalid room specifier."] = "Il nome della chat non è valido."; +$a->strings["Room not found."] = "Chat non trovata."; +$a->strings["Room is full"] = "La chat è al completo"; $a->strings["General Features"] = "Funzionalità generali"; $a->strings["Content Expiration"] = "Scadenza"; $a->strings["Remove posts/comments and/or private messages at a future time"] = "Elimina gli articoli, i commenti o i messaggi privati dopo che è trascorso del tempo"; @@ -482,7 +616,6 @@ $a->strings["Richtext Editor"] = "Editor grafico"; $a->strings["Enable richtext editor"] = "Abilita l'editor grafico"; $a->strings["Post Preview"] = "Anteprima articolo"; $a->strings["Allow previewing posts and comments before publishing them"] = "Abilita l'anteprima degli articoli e dei commenti prima di pubblicarli"; -$a->strings["Channel Sources"] = "Sorgenti del canale"; $a->strings["Automatically import channel content from other channels or feeds"] = "Importa automaticamente il contenuto del canale da altri canali o feed"; $a->strings["Even More Encryption"] = "Crittografia addizionale"; $a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Rendi possibile la crittografia dei contenuti tra mittente e destinatari con una chiave segreta"; @@ -491,7 +624,6 @@ $a->strings["Search by Date"] = "Ricerca per data"; $a->strings["Ability to select posts by date ranges"] = "Per selezionare gli articoli in un intervallo tra date"; $a->strings["Collections Filter"] = "Filtra per insiemi di canali"; $a->strings["Enable widget to display Network posts only from selected collections"] = "Mostra il riquadro per filtrare gli articoli di certi insiemi di canali"; -$a->strings["Saved Searches"] = "Ricerche salvate"; $a->strings["Save search terms for re-use"] = "Salva i termini delle ricerche per poterle ripetere"; $a->strings["Network Personal Tab"] = "Attività personale"; $a->strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita il link per mostrare solamente i contenuti con cui hai interagito"; @@ -515,22 +647,66 @@ $a->strings["Star Posts"] = "Articoli stella (preferiti)"; $a->strings["Ability to mark special posts with a star indicator"] = "Mostra la stella per scegliere gli articoli preferiti"; $a->strings["Tag Cloud"] = "Nuvola di tag"; $a->strings["Provide a personal tag cloud on your channel page"] = "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale"; -$a->strings["Channel is blocked on this site."] = "Il canale è bloccato per questo sito."; -$a->strings["Channel location missing."] = "Manca l'indirizzo del canale."; -$a->strings["Response from remote channel was incomplete."] = "La risposta dal canale non è completa."; -$a->strings["Channel was deleted and no longer exists."] = "Il canale è stato rimosso e non esiste più."; -$a->strings["Channel discovery failed."] = "La ricerca del canale non ha avuto successo."; -$a->strings["local account not found."] = "l'account locale non è stato trovato."; -$a->strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso."; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "È stato ripristinato un insieme con lo stesso nome che era stato eliminato in precedenza. I permessi già presenti potrebbero rimanere validi per i nuovi canali. Se non vuoi che ciò accada, devi creare un altro insieme con un nome diverso."; -$a->strings["Default privacy group for new contacts"] = "Insieme predefinito per i canali che inizi a seguire"; -$a->strings["All Channels"] = "Tutti i canali"; -$a->strings["edit"] = "modifica"; -$a->strings["Collections"] = "Insiemi di canali"; -$a->strings["Edit collection"] = "Modifica l'insieme di canali"; -$a->strings["Create a new collection"] = "Crea un nuovo insieme"; -$a->strings["Channels not in any collection"] = "Canali che non sono in un insieme"; -$a->strings["add"] = "aggiungi"; +$a->strings["Can view my \"public\" stream and posts"] = "Può vedere i miei contenuti \"pubblici\""; +$a->strings["Can view my \"public\" channel profile"] = "Può vedere il profilo del mio canale \"pubblico\""; +$a->strings["Can view my \"public\" photo albums"] = "Può vedere il mio album fotografico \"pubblico\""; +$a->strings["Can view my \"public\" address book"] = "Può vedere il mio elenco contatti \"pubblico\""; +$a->strings["Can view my \"public\" file storage"] = "Può vedere il mio archivio file \"pubblico\""; +$a->strings["Can view my \"public\" pages"] = "Può vedere le mie pagine web \"pubbliche\""; +$a->strings["Can send me their channel stream and posts"] = "È tra i canali che seguo"; +$a->strings["Can post on my channel page (\"wall\")"] = "Può scrivere sulla bacheca del mio canale"; +$a->strings["Can comment on my posts"] = "Può commentare i miei articoli"; +$a->strings["Can send me private mail messages"] = "Può inviarmi messaggi privati"; +$a->strings["Can post photos to my photo albums"] = "Può aggiungere foto ai miei album"; +$a->strings["Can forward to all my channel contacts via post @mentions"] = "Può inoltrare articoli a tutti i contatti del canale tramite una @menzione"; +$a->strings["Advanced - useful for creating group forum channels"] = "Impostazione avanzata - utile per creare un canale-forum di discussione"; +$a->strings["Can chat with me (when available)"] = "Può aprire una chat con me (se disponibile)"; +$a->strings["Can write to my \"public\" file storage"] = "Può scrivere sul mio archivio di file \"pubblico\""; +$a->strings["Can edit my \"public\" pages"] = "Può modificare le mie pagine web \"pubbliche\""; +$a->strings["Can source my \"public\" posts in derived channels"] = "Può aggiungere i miei post \"pubblici\" a un suo canale derivato"; +$a->strings["Somewhat advanced - very useful in open communities"] = "Piuttosto avanzato - molto utile nelle comunità aperte"; +$a->strings["Can administer my channel resources"] = "Può amministrare i contenuti del mio canale"; +$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"; +$a->strings["Invalid data packet"] = "Dati non validi"; +$a->strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale"; +$a->strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s"; +$a->strings["%d invitation available"] = array( + 0 => "%d invito disponibile", + 1 => "%d inviti disponibili", +); +$a->strings["Advanced"] = "Avanzate"; +$a->strings["Find Channels"] = "Ricerca canali"; +$a->strings["Enter name or interest"] = "Scrivi un nome o un interesse"; +$a->strings["Connect/Follow"] = "Entra in contatto"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Per esempio: Mario Rossi, Pesca"; +$a->strings["Find"] = "Cerca"; +$a->strings["Channel Suggestions"] = "Canali suggeriti"; +$a->strings["Random Profile"] = "Profilo casuale"; +$a->strings["Invite Friends"] = "Invita amici"; +$a->strings["Exammple: name=fred and country=iceland"] = "Per esempio: name=mario e country=italy"; +$a->strings["Advanced Find"] = "Ricerca avanzata"; +$a->strings["%d connection in common"] = array( + 0 => "%d contatto in comune", + 1 => "%d contatti in comune", +); +$a->strings["Miscellaneous"] = "Altro"; +$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["%1\$d %2\$s ago"] = "%1\$d %2\$s fa"; $a->strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database"; $a->strings["Empty name"] = "Nome vuoto"; $a->strings["Name too long"] = "Nome troppo lungo"; @@ -540,7 +716,6 @@ $a->strings["Reserved nickname. Please choose another."] = "Nome utente riservat $a->strings["Nickname has unsupported characters or is already being used on this site."] = "Il nome dell'account è già in uso oppure ha dei caratteri non supportati."; $a->strings["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata"; $a->strings["Default Profile"] = "Profilo predefinito"; -$a->strings["Friends"] = "Amici"; $a->strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile."; $a->strings["Requested profile is not available."] = "Il profilo richiesto non è disponibile."; $a->strings["Change profile photo"] = "Cambia la foto del profilo"; @@ -587,14 +762,6 @@ $a->strings["Film/dance/culture/entertainment:"] = "Film, danza, cultura, intrat $a->strings["Love/Romance:"] = "Amore:"; $a->strings["Work/employment:"] = "Lavoro:"; $a->strings["School/education:"] = "Scuola:"; -$a->strings["Permission denied"] = "Permesso negato"; -$a->strings["(Unknown)"] = "(Sconosciuto)"; -$a->strings["Item not found."] = "Elemento non trovato."; -$a->strings["Collection not found."] = "Insieme non trovato."; -$a->strings["Collection is empty."] = "L'insieme di canali è vuoto."; -$a->strings["Collection: %s"] = "Insieme: %s"; -$a->strings["Connection: %s"] = "Contatto: %s"; -$a->strings["Connection not found."] = "Contatto non trovato."; $a->strings["Delete this item?"] = "Eliminare questo elemento?"; $a->strings["show fewer"] = "riduci"; $a->strings["+ Show More"] = "+ Mostra tutto"; @@ -623,172 +790,103 @@ $a->strings["about a year"] = "circa un anno"; $a->strings["%d years"] = "%d anni"; $a->strings[" "] = " "; $a->strings["timeago.numbers"] = "timeago.numbers"; -$a->strings["No recipient provided."] = "Devi scegliere un destinatario."; -$a->strings["[no subject]"] = "[nessun titolo]"; -$a->strings["Unable to determine sender."] = "Impossibile determinare il mittente."; -$a->strings["Stored post could not be verified."] = "Non è stato possibile verificare l'articolo inserito."; -$a->strings["Logout"] = "Esci"; -$a->strings["End this session"] = "Chiudi questa sessione"; -$a->strings["Home"] = "Bacheca"; -$a->strings["Your posts and conversations"] = "I tuoi articoli e conversazioni"; -$a->strings["Your profile page"] = "Il tuo profilo"; -$a->strings["Edit Profiles"] = "Modifica i profili"; -$a->strings["Manage/Edit profiles"] = "Gestisci/modifica i profili"; -$a->strings["Your photos"] = "Le tue foto"; -$a->strings["Your files"] = "I tuoi file"; -$a->strings["Chat"] = "Chat"; -$a->strings["Your chatrooms"] = "Le tue chat"; -$a->strings["Your events"] = "I tuoi eventi"; -$a->strings["Your bookmarks"] = "I tuoi segnalibri"; -$a->strings["Your webpages"] = "Le tue pagine web"; -$a->strings["Login"] = "Accedi"; -$a->strings["Sign in"] = "Entra"; -$a->strings["%s - click to logout"] = "%s - clicca per uscire"; -$a->strings["Click to authenticate to your home hub"] = "Clicca per autenticarti sul tuo server principale"; -$a->strings["Home Page"] = "Bacheca"; -$a->strings["Register"] = "Iscriviti"; -$a->strings["Create an account"] = "Crea un account"; -$a->strings["Help"] = "Guida"; -$a->strings["Help and documentation"] = "Guida e documentazione"; -$a->strings["Apps"] = "Apps"; -$a->strings["Addon applications, utilities, games"] = "App, strumenti e giochi aggiuntivi"; -$a->strings["Search site content"] = "Cerca nel sito"; -$a->strings["Channel Locator"] = "Ricerca canali"; -$a->strings["Your matrix"] = "La tua rete"; -$a->strings["Mark all matrix notifications seen"] = "Segna come lette le notifiche della tua rete"; -$a->strings["Channel home"] = "Bacheca del canale"; -$a->strings["Mark all channel notifications seen"] = "Segna come lette le notifiche dei canali"; -$a->strings["Connections"] = "Contatti"; -$a->strings["Notices"] = "Notifiche"; -$a->strings["Notifications"] = "Notifiche"; -$a->strings["See all notifications"] = "Vedi tutte le notifiche"; -$a->strings["Mark all system notifications seen"] = "Segna come lette le notifiche di sistema"; -$a->strings["Mail"] = "Messaggi"; -$a->strings["Private mail"] = "Messaggi privati"; -$a->strings["See all private messages"] = "Guarda tutti i messaggi privati"; -$a->strings["Mark all private messages seen"] = "Segna come letti tutti i messaggi privati"; -$a->strings["Inbox"] = "In arrivo"; -$a->strings["Outbox"] = "Inviati"; -$a->strings["New Message"] = "Nuovo messaggio"; -$a->strings["Event Calendar"] = "Calendario"; -$a->strings["See all events"] = "Guarda tutti gli eventi"; -$a->strings["Mark all events seen"] = "Marca come letti tutti gli eventi"; -$a->strings["Channel Select"] = "Gestisci i canali"; -$a->strings["Manage Your Channels"] = "Gestisci i contatti dei tuoi canali"; -$a->strings["Settings"] = "Impostazioni"; -$a->strings["Account/Channel Settings"] = "Impostazioni account e canali"; -$a->strings["Manage/Edit Friends and Connections"] = "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["Please wait..."] = "Attendere..."; -$a->strings["view full size"] = "guarda nelle dimensioni reali"; -$a->strings["Click here to upgrade."] = "Clicca qui per aggiornare."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa operazione esce dai termini del tuo abbonamento."; -$a->strings["This action is not available under your subscription plan."] = "Questa operazione non è prevista dal tuo abbonamento."; -$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"] = "Transgender"; -$a->strings["Intersex"] = "Intersex"; -$a->strings["Transsexual"] = "Transessuale"; -$a->strings["Hermaphrodite"] = "Ermafrodito"; -$a->strings["Neuter"] = "Neutro"; -$a->strings["Non-specific"] = "Non specificato"; -$a->strings["Other"] = "Altro"; -$a->strings["Undecided"] = "Indeciso"; -$a->strings["Males"] = "Maschi"; -$a->strings["Females"] = "Femmine"; -$a->strings["Gay"] = "Gay"; -$a->strings["Lesbian"] = "Lesbica"; -$a->strings["No Preference"] = "Senza preferenza"; -$a->strings["Bisexual"] = "Bisessuale"; -$a->strings["Autosexual"] = "Autosessuale"; -$a->strings["Abstinent"] = "Astinente"; -$a->strings["Virgin"] = "Vergine"; -$a->strings["Deviant"] = "Deviato"; -$a->strings["Fetish"] = "Feticista"; -$a->strings["Oodles"] = "Un sacco"; -$a->strings["Nonsexual"] = "Asessuato"; -$a->strings["Single"] = "Single"; -$a->strings["Lonely"] = "Da solo"; -$a->strings["Available"] = "Disponibile"; -$a->strings["Unavailable"] = "Non disponibile"; -$a->strings["Has crush"] = "Ha una cotta"; -$a->strings["Infatuated"] = "Infatuato/a"; -$a->strings["Dating"] = "Disponibile a un incontro"; -$a->strings["Unfaithful"] = "Infedele"; -$a->strings["Sex Addict"] = "Sesso-dipendente"; -$a->strings["Friends/Benefits"] = "Amici piccanti"; -$a->strings["Casual"] = "Casual"; -$a->strings["Engaged"] = "Impegnato"; -$a->strings["Married"] = "Sposato/a"; -$a->strings["Imaginarily married"] = "Sogna il matrimonio"; -$a->strings["Partners"] = "Partner"; -$a->strings["Cohabiting"] = "Convivente"; -$a->strings["Common law"] = "Matrimonio regolare"; -$a->strings["Happy"] = "Felice"; -$a->strings["Not looking"] = "Non in cerca"; -$a->strings["Swinger"] = "Scambista"; -$a->strings["Betrayed"] = "Tradito/a"; -$a->strings["Separated"] = "Separato/a"; -$a->strings["Unstable"] = "Instabile"; -$a->strings["Divorced"] = "Divorziato/a"; -$a->strings["Imaginarily divorced"] = "Sogna il divorzio"; -$a->strings["Widowed"] = "Vedovo/a"; -$a->strings["Uncertain"] = "Incerto/a"; -$a->strings["It's complicated"] = "Relazione complicata"; -$a->strings["Don't care"] = "Chi se ne frega"; -$a->strings["Ask me"] = "Chiedimelo"; -$a->strings["Edit File properties"] = "Modifica le proprietà dei file"; -$a->strings["Invalid data packet"] = "Dati non validi"; -$a->strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale"; -$a->strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s"; -$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."] = "L'identificativo di sicurezza del modulo che hai riempito non è corretto. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto."; -$a->strings["App Category"] = "Categorie App"; -$a->strings["System"] = "Sistema"; -$a->strings["Featured"] = "In evidenza"; -$a->strings["Ignore/Hide"] = "Ignora/nascondi"; -$a->strings["Suggestions"] = "Suggerimenti"; -$a->strings["See more..."] = "Altro..."; -$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Hai attivato %1$.0f delle %2$.0f connessioni permesse."; -$a->strings["Add New Connection"] = "Aggiungi un contatto"; -$a->strings["Enter the channel address"] = "Scrivi l'indirizzo del canale"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Per esempio: mario@pippo.it oppure http://pluto.com/barbara"; -$a->strings["Notes"] = "Note"; -$a->strings["Remove term"] = "Rimuovi termine"; -$a->strings["Archives"] = "Archivi"; -$a->strings["Refresh"] = "Aggiorna"; -$a->strings["Me"] = "Io"; -$a->strings["Best Friends"] = "Buoni amici"; -$a->strings["Co-workers"] = "Colleghi"; -$a->strings["Former Friends"] = "Ex amici"; -$a->strings["Acquaintances"] = "Conoscenti"; -$a->strings["Everybody"] = "Tutti"; -$a->strings["Account settings"] = "Impostazioni dell'account"; -$a->strings["Channel settings"] = "Impostazioni del canale"; -$a->strings["Additional features"] = "Funzionalità aggiuntive"; -$a->strings["Feature settings"] = "Impostazioni aggiuntive"; -$a->strings["Display settings"] = "Impostazioni grafiche"; -$a->strings["Connected apps"] = "App connesse"; -$a->strings["Export channel"] = "Esporta il canale"; -$a->strings["Automatic Permissions (Advanced)"] = "Permessi predefiniti (avanzato)"; -$a->strings["Premium Channel Settings"] = "Canale premium - impostazioni"; -$a->strings["Check Mail"] = "Controlla i messaggi"; -$a->strings["Chat Rooms"] = "Chat attive"; -$a->strings["Bookmarked Chatrooms"] = "Chat nei segnalibri"; -$a->strings["Suggested Chatrooms"] = "Chat suggerite"; -$a->strings["Mood"] = "Umore"; -$a->strings["Set your current mood and tell your friends"] = "Scegli il tuo umore attuale per mostrarlo agli amici"; +$a->strings["Channel not found."] = "Canale non trovato."; +$a->strings["Welcome to %s"] = "%s ti dà il benvenuto"; +$a->strings["Channel added."] = "Canale aggiunto."; +$a->strings["Public access denied."] = "Accesso pubblico negato."; +$a->strings["Age: "] = "Età:"; +$a->strings["Gender: "] = "Sesso:"; +$a->strings["Status: "] = "Stato:"; +$a->strings["Sexual Preference: "] = "Preferenza sessuale:"; +$a->strings["Homepage: "] = "Homepage:"; +$a->strings["Hometown: "] = "Città dove vivo:"; +$a->strings["About: "] = "Informazioni:"; +$a->strings["Keywords: "] = "Parole chiave:"; +$a->strings["Not found."] = "Non trovato."; +$a->strings["network"] = "rete"; +$a->strings["Authorize application connection"] = "Autorizza la app"; +$a->strings["Return to your app and insert this Securty Code:"] = "Torna alla app e inserisci questo codice di sicurezza:"; +$a->strings["Please login to continue."] = "Accedi al sito 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 app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?"; +$a->strings["Yes"] = "Si"; +$a->strings["No"] = "No"; +$a->strings["Item not found"] = "Elemento non trovato"; +$a->strings["Edit Layout"] = "Modifica il layout"; +$a->strings["Delete layout?"] = "Vuoi eliminare questo layout?"; +$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["Delete Layout"] = "Elimina il layout"; +$a->strings["Hub not found."] = "Server non trovato."; +$a->strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s"; +$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["Add a Channel"] = "Aggiungi un canale"; +$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "I contenuti che pubblichi finiscono in un \"canale\". Un canale può essere usato per mantenere un tuo profilo personale, per avere un blog, per creare forum di discussione o gruppi di interesse, per pagine di celebrità e molto altro. Puoi creare quanti canali vuoi a meno di limiti dati dal gestore del sito."; +$a->strings["Channel Name"] = "Nome del canale"; +$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\""; +$a->strings["Choose a short nickname"] = "Scegli un nome breve"; +$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale (simile a una email). Così potrai condividerlo e gli altri potranno trovarti."; +$a->strings["Or import an existing channel from another location"] = "Oppure importa un tuo canale esistente da un altro server/hub"; +$a->strings["Create"] = "Crea"; +$a->strings["Public Sites"] = "Siti pubblici"; +$a->strings["The listed sites allow public registration into the Red Matrix. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "Gli indirizzi elencati permettono la registrazione su Red Matrix. Tutti i siti di questa rete sono interconnessi, quindi essere registrati su uno è come essere registrati ovunque. Alcuni potrebbero richiedere un'iscrizione a pagamento o prevedere tipi diversi di abbonamento. Potrai trovare maggiori informazioni al riguardo visitando ciascun sito."; +$a->strings["Site URL"] = "URL del sito"; +$a->strings["Access Type"] = "Tipo di accesso"; +$a->strings["Registration Policy"] = "Politica di registrazione"; +$a->strings["Location"] = "Luogo attuale"; +$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; +$a->strings["Collection created."] = "L'insieme di canali è stato creato."; +$a->strings["Could not create collection."] = "Impossibile creare l'insieme."; +$a->strings["Collection updated."] = "Insieme aggiornato."; +$a->strings["Create a collection of channels."] = "Crea un insieme di canali."; +$a->strings["Collection Name: "] = "Nome dell'insieme:"; +$a->strings["Members are visible to other channels"] = "I membri saranno visibili agli altri canali"; +$a->strings["Collection removed."] = "Insieme rimosso."; +$a->strings["Unable to remove collection."] = "Impossibile rimuovere l'insieme."; +$a->strings["Collection Editor"] = "Modifica l'insieme"; +$a->strings["Members"] = "Membri"; +$a->strings["All Connected Channels"] = "Tutti i canali connessi"; +$a->strings["Click on a channel to add or remove."] = "Clicca su un canale per aggiungerlo o rimuoverlo."; +$a->strings["Thing updated"] = "L'oggetto è stato aggiornato"; +$a->strings["Object store: failed"] = "Impossibile memorizzare l'oggetto."; +$a->strings["Thing added"] = "L'oggetto è stato aggiunto"; +$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +$a->strings["Show Thing"] = "Mostra l'oggetto"; +$a->strings["item not found."] = "non trovato."; +$a->strings["Edit Thing"] = "Modifica l'oggetto"; +$a->strings["Select a profile"] = "Scegli un profilo"; +$a->strings["Select a category of stuff. e.g. I ______ something"] = "Scegli come riferirsi all'oggetto. Esempio: Io _____ l'oggetto"; +$a->strings["Post an activity"] = "Pubblica un'attività"; +$a->strings["Only sends to viewers of the applicable profile"] = "Invia solo a chi segue il relativo canale"; +$a->strings["Name of thing e.g. something"] = "Nome dell'oggetto"; +$a->strings["URL of thing (optional)"] = "Indirizzo web dell'oggetto"; +$a->strings["URL for photo of thing (optional)"] = "Indirizzo di un'immagine dell'oggetto (facoltativo)"; +$a->strings["Add Thing to your Profile"] = "Aggiungi l'oggetto al tuo profilo"; +$a->strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido."; +$a->strings["Discard"] = "Rifiuta"; +$a->strings["Ignore"] = "Ignora"; +$a->strings["No more system notifications."] = "Non ci sono nuove notifiche di sistema."; +$a->strings["System Notifications"] = "Notifiche di sistema"; +$a->strings["Invalid item."] = "Elemento non valido."; +$a->strings["Page not found."] = "Pagina non trovata."; +$a->strings["Messages"] = "Messaggi"; +$a->strings["Conversation removed."] = "Conversazione rimossa."; +$a->strings["No messages."] = "Nessun messaggio."; +$a->strings["Delete message"] = "Elimina il messaggio"; +$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; +$a->strings["Edit post"] = "Modifica articolo"; +$a->strings["Finding:"] = "Ricerca:"; +$a->strings["next page"] = "pagina succ."; +$a->strings["previous page"] = "pagina prec."; +$a->strings["No entries (some entries may be hidden)."] = "Nessun risultato (qualcosa potrebbe essere nascosto)."; $a->strings["Menu not found."] = "Menù non trovato."; $a->strings["Menu element updated."] = "L'elemento del menù è stato aggiornato."; $a->strings["Unable to update menu element."] = "Non è possibile aggiornare l'elemento del menù."; $a->strings["Menu element added."] = "Elemento aggiunto al menù."; $a->strings["Unable to add menu element."] = "Impossibile aggiungere l'elemento al menù."; -$a->strings["Not found."] = "Non trovato."; $a->strings["Manage Menu Elements"] = "Gestione elementi del menù"; $a->strings["Edit menu"] = "Modifica il menù"; $a->strings["Edit element"] = "Modifica l'elemento"; @@ -807,183 +905,77 @@ $a->strings["Use Red magic-auth if available"] = "Usa l'autenticazione magica di $a->strings["Open link in new window"] = "Apri il link in una nuova finestra"; $a->strings["Order in list"] = "Ordine dell'elenco"; $a->strings["Higher numbers will sink to bottom of listing"] = "I numeri più alti andranno in fondo all'elenco"; -$a->strings["Create"] = "Crea"; $a->strings["Menu item not found."] = "L'elemento del menù non è stato trovato."; $a->strings["Menu item deleted."] = "L'elemento del menù è stato eliminato."; $a->strings["Menu item could not be deleted."] = "L'elemento del menù non può essere eliminato."; $a->strings["Edit Menu Element"] = "Modifica l'elemento del menù"; $a->strings["Modify"] = "Modifica"; -$a->strings["sent you a private message"] = "ti ha inviato un messaggio privato"; -$a->strings["added your channel"] = "ha aggiunto il tuo canale"; -$a->strings["posted an event"] = "ha creato un evento"; -$a->strings["network"] = "rete"; -$a->strings["Theme settings updated."] = "Le impostazioni del tema sono state aggiornate."; -$a->strings["Site"] = "Sito"; -$a->strings["Accounts"] = "Accounts"; -$a->strings["Channels"] = "Canali"; -$a->strings["Plugins"] = "Plugin"; -$a->strings["Themes"] = "Temi"; -$a->strings["Server"] = "Server"; -$a->strings["DB updates"] = "Aggiornamenti al DB"; -$a->strings["Logs"] = "Log"; -$a->strings["Plugin Features"] = "Funzionalità dei componenti aggiuntivi"; -$a->strings["User registrations waiting for confirmation"] = "Registrazioni in attesa"; -$a->strings["Message queues"] = "Messaggi in attesa di recapito"; -$a->strings["Administration"] = "Amministrazione"; -$a->strings["Summary"] = "Riepilogo"; -$a->strings["Registered users"] = "Utenti registrati"; -$a->strings["Pending registrations"] = "Registrazioni da approvare"; -$a->strings["Version"] = "Versione"; -$a->strings["Active plugins"] = "Plugin attivi"; -$a->strings["Site settings updated."] = "Impostazioni del sito aggiornate."; -$a->strings["No special theme for mobile devices"] = "Nessun tema per dispositivi mobili"; -$a->strings["No special theme for accessibility"] = "Nessun tema speciale per l'accessibilità"; -$a->strings["No"] = "No"; -$a->strings["Yes - with approval"] = "Sì - con approvazione"; -$a->strings["Yes"] = "Si"; -$a->strings["My site is not a public server"] = "Non è un server pubblico"; -$a->strings["My site has paid access only"] = "È un servizio a pagamento"; -$a->strings["My site has free access only"] = "È un servizio gratuito"; -$a->strings["My site offers free accounts with optional paid upgrades"] = "È un servizio gratuito con opzioni aggiuntive a pagamento"; -$a->strings["Registration"] = "Registrazione"; -$a->strings["File upload"] = "Caricamento file"; -$a->strings["Policies"] = "Politiche"; -$a->strings["Site name"] = "Nome del sito"; -$a->strings["Banner/Logo"] = "Banner o logo"; -$a->strings["Administrator Information"] = "Informazioni sull'amministrazione"; -$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode"; -$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 - change theme settings"] = "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema"; -$a->strings["Mobile system theme"] = "Tema di sistema per dispositivi mobili"; -$a->strings["Theme for mobile devices"] = "Tema per i dispositivi mobili"; -$a->strings["Accessibility system theme"] = "Tema di sistema ad alta accessibilità"; -$a->strings["Accessibility theme"] = "Tema ad alta accessibilità"; -$a->strings["Channel to use for this website's static pages"] = "Canale da usare per le pagine statiche di questo sito"; -$a->strings["Site Channel"] = "Canale del sito"; -$a->strings["Maximum image size"] = "Dimensione massima 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["Does this site allow new member registration?"] = "Questo sito permette a nuovi utenti di registrarsi?"; -$a->strings["Which best describes the types of account offered by this hub?"] = "Come descriveresti il tipo di servizio proposto da questo server?"; -$a->strings["Register text"] = "Testo diregistrazione"; -$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 abandonded accounts. Enter 0 for no time limit."] = "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo."; -$a->strings["Allowed friend domains"] = "Domini fidati e 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. Lascia vuoto per accettare connessioni da 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. Sono accettati caratteri jolly. Lascia 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 impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso."; -$a->strings["Force publish"] = "Forza la publicazione del profilo"; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per mostrare nell'elenco dei canali del sito tutti i profili registrati."; -$a->strings["Disable discovery tab"] = "Disabilita la funzione 'scopri'"; -$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Nell'area della rete personale non comparirà più la scheda con i contenuti acquisiti da altri siti."; -$a->strings["No login on Homepage"] = "Non mostrare il login sulla homepage"; -$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Per nascondere la possibilità di fare login ai visitatori (per esempio, quando il contenuto della homepage del sito è alimentato dal canale)."; -$a->strings["Proxy user"] = "Utente proxy"; -$a->strings["Proxy URL"] = "URL proxy"; -$a->strings["Network timeout"] = "Timeout rete"; -$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)."; -$a->strings["Delivery interval"] = "Recapito ritardato"; -$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."] = "RItarda il processo di recapito di questo numero di secondi per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati."; -$a->strings["Poll interval"] = "Intervallo di polling"; -$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Ritarda i processi di polling in background di questo numero di secondi per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'."; -$a->strings["Maximum Load Average"] = "Carico massimo medio"; -$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50."; -$a->strings["No server found"] = "Server non trovato"; -$a->strings["ID"] = "ID"; -$a->strings["for channel"] = "per canale"; -$a->strings["on server"] = "sul server"; -$a->strings["Status"] = "Stato"; -$a->strings["Update has been marked successful"] = "L'aggiornamento è stato marcato come eseguito."; -$a->strings["Executing %s failed. Check system logs."] = "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema."; -$a->strings["Update %s was successfully applied."] = "L'aggiornamento %s è terminato correttamente."; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente."; -$a->strings["Update function %s could not be found."] = "Impossibile trovare la funzione di aggiornamento %s"; -$a->strings["No failed updates."] = "Nessun aggiornamento fallito."; -$a->strings["Failed Updates"] = "Aggiornamenti falliti."; -$a->strings["Mark success (if update was manually applied)"] = "Marca come eseguito (se applicato manualmente)."; -$a->strings["Attempt to execute this update step automatically"] = "Tenta di eseguire in automatico questo passaggio dell'aggiornamento."; -$a->strings["%s user blocked/unblocked"] = array( - 0 => "%s utente bloccato/sbloccato", - 1 => "%s utenti bloccati/sbloccati", -); -$a->strings["%s user deleted"] = array( - 0 => "%s utente cancellato", - 1 => "%s utenti cancellati", -); -$a->strings["Account not found"] = "Account non trovato"; -$a->strings["User '%s' deleted"] = "Utente '%s' eliminato"; -$a->strings["User '%s' unblocked"] = "Utente '%s' sbloccato"; -$a->strings["User '%s' blocked"] = "Utente '%s' bloccato"; -$a->strings["Users"] = "Utenti"; -$a->strings["select all"] = "seleziona tutti"; -$a->strings["User registrations waiting for confirm"] = "Richieste di registrazione in attesa di conferma"; -$a->strings["Request date"] = "Data richiesta"; -$a->strings["No registrations."] = "Nessuna registrazione."; -$a->strings["Approve"] = "Approva"; -$a->strings["Deny"] = "Nega"; -$a->strings["Block"] = "Blocca"; -$a->strings["Unblock"] = "Sblocca"; -$a->strings["Register date"] = "Data registrazione"; -$a->strings["Last login"] = "Ultimo accesso"; -$a->strings["Expires"] = "Con scadenza"; -$a->strings["Service Class"] = "Service Class"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Gli utenti selezionati saranno eliminati!\\n\\nTutto quello che gli utenti hanno pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?"; -$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?"] = "L'utente {0} sarà eliminato!\\n\\nTutto quello che ha pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?"; -$a->strings["%s channel censored/uncensored"] = array( - 0 => "Censura modificata per %s canale", - 1 => "Censura modificata per %s canali", -); -$a->strings["%s channel deleted"] = array( - 0 => "%s canale è stato rimosso", - 1 => "%s canali sono stati rimossi", -); -$a->strings["Channel not found"] = "Canale non trovato"; -$a->strings["Channel '%s' deleted"] = "Il canale '%s' è stato rimosso"; -$a->strings["Channel '%s' uncensored"] = "Rimossa la censura dal canale '%s'"; -$a->strings["Channel '%s' censored"] = "Applicata una censura al canale '%s'"; -$a->strings["Censor"] = "Applica una censura"; -$a->strings["Uncensor"] = "Rimuovi la censura"; -$a->strings["UID"] = "UID"; -$a->strings["Name"] = "Nome"; -$a->strings["Address"] = "Indirizzo"; -$a->strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"; -$a->strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"; -$a->strings["Plugin %s disabled."] = "Plugin %s non attivo."; -$a->strings["Plugin %s enabled."] = "Plugin %s attivo."; -$a->strings["Disable"] = "Disattiva"; -$a->strings["Enable"] = "Attiva"; -$a->strings["Toggle"] = "Attiva/disattiva"; -$a->strings["Author: "] = "Autore:"; -$a->strings["Maintainer: "] = "Gestore:"; -$a->strings["No themes found."] = "Nessun tema trovato."; -$a->strings["Screenshot"] = "Istantanea dello schermo"; -$a->strings["[Experimental]"] = "[Sperimentale]"; -$a->strings["[Unsupported]"] = "[Non supportato]"; -$a->strings["Log settings updated."] = "Impostazioni di 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 Red top-level directory."] = "Deve essere scrivibile dal web server. È relativa alla cartella dove è installato Red."; -$a->strings["Log level"] = "Livello di log"; -$a->strings["Poke/Prod"] = "Poke/Prod"; -$a->strings["poke, prod or do other things to somebody"] = "Manda un poke, un prod o altro"; -$a->strings["Recipient"] = "Destinatario"; -$a->strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi inviare al destinatario"; -$a->strings["Make this post private"] = "Rendi privato questo articolo"; -$a->strings["Authorize application connection"] = "Autorizza la app"; -$a->strings["Return to your app and insert this Securty Code:"] = "Torna alla app e inserisci questo codice di sicurezza:"; -$a->strings["Please login to continue."] = "Accedi al sito 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 app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?"; -$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "L'autenticazione remota non è disponibile. Hai accesso solamente a questo sito. Puoi provare ad uscire per tentare di nuovo."; -$a->strings["Welcome %s. Remote authentication successful."] = "Ciao %s. La tua autenticazione da remoto è avvenuta con successo."; -$a->strings["Item not available."] = "Elemento non disponibile."; -$a->strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s"; -$a->strings["Invalid item."] = "Elemento non valido."; -$a->strings["Channel not found."] = "Canale non trovato."; -$a->strings["Page not found."] = "Pagina non trovata."; +$a->strings["Continue"] = "Continua"; +$a->strings["Premium Channel Setup"] = "Canale premium - installazione"; +$a->strings["Enable premium channel connection restrictions"] = "Abilita le restrizioni del canale premium"; +$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida o il sistema di pagamento ecc."; +$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:"; +$a->strings["Potential connections will then see the following text before proceeding:"] = "Il testo seguente comparirà a chi vorrà connettersi:"; +$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina."; +$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Il gestore del canale non ha fornito istruzioni specifiche)"; +$a->strings["Restricted or Premium Channel"] = "Canale premium - con restrizioni"; +$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; +$a->strings["Empty post discarded."] = "L'articolo vuoto è stato ignorato."; +$a->strings["Executable content type not permitted to this channel."] = "I contenuti eseguibili non sono permessi su questo canale."; +$a->strings["System error. Post not saved."] = "Errore di sistema. Articolo non salvato."; +$a->strings["You have reached your limit of %1$.0f top level posts."] = "Hai raggiunto il limite massimo di %1$.0f articoli sulla pagina principale."; +$a->strings["You have reached your limit of %1$.0f webpages."] = "Hai raggiunto il limite massimo di %1$.0f pagine web."; +$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["No such group"] = "Impossibile trovare l'insieme"; +$a->strings["Search Results For:"] = "Cerca risultati con:"; +$a->strings["Collection is empty"] = "L'insieme di canali è vuoto"; +$a->strings["Collection: "] = "Insieme:"; +$a->strings["Connection: "] = "Connessione:"; +$a->strings["Invalid connection."] = "Connessione non valida."; +$a->strings["Version %s"] = "Versione %s"; +$a->strings["Installed plugins/addons/apps:"] = "App e componenti aggiuntivi instalati:"; +$a->strings["No installed plugins/addons/apps"] = "Nessuna app o componente aggiuntivo installato"; +$a->strings["Red"] = "Red"; +$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralised privacy enhanced websites."] = "Questo è un hub di Red Matrix - una rete cooperativa e decentralizzata di siti con elevato livello di privacy. "; +$a->strings["Running at web location"] = "In esecuzione sull'indirizzo web"; +$a->strings["Please visit GetZot.com to learn more about the Red Matrix."] = "Visita GetZot.com per scoprire il progetto Red Matrix."; +$a->strings["Bug reports and issues: please visit"] = "Per segnalare bug e problemi: visita"; +$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com"; +$a->strings["Site Administrators"] = "Amministratori del sito"; +$a->strings["Bookmark added"] = "Segnalibro aggiunto"; +$a->strings["My Bookmarks"] = "I miei segnalibri"; +$a->strings["My Connections Bookmarks"] = "I segnalibri dei miei contatti"; +$a->strings["You must be logged in to see this page."] = "Devi aver effettuato l'accesso per vedere questa pagina."; +$a->strings["Insufficient permissions. Request redirected to profile page."] = "Permessi insufficienti. Sarà visualizzata la pagina del profilo."; +$a->strings["Layout updated."] = "Layout aggiornato."; +$a->strings["Edit System Page Description"] = "Modifica i layout di sistema"; +$a->strings["Layout not found."] = "Layout non trovato."; +$a->strings["Module Name:"] = "Nome del modulo:"; +$a->strings["Layout Help"] = "Guida al layout"; +$a->strings["Unable to find your hub."] = "Impossibile raggiungere il tuo hub."; +$a->strings["Post successful."] = "Inviato!"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; +$a->strings["toggle full screen mode"] = "attiva/disattiva schermo intero"; +$a->strings["invalid target signature"] = "la firma riscontrata non è valida"; +$a->strings["Failed to create source. No channel selected."] = "Impossibile creare la sorgente. Nessun canale selezionato."; +$a->strings["Source created."] = "Sorgente creata."; +$a->strings["Source updated."] = "Sorgente aggiornata."; +$a->strings["*"] = "*"; +$a->strings["Manage remote sources of content for your channel."] = "Gestisci le sorgenti dei contenuti del tuo canale."; +$a->strings["New Source"] = "Nuova sorgente"; +$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importa nel tuo canale tutti o una parte dei contenuti dal canale seguente."; +$a->strings["Only import content with these words (one per line)"] = "Importa solo i contenuti che hanno queste parole (una per riga)"; +$a->strings["Leave blank to import all public content"] = "Lascia vuoto per importare tutti i contenuti pubblici"; +$a->strings["Source not found."] = "Sorgente non trovata."; +$a->strings["Edit Source"] = "Modifica la sorgente"; +$a->strings["Delete Source"] = "Elimina la sorgente"; +$a->strings["Source removed"] = "Sorgente eliminata"; +$a->strings["Unable to remove source."] = "Impossibile rimuovere la sorgente."; +$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; +$a->strings["Profile Visibility Editor"] = "Modifica la visibilità del profilo"; +$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 Connections"] = "Tutti i contatti"; $a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; $a->strings["Image resize failed."] = "Il ridimensionamento dell'immagine è 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."; @@ -1004,172 +996,31 @@ $a->strings["Image uploaded successfully."] = "Immagine caricata con successo."; $a->strings["Image upload failed."] = "Il caricamento dell'immagine è fallito."; $a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito."; $a->strings["Block Name"] = "Nome del riquadro"; -$a->strings["Profile not found."] = "Profilo non trovato."; -$a->strings["Profile deleted."] = "Profilo eliminato."; -$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["Profile Name is required."] = "Il nome del profilo è obbligatorio ."; -$a->strings["Marital Status"] = "Stato sentimentale"; -$a->strings["Romantic Partner"] = "Partner affettivo"; -$a->strings["Work/Employment"] = "Lavoro/impiego"; -$a->strings["Religion"] = "Religione"; -$a->strings["Political Views"] = "Orientamento politico"; -$a->strings["Gender"] = "Sesso"; -$a->strings["Sexual Preference"] = "Preferenze sessuali"; -$a->strings["Homepage"] = "Home page"; -$a->strings["Interests"] = "Interessi"; -$a->strings["Location"] = "Luogo attuale"; -$a->strings["Profile updated."] = "Profilo aggiornato."; -$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"] = "Guarda questo profilo"; -$a->strings["Change Profile Photo"] = "Cambia la foto del 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:"] = "Titolo/descrizione:"; -$a->strings["Your Gender:"] = "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[" Marital Status:"] = " Stato sentimentale:"; -$a->strings["Who: (if applicable)"] = "Con chi: (se possibile)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Per esempio: cathy123, Cathy Williams, cathy@example.com"; -$a->strings["Since [date]:"] = "dal [data]:"; -$a->strings["Homepage URL:"] = "Indirizzo home page:"; -$a->strings["Religious Views:"] = "Orientamento religioso:"; -$a->strings["Keywords:"] = "Parole chiave, tag:"; -$a->strings["Example: fishing photography software"] = "Per esempio: pesca fotografia programmazione"; -$a->strings["Used in directory listings"] = "Visibile nell'elenco pubblico di canali"; -$a->strings["Tell us about yourself..."] = "Raccontaci di te..."; -$a->strings["Hobbies/Interests"] = "Hobby/interessi"; -$a->strings["Contact information and Social Networks"] = "Contatti personali e i tuoi social network"; -$a->strings["My other channels"] = "I miei altri canali"; -$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 public profile.
It may be visible to anybody using the internet."] = "Questo è il tuo profilo publico.
Potrebbe essere visto da chiunque attraverso internet."; -$a->strings["Age: "] = "Età:"; -$a->strings["Edit/Manage Profiles"] = "Modifica/gestisci i profili"; -$a->strings["Add profile things"] = "Aggiungi oggetti al profilo"; -$a->strings["Include desirable objects in your profile"] = "Aggiungi oggetti interessanti al tuo profilo"; -$a->strings["Bookmark added"] = "Segnalibro aggiunto"; -$a->strings["My Bookmarks"] = "I miei segnalibri"; -$a->strings["My Connections Bookmarks"] = "I segnalibri dei miei contatti"; -$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; -$a->strings["Profile Visibility Editor"] = "Modifica la visibilità del profilo"; -$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 Connections"] = "Tutti i contatti"; -$a->strings["Public Sites"] = "Siti pubblici"; -$a->strings["The listed sites allow public registration into the Red Matrix. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "Gli indirizzi elencati permettono la registrazione su Red Matrix. Tutti i siti di questa rete sono interconnessi, quindi essere registrati su uno è come essere registrati ovunque. Alcuni potrebbero richiedere un'iscrizione a pagamento o prevedere tipi diversi di abbonamento. Potrai trovare maggiori informazioni al riguardo visitando ciascun sito."; -$a->strings["Site URL"] = "URL del sito"; -$a->strings["Access Type"] = "Tipo di accesso"; -$a->strings["Registration Policy"] = "Politica di registrazione"; -$a->strings["You must be logged in to see this page."] = "Devi aver effettuato l'accesso per vedere questa pagina."; -$a->strings["Insufficient permissions. Request redirected to profile page."] = "Permessi insufficienti. Sarà visualizzata la pagina del profilo."; -$a->strings["toggle full screen mode"] = "attiva/disattiva schermo intero"; -$a->strings["Select a bookmark folder"] = "Scegli una cartella di segnalibri"; -$a->strings["Save Bookmark"] = "Salva segnalibro"; -$a->strings["URL of bookmark"] = "URL del segnalibro"; -$a->strings["Description"] = "Descrizione"; -$a->strings["Or enter new bookmark folder name"] = "O inserisci il nome di una nuova cartella di segnalibri"; -$a->strings["Room not found"] = "Chat non trovata"; -$a->strings["Leave Room"] = "Lascia la chat"; -$a->strings["Delete This Room"] = "Elimina questa chat"; -$a->strings["I am away right now"] = "Non sono presente al momento"; -$a->strings["I am online"] = "Sono online"; -$a->strings["Bookmark this room"] = "Aggiungi chat ai segnalibri"; -$a->strings["New Chatroom"] = "Nuova chat"; -$a->strings["Chatroom Name"] = "Nome della chat"; -$a->strings["%1\$s's Chatrooms"] = "Le chat di %1\$s"; -$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!"; -$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio."; -$a->strings["Passwords do not match."] = "Le password non corrispondono."; -$a->strings["Registration successful. Please check your email for validation instructions."] = "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata."; -$a->strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte dell'amministratore del sito."; -$a->strings["Your registration can not be processed."] = "La tua registrazione non puo' essere acquisita."; -$a->strings["Registration on this site/hub is by approval only."] = "La registrazione su questo sito è soggetta ad approvazione."; -$a->strings["Register at another affiliated site/hub"] = "Registrati su un altro server affiliato"; -$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["Terms of Service"] = "Condizioni d'Uso"; -$a->strings["I accept the %s for this website"] = "Accetto le %s di questo sito"; -$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ho più di 13 anni e accetto le %s di questo sito"; -$a->strings["Membership on this site is by invitation only."] = "Per registrarsi su questo sito è necessario un invito."; -$a->strings["Please enter your invitation code"] = "Inserisci il codice dell'invito"; -$a->strings["Your email address"] = "Il tuo indirizzo email"; -$a->strings["Choose a password"] = "Scegli una password"; -$a->strings["Please re-enter your password"] = "Ripeti la password per verifica"; -$a->strings["Away"] = "Assente"; -$a->strings["Online"] = "Online"; -$a->strings["Please login."] = "Accedi."; -$a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"] = "Accesso a Red Matrix. Inserisci l'email con cui sei registrato e la password."; -$a->strings["Remove This Channel"] = "Elimina questo canale"; -$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il canale che stai usando. Una volta fatto non sarà più possibile ripristinarlo."; -$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; -$a->strings["Remove this channel and all its clones from the network"] = "Rimuovi questo canale e tutti i suoi cloni dalla rete"; -$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni"; -$a->strings["Remove Channel"] = "Elimina questo canale"; -$a->strings["No channel."] = "Nessun canale."; -$a->strings["Common connections"] = "Contatti in comune"; -$a->strings["No connections in common."] = "Nessun contatto in comune."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Non è possibile effettuare login con l'OpenID che hai fornito. Per favore controlla che sia scritto correttamente."; -$a->strings["The error message was:"] = "Messaggio di errore ricevuto:"; -$a->strings["Authentication failed."] = "Autenticazione fallita."; -$a->strings["Remote Authentication"] = "Autenticazione a distanza"; -$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)"; -$a->strings["Authenticate"] = "Autenticazione"; -$a->strings["Continue"] = "Continua"; -$a->strings["Premium Channel Setup"] = "Canale premium - installazione"; -$a->strings["Enable premium channel connection restrictions"] = "Abilita le restrizioni del canale premium"; -$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida o il sistema di pagamento ecc."; -$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:"; -$a->strings["Potential connections will then see the following text before proceeding:"] = "Il testo seguente comparirà a chi vorrà connettersi:"; -$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina."; -$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Il gestore del canale non ha fornito istruzioni specifiche)"; -$a->strings["Restricted or Premium Channel"] = "Canale premium - con restrizioni"; -$a->strings["No such group"] = "Impossibile trovare l'insieme"; -$a->strings["Search Results For:"] = "Cerca risultati con:"; -$a->strings["Collection is empty"] = "L'insieme di canali è vuoto"; -$a->strings["Collection: "] = "Insieme:"; -$a->strings["Connection: "] = "Connessione:"; -$a->strings["Invalid connection."] = "Connessione non valida."; +$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "L'autenticazione remota non è disponibile. Hai accesso solamente a questo sito. Puoi provare ad uscire per tentare di nuovo."; +$a->strings["Welcome %s. Remote authentication successful."] = "Ciao %s. La tua autenticazione da remoto è avvenuta con successo."; +$a->strings["Permission Denied."] = "Permesso negato."; +$a->strings["File not found."] = "File non trovato."; +$a->strings["Edit file permissions"] = "Modifica i permessi del file"; +$a->strings["Set/edit permissions"] = "Modifica i permessi"; +$a->strings["Include all files and sub folders"] = "Includi tutti i file e le sottocartelle"; +$a->strings["Return to file list"] = "Torna all'elenco dei file"; +$a->strings["Copy/paste this code to attach file to a post"] = "Copia/incolla questo codice per far comparire il file in un articolo"; +$a->strings["Copy/paste this URL to link file from a web page"] = "Copia/incolla questo indirizzo in una pagina web per avere un link al file"; +$a->strings["Download"] = "Scaricamento dati"; +$a->strings["Used: "] = "Usato:"; +$a->strings["[directory]"] = "[cartella]"; +$a->strings["Limit: "] = "Limite:"; +$a->strings["Remote privacy information not available."] = "Le informazioni remote sulla privacy non sono disponibili."; +$a->strings["Visible to:"] = "Visibile a:"; +$a->strings["Contact not found."] = "Contatto non trovato."; +$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["%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["Could not access contact record."] = "Non è possibile accedere alle informazioni sul contatto."; $a->strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; $a->strings["Connection updated."] = "Contatto aggiornato."; $a->strings["Failed to update connection record."] = "Impossibile aggiornare le informazioni del contatto."; -$a->strings["Blocked"] = "Bloccati"; -$a->strings["Ignored"] = "Ignorati"; -$a->strings["Hidden"] = "Nascosti"; -$a->strings["Archived"] = "Archiviati"; -$a->strings["All"] = "Tutti"; -$a->strings["Unconnected"] = "Non connesso"; -$a->strings["Suggest new connections"] = "Suggerisci nuovi contatti"; -$a->strings["New Connections"] = "Nuovi contatti"; -$a->strings["Show pending (new) connections"] = "Richieste di contatto in attesa"; -$a->strings["Show all connections"] = "Mostra tutti i contatti"; -$a->strings["Unblocked"] = "Non bloccati"; -$a->strings["Only show unblocked connections"] = "Mostra solo i contatti non bloccati"; -$a->strings["Only show blocked connections"] = "Mostra solo i contatti bloccati"; -$a->strings["Only show ignored connections"] = "Mostra solo i contatti ignorati"; -$a->strings["Only show archived connections"] = "Mostra solo i contatti archiviati"; -$a->strings["Only show hidden connections"] = "Mostra solo i contatti nascosti"; -$a->strings["Only show one-way connections"] = "Mostra solo i contatti non ricambiati"; -$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -$a->strings["Edit contact"] = "Modifica il contatto"; -$a->strings["Search your connections"] = "Cerca tra i contatti"; -$a->strings["Finding: "] = "Ricerca: "; -$a->strings["Edit post"] = "Modifica articolo"; $a->strings["Could not access address book record."] = "Impossibile accedere alle informazioni della rubrica."; $a->strings["Refresh failed - channel is currently unavailable."] = "Il canale non è disponibile - impossibile aggiornare."; $a->strings["Channel has been unblocked"] = "Il canale è stato sbloccato"; @@ -1189,9 +1040,10 @@ $a->strings["Refresh Permissions"] = "Aggiorna i permessi"; $a->strings["Fetch updated permissions"] = "Scarica i permessi aggiornati"; $a->strings["Recent Activity"] = "Attività recenti"; $a->strings["View recent posts and comments"] = "Leggi i post recenti e i commenti"; +$a->strings["Unblock"] = "Sblocca"; +$a->strings["Block"] = "Blocca"; $a->strings["Block or Unblock this connection"] = "Per bloccare o meno questo contatto"; $a->strings["Unignore"] = "Non ignorare"; -$a->strings["Ignore"] = "Ignora"; $a->strings["Ignore or Unignore this connection"] = "Per ignorare o meno questo contatto"; $a->strings["Unarchive"] = "Non archiviare"; $a->strings["Archive"] = "Archivia"; @@ -1200,7 +1052,6 @@ $a->strings["Unhide"] = "Non nascondere"; $a->strings["Hide"] = "Nascondi"; $a->strings["Hide or Unhide this connection"] = "Per nascondere o meno questo contatto"; $a->strings["Delete this connection"] = "Elimina questo contatto"; -$a->strings["Unknown"] = "Sconosciuto"; $a->strings["Approve this connection"] = "Approva questo contatto"; $a->strings["Accept connection to allow communication"] = "Entra in contatto per poter comunicare"; $a->strings["Automatic Permissions Settings"] = "Permessi predefiniti"; @@ -1241,31 +1092,18 @@ $a->strings["Currently archived"] = "Attualmente archiviato"; $a->strings["Currently pending"] = "Attualmente da approvare"; $a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri"; $a->strings["Replies/likes to your public posts may still be visible"] = "Le risposte ai tuoi articoli pubblici potrebbero restare comunque visibili"; -$a->strings["No potential page delegates located."] = "Impossibile trovare delegati per questa pagina."; -$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 attuali della pagina"; -$a->strings["Existing Page Delegates"] = "Delegati attuali della pagina"; -$a->strings["Potential Delegates"] = "Delegati potenziali"; -$a->strings["Remove"] = "Rimuovi"; -$a->strings["Add"] = "Aggiungi"; -$a->strings["No entries."] = "Nessun risultato."; -$a->strings["Public access denied."] = "Accesso pubblico negato."; -$a->strings["Gender: "] = "Sesso:"; -$a->strings["Finding:"] = "Ricerca:"; -$a->strings["next page"] = "pagina succ."; -$a->strings["previous page"] = "pagina prec."; -$a->strings["No entries (some entries may be hidden)."] = "Nessun risultato (qualcosa potrebbe essere nascosto)."; -$a->strings["Status: "] = "Stato:"; -$a->strings["Sexual Preference: "] = "Preferenza sessuale:"; -$a->strings["Homepage: "] = "Homepage:"; -$a->strings["Hometown: "] = "Città dove vivo:"; -$a->strings["About: "] = "Informazioni:"; -$a->strings["Keywords: "] = "Parole chiave:"; $a->strings["This site is not a directory server"] = "Questo sito non fornisce l'elenco generale dei canali"; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Non è possibile effettuare login con l'OpenID che hai fornito. Per favore controlla che sia scritto correttamente."; +$a->strings["The error message was:"] = "Messaggio di errore ricevuto:"; +$a->strings["Authentication failed."] = "Autenticazione fallita."; +$a->strings["Remote Authentication"] = "Autenticazione a distanza"; +$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)"; +$a->strings["Authenticate"] = "Autenticazione"; +$a->strings["Item not available."] = "Elemento non disponibile."; +$a->strings["Item is not editable"] = "L'elemento non è modificabile"; +$a->strings["Delete item?"] = "Eliminare questo elemento?"; $a->strings["Name is required"] = "Il nome è obbligatorio"; $a->strings["Key and Secret are required"] = "Chiave e Segreto sono richiesti"; -$a->strings["Update"] = "Aggiorna"; $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."; @@ -1275,6 +1113,7 @@ $a->strings["Protected email address. Cannot change to that email."] = "È un in $a->strings["System failure storing new email. Please try again."] = "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore."; $a->strings["Settings updated."] = "Impostazioni aggiornate."; $a->strings["Add application"] = "Aggiungi una app"; +$a->strings["Name"] = "Nome"; $a->strings["Name of application"] = "Nome dell'applicazione"; $a->strings["Consumer Key"] = "Consumer Key"; $a->strings["Automatically generated - change if desired. Max length 20"] = "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20"; @@ -1302,6 +1141,7 @@ $a->strings["Off"] = "Off"; $a->strings["On"] = "On"; $a->strings["Additional Features"] = "Funzionalità aggiuntive"; $a->strings["Connector Settings"] = "Impostazioni del connettore"; +$a->strings["No special theme for mobile devices"] = "Nessun tema per dispositivi mobili"; $a->strings["Display Settings"] = "Impostazioni grafiche"; $a->strings["Display Theme:"] = "Tema per monitor:"; $a->strings["Mobile Theme:"] = "Tema per dispositivi mobili:"; @@ -1438,7 +1278,7 @@ $a->strings["SSL certificate cannot be validated. Fix certificate or disable htt $a->strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati generati da te!"; $a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server."; $a->strings["If your certificate is not recognised, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno un avviso su possibili problemi di sicurezza."; -$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Ciò può creare gravi problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto."; +$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Ciò può creare problemi di usabilità molto gravi (non solo sul tuo sito), quindi dobbiamo insistere su questo punto."; $a->strings["Providers are available that issue free certificates which are browser-valid."] = "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser."; $a->strings["SSL certificate validation"] = "Validazione del certificato SSL"; $a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server."; @@ -1447,36 +1287,6 @@ $a->strings["The database configuration file \".htconfig.php\" could not be writ $a->strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; $a->strings["

What next

"] = "

I prossimi passi

"; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling."; -$a->strings["Item not found"] = "Elemento non trovato"; -$a->strings["Edit Block"] = "Modifica il riquadro"; -$a->strings["Delete block?"] = "Vuoi eliminare questo riquadro?"; -$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["Delete Block"] = "Elimina il riquadro"; -$a->strings["Layout updated."] = "Layout aggiornato."; -$a->strings["Edit System Page Description"] = "Modifica i layout di sistema"; -$a->strings["Layout not found."] = "Layout non trovato."; -$a->strings["Module Name:"] = "Nome del modulo:"; -$a->strings["Layout Help"] = "Guida al layout"; -$a->strings["Edit Layout"] = "Modifica il layout"; -$a->strings["Delete layout?"] = "Vuoi eliminare questo layout?"; -$a->strings["Delete Layout"] = "Elimina il layout"; -$a->strings["Item is not editable"] = "L'elemento non è modificabile"; -$a->strings["Delete item?"] = "Eliminare questo elemento?"; -$a->strings["Edit Webpage"] = "Modifica la pagina web"; -$a->strings["Delete webpage?"] = "Vuoi eliminare questa pagina web?"; -$a->strings["Delete Webpage"] = "Elimina la pagina web"; -$a->strings["Version %s"] = "Versione %s"; -$a->strings["Installed plugins/addons/apps:"] = "App e componenti aggiuntivi instalati:"; -$a->strings["No installed plugins/addons/apps"] = "Nessuna app o componente aggiuntivo installato"; -$a->strings["Red"] = "Red"; -$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralised privacy enhanced websites."] = "Questo è un hub di Red Matrix - una rete cooperativa e decentralizzata di siti con elevato livello di privacy. "; -$a->strings["Running at web location"] = "In esecuzione sull'indirizzo web"; -$a->strings["Please visit GetZot.com to learn more about the Red Matrix."] = "Visita GetZot.com per scoprire il progetto Red Matrix."; -$a->strings["Bug reports and issues: please visit"] = "Per segnalare bug e problemi: visita"; -$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com"; -$a->strings["Site Administrators"] = "Amministratori del sito"; $a->strings["Event title and start time are required."] = "Sono necessari il titolo e l'ora d'inizio dell'evento."; $a->strings["l, F j"] = "l j F"; $a->strings["Edit event"] = "Modifica l'evento"; @@ -1493,204 +1303,6 @@ $a->strings["Adjust for viewer timezone"] = "Adatta al fuso orario di chi legge" $a->strings["Description:"] = "Descrizione:"; $a->strings["Title:"] = "Titolo:"; $a->strings["Share this event"] = "Condividi questo evento"; -$a->strings["Failed to create source. No channel selected."] = "Impossibile creare la sorgente. Nessun canale selezionato."; -$a->strings["Source created."] = "Sorgente creata."; -$a->strings["Source updated."] = "Sorgente aggiornata."; -$a->strings["*"] = "*"; -$a->strings["Manage remote sources of content for your channel."] = "Gestisci le sorgenti dei contenuti del tuo canale."; -$a->strings["New Source"] = "Nuova sorgente"; -$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importa nel tuo canale tutti o una parte dei contenuti dal canale seguente."; -$a->strings["Only import content with these words (one per line)"] = "Importa solo i contenuti che hanno queste parole (una per riga)"; -$a->strings["Leave blank to import all public content"] = "Lascia vuoto per importare tutti i contenuti pubblici"; -$a->strings["Channel Name"] = "Nome del canale"; -$a->strings["Source not found."] = "Sorgente non trovata."; -$a->strings["Edit Source"] = "Modifica la sorgente"; -$a->strings["Delete Source"] = "Elimina la sorgente"; -$a->strings["Source removed"] = "Sorgente eliminata"; -$a->strings["Unable to remove source."] = "Impossibile rimuovere la sorgente."; -$a->strings["- select -"] = "- scegli -"; -$a->strings["Permission Denied."] = "Permesso negato."; -$a->strings["File not found."] = "File non trovato."; -$a->strings["Edit file permissions"] = "Modifica i permessi del file"; -$a->strings["Set/edit permissions"] = "Modifica i permessi"; -$a->strings["Include all files and sub folders"] = "Includi tutti i file e le sottocartelle"; -$a->strings["Return to file list"] = "Torna all'elenco dei file"; -$a->strings["Copy/paste this code to attach file to a post"] = "Copia/incolla questo codice per far comparire il file in un articolo"; -$a->strings["Copy/paste this URL to link file from a web page"] = "Copia/incolla questo indirizzo in una pagina web per avere un link al file"; -$a->strings["Download"] = "Scaricamento dati"; -$a->strings["Used: "] = "Usato:"; -$a->strings["[directory]"] = "[cartella]"; -$a->strings["Limit: "] = "Limite:"; -$a->strings["Channel added."] = "Canale aggiunto."; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; -$a->strings["Contact not found."] = "Contatto non trovato."; -$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["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["Collection created."] = "L'insieme di canali è stato creato."; -$a->strings["Could not create collection."] = "Impossibile creare l'insieme."; -$a->strings["Collection updated."] = "Insieme aggiornato."; -$a->strings["Create a collection of channels."] = "Crea un insieme di canali."; -$a->strings["Collection Name: "] = "Nome dell'insieme:"; -$a->strings["Members are visible to other channels"] = "I membri saranno visibili agli altri canali"; -$a->strings["Collection removed."] = "Insieme rimosso."; -$a->strings["Unable to remove collection."] = "Impossibile rimuovere l'insieme."; -$a->strings["Collection Editor"] = "Modifica l'insieme"; -$a->strings["Members"] = "Membri"; -$a->strings["All Connected Channels"] = "Tutti i canali connessi"; -$a->strings["Click on a channel to add or remove."] = "Clicca su un canale per aggiungerlo o rimuoverlo."; -$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["Help:"] = "Guida:"; -$a->strings["Not Found"] = "Non disponibile"; -$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["Welcome to %s"] = "%s ti dà il benvenuto"; -$a->strings["Thing updated"] = "L'oggetto è stato aggiornato"; -$a->strings["Object store: failed"] = "Impossibile memorizzare l'oggetto."; -$a->strings["Thing added"] = "L'oggetto è stato aggiunto"; -$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -$a->strings["Show Thing"] = "Mostra l'oggetto"; -$a->strings["item not found."] = "non trovato."; -$a->strings["Edit Thing"] = "Modifica l'oggetto"; -$a->strings["Select a profile"] = "Scegli un profilo"; -$a->strings["Select a category of stuff. e.g. I ______ something"] = "Scegli come riferirsi all'oggetto. Esempio: Io _____ l'oggetto"; -$a->strings["Post an activity"] = "Pubblica un'attività"; -$a->strings["Only sends to viewers of the applicable profile"] = "Invia solo a chi segue il relativo canale"; -$a->strings["Name of thing e.g. something"] = "Nome dell'oggetto"; -$a->strings["URL of thing (optional)"] = "Indirizzo web dell'oggetto"; -$a->strings["URL for photo of thing (optional)"] = "Indirizzo di un'immagine dell'oggetto (facoltativo)"; -$a->strings["Add Thing to your Profile"] = "Aggiungi l'oggetto al tuo profilo"; -$a->strings["Nothing to import."] = "Non c'è niente da importare."; -$a->strings["Unable to download data from old server"] = "Impossibile importare i dati dal vecchio server"; -$a->strings["Imported file is empty."] = "Il file da importare è vuoto."; -$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita."; -$a->strings["Channel clone failed. Import failed."] = "Impossibile clonare il canale. L'importazione è fallita."; -$a->strings["Cloned channel not found. Import failed."] = "Impossibile trovare il canale clonato. L'importazione è fallita."; -$a->strings["Import completed."] = "L'importazione è terminata con successo!"; -$a->strings["You must be logged in to use this feature."] = "Per questa funzionalità devi aver effettuato l'accesso."; -$a->strings["Import Channel"] = "Importa un canale"; -$a->strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = "Usa questo modulo per importare un tuo canale da un altro server/hub. Puoi scaricare i dati identificativi del canale direttamente dall'altro server/hub oppure tramite un file che hai esportato. Saranno importati solamente l'identità e i contatti. L'importazione dei contenuti non è ancora disponibile."; -$a->strings["File to Upload"] = "File da caricare"; -$a->strings["Or provide the old server/hub details"] = "Oppure fornisci i dettagli del vecchio server/hub"; -$a->strings["Your old identity address (xyz@example.com)"] = "Il tuo vecchio identificativo (per esempio pippo@esempio.com)"; -$a->strings["Your old login email address"] = "L'email che usavi per accedere sul vecchio server"; -$a->strings["Your old login password"] = "La password per il vecchio server"; -$a->strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Per ciascuna opzione, scegli se vuoi rendere questo server il tuo indirizzo primario, oppure se preferisci che lo rimanga il vecchio. Potrai pubblicare da entrambi i server, ma solamente uno sarà marcato come primario per i tuoi file, foto, ecc."; -$a->strings["Make this hub my primary location"] = "Rendi questo server il mio indirizzo primario"; -$a->strings["Total invitation limit exceeded."] = "Hai superato il numero massimo di inviti."; -$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; -$a->strings["Please join us on Red"] = "Vieni con noi su Red"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario."; -$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["Send invitations"] = "Spedisci 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["You are cordially invited to join me and some other close friends on the Red Matrix - a revolutionary new decentralised communication and information tool."] = "Questo è un invito cordiale ad unirti a me e ad altri miei amici stretti su Red Matrix - uno nuovo strumento di comunicazione decentralizzato e rivoluzionario."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code"; -$a->strings["Please visit my channel at"] = "Puoi visitare il mio canale su"; -$a->strings["Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:"] = "Una volta che avrai completato la registrazione (su QUALSIASI sito Red Matrix - sono tutti interconnessi), potrai connetterti al mio canale:"; -$a->strings["Click the [Register] link on the following page to join."] = "Fai clic su [Registrati] nella pagina seguente per iscriverti."; -$a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "Per saperne di più sul progetto Red Matrix e sul perché potrebbe cambiare internet per come la conosciamo, visita http://getzot.com"; -$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; -$a->strings["Empty post discarded."] = "L'articolo vuoto è stato ignorato."; -$a->strings["Executable content type not permitted to this channel."] = "I contenuti eseguibili non sono permessi su questo canale."; -$a->strings["System error. Post not saved."] = "Errore di sistema. Articolo non salvato."; -$a->strings["You have reached your limit of %1$.0f top level posts."] = "Hai raggiunto il limite massimo di %1$.0f articoli sulla pagina principale."; -$a->strings["You have reached your limit of %1$.0f webpages."] = "Hai raggiunto il limite massimo di %1$.0f pagine web."; -$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; -$a->strings["Help with this feature"] = "La guida per questa funzionalità"; -$a->strings["Layout Name"] = "Nome layout"; -$a->strings["Remote privacy information not available."] = "Le informazioni remote sulla privacy non sono disponibili."; -$a->strings["Visible to:"] = "Visibile a:"; -$a->strings["No connections."] = "Nessun contatto."; -$a->strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; -$a->strings["View Connnections"] = "Guarda i contatti"; -$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["Site Member (%s)"] = "Utente del sito (%s)"; -$a->strings["Password reset requested at %s"] = "È stato richiesto di reimpostare 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 (potresti averla già usata precedentemente). La password non può essere reimpostata."; -$a->strings["Password Reset"] = "Reimposta la password"; -$a->strings["Your password has been reset as requested."] = "La 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 accedere"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso."; -$a->strings["Your password has changed at %s"] = "La tua password su %s è cambiata"; -$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. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare."; -$a->strings["Email Address"] = "Indirizzo email"; -$a->strings["Reset"] = "Reimposta"; -$a->strings["Hub not found."] = "Server non trovato."; -$a->strings["Total votes"] = "Totale voti"; -$a->strings["Average Rating"] = "Media"; -$a->strings["Unable to lookup recipient."] = "Impossibile associare un destinatario."; -$a->strings["Unable to communicate with requested channel."] = "Impossibile comunicare con il canale richiesto."; -$a->strings["Cannot verify requested channel."] = "Impossibile verificare il canale richiesto."; -$a->strings["Selected channel has private message restrictions. Send failed."] = "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito."; -$a->strings["Messages"] = "Messaggi"; -$a->strings["Message deleted."] = "Messaggio eliminato."; -$a->strings["Message recalled."] = "Messaggio revocato."; -$a->strings["Send Private Message"] = "Invia un messaggio privato"; -$a->strings["To:"] = "A:"; -$a->strings["Subject:"] = "Oggetto:"; -$a->strings["Message not found."] = "Messaggio non trovato."; -$a->strings["Delete message"] = "Elimina il messaggio"; -$a->strings["Recall message"] = "Revoca il messaggio"; -$a->strings["Message has been recalled."] = "Il messaggio è stato revocato."; -$a->strings["Private Conversation"] = "Conversazione privata"; -$a->strings["Delete conversation"] = "Elimina la conversazione"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Non è disponibile alcun sistema per comunicare in modo sicuro. Puoi verificare se eventualmente è possibile rispondere dalla pagina del profilo del mittente."; -$a->strings["Send Reply"] = "Invia la risposta"; -$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Hai creato %1$.0f dei %2$.0f canali permessi."; -$a->strings["Create a new channel"] = "Crea un nuovo canale"; -$a->strings["Channel Manager"] = "Gestione canali"; -$a->strings["Current Channel"] = "Canale attuale"; -$a->strings["Attach to one of your channels by selecting it."] = "Seleziona il canale a cui vuoi passare."; -$a->strings["Default Channel"] = "Canale predefinito"; -$a->strings["Make Default"] = "Rendi predefinito"; -$a->strings["Wall Photos"] = "Foto della bacheca"; -$a->strings["Profile Match"] = "Profili corrispondenti"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nessuna parola chiave per le ricerche. Aggiungi parole chiave al tuo profilo predefinito."; -$a->strings["is interested in:"] = "interessi personali:"; -$a->strings["No matches"] = "Nessun risultato"; -$a->strings["Menu updated."] = "Menù aggiornato."; -$a->strings["Unable to update menu."] = "Impossibile aggiornare il menù."; -$a->strings["Menu created."] = "Menù creato."; -$a->strings["Unable to create menu."] = "Impossibile creare il menù."; -$a->strings["Manage Menus"] = "Gestione menù"; -$a->strings["Drop"] = "Elimina"; -$a->strings["Create a new menu"] = "Crea un nuovo menù"; -$a->strings["Delete this menu"] = "Elimina questo menù"; -$a->strings["Edit menu contents"] = "Modifica i contenuti del menù"; -$a->strings["Edit this menu"] = "Modifica questo menù"; -$a->strings["New Menu"] = "Nuovo menù"; -$a->strings["Menu name"] = "Nome del menù"; -$a->strings["Must be unique, only seen by you"] = "Deve essere unico, lo vedrai solo tu"; -$a->strings["Menu title"] = "Titolo del menù"; -$a->strings["Menu title as seen by others"] = "Titolo del menù come comparirà a tutti"; -$a->strings["Allow bookmarks"] = "Permetti l'invio di segnalibri"; -$a->strings["Menu may be used to store saved bookmarks"] = "Puoi salvare i segnalibri nei menu"; -$a->strings["Menu deleted."] = "Menù eliminato."; -$a->strings["Menu could not be deleted."] = "Il menù non può essere eliminato."; -$a->strings["Edit Menu"] = "Modifica menù"; -$a->strings["Add or remove entries to this menu"] = "Aggiungi o rimuovi elementi di questo menù"; -$a->strings["Conversation removed."] = "Conversazione rimossa."; -$a->strings["No messages."] = "Nessun messaggio."; -$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; -$a->strings["Add a Channel"] = "Aggiungi un canale"; -$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "I contenuti che pubblichi finiscono in un \"canale\". Un canale può essere usato per mantenere un tuo profilo personale, per avere un blog, per creare forum di discussione o gruppi di interesse, per pagine di celebrità e molto altro. Puoi creare quanti canali vuoi a meno di limiti dati dal gestore del sito."; -$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\""; -$a->strings["Choose a short nickname"] = "Scegli un nome breve"; -$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale (simile a una email). Così potrai condividerlo e gli altri potranno trovarti."; -$a->strings["Or import an existing channel from another location"] = "Oppure importa un tuo canale esistente da un altro server/hub"; $a->strings["Page owner information could not be retrieved."] = "Impossibile ottenere informazioni sul proprietario della pagina."; $a->strings["Album not found."] = "Album non trovato."; $a->strings["Delete Album"] = "Elimina album"; @@ -1722,52 +1334,431 @@ $a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #cam $a->strings["In This Photo:"] = "In questa foto:"; $a->strings["View Album"] = "Guarda l'album"; $a->strings["Recent Photos"] = "Foto recenti"; -$a->strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido."; -$a->strings["Discard"] = "Rifiuta"; -$a->strings["No more system notifications."] = "Non ci sono nuove notifiche di sistema."; -$a->strings["System Notifications"] = "Notifiche di sistema"; -$a->strings["Unable to find your hub."] = "Impossibile raggiungere il tuo hub."; -$a->strings["Post successful."] = "Inviato!"; -$a->strings["invalid target signature"] = "la firma riscontrata non è valida"; +$a->strings["Help:"] = "Guida:"; +$a->strings["Not Found"] = "Non disponibile"; +$a->strings["sent you a private message"] = "ti ha inviato un messaggio privato"; +$a->strings["added your channel"] = "ha aggiunto il tuo canale"; +$a->strings["posted an event"] = "ha creato un evento"; +$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["Site Member (%s)"] = "Utente del sito (%s)"; +$a->strings["Password reset requested at %s"] = "È stato richiesto di reimpostare 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 (potresti averla già usata precedentemente). La password non può essere reimpostata."; +$a->strings["Password Reset"] = "Reimposta la password"; +$a->strings["Your password has been reset as requested."] = "La 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 accedere"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso."; +$a->strings["Your password has changed at %s"] = "La tua password su %s è cambiata"; +$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. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare."; +$a->strings["Email Address"] = "Indirizzo email"; +$a->strings["Reset"] = "Reimposta"; +$a->strings["Remove This Channel"] = "Elimina questo canale"; +$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il canale che stai usando. Una volta fatto non sarà più possibile ripristinarlo."; +$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; +$a->strings["Remove this channel and all its clones from the network"] = "Rimuovi questo canale e tutti i suoi cloni dalla rete"; +$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni"; +$a->strings["Remove Channel"] = "Elimina questo canale"; +$a->strings["No potential page delegates located."] = "Impossibile trovare delegati per questa pagina."; +$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 attuali della pagina"; +$a->strings["Existing Page Delegates"] = "Delegati attuali della pagina"; +$a->strings["Potential Delegates"] = "Delegati potenziali"; +$a->strings["Add"] = "Aggiungi"; +$a->strings["No entries."] = "Nessun risultato."; +$a->strings["Help with this feature"] = "La guida per questa funzionalità"; +$a->strings["Layout Name"] = "Nome layout"; +$a->strings["Blocked"] = "Bloccati"; +$a->strings["Ignored"] = "Ignorati"; +$a->strings["Hidden"] = "Nascosti"; +$a->strings["Archived"] = "Archiviati"; +$a->strings["All"] = "Tutti"; +$a->strings["Unconnected"] = "Non connesso"; +$a->strings["Suggest new connections"] = "Suggerisci nuovi contatti"; +$a->strings["New Connections"] = "Nuovi contatti"; +$a->strings["Show pending (new) connections"] = "Richieste di contatto in attesa"; +$a->strings["Show all connections"] = "Mostra tutti i contatti"; +$a->strings["Unblocked"] = "Non bloccati"; +$a->strings["Only show unblocked connections"] = "Mostra solo i contatti non bloccati"; +$a->strings["Only show blocked connections"] = "Mostra solo i contatti bloccati"; +$a->strings["Only show ignored connections"] = "Mostra solo i contatti ignorati"; +$a->strings["Only show archived connections"] = "Mostra solo i contatti archiviati"; +$a->strings["Only show hidden connections"] = "Mostra solo i contatti nascosti"; +$a->strings["Only show one-way connections"] = "Mostra solo i contatti non ricambiati"; +$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +$a->strings["Edit contact"] = "Modifica il contatto"; +$a->strings["Search your connections"] = "Cerca tra i contatti"; +$a->strings["Finding: "] = "Ricerca: "; +$a->strings["Nothing to import."] = "Non c'è niente da importare."; +$a->strings["Unable to download data from old server"] = "Impossibile importare i dati dal vecchio server"; +$a->strings["Imported file is empty."] = "Il file da importare è vuoto."; +$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita."; +$a->strings["Channel clone failed. Import failed."] = "Impossibile clonare il canale. L'importazione è fallita."; +$a->strings["Cloned channel not found. Import failed."] = "Impossibile trovare il canale clonato. L'importazione è fallita."; +$a->strings["Import completed."] = "L'importazione è terminata con successo!"; +$a->strings["You must be logged in to use this feature."] = "Per questa funzionalità devi aver effettuato l'accesso."; +$a->strings["Import Channel"] = "Importa un canale"; +$a->strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = "Usa questo modulo per importare un tuo canale da un altro server/hub. Puoi scaricare i dati identificativi del canale direttamente dall'altro server/hub oppure tramite un file che hai esportato. Saranno importati solamente l'identità e i contatti. L'importazione dei contenuti non è ancora disponibile."; +$a->strings["File to Upload"] = "File da caricare"; +$a->strings["Or provide the old server/hub details"] = "Oppure fornisci i dettagli del vecchio server/hub"; +$a->strings["Your old identity address (xyz@example.com)"] = "Il tuo vecchio identificativo (per esempio pippo@esempio.com)"; +$a->strings["Your old login email address"] = "L'email che usavi per accedere sul vecchio server"; +$a->strings["Your old login password"] = "La password per il vecchio server"; +$a->strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Per ciascuna opzione, scegli se vuoi rendere questo server il tuo indirizzo primario, oppure se preferisci che lo rimanga il vecchio. Potrai pubblicare da entrambi i server, ma solamente uno sarà marcato come primario per i tuoi file, foto, ecc."; +$a->strings["Make this hub my primary location"] = "Rendi questo server il mio indirizzo primario"; +$a->strings["Mood"] = "Umore"; +$a->strings["Set your current mood and tell your friends"] = "Scegli il tuo umore attuale per mostrarlo agli amici"; +$a->strings["Room not found"] = "Chat non trovata"; +$a->strings["Leave Room"] = "Lascia la chat"; +$a->strings["Delete This Room"] = "Elimina questa chat"; +$a->strings["I am away right now"] = "Non sono presente al momento"; +$a->strings["I am online"] = "Sono online"; +$a->strings["Bookmark this room"] = "Aggiungi chat ai segnalibri"; +$a->strings["New Chatroom"] = "Nuova chat"; +$a->strings["Chatroom Name"] = "Nome della chat"; +$a->strings["%1\$s's Chatrooms"] = "Le chat di %1\$s"; +$a->strings["Edit Block"] = "Modifica il riquadro"; +$a->strings["Delete block?"] = "Vuoi eliminare questo riquadro?"; +$a->strings["Delete Block"] = "Elimina il riquadro"; +$a->strings["Profile Match"] = "Profili corrispondenti"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nessuna parola chiave per le ricerche. Aggiungi parole chiave al tuo profilo predefinito."; +$a->strings["is interested in:"] = "interessi personali:"; +$a->strings["No matches"] = "Nessun risultato"; +$a->strings["Away"] = "Assente"; +$a->strings["Online"] = "Online"; +$a->strings["Edit Webpage"] = "Modifica la pagina web"; +$a->strings["Delete webpage?"] = "Vuoi eliminare questa pagina web?"; +$a->strings["Delete Webpage"] = "Elimina la pagina web"; +$a->strings["Profile not found."] = "Profilo non trovato."; +$a->strings["Profile deleted."] = "Profilo eliminato."; +$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["Profile Name is required."] = "Il nome del profilo è obbligatorio ."; +$a->strings["Marital Status"] = "Stato sentimentale"; +$a->strings["Romantic Partner"] = "Partner affettivo"; +$a->strings["Likes"] = "Mi piace"; +$a->strings["Dislikes"] = "Non mi piace"; +$a->strings["Work/Employment"] = "Lavoro/impiego"; +$a->strings["Religion"] = "Religione"; +$a->strings["Political Views"] = "Orientamento politico"; +$a->strings["Gender"] = "Sesso"; +$a->strings["Sexual Preference"] = "Preferenze sessuali"; +$a->strings["Homepage"] = "Home page"; +$a->strings["Interests"] = "Interessi"; +$a->strings["Address"] = "Indirizzo"; +$a->strings["Profile updated."] = "Profilo aggiornato."; +$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"] = "Guarda questo profilo"; +$a->strings["Change Profile Photo"] = "Cambia la foto del 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:"] = "Titolo/descrizione:"; +$a->strings["Your Gender:"] = "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[" Marital Status:"] = " Stato sentimentale:"; +$a->strings["Who: (if applicable)"] = "Con chi: (se possibile)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Per esempio: cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = "dal [data]:"; +$a->strings["Homepage URL:"] = "Indirizzo home page:"; +$a->strings["Religious Views:"] = "Orientamento religioso:"; +$a->strings["Keywords:"] = "Parole chiave, tag:"; +$a->strings["Example: fishing photography software"] = "Per esempio: pesca fotografia programmazione"; +$a->strings["Used in directory listings"] = "Visibile nell'elenco pubblico di canali"; +$a->strings["Tell us about yourself..."] = "Raccontaci di te..."; +$a->strings["Hobbies/Interests"] = "Hobby/interessi"; +$a->strings["Contact information and Social Networks"] = "Contatti personali e i tuoi social network"; +$a->strings["My other channels"] = "I miei altri canali"; +$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 public profile.
It may be visible to anybody using the internet."] = "Questo è il tuo profilo publico.
Potrebbe essere visto da chiunque attraverso internet."; +$a->strings["Edit/Manage Profiles"] = "Modifica/gestisci i profili"; +$a->strings["Add profile things"] = "Aggiungi oggetti al profilo"; +$a->strings["Include desirable objects in your profile"] = "Aggiungi oggetti interessanti al tuo profilo"; +$a->strings["Menu updated."] = "Menù aggiornato."; +$a->strings["Unable to update menu."] = "Impossibile aggiornare il menù."; +$a->strings["Menu created."] = "Menù creato."; +$a->strings["Unable to create menu."] = "Impossibile creare il menù."; +$a->strings["Manage Menus"] = "Gestione menù"; +$a->strings["Drop"] = "Elimina"; +$a->strings["Create a new menu"] = "Crea un nuovo menù"; +$a->strings["Delete this menu"] = "Elimina questo menù"; +$a->strings["Edit menu contents"] = "Modifica i contenuti del menù"; +$a->strings["Edit this menu"] = "Modifica questo menù"; +$a->strings["New Menu"] = "Nuovo menù"; +$a->strings["Menu name"] = "Nome del menù"; +$a->strings["Must be unique, only seen by you"] = "Deve essere unico, lo vedrai solo tu"; +$a->strings["Menu title"] = "Titolo del menù"; +$a->strings["Menu title as seen by others"] = "Titolo del menù come comparirà a tutti"; +$a->strings["Allow bookmarks"] = "Permetti l'invio di segnalibri"; +$a->strings["Menu may be used to store saved bookmarks"] = "Puoi salvare i segnalibri nei menu"; +$a->strings["Menu deleted."] = "Menù eliminato."; +$a->strings["Menu could not be deleted."] = "Il menù non può essere eliminato."; +$a->strings["Edit Menu"] = "Modifica menù"; +$a->strings["Add or remove entries to this menu"] = "Aggiungi o rimuovi elementi di questo menù"; $a->strings["OpenID protocol error. No ID returned."] = "Errore del protocollo OpenID. Nessun ID ricevuto in risposta."; -$a->strings["Schema Default"] = "Schema predefinito"; -$a->strings["Sans-Serif"] = "Sans-Serif"; -$a->strings["Monospace"] = "Monospace"; +$a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"] = "Accesso a Red Matrix. Inserisci l'email con cui sei registrato e la password."; +$a->strings["Unable to lookup recipient."] = "Impossibile associare un destinatario."; +$a->strings["Unable to communicate with requested channel."] = "Impossibile comunicare con il canale richiesto."; +$a->strings["Cannot verify requested channel."] = "Impossibile verificare il canale richiesto."; +$a->strings["Selected channel has private message restrictions. Send failed."] = "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito."; +$a->strings["Message deleted."] = "Messaggio eliminato."; +$a->strings["Message recalled."] = "Messaggio revocato."; +$a->strings["Send Private Message"] = "Invia un messaggio privato"; +$a->strings["To:"] = "A:"; +$a->strings["Subject:"] = "Oggetto:"; +$a->strings["Your message:"] = "Il tuo messaggio:"; +$a->strings["Message not found."] = "Messaggio non trovato."; +$a->strings["Recall message"] = "Revoca il messaggio"; +$a->strings["Message has been recalled."] = "Il messaggio è stato revocato."; +$a->strings["Private Conversation"] = "Conversazione privata"; +$a->strings["Delete conversation"] = "Elimina la conversazione"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Non è disponibile alcun sistema per comunicare in modo sicuro. Puoi verificare se eventualmente è possibile rispondere dalla pagina del profilo del mittente."; +$a->strings["Send Reply"] = "Invia la risposta"; +$a->strings["App installed."] = "App installata"; +$a->strings["Malformed app."] = "App non corretta"; +$a->strings["Embed code"] = "Inserisci del codice"; +$a->strings["Create App"] = "Crea una app"; +$a->strings["Name of app"] = "Nome app"; +$a->strings["Location (URL) of app"] = "Indirizzo (URL) della app"; +$a->strings["Description"] = "Descrizione"; +$a->strings["Photo icon URL"] = "URL icona"; +$a->strings["80 x 80 pixels - optional"] = "80 x 80 pixel - facoltativa"; +$a->strings["Version ID"] = "ID versione"; +$a->strings["Price of app"] = "Prezzo app"; +$a->strings["Location (URL) to purchase app"] = "Indirizzo (URL) per acquistare la app"; +$a->strings["Poke/Prod"] = "Poke/Prod"; +$a->strings["poke, prod or do other things to somebody"] = "Manda un poke, un prod o altro"; +$a->strings["Recipient"] = "Destinatario"; +$a->strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi inviare al destinatario"; +$a->strings["Make this post private"] = "Rendi privato questo articolo"; +$a->strings["No connections."] = "Nessun contatto."; +$a->strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; +$a->strings["View Connnections"] = "Guarda i contatti"; +$a->strings["Theme settings updated."] = "Le impostazioni del tema sono state aggiornate."; +$a->strings["Site"] = "Sito"; +$a->strings["Accounts"] = "Accounts"; +$a->strings["Channels"] = "Canali"; +$a->strings["Plugins"] = "Plugin"; +$a->strings["Themes"] = "Temi"; +$a->strings["Server"] = "Server"; +$a->strings["DB updates"] = "Aggiornamenti al DB"; +$a->strings["Logs"] = "Log"; +$a->strings["Plugin Features"] = "Funzionalità dei componenti aggiuntivi"; +$a->strings["User registrations waiting for confirmation"] = "Registrazioni in attesa"; +$a->strings["Message queues"] = "Messaggi in attesa di recapito"; +$a->strings["Administration"] = "Amministrazione"; +$a->strings["Summary"] = "Riepilogo"; +$a->strings["Registered users"] = "Utenti registrati"; +$a->strings["Pending registrations"] = "Registrazioni da approvare"; +$a->strings["Version"] = "Versione"; +$a->strings["Active plugins"] = "Plugin attivi"; +$a->strings["Site settings updated."] = "Impostazioni del sito aggiornate."; +$a->strings["No special theme for accessibility"] = "Nessun tema speciale per l'accessibilità"; +$a->strings["Yes - with approval"] = "Sì - con approvazione"; +$a->strings["My site is not a public server"] = "Non è un server pubblico"; +$a->strings["My site has paid access only"] = "È un servizio a pagamento"; +$a->strings["My site has free access only"] = "È un servizio gratuito"; +$a->strings["My site offers free accounts with optional paid upgrades"] = "È un servizio gratuito con opzioni aggiuntive a pagamento"; +$a->strings["Registration"] = "Registrazione"; +$a->strings["File upload"] = "Caricamento file"; +$a->strings["Policies"] = "Politiche"; +$a->strings["Site name"] = "Nome del sito"; +$a->strings["Banner/Logo"] = "Banner o logo"; +$a->strings["Administrator Information"] = "Informazioni sull'amministrazione"; +$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode"; +$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 - change theme settings"] = "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema"; +$a->strings["Mobile system theme"] = "Tema di sistema per dispositivi mobili"; +$a->strings["Theme for mobile devices"] = "Tema per i dispositivi mobili"; +$a->strings["Accessibility system theme"] = "Tema di sistema ad alta accessibilità"; +$a->strings["Accessibility theme"] = "Tema ad alta accessibilità"; +$a->strings["Channel to use for this website's static pages"] = "Canale da usare per le pagine statiche di questo sito"; +$a->strings["Site Channel"] = "Canale del sito"; +$a->strings["Maximum image size"] = "Dimensione massima 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["Does this site allow new member registration?"] = "Questo sito permette a nuovi utenti di registrarsi?"; +$a->strings["Which best describes the types of account offered by this hub?"] = "Come descriveresti il tipo di servizio proposto da questo server?"; +$a->strings["Register text"] = "Testo diregistrazione"; +$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 abandonded accounts. Enter 0 for no time limit."] = "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo."; +$a->strings["Allowed friend domains"] = "Domini fidati e 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. Lascia vuoto per accettare connessioni da 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. Sono accettati caratteri jolly. Lascia 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 impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso."; +$a->strings["Force publish"] = "Forza la publicazione del profilo"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per mostrare nell'elenco dei canali del sito tutti i profili registrati."; +$a->strings["Disable discovery tab"] = "Disabilita la funzione 'scopri'"; +$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Nell'area della rete personale non comparirà più la scheda con i contenuti acquisiti da altri siti."; +$a->strings["No login on Homepage"] = "Non mostrare il login sulla homepage"; +$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Per nascondere la possibilità di fare login ai visitatori (per esempio, quando il contenuto della homepage del sito è alimentato dal canale)."; +$a->strings["Proxy user"] = "Utente proxy"; +$a->strings["Proxy URL"] = "URL proxy"; +$a->strings["Network timeout"] = "Timeout rete"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)."; +$a->strings["Delivery interval"] = "Recapito ritardato"; +$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."] = "RItarda il processo di recapito di questo numero di secondi per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati."; +$a->strings["Poll interval"] = "Intervallo di polling"; +$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Ritarda i processi di polling in background di questo numero di secondi per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'."; +$a->strings["Maximum Load Average"] = "Carico massimo medio"; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50."; +$a->strings["No server found"] = "Server non trovato"; +$a->strings["ID"] = "ID"; +$a->strings["for channel"] = "per canale"; +$a->strings["on server"] = "sul server"; +$a->strings["Status"] = "Stato"; +$a->strings["Update has been marked successful"] = "L'aggiornamento è stato marcato come eseguito."; +$a->strings["Executing %s failed. Check system logs."] = "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema."; +$a->strings["Update %s was successfully applied."] = "L'aggiornamento %s è terminato correttamente."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente."; +$a->strings["Update function %s could not be found."] = "Impossibile trovare la funzione di aggiornamento %s"; +$a->strings["No failed updates."] = "Nessun aggiornamento fallito."; +$a->strings["Failed Updates"] = "Aggiornamenti falliti."; +$a->strings["Mark success (if update was manually applied)"] = "Marca come eseguito (se applicato manualmente)."; +$a->strings["Attempt to execute this update step automatically"] = "Tenta di eseguire in automatico questo passaggio dell'aggiornamento."; +$a->strings["%s user blocked/unblocked"] = array( + 0 => "%s utente bloccato/sbloccato", + 1 => "%s utenti bloccati/sbloccati", +); +$a->strings["%s user deleted"] = array( + 0 => "%s utente cancellato", + 1 => "%s utenti cancellati", +); +$a->strings["Account not found"] = "Account non trovato"; +$a->strings["User '%s' deleted"] = "Utente '%s' eliminato"; +$a->strings["User '%s' unblocked"] = "Utente '%s' sbloccato"; +$a->strings["User '%s' blocked"] = "Utente '%s' bloccato"; +$a->strings["Users"] = "Utenti"; +$a->strings["select all"] = "seleziona tutti"; +$a->strings["User registrations waiting for confirm"] = "Richieste di registrazione in attesa di conferma"; +$a->strings["Request date"] = "Data richiesta"; +$a->strings["No registrations."] = "Nessuna registrazione."; +$a->strings["Approve"] = "Approva"; +$a->strings["Deny"] = "Nega"; +$a->strings["Register date"] = "Data registrazione"; +$a->strings["Last login"] = "Ultimo accesso"; +$a->strings["Expires"] = "Con scadenza"; +$a->strings["Service Class"] = "Service Class"; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Gli utenti selezionati saranno eliminati!\\n\\nTutto quello che gli utenti hanno pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?"; +$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?"] = "L'utente {0} sarà eliminato!\\n\\nTutto quello che ha pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?"; +$a->strings["%s channel censored/uncensored"] = array( + 0 => "Censura modificata per %s canale", + 1 => "Censura modificata per %s canali", +); +$a->strings["%s channel deleted"] = array( + 0 => "%s canale è stato rimosso", + 1 => "%s canali sono stati rimossi", +); +$a->strings["Channel not found"] = "Canale non trovato"; +$a->strings["Channel '%s' deleted"] = "Il canale '%s' è stato rimosso"; +$a->strings["Channel '%s' uncensored"] = "Rimossa la censura dal canale '%s'"; +$a->strings["Channel '%s' censored"] = "Applicata una censura al canale '%s'"; +$a->strings["Censor"] = "Applica una censura"; +$a->strings["Uncensor"] = "Rimuovi la censura"; +$a->strings["UID"] = "UID"; +$a->strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"; +$a->strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"; +$a->strings["Plugin %s disabled."] = "Plugin %s non attivo."; +$a->strings["Plugin %s enabled."] = "Plugin %s attivo."; +$a->strings["Disable"] = "Disattiva"; +$a->strings["Enable"] = "Attiva"; +$a->strings["Toggle"] = "Attiva/disattiva"; +$a->strings["Author: "] = "Autore:"; +$a->strings["Maintainer: "] = "Gestore:"; +$a->strings["No themes found."] = "Nessun tema trovato."; +$a->strings["Screenshot"] = "Istantanea dello schermo"; +$a->strings["[Experimental]"] = "[Sperimentale]"; +$a->strings["[Unsupported]"] = "[Non supportato]"; +$a->strings["Log settings updated."] = "Impostazioni di 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 Red top-level directory."] = "Deve essere scrivibile dal web server. È relativa alla cartella dove è installato Red."; +$a->strings["Log level"] = "Livello di log"; +$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!"; +$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio."; +$a->strings["Passwords do not match."] = "Le password non corrispondono."; +$a->strings["Registration successful. Please check your email for validation instructions."] = "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata."; +$a->strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte dell'amministratore del sito."; +$a->strings["Your registration can not be processed."] = "La tua registrazione non puo' essere acquisita."; +$a->strings["Registration on this site/hub is by approval only."] = "La registrazione su questo sito è soggetta ad approvazione."; +$a->strings["Register at another affiliated site/hub"] = "Registrati su un altro server affiliato"; +$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["Terms of Service"] = "Condizioni d'Uso"; +$a->strings["I accept the %s for this website"] = "Accetto le %s di questo sito"; +$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ho più di 13 anni e accetto le %s di questo sito"; +$a->strings["Membership on this site is by invitation only."] = "Per registrarsi su questo sito è necessario un invito."; +$a->strings["Please enter your invitation code"] = "Inserisci il codice dell'invito"; +$a->strings["Your email address"] = "Il tuo indirizzo email"; +$a->strings["Choose a password"] = "Scegli una password"; +$a->strings["Please re-enter your password"] = "Ripeti la password per verifica"; +$a->strings["- select -"] = "- scegli -"; +$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Hai creato %1$.0f dei %2$.0f canali permessi."; +$a->strings["Create a new channel"] = "Crea un nuovo canale"; +$a->strings["Channel Manager"] = "Gestione canali"; +$a->strings["Current Channel"] = "Canale attuale"; +$a->strings["Attach to one of your channels by selecting it."] = "Seleziona il canale a cui vuoi passare."; +$a->strings["Default Channel"] = "Canale predefinito"; +$a->strings["Make Default"] = "Rendi predefinito"; +$a->strings["Total invitation limit exceeded."] = "Hai superato il numero massimo di inviti."; +$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; +$a->strings["Please join us on Red"] = "Vieni con noi su Red"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario."; +$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["Send invitations"] = "Spedisci 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 some other close friends on the Red Matrix - a revolutionary new decentralised communication and information tool."] = "Questo è un invito cordiale ad unirti a me e ad altri miei amici stretti su Red Matrix - uno nuovo strumento di comunicazione decentralizzato e rivoluzionario."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code"; +$a->strings["Please visit my channel at"] = "Puoi visitare il mio canale su"; +$a->strings["Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:"] = "Una volta che avrai completato la registrazione (su QUALSIASI sito Red Matrix - sono tutti interconnessi), potrai connetterti al mio canale:"; +$a->strings["Click the [Register] link on the following page to join."] = "Fai clic su [Registrati] nella pagina seguente per iscriverti."; +$a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "Per saperne di più sul progetto Red Matrix e sul perché potrebbe cambiare internet per come la conosciamo, visita http://getzot.com"; +$a->strings["Wall Photos"] = "Foto della bacheca"; +$a->strings["No channel."] = "Nessun canale."; +$a->strings["Common connections"] = "Contatti in comune"; +$a->strings["No connections in common."] = "Nessun contatto in comune."; +$a->strings["Please login."] = "Accedi."; +$a->strings["Select a bookmark folder"] = "Scegli una cartella di segnalibri"; +$a->strings["Save Bookmark"] = "Salva segnalibro"; +$a->strings["URL of bookmark"] = "URL del segnalibro"; +$a->strings["Or enter new bookmark folder name"] = "O inserisci il nome di una nuova cartella di segnalibri"; +$a->strings["Update %s failed. See error logs."] = "%s: aggiornamento fallito. Controlla i log di errore."; +$a->strings["Update Error at %s"] = "Errore di aggiornamento su %s"; +$a->strings["Create an account to access services and applications within the Red Matrix"] = "Registrati per accedere ai servizi e alle applicazioni di Red Matrix"; +$a->strings["Password"] = "Password"; +$a->strings["Remember me"] = "Resta connesso"; +$a->strings["Forgot your password?"] = "Hai dimenticato la password?"; +$a->strings["permission denied"] = "permesso negato"; +$a->strings["Got Zot?"] = "Hai Zot?"; +$a->strings["toggle mobile"] = "attiva/disattiva versione mobile"; $a->strings["Theme settings"] = "Impostazioni del tema"; $a->strings["Set scheme"] = "Schema"; -$a->strings["Set font-size for posts and comments"] = "Dimensioni del carattere per articoli e commenti"; -$a->strings["Set font face"] = "Tipo di carattere"; -$a->strings["Set iconset"] = "Icone"; -$a->strings["Set big shadow size, default 15px 15px 15px"] = "Ombra grande, predefinita 15px 15px 15px"; -$a->strings["Set small shadow size, default 5px 5px 5px"] = "Ombra piccola, predefinita 5px 5px 5px"; -$a->strings["Set shadow colour, default #000"] = "Colore dell'ombra, predefinito #000"; -$a->strings["Set radius size, default 5px"] = "Raggio degli angoli, predefinito 5px"; -$a->strings["Set line-height for posts and comments"] = "Altezza della riga per articoli e commenti"; -$a->strings["Set background image"] = "Immagine di sfondo"; -$a->strings["Set background attachment"] = "Imposta un allegato di sfondo"; -$a->strings["Set background colour"] = "Colore di sfondo"; -$a->strings["Set section background image"] = "Immagine di sfondo della sezione"; -$a->strings["Set section background colour"] = "Colore di sfondo della sezione"; -$a->strings["Set colour of items - use hex"] = "Colore degli elementi della pagina - esadecimale"; -$a->strings["Set colour of links - use hex"] = "Colore dei link - esadecimale"; -$a->strings["Set max-width for items. Default 400px"] = "Larghezza massima degli elementi della pagina. Predefinita: 400px"; -$a->strings["Set min-width for items. Default 240px"] = "Larghezza minima degli elementi della pagina. Predefinita: 240px"; -$a->strings["Set the generic content wrapper width. Default 48%"] = "Larghezza di tutta l'area dei contenuti. Predefinita: 48%"; -$a->strings["Set colour of fonts - use hex"] = "Colore dei caratteri - esadecimale"; -$a->strings["Set background-size element"] = "Background-size element"; -$a->strings["Item opacity"] = "Opacità degli elementi della pagina"; -$a->strings["Display post previews only"] = "Mostra le anteprime solo degli articoli"; -$a->strings["Display side bar on channel page"] = "Mostra la colonna laterale sulla pagina del canale"; -$a->strings["Colour of the navigation bar"] = "Colore della barra di navigazione"; -$a->strings["Item float"] = "Float degli oggetti della pagina"; -$a->strings["Left offset of the section element"] = "Spazio a sinistra dell'elemento section"; -$a->strings["Right offset of the section element"] = "Spazio a destra dell'elemento section"; -$a->strings["Section width"] = "Larghezza section"; -$a->strings["Left offset of the aside"] = "Spazio a sinistra del aside"; -$a->strings["Right offset of the aside element"] = "Spazio a destra del aside"; -$a->strings["None"] = "Nessuno"; -$a->strings["Header image"] = "Immagine dell'intestazione"; -$a->strings["Header image only on profile pages"] = "È possibile mettere un'immagine solo nell'intestazione dei profili"; $a->strings["Narrow navbar"] = "Barra di navigazione ristretta"; $a->strings["Navigation bar background colour"] = "Barra di navigazione: Colore di sfondo"; $a->strings["Navigation bar gradient top colour"] = "Barra di navigazione: Gradiente superiore"; @@ -1788,6 +1779,7 @@ $a->strings["Set the indent for comments"] = "Imposta il lo spostamento a destra $a->strings["Set the basic colour for item icons"] = "Colore di base per le icone"; $a->strings["Set the hover colour for item icons"] = "Colore per le icone in evidenza"; $a->strings["Set font-size for the entire application"] = "Dimensione font per tutto il sito"; +$a->strings["Set font-size for posts and comments"] = "Dimensioni del carattere per articoli e commenti"; $a->strings["Set font-colour for posts and comments"] = "Colore del carattere per articoli e commenti"; $a->strings["Set radius of corners"] = "Raggio degli angoli stondati"; $a->strings["Set shadow depth of photos"] = "Profondità dell'ombra delle foto"; @@ -1798,12 +1790,3 @@ $a->strings["Set size of conversation author photo"] = "Dimensione foto dell'aut $a->strings["Set size of followup author photos"] = "Dimensione foto dei partecipanti alla conversazione"; $a->strings["Sloppy photo albums"] = "Album con foto storte"; $a->strings["Are you a clean desk or a messy desk person?"] = "La tua scrivania è sempre a posto? Sei una persona disordinata?"; -$a->strings["Update %s failed. See error logs."] = "%s: aggiornamento fallito. Controlla i log di errore."; -$a->strings["Update Error at %s"] = "Errore di aggiornamento su %s"; -$a->strings["Create an account to access services and applications within the Red Matrix"] = "Registrati per accedere ai servizi e alle applicazioni di Red Matrix"; -$a->strings["Password"] = "Password"; -$a->strings["Remember me"] = "Resta connesso"; -$a->strings["Forgot your password?"] = "Hai dimenticato la password?"; -$a->strings["permission denied"] = "permesso negato"; -$a->strings["Got Zot?"] = "Hai Zot?"; -$a->strings["toggle mobile"] = "attiva/disattiva versione mobile"; diff --git a/view/js/main.js b/view/js/main.js index fa32df424..b388ab940 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -6,21 +6,25 @@ $("#comment-edit-text-" + id).addClass("comment-edit-text-full"); $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty"); $("#mod-cmnt-wrap-" + id).show(); - openMenu("comment-edit-submit-wrapper-" + id); + openMenu("comment-tools-" + id); return true; } return false; } + function commentClose(obj,id) { - if(obj.value == '') { - obj.value = aStr['comment']; - $("#comment-edit-text-" + id).removeClass("comment-edit-text-full"); - $("#comment-edit-text-" + id).addClass("comment-edit-text-empty"); - $("#mod-cmnt-wrap-" + id).hide(); - closeMenu("comment-edit-submit-wrapper-" + id); - return true; - } - return false; + //$(document).on('click', function() { + if(obj.value == '') { + obj.value = aStr['comment']; + $("#comment-edit-text-" + id).removeClass("comment-edit-text-full"); + $("#comment-edit-text-" + id).addClass("comment-edit-text-empty"); + $("#mod-cmnt-wrap-" + id).hide(); + closeMenu("comment-tools-" + id); + return true; + } + return false; + //}); + } function showHideCommentBox(id) { @@ -32,14 +36,13 @@ } } - function commentInsert(obj,id) { var tmpStr = $("#comment-edit-text-" + id).val(); if(tmpStr == '$comment') { tmpStr = ''; $("#comment-edit-text-" + id).addClass("comment-edit-text-full"); $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty"); - openMenu("comment-edit-submit-wrapper-" + id); + openMenu("comment-tools-" + id); } var ins = $(obj).html(); ins = ins.replace('<','<'); @@ -62,7 +65,7 @@ tmpStr = ""; $("#comment-edit-text-" + id).addClass("comment-edit-text-full"); $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty"); - openMenu("comment-edit-submit-wrapper-" + id); + openMenu("comment-tools-" + id); $("#comment-edit-text-" + id).val(tmpStr); } @@ -748,6 +751,7 @@ function updateConvItems(mode,data) { $("#comment-edit-form-" + id).serialize(), function(data) { if(data.success) { + $("#comment-edit-preview-" + id).hide(); $("#comment-edit-wrapper-" + id).hide(); $("#comment-edit-text-" + id).val(''); var tarea = document.getElementById("comment-edit-text-" + id); diff --git a/view/pt-br/messages.po b/view/pt-br/messages.po index 43c996123..fd0e0bcc0 100644 --- a/view/pt-br/messages.po +++ b/view/pt-br/messages.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: Red Matrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-02 00:03-0700\n" -"PO-Revision-Date: 2014-05-03 22:15+0000\n" +"POT-Creation-Date: 2014-05-16 00:02-0700\n" +"PO-Revision-Date: 2014-05-20 06:23+0000\n" "Last-Translator: solstag \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/red-matrix/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -37,6 +37,34 @@ msgstr "Não foi possível localizar a informação de DNS para o servidor de ba msgid "Profile Photos" msgstr "Fotos do perfil" +#: ../../include/apps.php:107 ../../include/nav.php:158 +msgid "Matrix" +msgstr "Matriz" + +#: ../../include/apps.php:107 ../../include/nav.php:161 +msgid "Channel Home" +msgstr "Página inicial do canal" + +#: ../../include/apps.php:107 ../../include/identity.php:942 +#: ../../include/identity.php:1031 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Perfil" + +#: ../../include/apps.php:108 ../../include/conversation.php:1501 +#: ../../include/nav.php:84 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Fotos" + +#: ../../include/apps.php:108 ../../include/conversation.php:1532 +#: ../../include/nav.php:87 ../../include/nav.php:180 ../../mod/events.php:366 +msgid "Events" +msgstr "Eventos" + +#: ../../include/apps.php:108 ../../include/nav.php:147 +#: ../../mod/directory.php:210 +msgid "Directory" +msgstr "Diretório" + #: ../../include/oembed.php:171 msgid "Embedded content" msgstr "Conteúdo incorporado" @@ -55,7 +83,7 @@ msgid "commented on %s's post" msgstr "comentou a publicação de %s" #: ../../include/Contact.php:107 ../../include/identity.php:675 -#: ../../include/widgets.php:115 ../../include/widgets.php:155 +#: ../../include/widgets.php:127 ../../include/widgets.php:167 #: ../../mod/directory.php:183 ../../mod/dirprofile.php:164 #: ../../mod/suggest.php:51 ../../mod/match.php:62 msgid "Connect" @@ -75,7 +103,7 @@ msgstr "Nova página" #: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 #: ../../include/ItemObject.php:96 ../../include/menu.php:42 -#: ../../mod/blocks.php:94 ../../mod/connections.php:391 +#: ../../mod/blocks.php:94 ../../mod/connections.php:392 #: ../../mod/settings.php:577 ../../mod/editblock.php:111 #: ../../mod/editlayout.php:106 ../../mod/editpost.php:112 #: ../../mod/editwebpage.php:143 ../../mod/filestorage.php:174 @@ -89,7 +117,7 @@ msgstr "Editar" msgid "View" msgstr "Ver" -#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:557 +#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:570 #: ../../include/conversation.php:1088 ../../mod/editblock.php:141 #: ../../mod/editlayout.php:135 ../../mod/editpost.php:140 #: ../../mod/editwebpage.php:175 ../../mod/webpages.php:123 @@ -117,203 +145,6 @@ msgstr "Criado" msgid "Edited" msgstr "Editado" -#: ../../include/ItemObject.php:89 ../../include/conversation.php:639 -#: ../../mod/photos.php:846 -msgid "Private Message" -msgstr "Mensagem privada" - -#: ../../include/ItemObject.php:108 ../../include/conversation.php:632 -#: ../../mod/admin.php:757 ../../mod/admin.php:886 ../../mod/connedit.php:398 -#: ../../mod/settings.php:578 ../../mod/filestorage.php:175 -#: ../../mod/group.php:176 ../../mod/thing.php:236 ../../mod/photos.php:1043 -msgid "Delete" -msgstr "Excluir" - -#: ../../include/ItemObject.php:114 ../../include/conversation.php:631 -msgid "Select" -msgstr "Selecionar" - -#: ../../include/ItemObject.php:118 -msgid "save to folder" -msgstr "salvar na pasta" - -#: ../../include/ItemObject.php:146 -msgid "add star" -msgstr "destacar" - -#: ../../include/ItemObject.php:147 -msgid "remove star" -msgstr "remover destaque" - -#: ../../include/ItemObject.php:148 -msgid "toggle star status" -msgstr "alternar destaque" - -#: ../../include/ItemObject.php:152 -msgid "starred" -msgstr "destacado" - -#: ../../include/ItemObject.php:161 ../../include/conversation.php:646 -msgid "Message is verified" -msgstr "A mensagem foi verificada" - -#: ../../include/ItemObject.php:169 -msgid "add tag" -msgstr "adicionar etiqueta" - -#: ../../include/ItemObject.php:184 ../../mod/photos.php:971 -msgid "I like this (toggle)" -msgstr "Eu gostei disso (alterna)" - -#: ../../include/ItemObject.php:184 ../../include/taxonomy.php:254 -msgid "like" -msgstr "gostei" - -#: ../../include/ItemObject.php:185 ../../mod/photos.php:972 -msgid "I don't like this (toggle)" -msgstr "Eu não gostei disso (alterna)" - -#: ../../include/ItemObject.php:185 ../../include/taxonomy.php:255 -msgid "dislike" -msgstr "não gostei" - -#: ../../include/ItemObject.php:187 -msgid "Share this" -msgstr "Compartilhar isso" - -#: ../../include/ItemObject.php:187 -msgid "share" -msgstr "compartilhar" - -#: ../../include/ItemObject.php:211 ../../include/ItemObject.php:212 -#, php-format -msgid "View %s's profile - %s" -msgstr "Ver o perfil de %s - %s" - -#: ../../include/ItemObject.php:213 -msgid "to" -msgstr "para" - -#: ../../include/ItemObject.php:214 -msgid "via" -msgstr "via" - -#: ../../include/ItemObject.php:215 -msgid "Wall-to-Wall" -msgstr "Mural-para-mural" - -#: ../../include/ItemObject.php:216 -msgid "via Wall-To-Wall:" -msgstr "via Mural-para-mural" - -#: ../../include/ItemObject.php:226 ../../include/conversation.php:690 -#, php-format -msgid " from %s" -msgstr "de %s" - -#: ../../include/ItemObject.php:229 ../../include/conversation.php:693 -#, php-format -msgid "last edited: %s" -msgstr "última edição: %s" - -#: ../../include/ItemObject.php:230 ../../include/conversation.php:694 -#, php-format -msgid "Expires: %s" -msgstr "Expira: %s" - -#: ../../include/ItemObject.php:250 -msgid "Bookmark Links" -msgstr "Guardar links" - -#: ../../include/ItemObject.php:259 ../../include/conversation.php:711 -#: ../../include/conversation.php:1127 ../../mod/editblock.php:120 -#: ../../mod/editlayout.php:115 ../../mod/editpost.php:121 -#: ../../mod/editwebpage.php:152 ../../mod/mail.php:222 ../../mod/mail.php:336 -#: ../../mod/photos.php:974 -msgid "Please wait" -msgstr "Por favor, espere" - -#: ../../include/ItemObject.php:280 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d comentário" -msgstr[1] "%d comentários" - -#: ../../include/ItemObject.php:281 ../../include/contact_widgets.php:130 -#: ../../include/js_strings.php:7 -msgid "show more" -msgstr "exibir mais" - -#: ../../include/ItemObject.php:545 ../../mod/photos.php:990 -#: ../../mod/photos.php:1077 -msgid "This is you" -msgstr "Este(a) é você" - -#: ../../include/ItemObject.php:547 ../../include/js_strings.php:6 -#: ../../mod/photos.php:992 ../../mod/photos.php:1079 -msgid "Comment" -msgstr "Comentar" - -#: ../../include/ItemObject.php:548 ../../mod/mood.php:142 -#: ../../mod/admin.php:441 ../../mod/admin.php:750 ../../mod/admin.php:884 -#: ../../mod/admin.php:1017 ../../mod/admin.php:1216 ../../mod/admin.php:1303 -#: ../../mod/poke.php:166 ../../mod/profiles.php:506 ../../mod/chat.php:175 -#: ../../mod/chat.php:208 ../../mod/connect.php:92 ../../mod/connedit.php:476 -#: ../../mod/settings.php:515 ../../mod/settings.php:627 -#: ../../mod/settings.php:655 ../../mod/settings.php:679 -#: ../../mod/settings.php:751 ../../mod/settings.php:929 -#: ../../mod/setup.php:307 ../../mod/setup.php:350 ../../mod/pdledit.php:58 -#: ../../mod/events.php:472 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/filestorage.php:135 -#: ../../mod/fsuggest.php:108 ../../mod/group.php:81 ../../mod/thing.php:283 -#: ../../mod/thing.php:326 ../../mod/import.php:387 ../../mod/invite.php:156 -#: ../../mod/mail.php:223 ../../mod/mail.php:335 ../../mod/photos.php:565 -#: ../../mod/photos.php:670 ../../mod/photos.php:953 ../../mod/photos.php:993 -#: ../../mod/photos.php:1080 ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/blogga/php/config.php:67 -#: ../../view/theme/blogga/view/theme/blog/config.php:67 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Enviar" - -#: ../../include/ItemObject.php:549 -msgid "Bold" -msgstr "Negrito" - -#: ../../include/ItemObject.php:550 -msgid "Italic" -msgstr "Itálico" - -#: ../../include/ItemObject.php:551 -msgid "Underline" -msgstr "Sublinhado" - -#: ../../include/ItemObject.php:552 -msgid "Quote" -msgstr "Citação" - -#: ../../include/ItemObject.php:553 -msgid "Code" -msgstr "Código" - -#: ../../include/ItemObject.php:554 -msgid "Image" -msgstr "Imagem" - -#: ../../include/ItemObject.php:555 -msgid "Link" -msgstr "Link" - -#: ../../include/ItemObject.php:556 -msgid "Video" -msgstr "Vídeo" - -#: ../../include/ItemObject.php:560 ../../include/conversation.php:1153 -#: ../../mod/editpost.php:148 ../../mod/mail.php:228 ../../mod/mail.php:341 -msgid "Encrypt text" -msgstr "Encriptar texto" - #: ../../include/permissions.php:13 msgid "Can view my \"public\" stream and posts" msgstr "Pode ver meus fluxo e publicações \"públicos\"" @@ -456,7 +287,7 @@ msgstr "O registro de %s foi revogado" #: ../../include/attach.php:243 ../../include/attach.php:283 #: ../../include/attach.php:297 ../../include/attach.php:322 #: ../../include/attach.php:513 ../../include/attach.php:585 -#: ../../include/chat.php:113 ../../include/items.php:3622 +#: ../../include/chat.php:116 ../../include/items.php:3645 #: ../../mod/mood.php:119 ../../mod/mitem.php:73 ../../mod/achievements.php:27 #: ../../mod/poke.php:128 ../../mod/api.php:26 ../../mod/api.php:31 #: ../../mod/authtest.php:13 ../../mod/profile.php:64 ../../mod/profile.php:72 @@ -465,7 +296,7 @@ msgstr "O registro de %s foi revogado" #: ../../mod/blocks.php:29 ../../mod/blocks.php:44 ../../mod/profiles.php:152 #: ../../mod/profiles.php:453 ../../mod/bookmarks.php:46 #: ../../mod/channel.php:89 ../../mod/channel.php:193 -#: ../../mod/channel.php:236 ../../mod/chat.php:89 ../../mod/chat.php:94 +#: ../../mod/channel.php:236 ../../mod/chat.php:90 ../../mod/chat.php:95 #: ../../mod/register.php:68 ../../mod/regmod.php:18 ../../mod/common.php:35 #: ../../mod/network.php:12 ../../mod/connections.php:169 #: ../../mod/connedit.php:221 ../../mod/delegate.php:6 ../../mod/page.php:30 @@ -479,14 +310,14 @@ msgstr "O registro de %s foi revogado" #: ../../mod/fsuggest.php:78 ../../mod/suggest.php:26 ../../mod/group.php:9 #: ../../mod/thing.php:247 ../../mod/thing.php:263 ../../mod/thing.php:298 #: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/item.php:179 -#: ../../mod/item.php:187 ../../mod/item.php:860 ../../mod/layouts.php:27 +#: ../../mod/item.php:187 ../../mod/item.php:872 ../../mod/layouts.php:27 #: ../../mod/layouts.php:39 ../../mod/viewconnections.php:22 #: ../../mod/viewconnections.php:27 ../../mod/viewsrc.php:12 #: ../../mod/mail.php:108 ../../mod/manage.php:6 ../../mod/menu.php:44 #: ../../mod/webpages.php:40 ../../mod/message.php:16 #: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97 #: ../../mod/photos.php:68 ../../mod/photos.php:526 -#: ../../mod/notifications.php:66 ../../index.php:176 ../../index.php:351 +#: ../../mod/notifications.php:66 ../../index.php:187 ../../index.php:362 msgid "Permission denied." msgstr "Permissão negada." @@ -528,7 +359,7 @@ msgstr "Exibir" msgid "Don't show" msgstr "Não exibir" -#: ../../include/acl_selectors.php:246 ../../mod/chat.php:206 +#: ../../include/acl_selectors.php:246 ../../mod/chat.php:209 #: ../../mod/filestorage.php:126 ../../mod/photos.php:606 #: ../../mod/photos.php:949 msgid "Permissions" @@ -627,11 +458,11 @@ msgstr "armazenamento de banco de dados falhou." msgid "Logged out." msgstr "Você saiu." -#: ../../include/auth.php:197 +#: ../../include/auth.php:198 msgid "Failed authentication" msgstr "Não foi possível autenticar" -#: ../../include/auth.php:212 ../../mod/openid.php:188 +#: ../../include/auth.php:213 ../../mod/openid.php:188 msgid "Login failed." msgstr "Não foi possível entrar." @@ -649,21 +480,21 @@ msgstr "Fim:" #: ../../include/bb2diaspora.php:455 ../../include/event.php:40 #: ../../include/identity.php:726 ../../mod/directory.php:156 -#: ../../mod/dirprofile.php:105 ../../mod/events.php:465 +#: ../../mod/dirprofile.php:105 ../../mod/events.php:474 msgid "Location:" msgstr "Localização:" -#: ../../include/bbcode.php:128 ../../include/bbcode.php:603 -#: ../../include/bbcode.php:606 ../../include/bbcode.php:611 -#: ../../include/bbcode.php:614 ../../include/bbcode.php:617 -#: ../../include/bbcode.php:620 ../../include/bbcode.php:625 -#: ../../include/bbcode.php:628 ../../include/bbcode.php:633 -#: ../../include/bbcode.php:636 ../../include/bbcode.php:639 -#: ../../include/bbcode.php:642 +#: ../../include/bbcode.php:128 ../../include/bbcode.php:633 +#: ../../include/bbcode.php:636 ../../include/bbcode.php:641 +#: ../../include/bbcode.php:644 ../../include/bbcode.php:647 +#: ../../include/bbcode.php:650 ../../include/bbcode.php:655 +#: ../../include/bbcode.php:658 ../../include/bbcode.php:663 +#: ../../include/bbcode.php:666 ../../include/bbcode.php:669 +#: ../../include/bbcode.php:672 msgid "Image/photo" msgstr "Imagem/foto" -#: ../../include/bbcode.php:163 ../../include/bbcode.php:653 +#: ../../include/bbcode.php:163 ../../include/bbcode.php:683 msgid "Encrypted content" msgstr "Conteúdo criptografado" @@ -671,19 +502,232 @@ msgstr "Conteúdo criptografado" msgid "QR code" msgstr "código QR" -#: ../../include/bbcode.php:213 +#: ../../include/bbcode.php:219 #, php-format msgid "%1$s wrote the following %2$s %3$s" msgstr "%1$s escreveu a seguinte %2$s %3$s" -#: ../../include/bbcode.php:215 +#: ../../include/bbcode.php:221 msgid "post" msgstr "publicação" -#: ../../include/bbcode.php:571 ../../include/bbcode.php:591 +#: ../../include/bbcode.php:601 ../../include/bbcode.php:621 msgid "$1 wrote:" msgstr "$1 escreveu:" +#: ../../include/ItemObject.php:89 ../../include/conversation.php:639 +#: ../../mod/photos.php:846 +msgid "Private Message" +msgstr "Mensagem privada" + +#: ../../include/ItemObject.php:108 ../../include/conversation.php:632 +#: ../../mod/admin.php:757 ../../mod/admin.php:886 ../../mod/connedit.php:398 +#: ../../mod/settings.php:578 ../../mod/filestorage.php:175 +#: ../../mod/group.php:176 ../../mod/thing.php:236 ../../mod/photos.php:1043 +msgid "Delete" +msgstr "Excluir" + +#: ../../include/ItemObject.php:114 ../../include/conversation.php:631 +msgid "Select" +msgstr "Selecionar" + +#: ../../include/ItemObject.php:118 +msgid "save to folder" +msgstr "salvar na pasta" + +#: ../../include/ItemObject.php:128 +msgid "Like" +msgstr "Gostou" + +#: ../../include/ItemObject.php:128 ../../mod/profiles.php:302 +msgid "Likes" +msgstr "Gosta de" + +#: ../../include/ItemObject.php:132 +msgid "Dislike" +msgstr "Desgostou" + +#: ../../include/ItemObject.php:132 ../../mod/profiles.php:306 +msgid "Dislikes" +msgstr "Não gosta de" + +#: ../../include/ItemObject.php:154 +msgid "add star" +msgstr "destacar" + +#: ../../include/ItemObject.php:155 +msgid "remove star" +msgstr "remover destaque" + +#: ../../include/ItemObject.php:156 +msgid "toggle star status" +msgstr "alternar destaque" + +#: ../../include/ItemObject.php:160 +msgid "starred" +msgstr "destacado" + +#: ../../include/ItemObject.php:169 ../../include/conversation.php:646 +msgid "Message is verified" +msgstr "A mensagem foi verificada" + +#: ../../include/ItemObject.php:177 +msgid "add tag" +msgstr "adicionar etiqueta" + +#: ../../include/ItemObject.php:192 ../../mod/photos.php:971 +msgid "I like this (toggle)" +msgstr "Eu gostei disso (alterna)" + +#: ../../include/ItemObject.php:192 ../../include/taxonomy.php:254 +msgid "like" +msgstr "gostei" + +#: ../../include/ItemObject.php:193 ../../mod/photos.php:972 +msgid "I don't like this (toggle)" +msgstr "Eu não gostei disso (alterna)" + +#: ../../include/ItemObject.php:193 ../../include/taxonomy.php:255 +msgid "dislike" +msgstr "não gostei" + +#: ../../include/ItemObject.php:195 +msgid "Share this" +msgstr "Compartilhar isso" + +#: ../../include/ItemObject.php:195 +msgid "share" +msgstr "compartilhar" + +#: ../../include/ItemObject.php:219 ../../include/ItemObject.php:220 +#, php-format +msgid "View %s's profile - %s" +msgstr "Ver o perfil de %s - %s" + +#: ../../include/ItemObject.php:221 +msgid "to" +msgstr "para" + +#: ../../include/ItemObject.php:222 +msgid "via" +msgstr "via" + +#: ../../include/ItemObject.php:223 +msgid "Wall-to-Wall" +msgstr "Mural-para-mural" + +#: ../../include/ItemObject.php:224 +msgid "via Wall-To-Wall:" +msgstr "via Mural-para-mural" + +#: ../../include/ItemObject.php:234 ../../include/conversation.php:690 +#, php-format +msgid " from %s" +msgstr "de %s" + +#: ../../include/ItemObject.php:237 ../../include/conversation.php:693 +#, php-format +msgid "last edited: %s" +msgstr "última edição: %s" + +#: ../../include/ItemObject.php:238 ../../include/conversation.php:694 +#, php-format +msgid "Expires: %s" +msgstr "Expira: %s" + +#: ../../include/ItemObject.php:258 +msgid "Bookmark Links" +msgstr "Guardar links" + +#: ../../include/ItemObject.php:272 ../../include/conversation.php:711 +#: ../../include/conversation.php:1127 ../../mod/editblock.php:120 +#: ../../mod/editlayout.php:115 ../../mod/editpost.php:121 +#: ../../mod/editwebpage.php:152 ../../mod/mail.php:222 ../../mod/mail.php:336 +#: ../../mod/photos.php:974 +msgid "Please wait" +msgstr "Por favor, espere" + +#: ../../include/ItemObject.php:293 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d comentário" +msgstr[1] "%d comentários" + +#: ../../include/ItemObject.php:294 ../../include/contact_widgets.php:130 +#: ../../include/js_strings.php:7 +msgid "show more" +msgstr "exibir mais" + +#: ../../include/ItemObject.php:558 ../../mod/photos.php:990 +#: ../../mod/photos.php:1077 +msgid "This is you" +msgstr "Este(a) é você" + +#: ../../include/ItemObject.php:560 ../../include/js_strings.php:6 +#: ../../mod/photos.php:992 ../../mod/photos.php:1079 +msgid "Comment" +msgstr "Comentar" + +#: ../../include/ItemObject.php:561 ../../mod/mood.php:142 +#: ../../mod/admin.php:441 ../../mod/admin.php:750 ../../mod/admin.php:884 +#: ../../mod/admin.php:1017 ../../mod/admin.php:1216 ../../mod/admin.php:1303 +#: ../../mod/poke.php:166 ../../mod/profiles.php:506 ../../mod/chat.php:177 +#: ../../mod/chat.php:211 ../../mod/connect.php:92 ../../mod/connedit.php:476 +#: ../../mod/settings.php:515 ../../mod/settings.php:627 +#: ../../mod/settings.php:655 ../../mod/settings.php:679 +#: ../../mod/settings.php:751 ../../mod/settings.php:929 +#: ../../mod/setup.php:307 ../../mod/setup.php:350 ../../mod/pdledit.php:58 +#: ../../mod/events.php:481 ../../mod/sources.php:104 +#: ../../mod/sources.php:138 ../../mod/filestorage.php:135 +#: ../../mod/fsuggest.php:108 ../../mod/group.php:81 ../../mod/thing.php:283 +#: ../../mod/thing.php:326 ../../mod/import.php:387 ../../mod/invite.php:156 +#: ../../mod/mail.php:223 ../../mod/mail.php:335 ../../mod/photos.php:565 +#: ../../mod/photos.php:670 ../../mod/photos.php:953 ../../mod/photos.php:993 +#: ../../mod/photos.php:1080 ../../view/theme/apw/php/config.php:256 +#: ../../view/theme/blogga/php/config.php:67 +#: ../../view/theme/blogga/view/theme/blog/config.php:67 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Enviar" + +#: ../../include/ItemObject.php:562 +msgid "Bold" +msgstr "Negrito" + +#: ../../include/ItemObject.php:563 +msgid "Italic" +msgstr "Itálico" + +#: ../../include/ItemObject.php:564 +msgid "Underline" +msgstr "Sublinhado" + +#: ../../include/ItemObject.php:565 +msgid "Quote" +msgstr "Citação" + +#: ../../include/ItemObject.php:566 +msgid "Code" +msgstr "Código" + +#: ../../include/ItemObject.php:567 +msgid "Image" +msgstr "Imagem" + +#: ../../include/ItemObject.php:568 +msgid "Link" +msgstr "Link" + +#: ../../include/ItemObject.php:569 +msgid "Video" +msgstr "Vídeo" + +#: ../../include/ItemObject.php:573 ../../include/conversation.php:1153 +#: ../../mod/editpost.php:148 ../../mod/mail.php:228 ../../mod/mail.php:341 +msgid "Encrypt text" +msgstr "Encriptar texto" + #: ../../include/bookmarks.php:42 #, php-format msgid "%1$s's bookmarks" @@ -701,11 +745,11 @@ msgstr "Nome da sala duplicado" msgid "Invalid room specifier." msgstr "Especificador de sala inválido." -#: ../../include/chat.php:102 +#: ../../include/chat.php:105 msgid "Room not found." msgstr "A sala não foi encontrada." -#: ../../include/chat.php:123 +#: ../../include/chat.php:126 msgid "Room is full" msgstr "A sala está cheia" @@ -859,323 +903,323 @@ msgstr "mais antigo" msgid "newer" msgstr "mais recente" -#: ../../include/text.php:719 +#: ../../include/text.php:729 msgid "No connections" msgstr "Nenhuma conexão" -#: ../../include/text.php:732 +#: ../../include/text.php:742 #, php-format msgid "%d Connection" msgid_plural "%d Connections" msgstr[0] "%d conexão" msgstr[1] "%d conexões" -#: ../../include/text.php:744 +#: ../../include/text.php:754 msgid "View Connections" msgstr "Ver conexões" -#: ../../include/text.php:803 ../../include/text.php:817 +#: ../../include/text.php:813 ../../include/text.php:827 #: ../../include/nav.php:144 ../../mod/search.php:29 msgid "Search" msgstr "Pesquisar" -#: ../../include/text.php:805 ../../include/text.php:819 -#: ../../include/widgets.php:173 ../../mod/rbmark.php:28 +#: ../../include/text.php:815 ../../include/text.php:829 +#: ../../include/widgets.php:185 ../../mod/rbmark.php:28 #: ../../mod/rbmark.php:98 ../../mod/filer.php:50 msgid "Save" msgstr "Salvar" -#: ../../include/text.php:885 +#: ../../include/text.php:895 msgid "poke" msgstr "cutucar" -#: ../../include/text.php:885 ../../include/conversation.php:240 +#: ../../include/text.php:895 ../../include/conversation.php:240 msgid "poked" msgstr "cutucado" -#: ../../include/text.php:886 +#: ../../include/text.php:896 msgid "ping" msgstr "pingar" -#: ../../include/text.php:886 +#: ../../include/text.php:896 msgid "pinged" msgstr "pingou" -#: ../../include/text.php:887 +#: ../../include/text.php:897 msgid "prod" msgstr "espetar" -#: ../../include/text.php:887 +#: ../../include/text.php:897 msgid "prodded" msgstr "espetou" -#: ../../include/text.php:888 +#: ../../include/text.php:898 msgid "slap" msgstr "estapear" -#: ../../include/text.php:888 +#: ../../include/text.php:898 msgid "slapped" msgstr "estapeou" -#: ../../include/text.php:889 +#: ../../include/text.php:899 msgid "finger" msgstr "dar um toque" -#: ../../include/text.php:889 +#: ../../include/text.php:899 msgid "fingered" msgstr "deu um toque" -#: ../../include/text.php:890 +#: ../../include/text.php:900 msgid "rebuff" msgstr "rebater" -#: ../../include/text.php:890 +#: ../../include/text.php:900 msgid "rebuffed" msgstr "rebateu" -#: ../../include/text.php:899 +#: ../../include/text.php:909 msgid "happy" msgstr "feliz" -#: ../../include/text.php:900 +#: ../../include/text.php:910 msgid "sad" msgstr "triste" -#: ../../include/text.php:901 +#: ../../include/text.php:911 msgid "mellow" msgstr "suave" -#: ../../include/text.php:902 +#: ../../include/text.php:912 msgid "tired" msgstr "cansado" -#: ../../include/text.php:903 +#: ../../include/text.php:913 msgid "perky" msgstr "animado/a" -#: ../../include/text.php:904 +#: ../../include/text.php:914 msgid "angry" msgstr "nervoso" -#: ../../include/text.php:905 +#: ../../include/text.php:915 msgid "stupified" msgstr "embasbacado/a" -#: ../../include/text.php:906 +#: ../../include/text.php:916 msgid "puzzled" msgstr "confuso/a" -#: ../../include/text.php:907 +#: ../../include/text.php:917 msgid "interested" msgstr "interessado" -#: ../../include/text.php:908 +#: ../../include/text.php:918 msgid "bitter" msgstr "amargo/a" -#: ../../include/text.php:909 +#: ../../include/text.php:919 msgid "cheerful" msgstr "alegre" -#: ../../include/text.php:910 +#: ../../include/text.php:920 msgid "alive" msgstr "vivo" -#: ../../include/text.php:911 +#: ../../include/text.php:921 msgid "annoyed" msgstr "aborrecido" -#: ../../include/text.php:912 +#: ../../include/text.php:922 msgid "anxious" msgstr "ansioso" -#: ../../include/text.php:913 +#: ../../include/text.php:923 msgid "cranky" msgstr "irritado/a" -#: ../../include/text.php:914 +#: ../../include/text.php:924 msgid "disturbed" msgstr "perturbado" -#: ../../include/text.php:915 +#: ../../include/text.php:925 msgid "frustrated" msgstr "frustrado" -#: ../../include/text.php:916 +#: ../../include/text.php:926 msgid "depressed" msgstr "deprimido" -#: ../../include/text.php:917 +#: ../../include/text.php:927 msgid "motivated" msgstr "motivado" -#: ../../include/text.php:918 +#: ../../include/text.php:928 msgid "relaxed" msgstr "relaxado" -#: ../../include/text.php:919 +#: ../../include/text.php:929 msgid "surprised" msgstr "surpreso" -#: ../../include/text.php:1080 +#: ../../include/text.php:1090 msgid "Monday" msgstr "Segunda" -#: ../../include/text.php:1080 +#: ../../include/text.php:1090 msgid "Tuesday" msgstr "Terça" -#: ../../include/text.php:1080 +#: ../../include/text.php:1090 msgid "Wednesday" msgstr "Quarta" -#: ../../include/text.php:1080 +#: ../../include/text.php:1090 msgid "Thursday" msgstr "Quinta" -#: ../../include/text.php:1080 +#: ../../include/text.php:1090 msgid "Friday" msgstr "Sexta" -#: ../../include/text.php:1080 +#: ../../include/text.php:1090 msgid "Saturday" msgstr "Sábado" -#: ../../include/text.php:1080 +#: ../../include/text.php:1090 msgid "Sunday" msgstr "Domingo" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "January" msgstr "Janeiro" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "February" msgstr "Fevereiro" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "March" msgstr "Março" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "April" msgstr "Abril" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "May" msgstr "Maio" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "June" msgstr "Junho" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "July" msgstr "Julho" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "August" msgstr "Agosto" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "September" msgstr "Setembro" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "October" msgstr "Outubro" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "November" msgstr "Novembro" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "December" msgstr "Dezembro" -#: ../../include/text.php:1162 +#: ../../include/text.php:1172 msgid "unknown.???" msgstr "desconhecido.???" -#: ../../include/text.php:1163 +#: ../../include/text.php:1173 msgid "bytes" msgstr "bytes" -#: ../../include/text.php:1198 +#: ../../include/text.php:1208 msgid "remove category" msgstr "remover categoria" -#: ../../include/text.php:1247 +#: ../../include/text.php:1257 msgid "remove from file" msgstr "remover do arquivo" -#: ../../include/text.php:1308 ../../include/text.php:1320 +#: ../../include/text.php:1318 ../../include/text.php:1330 msgid "Click to open/close" msgstr "Clique para abrir/fechar" -#: ../../include/text.php:1475 ../../mod/events.php:335 +#: ../../include/text.php:1485 ../../mod/events.php:344 msgid "link to source" msgstr "Link para a origem" -#: ../../include/text.php:1494 +#: ../../include/text.php:1504 msgid "Select a page layout: " msgstr "Selecione um layout de página:" -#: ../../include/text.php:1497 ../../include/text.php:1562 +#: ../../include/text.php:1507 ../../include/text.php:1572 msgid "default" msgstr "default" -#: ../../include/text.php:1533 +#: ../../include/text.php:1543 msgid "Page content type: " msgstr "Tipo de conteúdo da página: " -#: ../../include/text.php:1574 +#: ../../include/text.php:1584 msgid "Select an alternate language" msgstr "Selecione um idioma alternativo" -#: ../../include/text.php:1695 ../../include/conversation.php:117 +#: ../../include/text.php:1705 ../../include/conversation.php:117 #: ../../mod/subthread.php:72 ../../mod/subthread.php:174 #: ../../mod/tagger.php:45 ../../mod/like.php:111 msgid "photo" msgstr "foto" -#: ../../include/text.php:1698 ../../include/conversation.php:120 +#: ../../include/text.php:1708 ../../include/conversation.php:120 #: ../../mod/tagger.php:49 msgid "event" msgstr "evento" -#: ../../include/text.php:1701 ../../include/conversation.php:145 +#: ../../include/text.php:1711 ../../include/conversation.php:145 #: ../../mod/subthread.php:72 ../../mod/subthread.php:174 #: ../../mod/tagger.php:53 ../../mod/like.php:111 msgid "status" msgstr "status" -#: ../../include/text.php:1703 ../../include/conversation.php:147 +#: ../../include/text.php:1713 ../../include/conversation.php:147 #: ../../mod/tagger.php:55 msgid "comment" msgstr "comentário" -#: ../../include/text.php:1708 +#: ../../include/text.php:1718 msgid "activity" msgstr "atividade" -#: ../../include/text.php:1967 +#: ../../include/text.php:1977 msgid "Design" msgstr "Design" -#: ../../include/text.php:1969 +#: ../../include/text.php:1979 msgid "Blocks" msgstr "Blocos" -#: ../../include/text.php:1970 +#: ../../include/text.php:1980 msgid "Menus" msgstr "Menus" -#: ../../include/text.php:1971 +#: ../../include/text.php:1981 msgid "Layouts" msgstr "Layouts" -#: ../../include/text.php:1972 +#: ../../include/text.php:1982 msgid "Pages" msgstr "Páginas" @@ -1206,7 +1250,7 @@ msgstr "Conectar/Acompanhar" msgid "Examples: Robert Morgenstein, Fishing" msgstr "Por exemplo: José da Silva, Pescaria" -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:390 +#: ../../include/contact_widgets.php:26 ../../mod/connections.php:391 #: ../../mod/directory.php:206 ../../mod/directory.php:211 msgid "Find" msgstr "Pesquisar" @@ -1232,12 +1276,12 @@ msgid "Advanced Find" msgstr "Busca avançada" #: ../../include/contact_widgets.php:58 ../../include/features.php:66 -#: ../../include/widgets.php:283 +#: ../../include/widgets.php:295 msgid "Saved Folders" msgstr "Pastas salvas" #: ../../include/contact_widgets.php:61 ../../include/contact_widgets.php:95 -#: ../../include/widgets.php:286 +#: ../../include/widgets.php:298 msgid "Everything" msgstr "Tudo" @@ -1580,7 +1624,7 @@ msgstr "Recentemente publicados" msgid "Sort by Post Date" msgstr "Ordenar pela data da publicação" -#: ../../include/conversation.php:1415 +#: ../../include/conversation.php:1415 ../../include/widgets.php:81 msgid "Personal" msgstr "Pessoal" @@ -1588,8 +1632,9 @@ msgstr "Pessoal" msgid "Posts that mention or involve you" msgstr "Publicações que mencionam ou envolvem você" -#: ../../include/conversation.php:1424 ../../mod/connections.php:211 -#: ../../mod/connections.php:223 ../../mod/menu.php:61 +#: ../../include/conversation.php:1424 ../../include/widgets.php:83 +#: ../../mod/connections.php:211 ../../mod/connections.php:224 +#: ../../mod/menu.php:61 msgid "New" msgstr "Novo" @@ -1629,11 +1674,6 @@ msgstr "Sobre" msgid "Profile Details" msgstr "Detalhes do perfil" -#: ../../include/conversation.php:1501 ../../include/nav.php:84 -#: ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Fotos" - #: ../../include/conversation.php:1510 ../../include/nav.php:85 #: ../../mod/fbrowser.php:114 msgid "Files" @@ -1647,11 +1687,6 @@ msgstr "Arquivos e armazenamento" msgid "Chatrooms" msgstr "Salas de bate-papo" -#: ../../include/conversation.php:1532 ../../include/nav.php:87 -#: ../../include/nav.php:180 ../../mod/events.php:357 -msgid "Events" -msgstr "Eventos" - #: ../../include/conversation.php:1535 msgid "Events and Calendar" msgstr "Eventos e calendário" @@ -2050,7 +2085,7 @@ msgstr "Pré-visualizar a publicação" msgid "Allow previewing posts and comments before publishing them" msgstr "Permite visualizar publicações e comentários antes de publicá-los" -#: ../../include/features.php:43 ../../include/widgets.php:490 +#: ../../include/features.php:43 ../../include/widgets.php:502 #: ../../mod/sources.php:88 msgid "Channel Sources" msgstr "Fontes do canal" @@ -2088,7 +2123,7 @@ msgstr "Filtros de coleções" msgid "Enable widget to display Network posts only from selected collections" msgstr "Habilita widget para exibir publicações da rede apenas para determinadas coleções" -#: ../../include/features.php:52 ../../include/widgets.php:252 +#: ../../include/features.php:52 ../../include/widgets.php:264 msgid "Saved Searches" msgstr "Pesquisas salvas" @@ -2212,19 +2247,6 @@ msgstr "a conta local não foi encontrada." msgid "Cannot connect to yourself." msgstr "Não é possível conectar-se consigo mesmo." -#: ../../include/zot.php:583 -msgid "Invalid data packet" -msgstr "Pacote de dados inválido" - -#: ../../include/zot.php:593 -msgid "Unable to verify channel signature" -msgstr "Não foi possível verificar a assinatura do canal" - -#: ../../include/zot.php:790 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Não foi possível verificar a assinatura do site para %s" - #: ../../include/group.php:25 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -2260,11 +2282,11 @@ msgstr "Criar uma nova coleção" msgid "Channels not in any collection" msgstr "Canais que não estão em nenhuma coleção" -#: ../../include/group.php:290 ../../include/widgets.php:253 +#: ../../include/group.php:290 ../../include/widgets.php:265 msgid "add" msgstr "adicionar" -#: ../../include/identity.php:30 ../../mod/item.php:1232 +#: ../../include/identity.php:30 ../../mod/item.php:1244 msgid "Unable to obtain identity information from database" msgstr "Não foi possível obter a informação da identidade a partir do banco de dados" @@ -2302,7 +2324,7 @@ msgid "Default Profile" msgstr "Perfil padrão" #: ../../include/identity.php:342 ../../include/profile_selectors.php:42 -#: ../../include/widgets.php:387 ../../mod/connedit.php:431 +#: ../../include/widgets.php:399 ../../mod/connedit.php:431 msgid "Friends" msgstr "Amigos" @@ -2402,11 +2424,6 @@ msgstr "Lembretes de eventos" msgid "Events this week:" msgstr "Eventos nesta semana:" -#: ../../include/identity.php:942 ../../include/identity.php:1031 -#: ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Perfil" - #: ../../include/identity.php:950 ../../mod/settings.php:937 msgid "Full Name:" msgstr "Nome completo:" @@ -2504,42 +2521,42 @@ msgstr "Trabalho/emprego:" msgid "School/education:" msgstr "Escola/educação:" -#: ../../include/items.php:281 ../../mod/profperm.php:23 +#: ../../include/items.php:306 ../../mod/profperm.php:23 #: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:63 -#: ../../index.php:350 +#: ../../index.php:361 msgid "Permission denied" msgstr "Permissão negada" -#: ../../include/items.php:805 +#: ../../include/items.php:830 msgid "(Unknown)" msgstr "(Desconhecido)" -#: ../../include/items.php:3560 ../../mod/admin.php:159 +#: ../../include/items.php:3583 ../../mod/admin.php:159 #: ../../mod/admin.php:921 ../../mod/admin.php:1124 ../../mod/display.php:32 #: ../../mod/filestorage.php:18 ../../mod/home.php:63 ../../mod/thing.php:78 #: ../../mod/viewsrc.php:18 msgid "Item not found." msgstr "O item não foi encontrado." -#: ../../include/items.php:3984 ../../mod/group.php:38 ../../mod/group.php:140 +#: ../../include/items.php:4007 ../../mod/group.php:38 ../../mod/group.php:140 msgid "Collection not found." msgstr "A coleção não foi encontrada." -#: ../../include/items.php:3999 +#: ../../include/items.php:4022 msgid "Collection is empty." msgstr "A coleção está vazia." -#: ../../include/items.php:4006 +#: ../../include/items.php:4029 #, php-format msgid "Collection: %s" msgstr "Coleção: %s" -#: ../../include/items.php:4017 +#: ../../include/items.php:4040 #, php-format msgid "Connection: %s" msgstr "Conexão: %s" -#: ../../include/items.php:4020 +#: ../../include/items.php:4043 msgid "Connection not found." msgstr "A conexão não foi encontrada." @@ -2583,76 +2600,80 @@ msgstr "Dica da frase secreta" msgid "Notice: Permissions have changed but have not yet been submitted." msgstr "Atenção: permissões foram modificadas mas ainda não foram enviadas." -#: ../../include/js_strings.php:18 +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "fechar tudo" + +#: ../../include/js_strings.php:19 msgid "timeago.prefixAgo" msgstr "timeago.prefixAgo" -#: ../../include/js_strings.php:19 +#: ../../include/js_strings.php:20 msgid "timeago.prefixFromNow" msgstr "timeago.prefixFromNow" -#: ../../include/js_strings.php:20 +#: ../../include/js_strings.php:21 msgid "ago" msgstr "atrás" -#: ../../include/js_strings.php:21 +#: ../../include/js_strings.php:22 msgid "from now" msgstr "de agora" -#: ../../include/js_strings.php:22 +#: ../../include/js_strings.php:23 msgid "less than a minute" msgstr "menos de um minuto" -#: ../../include/js_strings.php:23 +#: ../../include/js_strings.php:24 msgid "about a minute" msgstr "aproximadamente um minuto" -#: ../../include/js_strings.php:24 +#: ../../include/js_strings.php:25 #, php-format msgid "%d minutes" msgstr "%d minutos" -#: ../../include/js_strings.php:25 +#: ../../include/js_strings.php:26 msgid "about an hour" msgstr "aproximadamente uma hora" -#: ../../include/js_strings.php:26 +#: ../../include/js_strings.php:27 #, php-format msgid "about %d hours" msgstr "aproximadamente %d horas" -#: ../../include/js_strings.php:27 +#: ../../include/js_strings.php:28 msgid "a day" msgstr "um dia" -#: ../../include/js_strings.php:28 +#: ../../include/js_strings.php:29 #, php-format msgid "%d days" msgstr "%d dias" -#: ../../include/js_strings.php:29 +#: ../../include/js_strings.php:30 msgid "about a month" msgstr "aproximadamente um mês" -#: ../../include/js_strings.php:30 +#: ../../include/js_strings.php:31 #, php-format msgid "%d months" msgstr "%d meses" -#: ../../include/js_strings.php:31 +#: ../../include/js_strings.php:32 msgid "about a year" msgstr "aproximadamente um ano" -#: ../../include/js_strings.php:32 +#: ../../include/js_strings.php:33 #, php-format msgid "%d years" msgstr "%d anos" -#: ../../include/js_strings.php:33 +#: ../../include/js_strings.php:34 msgid " " msgstr " " -#: ../../include/js_strings.php:34 +#: ../../include/js_strings.php:35 msgid "timeago.numbers" msgstr "timeago.numbers" @@ -2765,7 +2786,7 @@ msgstr "Ajuda" msgid "Help and documentation" msgstr "Ajuda e documentação" -#: ../../include/nav.php:142 +#: ../../include/nav.php:142 ../../mod/apps.php:17 msgid "Apps" msgstr "Aplicações" @@ -2777,18 +2798,10 @@ msgstr "Aplicações adicionais, utilitários, jogos" msgid "Search site content" msgstr "Pesquisar o conteúdo do site" -#: ../../include/nav.php:147 ../../mod/directory.php:210 -msgid "Directory" -msgstr "Diretório" - #: ../../include/nav.php:147 msgid "Channel Locator" msgstr "Localizador de canais" -#: ../../include/nav.php:158 -msgid "Matrix" -msgstr "Matriz" - #: ../../include/nav.php:158 msgid "Your matrix" msgstr "Sua matriz" @@ -2797,10 +2810,6 @@ msgstr "Sua matriz" msgid "Mark all matrix notifications seen" msgstr "Marcar todas as notificações da matriz como vistas" -#: ../../include/nav.php:161 -msgid "Channel Home" -msgstr "Página inicial do canal" - #: ../../include/nav.php:161 msgid "Channel home" msgstr "Página inicial do canal" @@ -2810,7 +2819,7 @@ msgid "Mark all channel notifications seen" msgstr "Marcar todas as notificações de canais como vistas" #: ../../include/nav.php:165 ../../include/nav.php:188 -#: ../../mod/connections.php:384 +#: ../../mod/connections.php:385 msgid "Connections" msgstr "Conexões" @@ -2826,7 +2835,7 @@ msgstr "Notificações" msgid "See all notifications" msgstr "Ver todas as notificações" -#: ../../include/nav.php:170 +#: ../../include/nav.php:170 ../../mod/notifications.php:99 msgid "Mark all system notifications seen" msgstr "Marcar todas as notificações de sistema como vistas" @@ -2854,7 +2863,7 @@ msgstr "Recebidas" msgid "Outbox" msgstr "Enviadas" -#: ../../include/nav.php:177 ../../include/widgets.php:523 +#: ../../include/nav.php:177 ../../include/widgets.php:535 msgid "New Message" msgstr "Nova mensagem" @@ -2878,7 +2887,7 @@ msgstr "Seleção de canal" msgid "Manage Your Channels" msgstr "Gerencie os seus canais" -#: ../../include/nav.php:186 ../../include/widgets.php:501 +#: ../../include/nav.php:186 ../../include/widgets.php:513 #: ../../mod/admin.php:976 ../../mod/admin.php:1181 msgid "Settings" msgstr "Configurações" @@ -2911,15 +2920,15 @@ msgstr "Por favor, aguarde..." msgid "view full size" msgstr "ver na tela inteira" -#: ../../include/plugin.php:475 ../../include/plugin.php:477 +#: ../../include/plugin.php:486 ../../include/plugin.php:488 msgid "Click here to upgrade." msgstr "Clique aqui para atualizar." -#: ../../include/plugin.php:483 +#: ../../include/plugin.php:494 msgid "This action exceeds the limits set by your subscription plan." msgstr "Essa ação excede o limite definido para o seu plano de assinatura." -#: ../../include/plugin.php:488 +#: ../../include/plugin.php:499 msgid "This action is not available under your subscription plan." msgstr "Essa ação não está disponível para o seu plano de assinatura." @@ -3151,134 +3160,159 @@ msgstr "Não importa" msgid "Ask me" msgstr "Pergunte-me" -#: ../../include/reddav.php:1069 +#: ../../include/reddav.php:1045 msgid "Edit File properties" msgstr "Editar propriedades do arquivo" -#: ../../include/security.php:295 +#: ../../include/zot.php:587 +msgid "Invalid data packet" +msgstr "Pacote de dados inválido" + +#: ../../include/zot.php:597 +msgid "Unable to verify channel signature" +msgstr "Não foi possível verificar a assinatura do canal" + +#: ../../include/zot.php:794 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Não foi possível verificar a assinatura do site para %s" + +#: ../../include/security.php:301 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." msgstr "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão." -#: ../../include/widgets.php:117 ../../mod/suggest.php:53 +#: ../../include/widgets.php:79 +msgid "App Category" +msgstr "Categoria de aplicativos" + +#: ../../include/widgets.php:80 +msgid "System" +msgstr "Sistema" + +#: ../../include/widgets.php:82 +msgid "Featured" +msgstr "Destacado" + +#: ../../include/widgets.php:129 ../../mod/suggest.php:53 msgid "Ignore/Hide" msgstr "Ignorar/Ocultar" -#: ../../include/widgets.php:123 ../../mod/connections.php:265 +#: ../../include/widgets.php:135 ../../mod/connections.php:266 msgid "Suggestions" msgstr "Sugestões" -#: ../../include/widgets.php:124 +#: ../../include/widgets.php:136 msgid "See more..." msgstr "Veja mais..." -#: ../../include/widgets.php:146 +#: ../../include/widgets.php:158 #, php-format msgid "You have %1$.0f of %2$.0f allowed connections." msgstr "Você tem %1$.0f de %2$.0f conexões permitidas." -#: ../../include/widgets.php:152 +#: ../../include/widgets.php:164 msgid "Add New Connection" msgstr "Adicionar nova conexão" -#: ../../include/widgets.php:153 +#: ../../include/widgets.php:165 msgid "Enter the channel address" msgstr "Digite o endereço do canal" -#: ../../include/widgets.php:154 +#: ../../include/widgets.php:166 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Por exemplo: joao@exemplo.com, http://exemplo.com/maria" -#: ../../include/widgets.php:171 +#: ../../include/widgets.php:183 msgid "Notes" msgstr "Notas" -#: ../../include/widgets.php:243 +#: ../../include/widgets.php:255 msgid "Remove term" msgstr "Remover termo" -#: ../../include/widgets.php:322 +#: ../../include/widgets.php:334 msgid "Archives" msgstr "Arquivos" -#: ../../include/widgets.php:384 +#: ../../include/widgets.php:396 msgid "Refresh" msgstr "Atualizar" -#: ../../include/widgets.php:385 ../../mod/connedit.php:428 +#: ../../include/widgets.php:397 ../../mod/connedit.php:428 msgid "Me" msgstr "Eu" -#: ../../include/widgets.php:386 ../../mod/connedit.php:430 +#: ../../include/widgets.php:398 ../../mod/connedit.php:430 msgid "Best Friends" msgstr "Melhores amigos" -#: ../../include/widgets.php:388 +#: ../../include/widgets.php:400 msgid "Co-workers" msgstr "Colegas de trabalho" -#: ../../include/widgets.php:389 ../../mod/connedit.php:432 +#: ../../include/widgets.php:401 ../../mod/connedit.php:432 msgid "Former Friends" msgstr "Amigos afastados" -#: ../../include/widgets.php:390 ../../mod/connedit.php:433 +#: ../../include/widgets.php:402 ../../mod/connedit.php:433 msgid "Acquaintances" msgstr "Conhecidos" -#: ../../include/widgets.php:391 +#: ../../include/widgets.php:403 msgid "Everybody" msgstr "Todos" -#: ../../include/widgets.php:423 +#: ../../include/widgets.php:435 msgid "Account settings" msgstr "Configurações da conta" -#: ../../include/widgets.php:429 +#: ../../include/widgets.php:441 msgid "Channel settings" msgstr "Configurações do canal" -#: ../../include/widgets.php:435 +#: ../../include/widgets.php:447 msgid "Additional features" msgstr "Recursos adicionais" -#: ../../include/widgets.php:441 +#: ../../include/widgets.php:453 msgid "Feature settings" msgstr "Configurações dos recursos" -#: ../../include/widgets.php:447 +#: ../../include/widgets.php:459 msgid "Display settings" msgstr "Configurações de exibição" -#: ../../include/widgets.php:453 +#: ../../include/widgets.php:465 msgid "Connected apps" msgstr "Aplicações conectadas" -#: ../../include/widgets.php:459 +#: ../../include/widgets.php:471 msgid "Export channel" msgstr "Exportar o canal" -#: ../../include/widgets.php:471 +#: ../../include/widgets.php:483 msgid "Automatic Permissions (Advanced)" msgstr "Permissões automáticas (avançado)" -#: ../../include/widgets.php:481 +#: ../../include/widgets.php:493 msgid "Premium Channel Settings" msgstr "Configurações de canal premium" -#: ../../include/widgets.php:518 +#: ../../include/widgets.php:530 msgid "Check Mail" msgstr "Checar mensagens" -#: ../../include/widgets.php:599 +#: ../../include/widgets.php:611 msgid "Chat Rooms" msgstr "Salas de bate-papo" -#: ../../include/widgets.php:617 +#: ../../include/widgets.php:629 msgid "Bookmarked Chatrooms" msgstr "Salas de bate-papo guardadas" -#: ../../include/widgets.php:635 +#: ../../include/widgets.php:647 msgid "Suggested Chatrooms" msgstr "Salas de bate-papo sugeridas" @@ -4103,14 +4137,6 @@ msgstr "Autenticação remota bloqueada. Você está autenticado neste site loca msgid "Welcome %s. Remote authentication successful." msgstr "Bem vindo %s. Autenticação remota realizada com sucesso." -#: ../../mod/apps.php:8 -msgid "No installed applications." -msgstr "Não existe nenhuma aplicação instalada." - -#: ../../mod/apps.php:13 -msgid "Applications" -msgstr "Aplicações" - #: ../../mod/attach.php:9 msgid "Item not available." msgstr "O item não está disponível." @@ -4130,7 +4156,7 @@ msgid "Channel not found." msgstr "O canal não foi encontrado." #: ../../mod/block.php:75 ../../mod/page.php:83 ../../mod/display.php:100 -#: ../../mod/help.php:72 ../../index.php:226 +#: ../../mod/help.php:72 ../../index.php:237 msgid "Page not found." msgstr "Página não encontrada." @@ -4251,14 +4277,6 @@ msgstr "Estado civil" msgid "Romantic Partner" msgstr "Parceiro/a romântico/a" -#: ../../mod/profiles.php:302 -msgid "Likes" -msgstr "Gosta de" - -#: ../../mod/profiles.php:306 -msgid "Dislikes" -msgstr "Não gosta de" - #: ../../mod/profiles.php:310 msgid "Work/Employment" msgstr "Trabalho/Emprego" @@ -4495,7 +4513,7 @@ msgstr "Clique em um contato para adicionar ou remover." msgid "Visible To" msgstr "Visível para" -#: ../../mod/profperm.php:139 ../../mod/connections.php:277 +#: ../../mod/profperm.php:139 ../../mod/connections.php:278 msgid "All Connections" msgstr "Todas as conexões" @@ -4556,35 +4574,39 @@ msgstr "Descrição" msgid "Or enter new bookmark folder name" msgstr "Ou digite o nome para uma nova pasta de links" -#: ../../mod/chat.php:166 +#: ../../mod/chat.php:167 msgid "Room not found" msgstr "Sala não encontrada" -#: ../../mod/chat.php:176 +#: ../../mod/chat.php:178 msgid "Leave Room" msgstr "Sair da sala" -#: ../../mod/chat.php:177 +#: ../../mod/chat.php:179 +msgid "Delete This Room" +msgstr "Deletar esta sala" + +#: ../../mod/chat.php:180 msgid "I am away right now" msgstr "Eu estou ausente no momento" -#: ../../mod/chat.php:178 +#: ../../mod/chat.php:181 msgid "I am online" msgstr "Eu estou online" -#: ../../mod/chat.php:180 +#: ../../mod/chat.php:183 msgid "Bookmark this room" msgstr "Guarde esta sala" -#: ../../mod/chat.php:204 ../../mod/chat.php:226 +#: ../../mod/chat.php:207 ../../mod/chat.php:229 msgid "New Chatroom" msgstr "Nova sala de bate-papo" -#: ../../mod/chat.php:205 +#: ../../mod/chat.php:208 msgid "Chatroom Name" msgstr "Nome da sala de bate-papo" -#: ../../mod/chat.php:222 +#: ../../mod/chat.php:225 #, php-format msgid "%1$s's Chatrooms" msgstr "Salas de bate-papo de %1$s" @@ -4829,88 +4851,88 @@ msgstr "A conexão foi atualizada." msgid "Failed to update connection record." msgstr "Não foi possível atualizar o registro da conexão." -#: ../../mod/connections.php:191 ../../mod/connections.php:290 +#: ../../mod/connections.php:191 ../../mod/connections.php:291 msgid "Blocked" msgstr "Bloqueado" -#: ../../mod/connections.php:196 ../../mod/connections.php:297 +#: ../../mod/connections.php:196 ../../mod/connections.php:298 msgid "Ignored" msgstr "Ignorado" -#: ../../mod/connections.php:201 ../../mod/connections.php:311 +#: ../../mod/connections.php:201 ../../mod/connections.php:312 msgid "Hidden" msgstr "Oculto" -#: ../../mod/connections.php:206 ../../mod/connections.php:304 +#: ../../mod/connections.php:206 ../../mod/connections.php:305 msgid "Archived" msgstr "Arquivado" -#: ../../mod/connections.php:229 ../../mod/connections.php:243 +#: ../../mod/connections.php:230 ../../mod/connections.php:244 msgid "All" msgstr "Todos" -#: ../../mod/connections.php:238 ../../mod/connections.php:318 +#: ../../mod/connections.php:239 ../../mod/connections.php:319 msgid "Unconnected" msgstr "Não conectado" -#: ../../mod/connections.php:268 +#: ../../mod/connections.php:269 msgid "Suggest new connections" msgstr "Sugerir novas conexões" -#: ../../mod/connections.php:271 +#: ../../mod/connections.php:272 msgid "New Connections" msgstr "Novas conexões" -#: ../../mod/connections.php:274 +#: ../../mod/connections.php:275 msgid "Show pending (new) connections" msgstr "Exibir conexões pendentes (novas)" -#: ../../mod/connections.php:280 +#: ../../mod/connections.php:281 msgid "Show all connections" msgstr "Exibir todas as conexões" -#: ../../mod/connections.php:283 +#: ../../mod/connections.php:284 msgid "Unblocked" msgstr "Não bloqueado" -#: ../../mod/connections.php:286 +#: ../../mod/connections.php:287 msgid "Only show unblocked connections" msgstr "Exibir apenas conexões não bloqueadas" -#: ../../mod/connections.php:293 +#: ../../mod/connections.php:294 msgid "Only show blocked connections" msgstr "Exibir apenas conexões bloqueadas" -#: ../../mod/connections.php:300 +#: ../../mod/connections.php:301 msgid "Only show ignored connections" msgstr "Exibir apenas conexões ignoradas" -#: ../../mod/connections.php:307 +#: ../../mod/connections.php:308 msgid "Only show archived connections" msgstr "Exibir apenas conexões arquivadas" -#: ../../mod/connections.php:314 +#: ../../mod/connections.php:315 msgid "Only show hidden connections" msgstr "Exibir apenas conexões ocultas" -#: ../../mod/connections.php:321 +#: ../../mod/connections.php:322 msgid "Only show one-way connections" msgstr "Exibir apenas conexões de mão única" -#: ../../mod/connections.php:366 +#: ../../mod/connections.php:367 #, php-format msgid "%1$s [%2$s]" msgstr "%1$s [%2$s]" -#: ../../mod/connections.php:367 +#: ../../mod/connections.php:368 msgid "Edit contact" msgstr "Editar o contato" -#: ../../mod/connections.php:388 +#: ../../mod/connections.php:389 msgid "Search your connections" msgstr "Pesquisar em suas conexões" -#: ../../mod/connections.php:389 +#: ../../mod/connections.php:390 msgid "Finding: " msgstr "Pesquisando: " @@ -5773,7 +5795,7 @@ msgid "" "phpmyadmin or mysql." msgstr "Pode ser que você precise importar o arquivo \"install/database.sql\" manualmente, usando o phpmyadmin or mysql." -#: ../../mod/setup.php:191 ../../mod/setup.php:260 ../../mod/setup.php:641 +#: ../../mod/setup.php:191 ../../mod/setup.php:260 ../../mod/setup.php:655 msgid "Please see the file \"install/INSTALL.txt\"." msgstr "Por favor, veja o arquivo \"install/INSTALL.txt\"." @@ -5781,7 +5803,7 @@ msgstr "Por favor, veja o arquivo \"install/INSTALL.txt\"." msgid "System check" msgstr "Checagem do sistema" -#: ../../mod/setup.php:261 ../../mod/events.php:360 +#: ../../mod/setup.php:261 ../../mod/events.php:369 msgid "Next" msgstr "Próximo" @@ -6054,71 +6076,73 @@ msgstr "A Red usa o diretório store para salvar arquivos carregados. O servidor msgid "store is writable" msgstr "store tem permissão de escrita" -#: ../../mod/setup.php:554 +#: ../../mod/setup.php:569 msgid "" "SSL certificate cannot be validated. Fix certificate or disable https access" " to this site." msgstr "Não foi possível validar o certificado SSL. Corrija o certificado ou desabilite o acesso via https ao site." -#: ../../mod/setup.php:555 +#: ../../mod/setup.php:570 msgid "" -"If you use https access, you MUST use a certification instance known by all " -"internet browsers. You MUST NOT use self-signed certificates!" -msgstr "Se você utiliza acesso https, você DEVE usar uma instância de certificação reconhecida por todos os navegadores de internet. Você NÃO DEVE usar certificados assinados por você mesmo!" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" +msgstr "Se você oferece acesso https ao seu website ou permite conexões na porta TCP 443 (a porta https:), você DEVE usar um certificado reconhecido pelos navegadores. Você NÃO DEVE usar certificados assinados por você mesmo!" -#: ../../mod/setup.php:556 +#: ../../mod/setup.php:571 msgid "" "This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub. If your" -msgstr "Essa restrição é incorporada porque publicações públicas de você podem por exemplo conter referências a imagens no seu próprio hub. Se seu" +"example contain references to images on your own hub." +msgstr "Essa restrição é incorporada porque publicações públicas suas podem, por exemplo, conter referências a imagens no seu próprio hub." -#: ../../mod/setup.php:557 +#: ../../mod/setup.php:572 msgid "" -"certificate is not known by the internet browser of users they get a warning" -" message complaining about some security issues. Although" -msgstr "certificado não é conhecido pelo navegador de internet do usuário eles receberão um alerta reclamando de alguns problemas de segurança. Apesar" +"If your certificate is not recognised, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." +msgstr "Se seu certificado não for reconhecido, membros de outros sites (que podem ter certificados válidos) receberão uma mensagem de aviso nos seus próprios sites reclamando de problemas de segurança." -#: ../../mod/setup.php:558 +#: ../../mod/setup.php:573 msgid "" -"these complains are not the real truth - there are no security issues with " -"your encryption! - the users may be confused, nerved or even" -msgstr "dessas reclamações não serem a real verdade - não há problemas de segurança com sua encriptação! - os usuários podem ser confundidos, enervados ou pior" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "Isso pode causar problemas de usabilidade (não só no seu site) então nós precisamos insistir nesse requisito." -#: ../../mod/setup.php:559 +#: ../../mod/setup.php:574 msgid "" -"worse may become scared about redmatrix having security issues. Use one of " -"the free certification instances!" -msgstr "ainda podem ficar com medo da redmatrix ter problemas de segurança. Use uma das instâncias certificadoras gratuitas!" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Existem provedores que disponibilizam gratuitamente certificados reconhecidos por navegadores." -#: ../../mod/setup.php:561 +#: ../../mod/setup.php:576 msgid "SSL certificate validation" msgstr "Validação do certificado SSL" -#: ../../mod/setup.php:568 +#: ../../mod/setup.php:582 msgid "" "Url rewrite in .htaccess is not working. Check your server configuration." msgstr "A reescrita de URLs não está funcionando no .htaccess. Verifique as configurações do servidor." -#: ../../mod/setup.php:570 +#: ../../mod/setup.php:584 msgid "Url rewrite is working" msgstr "A reescrita de URLs está funcionando" -#: ../../mod/setup.php:580 +#: ../../mod/setup.php:594 msgid "" "The database configuration file \".htconfig.php\" could not be written. " "Please use the enclosed text to create a configuration file in your web " "server root." msgstr "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web." -#: ../../mod/setup.php:604 +#: ../../mod/setup.php:618 msgid "Errors encountered creating database tables." msgstr "Foram encontrados erros durante a criação das tabelas do banco de dados." -#: ../../mod/setup.php:639 +#: ../../mod/setup.php:653 msgid "

What next

" msgstr "

Próximos passos

" -#: ../../mod/setup.php:640 +#: ../../mod/setup.php:654 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." @@ -6260,64 +6284,64 @@ msgstr "Administradores do site" msgid "Event title and start time are required." msgstr "O título do evento e a hora de início são obrigatórios." -#: ../../mod/events.php:290 +#: ../../mod/events.php:299 msgid "l, F j" msgstr "l, F j" -#: ../../mod/events.php:312 +#: ../../mod/events.php:321 msgid "Edit event" msgstr "Editar o evento" -#: ../../mod/events.php:358 +#: ../../mod/events.php:367 msgid "Create New Event" msgstr "Criar um novo evento" -#: ../../mod/events.php:359 +#: ../../mod/events.php:368 msgid "Previous" msgstr "Anterior" -#: ../../mod/events.php:431 +#: ../../mod/events.php:439 msgid "hour:minute" msgstr "hora:minuto" -#: ../../mod/events.php:450 +#: ../../mod/events.php:459 msgid "Event details" msgstr "Detalhes do evento" -#: ../../mod/events.php:451 +#: ../../mod/events.php:460 #, php-format msgid "Format is %s %s. Starting date and Title are required." msgstr "O formato é %s %s. A data de início e o título são obrigatórios." -#: ../../mod/events.php:453 +#: ../../mod/events.php:462 msgid "Event Starts:" msgstr "Início do evento:" -#: ../../mod/events.php:453 ../../mod/events.php:467 +#: ../../mod/events.php:462 ../../mod/events.php:476 msgid "Required" msgstr "Obrigatório" -#: ../../mod/events.php:456 +#: ../../mod/events.php:465 msgid "Finish date/time is not known or not relevant" msgstr "A data/hora de término não é conhecida ou não é relevante" -#: ../../mod/events.php:458 +#: ../../mod/events.php:467 msgid "Event Finishes:" msgstr "Término do evento:" -#: ../../mod/events.php:461 +#: ../../mod/events.php:470 msgid "Adjust for viewer timezone" msgstr "Ajustar para o fuso horário do visualizador" -#: ../../mod/events.php:463 +#: ../../mod/events.php:472 msgid "Description:" msgstr "Descrição:" -#: ../../mod/events.php:467 +#: ../../mod/events.php:476 msgid "Title:" msgstr "Título:" -#: ../../mod/events.php:469 +#: ../../mod/events.php:478 msgid "Share this event" msgstr "Compartilhar este evento" @@ -6525,7 +6549,7 @@ msgstr "%1$s etiquetou %3$s de %2$s com %4$s" msgid "Help:" msgstr "Ajuda:" -#: ../../mod/help.php:69 ../../index.php:223 +#: ../../mod/help.php:69 ../../index.php:234 msgid "Not Found" msgstr "Não encontrada" @@ -6765,24 +6789,24 @@ msgstr "Para maiores informações sobre o Projeto Red Matrix e porque ele tem p msgid "Unable to locate original post." msgstr "Não foi possível localizar a publicação original." -#: ../../mod/item.php:345 +#: ../../mod/item.php:352 msgid "Empty post discarded." msgstr "A publicação em branco foi descartada." -#: ../../mod/item.php:385 +#: ../../mod/item.php:392 msgid "Executable content type not permitted to this channel." msgstr "Conteúdo de tipo executável não permitido para este canal." -#: ../../mod/item.php:794 +#: ../../mod/item.php:806 msgid "System error. Post not saved." msgstr "Erro no sistema. A publicação não foi salva." -#: ../../mod/item.php:1237 +#: ../../mod/item.php:1249 #, php-format msgid "You have reached your limit of %1$.0f top level posts." msgstr "Você atingiu o seu limite de %1$.0f publicações de novos tópicos." -#: ../../mod/item.php:1243 +#: ../../mod/item.php:1255 #, php-format msgid "You have reached your limit of %1$.0f webpages." msgstr "Você atingiu o seu limite de %1$.0f páginas web." @@ -6808,16 +6832,16 @@ msgstr "Não existe informação disponível sobre a privacidade remota." msgid "Visible to:" msgstr "Visível para:" -#: ../../mod/viewconnections.php:50 +#: ../../mod/viewconnections.php:58 msgid "No connections." msgstr "Nenhuma conexão." -#: ../../mod/viewconnections.php:62 +#: ../../mod/viewconnections.php:70 #, php-format msgid "Visit %s's profile [%s]" msgstr "Ver o perfil de %s [%s]" -#: ../../mod/viewconnections.php:77 +#: ../../mod/viewconnections.php:85 msgid "View Connnections" msgstr "Ver conexões" @@ -7291,11 +7315,11 @@ msgstr "Identificador de solicitação inválido" msgid "Discard" msgstr "Descartar" -#: ../../mod/notifications.php:93 ../../mod/notify.php:54 +#: ../../mod/notifications.php:94 ../../mod/notify.php:54 msgid "No more system notifications." msgstr "Sem novas notificações do sistema." -#: ../../mod/notifications.php:97 ../../mod/notify.php:58 +#: ../../mod/notifications.php:98 ../../mod/notify.php:58 msgid "System Notifications" msgstr "Notificações do sistema" @@ -7541,8 +7565,8 @@ msgid "Set the border colour of comments" msgstr "Definir a cor da borda dos comentários" #: ../../view/theme/redbasic/php/config.php:120 -msgid "Set the opacity of items" -msgstr "Definir a opacidade de items" +msgid "Set the indent for comments" +msgstr "Definir a indentação de comentários" #: ../../view/theme/redbasic/php/config.php:121 msgid "Set the basic colour for item icons" diff --git a/view/pt-br/register_open_eml.tpl b/view/pt-br/register_open_eml.tpl index 6dd4b714b..f25b8b4dd 100644 --- a/view/pt-br/register_open_eml.tpl +++ b/view/pt-br/register_open_eml.tpl @@ -4,7 +4,7 @@ Os detalhes de autenticação são os seguintes: Localização do site: {{$siteurl}} Nome: {{$email}} -Senha: (the password which was provided during registration) +Senha: (a senha escolhida ao registrar a conta) Se esta conta foi criada sem seu conhecimento e não é desejada, você pode visitar o site e reiniciar a senha. Isso permitirá que você a remova a partir diff --git a/view/pt-br/strings.php b/view/pt-br/strings.php index 053059a66..7ee579fae 100644 --- a/view/pt-br/strings.php +++ b/view/pt-br/strings.php @@ -7,6 +7,12 @@ function string_plural_select_pt_br($n){ ; $a->strings["Cannot locate DNS info for database server '%s'"] = "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'"; $a->strings["Profile Photos"] = "Fotos do perfil"; +$a->strings["Matrix"] = "Matriz"; +$a->strings["Channel Home"] = "Página inicial do canal"; +$a->strings["Profile"] = "Perfil"; +$a->strings["Photos"] = "Fotos"; +$a->strings["Events"] = "Eventos"; +$a->strings["Directory"] = "Diretório"; $a->strings["Embedded content"] = "Conteúdo incorporado"; $a->strings["Embedding disabled"] = "A incorporação está desabilitada"; $a->strings["created a new post"] = "criou uma nova publicação"; @@ -23,49 +29,6 @@ $a->strings["Page Link"] = "Link da página"; $a->strings["Title"] = "Título"; $a->strings["Created"] = "Criado"; $a->strings["Edited"] = "Editado"; -$a->strings["Private Message"] = "Mensagem privada"; -$a->strings["Delete"] = "Excluir"; -$a->strings["Select"] = "Selecionar"; -$a->strings["save to folder"] = "salvar na pasta"; -$a->strings["add star"] = "destacar"; -$a->strings["remove star"] = "remover destaque"; -$a->strings["toggle star status"] = "alternar destaque"; -$a->strings["starred"] = "destacado"; -$a->strings["Message is verified"] = "A mensagem foi verificada"; -$a->strings["add tag"] = "adicionar etiqueta"; -$a->strings["I like this (toggle)"] = "Eu gostei disso (alterna)"; -$a->strings["like"] = "gostei"; -$a->strings["I don't like this (toggle)"] = "Eu não gostei disso (alterna)"; -$a->strings["dislike"] = "não gostei"; -$a->strings["Share this"] = "Compartilhar isso"; -$a->strings["share"] = "compartilhar"; -$a->strings["View %s's profile - %s"] = "Ver o perfil de %s - %s"; -$a->strings["to"] = "para"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "Mural-para-mural"; -$a->strings["via Wall-To-Wall:"] = "via Mural-para-mural"; -$a->strings[" from %s"] = "de %s"; -$a->strings["last edited: %s"] = "última edição: %s"; -$a->strings["Expires: %s"] = "Expira: %s"; -$a->strings["Bookmark Links"] = "Guardar links"; -$a->strings["Please wait"] = "Por favor, espere"; -$a->strings["%d comment"] = array( - 0 => "%d comentário", - 1 => "%d comentários", -); -$a->strings["show more"] = "exibir mais"; -$a->strings["This is you"] = "Este(a) é você"; -$a->strings["Comment"] = "Comentar"; -$a->strings["Submit"] = "Enviar"; -$a->strings["Bold"] = "Negrito"; -$a->strings["Italic"] = "Itálico"; -$a->strings["Underline"] = "Sublinhado"; -$a->strings["Quote"] = "Citação"; -$a->strings["Code"] = "Código"; -$a->strings["Image"] = "Imagem"; -$a->strings["Link"] = "Link"; -$a->strings["Video"] = "Vídeo"; -$a->strings["Encrypt text"] = "Encriptar texto"; $a->strings["Can view my \"public\" stream and posts"] = "Pode ver meus fluxo e publicações \"públicos\""; $a->strings["Can view my \"public\" channel profile"] = "Pode ver o perfil \"público\" do meu canal"; $a->strings["Can view my \"public\" photo albums"] = "Pode ver meus álbuns de fotos \"públicos\""; @@ -144,6 +107,53 @@ $a->strings["QR code"] = "código QR"; $a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s escreveu a seguinte %2\$s %3\$s"; $a->strings["post"] = "publicação"; $a->strings["$1 wrote:"] = "$1 escreveu:"; +$a->strings["Private Message"] = "Mensagem privada"; +$a->strings["Delete"] = "Excluir"; +$a->strings["Select"] = "Selecionar"; +$a->strings["save to folder"] = "salvar na pasta"; +$a->strings["Like"] = "Gostou"; +$a->strings["Likes"] = "Gosta de"; +$a->strings["Dislike"] = "Desgostou"; +$a->strings["Dislikes"] = "Não gosta de"; +$a->strings["add star"] = "destacar"; +$a->strings["remove star"] = "remover destaque"; +$a->strings["toggle star status"] = "alternar destaque"; +$a->strings["starred"] = "destacado"; +$a->strings["Message is verified"] = "A mensagem foi verificada"; +$a->strings["add tag"] = "adicionar etiqueta"; +$a->strings["I like this (toggle)"] = "Eu gostei disso (alterna)"; +$a->strings["like"] = "gostei"; +$a->strings["I don't like this (toggle)"] = "Eu não gostei disso (alterna)"; +$a->strings["dislike"] = "não gostei"; +$a->strings["Share this"] = "Compartilhar isso"; +$a->strings["share"] = "compartilhar"; +$a->strings["View %s's profile - %s"] = "Ver o perfil de %s - %s"; +$a->strings["to"] = "para"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "Mural-para-mural"; +$a->strings["via Wall-To-Wall:"] = "via Mural-para-mural"; +$a->strings[" from %s"] = "de %s"; +$a->strings["last edited: %s"] = "última edição: %s"; +$a->strings["Expires: %s"] = "Expira: %s"; +$a->strings["Bookmark Links"] = "Guardar links"; +$a->strings["Please wait"] = "Por favor, espere"; +$a->strings["%d comment"] = array( + 0 => "%d comentário", + 1 => "%d comentários", +); +$a->strings["show more"] = "exibir mais"; +$a->strings["This is you"] = "Este(a) é você"; +$a->strings["Comment"] = "Comentar"; +$a->strings["Submit"] = "Enviar"; +$a->strings["Bold"] = "Negrito"; +$a->strings["Italic"] = "Itálico"; +$a->strings["Underline"] = "Sublinhado"; +$a->strings["Quote"] = "Citação"; +$a->strings["Code"] = "Código"; +$a->strings["Image"] = "Imagem"; +$a->strings["Link"] = "Link"; +$a->strings["Video"] = "Vídeo"; +$a->strings["Encrypt text"] = "Encriptar texto"; $a->strings["%1\$s's bookmarks"] = "Links guardados de %1\$s"; $a->strings["Missing room name"] = "Nome da sala vazio"; $a->strings["Duplicate room name"] = "Nome da sala duplicado"; @@ -380,11 +390,9 @@ $a->strings["Channel"] = "Canal"; $a->strings["Status Messages and Posts"] = "Mensagens de status e publicações"; $a->strings["About"] = "Sobre"; $a->strings["Profile Details"] = "Detalhes do perfil"; -$a->strings["Photos"] = "Fotos"; $a->strings["Files"] = "Arquivos"; $a->strings["Files and Storage"] = "Arquivos e armazenamento"; $a->strings["Chatrooms"] = "Salas de bate-papo"; -$a->strings["Events"] = "Eventos"; $a->strings["Events and Calendar"] = "Eventos e calendário"; $a->strings["Bookmarks"] = "Links guardados"; $a->strings["Saved Bookmarks"] = "Links guardados"; @@ -514,9 +522,6 @@ $a->strings["Channel was deleted and no longer exists."] = "O canal foi deletado $a->strings["Channel discovery failed."] = "A descoberta de canais falhou."; $a->strings["local account not found."] = "a conta local não foi encontrada."; $a->strings["Cannot connect to yourself."] = "Não é possível conectar-se consigo mesmo."; -$a->strings["Invalid data packet"] = "Pacote de dados inválido"; -$a->strings["Unable to verify channel signature"] = "Não foi possível verificar a assinatura do canal"; -$a->strings["Unable to verify site signature for %s"] = "Não foi possível verificar a assinatura do site para %s"; $a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes poderão ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente."; $a->strings["Default privacy group for new contacts"] = "Grupo de privacidade padrão para novos contatos"; $a->strings["All Channels"] = "Todos os canais"; @@ -558,7 +563,6 @@ $a->strings["Birthdays this week:"] = "Aniversários nesta semana:"; $a->strings["[No description]"] = "[Sem descrição]"; $a->strings["Event Reminders"] = "Lembretes de eventos"; $a->strings["Events this week:"] = "Eventos nesta semana:"; -$a->strings["Profile"] = "Perfil"; $a->strings["Full Name:"] = "Nome completo:"; $a->strings["j F, Y"] = "j \\d\\e F, Y"; $a->strings["j F"] = "j \\d\\e F"; @@ -601,6 +605,7 @@ $a->strings["everybody"] = "todos"; $a->strings["Secret Passphrase"] = "Frase secreta"; $a->strings["Passphrase hint"] = "Dica da frase secreta"; $a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Atenção: permissões foram modificadas mas ainda não foram enviadas."; +$a->strings["close all"] = "fechar tudo"; $a->strings["timeago.prefixAgo"] = "timeago.prefixAgo"; $a->strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; $a->strings["ago"] = "atrás"; @@ -648,12 +653,9 @@ $a->strings["Help and documentation"] = "Ajuda e documentação"; $a->strings["Apps"] = "Aplicações"; $a->strings["Addon applications, utilities, games"] = "Aplicações adicionais, utilitários, jogos"; $a->strings["Search site content"] = "Pesquisar o conteúdo do site"; -$a->strings["Directory"] = "Diretório"; $a->strings["Channel Locator"] = "Localizador de canais"; -$a->strings["Matrix"] = "Matriz"; $a->strings["Your matrix"] = "Sua matriz"; $a->strings["Mark all matrix notifications seen"] = "Marcar todas as notificações da matriz como vistas"; -$a->strings["Channel Home"] = "Página inicial do canal"; $a->strings["Channel home"] = "Página inicial do canal"; $a->strings["Mark all channel notifications seen"] = "Marcar todas as notificações de canais como vistas"; $a->strings["Connections"] = "Conexões"; @@ -742,7 +744,13 @@ $a->strings["It's complicated"] = "É complicado"; $a->strings["Don't care"] = "Não importa"; $a->strings["Ask me"] = "Pergunte-me"; $a->strings["Edit File properties"] = "Editar propriedades do arquivo"; +$a->strings["Invalid data packet"] = "Pacote de dados inválido"; +$a->strings["Unable to verify channel signature"] = "Não foi possível verificar a assinatura do canal"; +$a->strings["Unable to verify site signature for %s"] = "Não foi possível verificar a assinatura do site para %s"; $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."] = "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão."; +$a->strings["App Category"] = "Categoria de aplicativos"; +$a->strings["System"] = "Sistema"; +$a->strings["Featured"] = "Destacado"; $a->strings["Ignore/Hide"] = "Ignorar/Ocultar"; $a->strings["Suggestions"] = "Sugestões"; $a->strings["See more..."] = "Veja mais..."; @@ -971,8 +979,6 @@ $a->strings["Please login to continue."] = "Por favor, autentique-se para contin $a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?"; $a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Autenticação remota bloqueada. Você está autenticado neste site localmente. Por favor, saia e tente novamente."; $a->strings["Welcome %s. Remote authentication successful."] = "Bem vindo %s. Autenticação remota realizada com sucesso."; -$a->strings["No installed applications."] = "Não existe nenhuma aplicação instalada."; -$a->strings["Applications"] = "Aplicações"; $a->strings["Item not available."] = "O item não está disponível."; $a->strings["Fetching URL returns error: %1\$s"] = "Carregar o URL retorna o erro: %1\$s"; $a->strings["Invalid item."] = "Item inválido."; @@ -1006,8 +1012,6 @@ $a->strings["Profile unavailable to clone."] = "O perfil não está disponível $a->strings["Profile Name is required."] = "É obrigatório informar o nome do perfil."; $a->strings["Marital Status"] = "Estado civil"; $a->strings["Romantic Partner"] = "Parceiro/a romântico/a"; -$a->strings["Likes"] = "Gosta de"; -$a->strings["Dislikes"] = "Não gosta de"; $a->strings["Work/Employment"] = "Trabalho/Emprego"; $a->strings["Religion"] = "Religião"; $a->strings["Political Views"] = "Posição política"; @@ -1082,6 +1086,7 @@ $a->strings["Description"] = "Descrição"; $a->strings["Or enter new bookmark folder name"] = "Ou digite o nome para uma nova pasta de links"; $a->strings["Room not found"] = "Sala não encontrada"; $a->strings["Leave Room"] = "Sair da sala"; +$a->strings["Delete This Room"] = "Deletar esta sala"; $a->strings["I am away right now"] = "Eu estou ausente no momento"; $a->strings["I am online"] = "Eu estou online"; $a->strings["Bookmark this room"] = "Guarde esta sala"; @@ -1430,11 +1435,11 @@ $a->strings["view/tpl/smarty3 is writable"] = "view/tpl/smarty3 tem permissão d $a->strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "A Red usa o diretório store para salvar arquivos carregados. O servidor web necessita de permissão de escrita no diretório store dentro do diretório raiz da Red"; $a->strings["store is writable"] = "store tem permissão de escrita"; $a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Não foi possível validar o certificado SSL. Corrija o certificado ou desabilite o acesso via https ao site."; -$a->strings["If you use https access, you MUST use a certification instance known by all internet browsers. You MUST NOT use self-signed certificates!"] = "Se você utiliza acesso https, você DEVE usar uma instância de certificação reconhecida por todos os navegadores de internet. Você NÃO DEVE usar certificados assinados por você mesmo!"; -$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub. If your"] = "Essa restrição é incorporada porque publicações públicas de você podem por exemplo conter referências a imagens no seu próprio hub. Se seu"; -$a->strings["certificate is not known by the internet browser of users they get a warning message complaining about some security issues. Although"] = "certificado não é conhecido pelo navegador de internet do usuário eles receberão um alerta reclamando de alguns problemas de segurança. Apesar"; -$a->strings["these complains are not the real truth - there are no security issues with your encryption! - the users may be confused, nerved or even"] = "dessas reclamações não serem a real verdade - não há problemas de segurança com sua encriptação! - os usuários podem ser confundidos, enervados ou pior"; -$a->strings["worse may become scared about redmatrix having security issues. Use one of the free certification instances!"] = "ainda podem ficar com medo da redmatrix ter problemas de segurança. Use uma das instâncias certificadoras gratuitas!"; +$a->strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Se você oferece acesso https ao seu website ou permite conexões na porta TCP 443 (a porta https:), você DEVE usar um certificado reconhecido pelos navegadores. Você NÃO DEVE usar certificados assinados por você mesmo!"; +$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Essa restrição é incorporada porque publicações públicas suas podem, por exemplo, conter referências a imagens no seu próprio hub."; +$a->strings["If your certificate is not recognised, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Se seu certificado não for reconhecido, membros de outros sites (que podem ter certificados válidos) receberão uma mensagem de aviso nos seus próprios sites reclamando de problemas de segurança."; +$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Isso pode causar problemas de usabilidade (não só no seu site) então nós precisamos insistir nesse requisito."; +$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Existem provedores que disponibilizam gratuitamente certificados reconhecidos por navegadores."; $a->strings["SSL certificate validation"] = "Validação do certificado SSL"; $a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "A reescrita de URLs não está funcionando no .htaccess. Verifique as configurações do servidor."; $a->strings["Url rewrite is working"] = "A reescrita de URLs está funcionando"; @@ -1779,7 +1784,7 @@ $a->strings["Set the background image"] = "Definir a imagem do pano de fundo"; $a->strings["Set the background colour of items"] = "Definir a cor de fundo dos items"; $a->strings["Set the background colour of comments"] = "Definir a cor de fundo dos comentários"; $a->strings["Set the border colour of comments"] = "Definir a cor da borda dos comentários"; -$a->strings["Set the opacity of items"] = "Definir a opacidade de items"; +$a->strings["Set the indent for comments"] = "Definir a indentação de comentários"; $a->strings["Set the basic colour for item icons"] = "Definir a cor básica para ícones de itens"; $a->strings["Set the hover colour for item icons"] = "Definir a cor para ícones de itens quando que o mouse está sobre eles"; $a->strings["Set font-size for the entire application"] = "Definir o tamanho da fonte para a aplicação como um todo"; diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index f7df3bf52..f773264cc 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1884,7 +1884,6 @@ img.mail-list-sender-photo { .wall-item-content-wrapper { background-color: $item_colour; - opacity: $item_opacity; padding: 10px; } @@ -1893,9 +1892,6 @@ img.mail-list-sender-photo { border-top-left-radius: $radiuspx; } -.wall-item-content-wrapper:hover { - z-index:99; -} .comment .wall-item-body { padding-left: $comment_padding; } @@ -1905,35 +1901,23 @@ img.mail-list-sender-photo { background-color: $comment_item_colour; border-left: $comment_border_left $comment_border_colour; border-right: $comment_border_right $comment_border_colour; - border-bottom: $comment_border_bottom $comment_border_colour; border-radius: 0px; padding: 7px 10px 7px 7px; } -/* -.thread-wrapper.toplevel_item{ - border-bottom: $comment_border_bottom $comment_border_colour; - border-right: $comment_border_right $item_colour; - border-left: $comment_border_left $item_colour; - - border-top-right-radius: $radiuspx; - border-top-left-radius: $radiuspx; - border-bottom-right-radius: $radiuspx; - border-bottom-left-radius: $radiuspx; -} - */ .wall-item-comment-wrapper { - background-color: $comment_item_colour; - /* border-top: $comment_border_top $item_colour; */ - border-right: $comment_border_right $item_colour; - border-left: $comment_border_left $item_colour; - border-bottom: $comment_border_bottom $item_colour; + padding: 7px 10px; + background-color: $item_colour; border-radius: 0px; border-bottom-right-radius: $radiuspx; border-bottom-left-radius: $radiuspx; + margin-top: 3px; } +.wall-item-comment-wrapper-wc { + margin-top: 0px; +} .wall-item-like, .wall-item-dislike { @@ -1981,37 +1965,15 @@ img.mail-list-sender-photo { color: $toolicon_colour; } -.item-tool:hover { - /*color: $toolicon_activecolour;*/ -} - .like-rotator { color: $toolicon_colour; } -.my-comment-photo { - border-radius: $radiuspx; - -moz-border-radius: $radiuspx; - box-shadow: $shadowpx $shadowpx $shadowpx 0 #444444; -} - -.comment-edit-photo img { - width: $reply_photo; -} - -[class^="comment-edit-bb"] { - list-style: none; -} - .comment-icon { - font-size: 1.2em; + font-size: 0.8em; color: $toolicon_colour; } -.comment-icon:hover { - color: $toolicon_activecolour; -} - .comment-edit-text-empty, .comment-edit-text-full { border: 1px solid #ccc; diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index 20902fe1a..d981b0c11 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -1,23 +1,3 @@ -function cmtBbOpen(comment, id) { - if($(comment).hasClass('comment-edit-text-full')) { - $(".comment-edit-bb-" + id).show(); - return true; - } - return false; -} - -function cmtBbClose(comment, id) { -// if($(comment).hasClass('comment-edit-text-empty')) { -// $(".comment-edit-bb-" + id).hide(); -// return true; -// } - return false; -} - -//document.jotpermslock = 'icon-lock'; -//document.jotpermsunlock = 'icon-unlock'; - - $(document).ready(function() { $('#expand-aside').click(function() { diff --git a/view/tpl/app.tpl b/view/tpl/app.tpl new file mode 100644 index 000000000..967ccc67c --- /dev/null +++ b/view/tpl/app.tpl @@ -0,0 +1,17 @@ +
+ +
{{$app.name}}
+
+{{if $purchase}} + +{{/if}} +{{if $install || $update || $delete }} +
+ +{{if $install}}{{/if}} +{{if $edit}}{{/if}} +{{if $delete}}{{/if}} +
+{{/if}} +
+ diff --git a/view/tpl/app_create.tpl b/view/tpl/app_create.tpl new file mode 100644 index 000000000..ff28e0598 --- /dev/null +++ b/view/tpl/app_create.tpl @@ -0,0 +1,30 @@ +

{{$banner}}

+ + +
+{{if $guid}} + +{{/if}} +{{if $author}} + +{{/if}} +{{if $addr}} + +{{/if}} + +{{include file="field_input.tpl" field=$name}} +{{include file="field_input.tpl" field=$url}} +{{include file="field_textarea.tpl" field=$desc}} +{{include file="field_input.tpl" field=$photo}} +{{include file="field_input.tpl" field=$version}} +{{include file="field_input.tpl" field=$price}} +{{include file="field_input.tpl" field=$page}} + +{{if $embed}} +{{include file="field_textarea.tpl" field=$embed}} +{{/if}} + + + +
+ diff --git a/view/tpl/app_select.tpl b/view/tpl/app_select.tpl index 9613b4976..4cd945388 100644 --- a/view/tpl/app_select.tpl +++ b/view/tpl/app_select.tpl @@ -1,10 +1,11 @@ diff --git a/view/tpl/comment_item.tpl b/view/tpl/comment_item.tpl index 1ea619774..121cf0995 100755 --- a/view/tpl/comment_item.tpl +++ b/view/tpl/comment_item.tpl @@ -10,44 +10,7 @@ - -
- {{$mytitle}} -
-
-
    -
  • -
  • -
  • -
  • -
  • -
  • -
  • -
  • - {{if $feature_encrypt}} -
  • - {{/if}} -
-
- + {{if $qcomment}} {{/if}} - -
- diff --git a/view/tpl/conv_item.tpl b/view/tpl/conv_item.tpl index ee10b6633..fe54ac377 100755 --- a/view/tpl/conv_item.tpl +++ b/view/tpl/conv_item.tpl @@ -174,9 +174,11 @@ {{/foreach}} {{/if}} {{if $item.comment}} -
+
{{$item.comment}}
+
+
{{/if}}
{{if $item.comment_lastcollapsed}} diff --git a/view/tpl/myapps.tpl b/view/tpl/myapps.tpl new file mode 100755 index 000000000..1a591f9f8 --- /dev/null +++ b/view/tpl/myapps.tpl @@ -0,0 +1,9 @@ +

{{$title}}

+ +{{foreach $apps as $ap}} +
+{{$ap}} +
+{{/foreach}} +
+ diff --git a/view/tpl/nav.tpl b/view/tpl/nav.tpl index 5aa3b0f01..6b76ff5b6 100755 --- a/view/tpl/nav.tpl +++ b/view/tpl/nav.tpl @@ -157,13 +157,8 @@ {{/if}} {{if $nav.apps}} -
  • +
  • {{/if}}