From ac541a7d3246e1c5c60ae752326c1b9ba5ccd78f Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 14 Aug 2013 20:09:02 -0700 Subject: most of expire is now ported from friendica, but the protocol bits to push out the delete notifications for the entire batch to all recipients of the original post are not complete and will take quite a bit more work. As a consequence, expire has been completely disabled until it is fully implmented since it could result in completely un-removable posts reminiscent of the infamous "Bonnie Nadri" incident at Diaspora which we do not wish to re-live. --- include/features.php | 3 ++- include/notifier.php | 19 +++++++++++++++---- include/poller.php | 3 ++- view/tpl/settings.tpl | 4 ++++ 4 files changed, 23 insertions(+), 6 deletions(-) diff --git a/include/features.php b/include/features.php index da1322a14..757f719df 100644 --- a/include/features.php +++ b/include/features.php @@ -19,7 +19,8 @@ function get_features() { // General 'general' => array( t('General Features'), - array('expire', t('Content Expiration'), t('Remove old posts/comments after a period of time')), +// uncomment when expire is fixed +// array('expire', t('Content Expiration'), t('Remove old posts/comments after a period of time')), array('multi_profiles', t('Multiple Profiles'), t('Ability to create multiple profiles')), array('webpages', t('Web Pages'), t('Provide managed web pages on your channel')), array('prettyphoto', t('Enhanced Photo Albums'), t('Enable photo album with enhanced features')), diff --git a/include/notifier.php b/include/notifier.php index a0c07200a..2a0301357 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -54,6 +54,7 @@ require_once('include/html2plain.php'); * ZOT * permission_update abook_id * refresh_all channel_id + * expire channel_id * relay item_id (item was relayed to owner, we will deliver it as owner) * */ @@ -166,14 +167,24 @@ function notifier_run($argv, $argc){ elseif($cmd === 'expire') { $normal_mode = false; $expire = true; - $items = q("SELECT * FROM `item` WHERE `uid` = %d AND `wall` = 1 - AND `deleted` = 1 AND `changed` > UTC_TIMESTAMP() - INTERVAL 10 MINUTE", - intval($item_id) + $items = q("SELECT * FROM item WHERE uid = %d AND ( item_flags & %d ) + AND ( item_restrict & %d ) AND `changed` > UTC_TIMESTAMP() - INTERVAL 10 MINUTE", + intval($item_id), + intval(ITEM_WALL), + intval(ITEM_DELETED) ); $uid = $item_id; $item_id = 0; - if(! count($items)) + if(! $items) return; + +// FIXME +// This will require a special zot packet containing a list of item message_id's to be expired. +// This packet will be public, since we cannot selectively deliver here. +// We need the handling on this end to create the array, and the handling on the remote end +// to verify permissions (for each item) and process it. Until this is complete, the expire feature will be disabled. + + return; } elseif($cmd === 'suggest') { $normal_mode = false; diff --git a/include/poller.php b/include/poller.php index 00914a712..7f76750b4 100644 --- a/include/poller.php +++ b/include/poller.php @@ -84,7 +84,8 @@ function poller_run($argv, $argc){ set_config('system','last_expire_day',$d2); - proc_run('php','include/expire.php'); +// Uncomment when expire protocol component is working +// proc_run('php','include/expire.php'); proc_run('php','include/cli_suggest.php'); diff --git a/view/tpl/settings.tpl b/view/tpl/settings.tpl index 9a3a1ce8b..194b90e80 100755 --- a/view/tpl/settings.tpl +++ b/view/tpl/settings.tpl @@ -50,6 +50,9 @@ {{include file="field_input.tpl" field=$cntunkmail}} + +{{if $expireisfixed}} +{{* Remove above line when expire is working *}} {{include file="field_input.tpl" field=$expire.days}} @@ -65,6 +68,7 @@ +{{/if}}
{{$permissions}} {{$permdesc}} -- cgit v1.2.3 From 258d8e3189505f177e68e967322c70c1344291f9 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 14 Aug 2013 20:47:04 -0700 Subject: util/pconfig - if you understand util/config you'll understand this; if you don't you won't --- util/pconfig | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100755 util/pconfig diff --git a/util/pconfig b/util/pconfig new file mode 100755 index 000000000..baa786a03 --- /dev/null +++ b/util/pconfig @@ -0,0 +1,34 @@ +#!/usr/bin/env php + 4) { + set_pconfig($argv[1],$argv[2],$argv[3],$argv[4]); + echo "pconfig[{$argv[1]}][{$argv[2]}][{$argv[3]}] = " . get_pconfig($argv[1],$argv[2],$argv[3]) . "\n"; +} + +if($argc == 4) { + echo "pconfig[{$argv[1]}][{$argv[2]}][{$argv[3]}] = " . get_pconfig($argv[1],$argv[2],$argv[3]) . "\n"; +} + +if($argc == 3) { + load_pconfig($argv[1],$argv[2]); + foreach($a->config[$argv[1]][$argv[2]] as $k => $x) { + echo "pconfig[{$argv[1]}][{$argv[2]}][{$k}] = " . $x . "\n"; + } +} + +if($argc == 2) { + $r = q("select * from pconfig where uid = " . intval($argv[1])); + if($r) { + foreach($r as $rr) { + echo "pconfig[{$rr['uid']}][{$rr['cat']}][{$rr['k']}] = " . $rr['v'] . "\n"; + } + } +} + -- cgit v1.2.3 From efb730cedcc82fadcb8474d44f8820d92b0187e6 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 14 Aug 2013 21:24:40 -0700 Subject: show main menu page even if no menus exist --- mod/menu.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/menu.php b/mod/menu.php index 910fc389b..c3302544e 100644 --- a/mod/menu.php +++ b/mod/menu.php @@ -45,7 +45,7 @@ function menu_content(&$a) { if(argc() == 1) { // list menus $x = menu_list(local_user()); - if($x) { + $o = replace_macros(get_markup_template('menulist.tpl'),array( '$title' => t('Manage Menus'), '$menus' => $x, @@ -57,7 +57,7 @@ function menu_content(&$a) { '$hintcontent' => t('Edit menu contents'), '$hintedit' => t('Edit this menu') )); - } + return $o; -- cgit v1.2.3 From c17f7124f31a6289db75eb71e3b723f286eb7d52 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 15 Aug 2013 01:32:09 -0700 Subject: not able to drop pending connections --- mod/connections.php | 3 ++- version.inc | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/mod/connections.php b/mod/connections.php index 8f779bca5..7c4d8acc1 100644 --- a/mod/connections.php +++ b/mod/connections.php @@ -179,7 +179,8 @@ function connections_content(&$a) { intval($contact_id), intval(local_user()), intval(ABOOK_FLAG_SELF), - intval(ABOOK_FLAG_PENDING) + // allow drop even if pending, just duplicate the self query + intval(($cmd === 'drop') ? ABOOK_FLAG_SELF : ABOOK_FLAG_PENDING) ); if(! count($orig_record)) { diff --git a/version.inc b/version.inc index f1ce0f558..e0ba0d8fd 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2013-08-14.405 +2013-08-15.406 -- cgit v1.2.3 From 92747366afd6068f563063b00bbf5f2373b6a834 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 15 Aug 2013 05:09:19 -0700 Subject: move js from matrix page --- mod/network.php | 17 ----------------- view/js/mod_network.js | 9 +++++++++ 2 files changed, 9 insertions(+), 17 deletions(-) create mode 100644 view/js/mod_network.js diff --git a/mod/network.php b/mod/network.php index 413990ce2..e44a604de 100644 --- a/mod/network.php +++ b/mod/network.php @@ -104,23 +104,6 @@ function network_init(&$a) { $a->page['aside'] .= saved_searches($search); $a->page['aside'] .= fileas_widget($a->get_baseurl(true) . '/network',(x($_GET, 'file') ? $_GET['file'] : '')); - $base = $a->get_baseurl(); - - $a->page['htmlhead'] .= <<< EOT - - -EOT; - - - } function saved_searches($search) { diff --git a/view/js/mod_network.js b/view/js/mod_network.js new file mode 100644 index 000000000..7c3a9d246 --- /dev/null +++ b/view/js/mod_network.js @@ -0,0 +1,9 @@ +$(document).ready(function() { + var a; + a = $("#search-text").autocomplete({ + serviceUrl: baseurl + '/search_ac', + minChars: 2, + width: 350, + }); +}); + -- cgit v1.2.3 From ef414ba94c134ffb6a0ac6d81eafec76519e2bda Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 15 Aug 2013 05:20:23 -0700 Subject: fix homebase variable --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 14b8ca856..d93c73233 100755 --- a/index.php +++ b/index.php @@ -328,7 +328,7 @@ if($a->module_loaded) { if(x($_SESSION,'visitor_home')) $homebase = $_SESSION['visitor_home']; elseif(local_user()) - $homebase = $a->get_baseurl() . '/channel/' . $a->user['nickname']; + $homebase = $a->get_baseurl() . '/channel/' . $a->channel['channel_address']; if(isset($homebase)) $a->page['content'] .= ''; -- cgit v1.2.3 From bdfd0aa917d75f68ff20d900e691f626df13da79 Mon Sep 17 00:00:00 2001 From: Christian Vogeley Date: Fri, 16 Aug 2013 02:30:55 +0200 Subject: Fix Load mobile theme --- boot.php | 3 ++- include/security.php | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/boot.php b/boot.php index 61f9f5da5..41704ff08 100755 --- a/boot.php +++ b/boot.php @@ -1557,8 +1557,9 @@ function profile_load(&$a, $nickname, $profile = '') { $a->page['title'] = $a->profile['channel_name'] . " - " . $a->profile['channel_address'] . "@" . $a->get_hostname(); - + $a->profile['channel_mobile_theme'] = get_pconfig(local_user(),'system', 'mobile_theme'); $_SESSION['theme'] = $a->profile['channel_theme']; + $_SESSION['mobile-theme'] = get_pconfig(local_user(),'system', 'mobile_theme'); /** * load/reload current theme info diff --git a/include/security.php b/include/security.php index ef4d5a313..115539ae2 100644 --- a/include/security.php +++ b/include/security.php @@ -34,6 +34,7 @@ function authenticate_success($user_record, $login_initial = false, $interactive else { $_SESSION['uid'] = $user_record['uid']; $_SESSION['theme'] = $user_record['theme']; + $_SESSION['mobile-theme'] = get_pconfig($user_record['uid'], 'system', 'mobile_theme'); $_SESSION['authenticated'] = 1; $_SESSION['page_flags'] = $user_record['page-flags']; $_SESSION['my_url'] = $a->get_baseurl() . '/channel/' . $user_record['nickname']; @@ -148,6 +149,7 @@ function change_channel($change_channel) { $_SESSION['uid'] = intval($r[0]['channel_id']); get_app()->set_channel($r[0]); $_SESSION['theme'] = $r[0]['channel_theme']; + $_SESSION['mobile-theme'] = get_pconfig(local_user(),'system', 'mobile_theme'); date_default_timezone_set($r[0]['channel_timezone']); $ret = $r[0]; } -- cgit v1.2.3 From d46436dc9c115d29a18a29203bd12d3246472365 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 15 Aug 2013 17:36:00 -0700 Subject: issues marking for death --- include/poller.php | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/include/poller.php b/include/poller.php index 7f76750b4..7a6aaeb22 100644 --- a/include/poller.php +++ b/include/poller.php @@ -118,18 +118,18 @@ function poller_run($argv, $argc){ $force = false; $restart = false; - if((argc() > 1) && (argv(1) == 'force')) + if(($argc > 1) && ($argv[1] == 'force')) $force = true; - if((argc() > 1) && (argv(1) == 'restart')) { + if(($argc > 1) && ($argv[1] == 'restart')) { $restart = true; - $generation = intval(argv(2)); + $generation = intval($argv[2]); if(! $generation) killme(); } - if((argc() > 1) && intval(argv(1))) { - $manual_id = intval(argv(1)); + if(($argc > 1) && intval($argv[1])) { + $manual_id = intval($argv[1]); $force = true; } @@ -157,7 +157,8 @@ function poller_run($argv, $argc){ : '' ); - $contacts = q("SELECT abook_id, abook_updated, abook_closeness, abook_channel + + $contacts = q("SELECT abook_id, abook_updated, abook_connected, abook_closeness, abook_channel FROM abook LEFT JOIN account on abook_account = account_id where 1 $sql_extra AND (( abook_flags = %d ) OR ( abook_flags = %d )) @@ -189,10 +190,10 @@ function poller_run($argv, $argc){ else { // if we've never connected with them, start the mark for death countdown from now - if($c === '0000-00-00 00:00:00') { + if($c == '0000-00-00 00:00:00') { $r = q("update abook set abook_connected = '%s' where abook_id = %d limit 1", dbesc(datetime_convert()), - intval($abook['abook_id']) + intval($contact['abook_id']) ); $c = datetime_convert(); $update = true; @@ -200,8 +201,8 @@ function poller_run($argv, $argc){ // He's dead, Jim - if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $c . " + 30 day")) { - $r = q("update abook set abook_flags = (abook_flags & %d) where abook_id = %d limit 1", + if(strcmp(datetime_convert('UTC','UTC', 'now'),datetime_convert('UTC','UTC', $c . " + 30 day")) > 0) { + $r = q("update abook set abook_flags = (abook_flags | %d) where abook_id = %d limit 1", intval(ABOOK_FLAG_ARCHIVED), intval($contact['abook_id']) ); @@ -213,17 +214,17 @@ function poller_run($argv, $argc){ // recently deceased, so keep up the regular schedule for 3 days - if((datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $c . " + 3 day")) - && (datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day"))) + if((strcmp(datetime_convert('UTC','UTC', 'now'),datetime_convert('UTC','UTC', $c . " + 3 day")) > 0) + && (strcmp(datetime_convert('UTC','UTC', 'now'),datetime_convert('UTC','UTC', $t . " + 1 day")) > 0)) $update = true; // After that back off and put them on a morphine drip - if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 2 day")) { + if(strcmp(datetime_convert('UTC','UTC', 'now'),datetime_convert('UTC','UTC', $t . " + 2 day")) > 0) { $update = true; } } - +dbg(0); if((! $update) && (! $force)) continue; -- cgit v1.2.3 From 40204ad6e369807bbef8291ef7de75f027d26046 Mon Sep 17 00:00:00 2001 From: Christian Vogeley Date: Fri, 16 Aug 2013 02:38:30 +0200 Subject: Do it like normal themes --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index 41704ff08..e26dc6fdd 100755 --- a/boot.php +++ b/boot.php @@ -1559,7 +1559,7 @@ function profile_load(&$a, $nickname, $profile = '') { $a->profile['channel_mobile_theme'] = get_pconfig(local_user(),'system', 'mobile_theme'); $_SESSION['theme'] = $a->profile['channel_theme']; - $_SESSION['mobile-theme'] = get_pconfig(local_user(),'system', 'mobile_theme'); + $_SESSION['mobile-theme'] = $a->profile['channel_mobile_theme']; /** * load/reload current theme info -- cgit v1.2.3 From 764e0201ce8259c84a3b6ce643a52effe9dc8a59 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 15 Aug 2013 17:43:19 -0700 Subject: don't include archived contacts in public posts, unless specifically requested --- include/Contact.php | 4 ++-- include/items.php | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/include/Contact.php b/include/Contact.php index 992ed27e2..bf536ccd5 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -295,8 +295,8 @@ function contact_remove($channel_id, $abook_id) { $archive = get_pconfig($channel_id, 'system','archive_removed_contacts'); if($archive) { - q("update abook set abook_flags = abook_flags | %d where abook_id = %d and abook_channel = %d limit 1", - intval(ABOOK_FLAG_ARCHIVE), + q("update abook set abook_flags = ( abook_flags | %d ) where abook_id = %d and abook_channel = %d limit 1", + intval(ABOOK_FLAG_ARCHIVED), intval($abook_id), intval($channel_id) ); diff --git a/include/items.php b/include/items.php index 6d853323f..df49ba5c7 100755 --- a/include/items.php +++ b/include/items.php @@ -31,10 +31,11 @@ function collect_recipients($item,&$private) { } else { $recipients = array(); - $r = q("select * from abook where abook_channel = %d and not (abook_flags & %d) and not (abook_flags & %d)", + $r = q("select * from abook where abook_channel = %d and not (abook_flags & %d) and not (abook_flags & %d) and not (abook_flags & %d)", intval($item['uid']), intval(ABOOK_FLAG_SELF), - intval(ABOOK_FLAG_PENDING) + intval(ABOOK_FLAG_PENDING), + intval(ABOOK_FLAG_ARCHIVED) ); if($r) { foreach($r as $rr) { -- cgit v1.2.3 From d0951777c0c13e9e554595f91d01f78424b1b45a Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 15 Aug 2013 19:21:22 -0700 Subject: fix import from file --- mod/import.php | 8 ++++---- view/tpl/channel_import.tpl | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/mod/import.php b/mod/import.php index 4c878f5c6..c98f4d2eb 100644 --- a/mod/import.php +++ b/mod/import.php @@ -16,10 +16,10 @@ function import_post(&$a) { $data = null; $seize = ((x($_REQUEST,'make_primary')) ? intval($_REQUEST['make_primary']) : 0); - $src = $_FILES['userfile']['tmp_name']; - $filename = basename($_FILES['userfile']['name']); - $filesize = intval($_FILES['userfile']['size']); - $filetype = $_FILES['userfile']['type']; + $src = $_FILES['filename']['tmp_name']; + $filename = basename($_FILES['filename']['name']); + $filesize = intval($_FILES['filename']['size']); + $filetype = $_FILES['filename']['type']; if($src) { diff --git a/view/tpl/channel_import.tpl b/view/tpl/channel_import.tpl index 4804e34d6..f7635ea52 100755 --- a/view/tpl/channel_import.tpl +++ b/view/tpl/channel_import.tpl @@ -1,6 +1,6 @@

{{$title}}

-
+
{{$desc}}
-- cgit v1.2.3 From 1c1449cd821a927bbcbeb7f83c5d1c40a466f520 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 15 Aug 2013 22:41:34 -0700 Subject: we only want to maintain one INSTALL.txt - and it is in the directory 'install' where it belongs. --- bugs | 4 -- done | 171 ---------------------------------------------------- install.txt | 105 -------------------------------- install/INSTALL.txt | 49 ++++++++++++++- 4 files changed, 47 insertions(+), 282 deletions(-) delete mode 100644 bugs delete mode 100644 done delete mode 100644 install.txt diff --git a/bugs b/bugs deleted file mode 100644 index e0eb96696..000000000 --- a/bugs +++ /dev/null @@ -1,4 +0,0 @@ -- send refresh posts to everybody that needs to see it, e.g. when site url changes - -- when you clear one type of notification or view the target item, clear the corresponding system notification. Issue: what to do about matrix/network posts where you might not have actually seen it. - diff --git a/done b/done deleted file mode 100644 index c3c7cc099..000000000 --- a/done +++ /dev/null @@ -1,171 +0,0 @@ -Files transitioned to Red: - -Legend: - -+ Mostly or completely transitioned -? Minimally transitioned, probably needs more work -= Unlikely to require changes -- Not needed in Red - - (No marker - has not yet been transitioned, may have some patches applied) - - -include/ - -+ account.php - acl_selectors.php -+ activities.php -? api.php -? attach.php -+ auth.php -- bb2diaspora.php (check for function dependencies before removing) -+ bbcode.php -= cache.php -= config.php - Contact.php - contact_selectors.php - contact_widgets.php -? conversation.php -+ cronhooks.php -? crypto.php -+ datetime.php (todo: html removal) -? dba.php -? delivery.php -+ directory.php -+ enotify.php -+ event.php -+ expire.php -? follow.php -+ gprobe.php -+ group.php -= html2bbcode.php -= html2plain.php -+ identity.php -? items.php -+ js_strings.php -+ language.php -? message.php -- msgclean.php -? nav.php - network.php -+ notifier.php - oauth.php - oembed.php -? onepoll.php -? Photo.php -? plugin.php -? poller.php -? profile_advanced.php - profile_selectors.php -? queue_fn.php -? queue.php -- salmon.php -+ security.php -? session.php -? socgraph.php -= system_unavailable.php -= template_processor.php -? text.php -- user.php -+ zot.php - - -mod/ - -+ abook.php -> moved to connections.php -? acl.php - admin.php -+ allfriends.php -+ api.php -+ apps.php -+ attach.php -- auth.php -- cb.php - common.php - community.php -+ contactgroup.php - crepair.php - delegate.php -? directory.php - dirfind.php - display.php - editpost.php -? events.php - fbrowser.php - feed.php - filerm.php - filer.php - follow.php - friendica.php -> moved to siteinfo.php, require HTML templating, more - fsuggest.php -+ group.php -- hcard.php -> not needed -= help.php -+ home.php - hostxrd.php -> probably not needed -? install.php - invite.php -+ item.php -+ like.php -+ lockview.php -+ login.php -+ lostpass.php -? magic.php -+ manage.php - match.php -? message.php -? mood.php - msearch.php -? network.php - nogroup.php - notifications.php -+ notify.php -? oembed.php -+ oexchange.php -+ opensearch.php -= parse_url.php -+ photo.php - photos.php -+ ping.php (needs more work) -+ poco.php -+ poke.php -? post.php -+ pretheme.php -+ probe.php -? profile_photo.php -? profile.php -+ profiles.php - profperm.php - qsearch.php -+ randprof.php -- redir.php -+ register.php -? regmod.php - removeme.php - rsd_xml.php (what do we need this for? What functionality/feature does it enable) - search_ac.php - search.php - settings.php - partially done -+ share.php -+ smilies.php -+ starred.php - subthread.php -+ suggest.php - tagger.php - tagrm.php -? uexport.php -? update_community.php - needs converting to json -? update_network.php - needs converting to json -? update_profile.php - needs converting to json -? viewconnections.php -? view.php -+ viewsrc.php -+ wall_attach.php (needs remote permissions refactor) -+ wall_upload.php (needs remote permissions refactor) - webfinger.php -+ _well_known.php - xrd.php -+ zchannel.php -+ zfinger.php -? zperms.php - diff --git a/install.txt b/install.txt deleted file mode 100644 index b25f22133..000000000 --- a/install.txt +++ /dev/null @@ -1,105 +0,0 @@ - -Red Installation -=============== - -Red should run on commodity hosting platforms - such as those used to host Wordpress blogs and Drupal websites. But be aware that Red is more than a simple web application. The kind of functionality offered by Red requires a bit more of the host system than the typical blog. Not every PHP/MySQL hosting provider will be able to support Red. Many will. But **please** review the requirements and confirm these with your hosting provider prior to installation. - -Also if you encounter installation issues, please let us know via the Github issue tracker (https://github.com/friendica/red/issues). Please be as clear as you can about your operating environment and provide as much detail as possible about any error messages you may see, so that we can prevent it from happening in the future. Due to the large variety of operating systems and PHP platforms in existence we may have only limited ability to debug your PHP installation or acquire any missing modules - but we will do our best to solve any general code issues. - -Before you begin: Choose a domain name or subdomain name for your server. - -1. Requirements - - Apache with mod-rewrite enabled and "Options All" so you can use a -local .htaccess file - - - PHP 5.3 or later - - PHP *command line* access with register_argc_argv set to true in the -php.ini file - - curl, gd, mysql, and openssl extensions - - some form of email server or email gateway such that PHP mail() works - - mcrypt (optional; used for server-to-server message encryption) - - - Mysql 5.x - - - ability to schedule jobs with cron (Linux/Mac) or Scheduled Tasks -(Windows) [Note: other options are presented in Section 7 of this document] - - - Installation into a top-level domain or sub-domain (without a -directory/path component in the URL) is preferred. Directory paths will -not be as convenient to use and have not been thoroughly tested. - - - [Dreamhost.com offers all of the necessary hosting features at a -reasonable price. If your hosting provider doesn't allow Unix shell access, -you might have trouble getting everything to work.] - -2. Unpack the Red files into the root of your web server document area. - - - If you are able to do so, we recommend using git to clone the source repository rather than to use a packaged tar or zip file. This makes the software much easier to update. The Linux command to clone the repository into a directory "mywebsite" would be - - `git clone https://github.com/friendica/red.git mywebsite` - - - and then you can pick up the latest changes at any time with - - `git pull` - - - make sure folder *view/tpl/smarty3* exists and is writable by webserver - - `mkdir view/tpl/smarty3` - - `chmod 777 view/tpl/smarty3` - - - For installing addons - - - First you should be **on** your website folder - - `cd mywebsite` - - - Then you should clone the addon repository (separtely) - - `git clone https://github.com/friendica/red-addons.git addon` - - - For keeping the addon tree updated, you should be on you addon tree and issue a git pull - - `cd mywebsite/addon` - - `git pull` - - - If you copy the directory tree to your webserver, make sure - that you also copy .htaccess - as "dot" files are often hidden - and aren't normally copied. - - -3. Create an empty database and note the access details (hostname, username, password, database name). - -4. Visit your website with a web browser and follow the instructions. Please note any error messages and correct these before continuing. - -5. *If* the automated installation fails for any reason, check the following: - - - ".htconfig.php" exists ... If not, edit htconfig.php and change system settings. Rename -to .htconfig.php - - Database is populated. ... If not, import the contents of "database.sql" with phpmyadmin -or mysql command line - -6. At this point visit your website again, and register your personal account. -Registration errors should all be recoverable automatically. -If you get any *critical* failure at this point, it generally indicates the -database was not installed correctly. You might wish to move/rename -.htconfig.php to another name and empty (called 'dropping') the database -tables, so that you can start fresh. - -7. Set up a cron job or scheduled task to run the poller once every 15 -minutes in order to perform background processing. Example: - - `cd /base/directory; /path/to/php include/poller.php` - -Change "/base/directory", and "/path/to/php" as appropriate for your situation. - -If you are using a Linux server, run "crontab -e" and add a line like the -one shown, substituting for your unique paths and settings: - -`*/15 * * * * cd /home/myname/mywebsite; /usr/bin/php include/poller.php` - -You can generally find the location of PHP by executing "which php". If you -have troubles with this section please contact your hosting provider for -assistance. Red will not work correctly if you cannot perform this step. diff --git a/install/INSTALL.txt b/install/INSTALL.txt index 3f135c349..89b53c7c0 100644 --- a/install/INSTALL.txt +++ b/install/INSTALL.txt @@ -17,6 +17,17 @@ Red Matrix. Many will - but please review the requirements and confirm these with your hosting provider prior to installation. (And preferably before entering into a long-term contract.) +If you encounter installation issues, please let us know via the Github issue +tracker (https://github.com/friendica/red/issues). Please be as clear as you +can about your operating environment and provide as much detail as possible +about any error messages you may see, so that we can prevent it from happening +in the future. Due to the large variety of operating systems and PHP platforms +in existence we may have only limited ability to debug your PHP installation or +acquire any missing modules - but we will do our best to solve any general code +issues. + + + Before you begin: Choose a domain name or subdomain name for your server. Put some thought into this - because changing it is currently not-supported. Things will break, and some of your friends may have difficulty communicating @@ -52,6 +63,40 @@ directory/path component in the URL) is REQUIRED. that you also copy .htaccess - as "dot" files are often hidden and aren't normally copied. + - If you are able to do so, we recommend using git to clone the + source repository rather than to use a packaged tar or zip file. + This makes the software much easier to update. The Linux command + to clone the repository into a directory "mywebsite" would be + + git clone https://github.com/friendica/red.git mywebsite + + - and then you can pick up the latest changes at any time with + + git pull + + - make sure folder *view/tpl/smarty3* exists and is writable by webserver + + mkdir view/tpl/smarty3 + + chmod 777 view/tpl/smarty3 + + - For installing addons + + - First you should be **on** your website folder + + cd mywebsite + + - Then you should clone the addon repository (separately) + + git clone https://github.com/friendica/red-addons.git addon + + - For keeping the addon tree updated, you should be on you addon tree and issue a git pull + + cd mywebsite/addon + + git pull + + 3. Create an empty database and note the access details (hostname, username, password, database name). @@ -123,7 +168,7 @@ $a->config['system']['php_path'] = '/usr/local/php53/bin/php'; Check your database settings. It usually means your database could not be opened or accessed. If the database resides on the same machine, check that -the database server name is "localhost". +the database server name is the word "localhost". ##################################################################### - 500 Internal Error @@ -167,7 +212,7 @@ configuration for your site. This will need to be changed to If you do not see the word "test", your .htaccess is working, but it is likely that mod-rewrite is not installed in your web server or is not working. - On most flavour of Linux, + On most flavours of Linux, % a2enmod rewrite % /etc/init.d/apache2 restart -- cgit v1.2.3 From a8dd7280b33008d5100b6d8020640673abf5a78a Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 15 Aug 2013 22:52:19 -0700 Subject: get rid of more variables with dashes in the names - use underscore *except* in CSS. These were probably already here, but if you see any - please keep them out of PHP and MySQL where they sometimes get interpreted as a subtraction operation and are a bugger to find. --- boot.php | 6 +++--- include/auth.php | 2 +- include/oauth.php | 2 +- include/security.php | 4 ++-- mod/admin.php | 22 +++++++++++----------- mod/community.php | 2 +- mod/home.php | 6 +++--- mod/search.php | 2 +- mod/settings.php | 4 ++-- 9 files changed, 25 insertions(+), 25 deletions(-) diff --git a/boot.php b/boot.php index e26dc6fdd..f7d507d22 100755 --- a/boot.php +++ b/boot.php @@ -1559,7 +1559,7 @@ function profile_load(&$a, $nickname, $profile = '') { $a->profile['channel_mobile_theme'] = get_pconfig(local_user(),'system', 'mobile_theme'); $_SESSION['theme'] = $a->profile['channel_theme']; - $_SESSION['mobile-theme'] = $a->profile['channel_mobile_theme']; + $_SESSION['mobile_theme'] = $a->profile['channel_mobile_theme']; /** * load/reload current theme info @@ -1964,8 +1964,8 @@ function current_theme(){ $is_mobile = $a->is_mobile || $a->is_tablet; if($is_mobile) { - $system_theme = ((isset($a->config['system']['mobile-theme'])) ? $a->config['system']['mobile-theme'] : ''); - $theme_name = ((isset($_SESSION) && x($_SESSION,'mobile-theme')) ? $_SESSION['mobile-theme'] : $system_theme); + $system_theme = ((isset($a->config['system']['mobile_theme'])) ? $a->config['system']['mobile_theme'] : ''); + $theme_name = ((isset($_SESSION) && x($_SESSION,'mobile_theme')) ? $_SESSION['mobile_theme'] : $system_theme); if($theme_name === '---') { // user has selected to have the mobile theme be the same as the normal one diff --git a/include/auth.php b/include/auth.php index c86a54fb1..143a16de8 100644 --- a/include/auth.php +++ b/include/auth.php @@ -14,7 +14,7 @@ function nuke_session() { unset($_SESSION['administrator']); unset($_SESSION['cid']); unset($_SESSION['theme']); - unset($_SESSION['mobile-theme']); + unset($_SESSION['mobile_theme']); unset($_SESSION['page_flags']); unset($_SESSION['submanage']); unset($_SESSION['my_url']); diff --git a/include/oauth.php b/include/oauth.php index 2f70f21fb..6ec5285e4 100644 --- a/include/oauth.php +++ b/include/oauth.php @@ -145,7 +145,7 @@ class FKOAuth1 extends OAuthServer { } $_SESSION['uid'] = $record['uid']; $_SESSION['theme'] = $record['theme']; - $_SESSION['mobile-theme'] = get_pconfig($record['uid'], 'system', 'mobile_theme'); + $_SESSION['mobile_theme'] = get_pconfig($record['uid'], 'system', 'mobile_theme'); $_SESSION['authenticated'] = 1; $_SESSION['page_flags'] = $record['page-flags']; $_SESSION['my_url'] = $a->get_baseurl() . '/channel/' . $record['nickname']; diff --git a/include/security.php b/include/security.php index 115539ae2..4738e473b 100644 --- a/include/security.php +++ b/include/security.php @@ -34,7 +34,7 @@ function authenticate_success($user_record, $login_initial = false, $interactive else { $_SESSION['uid'] = $user_record['uid']; $_SESSION['theme'] = $user_record['theme']; - $_SESSION['mobile-theme'] = get_pconfig($user_record['uid'], 'system', 'mobile_theme'); + $_SESSION['mobile_theme'] = get_pconfig($user_record['uid'], 'system', 'mobile_theme'); $_SESSION['authenticated'] = 1; $_SESSION['page_flags'] = $user_record['page-flags']; $_SESSION['my_url'] = $a->get_baseurl() . '/channel/' . $user_record['nickname']; @@ -149,7 +149,7 @@ function change_channel($change_channel) { $_SESSION['uid'] = intval($r[0]['channel_id']); get_app()->set_channel($r[0]); $_SESSION['theme'] = $r[0]['channel_theme']; - $_SESSION['mobile-theme'] = get_pconfig(local_user(),'system', 'mobile_theme'); + $_SESSION['mobile_theme'] = get_pconfig(local_user(),'system', 'mobile_theme'); date_default_timezone_set($r[0]['channel_timezone']); $ret = $r[0]; } diff --git a/mod/admin.php b/mod/admin.php index 7de133b38..df1a40019 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -210,9 +210,9 @@ function admin_page_site_post(&$a){ $banner = ((x($_POST,'banner')) ? trim($_POST['banner']) : false); $language = ((x($_POST,'language')) ? notags(trim($_POST['language'])) : ''); $theme = ((x($_POST,'theme')) ? notags(trim($_POST['theme'])) : ''); - $theme_mobile = ((x($_POST,'theme-mobile')) ? notags(trim($_POST['theme-mobile'])) : ''); - $theme_accessibility = ((x($_POST,'theme-accessibility')) ? notags(trim($_POST['theme-accessibility'])) : ''); - $site_channel = ((x($_POST,'site-channel')) ? notags(trim($_POST['site-channel'])) : ''); + $theme_mobile = ((x($_POST,'theme_mobile')) ? notags(trim($_POST['theme_mobile'])) : ''); + $theme_accessibility = ((x($_POST,'theme_accessibility')) ? notags(trim($_POST['theme_accessibility'])) : ''); + $site_channel = ((x($_POST,'site_channel')) ? notags(trim($_POST['site_channel'])) : ''); $maximagesize = ((x($_POST,'maximagesize')) ? intval(trim($_POST['maximagesize'])) : 0); @@ -294,17 +294,17 @@ function admin_page_site_post(&$a){ set_config('system','language', $language); set_config('system','theme', $theme); if ( $theme_mobile === '---' ) { - del_config('system','mobile-theme'); + del_config('system','mobile_theme'); } else { - set_config('system','mobile-theme', $theme_mobile); + set_config('system','mobile_theme', $theme_mobile); } if ( $theme_accessibility === '---' ) { - del_config('system','accessibility-theme'); + del_config('system','accessibility_theme'); } else { - set_config('system','accessibility-theme', $theme_accessibility); + set_config('system','accessibility_theme', $theme_accessibility); } - set_config('system','site-channel', $site_channel); + set_config('system','site_channel', $site_channel); set_config('system','maximagesize', $maximagesize); set_config('system','register_policy', $register_policy); @@ -418,9 +418,9 @@ function admin_page_site(&$a) { '$banner' => array('banner', t("Banner/Logo"), $banner, ""), '$language' => array('language', t("System language"), get_config('system','language'), "", $lang_choices), '$theme' => array('theme', t("System theme"), get_config('system','theme'), t("Default system theme - may be over-ridden by user profiles - change theme settings"), $theme_choices), - '$theme_mobile' => array('theme-mobile', t("Mobile system theme"), get_config('system','mobile-theme'), t("Theme for mobile devices"), $theme_choices_mobile), - '$theme_accessibility' => array('theme-accessibility', t("Accessibility system theme"), get_config('system','accessibility-theme'), t("Accessibility theme"), $theme_choices_accessibility), - '$site_channel' => array('site-channel', t("Channel to use for this website's static pages"), get_config('system','site-channel'), t("Site Channel")), + '$theme_mobile' => array('theme_mobile', t("Mobile system theme"), get_config('system','mobile_theme'), t("Theme for mobile devices"), $theme_choices_mobile), + '$theme_accessibility' => array('theme_accessibility', t("Accessibility system theme"), get_config('system','accessibility_theme'), t("Accessibility theme"), $theme_choices_accessibility), + '$site_channel' => array('site_channel', t("Channel to use for this website's static pages"), get_config('system','site_channel'), t("Site Channel")), '$ssl_policy' => array('ssl_policy', t("SSL link policy"), (string) intval(get_config('system','ssl_policy')), t("Determines whether generated links should be forced to use SSL"), $ssl_choices), '$maximagesize' => array('maximagesize', t("Maximum image size"), get_config('system','maximagesize'), t("Maximum size in bytes of uploaded images. Default is 0, which means no limits.")), '$register_policy' => array('register_policy', t("Register policy"), get_config('system','register_policy'), "", $register_choices), diff --git a/mod/community.php b/mod/community.php index 971ecca5c..e4c6e6b04 100644 --- a/mod/community.php +++ b/mod/community.php @@ -3,7 +3,7 @@ function community_init(&$a) { if(! local_user()) { unset($_SESSION['theme']); - unset($_SESSION['mobile-theme']); + unset($_SESSION['mobile_theme']); } diff --git a/mod/home.php b/mod/home.php index 86d489853..d17d477c8 100644 --- a/mod/home.php +++ b/mod/home.php @@ -30,10 +30,10 @@ function home_content(&$a) { if(x($_SESSION,'theme')) unset($_SESSION['theme']); - if(x($_SESSION,'mobile-theme')) - unset($_SESSION['mobile-theme']); + if(x($_SESSION,'mobile_theme')) + unset($_SESSION['mobile_theme']); -$channel_address = get_config("system", "site-channel" ); +$channel_address = get_config("system", "site_channel" ); if ($channel_address){ require_once('include/items.php'); diff --git a/mod/search.php b/mod/search.php index 1335ea508..38131f63f 100644 --- a/mod/search.php +++ b/mod/search.php @@ -59,7 +59,7 @@ function search_init(&$a) { } else { unset($_SESSION['theme']); - unset($_SESSION['mobile-theme']); + unset($_SESSION['mobile_theme']); } diff --git a/mod/settings.php b/mod/settings.php index c39286ebc..50bb13ea2 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -783,7 +783,7 @@ function settings_content(&$a) { $default_theme = get_config('system','theme'); if(! $default_theme) $default_theme = 'default'; - $default_mobile_theme = get_config('system','mobile-theme'); + $default_mobile_theme = get_config('system','mobile_theme'); if(! $mobile_default_theme) $mobile_default_theme = 'none'; @@ -817,7 +817,7 @@ function settings_content(&$a) { } } $theme_selected = (!x($_SESSION,'theme')? $default_theme : $_SESSION['theme']); - $mobile_theme_selected = (!x($_SESSION,'mobile-theme')? $default_mobile_theme : $_SESSION['mobile-theme']); + $mobile_theme_selected = (!x($_SESSION,'mobile_theme')? $default_mobile_theme : $_SESSION['mobile_theme']); $browser_update = intval(get_pconfig(local_user(), 'system','update_interval')); $browser_update = (($browser_update == 0) ? 40 : $browser_update / 1000); // default if not set: 40 seconds -- cgit v1.2.3 From b5efa1a63a621856f4f12fbd938aa3230aa0d1a9 Mon Sep 17 00:00:00 2001 From: friendica Date: Sat, 17 Aug 2013 06:30:09 -0700 Subject: issue #82, posted order not working - also doc update --- doc/html/Contact_8php.html | 30 + doc/html/Contact_8php.js | 1 + doc/html/boot_8php.html | 128 ++- doc/html/boot_8php.js | 4 + doc/html/crypto_8php.html | 4 +- doc/html/datetime_8php.html | 2 +- doc/html/dba__driver_8php.html | 10 +- doc/html/dir_d41ce877eb409a4791b288730010abe2.html | 4 + doc/html/dir_d41ce877eb409a4791b288730010abe2.js | 2 + doc/html/dir_d44c64559bbebec7f509842c48db8b23.html | 4 + doc/html/dir_d44c64559bbebec7f509842c48db8b23.js | 2 + doc/html/extract_8php.html | 2 +- doc/html/files.html | 188 ++-- doc/html/globals_0x61.html | 3 + doc/html/globals_0x69.html | 7 +- doc/html/globals_0x6d.html | 54 + doc/html/globals_0x70.html | 3 + doc/html/globals_0x72.html | 3 + doc/html/globals_0x77.html | 6 +- doc/html/globals_func_0x69.html | 4 +- doc/html/globals_func_0x6d.html | 48 + doc/html/globals_func_0x70.html | 3 + doc/html/globals_func_0x72.html | 5 +- doc/html/globals_func_0x77.html | 6 +- doc/html/globals_vars_0x61.html | 3 + doc/html/globals_vars_0x69.html | 3 + doc/html/globals_vars_0x6d.html | 6 + doc/html/include_2config_8php.html | 6 +- doc/html/include_2menu_8php.html | 431 ++++++++ doc/html/include_2menu_8php.js | 14 + doc/html/item_8php.html | 2 +- doc/html/items_8php.html | 24 +- doc/html/items_8php.js | 4 +- doc/html/language_8php.html | 4 +- doc/html/mitem_8php.html | 173 +++ doc/html/mitem_8php.js | 6 + doc/html/mod_2menu_8php.html | 155 +++ doc/html/mod_2menu_8php.js | 5 + doc/html/navtree.js | 14 +- doc/html/navtreeindex0.js | 266 ++--- doc/html/navtreeindex1.js | 134 +-- doc/html/navtreeindex2.js | 12 +- doc/html/navtreeindex3.js | 14 +- doc/html/navtreeindex4.js | 154 +-- doc/html/navtreeindex5.js | 334 +++--- doc/html/navtreeindex6.js | 438 ++++---- doc/html/navtreeindex7.js | 60 +- doc/html/page__widgets_8php.html | 177 +++ doc/html/page__widgets_8php.js | 5 + doc/html/permissions_8php.html | 2 +- doc/html/php2po_8php.html | 2 +- doc/html/plugin_8php.html | 4 +- doc/html/redbasic_2php_2style_8php.html | 4 +- doc/html/search/all_61.js | 1 + doc/html/search/all_69.js | 5 +- doc/html/search/all_6d.js | 21 + doc/html/search/all_70.js | 2 + doc/html/search/all_72.js | 1 + doc/html/search/all_77.js | 4 +- doc/html/search/files_6d.js | 3 + doc/html/search/files_70.js | 1 + doc/html/search/functions_69.js | 4 +- doc/html/search/functions_6d.js | 16 + doc/html/search/functions_70.js | 1 + doc/html/search/functions_72.js | 1 + doc/html/search/functions_77.js | 4 +- doc/html/search/variables_61.js | 1 + doc/html/search/variables_69.js | 1 + doc/html/search/variables_6d.js | 4 +- doc/html/security_8php.html | 2 +- doc/html/taxonomy_8php.html | 2 +- doc/html/text_8php.html | 12 +- doc/html/typo_8php.html | 2 +- doc/html/typohelper_8php.html | 4 +- doc/html/webpages_8php.html | 18 - doc/html/webpages_8php.js | 3 +- util/messages.po | 1134 +++++++++++--------- version.inc | 2 +- view/tpl/build_query.tpl | 1 + 79 files changed, 2839 insertions(+), 1390 deletions(-) create mode 100644 doc/html/include_2menu_8php.html create mode 100644 doc/html/include_2menu_8php.js create mode 100644 doc/html/mitem_8php.html create mode 100644 doc/html/mitem_8php.js create mode 100644 doc/html/mod_2menu_8php.html create mode 100644 doc/html/mod_2menu_8php.js create mode 100644 doc/html/page__widgets_8php.html create mode 100644 doc/html/page__widgets_8php.js diff --git a/doc/html/Contact_8php.html b/doc/html/Contact_8php.html index ebfab877b..a7a11c12f 100644 --- a/doc/html/Contact_8php.html +++ b/doc/html/Contact_8php.html @@ -112,6 +112,8 @@ $(document).ready(function(){initNavTree('Contact_8php.html','');}); + + @@ -379,6 +381,34 @@ Functions

Referenced by randprof_init().

+ + + +
+
+

Functions

 rconnect_url ($channel_id, $xchan)
 
 abook_connections ($channel_id, $sql_conditions= '')
 
 abook_self ($channel_id)
+ + + + + + + + + + + + + + + + + +
rconnect_url ( $channel_id,
 $xchan 
)
+
+ +

Referenced by profile_sidebar().

+
diff --git a/doc/html/Contact_8php.js b/doc/html/Contact_8php.js index b785bb7d0..6a4f7843d 100644 --- a/doc/html/Contact_8php.js +++ b/doc/html/Contact_8php.js @@ -11,6 +11,7 @@ var Contact_8php = [ "contact_remove", "Contact_8php.html#a28e062c884331dbb5dfa713228c25ad6", null ], [ "contacts_not_grouped", "Contact_8php.html#a228fc01f90ae9bfdde4c2ad0772bd7dc", null ], [ "random_profile", "Contact_8php.html#a91281b5d4bbbb2ed468e27ec82ca083c", null ], + [ "rconnect_url", "Contact_8php.html#a2f4f495d53f2a334ab75292af79d3c91", null ], [ "remove_all_xchan_resources", "Contact_8php.html#acc12cda999c88c4d6185cca967c15125", null ], [ "terminate_friendship", "Contact_8php.html#a38daa1c210b78385307123450ca9a1fc", null ], [ "user_remove", "Contact_8php.html#a2fc191067dd571a79603c66b04b1ca15", null ], diff --git a/doc/html/boot_8php.html b/doc/html/boot_8php.html index 03f251c1f..fa0bfc600 100644 --- a/doc/html/boot_8php.html +++ b/doc/html/boot_8php.html @@ -222,7 +222,7 @@ Variables   const ZOT_REVISION 1   -const DB_UPDATE_VERSION 1058 +const DB_UPDATE_VERSION 1059   const EOL '<br />' . "\r\n"   @@ -412,6 +412,10 @@ Variables   const ATTACH_FLAG_OS 0x0002   +const MENU_ITEM_ZID 0x0001 +  +const MENU_ITEM_NEWWIN 0x0002 +  const MAX_LIKERS 75   const ZCURL_TIMEOUT (-1) @@ -576,6 +580,8 @@ Variables   const ACCOUNT_ROLE_ADMIN 0x1000   +const ACCOUNT_ROLE_ALLOWCODE 0x0001 +  const ITEM_VISIBLE 0x0000   const ITEM_HIDDEN 0x0001 @@ -594,6 +600,8 @@ Variables   const ITEM_DELAYED_PUBLISH 0x0080   +const ITEM_BUILDBLOCK 0x0100 +  const ITEM_ORIGIN 0x0001   const ITEM_UNSEEN 0x0002 @@ -668,7 +676,7 @@ Variables
-

Referenced by App\__construct(), _well_known_init(), admin_content(), admin_page_dbsync(), admin_page_users(), admin_post(), allfriends_content(), api_get_user(), attach_init(), channel_content(), channel_init(), common_init(), connections_content(), connections_init(), contactgroup_content(), display_content(), editpost_content(), editwebpage_content(), events_content(), feed_init(), group_content(), group_post(), lastpost_init(), like_content(), lockview_content(), manage_content(), message_content(), new_channel_init(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), page_content(), page_init(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), poller_run(), post_init(), profile_init(), profile_photo_post(), profiles_aside(), profiles_content(), profiles_init(), profiles_post(), queue_run(), register_init(), regmod_content(), settings_aside(), settings_post(), setup_init(), share_init(), starred_init(), subthread_content(), tagger_content(), thing_content(), uexport_init(), update_channel_content(), update_display_content(), update_network_content(), update_search_content(), viewconnections_init(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_init(), and zotfeed_init().

+

Referenced by App\__construct(), _well_known_init(), admin_content(), admin_page_dbsync(), admin_page_users(), admin_post(), allfriends_content(), api_get_user(), attach_init(), channel_content(), channel_init(), common_init(), connections_content(), connections_init(), contactgroup_content(), display_content(), editpost_content(), editwebpage_content(), events_content(), feed_init(), group_content(), group_post(), lastpost_init(), like_content(), lockview_content(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), new_channel_init(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), page_content(), page_init(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), post_init(), profile_init(), profile_photo_post(), profiles_aside(), profiles_content(), profiles_init(), profiles_post(), queue_run(), register_init(), regmod_content(), settings_aside(), settings_post(), setup_init(), share_init(), starred_init(), subthread_content(), tagger_content(), thing_content(), uexport_init(), update_channel_content(), update_display_content(), update_network_content(), update_search_content(), viewconnections_init(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), and zotfeed_init().

@@ -686,7 +694,7 @@ Variables
-

Referenced by App\__construct(), _well_known_init(), admin_content(), admin_page_dbsync(), admin_page_users(), admin_post(), allfriends_content(), api_get_user(), api_statuses_destroy(), api_statuses_repeat(), api_statuses_show(), attach_init(), channel_content(), channel_init(), common_init(), connections_content(), connections_init(), connections_post(), contactgroup_content(), display_content(), editpost_content(), editwebpage_content(), events_content(), feed_init(), group_content(), group_post(), lastpost_init(), like_content(), lockview_content(), manage_content(), message_aside(), message_content(), new_channel_init(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), page_content(), page_init(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), poller_run(), post_init(), profile_init(), profile_photo_post(), profile_tabs(), profiles_aside(), profiles_content(), profiles_init(), profiles_post(), queue_run(), register_init(), regmod_content(), settings_aside(), settings_post(), setup_init(), share_init(), starred_init(), subthread_content(), tagger_content(), uexport_init(), update_channel_content(), update_display_content(), update_network_content(), update_search_content(), view_init(), viewconnections_init(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_init(), and zotfeed_init().

+

Referenced by App\__construct(), _well_known_init(), admin_content(), admin_page_dbsync(), admin_page_users(), admin_post(), allfriends_content(), api_get_user(), api_statuses_destroy(), api_statuses_repeat(), api_statuses_show(), attach_init(), channel_content(), channel_init(), common_init(), connections_content(), connections_init(), connections_post(), contactgroup_content(), display_content(), editpost_content(), editwebpage_content(), events_content(), feed_init(), group_content(), group_post(), lastpost_init(), like_content(), lockview_content(), manage_content(), menu_content(), menu_post(), message_aside(), message_content(), mitem_content(), mitem_init(), mitem_post(), new_channel_init(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), page_content(), page_init(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), post_init(), profile_init(), profile_photo_post(), profile_tabs(), profiles_aside(), profiles_content(), profiles_init(), profiles_post(), queue_run(), register_init(), regmod_content(), settings_aside(), settings_post(), setup_init(), share_init(), starred_init(), subthread_content(), tagger_content(), uexport_init(), update_channel_content(), update_display_content(), update_network_content(), update_search_content(), view_init(), viewconnections_init(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), and zotfeed_init().

@@ -1006,7 +1014,7 @@ Variables
-

Referenced by attach_by_hash(), attach_by_hash_nodata(), attach_store(), common_content(), common_friends_visitor_widget(), display_content(), editpost_content(), get_public_feed(), item_permissions_sql(), new_contact(), permissions_sql(), photo_init(), photos_post(), prepare_body(), suggest_content(), tagger_content(), thing_init(), viewconnections_content(), wall_attach_post(), and z_readdir().

+

Referenced by attach_by_hash(), attach_by_hash_nodata(), attach_store(), common_content(), common_friends_visitor_widget(), display_content(), editpost_content(), get_public_feed(), item_permissions_sql(), mitem_content(), new_contact(), permissions_sql(), photo_init(), photos_post(), prepare_body(), profile_sidebar(), suggest_content(), tagger_content(), thing_init(), viewconnections_content(), wall_attach_post(), and z_readdir().

@@ -1039,7 +1047,7 @@ Variables
-

Referenced by admin_page_dbsync(), admin_page_logs_post(), admin_page_plugins(), admin_page_site_post(), admin_page_themes(), admin_page_users(), admin_page_users_post(), admin_post(), api_content(), authenticate_success(), channel_remove(), check_form_security_token_redirectOnErr(), connections_content(), connections_post(), delegate_content(), directory_content(), drop_item(), events_post(), filerm_content(), follow_init(), group_content(), group_post(), import_post(), intro_post(), item_post(), login_content(), lostpass_content(), lostpass_post(), magic_init(), manage_content(), message_content(), mood_init(), network_content(), new_channel_post(), notifications_post(), notify_init(), photos_post(), post_init(), profile_photo_post(), profiles_init(), randprof_init(), redir_init(), register_post(), removeme_content(), rmagic_init(), rmagic_post(), search_content(), settings_post(), tagrm_content(), tagrm_post(), toggle_mobile_init(), and zid_init().

+

Referenced by admin_page_dbsync(), admin_page_logs_post(), admin_page_plugins(), admin_page_site_post(), admin_page_themes(), admin_page_users(), admin_page_users_post(), admin_post(), api_content(), authenticate_success(), channel_remove(), check_form_security_token_redirectOnErr(), connections_content(), connections_post(), delegate_content(), directory_content(), drop_item(), events_post(), filerm_content(), follow_init(), group_content(), group_post(), import_post(), intro_post(), item_post(), login_content(), lostpass_content(), lostpass_post(), magic_init(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_post(), mood_init(), network_content(), new_channel_post(), notifications_post(), notify_init(), photos_post(), post_init(), profile_photo_post(), profiles_init(), randprof_init(), redir_init(), register_post(), removeme_content(), rmagic_init(), rmagic_post(), search_content(), settings_post(), tagrm_content(), tagrm_post(), toggle_mobile_init(), and zid_init().

@@ -1090,7 +1098,7 @@ Variables
-

Referenced by admin_page_dbsync(), admin_page_logs_post(), admin_page_plugins(), admin_page_site_post(), admin_page_themes(), admin_post(), authenticate_success(), community_content(), connections_content(), connections_post(), crepair_post(), directory_content(), dirfind_content(), follow_init(), fsuggest_post(), group_content(), group_post(), intro_post(), item_post(), lostpass_content(), lostpass_post(), match_content(), message_content(), network_content(), notifications_content(), oexchange_content(), post_init(), profile_photo_post(), profiles_init(), profiles_post(), register_post(), regmod_content(), settings_post(), suggest_content(), tagrm_post(), thing_init(), user_allow(), and viewconnections_content().

+

Referenced by admin_page_dbsync(), admin_page_logs_post(), admin_page_plugins(), admin_page_site_post(), admin_page_themes(), admin_post(), authenticate_success(), community_content(), connections_content(), connections_post(), crepair_post(), directory_content(), dirfind_content(), follow_init(), fsuggest_post(), group_content(), group_post(), intro_post(), item_post(), lostpass_content(), lostpass_post(), match_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_post(), network_content(), notifications_content(), oexchange_content(), post_init(), profile_photo_post(), profiles_init(), profiles_post(), register_post(), regmod_content(), settings_post(), suggest_content(), tagrm_post(), thing_init(), user_allow(), and viewconnections_content().

@@ -1176,7 +1184,7 @@ Variables
-

Referenced by acl_init(), Conversation\add_thread(), allfriends_content(), api_content(), api_get_user(), api_post(), api_user(), best_link_url(), App\build_pagehead(), build_sync_packet(), change_channel(), channel_content(), channel_init(), channel_remove(), chanview_content(), common_friends_visitor_widget(), community_content(), community_init(), connections_content(), connections_init(), connections_post(), contact_select(), contactgroup_content(), conversation(), crepair_content(), crepair_init(), crepair_post(), current_theme(), delegate_content(), directory_aside(), directory_content(), display_content(), drop_item(), drop_items(), editpost_content(), editwebpage_content(), events_content(), events_post(), fbrowser_content(), fileas_widget(), filer_content(), filerm_content(), findpeople_widget(), follow_content(), follow_init(), fsuggest_content(), fsuggest_post(), get_birthdays(), Item\get_comment_box(), get_events(), Item\get_template_data(), get_theme_uid(), group_aside(), group_content(), group_get_members(), group_post(), group_select(), group_side(), hcard_init(), intro_content(), intro_post(), invite_content(), invite_post(), item_content(), item_permissions_sql(), item_photo_menu(), item_post(), lastpost_content(), lastpost_init(), like_puller(), lockview_content(), login(), login_content(), magic_init(), manage_content(), match_content(), message_content(), message_post(), mood_content(), mood_init(), nav(), network_content(), network_init(), new_contact(), nogroup_content(), nogroup_init(), notifications_content(), notifications_post(), notify_content(), notify_init(), oexchange_content(), page_init(), permissions_sql(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), poke_content(), poke_init(), post_init(), prepare_body(), private_messages_list(), profile_activity(), profile_content(), profile_create_sidebar(), profile_init(), profile_photo_aside(), profile_photo_init(), profile_photo_post(), profile_sidebar(), profile_tabs(), profiles_aside(), profiles_content(), profiles_init(), profiles_post(), profperm_aside(), profperm_content(), profperm_init(), qsearch_init(), redbasic_form(), redir_init(), regmod_content(), removeme_content(), removeme_post(), rmagic_init(), saved_searches(), search_ac_init(), search_content(), search_init(), search_saved_searches(), service_class_allows(), service_class_fetch(), Conversation\set_mode(), settings_aside(), settings_init(), settings_post(), share_init(), smilies(), starred_init(), stream_perms_api_uids(), subthread_content(), suggest_content(), suggest_init(), tagger_content(), tagrm_content(), tagrm_post(), theme_content(), theme_post(), thing_content(), thing_init(), uexport_init(), vcard_from_xchan(), viewconnections_aside(), viewconnections_content(), viewconnections_init(), viewsrc_content(), webpages_content(), webpages_init(), and zid_init().

+

Referenced by acl_init(), Conversation\add_thread(), allfriends_content(), api_content(), api_get_user(), api_post(), api_user(), best_link_url(), App\build_pagehead(), build_sync_packet(), change_channel(), channel_content(), channel_init(), channel_remove(), chanview_content(), common_friends_visitor_widget(), community_content(), community_init(), connections_content(), connections_init(), connections_post(), contact_select(), contactgroup_content(), conversation(), crepair_content(), crepair_init(), crepair_post(), current_theme(), delegate_content(), directory_aside(), directory_content(), display_content(), drop_item(), drop_items(), editpost_content(), editwebpage_content(), events_content(), events_post(), fbrowser_content(), fileas_widget(), filer_content(), filerm_content(), findpeople_widget(), follow_content(), follow_init(), fsuggest_content(), fsuggest_post(), get_birthdays(), Item\get_comment_box(), get_events(), Item\get_template_data(), get_theme_uid(), group_aside(), group_content(), group_get_members(), group_post(), group_select(), group_side(), hcard_init(), intro_content(), intro_post(), invite_content(), invite_post(), item_content(), item_permissions_sql(), item_photo_menu(), item_post(), lastpost_content(), lastpost_init(), like_puller(), lockview_content(), login(), login_content(), magic_init(), manage_content(), match_content(), menu_content(), menu_post(), message_content(), message_post(), mitem_content(), mitem_init(), mitem_post(), mood_content(), mood_init(), nav(), network_content(), network_init(), new_contact(), nogroup_content(), nogroup_init(), notifications_content(), notifications_post(), notify_content(), notify_init(), oexchange_content(), page_init(), permissions_sql(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), poke_content(), poke_init(), post_init(), prepare_body(), private_messages_list(), profile_activity(), profile_content(), profile_create_sidebar(), profile_init(), profile_load(), profile_photo_aside(), profile_photo_init(), profile_photo_post(), profile_sidebar(), profile_tabs(), profiles_aside(), profiles_content(), profiles_init(), profiles_post(), profperm_aside(), profperm_content(), profperm_init(), qsearch_init(), redbasic_form(), redir_init(), regmod_content(), removeme_content(), removeme_post(), rmagic_init(), saved_searches(), search_ac_init(), search_content(), search_init(), search_saved_searches(), service_class_allows(), service_class_fetch(), Conversation\set_mode(), settings_aside(), settings_init(), settings_post(), share_init(), smilies(), starred_init(), stream_perms_api_uids(), subthread_content(), suggest_content(), suggest_init(), tagger_content(), tagrm_content(), tagrm_post(), theme_content(), theme_post(), thing_content(), thing_init(), uexport_init(), vcard_from_xchan(), viewconnections_aside(), viewconnections_content(), viewconnections_init(), viewsrc_content(), webpages_content(), and zid_init().

@@ -1228,7 +1236,7 @@ Variables
-

Referenced by admin_content(), admin_page_plugins(), admin_page_themes(), admin_page_users(), admin_page_users_post(), allfriends_content(), api_content(), api_post(), apps_content(), attach_init(), channel_content(), channel_init(), chanview_content(), check_form_security_token_redirectOnErr(), common_content(), common_init(), community_content(), connections_content(), connections_post(), crepair_content(), crepair_post(), delegate_content(), directory_content(), display_content(), drop_item(), editpost_content(), editwebpage_content(), events_content(), events_post(), follow_init(), fsuggest_content(), fsuggest_post(), group_add(), group_content(), group_post(), hcard_init(), import_content(), import_post(), intro_content(), intro_post(), invite_content(), invite_post(), item_post(), lastpost_content(), lastpost_init(), like_content(), lostpass_content(), lostpass_post(), magic_init(), manage_content(), match_content(), message_content(), message_post(), mood_content(), network_content(), network_init(), new_channel_content(), new_channel_post(), nogroup_content(), notifications_content(), notifications_post(), page_content(), photos_content(), photos_post(), poke_content(), post_init(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), register_content(), register_post(), regmod_content(), rmagic_post(), search_content(), settings_post(), suggest_content(), thing_init(), user_deny(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_init(), and xchan_content().

+

Referenced by admin_content(), admin_page_plugins(), admin_page_themes(), admin_page_users(), admin_page_users_post(), allfriends_content(), api_content(), api_post(), apps_content(), attach_init(), channel_content(), channel_init(), chanview_content(), check_form_security_token_redirectOnErr(), common_content(), common_init(), community_content(), connections_content(), connections_post(), crepair_content(), crepair_post(), delegate_content(), directory_content(), display_content(), drop_item(), editpost_content(), editwebpage_content(), events_content(), events_post(), follow_init(), fsuggest_content(), fsuggest_post(), group_add(), group_content(), group_post(), hcard_init(), import_content(), import_post(), intro_content(), intro_post(), invite_content(), invite_post(), item_post(), lastpost_content(), lastpost_init(), like_content(), lostpass_content(), lostpass_post(), magic_init(), manage_content(), match_content(), menu_content(), menu_post(), message_content(), message_post(), mitem_content(), mitem_init(), mitem_post(), mood_content(), network_content(), network_init(), new_channel_content(), new_channel_post(), nogroup_content(), notifications_content(), notifications_post(), page_content(), photos_content(), photos_post(), poke_content(), post_init(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), register_content(), register_post(), regmod_content(), rmagic_post(), search_content(), settings_post(), suggest_content(), thing_init(), user_deny(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), and xchan_content().

@@ -1307,7 +1315,7 @@ Variables

Profile information is placed in the App structure for later retrieval. Honours the owner's chosen theme for display.

load/reload current theme info

-

Referenced by channel_init(), common_init(), hcard_init(), lastpost_init(), page_init(), profile_init(), profile_photo_init(), profiles_init(), profperm_init(), viewconnections_init(), and webpages_init().

+

Referenced by channel_init(), common_init(), hcard_init(), lastpost_init(), page_init(), profile_init(), profile_photo_init(), profiles_init(), profperm_init(), viewconnections_init(), and webpages_content().

@@ -1451,7 +1459,7 @@ Variables
-

Referenced by FriendicaSmarty\__construct(), App\__construct(), acl_init(), admin_page_logs_post(), admin_page_plugins(), admin_page_site(), admin_page_site_post(), admin_page_themes(), admin_page_users_post(), api_content(), api_direct_messages_box(), api_direct_messages_new(), api_favorites(), api_format_messages(), api_get_user(), api_login(), api_post(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), api_user(), attach_store(), authenticate_success(), bbcode(), bbtoevent(), best_link_url(), App\build_pagehead(), channel_aside(), channel_content(), check_config(), check_form_security_token(), community_content(), connections_aside(), connections_content(), connections_post(), construct_page(), consume_feed(), conversation(), create_account(), create_identity(), crepair_init(), crepair_post(), current_theme(), del_pconfig(), del_xconfig(), delegate_content(), detect_language(), directory_content(), dirfind_init(), dirsearch_content(), encode_rel_links(), events_content(), events_post(), feed_init(), filerm_content(), get_atom_elements(), App\get_baseurl(), get_browser_language(), get_item_elements(), get_max_import_size(), get_my_address(), get_my_url(), get_plink(), get_public_feed(), Item\get_template_data(), group_add(), group_rmv(), hcard_init(), import_post(), import_xchan(), info(), intro_content(), invite_post(), item_post(), item_store(), item_store_update(), lang_selector(), lastpost_aside(), lastpost_content(), load_contact_links(), local_user(), lostpass_content(), lrdd(), magic_init(), mail_store(), message_content(), message_post(), mood_content(), mood_init(), nav(), navbar_complete(), network_content(), network_init(), network_query_get_sel_tab(), new_channel_content(), nogroup_init(), notice(), notifications_content(), oexchange_content(), parse_url_content(), photo_upload(), photos_content(), photos_post(), ping_init(), poco_init(), poco_load(), poke_content(), poke_init(), post_activity_item(), printable(), probe_content(), proc_run(), process_delivery(), profile_photo_post(), profile_sidebar(), profile_tabs(), profiles_post(), qsearch_init(), redir_init(), ref_session_read(), register_content(), register_post(), App\register_template_engine(), regmod_content(), remote_user(), removeme_post(), saved_searches(), search_ac_init(), search_content(), search_init(), search_post(), service_class_allows(), service_class_fetch(), App\set_baseurl(), settings_post(), setup_content(), setup_init(), siteinfo_init(), suggest_init(), t(), tagrm_post(), App\template_engine(), tt(), validate_channelname(), wall_upload_post(), webfinger_content(), wfinger_init(), xchan_content(), z_fetch_url(), z_post_url(), and zfinger_init().

+

Referenced by FriendicaSmarty\__construct(), App\__construct(), acl_init(), admin_page_logs_post(), admin_page_plugins(), admin_page_site(), admin_page_site_post(), admin_page_themes(), admin_page_users_post(), api_content(), api_direct_messages_box(), api_direct_messages_new(), api_favorites(), api_format_messages(), api_get_user(), api_login(), api_post(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), api_user(), attach_store(), authenticate_success(), bbcode(), bbtoevent(), best_link_url(), App\build_pagehead(), channel_aside(), channel_content(), check_config(), check_form_security_token(), community_content(), connections_aside(), connections_content(), connections_post(), construct_page(), consume_feed(), conversation(), create_account(), create_identity(), crepair_init(), crepair_post(), current_theme(), del_pconfig(), del_xconfig(), delegate_content(), detect_language(), directory_content(), dirfind_init(), dirsearch_content(), encode_rel_links(), events_content(), events_post(), feed_init(), filerm_content(), get_atom_elements(), App\get_baseurl(), get_browser_language(), get_item_elements(), get_max_import_size(), get_my_address(), get_my_url(), get_plink(), get_public_feed(), Item\get_template_data(), group_add(), group_rmv(), hcard_init(), import_post(), import_xchan(), info(), intro_content(), invite_post(), item_post(), item_store(), item_store_update(), lang_selector(), lastpost_aside(), lastpost_content(), load_contact_links(), local_user(), lostpass_content(), lrdd(), magic_init(), mail_store(), message_content(), message_post(), mood_content(), mood_init(), nav(), navbar_complete(), network_content(), network_init(), network_query_get_sel_tab(), new_channel_content(), nogroup_init(), notice(), notifications_content(), oexchange_content(), parse_url_content(), photo_upload(), photos_content(), photos_post(), ping_init(), poco_init(), poco_load(), poke_content(), poke_init(), post_activity_item(), printable(), probe_content(), proc_run(), process_delivery(), profile_photo_post(), profile_sidebar(), profile_tabs(), profiles_post(), qsearch_init(), redir_init(), ref_session_read(), register_content(), register_post(), App\register_template_engine(), regmod_content(), remote_user(), removeme_post(), saved_searches(), search_ac_init(), search_content(), search_init(), search_post(), service_class_allows(), service_class_fetch(), App\set_baseurl(), settings_post(), setup_content(), setup_init(), siteinfo_init(), suggest_init(), t(), tagrm_post(), App\template_engine(), tt(), validate_channelname(), wall_upload_post(), webfinger_content(), wfinger_init(), xchan_content(), z_fetch_url(), z_post_url(), and zfinger_init().

@@ -1519,7 +1527,7 @@ Variables
-

Referenced by allowed_public_recips(), chanlink_cid(), chanlink_hash(), chanlink_url(), channel_content(), chanview_content(), check_config(), connections_content(), conversation(), create_identity(), deliver_run(), directory_content(), display_content(), event_store(), follow_init(), format_css_if_exists(), format_js_if_exists(), group_post(), App\head_get_icon(), head_get_icon(), hostxrd_init(), import_post(), import_xchan(), intro_post(), invite_content(), item_photo_menu(), item_store(), lastpost_content(), login_content(), lostpass_content(), lostpass_post(), magic_init(), magiclink_url(), manage_content(), mood_init(), navbar_complete(), network_content(), new_channel_post(), notification(), notifications_post(), notifier_run(), photo_upload(), photos_album_widget(), photos_create_item(), post_init(), profile_activity(), public_recips(), redir_init(), register_post(), removeme_content(), rmagic_init(), rmagic_post(), search_content(), send_reg_approval_email(), send_verification_email(), setup_content(), setup_post(), siteinfo_content(), siteinfo_init(), sync_directories(), tagger_content(), thing_init(), update_suggestions(), user_allow(), vcard_from_xchan(), webpages_content(), wfinger_init(), zfinger_init(), zid_init(), zot_build_packet(), zot_fetch(), and zot_new_uid().

+

Referenced by allowed_public_recips(), chanlink_cid(), chanlink_hash(), chanlink_url(), channel_content(), chanview_content(), check_config(), connections_content(), conversation(), create_identity(), deliver_run(), directory_content(), display_content(), event_store(), follow_init(), format_css_if_exists(), format_js_if_exists(), group_post(), App\head_get_icon(), head_get_icon(), hostxrd_init(), import_post(), import_xchan(), intro_post(), invite_content(), item_photo_menu(), item_store(), lastpost_content(), login_content(), lostpass_content(), lostpass_post(), magic_init(), magiclink_url(), manage_content(), menu_content(), menu_post(), mitem_content(), mitem_post(), mood_init(), navbar_complete(), network_content(), new_channel_post(), notification(), notifications_post(), notifier_run(), photo_upload(), photos_album_widget(), photos_create_item(), post_init(), profile_activity(), public_recips(), redir_init(), register_post(), removeme_content(), rmagic_init(), rmagic_post(), search_content(), send_reg_approval_email(), send_verification_email(), setup_content(), setup_post(), siteinfo_content(), siteinfo_init(), sync_directories(), tagger_content(), thing_init(), update_suggestions(), user_allow(), vcard_from_xchan(), webpages_content(), wfinger_init(), zfinger_init(), zid_init(), zot_build_packet(), zot_fetch(), and zot_new_uid().

@@ -1557,7 +1565,7 @@ Variables
Returns
string

'zid' string url - url to accept zid string zid - urlencoded zid string result - the return string we calculated, change it if you want to return something else

-

Referenced by bb_ShareAttributes(), conversation(), dirfind_content(), intro_content(), like_puller(), localize_item(), match_content(), notifications_content(), and viewconnections_content().

+

Referenced by bb_ShareAttributes(), conversation(), dirfind_content(), intro_content(), like_puller(), localize_item(), match_content(), menu_render(), notifications_content(), and viewconnections_content().

@@ -1590,7 +1598,7 @@ Variables
-

Referenced by connections_content(), and poller_run().

+

Referenced by collect_recipients(), connections_content(), contact_remove(), and poller_run().

@@ -1674,7 +1682,7 @@ Variables
-

Referenced by zfinger_init().

+

Referenced by admin_page_site(), and zfinger_init().

@@ -1688,7 +1696,7 @@ Variables
-

Referenced by zfinger_init().

+

Referenced by admin_page_site(), and zfinger_init().

@@ -1703,7 +1711,7 @@ Variables

site access policy

-

Referenced by zfinger_init().

+

Referenced by admin_page_site(), and zfinger_init().

@@ -1789,6 +1797,18 @@ Variables

Referenced by account_remove(), create_account(), is_site_admin(), and send_reg_approval_email().

+ + + +
+
+ + + + +
const ACCOUNT_ROLE_ALLOWCODE 0x0001
+
+
@@ -2286,7 +2306,7 @@ Variables
- +
const DB_UPDATE_VERSION 1058const DB_UPDATE_VERSION 1059
@@ -2400,7 +2420,7 @@ Variables
-

Referenced by admin_page_dbsync(), admin_page_site_post(), admin_page_users(), allfriends_content(), api_content(), api_post(), apps_content(), attach_init(), authenticate_success(), channel_content(), channel_init(), chanview_content(), check_account_email(), check_account_invite(), check_form_security_std_err_msg(), check_keys(), check_php(), common_content(), common_init(), community_content(), connections_content(), connections_post(), crepair_content(), crepair_post(), delegate_content(), directory_content(), dirfind_content(), display_content(), drop_item(), editpost_content(), editwebpage_content(), events_content(), events_post(), follow_init(), format_like(), fsuggest_content(), fsuggest_post(), group_add(), group_content(), group_post(), hcard_init(), import_post(), import_xchan(), intro_content(), intro_post(), invite_content(), invite_post(), item_post(), lastpost_content(), lastpost_init(), like_content(), load_database(), lostpass_content(), lostpass_post(), magic_init(), manage_content(), match_content(), message_content(), message_post(), mood_content(), network_content(), network_init(), new_channel_content(), new_channel_post(), nogroup_content(), notifications_content(), notifications_post(), oexchange_content(), page_content(), photos_content(), photos_post(), poke_content(), post_init(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), register_content(), register_post(), regmod_content(), search_content(), settings_post(), setup_content(), suggest_content(), tagrm_post(), user_allow(), user_deny(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_init(), and xchan_content().

+

Referenced by admin_page_dbsync(), admin_page_site_post(), admin_page_users(), allfriends_content(), api_content(), api_post(), apps_content(), attach_init(), authenticate_success(), channel_content(), channel_init(), chanview_content(), check_account_email(), check_account_invite(), check_form_security_std_err_msg(), check_keys(), check_php(), common_content(), common_init(), community_content(), connections_content(), connections_post(), crepair_content(), crepair_post(), delegate_content(), directory_content(), dirfind_content(), display_content(), drop_item(), editpost_content(), editwebpage_content(), events_content(), events_post(), follow_init(), format_like(), fsuggest_content(), fsuggest_post(), group_add(), group_content(), group_post(), hcard_init(), import_post(), import_xchan(), intro_content(), intro_post(), invite_content(), invite_post(), item_post(), lastpost_content(), lastpost_init(), like_content(), load_database(), lostpass_content(), lostpass_post(), magic_init(), manage_content(), match_content(), menu_content(), menu_post(), message_content(), message_post(), mitem_content(), mitem_init(), mitem_post(), mood_content(), network_content(), network_init(), new_channel_content(), new_channel_post(), nogroup_content(), notifications_content(), notifications_post(), oexchange_content(), page_content(), photos_content(), photos_post(), poke_content(), post_init(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), register_content(), register_post(), regmod_content(), search_content(), settings_post(), setup_content(), suggest_content(), tagrm_post(), user_allow(), user_deny(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), and xchan_content().

@@ -2453,7 +2473,7 @@ Variables
-

Referenced by create_identity(), import_author_xchan(), import_post(), import_xchan(), magic_init(), xchan_mail_query(), xchan_query(), zfinger_init(), zot_finger(), zot_get_hubloc(), and zot_refresh().

+

Referenced by create_identity(), import_author_xchan(), import_post(), import_xchan(), magic_init(), rconnect_url(), xchan_mail_query(), xchan_query(), zfinger_init(), zot_finger(), zot_get_hubloc(), and zot_refresh().

@@ -2481,6 +2501,20 @@ Variables
+
+ + +
+
+ + + + +
const ITEM_BUILDBLOCK 0x0100
+
+ +

Referenced by item_expire(), item_post(), and notifier_run().

+
@@ -2493,7 +2527,7 @@ Variables
-

Referenced by item_store(), notifier_run(), and poller_run().

+

Referenced by item_store(), notifier_run(), and poller_run().

@@ -2507,7 +2541,7 @@ Variables
-

Referenced by consume_feed(), delete_item_lowlevel(), encode_item(), expire_run(), get_item_elements(), item_store(), like_content(), notifier_run(), and process_delivery().

+

Referenced by consume_feed(), delete_item_lowlevel(), encode_item(), expire_run(), get_item_elements(), item_expire(), item_store(), like_content(), notifier_run(), and process_delivery().

@@ -2563,7 +2597,7 @@ Variables
-

Referenced by Conversation\add_thread(), encode_item(), and item_store().

+

Referenced by Conversation\add_thread(), encode_item(), and item_store().

@@ -2605,7 +2639,7 @@ Variables
-

Referenced by editpost_content(), encode_item(), get_item_elements(), item_post(), item_store(), and prepare_body().

+

Referenced by editpost_content(), encode_item(), get_item_elements(), item_post(), item_store(), and prepare_body().

@@ -2658,7 +2692,7 @@ Variables
-

Referenced by api_format_items(), api_get_user(), Item\get_template_data(), items_fetch(), network_content(), and starred_init().

+

Referenced by api_format_items(), api_get_user(), Item\get_template_data(), item_expire(), items_fetch(), network_content(), and starred_init().

@@ -2672,7 +2706,7 @@ Variables
-

Referenced by channel_content(), encode_item_flags(), event_store(), format_notification(), item_post(), item_store(), items_fetch(), lastpost_content(), like_content(), mood_init(), network_content(), photo_upload(), photos_create_item(), poke_init(), post_activity_item(), profile_activity(), tag_deliver(), and thing_init().

+

Referenced by channel_content(), encode_item_flags(), event_store(), format_notification(), item_post(), item_store(), items_fetch(), lastpost_content(), like_content(), mood_init(), network_content(), photo_upload(), photos_create_item(), poke_init(), post_activity_item(), profile_activity(), tag_deliver(), and thing_init().

@@ -2698,7 +2732,7 @@ Variables
-

Referenced by api_statuses_home_timeline(), channel_content(), display_content(), format_notification(), item_post(), item_store(), items_fetch(), lastpost_content(), mood_init(), network_content(), and ping_init().

+

Referenced by api_statuses_home_timeline(), channel_content(), display_content(), format_notification(), item_post(), item_store(), items_fetch(), lastpost_content(), mood_init(), network_content(), and ping_init().

@@ -2712,7 +2746,7 @@ Variables
-

Referenced by item_store(), notifier_run(), and tag_deliver().

+

Referenced by item_store(), notifier_run(), and tag_deliver().

@@ -2753,7 +2787,7 @@ Variables
-

Referenced by api_get_user(), channel_aside(), channel_content(), drop_item(), event_store(), events_content(), first_post_date(), item_post(), item_store(), items_fetch(), lastpost_aside(), lastpost_content(), like_content(), mood_init(), notification(), notifier_run(), photo_upload(), photos_create_item(), ping_init(), poke_init(), post_activity_item(), process_delivery(), profile_activity(), tag_deliver(), tagger_content(), thing_init(), and zot_feed().

+

Referenced by api_get_user(), channel_aside(), channel_content(), drop_item(), event_store(), events_content(), first_post_date(), item_expire(), item_post(), item_store(), items_fetch(), lastpost_aside(), lastpost_content(), like_content(), mood_init(), notification(), notifier_run(), photo_upload(), photos_create_item(), ping_init(), poke_init(), post_activity_item(), process_delivery(), profile_activity(), tag_deliver(), tagger_content(), thing_init(), and zot_feed().

@@ -2767,7 +2801,7 @@ Variables
-

Referenced by item_post(), notifier_run(), and page_content().

+

Referenced by item_expire(), item_post(), notifier_run(), and page_content().

@@ -2839,7 +2873,7 @@ Variables
-

Referenced by admin_page_logs(), advanced_profile(), build_sync_packet(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), detect_language(), dfrn_deliver(), directory_content(), fetch_xrd_links(), fix_private_photos(), import_xchan(), item_store(), item_store_update(), lrdd(), mail_store(), message_content(), message_post(), mini_group_select(), network_content(), new_contact(), notifier_run(), parse_xml_string(), photos_post(), poco_load(), post_post(), public_recips(), tag_deliver(), tgroup_check(), webfinger_dfrn(), xml2array(), zot_build_packet(), zot_fetch(), zot_import(), zot_process_response(), zot_refresh(), and zot_register_hub().

+

Referenced by admin_page_logs(), advanced_profile(), build_sync_packet(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), detect_language(), dfrn_deliver(), directory_content(), fetch_xrd_links(), fix_private_photos(), import_xchan(), item_store(), item_store_update(), lrdd(), mail_store(), message_content(), message_post(), mini_group_select(), network_content(), new_contact(), notifier_run(), parse_xml_string(), photos_post(), poco_load(), post_post(), public_recips(), tag_deliver(), tgroup_check(), webfinger_dfrn(), xml2array(), zot_build_packet(), zot_fetch(), zot_import(), zot_process_response(), zot_refresh(), and zot_register_hub().

@@ -2853,7 +2887,7 @@ Variables
-

Referenced by Item\add_child(), Conversation\add_thread(), admin_page_logs(), api_login(), api_statuses_user_timeline(), authenticate_success(), avatar_img(), consume_feed(), conversation(), delete_imported_item(), deliver_run(), dfrn_deliver(), directory_content(), directory_run(), expire_run(), fix_private_photos(), Conversation\get_template_data(), group_content(), guess_image_type(), import_author_xchan(), import_channel_photo(), import_directory_profile(), import_profile_photo(), import_xchan(), item_post(), item_store(), item_store_update(), like_content(), limit_body_size(), FKOAuth1\loginUser(), lrdd(), mail_store(), mood_init(), notification(), notifier_run(), parse_url_content(), photo_upload(), photos_post(), poco_init(), poco_load(), poke_init(), post_post(), process_delivery(), process_profile_delivery(), profile_load(), redir_init(), Item\remove_child(), scale_external_images(), enotify\send(), Conversation\set_mode(), syncdirs(), unload_plugin(), zot_finger(), zot_gethub(), and zot_register_hub().

+

Referenced by Item\add_child(), Conversation\add_thread(), admin_page_logs(), api_login(), api_statuses_user_timeline(), authenticate_success(), avatar_img(), consume_feed(), conversation(), delete_imported_item(), deliver_run(), dfrn_deliver(), directory_content(), directory_run(), expire_run(), fix_private_photos(), Conversation\get_template_data(), group_content(), guess_image_type(), import_author_xchan(), import_channel_photo(), import_directory_profile(), import_profile_photo(), import_xchan(), item_post(), item_store(), item_store_update(), like_content(), limit_body_size(), FKOAuth1\loginUser(), lrdd(), mail_store(), mood_init(), notification(), notifier_run(), parse_url_content(), photo_upload(), photos_post(), poco_init(), poco_load(), poke_init(), post_post(), process_delivery(), process_profile_delivery(), profile_load(), redir_init(), Item\remove_child(), scale_external_images(), enotify\send(), Conversation\set_mode(), syncdirs(), unload_plugin(), zot_finger(), zot_gethub(), and zot_register_hub().

@@ -2995,6 +3029,34 @@ Variables

Maximum number of "people who like (or don't like) this" that we will list by name

+
+ + +
+
+ + + + +
const MENU_ITEM_NEWWIN 0x0002
+
+ +

Referenced by menu_render(), mitem_content(), and mitem_post().

+ +
+
+ +
+
+ + + + +
const MENU_ITEM_ZID 0x0001
+
+ +

Referenced by menu_render(), mitem_content(), and mitem_post().

+
@@ -4115,7 +4177,7 @@ Variables
-

Referenced by decode_tags(), file_tag_file_query(), fileas_widget(), filer_content(), filerm_content(), items_fetch(), network_content(), and prepare_body().

+

Referenced by decode_tags(), file_tag_file_query(), fileas_widget(), filer_content(), filerm_content(), item_expire(), items_fetch(), network_content(), and prepare_body().

@@ -4193,7 +4255,7 @@ Variables
-

Referenced by delete_item_lowlevel(), fetch_post_tags(), filer_content(), get_atom_elements(), item_post(), item_store(), item_store_update(), remove_community_tag(), search_content(), tag_deliver(), tagadelic(), and tagger_content().

+

Referenced by delete_item_lowlevel(), fetch_post_tags(), filer_content(), get_atom_elements(), item_post(), item_store(), item_store_update(), remove_community_tag(), search_content(), tag_deliver(), tagadelic(), and tagger_content().

diff --git a/doc/html/boot_8php.js b/doc/html/boot_8php.js index 41f9ff94c..2a5705c57 100644 --- a/doc/html/boot_8php.js +++ b/doc/html/boot_8php.js @@ -63,6 +63,7 @@ var boot_8php = [ "ACCOUNT_PENDING", "boot_8php.html#a032bbd6d0321e99e9117332c9ed2b1b8", null ], [ "ACCOUNT_REMOVED", "boot_8php.html#ab5ddbe69d3d03acd06e1fb281488cb78", null ], [ "ACCOUNT_ROLE_ADMIN", "boot_8php.html#ac8400313df2c831653f9036f71ebd86d", null ], + [ "ACCOUNT_ROLE_ALLOWCODE", "boot_8php.html#a84f48897059bbd4a8738d7ee4cec6688", null ], [ "ACCOUNT_UNVERIFIED", "boot_8php.html#af3a4271630aabd8be592213f925d6a36", null ], [ "ACTIVITY_DISLIKE", "boot_8php.html#a0e57f846e6d47a308feced0f7274f178", null ], [ "ACTIVITY_FAVORITE", "boot_8php.html#a3e2ea123d29a72012db1241f96280b0e", null ], @@ -114,6 +115,7 @@ var boot_8php = [ "HUBLOC_FLAGS_PRIMARY", "boot_8php.html#a3ad9cc5d4354be741fa1de12b96e9955", null ], [ "HUBLOC_FLAGS_UNVERIFIED", "boot_8php.html#ab54b24cc302e1a42a67a49d788b6b764", null ], [ "ITEM_BLOCKED", "boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f", null ], + [ "ITEM_BUILDBLOCK", "boot_8php.html#a7fc4b291a7cdaa48b38e27344ea183cf", null ], [ "ITEM_DELAYED_PUBLISH", "boot_8php.html#ac890557fedc5b5a3b1d996249b1e1a20", null ], [ "ITEM_DELETED", "boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49", null ], [ "ITEM_HIDDEN", "boot_8php.html#ac99fc4d040764eac1736bec6973556fe", null ], @@ -151,6 +153,8 @@ var boot_8php = [ "MAIL_SEEN", "boot_8php.html#a1fbb93cf030f07391f22cc2948744869", null ], [ "MAX_IMAGE_LENGTH", "boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa", null ], [ "MAX_LIKERS", "boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd", null ], + [ "MENU_ITEM_NEWWIN", "boot_8php.html#ad11f30a6590d3d77f0c5e1e3909af8f5", null ], + [ "MENU_ITEM_ZID", "boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53", null ], [ "NAMESPACE_ACTIVITY", "boot_8php.html#a5df5359090d1f8e898c36d7cf8878ad2", null ], [ "NAMESPACE_ACTIVITY_SCHEMA", "boot_8php.html#a7b8f8ad9dbe82711257d23891ef6b133", null ], [ "NAMESPACE_ATOM1", "boot_8php.html#a444ce608ce34efb82ee11852f36e825f", null ], diff --git a/doc/html/crypto_8php.html b/doc/html/crypto_8php.html index 7ab5222eb..795c4c937 100644 --- a/doc/html/crypto_8php.html +++ b/doc/html/crypto_8php.html @@ -224,7 +224,7 @@ Functions
-

Referenced by get_item_elements(), get_mail_elements(), item_post(), item_store(), post_post(), send_message(), zfinger_init(), zot_build_packet(), and zot_fetch().

+

Referenced by get_item_elements(), get_mail_elements(), item_post(), item_store(), post_post(), send_message(), zfinger_init(), zot_build_packet(), and zot_fetch().

@@ -270,7 +270,7 @@ Functions
-

Referenced by create_identity(), and hostxrd_init().

+

Referenced by create_account(), create_identity(), and hostxrd_init().

diff --git a/doc/html/datetime_8php.html b/doc/html/datetime_8php.html index 1facdc06e..0ad53d55e 100644 --- a/doc/html/datetime_8php.html +++ b/doc/html/datetime_8php.html @@ -332,7 +332,7 @@ Functions
-

Referenced by add_fcontact(), advanced_profile(), age(), api_account_rate_limit_status(), api_date(), api_rss_extra(), atom_entry(), attach_store(), authenticate_success(), build_sync_packet(), cal(), channel_content(), Cache\clear(), consume_feed(), conversation(), create_account(), create_identity(), crepair_post(), cronhooks_run(), delete_item_lowlevel(), deliver_run(), dirsearch_content(), dlogger(), dob(), ev_compare(), event_store(), events_content(), events_post(), first_post_date(), format_event_diaspora(), format_event_html(), fsuggest_post(), get_atom_elements(), get_birthdays(), get_events(), get_feed_for(), get_first_dim(), get_item_elements(), get_mail_elements(), get_profile_elements(), get_public_feed(), Item\get_template_data(), import_directory_profile(), import_site(), invite_post(), item_post(), item_store(), item_store_update(), items_fetch(), lastpost_content(), like_content(), logger(), FKOAuth1\loginUser(), magic_init(), mail_store(), message_content(), network_content(), new_contact(), notification(), notifier_run(), onepoll_run(), photo_upload(), photos_post(), ping_init(), poco_load(), poller_run(), posted_dates(), profile_photo_post(), profiles_content(), profiles_post(), dba_mysql\q(), dba_mysqli\q(), queue_run(), relative_date(), photo_driver\save(), send_message(), send_reg_approval_email(), Cache\set(), settings_post(), photo_driver\store(), update_modtime(), update_queue_time(), z_birthday(), zot_feed(), zot_process_response(), zot_refresh(), and zotfeed_init().

+

Referenced by add_fcontact(), advanced_profile(), age(), api_account_rate_limit_status(), api_date(), api_rss_extra(), atom_entry(), attach_store(), authenticate_success(), build_sync_packet(), cal(), channel_content(), Cache\clear(), consume_feed(), conversation(), create_account(), create_identity(), crepair_post(), cronhooks_run(), delete_item_lowlevel(), deliver_run(), dirsearch_content(), dlogger(), dob(), ev_compare(), event_store(), events_content(), events_post(), first_post_date(), format_event_diaspora(), format_event_html(), fsuggest_post(), get_atom_elements(), get_birthdays(), get_events(), get_feed_for(), get_first_dim(), get_item_elements(), get_mail_elements(), get_profile_elements(), get_public_feed(), Item\get_template_data(), import_directory_profile(), import_site(), invite_post(), item_post(), item_store(), item_store_update(), items_fetch(), lastpost_content(), like_content(), logger(), FKOAuth1\loginUser(), magic_init(), mail_store(), message_content(), network_content(), new_contact(), notification(), notifier_run(), onepoll_run(), photo_upload(), photos_post(), ping_init(), poco_load(), poller_run(), posted_dates(), profile_photo_post(), profiles_content(), profiles_post(), dba_mysql\q(), dba_mysqli\q(), queue_run(), relative_date(), photo_driver\save(), send_message(), send_reg_approval_email(), Cache\set(), settings_post(), photo_driver\store(), update_modtime(), update_queue_time(), z_birthday(), zot_feed(), zot_process_response(), zot_refresh(), and zotfeed_init().

diff --git a/doc/html/dba__driver_8php.html b/doc/html/dba__driver_8php.html index e92e63047..f00f839aa 100644 --- a/doc/html/dba__driver_8php.html +++ b/doc/html/dba__driver_8php.html @@ -202,7 +202,7 @@ Functions
-

Referenced by account_verify_password(), acl_init(), add_fcontact(), advanced_profile(), allowed_public_recips(), api_direct_messages_new(), api_get_user(), api_status_show(), api_statuses_mentions(), api_user(), api_users_show(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_list_files(), attach_store(), authenticate_success(), build_sync_packet(), call_hooks(), change_channel(), channel_content(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), check_account_email(), check_account_invite(), check_webbie(), Cache\clear(), common_friends(), connections_content(), connections_post(), consume_feed(), contact_remove(), contactgroup_content(), count_common_friends(), create_account(), create_identity(), crepair_post(), dbesc_array_cb(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), dirsearch_content(), display_content(), editpost_content(), editwebpage_content(), event_store(), events_content(), expand_groups(), fbrowser_content(), feed_init(), fetch_post_tags(), file_tag_file_query(), filerm_content(), fix_attached_photo_permissions(), fix_contact_ssl_policy(), fix_private_photos(), fix_system_urls(), fsuggest_post(), generate_user_guid(), Cache\get(), get_all_perms(), get_birthdays(), get_config_from_storage(), get_events(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_post(), group_rec_byhash(), group_rmv(), group_rmv_member(), groups_containing(), handle_tag(), import_author_xchan(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), invite_post(), item_message_id(), item_permissions_sql(), item_post(), item_store(), item_store_update(), items_fetch(), lastpost_content(), like_content(), load_config(), load_plugin(), load_xconfig(), lockview_content(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_store(), member_of(), msearch_post(), network_content(), network_init(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), FKOAuthDataStore\new_request_token(), notification(), notifications_content(), notifier_run(), notify_init(), oauth_get_client(), onepoll_run(), page_content(), perm_is_allowed(), permissions_sql(), photo_init(), photo_new_resource(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_album_rename(), photos_content(), photos_list_photos(), photos_post(), ping_init(), poco_init(), poco_load(), poller_run(), post_init(), post_post(), private_messages_drop(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), profile_init(), profile_load(), profile_photo_post(), profiles_init(), profiles_post(), public_permissions_sql(), public_recips(), qsearch_init(), queue_run(), red_zrl_callback(), redir_init(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), register_hook(), register_post(), remove_all_xchan_resources(), remove_community_tag(), remove_queue_item(), rmagic_init(), rmagic_post(), photo_driver\save(), search_ac_init(), search_content(), search_init(), send_message(), send_reg_approval_email(), send_status_notifications(), Cache\set(), set_config(), set_pconfig(), set_xconfig(), settings_post(), siteinfo_init(), photo_driver\store(), store_item_tag(), stringify_array_elms(), subthread_content(), suggest_init(), sync_directories(), syncdirs(), tag_deliver(), tagger_content(), tagrm_post(), term_query(), tgroup_check(), thing_init(), uninstall_plugin(), unregister_hook(), update_modtime(), update_queue_time(), user_allow(), user_deny(), vcard_from_xchan(), wall_attach_post(), wall_upload_post(), wfinger_init(), xchan_content(), xchan_mail_query(), xchan_query(), xrd_init(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hubloc(), zot_gethub(), zot_process_response(), zot_refresh(), and zotfeed_init().

+

Referenced by account_verify_password(), acl_init(), add_fcontact(), advanced_profile(), allowed_public_recips(), api_direct_messages_new(), api_get_user(), api_status_show(), api_statuses_mentions(), api_user(), api_users_show(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_list_files(), attach_store(), authenticate_success(), build_sync_packet(), call_hooks(), change_channel(), channel_content(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), check_account_email(), check_account_invite(), check_webbie(), Cache\clear(), common_friends(), connections_content(), connections_post(), consume_feed(), contact_remove(), contactgroup_content(), count_common_friends(), create_account(), create_identity(), crepair_post(), dbesc_array_cb(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), dirsearch_content(), display_content(), editpost_content(), editwebpage_content(), event_store(), events_content(), expand_groups(), fbrowser_content(), feed_init(), fetch_post_tags(), file_tag_file_query(), filerm_content(), fix_attached_photo_permissions(), fix_contact_ssl_policy(), fix_private_photos(), fix_system_urls(), fsuggest_post(), generate_user_guid(), Cache\get(), get_all_perms(), get_birthdays(), get_config_from_storage(), get_events(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_post(), group_rec_byhash(), group_rmv(), group_rmv_member(), groups_containing(), handle_tag(), import_author_xchan(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), invite_post(), item_message_id(), item_permissions_sql(), item_post(), item_store(), item_store_update(), items_fetch(), lastpost_content(), like_content(), load_config(), load_plugin(), load_xconfig(), lockview_content(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_store(), member_of(), menu_add_item(), menu_create(), menu_delete(), menu_edit(), menu_edit_item(), menu_fetch(), msearch_post(), network_content(), network_init(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), FKOAuthDataStore\new_request_token(), notification(), notifications_content(), notifier_run(), notify_init(), oauth_get_client(), onepoll_run(), page_content(), perm_is_allowed(), permissions_sql(), photo_init(), photo_new_resource(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_album_rename(), photos_content(), photos_list_photos(), photos_post(), ping_init(), poco_init(), poco_load(), poller_run(), post_init(), post_post(), private_messages_drop(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), profile_init(), profile_load(), profile_photo_post(), profiles_init(), profiles_post(), public_permissions_sql(), public_recips(), qsearch_init(), queue_run(), rconnect_url(), red_zrl_callback(), redir_init(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), register_hook(), register_post(), remove_all_xchan_resources(), remove_community_tag(), remove_queue_item(), rmagic_init(), rmagic_post(), photo_driver\save(), search_ac_init(), search_content(), search_init(), send_message(), send_reg_approval_email(), send_status_notifications(), Cache\set(), set_config(), set_pconfig(), set_xconfig(), settings_post(), siteinfo_init(), photo_driver\store(), store_item_tag(), stringify_array_elms(), subthread_content(), suggest_init(), sync_directories(), syncdirs(), tag_deliver(), tagger_content(), tagrm_post(), term_query(), tgroup_check(), thing_init(), uninstall_plugin(), unregister_hook(), update_modtime(), update_queue_time(), user_allow(), user_deny(), vcard_from_xchan(), wall_attach_post(), wall_upload_post(), webpages_content(), wfinger_init(), xchan_content(), xchan_mail_query(), xchan_query(), xrd_init(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hubloc(), zot_gethub(), zot_process_response(), zot_refresh(), and zotfeed_init().

@@ -220,7 +220,7 @@ Functions
-

Referenced by import_post(), item_store(), item_store_update(), mail_store(), and profiles_init().

+

Referenced by import_post(), item_store(), item_store_update(), mail_store(), and profiles_init().

@@ -264,7 +264,7 @@ Functions
-

Referenced by attach_by_hash(), and search_content().

+

Referenced by attach_by_hash(), poller_run(), and search_content().

@@ -283,7 +283,7 @@ Functions

Raw db query, no arguments

-

Referenced by import_post(), item_store(), item_store_update(), mail_store(), process_channel_sync_delivery(), and profiles_init().

+

Referenced by import_post(), item_store(), item_store_update(), mail_store(), process_channel_sync_delivery(), and profiles_init().

@@ -320,7 +320,7 @@ Functions

This will happen occasionally trying to store the session data after abnormal program termination

-

Referenced by abook_connections(), abook_self(), abook_toggle_flag(), account_remove(), account_total(), account_verify_password(), acl_init(), add_fcontact(), admin_content(), admin_page_dbsync(), admin_page_summary(), admin_page_users(), admin_page_users_post(), advanced_profile(), all_friends(), allfriends_content(), allowed_public_recips(), api_direct_messages_box(), api_direct_messages_new(), api_favorites(), api_ff_ids(), api_format_items(), api_get_user(), api_status_show(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_statuses_user_timeline(), api_user(), api_users_show(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_list_files(), attach_store(), authenticate_success(), build_sync_packet(), call_hooks(), categories_widget(), change_channel(), channel_content(), channel_remove(), channel_total(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), check_account_email(), check_account_invite(), check_config(), check_webbie(), Cache\clear(), collect_recipients(), common_friends(), common_friends_zcid(), common_init(), community_content(), connections_content(), connections_init(), connections_post(), consume_feed(), contact_block(), contact_profile_assign(), contact_remove(), contact_select(), contactgroup_content(), contacts_not_grouped(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), create_account(), create_identity(), crepair_content(), crepair_init(), crepair_post(), current_theme(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), dfrn_deliver(), directory_content(), directory_run(), dirsearch_content(), display_content(), drop_item(), editpost_content(), editwebpage_content(), encode_item(), event_store(), events_content(), expand_groups(), expire_run(), fbrowser_content(), feed_init(), fetch_post_tags(), fileas_widget(), filer_content(), filerm_content(), first_post_date(), fix_attached_photo_permissions(), fix_contact_ssl_policy(), fix_private_photos(), fix_system_urls(), fsuggest_content(), fsuggest_post(), generate_user_guid(), Cache\get(), get_all_perms(), get_birthdays(), get_config_from_storage(), get_events(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_get_members(), group_post(), group_rec_byhash(), group_rmv(), group_rmv_member(), group_select(), group_side(), groups_containing(), handle_tag(), identity_basic_export(), identity_check_service_class(), import_author_xchan(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), intro_content(), intro_post(), invite_post(), item_expire(), item_message_id(), item_post(), item_store(), item_store_update(), items_fetch(), lastpost_content(), like_content(), load_config(), load_contact_links(), load_hooks(), load_pconfig(), load_plugin(), load_translation_table(), load_xconfig(), lockview_content(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_store(), manage_content(), match_content(), member_of(), message_content(), mini_group_select(), mood_init(), msearch_post(), network_content(), network_init(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), FKOAuthDataStore\new_request_token(), notification(), notifications_content(), notifications_post(), notifier_run(), notify_content(), notify_init(), oauth_get_client(), onepoll_run(), page_content(), perm_is_allowed(), photo_init(), photo_new_resource(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_album_rename(), photos_albums_list(), photos_content(), photos_list_photos(), photos_post(), ping_init(), poco_init(), poco_load(), poke_content(), poke_init(), poller_run(), post_activity_item(), post_init(), post_post(), private_messages_drop(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), public_recips(), qsearch_init(), queue_run(), random_profile(), red_zrl_callback(), redir_init(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), register_content(), register_hook(), register_post(), reload_plugins(), remove_all_xchan_resources(), remove_community_tag(), remove_queue_item(), rmagic_init(), rmagic_post(), photo_driver\save(), saved_searches(), search_ac_init(), search_content(), search_init(), search_saved_searches(), send_message(), send_reg_approval_email(), send_status_notifications(), service_class_allows(), service_class_fetch(), Cache\set(), set_config(), set_default_login_identity(), set_pconfig(), set_xconfig(), settings_aside(), settings_post(), setup_content(), share_init(), siteinfo_content(), siteinfo_init(), sitelist_init(), starred_init(), photo_driver\store(), store_item_tag(), stream_perms_api_uids(), subthread_content(), suggest_init(), suggestion_query(), sync_directories(), syncdirs(), tag_deliver(), tagadelic(), tagger_content(), tagrm_content(), tagrm_post(), tgroup_check(), thing_init(), uninstall_plugin(), unregister_hook(), update_modtime(), update_queue_time(), update_suggestions(), user_allow(), user_deny(), vcard_from_xchan(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), wfinger_init(), xchan_content(), xchan_mail_query(), xchan_query(), xrd_init(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hubloc(), zot_gethub(), zot_import(), zot_process_response(), zot_refresh(), and zotfeed_init().

+

Referenced by abook_connections(), abook_self(), abook_toggle_flag(), account_remove(), account_total(), account_verify_password(), acl_init(), add_fcontact(), admin_content(), admin_page_dbsync(), admin_page_summary(), admin_page_users(), admin_page_users_post(), advanced_profile(), all_friends(), allfriends_content(), allowed_public_recips(), api_direct_messages_box(), api_direct_messages_new(), api_favorites(), api_ff_ids(), api_format_items(), api_get_user(), api_status_show(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_statuses_user_timeline(), api_user(), api_users_show(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_list_files(), attach_store(), authenticate_success(), build_sync_packet(), call_hooks(), categories_widget(), change_channel(), channel_content(), channel_remove(), channel_total(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), check_account_email(), check_account_invite(), check_config(), check_webbie(), Cache\clear(), collect_recipients(), common_friends(), common_friends_zcid(), common_init(), community_content(), connections_content(), connections_init(), connections_post(), consume_feed(), contact_block(), contact_profile_assign(), contact_remove(), contact_select(), contactgroup_content(), contacts_not_grouped(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), create_account(), create_identity(), crepair_content(), crepair_init(), crepair_post(), current_theme(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), dfrn_deliver(), directory_content(), directory_run(), dirsearch_content(), display_content(), drop_item(), editpost_content(), editwebpage_content(), encode_item(), event_store(), events_content(), expand_groups(), expire_run(), fbrowser_content(), feed_init(), fetch_post_tags(), fileas_widget(), filer_content(), filerm_content(), first_post_date(), fix_attached_photo_permissions(), fix_contact_ssl_policy(), fix_private_photos(), fix_system_urls(), fsuggest_content(), fsuggest_post(), generate_user_guid(), Cache\get(), get_all_perms(), get_birthdays(), get_config_from_storage(), get_events(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_get_members(), group_post(), group_rec_byhash(), group_rmv(), group_rmv_member(), group_select(), group_side(), groups_containing(), handle_tag(), identity_basic_export(), identity_check_service_class(), import_author_xchan(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), intro_content(), intro_post(), invite_post(), item_expire(), item_message_id(), item_post(), item_store(), item_store_update(), items_fetch(), lastpost_content(), like_content(), load_config(), load_contact_links(), load_hooks(), load_pconfig(), load_plugin(), load_translation_table(), load_xconfig(), lockview_content(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_store(), manage_content(), match_content(), member_of(), menu_add_item(), menu_create(), menu_del_item(), menu_delete(), menu_delete_id(), menu_edit(), menu_edit_item(), menu_fetch(), menu_fetch_id(), menu_list(), message_content(), mini_group_select(), mitem_content(), mood_init(), msearch_post(), network_content(), network_init(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), FKOAuthDataStore\new_request_token(), notification(), notifications_content(), notifications_post(), notifier_run(), notify_content(), notify_init(), oauth_get_client(), onepoll_run(), page_content(), pagelist_widget(), perm_is_allowed(), photo_init(), photo_new_resource(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_album_rename(), photos_albums_list(), photos_content(), photos_list_photos(), photos_post(), ping_init(), poco_init(), poco_load(), poke_content(), poke_init(), poller_run(), post_activity_item(), post_init(), post_post(), private_messages_drop(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), public_recips(), qsearch_init(), queue_run(), random_profile(), rconnect_url(), red_zrl_callback(), redir_init(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), register_content(), register_hook(), register_post(), reload_plugins(), remove_all_xchan_resources(), remove_community_tag(), remove_queue_item(), rmagic_init(), rmagic_post(), photo_driver\save(), saved_searches(), search_ac_init(), search_content(), search_init(), search_saved_searches(), send_message(), send_reg_approval_email(), send_status_notifications(), service_class_allows(), service_class_fetch(), Cache\set(), set_config(), set_default_login_identity(), set_pconfig(), set_xconfig(), settings_aside(), settings_post(), setup_content(), share_init(), siteinfo_content(), siteinfo_init(), sitelist_init(), starred_init(), photo_driver\store(), store_item_tag(), stream_perms_api_uids(), subthread_content(), suggest_init(), suggestion_query(), sync_directories(), syncdirs(), tag_deliver(), tagadelic(), tagger_content(), tagrm_content(), tagrm_post(), tgroup_check(), thing_init(), uninstall_plugin(), unregister_hook(), update_modtime(), update_queue_time(), update_suggestions(), user_allow(), user_deny(), vcard_from_xchan(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), wfinger_init(), xchan_content(), xchan_mail_query(), xchan_query(), xrd_init(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hubloc(), zot_gethub(), zot_import(), zot_process_response(), zot_refresh(), and zotfeed_init().

diff --git a/doc/html/dir_d41ce877eb409a4791b288730010abe2.html b/doc/html/dir_d41ce877eb409a4791b288730010abe2.html index 66d509ccc..a4d398156 100644 --- a/doc/html/dir_d41ce877eb409a4791b288730010abe2.html +++ b/doc/html/dir_d41ce877eb409a4791b288730010abe2.html @@ -194,8 +194,12 @@ Files   file  match.php   +file  menu.php +  file  message.php   +file  mitem.php +  file  mood.php   file  msearch.php diff --git a/doc/html/dir_d41ce877eb409a4791b288730010abe2.js b/doc/html/dir_d41ce877eb409a4791b288730010abe2.js index 7b78081d2..b1fbf1f1a 100644 --- a/doc/html/dir_d41ce877eb409a4791b288730010abe2.js +++ b/doc/html/dir_d41ce877eb409a4791b288730010abe2.js @@ -45,7 +45,9 @@ var dir_d41ce877eb409a4791b288730010abe2 = [ "magic.php", "magic_8php.html", "magic_8php" ], [ "manage.php", "manage_8php.html", "manage_8php" ], [ "match.php", "match_8php.html", "match_8php" ], + [ "menu.php", "mod_2menu_8php.html", "mod_2menu_8php" ], [ "message.php", "mod_2message_8php.html", "mod_2message_8php" ], + [ "mitem.php", "mitem_8php.html", "mitem_8php" ], [ "mood.php", "mood_8php.html", "mood_8php" ], [ "msearch.php", "msearch_8php.html", "msearch_8php" ], [ "network.php", "mod_2network_8php.html", "mod_2network_8php" ], diff --git a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html index b7a0d4b6b..8280e90c8 100644 --- a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html +++ b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html @@ -189,6 +189,8 @@ Files   file  language.php   +file  menu.php +  file  message.php   file  nav.php @@ -205,6 +207,8 @@ Files   file  onepoll.php   +file  page_widgets.php +  file  permissions.php   file  photos.php diff --git a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js index 8a0cf3ad5..eeb1d4c0f 100644 --- a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js +++ b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js @@ -54,6 +54,7 @@ var dir_d44c64559bbebec7f509842c48db8b23 = ] ], [ "items.php", "items_8php.html", "items_8php" ], [ "language.php", "language_8php.html", "language_8php" ], + [ "menu.php", "include_2menu_8php.html", "include_2menu_8php" ], [ "message.php", "include_2message_8php.html", "include_2message_8php" ], [ "nav.php", "nav_8php.html", "nav_8php" ], [ "network.php", "include_2network_8php.html", "include_2network_8php" ], @@ -62,6 +63,7 @@ var dir_d44c64559bbebec7f509842c48db8b23 = [ "oauth.php", "oauth_8php.html", "oauth_8php" ], [ "oembed.php", "include_2oembed_8php.html", "include_2oembed_8php" ], [ "onepoll.php", "onepoll_8php.html", "onepoll_8php" ], + [ "page_widgets.php", "page__widgets_8php.html", "page__widgets_8php" ], [ "permissions.php", "permissions_8php.html", "permissions_8php" ], [ "photos.php", "include_2photos_8php.html", "include_2photos_8php" ], [ "plugin.php", "plugin_8php.html", "plugin_8php" ], diff --git a/doc/html/extract_8php.html b/doc/html/extract_8php.html index e0c17e93c..0b425b088 100644 --- a/doc/html/extract_8php.html +++ b/doc/html/extract_8php.html @@ -132,7 +132,7 @@ Variables
-

Referenced by activity_sanitise(), add_fcontact(), api_rss_extra(), array_sanitise(), attach_store(), check_account_admin(), check_account_email(), check_account_invite(), check_account_password(), check_list_permissions(), check_webbie(), connections_content(), construct_page(), contact_block(), contact_select(), conversation(), create_account(), create_identity(), dbesc_array(), directory_content(), event_store(), feature_enabled(), fetch_xrd_links(), find_xchan_in_array(), format_like(), get_all_perms(), get_atom_elements(), get_features(), get_item_elements(), get_mail_elements(), get_mood_verbs(), get_poke_verbs(), get_profile_elements(), Item\get_template_data(), get_terms_oftype(), App\get_widgets(), group_select(), identity_basic_import(), ids_to_querystr(), import_directory_profile(), import_post(), import_site(), import_xchan(), item_getfeedattach(), item_store(), item_store_update(), items_fetch(), like_content(), like_puller(), load_database(), lrdd(), magic_init(), mail_store(), mood_init(), network_content(), new_channel_post(), new_contact(), obj_verbs(), parse_url_content(), perm_is_allowed(), photo_upload(), photos_album_get_db_idstr(), photos_create_item(), photos_post(), ping_init(), po2php_run(), poke_init(), post_activity_item(), post_init(), post_post(), prepare_body(), proc_run(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), process_profile_delivery(), profile_activity(), profile_sidebar(), profile_tabs(), profiles_content(), register_post(), remove_community_tag(), photo_driver\save(), send_reg_approval_email(), service_class_allows(), service_class_fetch(), App\set_apps(), settings_post(), sort_by_date(), stringify_array_elms(), subthread_content(), suggest_content(), tagger_content(), tagrm_content(), tagrm_post(), thing_init(), validate_channelname(), wfinger_init(), xchan_mail_query(), xchan_query(), xml2array(), xrd_init(), zfinger_init(), zid(), zid_init(), zot_fetch(), zot_get_hubloc(), zot_gethub(), zot_import(), zot_process_response(), and zot_register_hub().

+

Referenced by activity_sanitise(), add_fcontact(), api_rss_extra(), array_sanitise(), attach_store(), check_account_admin(), check_account_email(), check_account_invite(), check_account_password(), check_list_permissions(), check_webbie(), connections_content(), construct_page(), contact_block(), contact_select(), conversation(), create_account(), create_identity(), dbesc_array(), directory_content(), event_store(), feature_enabled(), fetch_xrd_links(), find_xchan_in_array(), format_like(), get_all_perms(), get_atom_elements(), get_features(), get_item_elements(), get_mail_elements(), get_mood_verbs(), get_poke_verbs(), get_profile_elements(), Item\get_template_data(), get_terms_oftype(), App\get_widgets(), group_select(), identity_basic_import(), ids_to_querystr(), import_directory_profile(), import_post(), import_site(), import_xchan(), item_getfeedattach(), item_store(), item_store_update(), items_fetch(), like_content(), like_puller(), load_database(), lrdd(), magic_init(), mail_store(), menu_add_item(), menu_create(), menu_edit(), menu_edit_item(), mood_init(), network_content(), new_channel_post(), new_contact(), obj_verbs(), parse_url_content(), perm_is_allowed(), photo_upload(), photos_album_get_db_idstr(), photos_create_item(), photos_post(), ping_init(), po2php_run(), poke_init(), post_activity_item(), post_init(), post_post(), prepare_body(), proc_run(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), process_profile_delivery(), profile_activity(), profile_sidebar(), profile_tabs(), profiles_content(), register_post(), remove_community_tag(), photo_driver\save(), send_reg_approval_email(), service_class_allows(), service_class_fetch(), App\set_apps(), settings_post(), sort_by_date(), stringify_array_elms(), subthread_content(), suggest_content(), tagger_content(), tagrm_content(), tagrm_post(), thing_init(), validate_channelname(), wfinger_init(), xchan_mail_query(), xchan_query(), xml2array(), xrd_init(), zfinger_init(), zid(), zid_init(), zot_fetch(), zot_get_hubloc(), zot_gethub(), zot_import(), zot_process_response(), and zot_register_hub().

diff --git a/doc/html/files.html b/doc/html/files.html index 1cf622ae2..ce48497ec 100644 --- a/doc/html/files.html +++ b/doc/html/files.html @@ -157,31 +157,33 @@ $(document).ready(function(){initNavTree('files.html','');}); |o*ITemplateEngine.php |o*items.php |o*language.php -|o*message.php -|o*nav.php -|o*network.php -|o*notifier.php -|o*notify.php -|o*oauth.php -|o*oembed.php -|o*onepoll.php -|o*permissions.php -|o*photos.php -|o*plugin.php -|o*poller.php -|o*profile_advanced.php -|o*profile_selectors.php -|o*ProtoDriver.php -|o*queue.php -|o*queue_fn.php -|o*security.php -|o*session.php -|o*socgraph.php -|o*system_unavailable.php -|o*taxonomy.php -|o*template_processor.php -|o*text.php -|\*zot.php +|o*menu.php +|o*message.php +|o*nav.php +|o*network.php +|o*notifier.php +|o*notify.php +|o*oauth.php +|o*oembed.php +|o*onepoll.php +|o*page_widgets.php +|o*permissions.php +|o*photos.php +|o*plugin.php +|o*poller.php +|o*profile_advanced.php +|o*profile_selectors.php +|o*ProtoDriver.php +|o*queue.php +|o*queue_fn.php +|o*security.php +|o*session.php +|o*socgraph.php +|o*system_unavailable.php +|o*taxonomy.php +|o*template_processor.php +|o*text.php +|\*zot.php o+mod |o*_well_known.php |o*acl.php @@ -228,73 +230,75 @@ $(document).ready(function(){initNavTree('files.html','');}); |o*magic.php |o*manage.php |o*match.php -|o*message.php -|o*mood.php -|o*msearch.php -|o*network.php -|o*new_channel.php -|o*nogroup.php -|o*notifications.php -|o*notify.php -|o*oembed.php -|o*oexchange.php -|o*opensearch.php -|o*page.php -|o*parse_url.php -|o*photo.php -|o*photos.php -|o*php.php -|o*ping.php -|o*poco.php -|o*poke.php -|o*post.php -|o*pretheme.php -|o*probe.php -|o*profile.php -|o*profile_photo.php -|o*profiles.php -|o*profperm.php -|o*qsearch.php -|o*randprof.php -|o*redir.php -|o*register.php -|o*regmod.php -|o*removeme.php -|o*rmagic.php -|o*rsd_xml.php -|o*search.php -|o*search_ac.php -|o*settings.php -|o*setup.php -|o*share.php -|o*siteinfo.php -|o*sitelist.php -|o*smilies.php -|o*starred.php -|o*subthread.php -|o*suggest.php -|o*tagger.php -|o*tagrm.php -|o*thing.php -|o*toggle_mobile.php -|o*uexport.php -|o*update_channel.php -|o*update_community.php -|o*update_display.php -|o*update_network.php -|o*update_search.php -|o*view.php -|o*viewconnections.php -|o*viewsrc.php -|o*wall_attach.php -|o*wall_upload.php -|o*webfinger.php -|o*webpages.php -|o*wfinger.php -|o*xchan.php -|o*xrd.php -|o*zfinger.php -|\*zotfeed.php +|o*menu.php +|o*message.php +|o*mitem.php +|o*mood.php +|o*msearch.php +|o*network.php +|o*new_channel.php +|o*nogroup.php +|o*notifications.php +|o*notify.php +|o*oembed.php +|o*oexchange.php +|o*opensearch.php +|o*page.php +|o*parse_url.php +|o*photo.php +|o*photos.php +|o*php.php +|o*ping.php +|o*poco.php +|o*poke.php +|o*post.php +|o*pretheme.php +|o*probe.php +|o*profile.php +|o*profile_photo.php +|o*profiles.php +|o*profperm.php +|o*qsearch.php +|o*randprof.php +|o*redir.php +|o*register.php +|o*regmod.php +|o*removeme.php +|o*rmagic.php +|o*rsd_xml.php +|o*search.php +|o*search_ac.php +|o*settings.php +|o*setup.php +|o*share.php +|o*siteinfo.php +|o*sitelist.php +|o*smilies.php +|o*starred.php +|o*subthread.php +|o*suggest.php +|o*tagger.php +|o*tagrm.php +|o*thing.php +|o*toggle_mobile.php +|o*uexport.php +|o*update_channel.php +|o*update_community.php +|o*update_display.php +|o*update_network.php +|o*update_search.php +|o*view.php +|o*viewconnections.php +|o*viewsrc.php +|o*wall_attach.php +|o*wall_upload.php +|o*webfinger.php +|o*webpages.php +|o*wfinger.php +|o*xchan.php +|o*xrd.php +|o*zfinger.php +|\*zotfeed.php o+util |o+fpostit ||\*fpostit.php diff --git a/doc/html/globals_0x61.html b/doc/html/globals_0x61.html index 58e18d003..75e2d36ba 100644 --- a/doc/html/globals_0x61.html +++ b/doc/html/globals_0x61.html @@ -207,6 +207,9 @@ $(document).ready(function(){initNavTree('globals_0x61.html','');});
  • ACCOUNT_ROLE_ADMIN : boot.php
  • +
  • ACCOUNT_ROLE_ALLOWCODE +: boot.php +
  • account_total() : account.php
  • diff --git a/doc/html/globals_0x69.html b/doc/html/globals_0x69.html index be74f1d28..35b8a079c 100644 --- a/doc/html/globals_0x69.html +++ b/doc/html/globals_0x69.html @@ -224,6 +224,9 @@ $(document).ready(function(){initNavTree('globals_0x69.html','');});
  • ITEM_BLOCKED : boot.php
  • +
  • ITEM_BUILDBLOCK +: boot.php +
  • item_content() : item.php
  • @@ -297,10 +300,10 @@ $(document).ready(function(){initNavTree('globals_0x69.html','');}); : boot.php
  • item_store() -: items.php +: items.php
  • item_store_update() -: items.php +: items.php
  • ITEM_THREAD_TOP : boot.php diff --git a/doc/html/globals_0x6d.html b/doc/html/globals_0x6d.html index 8e0fde325..fb2c10254 100644 --- a/doc/html/globals_0x6d.html +++ b/doc/html/globals_0x6d.html @@ -198,6 +198,51 @@ $(document).ready(function(){initNavTree('globals_0x6d.html','');});
  • member_of() : group.php
  • +
  • menu_add_item() +: menu.php +
  • +
  • menu_content() +: menu.php +
  • +
  • menu_create() +: menu.php +
  • +
  • menu_del_item() +: menu.php +
  • +
  • menu_delete() +: menu.php +
  • +
  • menu_delete_id() +: menu.php +
  • +
  • menu_edit() +: menu.php +
  • +
  • menu_edit_item() +: menu.php +
  • +
  • menu_fetch() +: menu.php +
  • +
  • menu_fetch_id() +: menu.php +
  • +
  • MENU_ITEM_NEWWIN +: boot.php +
  • +
  • MENU_ITEM_ZID +: boot.php +
  • +
  • menu_list() +: menu.php +
  • +
  • menu_post() +: menu.php +
  • +
  • menu_render() +: menu.php +
  • message_aside() : message.php
  • @@ -213,6 +258,15 @@ $(document).ready(function(){initNavTree('globals_0x6d.html','');});
  • mini_group_select() : group.php
  • +
  • mitem_content() +: mitem.php +
  • +
  • mitem_init() +: mitem.php +
  • +
  • mitem_post() +: mitem.php +
  • mood_content() : mood.php
  • diff --git a/doc/html/globals_0x70.html b/doc/html/globals_0x70.html index 351d9fcdf..97d26ea3e 100644 --- a/doc/html/globals_0x70.html +++ b/doc/html/globals_0x70.html @@ -173,6 +173,9 @@ $(document).ready(function(){initNavTree('globals_0x70.html','');});
  • PAGE_REMOVED : boot.php
  • +
  • pagelist_widget() +: page_widgets.php +
  • paginate() : text.php
  • diff --git a/doc/html/globals_0x72.html b/doc/html/globals_0x72.html index b07e5c177..3441baee6 100644 --- a/doc/html/globals_0x72.html +++ b/doc/html/globals_0x72.html @@ -159,6 +159,9 @@ $(document).ready(function(){initNavTree('globals_0x72.html','');});
  • randprof_init() : randprof.php
  • +
  • rconnect_url() +: Contact.php +
  • rebuild_theme_table() : admin.php
  • diff --git a/doc/html/globals_0x77.html b/doc/html/globals_0x77.html index f95594ae4..52ae05c2f 100644 --- a/doc/html/globals_0x77.html +++ b/doc/html/globals_0x77.html @@ -162,9 +162,6 @@ $(document).ready(function(){initNavTree('globals_0x77.html','');});
  • webpages_content() : webpages.php
  • -
  • webpages_init() -: webpages.php -
  • wfinger_init() : wfinger.php
  • @@ -174,6 +171,9 @@ $(document).ready(function(){initNavTree('globals_0x77.html','');});
  • while : docblox_errorchecker.php
  • +
  • writepages_widget() +: page_widgets.php +
  • diff --git a/doc/html/globals_func_0x69.html b/doc/html/globals_func_0x69.html index 116bfc9d8..4209bd444 100644 --- a/doc/html/globals_func_0x69.html +++ b/doc/html/globals_func_0x69.html @@ -246,10 +246,10 @@ $(document).ready(function(){initNavTree('globals_func_0x69.html','');}); : conversation.php
  • item_store() -: items.php +: items.php
  • item_store_update() -: items.php +: items.php
  • items_fetch() : items.php diff --git a/doc/html/globals_func_0x6d.html b/doc/html/globals_func_0x6d.html index 4e8c0b537..36d012213 100644 --- a/doc/html/globals_func_0x6d.html +++ b/doc/html/globals_func_0x6d.html @@ -173,6 +173,45 @@ $(document).ready(function(){initNavTree('globals_func_0x6d.html','');});
  • member_of() : group.php
  • +
  • menu_add_item() +: menu.php +
  • +
  • menu_content() +: menu.php +
  • +
  • menu_create() +: menu.php +
  • +
  • menu_del_item() +: menu.php +
  • +
  • menu_delete() +: menu.php +
  • +
  • menu_delete_id() +: menu.php +
  • +
  • menu_edit() +: menu.php +
  • +
  • menu_edit_item() +: menu.php +
  • +
  • menu_fetch() +: menu.php +
  • +
  • menu_fetch_id() +: menu.php +
  • +
  • menu_list() +: menu.php +
  • +
  • menu_post() +: menu.php +
  • +
  • menu_render() +: menu.php +
  • message_aside() : message.php
  • @@ -188,6 +227,15 @@ $(document).ready(function(){initNavTree('globals_func_0x6d.html','');});
  • mini_group_select() : group.php
  • +
  • mitem_content() +: mitem.php +
  • +
  • mitem_init() +: mitem.php +
  • +
  • mitem_post() +: mitem.php +
  • mood_content() : mood.php
  • diff --git a/doc/html/globals_func_0x70.html b/doc/html/globals_func_0x70.html index da84c054a..dd4b4cb9e 100644 --- a/doc/html/globals_func_0x70.html +++ b/doc/html/globals_func_0x70.html @@ -149,6 +149,9 @@ $(document).ready(function(){initNavTree('globals_func_0x70.html','');});
  • page_init() : page.php
  • +
  • pagelist_widget() +: page_widgets.php +
  • paginate() : text.php
  • diff --git a/doc/html/globals_func_0x72.html b/doc/html/globals_func_0x72.html index 48b17c390..fc6f7706b 100644 --- a/doc/html/globals_func_0x72.html +++ b/doc/html/globals_func_0x72.html @@ -152,6 +152,9 @@ $(document).ready(function(){initNavTree('globals_func_0x72.html','');});
  • randprof_init() : randprof.php
  • +
  • rconnect_url() +: Contact.php +
  • rebuild_theme_table() : admin.php
  • @@ -159,7 +162,7 @@ $(document).ready(function(){initNavTree('globals_func_0x72.html','');}); : items.php
  • redbasic_form() -: config.php +: config.php
  • redbasic_init() : theme.php diff --git a/doc/html/globals_func_0x77.html b/doc/html/globals_func_0x77.html index d89bff42a..925e4afa1 100644 --- a/doc/html/globals_func_0x77.html +++ b/doc/html/globals_func_0x77.html @@ -161,15 +161,15 @@ $(document).ready(function(){initNavTree('globals_func_0x77.html','');});
  • webpages_content() : webpages.php
  • -
  • webpages_init() -: webpages.php -
  • wfinger_init() : wfinger.php
  • what_next() : setup.php
  • +
  • writepages_widget() +: page_widgets.php +
  • diff --git a/doc/html/globals_vars_0x61.html b/doc/html/globals_vars_0x61.html index 62e00b1ee..bb34b28f3 100644 --- a/doc/html/globals_vars_0x61.html +++ b/doc/html/globals_vars_0x61.html @@ -187,6 +187,9 @@ $(document).ready(function(){initNavTree('globals_vars_0x61.html','');});
  • ACCOUNT_ROLE_ADMIN : boot.php
  • +
  • ACCOUNT_ROLE_ALLOWCODE +: boot.php +
  • ACCOUNT_UNVERIFIED : boot.php
  • diff --git a/doc/html/globals_vars_0x69.html b/doc/html/globals_vars_0x69.html index f1e1b8181..8656e480e 100644 --- a/doc/html/globals_vars_0x69.html +++ b/doc/html/globals_vars_0x69.html @@ -150,6 +150,9 @@ $(document).ready(function(){initNavTree('globals_vars_0x69.html','');});
  • ITEM_BLOCKED : boot.php
  • +
  • ITEM_BUILDBLOCK +: boot.php +
  • ITEM_DELAYED_PUBLISH : boot.php
  • diff --git a/doc/html/globals_vars_0x6d.html b/doc/html/globals_vars_0x6d.html index c127d9dc2..34d259ddc 100644 --- a/doc/html/globals_vars_0x6d.html +++ b/doc/html/globals_vars_0x6d.html @@ -163,6 +163,12 @@ $(document).ready(function(){initNavTree('globals_vars_0x6d.html','');});
  • MAX_LIKERS : boot.php
  • +
  • MENU_ITEM_NEWWIN +: boot.php +
  • +
  • MENU_ITEM_ZID +: boot.php +
  • diff --git a/doc/html/include_2config_8php.html b/doc/html/include_2config_8php.html index 0e5e856bc..00d8dd5a9 100644 --- a/doc/html/include_2config_8php.html +++ b/doc/html/include_2config_8php.html @@ -256,7 +256,7 @@ Functions
    -

    Referenced by admin_page_dbsync(), admin_page_logs(), admin_page_site(), admin_page_summary(), admin_page_themes(), allowed_email(), allowed_url(), api_statuses_mentions(), api_statusnet_config(), attach_store(), build_sync_packet(), channel_content(), check_account_admin(), check_account_invite(), check_config(), cli_startup(), community_content(), create_account(), create_identity(), detect_language(), dfrn_deliver(), directory_content(), directory_run(), dirfind_content(), dirsearch_content(), display_content(), dlogger(), dob(), editpost_content(), encode_item(), encode_mail(), events_content(), expire_run(), feed_init(), fetch_url(), fetch_xrd_links(), findpeople_widget(), Item\get_comment_box(), get_item_elements(), get_mail_elements(), group_content(), hcard_init(), hostxrd_init(), photo_gd\imageString(), import_post(), import_xchan(), invite_content(), invite_post(), item_post(), item_store(), lastpost_content(), photo_imagick\load(), logger(), login(), lostpass_content(), lostpass_post(), match_content(), nav(), navbar_complete(), FKOAuthDataStore\new_access_token(), new_channel_post(), new_keypair(), notification(), notifier_run(), oembed_bbcode2html(), parse_url_content(), photo_upload(), photos_content(), photos_init(), poco_init(), poller_run(), post_post(), post_url(), prepare_body(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), proc_run(), profile_content(), profile_create_sidebar(), profile_photo_post(), profiles_content(), profperm_content(), qsearch_init(), register_content(), register_post(), reload_plugins(), scale_external_images(), search_content(), send_message(), send_reg_approval_email(), send_verification_email(), service_class_allows(), service_class_fetch(), set_config(), settings_post(), siteinfo_content(), smilies(), update_suggestions(), upgrade_link(), user_allow(), valid_email(), validate_email(), viewconnections_aside(), viewconnections_content(), viewconnections_init(), z_fetch_url(), z_post_url(), zfinger_init(), zot_fetch(), zot_import(), and zotfeed_init().

    +

    Referenced by admin_page_dbsync(), admin_page_logs(), admin_page_site(), admin_page_summary(), admin_page_themes(), allowed_email(), allowed_url(), api_statuses_mentions(), api_statusnet_config(), attach_store(), build_sync_packet(), channel_content(), check_account_admin(), check_account_invite(), check_config(), cli_startup(), community_content(), create_account(), create_identity(), detect_language(), dfrn_deliver(), directory_content(), directory_run(), dirfind_content(), dirsearch_content(), display_content(), dlogger(), dob(), editpost_content(), encode_item(), encode_mail(), events_content(), expire_run(), feed_init(), fetch_url(), fetch_xrd_links(), findpeople_widget(), Item\get_comment_box(), get_item_elements(), get_mail_elements(), group_content(), hcard_init(), hostxrd_init(), photo_gd\imageString(), import_post(), import_xchan(), invite_content(), invite_post(), item_post(), item_store(), lastpost_content(), photo_imagick\load(), logger(), login(), lostpass_content(), lostpass_post(), match_content(), nav(), navbar_complete(), FKOAuthDataStore\new_access_token(), new_channel_post(), new_keypair(), notification(), notifier_run(), oembed_bbcode2html(), parse_url_content(), photo_upload(), photos_content(), photos_init(), poco_init(), poller_run(), post_post(), post_url(), prepare_body(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), proc_run(), profile_content(), profile_create_sidebar(), profile_photo_post(), profiles_content(), profperm_content(), qsearch_init(), register_content(), register_post(), reload_plugins(), scale_external_images(), search_content(), send_message(), send_reg_approval_email(), send_verification_email(), service_class_allows(), service_class_fetch(), set_config(), settings_post(), siteinfo_content(), smilies(), update_suggestions(), upgrade_link(), user_allow(), valid_email(), validate_email(), viewconnections_aside(), viewconnections_content(), viewconnections_init(), z_fetch_url(), z_post_url(), zfinger_init(), zot_fetch(), zot_import(), and zotfeed_init().

    @@ -324,7 +324,7 @@ Functions
    -

    Referenced by App\build_pagehead(), channel_aside(), channel_content(), community_content(), contact_block(), contact_remove(), conversation(), current_theme(), feature_enabled(), findpeople_widget(), Item\get_comment_box(), get_theme_uid(), group_content(), intro_content(), invite_content(), invite_post(), item_expire(), item_store(), item_store_update(), items_fetch(), lastpost_aside(), lastpost_content(), FKOAuth1\loginUser(), message_content(), network_content(), network_init(), notifications_content(), profile_activity(), profperm_content(), remove_community_tag(), set_pconfig(), smilies(), tag_deliver(), and theme_content().

    +

    Referenced by authenticate_success(), App\build_pagehead(), change_channel(), channel_aside(), channel_content(), community_content(), contact_block(), contact_remove(), conversation(), current_theme(), feature_enabled(), findpeople_widget(), Item\get_comment_box(), get_theme_uid(), group_content(), intro_content(), invite_content(), invite_post(), item_expire(), item_store(), item_store_update(), items_fetch(), lastpost_aside(), lastpost_content(), FKOAuth1\loginUser(), message_content(), network_content(), network_init(), notifications_content(), profile_activity(), profile_load(), profile_sidebar(), profperm_content(), remove_community_tag(), set_pconfig(), smilies(), tag_deliver(), and theme_content().

    @@ -468,7 +468,7 @@ Functions
    -

    Referenced by admin_page_dbsync(), admin_page_logs_post(), admin_page_plugins(), admin_page_site_post(), admin_page_themes(), api_content(), check_config(), create_identity(), hostxrd_init(), and poller_run().

    +

    Referenced by admin_page_dbsync(), admin_page_logs_post(), admin_page_plugins(), admin_page_site_post(), admin_page_themes(), api_content(), check_config(), create_account(), hostxrd_init(), and poller_run().

    diff --git a/doc/html/include_2menu_8php.html b/doc/html/include_2menu_8php.html new file mode 100644 index 000000000..d9229d2de --- /dev/null +++ b/doc/html/include_2menu_8php.html @@ -0,0 +1,431 @@ + + + + + + +The Red Matrix: include/menu.php File Reference + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    + +
    +
    menu.php File Reference
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +

    +Functions

     menu_fetch ($name, $uid, $observer_xchan)
     
     menu_render ($menu)
     
     menu_fetch_id ($menu_id, $channel_id)
     
     menu_create ($arr)
     
     menu_list ($channel_id)
     
     menu_edit ($arr)
     
     menu_delete ($menu_name, $uid)
     
     menu_delete_id ($menu_id, $uid)
     
     menu_add_item ($menu_id, $uid, $arr)
     
     menu_edit_item ($menu_id, $uid, $arr)
     
     menu_del_item ($menu_id, $uid, $item_id)
     
    +

    Function Documentation

    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    menu_add_item ( $menu_id,
     $uid,
     $arr 
    )
    +
    + +

    Referenced by mitem_post().

    + +
    +
    + +
    +
    + + + + + + + + +
    menu_create ( $arr)
    +
    + +

    Referenced by menu_post().

    + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    menu_del_item ( $menu_id,
     $uid,
     $item_id 
    )
    +
    + +

    Referenced by mitem_content().

    + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + +
    menu_delete ( $menu_name,
     $uid 
    )
    +
    + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + +
    menu_delete_id ( $menu_id,
     $uid 
    )
    +
    + +

    Referenced by menu_content(), and menu_delete().

    + +
    +
    + +
    +
    + + + + + + + + +
    menu_edit ( $arr)
    +
    + +

    Referenced by menu_post().

    + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    menu_edit_item ( $menu_id,
     $uid,
     $arr 
    )
    +
    + +

    Referenced by mitem_post().

    + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    menu_fetch ( $name,
     $uid,
     $observer_xchan 
    )
    +
    + +

    Referenced by mitem_content(), and profile_sidebar().

    + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + +
    menu_fetch_id ( $menu_id,
     $channel_id 
    )
    +
    + +

    Referenced by menu_content(), and mitem_init().

    + +
    +
    + +
    +
    + + + + + + + + +
    menu_list ( $channel_id)
    +
    + +

    Referenced by menu_content().

    + +
    +
    + +
    +
    + + + + + + + + +
    menu_render ( $menu)
    +
    + +

    Referenced by mitem_content(), and profile_sidebar().

    + +
    +
    +
    +
    + diff --git a/doc/html/include_2menu_8php.js b/doc/html/include_2menu_8php.js new file mode 100644 index 000000000..b5ace532a --- /dev/null +++ b/doc/html/include_2menu_8php.js @@ -0,0 +1,14 @@ +var include_2menu_8php = +[ + [ "menu_add_item", "include_2menu_8php.html#add35fae5e9695031b3d46e30ac409eb8", null ], + [ "menu_create", "include_2menu_8php.html#a08a800821721781a8dfffbe31481ff98", null ], + [ "menu_del_item", "include_2menu_8php.html#a9aa8e0052dd47c1a93f53a983bd4620a", null ], + [ "menu_delete", "include_2menu_8php.html#a3884bda4d85d84ec99447db9403a68d8", null ], + [ "menu_delete_id", "include_2menu_8php.html#ad87f51ce85172bcc3f931aa0cd96a804", null ], + [ "menu_edit", "include_2menu_8php.html#a6a33c6a3db2a7510b16cc656edaec571", null ], + [ "menu_edit_item", "include_2menu_8php.html#acb66f80ca895a6ccd562b3d9ae7b41aa", null ], + [ "menu_fetch", "include_2menu_8php.html#a68ebbf492470c930f652013656f9071d", null ], + [ "menu_fetch_id", "include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7", null ], + [ "menu_list", "include_2menu_8php.html#acef15a498d52666b1c7e5c12765c689b", null ], + [ "menu_render", "include_2menu_8php.html#a890cc6237971e15f15702e6b2e88502e", null ] +]; \ No newline at end of file diff --git a/doc/html/item_8php.html b/doc/html/item_8php.html index 899bbda68..5ace8bb7b 100644 --- a/doc/html/item_8php.html +++ b/doc/html/item_8php.html @@ -333,7 +333,7 @@ Functions
    -

    This is the POST destination for most all locally posted text stuff. This function handles status, wall-to-wall status, local comments, and remote coments that are posted on this site (as opposed to being delivered in a feed). Also processed here are posts and comments coming through the statusnet/twitter API. All of these become an "item" which is our basic unit of information. Posts that originate externally or do not fall into the above posting categories go through item_store() instead of this function.

    +

    This is the POST destination for most all locally posted text stuff. This function handles status, wall-to-wall status, local comments, and remote coments that are posted on this site (as opposed to being delivered in a feed). Also processed here are posts and comments coming through the statusnet/twitter API. All of these become an "item" which is our basic unit of information. Posts that originate externally or do not fall into the above posting categories go through item_store() instead of this function.

    Is this a reply to something?

    fix naked links by passing through a callback to see if this is a red site (already known to us) which will get a zrl, otherwise link with url

    When a photo was uploaded into the message using the (profile wall) ajax uploader, The permissions are initially set to disallow anybody but the owner from seeing it. This is because the permissions may not yet have been set for the post. If it's private, the photo permissions should be set appropriately. But we didn't know the final permissions on the post until now. So now we'll look for links of uploaded messages that are in the post and set them to the same permissions as the post itself.

    diff --git a/doc/html/items_8php.html b/doc/html/items_8php.html index e91c8f22d..a78bfc16a 100644 --- a/doc/html/items_8php.html +++ b/doc/html/items_8php.html @@ -166,10 +166,10 @@ Functions    encode_rel_links ($links)   - item_store ($arr, $force_parent=false) -  - item_store_update ($arr, $force_parent=false) -  + item_store ($arr, $allow_exec=false) +  + item_store_update ($arr, $allow_exec=false) +   send_status_notifications ($post_id, $item)    get_item_contact ($item, $contacts) @@ -236,7 +236,7 @@ Functions
    -

    Referenced by get_item_elements(), item_store(), and item_store_update().

    +

    Referenced by get_item_elements(), item_store(), and item_store_update().

    @@ -832,7 +832,7 @@ Functions
    -

    Referenced by channel_content(), display_content(), events_content(), items_fetch(), lastpost_content(), network_content(), notifier_run(), page_content(), search_content(), tag_deliver(), and zot_feed().

    +

    Referenced by channel_content(), display_content(), events_content(), item_expire(), items_fetch(), lastpost_content(), network_content(), notifier_run(), page_content(), search_content(), tag_deliver(), and zot_feed().

    @@ -1171,7 +1171,7 @@ Functions - +
    @@ -1185,7 +1185,7 @@ Functions - + @@ -1199,7 +1199,7 @@ Functions - +
     $force_parent = false $allow_exec = false 
    @@ -1213,7 +1213,7 @@ Functions - + @@ -1457,7 +1457,7 @@ Functions
     $force_parent = false $allow_exec = false 
    -

    Referenced by item_store(), and item_store_update().

    +

    Referenced by item_store(), and item_store_update().

    @@ -1485,7 +1485,7 @@ Functions
    -

    Referenced by item_store(), and item_store_update().

    +

    Referenced by item_store(), and item_store_update().

    diff --git a/doc/html/items_8php.js b/doc/html/items_8php.js index ea9e2e7db..70521ff4a 100644 --- a/doc/html/items_8php.js +++ b/doc/html/items_8php.js @@ -38,8 +38,8 @@ var items_8php = [ "item_expire", "items_8php.html#a6f7e1334af5d684a987fa6a3eb37f4cc", null ], [ "item_getfeedattach", "items_8php.html#a09d425596b9f8663472cf7474ad36d96", null ], [ "item_getfeedtags", "items_8php.html#a649dc3e53ed794d0ead4b5d037f8d8d7", null ], - [ "item_store", "items_8php.html#a8ef003b2bc2dc4816bdcf5800aec1049", null ], - [ "item_store_update", "items_8php.html#a2dc4fb9347f6fb804da4f32c107afb53", null ], + [ "item_store", "items_8php.html#a2541e6861a56d145c9281877cc501615", null ], + [ "item_store_update", "items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484", null ], [ "items_fetch", "items_8php.html#a756738301f2ed96be50232500677d58a", null ], [ "limit_body_size", "items_8php.html#af94c281016c6c912d06e064113336c5c", null ], [ "mail_store", "items_8php.html#a77da7ce9a117601d49ac4a67c71b514f", null ], diff --git a/doc/html/language_8php.html b/doc/html/language_8php.html index 73d30c293..6d9fecb17 100644 --- a/doc/html/language_8php.html +++ b/doc/html/language_8php.html @@ -146,7 +146,7 @@ Functions
    -

    Referenced by item_store(), and item_store_update().

    +

    Referenced by item_store(), and item_store_update().

    @@ -280,7 +280,7 @@ Functions
    -

    Referenced by admin_content(), admin_page_dbsync(), admin_page_logs(), admin_page_logs_post(), admin_page_plugins(), admin_page_site(), admin_page_site_post(), admin_page_summary(), admin_page_themes(), admin_page_users(), admin_post(), advanced_profile(), allfriends_content(), alt_pager(), api_content(), api_post(), api_statuses_public_timeline(), apps_content(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_init(), attach_list_files(), attach_store(), authenticate_success(), bb_ShareAttributes(), bbcode(), categories_widget(), channel_content(), channel_init(), chanview_content(), check_account_email(), check_account_invite(), check_config(), check_form_security_std_err_msg(), check_funcs(), check_htaccess(), check_htconfig(), check_keys(), check_php(), check_smarty3(), common_content(), common_friends_visitor_widget(), common_init(), community_content(), connections_content(), connections_post(), construct_page(), contact_block(), contact_poll_interval(), contact_reputation(), conversation(), create_account(), create_identity(), crepair_content(), crepair_post(), datesel_format(), day_translate(), delegate_content(), directory_content(), dirfind_content(), dirsearch_content(), display_content(), drop_item(), editpost_content(), editwebpage_content(), events_content(), events_post(), fbrowser_content(), fileas_widget(), filer_content(), findpeople_widget(), fix_attached_photo_permissions(), follow_init(), follow_widget(), format_event_diaspora(), format_event_html(), format_like(), format_notification(), fsuggest_content(), fsuggest_post(), gender_selector(), get_birthdays(), Item\get_comment_box(), get_events(), get_features(), get_mood_verbs(), get_perms(), get_plink(), get_poke_verbs(), Item\get_template_data(), group_add(), group_content(), group_post(), group_side(), hcard_init(), help_content(), identity_check_service_class(), import_channel_photo(), import_content(), import_post(), import_xchan(), dba_driver\install(), intro_content(), intro_post(), invite_content(), invite_post(), item_photo_menu(), item_post(), item_post_type(), items_fetch(), lang_selector(), lastpost_content(), lastpost_init(), like_content(), load_database(), localize_item(), lockview_content(), login(), lostpass_content(), lostpass_post(), magic_init(), manage_content(), manual_config(), marital_selector(), match_content(), message_aside(), message_content(), message_post(), mini_group_select(), mood_content(), mood_init(), nav(), network_content(), network_init(), network_to_name(), new_channel_content(), new_channel_post(), new_contact(), nogroup_content(), notification(), notifications_content(), notifications_post(), notify_content(), obj_verbs(), oembed_bbcode2html(), oembed_iframe(), oexchange_content(), page_content(), paginate(), photo_upload(), photos_album_widget(), photos_content(), photos_init(), photos_post(), ping_init(), poke_content(), poke_init(), populate_acl(), post_activity_item(), post_init(), posted_date_widget(), prepare_body(), profile_activity(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profile_sidebar(), profile_tabs(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), redbasic_form(), register_content(), register_post(), regmod_content(), relative_date(), removeme_content(), rmagic_content(), saved_searches(), scale_external_images(), search(), search_content(), search_saved_searches(), select_timezone(), send_message(), send_reg_approval_email(), send_verification_email(), settings_aside(), settings_post(), setup_content(), sexpref_selector(), siteinfo_content(), subthread_content(), suggest_content(), tagblock(), tagger_content(), tagrm_content(), tagrm_post(), thing_content(), thing_init(), timezone_cmp(), update_channel_content(), update_community_content(), update_display_content(), update_network_content(), update_search_content(), upgrade_bool_message(), upgrade_link(), upgrade_message(), user_allow(), user_deny(), validate_channelname(), vcard_from_xchan(), viewconnections_content(), viewsrc_content(), wall_upload_post(), webpages_content(), webpages_init(), what_next(), xchan_content(), z_readdir(), and zfinger_init().

    +

    Referenced by admin_content(), admin_page_dbsync(), admin_page_logs(), admin_page_logs_post(), admin_page_plugins(), admin_page_site(), admin_page_site_post(), admin_page_summary(), admin_page_themes(), admin_page_users(), admin_post(), advanced_profile(), allfriends_content(), alt_pager(), api_content(), api_post(), api_statuses_public_timeline(), apps_content(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_init(), attach_list_files(), attach_store(), authenticate_success(), bb_ShareAttributes(), bbcode(), categories_widget(), channel_content(), channel_init(), chanview_content(), check_account_email(), check_account_invite(), check_config(), check_form_security_std_err_msg(), check_funcs(), check_htaccess(), check_htconfig(), check_keys(), check_php(), check_smarty3(), common_content(), common_friends_visitor_widget(), common_init(), community_content(), connections_content(), connections_post(), construct_page(), contact_block(), contact_poll_interval(), contact_reputation(), conversation(), create_account(), create_identity(), crepair_content(), crepair_post(), datesel_format(), day_translate(), delegate_content(), directory_content(), dirfind_content(), dirsearch_content(), display_content(), drop_item(), editpost_content(), editwebpage_content(), events_content(), events_post(), fbrowser_content(), fileas_widget(), filer_content(), findpeople_widget(), fix_attached_photo_permissions(), follow_init(), follow_widget(), format_event_diaspora(), format_event_html(), format_like(), format_notification(), fsuggest_content(), fsuggest_post(), gender_selector(), get_birthdays(), Item\get_comment_box(), get_events(), get_features(), get_mood_verbs(), get_perms(), get_plink(), get_poke_verbs(), Item\get_template_data(), group_add(), group_content(), group_post(), group_side(), hcard_init(), help_content(), identity_check_service_class(), import_channel_photo(), import_content(), import_post(), import_xchan(), dba_driver\install(), intro_content(), intro_post(), invite_content(), invite_post(), item_photo_menu(), item_post(), item_post_type(), items_fetch(), lang_selector(), lastpost_content(), lastpost_init(), like_content(), load_database(), localize_item(), lockview_content(), login(), lostpass_content(), lostpass_post(), magic_init(), manage_content(), manual_config(), marital_selector(), match_content(), menu_content(), menu_post(), message_aside(), message_content(), message_post(), mini_group_select(), mitem_content(), mitem_init(), mitem_post(), mood_content(), mood_init(), nav(), network_content(), network_init(), network_to_name(), new_channel_content(), new_channel_post(), new_contact(), nogroup_content(), notification(), notifications_content(), notifications_post(), notify_content(), obj_verbs(), oembed_bbcode2html(), oembed_iframe(), oexchange_content(), page_content(), paginate(), photo_upload(), photos_album_widget(), photos_content(), photos_init(), photos_post(), ping_init(), poke_content(), poke_init(), populate_acl(), post_activity_item(), post_init(), posted_date_widget(), prepare_body(), profile_activity(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profile_sidebar(), profile_tabs(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), redbasic_form(), register_content(), register_post(), regmod_content(), relative_date(), removeme_content(), rmagic_content(), saved_searches(), scale_external_images(), search(), search_content(), search_saved_searches(), select_timezone(), send_message(), send_reg_approval_email(), send_verification_email(), settings_aside(), settings_post(), setup_content(), sexpref_selector(), siteinfo_content(), subthread_content(), suggest_content(), tagblock(), tagger_content(), tagrm_content(), tagrm_post(), thing_content(), thing_init(), timezone_cmp(), update_channel_content(), update_community_content(), update_display_content(), update_network_content(), update_search_content(), upgrade_bool_message(), upgrade_link(), upgrade_message(), user_allow(), user_deny(), validate_channelname(), vcard_from_xchan(), viewconnections_content(), viewsrc_content(), wall_upload_post(), webpages_content(), what_next(), writepages_widget(), xchan_content(), z_readdir(), and zfinger_init().

    diff --git a/doc/html/mitem_8php.html b/doc/html/mitem_8php.html new file mode 100644 index 000000000..cd82d3cce --- /dev/null +++ b/doc/html/mitem_8php.html @@ -0,0 +1,173 @@ + + + + + + +The Red Matrix: mod/mitem.php File Reference + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    + +
    +
    mitem.php File Reference
    +
    +
    + + + + + + + + +

    +Functions

     mitem_init (&$a)
     
     mitem_post (&$a)
     
     mitem_content (&$a)
     
    +

    Function Documentation

    + +
    +
    + + + + + + + + +
    mitem_content ($a)
    +
    + +
    +
    + +
    +
    + + + + + + + + +
    mitem_init ($a)
    +
    + +
    +
    + +
    +
    + + + + + + + + +
    mitem_post ($a)
    +
    + +
    +
    +
    +
    + diff --git a/doc/html/mitem_8php.js b/doc/html/mitem_8php.js new file mode 100644 index 000000000..35bca9217 --- /dev/null +++ b/doc/html/mitem_8php.js @@ -0,0 +1,6 @@ +var mitem_8php = +[ + [ "mitem_content", "mitem_8php.html#a7a31b702ecad18eeb6a38b243ff0037e", null ], + [ "mitem_init", "mitem_8php.html#a9627cd857cafdf04e4fc0ae48c8e8518", null ], + [ "mitem_post", "mitem_8php.html#a6ee694cca4b551a20d7c7a94b5243ec1", null ] +]; \ No newline at end of file diff --git a/doc/html/mod_2menu_8php.html b/doc/html/mod_2menu_8php.html new file mode 100644 index 000000000..756912442 --- /dev/null +++ b/doc/html/mod_2menu_8php.html @@ -0,0 +1,155 @@ + + + + + + +The Red Matrix: mod/menu.php File Reference + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    + +
    +
    menu.php File Reference
    +
    +
    + + + + + + +

    +Functions

     menu_post (&$a)
     
     menu_content (&$a)
     
    +

    Function Documentation

    + +
    +
    + + + + + + + + +
    menu_content ($a)
    +
    + +
    +
    + +
    +
    + + + + + + + + +
    menu_post ($a)
    +
    + +
    +
    +
    +
    + diff --git a/doc/html/mod_2menu_8php.js b/doc/html/mod_2menu_8php.js new file mode 100644 index 000000000..a1f6e1d9f --- /dev/null +++ b/doc/html/mod_2menu_8php.js @@ -0,0 +1,5 @@ +var mod_2menu_8php = +[ + [ "menu_content", "mod_2menu_8php.html#a6fed23af14d71a78a4153c8363a685cf", null ], + [ "menu_post", "mod_2menu_8php.html#aaa491ef173868fe002aece4632bcf393", null ] +]; \ No newline at end of file diff --git a/doc/html/navtree.js b/doc/html/navtree.js index 126fd9541..1796ca3f0 100644 --- a/doc/html/navtree.js +++ b/doc/html/navtree.js @@ -36,13 +36,13 @@ var NAVTREE = var NAVTREEINDEX = [ "BaseObject_8php.html", -"boot_8php.html#aa46321e1cd6a3b8dfde8bf9510112fec", -"classItem.html#a904421c7a427411bb2ab473bca872f63", -"dir__fns_8php.html#a6cae22cfdd6edda5ddf09e07abb3242a", -"include_2api_8php.html#aa1bddb580510e70cc1a7b7381667f1a3", -"mod_2notify_8php.html#a94f9a6a9d4b5fd704baafff0c34f41ae", -"security_8php.html#afa683bc025a1d2fe9065e2f6cd71a22f", -"zot_8php.html#a666d3efcac00ec1b4a4537a60655f2ab" +"boot_8php.html#aa3425e2de85b08f7041656d3a8502cb6", +"classItem.html#a632185dd25c5caf277067c76230a4320", +"dir_55dbaf9b7b53c4fc605c9011743a7353.html", +"include_2api_8php.html#a8969e8d9c683f12ba17dcd4b059e020d", +"mod_2directory_8php.html", +"removeme_8php.html", +"wall__upload_8php.html" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/doc/html/navtreeindex0.js b/doc/html/navtreeindex0.js index 0ba4301f7..348c4c035 100644 --- a/doc/html/navtreeindex0.js +++ b/doc/html/navtreeindex0.js @@ -5,22 +5,23 @@ var NAVTREEINDEX0 = "Contact_8php.html#a024919623a830e8703ac4f23496dd66c":[5,0,0,15,2], "Contact_8php.html#a228fc01f90ae9bfdde4c2ad0772bd7dc":[5,0,0,15,9], "Contact_8php.html#a28e062c884331dbb5dfa713228c25ad6":[5,0,0,15,8], -"Contact_8php.html#a2fc191067dd571a79603c66b04b1ca15":[5,0,0,15,13], -"Contact_8php.html#a38daa1c210b78385307123450ca9a1fc":[5,0,0,15,12], +"Contact_8php.html#a2f4f495d53f2a334ab75292af79d3c91":[5,0,0,15,11], +"Contact_8php.html#a2fc191067dd571a79603c66b04b1ca15":[5,0,0,15,14], +"Contact_8php.html#a38daa1c210b78385307123450ca9a1fc":[5,0,0,15,13], "Contact_8php.html#a3a0844dac1e86d523de5d2f432cfeebc":[5,0,0,15,6], "Contact_8php.html#a3eef54a5523e568a28257c1f9b1644d8":[5,0,0,15,3], "Contact_8php.html#a483cda56f9e37c3a4a8773dcdfeb0258":[5,0,0,15,5], -"Contact_8php.html#a6348a532c9d26cd1c9afbc9aa6aa8960":[5,0,0,15,14], +"Contact_8php.html#a6348a532c9d26cd1c9afbc9aa6aa8960":[5,0,0,15,15], "Contact_8php.html#a87e699f74a1102b25e8aa0432d86a91e":[5,0,0,15,7], "Contact_8php.html#a91281b5d4bbbb2ed468e27ec82ca083c":[5,0,0,15,10], -"Contact_8php.html#acc12cda999c88c4d6185cca967c15125":[5,0,0,15,11], +"Contact_8php.html#acc12cda999c88c4d6185cca967c15125":[5,0,0,15,12], "Contact_8php.html#ad46ff6764f12b6d3ab45c49b797f98aa":[5,0,0,15,4], "Contact_8php.html#ad5b02c2a962ee55b1b7ca6c159d6e4c5":[5,0,0,15,1], "Contact_8php.html#ae8803c330352cbf1e828eb7490edf47e":[5,0,0,15,0], "ConversationObject_8php.html":[5,0,0,19], "ITemplateEngine_8php.html":[5,0,0,38], "ItemObject_8php.html":[5,0,0,37], -"ProtoDriver_8php.html":[5,0,0,55], +"ProtoDriver_8php.html":[5,0,0,57], "__well__known_8php.html":[5,0,1,0], "__well__known_8php.html#a6ebfa937a2024f0b5dab53f0ac90fed0":[5,0,1,0,0], "account_8php.html":[5,0,0,2], @@ -87,167 +88,166 @@ var NAVTREEINDEX0 = "bbcode_8php.html#a55b0cb6973f1ec731de0e726bcc0efa7":[5,0,0,10,5], "bbcode_8php.html#a8911e027907820df3db03b4f76724b50":[5,0,0,10,2], "boot_8php.html":[5,0,4], -"boot_8php.html#a009e6a0637cb65804ea8094ecc4450b0":[5,0,4,129], +"boot_8php.html#a009e6a0637cb65804ea8094ecc4450b0":[5,0,4,131], "boot_8php.html#a01353c9abebc3544ea080ac161729632":[5,0,4,42], -"boot_8php.html#a022cea669f9f13ef7c6268b63884c57f":[5,0,4,142], -"boot_8php.html#a02566ac9d891369a1d3ebb81a15722fc":[5,0,4,227], +"boot_8php.html#a022cea669f9f13ef7c6268b63884c57f":[5,0,4,144], +"boot_8php.html#a02566ac9d891369a1d3ebb81a15722fc":[5,0,4,231], "boot_8php.html#a032bbd6d0321e99e9117332c9ed2b1b8":[5,0,4,60], -"boot_8php.html#a03d19251c245587de7ed959300b87bdf":[5,0,4,156], +"boot_8php.html#a03d19251c245587de7ed959300b87bdf":[5,0,4,160], "boot_8php.html#a0450389f24c632906fbc24347700a543":[5,0,4,53], -"boot_8php.html#a0603d6ece8c5d37b4b7db697db053a4b":[5,0,4,107], +"boot_8php.html#a0603d6ece8c5d37b4b7db697db053a4b":[5,0,4,108], "boot_8php.html#a081307d681d7d04f17b9ced2076e7c85":[5,0,4,1], -"boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3":[5,0,4,194], -"boot_8php.html#a0a98dd0110dc6c8e24cefc8ae74d5562":[5,0,4,72], -"boot_8php.html#a0b73e2548d6f9beb9c93211f488e336a":[5,0,4,160], -"boot_8php.html#a0c59dde058efebbc66520d136cbd1631":[5,0,4,243], -"boot_8php.html#a0cc8dc76bd10ac0ec81bac08a46f82fe":[5,0,4,239], -"boot_8php.html#a0d877df1e20bae765e1708be50f6b503":[5,0,4,242], +"boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3":[5,0,4,198], +"boot_8php.html#a0a98dd0110dc6c8e24cefc8ae74d5562":[5,0,4,73], +"boot_8php.html#a0b73e2548d6f9beb9c93211f488e336a":[5,0,4,164], +"boot_8php.html#a0c59dde058efebbc66520d136cbd1631":[5,0,4,247], +"boot_8php.html#a0cc8dc76bd10ac0ec81bac08a46f82fe":[5,0,4,243], +"boot_8php.html#a0d877df1e20bae765e1708be50f6b503":[5,0,4,246], "boot_8php.html#a0e4701c9742c3ef88f02ac450a042a84":[5,0,4,25], -"boot_8php.html#a0e57f846e6d47a308feced0f7274f178":[5,0,4,64], +"boot_8php.html#a0e57f846e6d47a308feced0f7274f178":[5,0,4,65], "boot_8php.html#a0e6db7e365f2b041a828b93786f694bc":[5,0,4,15], -"boot_8php.html#a0fb63e51c2a9814941842ae8f2f4dff8":[5,0,4,82], -"boot_8php.html#a12c781cefc20167231e2e3fd5866b1b5":[5,0,4,86], -"boot_8php.html#a14ba8f9e162f2559831ee3bf98e0c3bd":[5,0,4,83], -"boot_8php.html#a14d44d4a00223dc3db4ea962325db192":[5,0,4,186], -"boot_8php.html#a176664e78dcb9132e16be69418223eb2":[5,0,4,67], -"boot_8php.html#a17b4ea23d9ecf628d9c8f53b7abcb805":[5,0,4,141], -"boot_8php.html#a17cf72338b040891781a4bcbdd9a8595":[5,0,4,137], -"boot_8php.html#a181c111f4b6c14d091dfd3bf0d0a22cd":[5,0,4,159], -"boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2":[5,0,4,246], -"boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f":[5,0,4,247], -"boot_8php.html#a1d6e7f4c08bb68e4a424326a811bdd86":[5,0,4,163], -"boot_8php.html#a1da180f961f49a11573cac4ff6c62c05":[5,0,4,81], -"boot_8php.html#a1db4f0009c9cb4e107eab0f914a3c8dc":[5,0,4,204], +"boot_8php.html#a0fb63e51c2a9814941842ae8f2f4dff8":[5,0,4,83], +"boot_8php.html#a12c781cefc20167231e2e3fd5866b1b5":[5,0,4,87], +"boot_8php.html#a14ba8f9e162f2559831ee3bf98e0c3bd":[5,0,4,84], +"boot_8php.html#a14d44d4a00223dc3db4ea962325db192":[5,0,4,190], +"boot_8php.html#a176664e78dcb9132e16be69418223eb2":[5,0,4,68], +"boot_8php.html#a17b4ea23d9ecf628d9c8f53b7abcb805":[5,0,4,143], +"boot_8php.html#a17cf72338b040891781a4bcbdd9a8595":[5,0,4,139], +"boot_8php.html#a181c111f4b6c14d091dfd3bf0d0a22cd":[5,0,4,163], +"boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2":[5,0,4,250], +"boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f":[5,0,4,251], +"boot_8php.html#a1d6e7f4c08bb68e4a424326a811bdd86":[5,0,4,167], +"boot_8php.html#a1da180f961f49a11573cac4ff6c62c05":[5,0,4,82], +"boot_8php.html#a1db4f0009c9cb4e107eab0f914a3c8dc":[5,0,4,208], "boot_8php.html#a1dfcb5146e9d1eca4528bc580ad5d273":[5,0,4,38], -"boot_8php.html#a1f5906598e90b5ea2b4245f682be4348":[5,0,4,109], -"boot_8php.html#a1fbb93cf030f07391f22cc2948744869":[5,0,4,148], -"boot_8php.html#a20f0eed431d25870b624b8937a07a59f":[5,0,4,179], -"boot_8php.html#a21cc29e0025943e7c28ff58cb4856ac3":[5,0,4,223], +"boot_8php.html#a1f5906598e90b5ea2b4245f682be4348":[5,0,4,110], +"boot_8php.html#a1fbb93cf030f07391f22cc2948744869":[5,0,4,150], +"boot_8php.html#a20f0eed431d25870b624b8937a07a59f":[5,0,4,183], +"boot_8php.html#a21cc29e0025943e7c28ff58cb4856ac3":[5,0,4,227], "boot_8php.html#a222395aa223cfbff6166fab0b4e2e1d5":[5,0,4,48], "boot_8php.html#a24a7a70afedd5d85fe0eadc85afa9f77":[5,0,4,24], -"boot_8php.html#a25476eec71fceda237f7dc1d78b0adb8":[5,0,4,105], -"boot_8php.html#a27299ecfb9e9a99826f17a1c14c6995f":[5,0,4,97], -"boot_8php.html#a2750985ec445617d7e82ae3098c91e3f":[5,0,4,232], -"boot_8php.html#a285732e7889fa7f333cbe431111e1029":[5,0,4,182], -"boot_8php.html#a29528a2544373cc19a378f350040c6a1":[5,0,4,88], -"boot_8php.html#a2958a2bd5422b85329d7c36c06dbc221":[5,0,4,124], -"boot_8php.html#a29e921c0c72412cc738e44cca6ca1f62":[5,0,4,202], -"boot_8php.html#a2af173e4e9836ee7c90757b4793a2be3":[5,0,4,110], -"boot_8php.html#a2c65e925994566a63e6c03c381f1b4a0":[5,0,4,178], -"boot_8php.html#a2c8906f1af94a3559a5b4661067bb79d":[5,0,4,122], -"boot_8php.html#a2e90096fede6acce16abf0da8cb2febe":[5,0,4,73], -"boot_8php.html#a2f8f25b13480c37a5f22511f53da8bab":[5,0,4,78], -"boot_8php.html#a32df13fec0e43281da5979e1f5579aa8":[5,0,4,209], -"boot_8php.html#a3475ff6c2e575f946ea0ee377e944173":[5,0,4,135], +"boot_8php.html#a25476eec71fceda237f7dc1d78b0adb8":[5,0,4,106], +"boot_8php.html#a27299ecfb9e9a99826f17a1c14c6995f":[5,0,4,98], +"boot_8php.html#a2750985ec445617d7e82ae3098c91e3f":[5,0,4,236], +"boot_8php.html#a285732e7889fa7f333cbe431111e1029":[5,0,4,186], +"boot_8php.html#a29528a2544373cc19a378f350040c6a1":[5,0,4,89], +"boot_8php.html#a2958a2bd5422b85329d7c36c06dbc221":[5,0,4,126], +"boot_8php.html#a29e921c0c72412cc738e44cca6ca1f62":[5,0,4,206], +"boot_8php.html#a2af173e4e9836ee7c90757b4793a2be3":[5,0,4,111], +"boot_8php.html#a2c65e925994566a63e6c03c381f1b4a0":[5,0,4,182], +"boot_8php.html#a2c8906f1af94a3559a5b4661067bb79d":[5,0,4,124], +"boot_8php.html#a2e90096fede6acce16abf0da8cb2febe":[5,0,4,74], +"boot_8php.html#a2f8f25b13480c37a5f22511f53da8bab":[5,0,4,79], +"boot_8php.html#a32df13fec0e43281da5979e1f5579aa8":[5,0,4,213], +"boot_8php.html#a3475ff6c2e575f946ea0ee377e944173":[5,0,4,137], "boot_8php.html#a34c756469ebed32e2fc987bcde62d382":[5,0,4,50], -"boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49":[5,0,4,115], -"boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd":[5,0,4,150], -"boot_8php.html#a36b31575f992a10b5927b76efba9362e":[5,0,4,249], -"boot_8php.html#a38f6c7fe33b5434a24b4314567753dfa":[5,0,4,167], -"boot_8php.html#a3ad9cc5d4354be741fa1de12b96e9955":[5,0,4,111], -"boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af":[5,0,4,248], -"boot_8php.html#a3d6d4fc5fafcc9156811669158541caf":[5,0,4,200], +"boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49":[5,0,4,117], +"boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd":[5,0,4,152], +"boot_8php.html#a36b31575f992a10b5927b76efba9362e":[5,0,4,253], +"boot_8php.html#a38f6c7fe33b5434a24b4314567753dfa":[5,0,4,171], +"boot_8php.html#a3ad9cc5d4354be741fa1de12b96e9955":[5,0,4,112], +"boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af":[5,0,4,252], +"boot_8php.html#a3d6d4fc5fafcc9156811669158541caf":[5,0,4,204], "boot_8php.html#a3e0930933fb2c0bf8211cc7ab4e1c3b4":[5,0,4,12], -"boot_8php.html#a3e2ea123d29a72012db1241f96280b0e":[5,0,4,65], -"boot_8php.html#a3f40aa5bafff8c4eebdc62e5121daf77":[5,0,4,95], +"boot_8php.html#a3e2ea123d29a72012db1241f96280b0e":[5,0,4,66], +"boot_8php.html#a3f40aa5bafff8c4eebdc62e5121daf77":[5,0,4,96], "boot_8php.html#a400519fa181591cd6fdbb8f25fbcba0a":[5,0,4,58], -"boot_8php.html#a40d885b2cfd736aab4234ae641ca4dfb":[5,0,4,125], -"boot_8php.html#a423505ab8dbd8e39d04ae3fe1374102b":[5,0,4,196], -"boot_8php.html#a43296b1b4398aacbf92a4b2d56bab91e":[5,0,4,177], -"boot_8php.html#a43c6c7d84d880e9500bd4f8f8ecc5731":[5,0,4,94], -"boot_8php.html#a444ce608ce34efb82ee11852f36e825f":[5,0,4,153], -"boot_8php.html#a44ae1542a805ffd7f826fb511db07374":[5,0,4,145], -"boot_8php.html#a44d069c8a1cfcc6d2007c506a17ff28f":[5,0,4,76], -"boot_8php.html#a45b12aefab9675baffc7a07a09486db8":[5,0,4,240], +"boot_8php.html#a40d885b2cfd736aab4234ae641ca4dfb":[5,0,4,127], +"boot_8php.html#a423505ab8dbd8e39d04ae3fe1374102b":[5,0,4,200], +"boot_8php.html#a43296b1b4398aacbf92a4b2d56bab91e":[5,0,4,181], +"boot_8php.html#a43c6c7d84d880e9500bd4f8f8ecc5731":[5,0,4,95], +"boot_8php.html#a444ce608ce34efb82ee11852f36e825f":[5,0,4,157], +"boot_8php.html#a44ae1542a805ffd7f826fb511db07374":[5,0,4,147], +"boot_8php.html#a44d069c8a1cfcc6d2007c506a17ff28f":[5,0,4,77], +"boot_8php.html#a45b12aefab9675baffc7a07a09486db8":[5,0,4,244], "boot_8php.html#a4751b522ea913d0e7ed43e03d22e9e68":[5,0,4,36], "boot_8php.html#a490972c02fdb638c52ec0e012a30bfd2":[5,0,4,19], -"boot_8php.html#a49f2a70b3b43aa904223a8d19e986a47":[5,0,4,165], -"boot_8php.html#a4a12ce5de39789b0361e308d89925a20":[5,0,4,108], -"boot_8php.html#a4a49b29838ef2c45ab3556b52baec6a4":[5,0,4,217], -"boot_8php.html#a4bfe22e163657690dfb6d5b1d04cb47e":[5,0,4,164], +"boot_8php.html#a49f2a70b3b43aa904223a8d19e986a47":[5,0,4,169], +"boot_8php.html#a4a12ce5de39789b0361e308d89925a20":[5,0,4,109], +"boot_8php.html#a4a49b29838ef2c45ab3556b52baec6a4":[5,0,4,221], +"boot_8php.html#a4bfe22e163657690dfb6d5b1d04cb47e":[5,0,4,168], "boot_8php.html#a4c02d88e66852a01bd5a1feecb7c3ce3":[5,0,4,6], -"boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6":[5,0,4,195], -"boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115":[5,0,4,213], -"boot_8php.html#a505410c7edc5f5bb5fa227b98359793e":[5,0,4,189], -"boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa":[5,0,4,149], +"boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6":[5,0,4,199], +"boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115":[5,0,4,217], +"boot_8php.html#a505410c7edc5f5bb5fa227b98359793e":[5,0,4,193], +"boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa":[5,0,4,151], "boot_8php.html#a52b599cd13e152ebc80d7e4413683195":[5,0,4,49], -"boot_8php.html#a53e4bdb6f225da55115acb9277f75e53":[5,0,4,87], +"boot_8php.html#a53e4bdb6f225da55115acb9277f75e53":[5,0,4,88], "boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209":[5,0,4,39], -"boot_8php.html#a56fd673eaa7014150297ce1162502db5":[5,0,4,181], -"boot_8php.html#a57eee7352714c004d36c26dda74af73e":[5,0,4,212], +"boot_8php.html#a56fd673eaa7014150297ce1162502db5":[5,0,4,185], +"boot_8php.html#a57eee7352714c004d36c26dda74af73e":[5,0,4,216], "boot_8php.html#a5ab6181607a090bcdbaa13b15b85aba1":[5,0,4,23], -"boot_8php.html#a5ae728ac966ea1d3525a19e7fec59434":[5,0,4,66], -"boot_8php.html#a5b043b7fdcfd4e8c9c3747574afc6caa":[5,0,4,171], +"boot_8php.html#a5ae728ac966ea1d3525a19e7fec59434":[5,0,4,67], +"boot_8php.html#a5b043b7fdcfd4e8c9c3747574afc6caa":[5,0,4,175], "boot_8php.html#a5b45d647da3743a7fc8c6223350b4d67":[5,0,4,35], "boot_8php.html#a5b815330f3d177ab383af37a6c12e532":[5,0,4,46], -"boot_8php.html#a5b8484922918946d041e5e0515dbe718":[5,0,4,192], -"boot_8php.html#a5c3747e0f505f0d5271dc4c54e3feaf4":[5,0,4,84], -"boot_8php.html#a5df5359090d1f8e898c36d7cf8878ad2":[5,0,4,151], -"boot_8php.html#a5e322a2a2d0f51924c0b2e874988e640":[5,0,4,193], +"boot_8php.html#a5b8484922918946d041e5e0515dbe718":[5,0,4,196], +"boot_8php.html#a5c3747e0f505f0d5271dc4c54e3feaf4":[5,0,4,85], +"boot_8php.html#a5df5359090d1f8e898c36d7cf8878ad2":[5,0,4,155], +"boot_8php.html#a5e322a2a2d0f51924c0b2e874988e640":[5,0,4,197], "boot_8php.html#a623e49c79943f3e7bdb770d021683cf7":[5,0,4,21], -"boot_8php.html#a62c832a95e38b1fa23e6cef39521b7d5":[5,0,4,80], +"boot_8php.html#a62c832a95e38b1fa23e6cef39521b7d5":[5,0,4,81], "boot_8php.html#a646123ebbb10eb6f5b6ff26f4288da9b":[5,0,4,37], -"boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd":[5,0,4,236], -"boot_8php.html#a6626f383c3d2d459f731ab8b4f237d16":[5,0,4,157], -"boot_8php.html#a6788e99021ec8ffb0fa94d651f22a322":[5,0,4,133], +"boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd":[5,0,4,240], +"boot_8php.html#a6626f383c3d2d459f731ab8b4f237d16":[5,0,4,161], +"boot_8php.html#a6788e99021ec8ffb0fa94d651f22a322":[5,0,4,135], "boot_8php.html#a680fbafc2db023c5b1309e0180e81315":[5,0,4,47], -"boot_8php.html#a68d1d5bc9c7ccb663dc671b48c66df11":[5,0,4,136], +"boot_8php.html#a68d1d5bc9c7ccb663dc671b48c66df11":[5,0,4,138], "boot_8php.html#a68eebe493e6f729ffd1aeda7a4b11155":[5,0,4,52], -"boot_8php.html#a6969947145a139ec374ce098224d8e81":[5,0,4,139], -"boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1":[5,0,4,225], -"boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2":[5,0,4,216], -"boot_8php.html#a6b31dd451bc6c37fe7c9c766ff385aaf":[5,0,4,210], -"boot_8php.html#a6b9909db6a7ec80ec6fdd40ba74014dd":[5,0,4,106], -"boot_8php.html#a6c5e9e293c8242dcb9bc2c3ea2fee2c9":[5,0,4,98], -"boot_8php.html#a6df1102664f64b274810db85197c2755":[5,0,4,198], -"boot_8php.html#a7176c0f9f1c98421b97735d892cf6252":[5,0,4,224], +"boot_8php.html#a6969947145a139ec374ce098224d8e81":[5,0,4,141], +"boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1":[5,0,4,229], +"boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2":[5,0,4,220], +"boot_8php.html#a6b31dd451bc6c37fe7c9c766ff385aaf":[5,0,4,214], +"boot_8php.html#a6b9909db6a7ec80ec6fdd40ba74014dd":[5,0,4,107], +"boot_8php.html#a6c5e9e293c8242dcb9bc2c3ea2fee2c9":[5,0,4,99], +"boot_8php.html#a6df1102664f64b274810db85197c2755":[5,0,4,202], +"boot_8php.html#a7176c0f9f1c98421b97735d892cf6252":[5,0,4,228], "boot_8php.html#a719c7f3972d5f9268f37a41c76cd4ef6":[5,0,4,30], -"boot_8php.html#a7236b2cdcf59f02a42302e893a99013b":[5,0,4,172], -"boot_8php.html#a749144d8dd9c1366596a0213c277d050":[5,0,4,127], -"boot_8php.html#a74bf27f7564c9a37975e7b37d973dcab":[5,0,4,77], +"boot_8php.html#a7236b2cdcf59f02a42302e893a99013b":[5,0,4,176], +"boot_8php.html#a749144d8dd9c1366596a0213c277d050":[5,0,4,129], +"boot_8php.html#a74bf27f7564c9a37975e7b37d973dcab":[5,0,4,78], "boot_8php.html#a75a90b0eadd0df510f7e63210733634d":[5,0,4,2], -"boot_8php.html#a75fc600186b13c3b25e661afefb5eac8":[5,0,4,244], +"boot_8php.html#a75fc600186b13c3b25e661afefb5eac8":[5,0,4,248], "boot_8php.html#a768f00b7d66be0daf7ef4eea2e862006":[5,0,4,4], -"boot_8php.html#a774f0f792ebfec1e774c5a17bb9d5966":[5,0,4,79], -"boot_8php.html#a781916f83fcc8ff1035649afa45f0292":[5,0,4,92], -"boot_8php.html#a78849a1bf8ce8d9804b4cbb502e8f383":[5,0,4,219], -"boot_8php.html#a7aa57438db03834aaa0b468bdce773a6":[5,0,4,70], -"boot_8php.html#a7af107fab8d62b9a73801713b774ed30":[5,0,4,126], -"boot_8php.html#a7b8f8ad9dbe82711257d23891ef6b133":[5,0,4,152], -"boot_8php.html#a7bff2278e68a71e524afd1c7c951e1e3":[5,0,4,74], -"boot_8php.html#a7ed4581ab66ebcde97f6b3730856b028":[5,0,4,154], +"boot_8php.html#a774f0f792ebfec1e774c5a17bb9d5966":[5,0,4,80], +"boot_8php.html#a781916f83fcc8ff1035649afa45f0292":[5,0,4,93], +"boot_8php.html#a78849a1bf8ce8d9804b4cbb502e8f383":[5,0,4,223], +"boot_8php.html#a7aa57438db03834aaa0b468bdce773a6":[5,0,4,71], +"boot_8php.html#a7af107fab8d62b9a73801713b774ed30":[5,0,4,128], +"boot_8php.html#a7b8f8ad9dbe82711257d23891ef6b133":[5,0,4,156], +"boot_8php.html#a7bff2278e68a71e524afd1c7c951e1e3":[5,0,4,75], +"boot_8php.html#a7ed4581ab66ebcde97f6b3730856b028":[5,0,4,158], "boot_8php.html#a7f3474fec541e261fc8dff47313c4017":[5,0,4,56], -"boot_8php.html#a7f4264232dbb6c3b41f2617deecb1866":[5,0,4,89], -"boot_8php.html#a8231d115060d41a9c2a677f2c86f10ed":[5,0,4,190], +"boot_8php.html#a7f4264232dbb6c3b41f2617deecb1866":[5,0,4,90], +"boot_8php.html#a7fc4b291a7cdaa48b38e27344ea183cf":[5,0,4,115], +"boot_8php.html#a8231d115060d41a9c2a677f2c86f10ed":[5,0,4,194], "boot_8php.html#a84057c5bfa1bca5fba8497fe005ee4d8":[5,0,4,59], -"boot_8php.html#a8663f32171568489dbb2a01dd00371f8":[5,0,4,120], -"boot_8php.html#a882b666adfe21f035a0f8c02806066d6":[5,0,4,235], -"boot_8php.html#a8892374789fd261eb32a7969d934a14a":[5,0,4,234], -"boot_8php.html#a8905fde0a5b7882bdc083b20d9b34701":[5,0,4,170], -"boot_8php.html#a8a60cc38bb567765fd926fef70205f16":[5,0,4,103], -"boot_8php.html#a8bb0395933b5e886f086f6a2fb0bfa55":[5,0,4,214], -"boot_8php.html#a8c9dce0ef27b35397e29298eb966f7f7":[5,0,4,123], -"boot_8php.html#a8da836617174eed9fc2ac8054125354b":[5,0,4,117], -"boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce":[5,0,4,221], +"boot_8php.html#a84f48897059bbd4a8738d7ee4cec6688":[5,0,4,63], +"boot_8php.html#a8663f32171568489dbb2a01dd00371f8":[5,0,4,122], +"boot_8php.html#a882b666adfe21f035a0f8c02806066d6":[5,0,4,239], +"boot_8php.html#a8892374789fd261eb32a7969d934a14a":[5,0,4,238], +"boot_8php.html#a8905fde0a5b7882bdc083b20d9b34701":[5,0,4,174], +"boot_8php.html#a8a60cc38bb567765fd926fef70205f16":[5,0,4,104], +"boot_8php.html#a8bb0395933b5e886f086f6a2fb0bfa55":[5,0,4,218], +"boot_8php.html#a8c9dce0ef27b35397e29298eb966f7f7":[5,0,4,125], +"boot_8php.html#a8da836617174eed9fc2ac8054125354b":[5,0,4,119], +"boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce":[5,0,4,225], "boot_8php.html#a9255af5ae9c887520091ea04763c1a88":[5,0,4,33], "boot_8php.html#a926cad0b3d8b9d9ee5da1898fc063ba3":[5,0,4,11], -"boot_8php.html#a93823d15ae07548a4c49de88d325cd26":[5,0,4,140], -"boot_8php.html#a939de9a99278f4fd7dcd0ee67f243f08":[5,0,4,121], -"boot_8php.html#a949116d9a295b214293006c060ca4848":[5,0,4,119], -"boot_8php.html#a96ad56755a21e1361dbd7bf93c9e7ff4":[5,0,4,222], +"boot_8php.html#a93823d15ae07548a4c49de88d325cd26":[5,0,4,142], +"boot_8php.html#a939de9a99278f4fd7dcd0ee67f243f08":[5,0,4,123], +"boot_8php.html#a949116d9a295b214293006c060ca4848":[5,0,4,121], +"boot_8php.html#a96ad56755a21e1361dbd7bf93c9e7ff4":[5,0,4,226], "boot_8php.html#a97769915c9f14adc4f8ab1ea2cecfd90":[5,0,4,18], -"boot_8php.html#a981d46380f9f23c308bac1f9cb00dc5b":[5,0,4,184], -"boot_8php.html#a99a4a17cb644e7e6826ea07ecaf09777":[5,0,4,215], +"boot_8php.html#a981d46380f9f23c308bac1f9cb00dc5b":[5,0,4,188], +"boot_8php.html#a99a4a17cb644e7e6826ea07ecaf09777":[5,0,4,219], "boot_8php.html#a9c80420e5a063a4a87ce4831f086134d":[5,0,4,55], "boot_8php.html#a9cbab4ee728e9a8b4ce952bae643044e":[5,0,4,5], -"boot_8php.html#a9cc986b4f9dd6558cbb2e25aadbfd964":[5,0,4,207], -"boot_8php.html#a9d01ef178b72b145016cca1393415bc4":[5,0,4,185], -"boot_8php.html#a9eeb8989272d5ff804a616898bb13659":[5,0,4,237], -"boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f":[5,0,4,206], -"boot_8php.html#aa17a4f9c63f5cbc5c06f1066b6aebc42":[5,0,4,173], +"boot_8php.html#a9cc986b4f9dd6558cbb2e25aadbfd964":[5,0,4,211], +"boot_8php.html#a9d01ef178b72b145016cca1393415bc4":[5,0,4,189], +"boot_8php.html#a9eeb8989272d5ff804a616898bb13659":[5,0,4,241], +"boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f":[5,0,4,210], +"boot_8php.html#aa17a4f9c63f5cbc5c06f1066b6aebc42":[5,0,4,177], "boot_8php.html#aa1e828bbbcba170265eb2668d8daf42e":[5,0,4,28], -"boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9":[5,0,4,191], -"boot_8php.html#aa3425e2de85b08f7041656d3a8502cb6":[5,0,4,51], -"boot_8php.html#aa3679df31c8dad1b71816b0322d5baff":[5,0,4,147], -"boot_8php.html#aa4221641e5c21db69fa52c426b9017f5":[5,0,4,9] +"boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9":[5,0,4,195] }; diff --git a/doc/html/navtreeindex1.js b/doc/html/navtreeindex1.js index 2bece0895..cb5ffdb49 100644 --- a/doc/html/navtreeindex1.js +++ b/doc/html/navtreeindex1.js @@ -1,91 +1,96 @@ var NAVTREEINDEX1 = { +"boot_8php.html#aa3425e2de85b08f7041656d3a8502cb6":[5,0,4,51], +"boot_8php.html#aa3679df31c8dad1b71816b0322d5baff":[5,0,4,149], +"boot_8php.html#aa4221641e5c21db69fa52c426b9017f5":[5,0,4,9], "boot_8php.html#aa46321e1cd6a3b8dfde8bf9510112fec":[5,0,4,20], -"boot_8php.html#aa544a6c078130d0967a1f4ed8ce0a2d2":[5,0,4,144], -"boot_8php.html#aa74438cf71e48e37bf7b440b94243985":[5,0,4,91], -"boot_8php.html#aa8a2b61e70900139d1ca28e46f1da49d":[5,0,4,100], -"boot_8php.html#aa9244fc9cc221980c07a20cc534111be":[5,0,4,211], -"boot_8php.html#aad33b494084f729b6ee3b0bc457718a1":[5,0,4,131], +"boot_8php.html#aa544a6c078130d0967a1f4ed8ce0a2d2":[5,0,4,146], +"boot_8php.html#aa74438cf71e48e37bf7b440b94243985":[5,0,4,92], +"boot_8php.html#aa8a2b61e70900139d1ca28e46f1da49d":[5,0,4,101], +"boot_8php.html#aa9244fc9cc221980c07a20cc534111be":[5,0,4,215], +"boot_8php.html#aad33b494084f729b6ee3b0bc457718a1":[5,0,4,133], "boot_8php.html#aaeb666872995e3ab8da8f7bc5f3b2bd3":[5,0,4,22], -"boot_8php.html#aaf9b76832ee5f85e56466af162ba8a14":[5,0,4,71], -"boot_8php.html#ab21fb0f3e6b962419955c6fc7f26734f":[5,0,4,176], -"boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f":[5,0,4,113], -"boot_8php.html#ab2d0e8a9b81ee548ef2ce8e4560da2f6":[5,0,4,197], +"boot_8php.html#aaf9b76832ee5f85e56466af162ba8a14":[5,0,4,72], +"boot_8php.html#ab21fb0f3e6b962419955c6fc7f26734f":[5,0,4,180], +"boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f":[5,0,4,114], +"boot_8php.html#ab2d0e8a9b81ee548ef2ce8e4560da2f6":[5,0,4,201], "boot_8php.html#ab346a2ece14993861f3e4206befa94f0":[5,0,4,34], -"boot_8php.html#ab4bc9c50ecc927b92d519e36562b0df0":[5,0,4,218], -"boot_8php.html#ab4bddb41a0cf407178ec5278b950c393":[5,0,4,169], -"boot_8php.html#ab51965fabe54dc031e9a0ce1142ee83e":[5,0,4,201], -"boot_8php.html#ab54b24cc302e1a42a67a49d788b6b764":[5,0,4,112], -"boot_8php.html#ab55b16ae7fc19fafe5afaedd49163bbf":[5,0,4,132], +"boot_8php.html#ab4bc9c50ecc927b92d519e36562b0df0":[5,0,4,222], +"boot_8php.html#ab4bddb41a0cf407178ec5278b950c393":[5,0,4,173], +"boot_8php.html#ab51965fabe54dc031e9a0ce1142ee83e":[5,0,4,205], +"boot_8php.html#ab54b24cc302e1a42a67a49d788b6b764":[5,0,4,113], +"boot_8php.html#ab55b16ae7fc19fafe5afaedd49163bbf":[5,0,4,134], "boot_8php.html#ab55e545b72ec8c097e052ea7d373491f":[5,0,4,43], "boot_8php.html#ab5ddbe69d3d03acd06e1fb281488cb78":[5,0,4,61], -"boot_8php.html#ab724491497ab2618b23a01d5da60aec0":[5,0,4,187], +"boot_8php.html#ab724491497ab2618b23a01d5da60aec0":[5,0,4,191], "boot_8php.html#ab79b8b4555cae20d03f8200666d89d63":[5,0,4,7], -"boot_8php.html#ab7d65a7e7417825a4db62906bb600729":[5,0,4,102], +"boot_8php.html#ab7d65a7e7417825a4db62906bb600729":[5,0,4,103], "boot_8php.html#aba208673515cbb8a55e5fa4a1da99fda":[5,0,4,44], "boot_8php.html#abc0a90a1a77f5b668aa7e4b57d1776a7":[5,0,4,3], -"boot_8php.html#abd7bb40da9cc073297e49736b338ca07":[5,0,4,241], -"boot_8php.html#abdcdfc873ace4e0902177bad934de0c0":[5,0,4,69], -"boot_8php.html#abedd940e664017c61b48c6efa31d0cb8":[5,0,4,101], -"boot_8php.html#ac01230c7655e0705b2e99c9bc03c4450":[5,0,4,118], +"boot_8php.html#abd7bb40da9cc073297e49736b338ca07":[5,0,4,245], +"boot_8php.html#abdcdfc873ace4e0902177bad934de0c0":[5,0,4,70], +"boot_8php.html#abedd940e664017c61b48c6efa31d0cb8":[5,0,4,102], +"boot_8php.html#ac01230c7655e0705b2e99c9bc03c4450":[5,0,4,120], "boot_8php.html#ac17fc8a416ea79e9d5cb4dc9a8ff8c5c":[5,0,4,27], -"boot_8php.html#ac195fc9003298923ea81f144388e24b1":[5,0,4,155], -"boot_8php.html#ac43182e0d8bae7576a30b603774974f8":[5,0,4,220], -"boot_8php.html#ac59a18a4838710d6c2de37aed6b21f03":[5,0,4,99], +"boot_8php.html#ac195fc9003298923ea81f144388e24b1":[5,0,4,159], +"boot_8php.html#ac43182e0d8bae7576a30b603774974f8":[5,0,4,224], +"boot_8php.html#ac59a18a4838710d6c2de37aed6b21f03":[5,0,4,100], "boot_8php.html#ac608a34f3bc180e7724192e0fd31f9b0":[5,0,4,41], "boot_8php.html#ac8400313df2c831653f9036f71ebd86d":[5,0,4,62], -"boot_8php.html#ac86615ddc0763a00f5311c90e991730c":[5,0,4,245], -"boot_8php.html#ac890557fedc5b5a3b1d996249b1e1a20":[5,0,4,114], -"boot_8php.html#ac99fc4d040764eac1736bec6973556fe":[5,0,4,116], -"boot_8php.html#aca08bc4f1554ba877500f6abcc99e1e8":[5,0,4,183], +"boot_8php.html#ac86615ddc0763a00f5311c90e991730c":[5,0,4,249], +"boot_8php.html#ac890557fedc5b5a3b1d996249b1e1a20":[5,0,4,116], +"boot_8php.html#ac99fc4d040764eac1736bec6973556fe":[5,0,4,118], +"boot_8php.html#aca08bc4f1554ba877500f6abcc99e1e8":[5,0,4,187], "boot_8php.html#aca47505b8732177f52bb2d647eb2741c":[5,0,4,40], "boot_8php.html#aca5e42678e178c6b9034610d66666fd7":[5,0,4,13], "boot_8php.html#acc4e0c910af066148b810e5fde55fff1":[5,0,4,8], -"boot_8php.html#acca19aae62e1a6951a856b945de20d67":[5,0,4,158], -"boot_8php.html#acd877c405b06b348b37b6f7e62a211e9":[5,0,4,208], -"boot_8php.html#aced60c7285192e80b7c4757e45a7f1e3":[5,0,4,68], -"boot_8php.html#ad0876e837cf3fad8a26417e315f6e2c8":[5,0,4,143], +"boot_8php.html#acca19aae62e1a6951a856b945de20d67":[5,0,4,162], +"boot_8php.html#acd877c405b06b348b37b6f7e62a211e9":[5,0,4,212], +"boot_8php.html#aced60c7285192e80b7c4757e45a7f1e3":[5,0,4,69], +"boot_8php.html#ad0876e837cf3fad8a26417e315f6e2c8":[5,0,4,145], +"boot_8php.html#ad11f30a6590d3d77f0c5e1e3909af8f5":[5,0,4,153], "boot_8php.html#ad206598b909e8eb67eb0e0bb5ef69c13":[5,0,4,10], "boot_8php.html#ad2c97627a313d53df1a1c7b4215ddb51":[5,0,4,16], -"boot_8php.html#ad302cb26b838898d475f57f61b0fcc9f":[5,0,4,75], -"boot_8php.html#ad34c1547020a305915bcc39707744690":[5,0,4,90], +"boot_8php.html#ad302cb26b838898d475f57f61b0fcc9f":[5,0,4,76], +"boot_8php.html#ad34c1547020a305915bcc39707744690":[5,0,4,91], "boot_8php.html#ad4c9dc2c8a82e8f52b7404c1655eab44":[5,0,4,31], -"boot_8php.html#ad789aef3cb95fc1eb36be7c4283d0137":[5,0,4,203], -"boot_8php.html#ad8887b49bbb02dd30b4eb9f6c7773c63":[5,0,4,226], -"boot_8php.html#ada72d88ae39a7e3b45baea201cb49a29":[5,0,4,96], -"boot_8php.html#adaeb4f590c56326b2dca3b19f31b6272":[5,0,4,128], -"boot_8php.html#adca48aee78465ae3064ca4432c0d87b5":[5,0,4,229], +"boot_8php.html#ad789aef3cb95fc1eb36be7c4283d0137":[5,0,4,207], +"boot_8php.html#ad8887b49bbb02dd30b4eb9f6c7773c63":[5,0,4,230], +"boot_8php.html#ada72d88ae39a7e3b45baea201cb49a29":[5,0,4,97], +"boot_8php.html#adaeb4f590c56326b2dca3b19f31b6272":[5,0,4,130], +"boot_8php.html#adca48aee78465ae3064ca4432c0d87b5":[5,0,4,233], "boot_8php.html#add517a0958ac684792c62142a3877f81":[5,0,4,45], "boot_8php.html#adfb2fc7be5a4226c0a8e24131da9d498":[5,0,4,26], -"boot_8php.html#ae37444eaa42705185080ccf3e670cbc2":[5,0,4,233], +"boot_8php.html#ae37444eaa42705185080ccf3e670cbc2":[5,0,4,237], "boot_8php.html#ae381db3d43f8e7c1da8b15d14ecf5312":[5,0,4,17], -"boot_8php.html#ae3cef7b63e25e7bafea3fcf6b99fad0e":[5,0,4,166], -"boot_8php.html#ae4861de36017fe399c1839f778bad9f5":[5,0,4,146], -"boot_8php.html#ae94f7c7c0909629a75aed1c41f10bc95":[5,0,4,174], +"boot_8php.html#ae3cef7b63e25e7bafea3fcf6b99fad0e":[5,0,4,170], +"boot_8php.html#ae4861de36017fe399c1839f778bad9f5":[5,0,4,148], +"boot_8php.html#ae94f7c7c0909629a75aed1c41f10bc95":[5,0,4,178], "boot_8php.html#aea7fc57a4d8e9dcb42f2601b0b9b761c":[5,0,4,29], -"boot_8php.html#aead84fa27d7516b855220fe004964a45":[5,0,4,238], -"boot_8php.html#aec36f8fcd4cb14a52934590b3d6666b4":[5,0,4,205], -"boot_8php.html#aedfb9501ed408278667995524e0d15cf":[5,0,4,104], -"boot_8php.html#aee324eca9de4e0fedf01ab5f92e27c67":[5,0,4,161], -"boot_8php.html#aef4b6c558c68c88c10f13c5a00c20e3d":[5,0,4,175], -"boot_8php.html#aefba06f1c0842036329033e7567ecf6d":[5,0,4,130], +"boot_8php.html#aead84fa27d7516b855220fe004964a45":[5,0,4,242], +"boot_8php.html#aec36f8fcd4cb14a52934590b3d6666b4":[5,0,4,209], +"boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53":[5,0,4,154], +"boot_8php.html#aedfb9501ed408278667995524e0d15cf":[5,0,4,105], +"boot_8php.html#aee324eca9de4e0fedf01ab5f92e27c67":[5,0,4,165], +"boot_8php.html#aef4b6c558c68c88c10f13c5a00c20e3d":[5,0,4,179], +"boot_8php.html#aefba06f1c0842036329033e7567ecf6d":[5,0,4,132], "boot_8php.html#aefecf8599036df7f1b95d6820e0e2fa4":[5,0,4,32], -"boot_8php.html#af33d1b2e98a1e21af672005525d46dfe":[5,0,4,230], -"boot_8php.html#af3905ea8f8568d0236db13fca40514e3":[5,0,4,168], -"boot_8php.html#af3a4271630aabd8be592213f925d6a36":[5,0,4,63], +"boot_8php.html#af33d1b2e98a1e21af672005525d46dfe":[5,0,4,234], +"boot_8php.html#af3905ea8f8568d0236db13fca40514e3":[5,0,4,172], +"boot_8php.html#af3a4271630aabd8be592213f925d6a36":[5,0,4,64], "boot_8php.html#af3bdfc20979c16f15bb9c60446a480f9":[5,0,4,57], -"boot_8php.html#af489d0c3166551b93e63a79ff2c9be35":[5,0,4,134], -"boot_8php.html#af6937db5f581d006bf4a5c3d9c7e0461":[5,0,4,188], -"boot_8php.html#af6f6f6f40139f12fc09ec47373b30919":[5,0,4,93], -"boot_8php.html#af86c651547aa8f9e549ee40a09455549":[5,0,4,228], -"boot_8php.html#af8c0cb0744c9a6b5d6d3baafb1f1e71d":[5,0,4,180], -"boot_8php.html#afaf93b7026f784b113b4f8921745891e":[5,0,4,162], -"boot_8php.html#afb97615e985a013799839b68b99018d7":[5,0,4,231], +"boot_8php.html#af489d0c3166551b93e63a79ff2c9be35":[5,0,4,136], +"boot_8php.html#af6937db5f581d006bf4a5c3d9c7e0461":[5,0,4,192], +"boot_8php.html#af6f6f6f40139f12fc09ec47373b30919":[5,0,4,94], +"boot_8php.html#af86c651547aa8f9e549ee40a09455549":[5,0,4,232], +"boot_8php.html#af8c0cb0744c9a6b5d6d3baafb1f1e71d":[5,0,4,184], +"boot_8php.html#afaf93b7026f784b113b4f8921745891e":[5,0,4,166], +"boot_8php.html#afb97615e985a013799839b68b99018d7":[5,0,4,235], "boot_8php.html#afbb1fe1b2c8c730ec8e08da93b6512c4":[5,0,4,54], -"boot_8php.html#afe084c30a1810c10442edb4fbcbc0086":[5,0,4,85], -"boot_8php.html#afe63ae69ba55299f813766e54df06ede":[5,0,4,138], +"boot_8php.html#afe084c30a1810c10442edb4fbcbc0086":[5,0,4,86], +"boot_8php.html#afe63ae69ba55299f813766e54df06ede":[5,0,4,140], "boot_8php.html#afe88b920aa285982edb817a0dd44eb37":[5,0,4,14], -"boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7":[5,0,4,199], +"boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7":[5,0,4,203], "cache_8php.html":[5,0,0,11], "channel_8php.html":[5,0,1,7], "channel_8php.html#a9c6a6179e0e626398ebecc6151905ef1":[5,0,1,7,1], @@ -244,10 +249,5 @@ var NAVTREEINDEX1 = "classItem.html#a5b2fafdca55aefeaa08993a5a60529f0":[4,0,17,19], "classItem.html#a5b561415861f5b89b0733aacfe0428d1":[4,0,17,36], "classItem.html#a5cfa6cf964f433a917a81cab079ff9d8":[4,0,17,39], -"classItem.html#a5d29ddecc073151a65a8e2ea2f6e4189":[4,0,17,41], -"classItem.html#a632185dd25c5caf277067c76230a4320":[4,0,17,4], -"classItem.html#a67892aa23d19f4431bb2e5f43c74000e":[4,0,17,12], -"classItem.html#a7f7bc059de377319282cb4ef4a828480":[4,0,17,37], -"classItem.html#a80dcd0fb7673776c0967839d429c2a0f":[4,0,17,28], -"classItem.html#a80dcd9d0f548c3ad550abe7e6981fb51":[4,0,17,1] +"classItem.html#a5d29ddecc073151a65a8e2ea2f6e4189":[4,0,17,41] }; diff --git a/doc/html/navtreeindex2.js b/doc/html/navtreeindex2.js index 3a9edfd55..be5a0d8c8 100644 --- a/doc/html/navtreeindex2.js +++ b/doc/html/navtreeindex2.js @@ -1,5 +1,10 @@ var NAVTREEINDEX2 = { +"classItem.html#a632185dd25c5caf277067c76230a4320":[4,0,17,4], +"classItem.html#a67892aa23d19f4431bb2e5f43c74000e":[4,0,17,12], +"classItem.html#a7f7bc059de377319282cb4ef4a828480":[4,0,17,37], +"classItem.html#a80dcd0fb7673776c0967839d429c2a0f":[4,0,17,28], +"classItem.html#a80dcd9d0f548c3ad550abe7e6981fb51":[4,0,17,1], "classItem.html#a904421c7a427411bb2ab473bca872f63":[4,0,17,7], "classItem.html#a90743c8348b13213275c223bb9333aa0":[4,0,17,29], "classItem.html#a9594df6014b0b6f45364ea7a34510130":[4,0,17,32], @@ -244,10 +249,5 @@ var NAVTREEINDEX2 = "dir_032dd9e2cfe278a2cfa5eb9547448eb9.html":[5,0,3,1,0,0], "dir_0eaa4a0adae8ba4811e133c6e594aeee.html":[5,0,2,0], "dir_21bc5169ff11430004758be31dcfc6c4.html":[5,0,0,0], -"dir_23ec12649285f9fabf3a6b7380226c28.html":[5,0,2], -"dir_55dbaf9b7b53c4fc605c9011743a7353.html":[5,0,3,1,0], -"dir_6b44a0e797e2f12381093380e3e54763.html":[5,0,3,1,1,0], -"dir_817f6d302394b98e59575acdb59998bc.html":[5,0,3,0], -"dir_8543001e5d25368a6edede3e63efb554.html":[5,0,3,1], -"dir__fns_8php.html":[5,0,0,24] +"dir_23ec12649285f9fabf3a6b7380226c28.html":[5,0,2] }; diff --git a/doc/html/navtreeindex3.js b/doc/html/navtreeindex3.js index 77b42acb1..c3beaf943 100644 --- a/doc/html/navtreeindex3.js +++ b/doc/html/navtreeindex3.js @@ -1,5 +1,10 @@ var NAVTREEINDEX3 = { +"dir_55dbaf9b7b53c4fc605c9011743a7353.html":[5,0,3,1,0], +"dir_6b44a0e797e2f12381093380e3e54763.html":[5,0,3,1,1,0], +"dir_817f6d302394b98e59575acdb59998bc.html":[5,0,3,0], +"dir_8543001e5d25368a6edede3e63efb554.html":[5,0,3,1], +"dir__fns_8php.html":[5,0,0,24], "dir__fns_8php.html#a6cae22cfdd6edda5ddf09e07abb3242a":[5,0,0,24,2], "dir__fns_8php.html#a8c15aa69da12f2d3476b9e93b82b337d":[5,0,0,24,0], "dir__fns_8php.html#aa666e7df6ca8c332f4081c9b66b4bdf6":[5,0,0,24,1], @@ -167,8 +172,8 @@ var NAVTREEINDEX3 = "globals_func_0x77.html":[5,1,1,23], "globals_func_0x78.html":[5,1,1,24], "globals_func_0x7a.html":[5,1,1,25], -"globals_vars.html":[5,1,2], "globals_vars.html":[5,1,2,0], +"globals_vars.html":[5,1,2], "globals_vars_0x61.html":[5,1,2,1], "globals_vars_0x63.html":[5,1,2,2], "globals_vars_0x64.html":[5,1,2,3], @@ -244,10 +249,5 @@ var NAVTREEINDEX3 = "include_2api_8php.html#a6a04b48168ba1d9dd2de3081a630611f":[5,0,0,5,31], "include_2api_8php.html#a72bfecac1970bc29b853073e816388ff":[5,0,0,5,6], "include_2api_8php.html#a7759ccddc8dff012ad168e511ffe5af5":[5,0,0,5,9], -"include_2api_8php.html#a864191bb876a515ed71b17e260ef35ad":[5,0,0,5,2], -"include_2api_8php.html#a8969e8d9c683f12ba17dcd4b059e020d":[5,0,0,5,46], -"include_2api_8php.html#a8b25a186bd0893f51aa72a62f655735e":[5,0,0,5,39], -"include_2api_8php.html#a9160288b7ac220635942d8dc209b78c3":[5,0,0,5,10], -"include_2api_8php.html#a970b02c06dea8b229aa3d5fff9cf4705":[5,0,0,5,8], -"include_2api_8php.html#aa0d6b29fff0344a8e67f3507a6d01410":[5,0,0,5,34] +"include_2api_8php.html#a864191bb876a515ed71b17e260ef35ad":[5,0,0,5,2] }; diff --git a/doc/html/navtreeindex4.js b/doc/html/navtreeindex4.js index 19e5cefcb..14c133d33 100644 --- a/doc/html/navtreeindex4.js +++ b/doc/html/navtreeindex4.js @@ -1,5 +1,10 @@ var NAVTREEINDEX4 = { +"include_2api_8php.html#a8969e8d9c683f12ba17dcd4b059e020d":[5,0,0,5,46], +"include_2api_8php.html#a8b25a186bd0893f51aa72a62f655735e":[5,0,0,5,39], +"include_2api_8php.html#a9160288b7ac220635942d8dc209b78c3":[5,0,0,5,10], +"include_2api_8php.html#a970b02c06dea8b229aa3d5fff9cf4705":[5,0,0,5,8], +"include_2api_8php.html#aa0d6b29fff0344a8e67f3507a6d01410":[5,0,0,5,34], "include_2api_8php.html#aa1bddb580510e70cc1a7b7381667f1a3":[5,0,0,5,28], "include_2api_8php.html#aa40bae797bcd9ccacffdce5a3b5a1afa":[5,0,0,5,23], "include_2api_8php.html#aa49741342ad8ba285737eea1209a37e1":[5,0,0,5,25], @@ -65,59 +70,71 @@ var NAVTREEINDEX4 = "include_2group_8php.html#ab4d9e5b59f48787cb01baae5dc6c381f":[5,0,0,33,11], "include_2group_8php.html#abd66a5ea34a07a3422dc2dde6c7b3ecb":[5,0,0,33,3], "include_2group_8php.html#afb802ae2ce73aae4bc36d157f7b6a92f":[5,0,0,33,9], -"include_2message_8php.html":[5,0,0,41], -"include_2message_8php.html#a254a756031e4d5e94f85e2939bdb5091":[5,0,0,41,2], -"include_2message_8php.html#a5f8de9847e203329e317ac38dc646898":[5,0,0,41,1], -"include_2message_8php.html#a652973ce47a262f2d238c2fd6233d97e":[5,0,0,41,3], -"include_2message_8php.html#ac382fdcdf990dcfa8f6528ab8fd280bd":[5,0,0,41,4], -"include_2message_8php.html#aed272d77c06a309e2836ac79e75613f1":[5,0,0,41,0], -"include_2network_8php.html":[5,0,0,43], -"include_2network_8php.html#a0bdc4b0bfc54797c249dc4eca25aeda4":[5,0,0,43,0], -"include_2network_8php.html#a1ff07d9fad93b713b93da0ab77aab7f0":[5,0,0,43,6], -"include_2network_8php.html#a2729d012410e470c527a62a3f777ded8":[5,0,0,43,10], -"include_2network_8php.html#a27a951b59d8d622c0b3e7b0673ba74c6":[5,0,0,43,15], -"include_2network_8php.html#a37ddeb88a3fd1dee9e8339723f9edf9a":[5,0,0,43,8], -"include_2network_8php.html#a4c5d50079e089168d9248427018fffd4":[5,0,0,43,13], -"include_2network_8php.html#a4cfb2c05a1c295317283d762440ce0b2":[5,0,0,43,12], -"include_2network_8php.html#a540420ff3675a72cb781ef9a7e8c2cd9":[5,0,0,43,5], -"include_2network_8php.html#a5caa264fab6d2b2344e6bd5b298b08f2":[5,0,0,43,19], -"include_2network_8php.html#a78e89557b2fbd344ad790846d761b0c7":[5,0,0,43,11], -"include_2network_8php.html#a8122356933bcd6b0a8567e8e15ae5cc5":[5,0,0,43,20], -"include_2network_8php.html#a850ed5307c6a18076f4b80addc99602d":[5,0,0,43,9], -"include_2network_8php.html#a897e7112d86eb95526cbd0bff9375f02":[5,0,0,43,18], -"include_2network_8php.html#a8d5a3afb51cc932032b5dcc159efaae0":[5,0,0,43,7], -"include_2network_8php.html#a9129fd55e7fc175b4ea9a195cccc16bc":[5,0,0,43,25], -"include_2network_8php.html#a99353baabbc3e0584b85eb79ee802cff":[5,0,0,43,22], -"include_2network_8php.html#a9e9da2aafb806c98ecdc318604e60dc6":[5,0,0,43,23], -"include_2network_8php.html#aa44d9e33a579d930e9e79c4ebb3d6b5e":[5,0,0,43,16], -"include_2network_8php.html#aafd06c0a75402aefb06cfb9f9740fa37":[5,0,0,43,24], -"include_2network_8php.html#ab07ce9d75eae559865ed90aad2154bd7":[5,0,0,43,3], -"include_2network_8php.html#aba38458a2ff2d92d3536488dbb119694":[5,0,0,43,1], -"include_2network_8php.html#ad4056d3ce69988f5c1a997a79f503246":[5,0,0,43,4], -"include_2network_8php.html#adbc7fe45cc7fd9cd78f6b2f425ee9041":[5,0,0,43,14], -"include_2network_8php.html#adf6008b38c555e98e7ed10da9ede2335":[5,0,0,43,21], -"include_2network_8php.html#ae8d9c41a11000fb8667039fc71b4f73f":[5,0,0,43,17], -"include_2network_8php.html#aee35d9ad6b3f872bfb39ba3598936aa7":[5,0,0,43,2], -"include_2notify_8php.html":[5,0,0,45], -"include_2notify_8php.html#a0e61728e487df50c72e6434f911a57d3":[5,0,0,45,0], -"include_2oembed_8php.html":[5,0,0,47], -"include_2oembed_8php.html#a000a62b97113cf95b0e9e00412168172":[5,0,0,47,5], -"include_2oembed_8php.html#a00c4c80deffd9daf8dc97b58d4c64ed0":[5,0,0,47,7], -"include_2oembed_8php.html#a03fa3b7832c98a3d0b4630afeb73d487":[5,0,0,47,1], -"include_2oembed_8php.html#a26bb4c1e330d2f94ea7b6ce2fe970cf3":[5,0,0,47,4], -"include_2oembed_8php.html#a98549b9af8140eda3eceaeedcaabc2c2":[5,0,0,47,3], -"include_2oembed_8php.html#a9e57f3e36a0a0a47e6db79544b701d9a":[5,0,0,47,6], -"include_2oembed_8php.html#ab953a6e7c11bc6498ce01ed73e2ba319":[5,0,0,47,0], -"include_2oembed_8php.html#aba89ae64b355efcb4f706553d3edb6a2":[5,0,0,47,2], -"include_2photos_8php.html":[5,0,0,50], -"include_2photos_8php.html#a6c40ef58aefef705a5adc84a40e97109":[5,0,0,50,0], -"include_2photos_8php.html#a7e7abc69872180697c5471dc69349afe":[5,0,0,50,2], -"include_2photos_8php.html#a8e8b7be99e24c2497bc2cb3339280c35":[5,0,0,50,1], -"include_2photos_8php.html#aa27b9e435dcc34e1009f56dc02c7ca51":[5,0,0,50,7], -"include_2photos_8php.html#ab0365f25b22ccea5f085fe7c49e1f4ab":[5,0,0,50,3], -"include_2photos_8php.html#ad648c0c5544fe9263409b6f6e57c6274":[5,0,0,50,6], -"include_2photos_8php.html#aedccaf18282b26899d9549c29bd9d1b9":[5,0,0,50,5], -"include_2photos_8php.html#af24c6aeed28ecc31ec39e7d9a1804979":[5,0,0,50,4], +"include_2menu_8php.html":[5,0,0,41], +"include_2menu_8php.html#a08a800821721781a8dfffbe31481ff98":[5,0,0,41,1], +"include_2menu_8php.html#a3884bda4d85d84ec99447db9403a68d8":[5,0,0,41,3], +"include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7":[5,0,0,41,8], +"include_2menu_8php.html#a68ebbf492470c930f652013656f9071d":[5,0,0,41,7], +"include_2menu_8php.html#a6a33c6a3db2a7510b16cc656edaec571":[5,0,0,41,5], +"include_2menu_8php.html#a890cc6237971e15f15702e6b2e88502e":[5,0,0,41,10], +"include_2menu_8php.html#a9aa8e0052dd47c1a93f53a983bd4620a":[5,0,0,41,2], +"include_2menu_8php.html#acb66f80ca895a6ccd562b3d9ae7b41aa":[5,0,0,41,6], +"include_2menu_8php.html#acef15a498d52666b1c7e5c12765c689b":[5,0,0,41,9], +"include_2menu_8php.html#ad87f51ce85172bcc3f931aa0cd96a804":[5,0,0,41,4], +"include_2menu_8php.html#add35fae5e9695031b3d46e30ac409eb8":[5,0,0,41,0], +"include_2message_8php.html":[5,0,0,42], +"include_2message_8php.html#a254a756031e4d5e94f85e2939bdb5091":[5,0,0,42,2], +"include_2message_8php.html#a5f8de9847e203329e317ac38dc646898":[5,0,0,42,1], +"include_2message_8php.html#a652973ce47a262f2d238c2fd6233d97e":[5,0,0,42,3], +"include_2message_8php.html#ac382fdcdf990dcfa8f6528ab8fd280bd":[5,0,0,42,4], +"include_2message_8php.html#aed272d77c06a309e2836ac79e75613f1":[5,0,0,42,0], +"include_2network_8php.html":[5,0,0,44], +"include_2network_8php.html#a0bdc4b0bfc54797c249dc4eca25aeda4":[5,0,0,44,0], +"include_2network_8php.html#a1ff07d9fad93b713b93da0ab77aab7f0":[5,0,0,44,6], +"include_2network_8php.html#a2729d012410e470c527a62a3f777ded8":[5,0,0,44,10], +"include_2network_8php.html#a27a951b59d8d622c0b3e7b0673ba74c6":[5,0,0,44,15], +"include_2network_8php.html#a37ddeb88a3fd1dee9e8339723f9edf9a":[5,0,0,44,8], +"include_2network_8php.html#a4c5d50079e089168d9248427018fffd4":[5,0,0,44,13], +"include_2network_8php.html#a4cfb2c05a1c295317283d762440ce0b2":[5,0,0,44,12], +"include_2network_8php.html#a540420ff3675a72cb781ef9a7e8c2cd9":[5,0,0,44,5], +"include_2network_8php.html#a5caa264fab6d2b2344e6bd5b298b08f2":[5,0,0,44,19], +"include_2network_8php.html#a78e89557b2fbd344ad790846d761b0c7":[5,0,0,44,11], +"include_2network_8php.html#a8122356933bcd6b0a8567e8e15ae5cc5":[5,0,0,44,20], +"include_2network_8php.html#a850ed5307c6a18076f4b80addc99602d":[5,0,0,44,9], +"include_2network_8php.html#a897e7112d86eb95526cbd0bff9375f02":[5,0,0,44,18], +"include_2network_8php.html#a8d5a3afb51cc932032b5dcc159efaae0":[5,0,0,44,7], +"include_2network_8php.html#a9129fd55e7fc175b4ea9a195cccc16bc":[5,0,0,44,25], +"include_2network_8php.html#a99353baabbc3e0584b85eb79ee802cff":[5,0,0,44,22], +"include_2network_8php.html#a9e9da2aafb806c98ecdc318604e60dc6":[5,0,0,44,23], +"include_2network_8php.html#aa44d9e33a579d930e9e79c4ebb3d6b5e":[5,0,0,44,16], +"include_2network_8php.html#aafd06c0a75402aefb06cfb9f9740fa37":[5,0,0,44,24], +"include_2network_8php.html#ab07ce9d75eae559865ed90aad2154bd7":[5,0,0,44,3], +"include_2network_8php.html#aba38458a2ff2d92d3536488dbb119694":[5,0,0,44,1], +"include_2network_8php.html#ad4056d3ce69988f5c1a997a79f503246":[5,0,0,44,4], +"include_2network_8php.html#adbc7fe45cc7fd9cd78f6b2f425ee9041":[5,0,0,44,14], +"include_2network_8php.html#adf6008b38c555e98e7ed10da9ede2335":[5,0,0,44,21], +"include_2network_8php.html#ae8d9c41a11000fb8667039fc71b4f73f":[5,0,0,44,17], +"include_2network_8php.html#aee35d9ad6b3f872bfb39ba3598936aa7":[5,0,0,44,2], +"include_2notify_8php.html":[5,0,0,46], +"include_2notify_8php.html#a0e61728e487df50c72e6434f911a57d3":[5,0,0,46,0], +"include_2oembed_8php.html":[5,0,0,48], +"include_2oembed_8php.html#a000a62b97113cf95b0e9e00412168172":[5,0,0,48,5], +"include_2oembed_8php.html#a00c4c80deffd9daf8dc97b58d4c64ed0":[5,0,0,48,7], +"include_2oembed_8php.html#a03fa3b7832c98a3d0b4630afeb73d487":[5,0,0,48,1], +"include_2oembed_8php.html#a26bb4c1e330d2f94ea7b6ce2fe970cf3":[5,0,0,48,4], +"include_2oembed_8php.html#a98549b9af8140eda3eceaeedcaabc2c2":[5,0,0,48,3], +"include_2oembed_8php.html#a9e57f3e36a0a0a47e6db79544b701d9a":[5,0,0,48,6], +"include_2oembed_8php.html#ab953a6e7c11bc6498ce01ed73e2ba319":[5,0,0,48,0], +"include_2oembed_8php.html#aba89ae64b355efcb4f706553d3edb6a2":[5,0,0,48,2], +"include_2photos_8php.html":[5,0,0,52], +"include_2photos_8php.html#a6c40ef58aefef705a5adc84a40e97109":[5,0,0,52,0], +"include_2photos_8php.html#a7e7abc69872180697c5471dc69349afe":[5,0,0,52,2], +"include_2photos_8php.html#a8e8b7be99e24c2497bc2cb3339280c35":[5,0,0,52,1], +"include_2photos_8php.html#aa27b9e435dcc34e1009f56dc02c7ca51":[5,0,0,52,7], +"include_2photos_8php.html#ab0365f25b22ccea5f085fe7c49e1f4ab":[5,0,0,52,3], +"include_2photos_8php.html#ad648c0c5544fe9263409b6f6e57c6274":[5,0,0,52,6], +"include_2photos_8php.html#aedccaf18282b26899d9549c29bd9d1b9":[5,0,0,52,5], +"include_2photos_8php.html#af24c6aeed28ecc31ec39e7d9a1804979":[5,0,0,52,4], "index.html":[], "interfaceITemplateEngine.html":[4,0,18], "interfaceITemplateEngine.html#aaa7381c8becc3d1c1790b53988a0f243":[4,0,18,1], @@ -146,10 +163,10 @@ var NAVTREEINDEX4 = "items_8php.html#a0cf98bb619f07dd18f602683a55a5f59":[5,0,0,39,24], "items_8php.html#a1e75047cf175aaee8dd16aa761913ff9":[5,0,0,39,4], "items_8php.html#a251343637ff40a50cca93452cd530c26":[5,0,0,39,31], +"items_8php.html#a2541e6861a56d145c9281877cc501615":[5,0,0,39,38], "items_8php.html#a275108c050f7eb18bcbb5018e6b81cf6":[5,0,0,39,3], "items_8php.html#a2b56a4c01bd22a648d52ec9af1a04259":[5,0,0,39,12], "items_8php.html#a2d840c74ed23d1b6c7daee05cf89dda7":[5,0,0,39,20], -"items_8php.html#a2dc4fb9347f6fb804da4f32c107afb53":[5,0,0,39,39], "items_8php.html#a36e656667193c83aa2cc03a024fc131b":[5,0,0,39,0], "items_8php.html#a410f9c743877c125ca06312373346903":[5,0,0,39,44], "items_8php.html#a4e6d7639431e0dd8e9f4dba8e1ac408b":[5,0,0,39,47], @@ -168,7 +185,6 @@ var NAVTREEINDEX4 = "items_8php.html#a8794863cdf8ce1333040933d3a3f66bd":[5,0,0,39,10], "items_8php.html#a88c6cf7649ac836fbbed82a7a0315110":[5,0,0,39,51], "items_8php.html#a896c1809d58f2d7a42cfe14577958ddf":[5,0,0,39,26], -"items_8php.html#a8ef003b2bc2dc4816bdcf5800aec1049":[5,0,0,39,38], "items_8php.html#a8f3c85c584ccd2b98c3ca440e45b40f8":[5,0,0,39,9], "items_8php.html#a94ddb1d6c8fa21dd7433677e85168037":[5,0,0,39,30], "items_8php.html#aa371905f0a211b307cb3f7188c6cba04":[5,0,0,39,52], @@ -183,6 +199,7 @@ var NAVTREEINDEX4 = "items_8php.html#abf7a1b73eb352d79acd36309b0dababd":[5,0,0,39,1], "items_8php.html#ac1fcf621dce7370515b420a7753f4726":[5,0,0,39,43], "items_8php.html#ac6673627d289ee4f547de0fe3b7acd0a":[5,0,0,39,18], +"items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484":[5,0,0,39,39], "items_8php.html#ad2abb4644ff1f20fefbc80326fe01cf0":[5,0,0,39,46], "items_8php.html#ad34827ed330898456783fb14c7b46154":[5,0,0,39,50], "items_8php.html#adf980098b6de9c3993bc3ff26a8dd6f9":[5,0,0,39,23], @@ -223,31 +240,14 @@ var NAVTREEINDEX4 = "md_config.html":[0], "md_fresh.html":[1], "minimal_8php.html":[5,0,3,0,2], +"mitem_8php.html":[5,0,1,47], +"mitem_8php.html#a6ee694cca4b551a20d7c7a94b5243ec1":[5,0,1,47,2], +"mitem_8php.html#a7a31b702ecad18eeb6a38b243ff0037e":[5,0,1,47,0], +"mitem_8php.html#a9627cd857cafdf04e4fc0ae48c8e8518":[5,0,1,47,1], "mod_2api_8php.html":[5,0,1,4], "mod_2api_8php.html#a02ae0f60e240dc806b860edb7d582117":[5,0,1,4,2], "mod_2api_8php.html#a33315b5bbf5418f6850b2038107b526d":[5,0,1,4,0], "mod_2api_8php.html#a6fe77f05c07cb51048df0d557b4b9bd2":[5,0,1,4,1], "mod_2attach_8php.html":[5,0,1,6], -"mod_2attach_8php.html#aa88eb5ad87aa1036a30e70339cc6c1b1":[5,0,1,6,0], -"mod_2directory_8php.html":[5,0,1,15], -"mod_2directory_8php.html#a5ee59c213508b6b9787612a8219cb5bf":[5,0,1,15,2], -"mod_2directory_8php.html#aa1d928543212871491706216742dd73c":[5,0,1,15,0], -"mod_2directory_8php.html#aac79396570d759da2efac24fcedf5b44":[5,0,1,15,1], -"mod_2follow_8php.html":[5,0,1,26], -"mod_2follow_8php.html#a171f5b19f50d7738adc3b2e96ec6018a":[5,0,1,26,1], -"mod_2follow_8php.html#a4c540ea4e9f5c581c1a53516ac585592":[5,0,1,26,0], -"mod_2group_8php.html":[5,0,1,28], -"mod_2group_8php.html#a07a64f6c65b0080d8190b3d9728a7a83":[5,0,1,28,1], -"mod_2group_8php.html#aeb0784dd928e53e6d8693513bec8928c":[5,0,1,28,0], -"mod_2group_8php.html#aed1f009b1221348021bb34761160ef35":[5,0,1,28,2], -"mod_2message_8php.html":[5,0,1,45], -"mod_2message_8php.html#a0db7030362a7e9ed9549b341d7b35718":[5,0,1,45,2], -"mod_2message_8php.html#a3547ed86d09a4bb8fa64ec374a40ee79":[5,0,1,45,1], -"mod_2message_8php.html#af4ba72486117cc24335fd8e92a2112a7":[5,0,1,45,0], -"mod_2network_8php.html":[5,0,1,48], -"mod_2network_8php.html#a180fce90ad11d7e0e45be094da7149ec":[5,0,1,48,1], -"mod_2network_8php.html#a36e03af6f2efe62ecaa247509365bfad":[5,0,1,48,3], -"mod_2network_8php.html#a43f2f29b90c5e29072c561934bc8f8b4":[5,0,1,48,0], -"mod_2network_8php.html#aeaa518c1a317516a3da337b88d358666":[5,0,1,48,2], -"mod_2notify_8php.html":[5,0,1,52] +"mod_2attach_8php.html#aa88eb5ad87aa1036a30e70339cc6c1b1":[5,0,1,6,0] }; diff --git a/doc/html/navtreeindex5.js b/doc/html/navtreeindex5.js index 50f068d5b..4528e698d 100644 --- a/doc/html/navtreeindex5.js +++ b/doc/html/navtreeindex5.js @@ -1,28 +1,52 @@ var NAVTREEINDEX5 = { -"mod_2notify_8php.html#a94f9a6a9d4b5fd704baafff0c34f41ae":[5,0,1,52,1], -"mod_2notify_8php.html#acdf3851688ebd6d6a575eb84ef9febe3":[5,0,1,52,0], -"mod_2oembed_8php.html":[5,0,1,53], -"mod_2oembed_8php.html#a9145025aaf057fb5d3f9f7011e5e1014":[5,0,1,53,0], -"mod_2photos_8php.html":[5,0,1,59], -"mod_2photos_8php.html#a062bed4d04d14fee8a53f4c9be673080":[5,0,1,59,2], -"mod_2photos_8php.html#aa87382611a66ec5effdb2d78f13f5812":[5,0,1,59,0], -"mod_2photos_8php.html#ab950295cd77626f5fe65331a87693014":[5,0,1,59,1], +"mod_2directory_8php.html":[5,0,1,15], +"mod_2directory_8php.html#a5ee59c213508b6b9787612a8219cb5bf":[5,0,1,15,2], +"mod_2directory_8php.html#aa1d928543212871491706216742dd73c":[5,0,1,15,0], +"mod_2directory_8php.html#aac79396570d759da2efac24fcedf5b44":[5,0,1,15,1], +"mod_2follow_8php.html":[5,0,1,26], +"mod_2follow_8php.html#a171f5b19f50d7738adc3b2e96ec6018a":[5,0,1,26,1], +"mod_2follow_8php.html#a4c540ea4e9f5c581c1a53516ac585592":[5,0,1,26,0], +"mod_2group_8php.html":[5,0,1,28], +"mod_2group_8php.html#a07a64f6c65b0080d8190b3d9728a7a83":[5,0,1,28,1], +"mod_2group_8php.html#aeb0784dd928e53e6d8693513bec8928c":[5,0,1,28,0], +"mod_2group_8php.html#aed1f009b1221348021bb34761160ef35":[5,0,1,28,2], +"mod_2menu_8php.html":[5,0,1,45], +"mod_2menu_8php.html#a6fed23af14d71a78a4153c8363a685cf":[5,0,1,45,0], +"mod_2menu_8php.html#aaa491ef173868fe002aece4632bcf393":[5,0,1,45,1], +"mod_2message_8php.html":[5,0,1,46], +"mod_2message_8php.html#a0db7030362a7e9ed9549b341d7b35718":[5,0,1,46,2], +"mod_2message_8php.html#a3547ed86d09a4bb8fa64ec374a40ee79":[5,0,1,46,1], +"mod_2message_8php.html#af4ba72486117cc24335fd8e92a2112a7":[5,0,1,46,0], +"mod_2network_8php.html":[5,0,1,50], +"mod_2network_8php.html#a180fce90ad11d7e0e45be094da7149ec":[5,0,1,50,1], +"mod_2network_8php.html#a36e03af6f2efe62ecaa247509365bfad":[5,0,1,50,3], +"mod_2network_8php.html#a43f2f29b90c5e29072c561934bc8f8b4":[5,0,1,50,0], +"mod_2network_8php.html#aeaa518c1a317516a3da337b88d358666":[5,0,1,50,2], +"mod_2notify_8php.html":[5,0,1,54], +"mod_2notify_8php.html#a94f9a6a9d4b5fd704baafff0c34f41ae":[5,0,1,54,1], +"mod_2notify_8php.html#acdf3851688ebd6d6a575eb84ef9febe3":[5,0,1,54,0], +"mod_2oembed_8php.html":[5,0,1,55], +"mod_2oembed_8php.html#a9145025aaf057fb5d3f9f7011e5e1014":[5,0,1,55,0], +"mod_2photos_8php.html":[5,0,1,61], +"mod_2photos_8php.html#a062bed4d04d14fee8a53f4c9be673080":[5,0,1,61,2], +"mod_2photos_8php.html#aa87382611a66ec5effdb2d78f13f5812":[5,0,1,61,0], +"mod_2photos_8php.html#ab950295cd77626f5fe65331a87693014":[5,0,1,61,1], "mod__import_8php.html":[5,0,3,0,3], "mod__import_8php.html#a8db1899eeeb44dabd0904065b63627bb":[5,0,3,0,3,0], "mod__new__channel_8php.html":[5,0,3,0,4], "mod__new__channel_8php.html#a8db1899eeeb44dabd0904065b63627bb":[5,0,3,0,4,0], "mod__register_8php.html":[5,0,3,0,5], "mod__register_8php.html#a8db1899eeeb44dabd0904065b63627bb":[5,0,3,0,5,0], -"mood_8php.html":[5,0,1,46], -"mood_8php.html#a721b9b6703b3234a005641c92d409b8f":[5,0,1,46,0], -"mood_8php.html#a7ae136dd7476865b4828136175db5022":[5,0,1,46,1], -"msearch_8php.html":[5,0,1,47], -"msearch_8php.html#ac80d2a6c0a92e79eec7efbbccd74d9a8":[5,0,1,47,0], -"namespaceFriendica.html":[4,0,1], +"mood_8php.html":[5,0,1,48], +"mood_8php.html#a721b9b6703b3234a005641c92d409b8f":[5,0,1,48,0], +"mood_8php.html#a7ae136dd7476865b4828136175db5022":[5,0,1,48,1], +"msearch_8php.html":[5,0,1,49], +"msearch_8php.html#ac80d2a6c0a92e79eec7efbbccd74d9a8":[5,0,1,49,0], "namespaceFriendica.html":[3,0,1], -"namespaceacl__selectors.html":[3,0,0], +"namespaceFriendica.html":[4,0,1], "namespaceacl__selectors.html":[4,0,0], +"namespaceacl__selectors.html":[3,0,0], "namespacefriendica-to-smarty-tpl.html":[4,0,2], "namespacefriendica-to-smarty-tpl.html":[3,0,2], "namespacemembers.html":[3,1,0], @@ -33,47 +57,50 @@ var NAVTREEINDEX5 = "namespaceupdatetpl.html":[3,0,3], "namespaceutil.html":[4,0,4], "namespaceutil.html":[3,0,4], -"nav_8php.html":[5,0,0,42], -"nav_8php.html#a43be0df73b90647ea70947ce004e231e":[5,0,0,42,0], -"nav_8php.html#ac3c920ce3ea5b0d9e0678ee37155f06a":[5,0,0,42,1], -"new__channel_8php.html":[5,0,1,49], -"new__channel_8php.html#a180b0646957db8290482f02454ad7f23":[5,0,1,49,2], -"new__channel_8php.html#a1ad7f99e4366a32942c6b954aba3a164":[5,0,1,49,1], -"new__channel_8php.html#ae585191610f79da129492482ce8e2fee":[5,0,1,49,0], -"nogroup_8php.html":[5,0,1,50], -"nogroup_8php.html#a099cb353bf62e8453069ce107b763212":[5,0,1,50,1], -"nogroup_8php.html#a52085b183f97c552f1db5c4926e8ec30":[5,0,1,50,0], -"notifications_8php.html":[5,0,1,51], -"notifications_8php.html#a5baffec7b2e625c9f9cefbc097550d33":[5,0,1,51,1], -"notifications_8php.html#aadd0b5525bd8c283a5d8a37982bbfe62":[5,0,1,51,0], -"notifier_8php.html":[5,0,0,44], -"notifier_8php.html#a568c502f626cff95e344c0748938b85d":[5,0,0,44,0], -"oauth_8php.html":[5,0,0,46], -"oauth_8php.html#a7a32a5990f113ac9465b03b29175cf16":[5,0,0,46,3], -"oauth_8php.html#ad343cab37aa860d2d14dc86b7f5ca0c6":[5,0,0,46,2], -"oexchange_8php.html":[5,0,1,54], -"oexchange_8php.html#a2d8b785cd7d041a4e6274f5af370cf26":[5,0,1,54,0], -"oexchange_8php.html#ac8e2e469ddc3db984b0c1b44558aca59":[5,0,1,54,1], -"onepoll_8php.html":[5,0,0,48], -"onepoll_8php.html#a72753b2fdec79b37c7f432035c91fb6d":[5,0,0,48,0], -"opensearch_8php.html":[5,0,1,55], -"opensearch_8php.html#ad13034877a496565ac7d99e9fc6f55e9":[5,0,1,55,0], -"page_8php.html":[5,0,1,56], -"page_8php.html#a4d89800c0366a239191b1692c09635cf":[5,0,1,56,1], -"page_8php.html#a91a5f649f68406149108bded1dc90b22":[5,0,1,56,0], +"nav_8php.html":[5,0,0,43], +"nav_8php.html#a43be0df73b90647ea70947ce004e231e":[5,0,0,43,0], +"nav_8php.html#ac3c920ce3ea5b0d9e0678ee37155f06a":[5,0,0,43,1], +"new__channel_8php.html":[5,0,1,51], +"new__channel_8php.html#a180b0646957db8290482f02454ad7f23":[5,0,1,51,2], +"new__channel_8php.html#a1ad7f99e4366a32942c6b954aba3a164":[5,0,1,51,1], +"new__channel_8php.html#ae585191610f79da129492482ce8e2fee":[5,0,1,51,0], +"nogroup_8php.html":[5,0,1,52], +"nogroup_8php.html#a099cb353bf62e8453069ce107b763212":[5,0,1,52,1], +"nogroup_8php.html#a52085b183f97c552f1db5c4926e8ec30":[5,0,1,52,0], +"notifications_8php.html":[5,0,1,53], +"notifications_8php.html#a5baffec7b2e625c9f9cefbc097550d33":[5,0,1,53,1], +"notifications_8php.html#aadd0b5525bd8c283a5d8a37982bbfe62":[5,0,1,53,0], +"notifier_8php.html":[5,0,0,45], +"notifier_8php.html#a568c502f626cff95e344c0748938b85d":[5,0,0,45,0], +"oauth_8php.html":[5,0,0,47], +"oauth_8php.html#a7a32a5990f113ac9465b03b29175cf16":[5,0,0,47,3], +"oauth_8php.html#ad343cab37aa860d2d14dc86b7f5ca0c6":[5,0,0,47,2], +"oexchange_8php.html":[5,0,1,56], +"oexchange_8php.html#a2d8b785cd7d041a4e6274f5af370cf26":[5,0,1,56,0], +"oexchange_8php.html#ac8e2e469ddc3db984b0c1b44558aca59":[5,0,1,56,1], +"onepoll_8php.html":[5,0,0,49], +"onepoll_8php.html#a72753b2fdec79b37c7f432035c91fb6d":[5,0,0,49,0], +"opensearch_8php.html":[5,0,1,57], +"opensearch_8php.html#ad13034877a496565ac7d99e9fc6f55e9":[5,0,1,57,0], +"page_8php.html":[5,0,1,58], +"page_8php.html#a4d89800c0366a239191b1692c09635cf":[5,0,1,58,1], +"page_8php.html#a91a5f649f68406149108bded1dc90b22":[5,0,1,58,0], +"page__widgets_8php.html":[5,0,0,50], +"page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f":[5,0,0,50,1], +"page__widgets_8php.html#ad82011c1ed90d9de8b9f34c12af5c6f0":[5,0,0,50,0], "pages.html":[], -"parse__url_8php.html":[5,0,1,57], -"parse__url_8php.html#a05a9e8944380ba3cf6bbf5893dd4b74b":[5,0,1,57,2], -"parse__url_8php.html#a25635549f2c22955d72465f4d2e58993":[5,0,1,57,3], -"parse__url_8php.html#a496f4e3836154f6f32b8e805a7160d3a":[5,0,1,57,1], -"parse__url_8php.html#aa7dd8f961bea042d62726ed909e4a868":[5,0,1,57,0], -"permissions_8php.html":[5,0,0,49], -"permissions_8php.html#a040fd3d3b8517658b1668ae0cd093972":[5,0,0,49,2], -"permissions_8php.html#a0f5bd9f7f4c8fb7ba4b2c1ed048b4dc7":[5,0,0,49,0], -"permissions_8php.html#a67ada9ed51e77885b6b0f6a28cee1835":[5,0,0,49,3], -"permissions_8php.html#aeca9b280f3dc3358c89976d81d690008":[5,0,0,49,1], -"photo_8php.html":[5,0,1,58], -"photo_8php.html#a582779d24882b0d31ee909a91d70a448":[5,0,1,58,0], +"parse__url_8php.html":[5,0,1,59], +"parse__url_8php.html#a05a9e8944380ba3cf6bbf5893dd4b74b":[5,0,1,59,2], +"parse__url_8php.html#a25635549f2c22955d72465f4d2e58993":[5,0,1,59,3], +"parse__url_8php.html#a496f4e3836154f6f32b8e805a7160d3a":[5,0,1,59,1], +"parse__url_8php.html#aa7dd8f961bea042d62726ed909e4a868":[5,0,1,59,0], +"permissions_8php.html":[5,0,0,51], +"permissions_8php.html#a040fd3d3b8517658b1668ae0cd093972":[5,0,0,51,2], +"permissions_8php.html#a0f5bd9f7f4c8fb7ba4b2c1ed048b4dc7":[5,0,0,51,0], +"permissions_8php.html#a67ada9ed51e77885b6b0f6a28cee1835":[5,0,0,51,3], +"permissions_8php.html#aeca9b280f3dc3358c89976d81d690008":[5,0,0,51,1], +"photo_8php.html":[5,0,1,60], +"photo_8php.html#a582779d24882b0d31ee909a91d70a448":[5,0,1,60,0], "photo__driver_8php.html":[5,0,0,1,0], "photo__driver_8php.html#a102f3f26f67e0e38f4322a771951c1ca":[5,0,0,1,0,3], "photo__driver_8php.html#a1d0bc7161dec0d177b7d3bbe4421af9a":[5,0,0,1,0,2], @@ -93,85 +120,85 @@ var NAVTREEINDEX5 = "php_2default_8php.html":[5,0,3,0,0], "php_2default_8php.html#a23bc1996b18e69c1a3ab44536613a762":[5,0,3,0,0,0], "php_2theme__init_8php.html":[5,0,3,0,6], -"php_8php.html":[5,0,1,60], -"php_8php.html#adb7164dfed9a4ecbe2e168e1e78f12f6":[5,0,1,60,0], -"ping_8php.html":[5,0,1,61], -"ping_8php.html#a77217b1b190b4c5d8770867b45f0c0a1":[5,0,1,61,0], -"plugin_8php.html":[5,0,0,51], -"plugin_8php.html#a030cec6793b909c439c0336ba39b1571":[5,0,0,51,17], -"plugin_8php.html#a093a9cb98f51e3643634bd8bc6ed6e76":[5,0,0,51,20], -"plugin_8php.html#a23c4fccf1eb5fcd63b24783ba1f05f7a":[5,0,0,51,8], -"plugin_8php.html#a326365e48ef94f0b9a0a771b8d75e813":[5,0,0,51,13], -"plugin_8php.html#a425472c5f3afc137268b2ad45652b209":[5,0,0,51,15], -"plugin_8php.html#a48047edfbef770125a5508dcc2f9282f":[5,0,0,51,7], -"plugin_8php.html#a482131013272a1d5d5c1b1469c6c55d5":[5,0,0,51,12], -"plugin_8php.html#a4fc13e528367f510fcb6d8bbfc559040":[5,0,0,51,24], -"plugin_8php.html#a516591850f4fd49fd1425cfa54089db8":[5,0,0,51,9], -"plugin_8php.html#a56f71fe5adf9586ce950523d8180443e":[5,0,0,51,22], -"plugin_8php.html#a65ab52cb1a7030d5190e247211bef2a1":[5,0,0,51,11], -"plugin_8php.html#a65fedcffbe03562ef844cabee37d34e2":[5,0,0,51,19], -"plugin_8php.html#a754d7f53b3abc557b753c057dc4e021d":[5,0,0,51,23], -"plugin_8php.html#a75f7dfed291fd7add7fc85b5c022a1f4":[5,0,0,51,4], -"plugin_8php.html#a7f05de16c0a32602853b09b99dd85e7c":[5,0,0,51,0], -"plugin_8php.html#a901657dd078e070516cf97285e0bada7":[5,0,0,51,25], -"plugin_8php.html#a9039e15aae27676af7777dcbee5a11d6":[5,0,0,51,1], -"plugin_8php.html#a90538627db68605aeb6db17a8ead6523":[5,0,0,51,21], -"plugin_8php.html#a905b54e10704b283ac64680a8abc0971":[5,0,0,51,18], -"plugin_8php.html#a9ca9632b7309a65b05c03a3e2f473a3d":[5,0,0,51,14], -"plugin_8php.html#acb63c27d07f6d7dffe95f98a6cef1295":[5,0,0,51,3], -"plugin_8php.html#ad48de9c0fb7f19413a2aa49250d00405":[5,0,0,51,6], -"plugin_8php.html#ad9ff8ba554576383c5911a4bce068c1f":[5,0,0,51,2], -"plugin_8php.html#af92789f559b89a380e49d303218aeeca":[5,0,0,51,10], -"plugin_8php.html#af9ac19004dca49adae1ac7a0d9f3b025":[5,0,0,51,16], -"plugin_8php.html#aff0178bd8d0b34a94d5efddc883edd35":[5,0,0,51,5], +"php_8php.html":[5,0,1,62], +"php_8php.html#adb7164dfed9a4ecbe2e168e1e78f12f6":[5,0,1,62,0], +"ping_8php.html":[5,0,1,63], +"ping_8php.html#a77217b1b190b4c5d8770867b45f0c0a1":[5,0,1,63,0], +"plugin_8php.html":[5,0,0,53], +"plugin_8php.html#a030cec6793b909c439c0336ba39b1571":[5,0,0,53,17], +"plugin_8php.html#a093a9cb98f51e3643634bd8bc6ed6e76":[5,0,0,53,20], +"plugin_8php.html#a23c4fccf1eb5fcd63b24783ba1f05f7a":[5,0,0,53,8], +"plugin_8php.html#a326365e48ef94f0b9a0a771b8d75e813":[5,0,0,53,13], +"plugin_8php.html#a425472c5f3afc137268b2ad45652b209":[5,0,0,53,15], +"plugin_8php.html#a48047edfbef770125a5508dcc2f9282f":[5,0,0,53,7], +"plugin_8php.html#a482131013272a1d5d5c1b1469c6c55d5":[5,0,0,53,12], +"plugin_8php.html#a4fc13e528367f510fcb6d8bbfc559040":[5,0,0,53,24], +"plugin_8php.html#a516591850f4fd49fd1425cfa54089db8":[5,0,0,53,9], +"plugin_8php.html#a56f71fe5adf9586ce950523d8180443e":[5,0,0,53,22], +"plugin_8php.html#a65ab52cb1a7030d5190e247211bef2a1":[5,0,0,53,11], +"plugin_8php.html#a65fedcffbe03562ef844cabee37d34e2":[5,0,0,53,19], +"plugin_8php.html#a754d7f53b3abc557b753c057dc4e021d":[5,0,0,53,23], +"plugin_8php.html#a75f7dfed291fd7add7fc85b5c022a1f4":[5,0,0,53,4], +"plugin_8php.html#a7f05de16c0a32602853b09b99dd85e7c":[5,0,0,53,0], +"plugin_8php.html#a901657dd078e070516cf97285e0bada7":[5,0,0,53,25], +"plugin_8php.html#a9039e15aae27676af7777dcbee5a11d6":[5,0,0,53,1], +"plugin_8php.html#a90538627db68605aeb6db17a8ead6523":[5,0,0,53,21], +"plugin_8php.html#a905b54e10704b283ac64680a8abc0971":[5,0,0,53,18], +"plugin_8php.html#a9ca9632b7309a65b05c03a3e2f473a3d":[5,0,0,53,14], +"plugin_8php.html#acb63c27d07f6d7dffe95f98a6cef1295":[5,0,0,53,3], +"plugin_8php.html#ad48de9c0fb7f19413a2aa49250d00405":[5,0,0,53,6], +"plugin_8php.html#ad9ff8ba554576383c5911a4bce068c1f":[5,0,0,53,2], +"plugin_8php.html#af92789f559b89a380e49d303218aeeca":[5,0,0,53,10], +"plugin_8php.html#af9ac19004dca49adae1ac7a0d9f3b025":[5,0,0,53,16], +"plugin_8php.html#aff0178bd8d0b34a94d5efddc883edd35":[5,0,0,53,5], "po2php_8php.html":[5,0,2,6], "po2php_8php.html#a3b75e36f913198299e99559b175cd8b4":[5,0,2,6,0], -"poco_8php.html":[5,0,1,62], -"poco_8php.html#a53def16f75e3d41f1d2bb7cfa4905498":[5,0,1,62,0], -"poke_8php.html":[5,0,1,63], -"poke_8php.html#a9725aab97b3983e6a98bd81c4efe7d3b":[5,0,1,63,1], -"poke_8php.html#ac9190563a8da9c07a16f9dcd71cf6993":[5,0,1,63,0], -"poller_8php.html":[5,0,0,52], -"poller_8php.html#a5f12df3a4738124b6c039971e87e76da":[5,0,0,52,0], -"post_8php.html":[5,0,1,64], -"post_8php.html#af4b48181ce773ef0cdfc972441445c34":[5,0,1,64,0], -"post_8php.html#af59e6a1dc22d19d9257b01cd7ccedb75":[5,0,1,64,1], -"pretheme_8php.html":[5,0,1,65], -"pretheme_8php.html#af5660943ee99db5fd75182316522eafe":[5,0,1,65,0], -"probe_8php.html":[5,0,1,66], -"probe_8php.html#a1f1db3fa6038e451e737964c94bf5e99":[5,0,1,66,0], -"profile_8php.html":[5,0,1,67], -"profile_8php.html#a1a2482b775476f2f64ea5e8f4fc3fd1e":[5,0,1,67,0], -"profile_8php.html#a3775cf6eef6587e5143133356a7b76c0":[5,0,1,67,1], -"profile_8php.html#ab5d0246be0552e2182a585c1206d22a5":[5,0,1,67,2], -"profile__advanced_8php.html":[5,0,0,53], -"profile__advanced_8php.html#aa870d2c1f558cfd52bef05bc124e8fa4":[5,0,0,53,0], -"profile__photo_8php.html":[5,0,1,68], -"profile__photo_8php.html#a140631c56438fbfacb61a1eb43067d02":[5,0,1,68,1], -"profile__photo_8php.html#a4b80234074bd603221aa5364f330e479":[5,0,1,68,2], -"profile__photo_8php.html#ac9cd968a767e2ae1b88383b6cdd6dbe3":[5,0,1,68,0], -"profile__selectors_8php.html":[5,0,0,54], -"profile__selectors_8php.html#a3b50b3ea4ea4bdbebebfffc5d1b157c7":[5,0,0,54,2], -"profile__selectors_8php.html#a7473dd095987e1cdcc79d4f0bb5e6798":[5,0,0,54,1], -"profile__selectors_8php.html#ae2b2c087e6530c61c0b256fd26d52355":[5,0,0,54,0], -"profiles_8php.html":[5,0,1,69], -"profiles_8php.html#a2a3ac90f51941ff78b85e9389304969c":[5,0,1,69,0], -"profiles_8php.html#a36f71405ad536228f8bb84a551b23f7e":[5,0,1,69,2], -"profiles_8php.html#a46975783b8b8d70402d51487eb1f0b00":[5,0,1,69,1], -"profiles_8php.html#ab0362c81b1d3b0b12a772b9fac446e04":[5,0,1,69,3], -"profperm_8php.html":[5,0,1,70], -"profperm_8php.html#a17fb64ec05edee1dc94d95438807d6c6":[5,0,1,70,2], -"profperm_8php.html#a77fd398ae7c25142e1d9ad724ec347cc":[5,0,1,70,0], -"profperm_8php.html#aef015787de2373d9fb3fe3f814fb5023":[5,0,1,70,1], -"qsearch_8php.html":[5,0,1,71], -"qsearch_8php.html#a0501887b95bd8fa21018b2936a668894":[5,0,1,71,0], -"queue_8php.html":[5,0,0,56], -"queue_8php.html#af8c93de86d866c3200174c8450a0f341":[5,0,0,56,0], -"queue__fn_8php.html":[5,0,0,57], -"queue__fn_8php.html#a4c2876181f75a4a61e85b7f00dfdbba1":[5,0,0,57,1], -"queue__fn_8php.html#a8fe71e981399bbf5d000a6ca42f57b24":[5,0,0,57,0], -"randprof_8php.html":[5,0,1,72], -"randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090":[5,0,1,72,0], +"poco_8php.html":[5,0,1,64], +"poco_8php.html#a53def16f75e3d41f1d2bb7cfa4905498":[5,0,1,64,0], +"poke_8php.html":[5,0,1,65], +"poke_8php.html#a9725aab97b3983e6a98bd81c4efe7d3b":[5,0,1,65,1], +"poke_8php.html#ac9190563a8da9c07a16f9dcd71cf6993":[5,0,1,65,0], +"poller_8php.html":[5,0,0,54], +"poller_8php.html#a5f12df3a4738124b6c039971e87e76da":[5,0,0,54,0], +"post_8php.html":[5,0,1,66], +"post_8php.html#af4b48181ce773ef0cdfc972441445c34":[5,0,1,66,0], +"post_8php.html#af59e6a1dc22d19d9257b01cd7ccedb75":[5,0,1,66,1], +"pretheme_8php.html":[5,0,1,67], +"pretheme_8php.html#af5660943ee99db5fd75182316522eafe":[5,0,1,67,0], +"probe_8php.html":[5,0,1,68], +"probe_8php.html#a1f1db3fa6038e451e737964c94bf5e99":[5,0,1,68,0], +"profile_8php.html":[5,0,1,69], +"profile_8php.html#a1a2482b775476f2f64ea5e8f4fc3fd1e":[5,0,1,69,0], +"profile_8php.html#a3775cf6eef6587e5143133356a7b76c0":[5,0,1,69,1], +"profile_8php.html#ab5d0246be0552e2182a585c1206d22a5":[5,0,1,69,2], +"profile__advanced_8php.html":[5,0,0,55], +"profile__advanced_8php.html#aa870d2c1f558cfd52bef05bc124e8fa4":[5,0,0,55,0], +"profile__photo_8php.html":[5,0,1,70], +"profile__photo_8php.html#a140631c56438fbfacb61a1eb43067d02":[5,0,1,70,1], +"profile__photo_8php.html#a4b80234074bd603221aa5364f330e479":[5,0,1,70,2], +"profile__photo_8php.html#ac9cd968a767e2ae1b88383b6cdd6dbe3":[5,0,1,70,0], +"profile__selectors_8php.html":[5,0,0,56], +"profile__selectors_8php.html#a3b50b3ea4ea4bdbebebfffc5d1b157c7":[5,0,0,56,2], +"profile__selectors_8php.html#a7473dd095987e1cdcc79d4f0bb5e6798":[5,0,0,56,1], +"profile__selectors_8php.html#ae2b2c087e6530c61c0b256fd26d52355":[5,0,0,56,0], +"profiles_8php.html":[5,0,1,71], +"profiles_8php.html#a2a3ac90f51941ff78b85e9389304969c":[5,0,1,71,0], +"profiles_8php.html#a36f71405ad536228f8bb84a551b23f7e":[5,0,1,71,2], +"profiles_8php.html#a46975783b8b8d70402d51487eb1f0b00":[5,0,1,71,1], +"profiles_8php.html#ab0362c81b1d3b0b12a772b9fac446e04":[5,0,1,71,3], +"profperm_8php.html":[5,0,1,72], +"profperm_8php.html#a17fb64ec05edee1dc94d95438807d6c6":[5,0,1,72,2], +"profperm_8php.html#a77fd398ae7c25142e1d9ad724ec347cc":[5,0,1,72,0], +"profperm_8php.html#aef015787de2373d9fb3fe3f814fb5023":[5,0,1,72,1], +"qsearch_8php.html":[5,0,1,73], +"qsearch_8php.html#a0501887b95bd8fa21018b2936a668894":[5,0,1,73,0], +"queue_8php.html":[5,0,0,58], +"queue_8php.html#af8c93de86d866c3200174c8450a0f341":[5,0,0,58,0], +"queue__fn_8php.html":[5,0,0,59], +"queue__fn_8php.html#a4c2876181f75a4a61e85b7f00dfdbba1":[5,0,0,59,1], +"queue__fn_8php.html#a8fe71e981399bbf5d000a6ca42f57b24":[5,0,0,59,0], +"randprof_8php.html":[5,0,1,74], +"randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090":[5,0,1,74,0], "redbasic_2php_2style_8php.html":[5,0,3,1,0,0,1], "redbasic_2php_2style_8php.html#a02d39b683a42fffbb27823d3860283bd":[5,0,3,1,0,0,1,14], "redbasic_2php_2style_8php.html#a03a72942b7428fd9af1224770d20a8ba":[5,0,3,1,0,0,1,5], @@ -195,8 +222,8 @@ var NAVTREEINDEX5 = "redbasic_2php_2style_8php.html#af3a16c5f0dd7a74cf9acf6a49fff73a7":[5,0,3,1,0,0,1,18], "redbasic_2php_2theme_8php.html":[5,0,3,1,0,0,2], "redbasic_2php_2theme_8php.html#af6eb813e9fc7e2d76ac1b82bc5c0ed9b":[5,0,3,1,0,0,2,0], -"redir_8php.html":[5,0,1,73], -"redir_8php.html#a9ac266c3f5cf0d94ef63e6d0f2edf1f5":[5,0,1,73,0], +"redir_8php.html":[5,0,1,75], +"redir_8php.html#a9ac266c3f5cf0d94ef63e6d0f2edf1f5":[5,0,1,75,0], "redstrap_2php_2style_8php.html":[5,0,3,1,1,0,2], "redstrap_2php_2style_8php.html#a02d39b683a42fffbb27823d3860283bd":[5,0,3,1,1,0,2,13], "redstrap_2php_2style_8php.html#a03a72942b7428fd9af1224770d20a8ba":[5,0,3,1,1,0,2,5], @@ -217,37 +244,10 @@ var NAVTREEINDEX5 = "redstrap_2php_2style_8php.html#aef266cfcb27c6ddb3292584c945bab33":[5,0,3,1,1,0,2,7], "redstrap_2php_2theme_8php.html":[5,0,3,1,1,0,3], "redstrap_2php_2theme_8php.html#a4dac61d466b4261deca2846f548e484a":[5,0,3,1,1,0,3,0], -"register_8php.html":[5,0,1,74], -"register_8php.html#a0e91f57f111407ea8d3223a05022bb2a":[5,0,1,74,0], -"register_8php.html#a51731dcc1917c58a790eb1c0f6132271":[5,0,1,74,2], -"register_8php.html#ae20c0cd40f738d6295de58b9202c83d5":[5,0,1,74,1], -"regmod_8php.html":[5,0,1,75], -"regmod_8php.html#a7953df4e32e63946565e90cdd5d50409":[5,0,1,75,0], -"removeme_8php.html":[5,0,1,76], -"removeme_8php.html#a065a589caa2aa84c60f7073a28f0ad9c":[5,0,1,76,0], -"removeme_8php.html#a7be08738beca44bb98a79e01cdb2ee88":[5,0,1,76,1], -"rmagic_8php.html":[5,0,1,77], -"rmagic_8php.html#a3e28db1e5cfa7e5c2617f90222c1caef":[5,0,1,77,0], -"rmagic_8php.html#a869de069d081b3c4e98b957d06bbf08f":[5,0,1,77,2], -"rmagic_8php.html#a95455edd43f1bff39446a57388cdde16":[5,0,1,77,1], -"rsd__xml_8php.html":[5,0,1,78], -"rsd__xml_8php.html#a740cd02fa15e5a53f8547fac73f0ab82":[5,0,1,78,0], -"search_8php.html":[5,0,1,79], -"search_8php.html#a230ec9681ddee3b5b8b40c8d550f32f7":[5,0,1,79,2], -"search_8php.html#aa911f7c7f0cdb0284e35d0ed610f19c6":[5,0,1,79,3], -"search_8php.html#ab2568591359edde5b483a6cd9a24b2cc":[5,0,1,79,0], -"search_8php.html#acf19fd30f07f495781ca0d7a0a08b435":[5,0,1,79,1], -"search__ac_8php.html":[5,0,1,80], -"search__ac_8php.html#a14f90c83a3f2be095e9e2992a8d66138":[5,0,1,80,0], -"security_8php.html":[5,0,0,58], -"security_8php.html#a20f8b9851f23ee8894b8925584ef6821":[5,0,0,58,2], -"security_8php.html#a444ac867dfa8c37cf0a7a226412bee28":[5,0,0,58,4], -"security_8php.html#a77ba0d1889a39cf32434c5ce96fe1433":[5,0,0,58,5], -"security_8php.html#a8d23d2597aae380a3341872fe9513380":[5,0,0,58,1], -"security_8php.html#a9355488460ab11d6058656ff919e5cf9":[5,0,0,58,7], -"security_8php.html#a9c6180e82150a5a9af91a1255d096b5c":[5,0,0,58,3], -"security_8php.html#ab3bdd30dc60d9ee72370b866aa4a2d01":[5,0,0,58,9], -"security_8php.html#acd06ef411116115c2f0a92633700db8a":[5,0,0,58,6], -"security_8php.html#adc7bf51e3b8d67bd80e9348f9ab03733":[5,0,0,58,0], -"security_8php.html#ae92c5c1a1cbbc49ddbb8b3265d2db809":[5,0,0,58,10] +"register_8php.html":[5,0,1,76], +"register_8php.html#a0e91f57f111407ea8d3223a05022bb2a":[5,0,1,76,0], +"register_8php.html#a51731dcc1917c58a790eb1c0f6132271":[5,0,1,76,2], +"register_8php.html#ae20c0cd40f738d6295de58b9202c83d5":[5,0,1,76,1], +"regmod_8php.html":[5,0,1,77], +"regmod_8php.html#a7953df4e32e63946565e90cdd5d50409":[5,0,1,77,0] }; diff --git a/doc/html/navtreeindex6.js b/doc/html/navtreeindex6.js index 014d381ae..eda4b9d0e 100644 --- a/doc/html/navtreeindex6.js +++ b/doc/html/navtreeindex6.js @@ -1,178 +1,205 @@ var NAVTREEINDEX6 = { -"security_8php.html#afa683bc025a1d2fe9065e2f6cd71a22f":[5,0,0,58,8], -"session_8php.html":[5,0,0,59], -"session_8php.html#a26fa1042356d555023cbf15ddd4f8507":[5,0,0,59,4], -"session_8php.html#a4c0ead624f95483e386bc80abf570a8f":[5,0,0,59,0], -"session_8php.html#a5e1c616e02b863d5450317d101366bb7":[5,0,0,59,1], -"session_8php.html#a62e4a6cb26b4bb1b8ddd8277b26090eb":[5,0,0,59,8], -"session_8php.html#a7f0f50576360d9ba52d29364e0b83a8e":[5,0,0,59,5], -"session_8php.html#a96b09cc763572f45280786a7b33feb7e":[5,0,0,59,7], -"session_8php.html#ac4461c1984543d3553e73dba2771568f":[5,0,0,59,6], -"session_8php.html#ac95373f4966862a028033dd2f94d4da1":[5,0,0,59,3], -"session_8php.html#af0100a2642a5268594bbd5742a03d885":[5,0,0,59,9], -"session_8php.html#af230b86bfff7db66c3bdd7e0bbc24052":[5,0,0,59,2], -"settings_8php.html":[5,0,1,81], -"settings_8php.html#a39abc76ff5459c57e3b957664f273f18":[5,0,1,81,0], -"settings_8php.html#a3a4cde287482fced008583f54ba2a722":[5,0,1,81,2], -"settings_8php.html#aa7ee94d88ac088edb04ccf3a26de3586":[5,0,1,81,3], -"settings_8php.html#ae5aebccb006bee1300078576baaf5582":[5,0,1,81,1], -"setup_8php.html":[5,0,1,82], -"setup_8php.html#a0c3f3b671381f6dccd924b8ecdfc56c4":[5,0,1,82,2], -"setup_8php.html#a13cf286774149a0a7bd8adb8179cec75":[5,0,1,82,13], -"setup_8php.html#a14d208682a88632290c895d20da6e7d6":[5,0,1,82,5], -"setup_8php.html#a267555abd17290e659b4bf44b885e4e0":[5,0,1,82,12], -"setup_8php.html#a2b375ddc555140236fc500135de99371":[5,0,1,82,9], -"setup_8php.html#a5ad92c0857d1dadd6b60a9a557159c9f":[5,0,1,82,3], -"setup_8php.html#a69a450e06dd3771fb51d3e4b0266a35e":[5,0,1,82,1], -"setup_8php.html#a8652788e8589778c5f81634a9d5b9429":[5,0,1,82,7], -"setup_8php.html#a88247384a96e14516f474d7af6a465c1":[5,0,1,82,11], -"setup_8php.html#aa3bbb111780da70ba35cc23a306f2c76":[5,0,1,82,4], -"setup_8php.html#abe405d227ba7232971964a706d4f3bce":[5,0,1,82,10], -"setup_8php.html#ad2e0375a9ab87ebe6e78124ee125054a":[5,0,1,82,8], -"setup_8php.html#addb24714bc2542aa4f4215e98fe48432":[5,0,1,82,15], -"setup_8php.html#ae8e4d9279a61de74d5f39962cb7b6ca1":[5,0,1,82,0], -"setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58":[5,0,1,82,14], -"setup_8php.html#afd8b0b3ade1507c45325caf377bf459d":[5,0,1,82,6], -"share_8php.html":[5,0,1,83], -"share_8php.html#afeb26046bdd02567ecd29ab5f188b249":[5,0,1,83,0], -"siteinfo_8php.html":[5,0,1,84], -"siteinfo_8php.html#a3efbd0bd6564af19ec0a9ce0294e59d0":[5,0,1,84,1], -"siteinfo_8php.html#a70c09bfb6dd1c86a125a35f62ed53656":[5,0,1,84,0], -"sitelist_8php.html":[5,0,1,85], -"sitelist_8php.html#a665a59bf60f780b40f32c909f4a473b1":[5,0,1,85,0], -"smilies_8php.html":[5,0,1,86], -"smilies_8php.html#ab43b1e9f33a700a830aff14c7b3a617f":[5,0,1,86,0], -"socgraph_8php.html":[5,0,0,60], -"socgraph_8php.html#a16ac51c505d72987ed8d6d6aed0e8586":[5,0,0,60,0], -"socgraph_8php.html#a5ef8bef37161df53718a21e93d02fbd6":[5,0,0,60,6], -"socgraph_8php.html#a76e6fca3d2bc842dcd9e710bb87c8329":[5,0,0,60,7], -"socgraph_8php.html#a790690bb1a1d02483fe31632a160144d":[5,0,0,60,8], -"socgraph_8php.html#a7d34cd58025bcd9e575282f44db75918":[5,0,0,60,1], -"socgraph_8php.html#a887d576f21fd708132a06d0f72f90f84":[5,0,0,60,4], -"socgraph_8php.html#ac343a846241d36cdf046b08f3396cfe9":[5,0,0,60,2], -"socgraph_8php.html#af175807406d94407a5e11742a3287746":[5,0,0,60,5], -"socgraph_8php.html#af29d056beec10b4e38e5209c92452894":[5,0,0,60,3], -"starred_8php.html":[5,0,1,87], -"starred_8php.html#a63024fb418c678e49fd535e3752d349a":[5,0,1,87,0], -"subthread_8php.html":[5,0,1,88], -"subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3":[5,0,1,88,0], -"suggest_8php.html":[5,0,1,89], -"suggest_8php.html#a4df91c84594d51ba56b5918de414230d":[5,0,1,89,0], -"suggest_8php.html#a58748a8235d4523f8333847f3e42dd91":[5,0,1,89,1], -"suggest_8php.html#a696acf1dd8070e479adcc80c63c6718c":[5,0,1,89,2], -"system__unavailable_8php.html":[5,0,0,61], -"system__unavailable_8php.html#a73751a6bcc17ad3ca503496e2fb020fa":[5,0,0,61,0], -"tagger_8php.html":[5,0,1,90], -"tagger_8php.html#a0e4a3eb177d1684553c547503d67161c":[5,0,1,90,0], -"tagrm_8php.html":[5,0,1,91], -"tagrm_8php.html#a1702f40aa53a2fa93deade1f609abe78":[5,0,1,91,1], -"tagrm_8php.html#adfd4ea5b4d7fc6d9c9e042af5cd7d49a":[5,0,1,91,0], -"taxonomy_8php.html":[5,0,0,62], -"taxonomy_8php.html#a03f55ee46c5f496e42f3d29db8d09cce":[5,0,0,62,6], -"taxonomy_8php.html#a061b3db9426d4b074395f5824062cad4":[5,0,0,62,8], -"taxonomy_8php.html#a08df5164926d2b31b8e9fcfe919de2b6":[5,0,0,62,0], -"taxonomy_8php.html#a0fb8cf0ac7bcbc8b27d856fe9bf69cd1":[5,0,0,62,4], -"taxonomy_8php.html#a163b5131f388080b0fc82398d3a32fe1":[5,0,0,62,2], -"taxonomy_8php.html#a3299482ac20e9d79453048dd52881d37":[5,0,0,62,1], -"taxonomy_8php.html#a4ba1339b2a7054971178ce194e4440fd":[5,0,0,62,7], -"taxonomy_8php.html#a7a913d19c77610da689be48fbbf6734c":[5,0,0,62,11], -"taxonomy_8php.html#aaeded36bcc983b35d9205fe5b6c18c43":[5,0,0,62,10], -"taxonomy_8php.html#abdb698bc6921429df6d697f6c5dec96f":[5,0,0,62,9], -"taxonomy_8php.html#ac12a651a42ed77f8dc7072c6168811a2":[5,0,0,62,5], -"taxonomy_8php.html#adfead45e3b8a3dfb2b4a4b9281d0dbe1":[5,0,0,62,3], -"template__processor_8php.html":[5,0,0,63], -"template__processor_8php.html#a797745996c7839a93b2ab1af456631ab":[5,0,0,63,3], -"template__processor_8php.html#ab2bcd8738f20f293636a6ae8e1099db5":[5,0,0,63,1], -"template__processor_8php.html#ac635bb19a5f6eadd6b0cddefdd537c1e":[5,0,0,63,2], -"text_8php.html":[5,0,0,64], -"text_8php.html#a0271381208acfa2d4cff36da281e3e23":[5,0,0,64,35], -"text_8php.html#a030fa5ecc64168af0c4f44897a9bce63":[5,0,0,64,40], -"text_8php.html#a05b7f26dc2df78681f57eeade53040c6":[5,0,0,64,25], -"text_8php.html#a070384ec000fd65043fce11d5392d241":[5,0,0,64,6], -"text_8php.html#a0a1f7c0e97f9ecbebf3e5834582b014c":[5,0,0,64,15], -"text_8php.html#a0c65597bb4aed3a039eb795ff540e5e3":[5,0,0,64,11], -"text_8php.html#a11255c8c4e5245b6c24f97684826aa54":[5,0,0,64,39], -"text_8php.html#a13286f8a95d2de6b102966ecc270c8d6":[5,0,0,64,5], -"text_8php.html#a1360fed7f918d859daaca1c9f384f9af":[5,0,0,64,69], -"text_8php.html#a138a3a611fa7f4f3630674145fc826bf":[5,0,0,64,29], -"text_8php.html#a1557112a774ec00fa06ed6b6f6495506":[5,0,0,64,31], -"text_8php.html#a1af49756c8c71902a66c7e329c462beb":[5,0,0,64,46], -"text_8php.html#a1e510c53624933ce9b7d6715784894db":[5,0,0,64,41], -"text_8php.html#a24d441d30df4b8e6bf6780bf62a5e2c6":[5,0,0,64,42], -"text_8php.html#a2690ad67bb6fb97ef69de3e8d23f2728":[5,0,0,64,37], -"text_8php.html#a27cd2c1b3bcb49a0cfb7249e851725ca":[5,0,0,64,4], -"text_8php.html#a29988052f3944111def3b6aaf2c7a8f6":[5,0,0,64,76], -"text_8php.html#a29d6b804e368d3ef359ee295e96ed4c7":[5,0,0,64,67], -"text_8php.html#a2a902f5fdba8646333e997898ac45ea3":[5,0,0,64,43], -"text_8php.html#a2e8d6c402603be3a1256a16605e09c2a":[5,0,0,64,10], -"text_8php.html#a2ffd79c60cc87cec24ef76447b905187":[5,0,0,64,78], -"text_8php.html#a36a2e5d418ee81140f25c4233cfecd1f":[5,0,0,64,72], -"text_8php.html#a3972701c5c83624ec4e2d06242f614e7":[5,0,0,64,27], -"text_8php.html#a3d225b253bb9e0f2498c11647d927b0b":[5,0,0,64,65], -"text_8php.html#a3d2793d66db3345fd290b71e2eadf98e":[5,0,0,64,7], -"text_8php.html#a405afe814a23f3bd94d826101aa168ab":[5,0,0,64,74], -"text_8php.html#a436a8de00c942364c2d0fcfc7e1f4b5a":[5,0,0,64,30], -"text_8php.html#a44d460fcdee6247c67b9bef3ea15f3e6":[5,0,0,64,64], -"text_8php.html#a4659fbc4e54ddc700c3aa66b9092c623":[5,0,0,64,28], -"text_8php.html#a47c1e4a5f3f53027daacd8a9db24f285":[5,0,0,64,38], -"text_8php.html#a4841df5beabdd1bdd1ed56781a915d61":[5,0,0,64,55], -"text_8php.html#a4bbb7d00c05cd20b4e043424f322388f":[5,0,0,64,44], -"text_8php.html#a4e7698aca48982512594b274543c3b9b":[5,0,0,64,54], -"text_8php.html#a543447c5ed766535221e2d9636b379ee":[5,0,0,64,71], -"text_8php.html#a55ab893be57feda59c2a7ba1e58ff2d0":[5,0,0,64,9], -"text_8php.html#a63fb21c0bed2fc72eef2c1471ac42b63":[5,0,0,64,14], -"text_8php.html#a6a3d80a6c6fb234fd0bac44203b828eb":[5,0,0,64,70], -"text_8php.html#a71f6952243d3fe1c5a8154f78027e29c":[5,0,0,64,36], -"text_8php.html#a736db13a966b8abaf8c9198faa35911a":[5,0,0,64,24], -"text_8php.html#a740ad03e00459039a2c0992246c4e727":[5,0,0,64,68], -"text_8php.html#a75c243e06341ec16bd5a44b9b1cacd85":[5,0,0,64,1], -"text_8php.html#a76d1b3435c067978d7b484c45f56472b":[5,0,0,64,23], -"text_8php.html#a85e3a4851c16674834010d8419a5d7ca":[5,0,0,64,8], -"text_8php.html#a876e94892867019935b348b573299352":[5,0,0,64,62], -"text_8php.html#a8796f6a9ca592ecdce7b3afc3462aa13":[5,0,0,64,66], -"text_8php.html#a89929fa6f70a8ba54d5273fcf622b665":[5,0,0,64,19], -"text_8php.html#a8b0a799341b1fc4cba2c3ede3e3fc9b6":[5,0,0,64,53], -"text_8php.html#a8d8c4a11e53461caca21181ebd72daca":[5,0,0,64,18], -"text_8php.html#a95fd2f8f23a1948414a03ebc963bac57":[5,0,0,64,3], -"text_8php.html#a98fd99dee3da8cf4c148dc04efe782ee":[5,0,0,64,48], -"text_8php.html#a9c6ce4e12a4ac883c5e3f36fed6e1e09":[5,0,0,64,59], -"text_8php.html#a9d6a5ee1290de7a8b483fe78585daade":[5,0,0,64,57], -"text_8php.html#a9fbeae13c9abd6e27cb4d8d1817f969c":[5,0,0,64,61], -"text_8php.html#aa46f941155c2ac1155f2f17ffb0adb66":[5,0,0,64,26], -"text_8php.html#aa5148a0dfea2a1ca64c3d52f10aa2d64":[5,0,0,64,16], -"text_8php.html#aa5528f41533927e1bd2da3618a74a6d7":[5,0,0,64,49], -"text_8php.html#aa6b0aa8afbeab50d1a3058ad21acb74e":[5,0,0,64,32], -"text_8php.html#aad557c054cf2ed915633701018fc7e3f":[5,0,0,64,77], -"text_8php.html#aaed4413ed8918838b517e3b2fafaea0d":[5,0,0,64,73], -"text_8php.html#ab4a4c3d4700bc219bb84f33b499314f4":[5,0,0,64,75], -"text_8php.html#ac19d2b33a58372a357a43d51eed19162":[5,0,0,64,50], -"text_8php.html#ac1dbf2e37e8069bea2c0f557fdbf203e":[5,0,0,64,33], -"text_8php.html#aca0f589be74fab1a460c57e88dad9779":[5,0,0,64,63], -"text_8php.html#ace3c98538c63e09b70a363210b414112":[5,0,0,64,20], -"text_8php.html#acedb584f65114a33f389efb796172a91":[5,0,0,64,2], -"text_8php.html#ad6432621d0fafcbcf3d3b9b49bef7784":[5,0,0,64,13], -"text_8php.html#ad855a32bee22c3f3b9734e3a334b96f2":[5,0,0,64,58], -"text_8php.html#adba17ec946f4285285dc100f7860bf51":[5,0,0,64,45], -"text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8":[5,0,0,64,34], -"text_8php.html#ae2126da85966da0e79c6bcbac63b0bda":[5,0,0,64,60], -"text_8php.html#ae4282a39492caa23ccbc2ce98e54f110":[5,0,0,64,17], -"text_8php.html#ae4df74296fbe55051ed3c035e55205e5":[5,0,0,64,51], -"text_8php.html#ae4f6881d7e13623f8eded6277595112a":[5,0,0,64,22], -"text_8php.html#af8a3e3a66a7b862d4510f145d2e13186":[5,0,0,64,0], -"text_8php.html#afc998d2796a6b2a08e96f7cc061e7221":[5,0,0,64,56], -"text_8php.html#afdc69fe3f6c09e35e46304dcea63ae28":[5,0,0,64,21], -"text_8php.html#afe18627c4983ee5f7c940a0992818cd5":[5,0,0,64,12], -"text_8php.html#afe54312607d92f7ce9593f5760831f80":[5,0,0,64,52], -"text_8php.html#afe9f178d264d44a94dc1292aaf0fd585":[5,0,0,64,47], +"removeme_8php.html":[5,0,1,78], +"removeme_8php.html#a065a589caa2aa84c60f7073a28f0ad9c":[5,0,1,78,0], +"removeme_8php.html#a7be08738beca44bb98a79e01cdb2ee88":[5,0,1,78,1], +"rmagic_8php.html":[5,0,1,79], +"rmagic_8php.html#a3e28db1e5cfa7e5c2617f90222c1caef":[5,0,1,79,0], +"rmagic_8php.html#a869de069d081b3c4e98b957d06bbf08f":[5,0,1,79,2], +"rmagic_8php.html#a95455edd43f1bff39446a57388cdde16":[5,0,1,79,1], +"rsd__xml_8php.html":[5,0,1,80], +"rsd__xml_8php.html#a740cd02fa15e5a53f8547fac73f0ab82":[5,0,1,80,0], +"search_8php.html":[5,0,1,81], +"search_8php.html#a230ec9681ddee3b5b8b40c8d550f32f7":[5,0,1,81,2], +"search_8php.html#aa911f7c7f0cdb0284e35d0ed610f19c6":[5,0,1,81,3], +"search_8php.html#ab2568591359edde5b483a6cd9a24b2cc":[5,0,1,81,0], +"search_8php.html#acf19fd30f07f495781ca0d7a0a08b435":[5,0,1,81,1], +"search__ac_8php.html":[5,0,1,82], +"search__ac_8php.html#a14f90c83a3f2be095e9e2992a8d66138":[5,0,1,82,0], +"security_8php.html":[5,0,0,60], +"security_8php.html#a20f8b9851f23ee8894b8925584ef6821":[5,0,0,60,2], +"security_8php.html#a444ac867dfa8c37cf0a7a226412bee28":[5,0,0,60,4], +"security_8php.html#a77ba0d1889a39cf32434c5ce96fe1433":[5,0,0,60,5], +"security_8php.html#a8d23d2597aae380a3341872fe9513380":[5,0,0,60,1], +"security_8php.html#a9355488460ab11d6058656ff919e5cf9":[5,0,0,60,7], +"security_8php.html#a9c6180e82150a5a9af91a1255d096b5c":[5,0,0,60,3], +"security_8php.html#ab3bdd30dc60d9ee72370b866aa4a2d01":[5,0,0,60,9], +"security_8php.html#acd06ef411116115c2f0a92633700db8a":[5,0,0,60,6], +"security_8php.html#adc7bf51e3b8d67bd80e9348f9ab03733":[5,0,0,60,0], +"security_8php.html#ae92c5c1a1cbbc49ddbb8b3265d2db809":[5,0,0,60,10], +"security_8php.html#afa683bc025a1d2fe9065e2f6cd71a22f":[5,0,0,60,8], +"session_8php.html":[5,0,0,61], +"session_8php.html#a26fa1042356d555023cbf15ddd4f8507":[5,0,0,61,4], +"session_8php.html#a4c0ead624f95483e386bc80abf570a8f":[5,0,0,61,0], +"session_8php.html#a5e1c616e02b863d5450317d101366bb7":[5,0,0,61,1], +"session_8php.html#a62e4a6cb26b4bb1b8ddd8277b26090eb":[5,0,0,61,8], +"session_8php.html#a7f0f50576360d9ba52d29364e0b83a8e":[5,0,0,61,5], +"session_8php.html#a96b09cc763572f45280786a7b33feb7e":[5,0,0,61,7], +"session_8php.html#ac4461c1984543d3553e73dba2771568f":[5,0,0,61,6], +"session_8php.html#ac95373f4966862a028033dd2f94d4da1":[5,0,0,61,3], +"session_8php.html#af0100a2642a5268594bbd5742a03d885":[5,0,0,61,9], +"session_8php.html#af230b86bfff7db66c3bdd7e0bbc24052":[5,0,0,61,2], +"settings_8php.html":[5,0,1,83], +"settings_8php.html#a39abc76ff5459c57e3b957664f273f18":[5,0,1,83,0], +"settings_8php.html#a3a4cde287482fced008583f54ba2a722":[5,0,1,83,2], +"settings_8php.html#aa7ee94d88ac088edb04ccf3a26de3586":[5,0,1,83,3], +"settings_8php.html#ae5aebccb006bee1300078576baaf5582":[5,0,1,83,1], +"setup_8php.html":[5,0,1,84], +"setup_8php.html#a0c3f3b671381f6dccd924b8ecdfc56c4":[5,0,1,84,2], +"setup_8php.html#a13cf286774149a0a7bd8adb8179cec75":[5,0,1,84,13], +"setup_8php.html#a14d208682a88632290c895d20da6e7d6":[5,0,1,84,5], +"setup_8php.html#a267555abd17290e659b4bf44b885e4e0":[5,0,1,84,12], +"setup_8php.html#a2b375ddc555140236fc500135de99371":[5,0,1,84,9], +"setup_8php.html#a5ad92c0857d1dadd6b60a9a557159c9f":[5,0,1,84,3], +"setup_8php.html#a69a450e06dd3771fb51d3e4b0266a35e":[5,0,1,84,1], +"setup_8php.html#a8652788e8589778c5f81634a9d5b9429":[5,0,1,84,7], +"setup_8php.html#a88247384a96e14516f474d7af6a465c1":[5,0,1,84,11], +"setup_8php.html#aa3bbb111780da70ba35cc23a306f2c76":[5,0,1,84,4], +"setup_8php.html#abe405d227ba7232971964a706d4f3bce":[5,0,1,84,10], +"setup_8php.html#ad2e0375a9ab87ebe6e78124ee125054a":[5,0,1,84,8], +"setup_8php.html#addb24714bc2542aa4f4215e98fe48432":[5,0,1,84,15], +"setup_8php.html#ae8e4d9279a61de74d5f39962cb7b6ca1":[5,0,1,84,0], +"setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58":[5,0,1,84,14], +"setup_8php.html#afd8b0b3ade1507c45325caf377bf459d":[5,0,1,84,6], +"share_8php.html":[5,0,1,85], +"share_8php.html#afeb26046bdd02567ecd29ab5f188b249":[5,0,1,85,0], +"siteinfo_8php.html":[5,0,1,86], +"siteinfo_8php.html#a3efbd0bd6564af19ec0a9ce0294e59d0":[5,0,1,86,1], +"siteinfo_8php.html#a70c09bfb6dd1c86a125a35f62ed53656":[5,0,1,86,0], +"sitelist_8php.html":[5,0,1,87], +"sitelist_8php.html#a665a59bf60f780b40f32c909f4a473b1":[5,0,1,87,0], +"smilies_8php.html":[5,0,1,88], +"smilies_8php.html#ab43b1e9f33a700a830aff14c7b3a617f":[5,0,1,88,0], +"socgraph_8php.html":[5,0,0,62], +"socgraph_8php.html#a16ac51c505d72987ed8d6d6aed0e8586":[5,0,0,62,0], +"socgraph_8php.html#a5ef8bef37161df53718a21e93d02fbd6":[5,0,0,62,6], +"socgraph_8php.html#a76e6fca3d2bc842dcd9e710bb87c8329":[5,0,0,62,7], +"socgraph_8php.html#a790690bb1a1d02483fe31632a160144d":[5,0,0,62,8], +"socgraph_8php.html#a7d34cd58025bcd9e575282f44db75918":[5,0,0,62,1], +"socgraph_8php.html#a887d576f21fd708132a06d0f72f90f84":[5,0,0,62,4], +"socgraph_8php.html#ac343a846241d36cdf046b08f3396cfe9":[5,0,0,62,2], +"socgraph_8php.html#af175807406d94407a5e11742a3287746":[5,0,0,62,5], +"socgraph_8php.html#af29d056beec10b4e38e5209c92452894":[5,0,0,62,3], +"starred_8php.html":[5,0,1,89], +"starred_8php.html#a63024fb418c678e49fd535e3752d349a":[5,0,1,89,0], +"subthread_8php.html":[5,0,1,90], +"subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3":[5,0,1,90,0], +"suggest_8php.html":[5,0,1,91], +"suggest_8php.html#a4df91c84594d51ba56b5918de414230d":[5,0,1,91,0], +"suggest_8php.html#a58748a8235d4523f8333847f3e42dd91":[5,0,1,91,1], +"suggest_8php.html#a696acf1dd8070e479adcc80c63c6718c":[5,0,1,91,2], +"system__unavailable_8php.html":[5,0,0,63], +"system__unavailable_8php.html#a73751a6bcc17ad3ca503496e2fb020fa":[5,0,0,63,0], +"tagger_8php.html":[5,0,1,92], +"tagger_8php.html#a0e4a3eb177d1684553c547503d67161c":[5,0,1,92,0], +"tagrm_8php.html":[5,0,1,93], +"tagrm_8php.html#a1702f40aa53a2fa93deade1f609abe78":[5,0,1,93,1], +"tagrm_8php.html#adfd4ea5b4d7fc6d9c9e042af5cd7d49a":[5,0,1,93,0], +"taxonomy_8php.html":[5,0,0,64], +"taxonomy_8php.html#a03f55ee46c5f496e42f3d29db8d09cce":[5,0,0,64,6], +"taxonomy_8php.html#a061b3db9426d4b074395f5824062cad4":[5,0,0,64,8], +"taxonomy_8php.html#a08df5164926d2b31b8e9fcfe919de2b6":[5,0,0,64,0], +"taxonomy_8php.html#a0fb8cf0ac7bcbc8b27d856fe9bf69cd1":[5,0,0,64,4], +"taxonomy_8php.html#a163b5131f388080b0fc82398d3a32fe1":[5,0,0,64,2], +"taxonomy_8php.html#a3299482ac20e9d79453048dd52881d37":[5,0,0,64,1], +"taxonomy_8php.html#a4ba1339b2a7054971178ce194e4440fd":[5,0,0,64,7], +"taxonomy_8php.html#a7a913d19c77610da689be48fbbf6734c":[5,0,0,64,11], +"taxonomy_8php.html#aaeded36bcc983b35d9205fe5b6c18c43":[5,0,0,64,10], +"taxonomy_8php.html#abdb698bc6921429df6d697f6c5dec96f":[5,0,0,64,9], +"taxonomy_8php.html#ac12a651a42ed77f8dc7072c6168811a2":[5,0,0,64,5], +"taxonomy_8php.html#adfead45e3b8a3dfb2b4a4b9281d0dbe1":[5,0,0,64,3], +"template__processor_8php.html":[5,0,0,65], +"template__processor_8php.html#a797745996c7839a93b2ab1af456631ab":[5,0,0,65,3], +"template__processor_8php.html#ab2bcd8738f20f293636a6ae8e1099db5":[5,0,0,65,1], +"template__processor_8php.html#ac635bb19a5f6eadd6b0cddefdd537c1e":[5,0,0,65,2], +"text_8php.html":[5,0,0,66], +"text_8php.html#a0271381208acfa2d4cff36da281e3e23":[5,0,0,66,35], +"text_8php.html#a030fa5ecc64168af0c4f44897a9bce63":[5,0,0,66,40], +"text_8php.html#a05b7f26dc2df78681f57eeade53040c6":[5,0,0,66,25], +"text_8php.html#a070384ec000fd65043fce11d5392d241":[5,0,0,66,6], +"text_8php.html#a0a1f7c0e97f9ecbebf3e5834582b014c":[5,0,0,66,15], +"text_8php.html#a0c65597bb4aed3a039eb795ff540e5e3":[5,0,0,66,11], +"text_8php.html#a11255c8c4e5245b6c24f97684826aa54":[5,0,0,66,39], +"text_8php.html#a13286f8a95d2de6b102966ecc270c8d6":[5,0,0,66,5], +"text_8php.html#a1360fed7f918d859daaca1c9f384f9af":[5,0,0,66,69], +"text_8php.html#a138a3a611fa7f4f3630674145fc826bf":[5,0,0,66,29], +"text_8php.html#a1557112a774ec00fa06ed6b6f6495506":[5,0,0,66,31], +"text_8php.html#a1af49756c8c71902a66c7e329c462beb":[5,0,0,66,46], +"text_8php.html#a1e510c53624933ce9b7d6715784894db":[5,0,0,66,41], +"text_8php.html#a24d441d30df4b8e6bf6780bf62a5e2c6":[5,0,0,66,42], +"text_8php.html#a2690ad67bb6fb97ef69de3e8d23f2728":[5,0,0,66,37], +"text_8php.html#a27cd2c1b3bcb49a0cfb7249e851725ca":[5,0,0,66,4], +"text_8php.html#a29988052f3944111def3b6aaf2c7a8f6":[5,0,0,66,76], +"text_8php.html#a29d6b804e368d3ef359ee295e96ed4c7":[5,0,0,66,67], +"text_8php.html#a2a902f5fdba8646333e997898ac45ea3":[5,0,0,66,43], +"text_8php.html#a2e8d6c402603be3a1256a16605e09c2a":[5,0,0,66,10], +"text_8php.html#a2ffd79c60cc87cec24ef76447b905187":[5,0,0,66,78], +"text_8php.html#a36a2e5d418ee81140f25c4233cfecd1f":[5,0,0,66,72], +"text_8php.html#a3972701c5c83624ec4e2d06242f614e7":[5,0,0,66,27], +"text_8php.html#a3d225b253bb9e0f2498c11647d927b0b":[5,0,0,66,65], +"text_8php.html#a3d2793d66db3345fd290b71e2eadf98e":[5,0,0,66,7], +"text_8php.html#a405afe814a23f3bd94d826101aa168ab":[5,0,0,66,74], +"text_8php.html#a436a8de00c942364c2d0fcfc7e1f4b5a":[5,0,0,66,30], +"text_8php.html#a44d460fcdee6247c67b9bef3ea15f3e6":[5,0,0,66,64], +"text_8php.html#a4659fbc4e54ddc700c3aa66b9092c623":[5,0,0,66,28], +"text_8php.html#a47c1e4a5f3f53027daacd8a9db24f285":[5,0,0,66,38], +"text_8php.html#a4841df5beabdd1bdd1ed56781a915d61":[5,0,0,66,55], +"text_8php.html#a4bbb7d00c05cd20b4e043424f322388f":[5,0,0,66,44], +"text_8php.html#a4e7698aca48982512594b274543c3b9b":[5,0,0,66,54], +"text_8php.html#a543447c5ed766535221e2d9636b379ee":[5,0,0,66,71], +"text_8php.html#a55ab893be57feda59c2a7ba1e58ff2d0":[5,0,0,66,9], +"text_8php.html#a63fb21c0bed2fc72eef2c1471ac42b63":[5,0,0,66,14], +"text_8php.html#a6a3d80a6c6fb234fd0bac44203b828eb":[5,0,0,66,70], +"text_8php.html#a71f6952243d3fe1c5a8154f78027e29c":[5,0,0,66,36], +"text_8php.html#a736db13a966b8abaf8c9198faa35911a":[5,0,0,66,24], +"text_8php.html#a740ad03e00459039a2c0992246c4e727":[5,0,0,66,68], +"text_8php.html#a75c243e06341ec16bd5a44b9b1cacd85":[5,0,0,66,1], +"text_8php.html#a76d1b3435c067978d7b484c45f56472b":[5,0,0,66,23], +"text_8php.html#a85e3a4851c16674834010d8419a5d7ca":[5,0,0,66,8], +"text_8php.html#a876e94892867019935b348b573299352":[5,0,0,66,62], +"text_8php.html#a8796f6a9ca592ecdce7b3afc3462aa13":[5,0,0,66,66], +"text_8php.html#a89929fa6f70a8ba54d5273fcf622b665":[5,0,0,66,19], +"text_8php.html#a8b0a799341b1fc4cba2c3ede3e3fc9b6":[5,0,0,66,53], +"text_8php.html#a8d8c4a11e53461caca21181ebd72daca":[5,0,0,66,18], +"text_8php.html#a95fd2f8f23a1948414a03ebc963bac57":[5,0,0,66,3], +"text_8php.html#a98fd99dee3da8cf4c148dc04efe782ee":[5,0,0,66,48], +"text_8php.html#a9c6ce4e12a4ac883c5e3f36fed6e1e09":[5,0,0,66,59], +"text_8php.html#a9d6a5ee1290de7a8b483fe78585daade":[5,0,0,66,57], +"text_8php.html#a9fbeae13c9abd6e27cb4d8d1817f969c":[5,0,0,66,61], +"text_8php.html#aa46f941155c2ac1155f2f17ffb0adb66":[5,0,0,66,26], +"text_8php.html#aa5148a0dfea2a1ca64c3d52f10aa2d64":[5,0,0,66,16], +"text_8php.html#aa5528f41533927e1bd2da3618a74a6d7":[5,0,0,66,49], +"text_8php.html#aa6b0aa8afbeab50d1a3058ad21acb74e":[5,0,0,66,32], +"text_8php.html#aad557c054cf2ed915633701018fc7e3f":[5,0,0,66,77], +"text_8php.html#aaed4413ed8918838b517e3b2fafaea0d":[5,0,0,66,73], +"text_8php.html#ab4a4c3d4700bc219bb84f33b499314f4":[5,0,0,66,75], +"text_8php.html#ac19d2b33a58372a357a43d51eed19162":[5,0,0,66,50], +"text_8php.html#ac1dbf2e37e8069bea2c0f557fdbf203e":[5,0,0,66,33], +"text_8php.html#aca0f589be74fab1a460c57e88dad9779":[5,0,0,66,63], +"text_8php.html#ace3c98538c63e09b70a363210b414112":[5,0,0,66,20], +"text_8php.html#acedb584f65114a33f389efb796172a91":[5,0,0,66,2], +"text_8php.html#ad6432621d0fafcbcf3d3b9b49bef7784":[5,0,0,66,13], +"text_8php.html#ad855a32bee22c3f3b9734e3a334b96f2":[5,0,0,66,58], +"text_8php.html#adba17ec946f4285285dc100f7860bf51":[5,0,0,66,45], +"text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8":[5,0,0,66,34], +"text_8php.html#ae2126da85966da0e79c6bcbac63b0bda":[5,0,0,66,60], +"text_8php.html#ae4282a39492caa23ccbc2ce98e54f110":[5,0,0,66,17], +"text_8php.html#ae4df74296fbe55051ed3c035e55205e5":[5,0,0,66,51], +"text_8php.html#ae4f6881d7e13623f8eded6277595112a":[5,0,0,66,22], +"text_8php.html#af8a3e3a66a7b862d4510f145d2e13186":[5,0,0,66,0], +"text_8php.html#afc998d2796a6b2a08e96f7cc061e7221":[5,0,0,66,56], +"text_8php.html#afdc69fe3f6c09e35e46304dcea63ae28":[5,0,0,66,21], +"text_8php.html#afe18627c4983ee5f7c940a0992818cd5":[5,0,0,66,12], +"text_8php.html#afe54312607d92f7ce9593f5760831f80":[5,0,0,66,52], +"text_8php.html#afe9f178d264d44a94dc1292aaf0fd585":[5,0,0,66,47], "theme_2redstrap_2php_2default_8php.html":[5,0,3,1,1,0,1], "theme_2redstrap_2php_2default_8php.html#a23bc1996b18e69c1a3ab44536613a762":[5,0,3,1,1,0,1,0], "theme_2redstrap_2php_2theme__init_8php.html":[5,0,3,1,1,0,4], -"thing_8php.html":[5,0,1,92], -"thing_8php.html#a24a35f1e64029a67fdbea94a776ae04b":[5,0,1,92,0], -"thing_8php.html#a8be23b1d475ec3d9291999221c674c80":[5,0,1,92,1], -"toggle__mobile_8php.html":[5,0,1,93], -"toggle__mobile_8php.html#aca53ade8971802b45c31e722b22c6254":[5,0,1,93,0], +"thing_8php.html":[5,0,1,94], +"thing_8php.html#a24a35f1e64029a67fdbea94a776ae04b":[5,0,1,94,0], +"thing_8php.html#a8be23b1d475ec3d9291999221c674c80":[5,0,1,94,1], +"toggle__mobile_8php.html":[5,0,1,95], +"toggle__mobile_8php.html#aca53ade8971802b45c31e722b22c6254":[5,0,1,95,0], "tpldebug_8php.html":[5,0,2,7], "tpldebug_8php.html#a44778457a6c02554812fbfad19d32ba3":[5,0,2,7,0], "tpldebug_8php.html#a5358407d65f2ca826f96356a6642d149":[5,0,2,7,1], @@ -186,18 +213,18 @@ var NAVTREEINDEX6 = "typohelper_8php.html":[5,0,2,9], "typohelper_8php.html#a7542d95618011800c61773127fa625cf":[5,0,2,9,0], "typohelper_8php.html#ab6fd357fb5b2a3ba8aab9e8b98c6a805":[5,0,2,9,1], -"uexport_8php.html":[5,0,1,94], -"uexport_8php.html#a118920137dedebe0581623a2e57e7b0d":[5,0,1,94,0], -"update__channel_8php.html":[5,0,1,95], -"update__channel_8php.html#aca52a9da500f0db2f0a8666af5bc06ba":[5,0,1,95,0], -"update__community_8php.html":[5,0,1,96], -"update__community_8php.html#abdcc5c4ecebbe0b5fcba2755c69cb3b1":[5,0,1,96,0], -"update__display_8php.html":[5,0,1,97], -"update__display_8php.html#aa36ac524059e209d5d75a03c16206246":[5,0,1,97,0], -"update__network_8php.html":[5,0,1,98], -"update__network_8php.html#a8abf5b9f65af6a27ee2f9d7207ed1b41":[5,0,1,98,0], -"update__search_8php.html":[5,0,1,99], -"update__search_8php.html#ace4c3a23fa7d6922399e27c297a6ba52":[5,0,1,99,0], +"uexport_8php.html":[5,0,1,96], +"uexport_8php.html#a118920137dedebe0581623a2e57e7b0d":[5,0,1,96,0], +"update__channel_8php.html":[5,0,1,97], +"update__channel_8php.html#aca52a9da500f0db2f0a8666af5bc06ba":[5,0,1,97,0], +"update__community_8php.html":[5,0,1,98], +"update__community_8php.html#abdcc5c4ecebbe0b5fcba2755c69cb3b1":[5,0,1,98,0], +"update__display_8php.html":[5,0,1,99], +"update__display_8php.html#aa36ac524059e209d5d75a03c16206246":[5,0,1,99,0], +"update__network_8php.html":[5,0,1,100], +"update__network_8php.html#a8abf5b9f65af6a27ee2f9d7207ed1b41":[5,0,1,100,0], +"update__search_8php.html":[5,0,1,101], +"update__search_8php.html#ace4c3a23fa7d6922399e27c297a6ba52":[5,0,1,101,0], "updatetpl_8py.html":[5,0,2,10], "updatetpl_8py.html#a52a85ffa6b6d63d840b185a133478c12":[5,0,2,10,5], "updatetpl_8py.html#a79c20eb62d568c999b56eb08530355d3":[5,0,2,10,2], @@ -213,41 +240,14 @@ var NAVTREEINDEX6 = "view_2theme_2redstrap_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d":[5,0,3,1,1,0,0,1], "view_2theme_2redstrap_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6":[5,0,3,1,1,0,0,2], "view_2theme_2redstrap_2php_2config_8php.html#af58e97b437c1e98a5e434886494cc70e":[5,0,3,1,1,0,0,0], -"view_8php.html":[5,0,1,100], -"view_8php.html#ac168f6c61a91ba2063f13b441c0ae96e":[5,0,1,100,0], -"viewconnections_8php.html":[5,0,1,101], -"viewconnections_8php.html#a00163d50b17568f7b0e48b1ca9ab7330":[5,0,1,101,2], -"viewconnections_8php.html#ab6c4d983e97b3a8a879567ff76507776":[5,0,1,101,1], -"viewconnections_8php.html#ae330cea4cddd091559659f8b469617b6":[5,0,1,101,0], -"viewsrc_8php.html":[5,0,1,102], -"viewsrc_8php.html#a6eff3d0c1d7d14b335c4edb785cd60a4":[5,0,1,102,0], -"wall__attach_8php.html":[5,0,1,103], -"wall__attach_8php.html#a7385e970e93228d082f0fd7254f6e653":[5,0,1,103,0], -"wall__upload_8php.html":[5,0,1,104], -"wall__upload_8php.html#a7cbe204244cf9e0380ee932263a74d8f":[5,0,1,104,0], -"webfinger_8php.html":[5,0,1,105], -"webfinger_8php.html#a17dd28db6d390194bf9ecb809739d1d3":[5,0,1,105,0], -"webpages_8php.html":[5,0,1,106], -"webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d":[5,0,1,106,0], -"webpages_8php.html#af9ad0b65eba79acead3fa32b43d888b7":[5,0,1,106,1], -"wfinger_8php.html":[5,0,1,107], -"wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3":[5,0,1,107,0], -"xchan_8php.html":[5,0,1,108], -"xchan_8php.html#a9853348bf1a35c644460221ba75edc2d":[5,0,1,108,0], -"xrd_8php.html":[5,0,1,109], -"xrd_8php.html#aee3cf087968e4a0ff3a87de16eb23270":[5,0,1,109,0], -"zfinger_8php.html":[5,0,1,110], -"zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0":[5,0,1,110,0], -"zot_8php.html":[5,0,0,65], -"zot_8php.html#a083aec6c900d244e1bfc1406f9461465":[5,0,0,65,11], -"zot_8php.html#a22e3f9b97b7969ddbe43ccf0db93a19c":[5,0,0,65,20], -"zot_8php.html#a2657e141d62d5f67ad3c87651b585299":[5,0,0,65,5], -"zot_8php.html#a31aad56acf8ff8f2353e6ff8595544df":[5,0,0,65,13], -"zot_8php.html#a37ec13b18057634eadb071f05297f5e1":[5,0,0,65,8], -"zot_8php.html#a3862b3161b2c8557dc1a95020179bd81":[5,0,0,65,15], -"zot_8php.html#a3bf11286c2619b4ca28e49d5b5ab374a":[5,0,0,65,3], -"zot_8php.html#a3c9e0b243ba29a7b0c050bd0b86eee32":[5,0,0,65,4], -"zot_8php.html#a55056e863a7860bc0cf922e78fcce073":[5,0,0,65,19], -"zot_8php.html#a5bcdfef419b16075a0eca990956223dc":[5,0,0,65,24], -"zot_8php.html#a61cdc1ec843663c423ed2d8160ae5aea":[5,0,0,65,16] +"view_8php.html":[5,0,1,102], +"view_8php.html#ac168f6c61a91ba2063f13b441c0ae96e":[5,0,1,102,0], +"viewconnections_8php.html":[5,0,1,103], +"viewconnections_8php.html#a00163d50b17568f7b0e48b1ca9ab7330":[5,0,1,103,2], +"viewconnections_8php.html#ab6c4d983e97b3a8a879567ff76507776":[5,0,1,103,1], +"viewconnections_8php.html#ae330cea4cddd091559659f8b469617b6":[5,0,1,103,0], +"viewsrc_8php.html":[5,0,1,104], +"viewsrc_8php.html#a6eff3d0c1d7d14b335c4edb785cd60a4":[5,0,1,104,0], +"wall__attach_8php.html":[5,0,1,105], +"wall__attach_8php.html#a7385e970e93228d082f0fd7254f6e653":[5,0,1,105,0] }; diff --git a/doc/html/navtreeindex7.js b/doc/html/navtreeindex7.js index 5b5f3846a..622c205b8 100644 --- a/doc/html/navtreeindex7.js +++ b/doc/html/navtreeindex7.js @@ -1,20 +1,46 @@ var NAVTREEINDEX7 = { -"zot_8php.html#a666d3efcac00ec1b4a4537a60655f2ab":[5,0,0,65,14], -"zot_8php.html#a703f528ade8382cf374e4119bd6f7859":[5,0,0,65,0], -"zot_8php.html#a77720d6b59894e9b609af89c310c8a4d":[5,0,0,65,17], -"zot_8php.html#a7b23bfb31d4491231e1e73bdc077240d":[5,0,0,65,23], -"zot_8php.html#a928f5643ca66ae9635d85aeb2be62e03":[5,0,0,65,22], -"zot_8php.html#a9a57b40669351c9791126b925cb7ef3b":[5,0,0,65,10], -"zot_8php.html#aa6ae96db8cbbdbb10e6876d206bbf7cc":[5,0,0,65,9], -"zot_8php.html#aad25a3fe0e1566121d6fb8222979bc10":[5,0,0,65,12], -"zot_8php.html#ab0227978011d8601494a7651fa26acf0":[5,0,0,65,6], -"zot_8php.html#ab22d67660702056bf3f4696dcebf5ce7":[5,0,0,65,21], -"zot_8php.html#ab3e9b99ddb11353f37f265a05bb42142":[5,0,0,65,25], -"zot_8php.html#ac301c67864917c35922257950ae0f95c":[5,0,0,65,7], -"zot_8php.html#ac34e479d27f32b82dd6b33542f81a6a7":[5,0,0,65,1], -"zot_8php.html#acdea9362d78a63dce948fdf0ea73ef0e":[5,0,0,65,18], -"zot_8php.html#adfeb9400ae6b726beec89f8f1e8fde72":[5,0,0,65,2], -"zotfeed_8php.html":[5,0,1,111], -"zotfeed_8php.html#a24dfc23d366e7f840cf2847d0c1c8eac":[5,0,1,111,0] +"wall__upload_8php.html":[5,0,1,106], +"wall__upload_8php.html#a7cbe204244cf9e0380ee932263a74d8f":[5,0,1,106,0], +"webfinger_8php.html":[5,0,1,107], +"webfinger_8php.html#a17dd28db6d390194bf9ecb809739d1d3":[5,0,1,107,0], +"webpages_8php.html":[5,0,1,108], +"webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d":[5,0,1,108,0], +"wfinger_8php.html":[5,0,1,109], +"wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3":[5,0,1,109,0], +"xchan_8php.html":[5,0,1,110], +"xchan_8php.html#a9853348bf1a35c644460221ba75edc2d":[5,0,1,110,0], +"xrd_8php.html":[5,0,1,111], +"xrd_8php.html#aee3cf087968e4a0ff3a87de16eb23270":[5,0,1,111,0], +"zfinger_8php.html":[5,0,1,112], +"zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0":[5,0,1,112,0], +"zot_8php.html":[5,0,0,67], +"zot_8php.html#a083aec6c900d244e1bfc1406f9461465":[5,0,0,67,11], +"zot_8php.html#a22e3f9b97b7969ddbe43ccf0db93a19c":[5,0,0,67,20], +"zot_8php.html#a2657e141d62d5f67ad3c87651b585299":[5,0,0,67,5], +"zot_8php.html#a31aad56acf8ff8f2353e6ff8595544df":[5,0,0,67,13], +"zot_8php.html#a37ec13b18057634eadb071f05297f5e1":[5,0,0,67,8], +"zot_8php.html#a3862b3161b2c8557dc1a95020179bd81":[5,0,0,67,15], +"zot_8php.html#a3bf11286c2619b4ca28e49d5b5ab374a":[5,0,0,67,3], +"zot_8php.html#a3c9e0b243ba29a7b0c050bd0b86eee32":[5,0,0,67,4], +"zot_8php.html#a55056e863a7860bc0cf922e78fcce073":[5,0,0,67,19], +"zot_8php.html#a5bcdfef419b16075a0eca990956223dc":[5,0,0,67,24], +"zot_8php.html#a61cdc1ec843663c423ed2d8160ae5aea":[5,0,0,67,16], +"zot_8php.html#a666d3efcac00ec1b4a4537a60655f2ab":[5,0,0,67,14], +"zot_8php.html#a703f528ade8382cf374e4119bd6f7859":[5,0,0,67,0], +"zot_8php.html#a77720d6b59894e9b609af89c310c8a4d":[5,0,0,67,17], +"zot_8php.html#a7b23bfb31d4491231e1e73bdc077240d":[5,0,0,67,23], +"zot_8php.html#a928f5643ca66ae9635d85aeb2be62e03":[5,0,0,67,22], +"zot_8php.html#a9a57b40669351c9791126b925cb7ef3b":[5,0,0,67,10], +"zot_8php.html#aa6ae96db8cbbdbb10e6876d206bbf7cc":[5,0,0,67,9], +"zot_8php.html#aad25a3fe0e1566121d6fb8222979bc10":[5,0,0,67,12], +"zot_8php.html#ab0227978011d8601494a7651fa26acf0":[5,0,0,67,6], +"zot_8php.html#ab22d67660702056bf3f4696dcebf5ce7":[5,0,0,67,21], +"zot_8php.html#ab3e9b99ddb11353f37f265a05bb42142":[5,0,0,67,25], +"zot_8php.html#ac301c67864917c35922257950ae0f95c":[5,0,0,67,7], +"zot_8php.html#ac34e479d27f32b82dd6b33542f81a6a7":[5,0,0,67,1], +"zot_8php.html#acdea9362d78a63dce948fdf0ea73ef0e":[5,0,0,67,18], +"zot_8php.html#adfeb9400ae6b726beec89f8f1e8fde72":[5,0,0,67,2], +"zotfeed_8php.html":[5,0,1,113], +"zotfeed_8php.html#a24dfc23d366e7f840cf2847d0c1c8eac":[5,0,1,113,0] }; diff --git a/doc/html/page__widgets_8php.html b/doc/html/page__widgets_8php.html new file mode 100644 index 000000000..cc6abc718 --- /dev/null +++ b/doc/html/page__widgets_8php.html @@ -0,0 +1,177 @@ + + + + + + +The Red Matrix: include/page_widgets.php File Reference + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    + +
    +
    page_widgets.php File Reference
    +
    +
    + + + + + + +

    +Functions

     writepages_widget ($who, $which)
     
     pagelist_widget ($chan, $who)
     
    +

    Function Documentation

    + +
    +
    + + + + + + + + + + + + + + + + + + +
    pagelist_widget ( $chan,
     $who 
    )
    +
    + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + +
    writepages_widget ( $who,
     $which 
    )
    +
    + +

    Referenced by page_content().

    + +
    +
    +
    +
    + diff --git a/doc/html/page__widgets_8php.js b/doc/html/page__widgets_8php.js new file mode 100644 index 000000000..c6b011186 --- /dev/null +++ b/doc/html/page__widgets_8php.js @@ -0,0 +1,5 @@ +var page__widgets_8php = +[ + [ "pagelist_widget", "page__widgets_8php.html#ad82011c1ed90d9de8b9f34c12af5c6f0", null ], + [ "writepages_widget", "page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f", null ] +]; \ No newline at end of file diff --git a/doc/html/permissions_8php.html b/doc/html/permissions_8php.html index fecb25ff1..9e0fc20d4 100644 --- a/doc/html/permissions_8php.html +++ b/doc/html/permissions_8php.html @@ -195,7 +195,7 @@ Functions
    Returns
    : array of all permissions, key is permission name, value is true or false
    -

    Referenced by change_channel(), channel_content(), connections_content(), editwebpage_content(), lastpost_content(), page_content(), photos_init(), and zfinger_init().

    +

    Referenced by change_channel(), channel_content(), connections_content(), editwebpage_content(), lastpost_content(), page_content(), photos_init(), webpages_content(), and zfinger_init().

    diff --git a/doc/html/php2po_8php.html b/doc/html/php2po_8php.html index bb3d9b4d9..ab6a8167a 100644 --- a/doc/html/php2po_8php.html +++ b/doc/html/php2po_8php.html @@ -168,7 +168,7 @@ Variables
    -

    Referenced by App\__construct(), Template\_get_var(), Template\_replcb_for(), activity_sanitise(), advanced_profile(), aes_encapsulate(), aes_unencapsulate(), build_sync_packet(), connections_content(), connections_post(), contact_poll_interval(), contact_reputation(), get_plugin_info(), get_theme_info(), guess_image_type(), import_directory_profile(), item_photo_menu(), item_store_update(), load_config(), load_pconfig(), load_xconfig(), message_post(), mood_content(), network_init(), new_contact(), FKOAuthDataStore\new_request_token(), obj_verb_selector(), photos_albums_list(), po2php_run(), poco_init(), poke_content(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), requestdata(), App\set_widget(), settings_post(), startup(), syncdirs(), tt(), x(), zfinger_init(), and zot_refresh().

    +

    Referenced by App\__construct(), Template\_get_var(), Template\_replcb_for(), activity_sanitise(), advanced_profile(), aes_encapsulate(), aes_unencapsulate(), build_sync_packet(), connections_content(), connections_post(), contact_poll_interval(), contact_reputation(), get_plugin_info(), get_theme_info(), guess_image_type(), import_directory_profile(), item_photo_menu(), item_store_update(), load_config(), load_pconfig(), load_xconfig(), message_post(), mood_content(), network_init(), new_contact(), FKOAuthDataStore\new_request_token(), obj_verb_selector(), photos_albums_list(), po2php_run(), poco_init(), poke_content(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), requestdata(), App\set_widget(), settings_post(), startup(), syncdirs(), tt(), x(), zfinger_init(), and zot_refresh().

    diff --git a/doc/html/plugin_8php.html b/doc/html/plugin_8php.html index 621da2e45..59d637f3a 100644 --- a/doc/html/plugin_8php.html +++ b/doc/html/plugin_8php.html @@ -190,7 +190,7 @@ Functions
    -

    Referenced by api_login(), atom_author(), atom_entry(), authenticate_success(), avatar_img(), bb2diaspora(), bbcode(), channel_remove(), check_account_email(), check_account_invite(), check_account_password(), connections_content(), connections_post(), contact_block(), contact_select(), conversation(), create_identity(), cronhooks_run(), directory_content(), editpost_content(), editwebpage_content(), event_store(), feature_enabled(), gender_selector(), get_all_perms(), get_atom_elements(), get_features(), get_feed_for(), get_mood_verbs(), get_perms(), get_poke_verbs(), Item\get_template_data(), App\get_widgets(), group_select(), html2bbcode(), import_directory_profile(), item_photo_menu(), item_post(), item_store(), item_store_update(), like_content(), login(), FKOAuth1\loginUser(), magic_init(), mail_store(), marital_selector(), mood_init(), nav(), network_content(), network_to_name(), new_contact(), notification(), notifier_run(), obj_verbs(), oembed_fetch_url(), parse_url_content(), perm_is_allowed(), photo_upload(), photos_content(), ping_init(), post_activity_item(), post_init(), prepare_body(), proc_run(), profile_content(), profile_sidebar(), profile_tabs(), profiles_content(), profiles_post(), settings_post(), sexpref_selector(), siteinfo_content(), smilies(), subthread_content(), validate_channelname(), wfinger_init(), xrd_init(), zid(), and zid_init().

    +

    Referenced by api_login(), atom_author(), atom_entry(), authenticate_success(), avatar_img(), bb2diaspora(), bbcode(), channel_remove(), check_account_email(), check_account_invite(), check_account_password(), connections_content(), connections_post(), contact_block(), contact_select(), conversation(), create_identity(), cronhooks_run(), directory_content(), editpost_content(), editwebpage_content(), event_store(), feature_enabled(), gender_selector(), get_all_perms(), get_atom_elements(), get_features(), get_feed_for(), get_mood_verbs(), get_perms(), get_poke_verbs(), Item\get_template_data(), App\get_widgets(), group_select(), html2bbcode(), import_directory_profile(), item_photo_menu(), item_post(), item_store(), item_store_update(), like_content(), login(), FKOAuth1\loginUser(), magic_init(), mail_store(), marital_selector(), mood_init(), nav(), network_content(), network_to_name(), new_contact(), notification(), notifier_run(), obj_verbs(), oembed_fetch_url(), parse_url_content(), perm_is_allowed(), photo_upload(), photos_content(), ping_init(), post_activity_item(), post_init(), prepare_body(), proc_run(), profile_content(), profile_sidebar(), profile_tabs(), profiles_content(), profiles_post(), settings_post(), sexpref_selector(), siteinfo_content(), smilies(), subthread_content(), validate_channelname(), wfinger_init(), xrd_init(), zid(), and zid_init().

    @@ -282,7 +282,7 @@ Functions
    -

    Referenced by admin_content(), admin_page_dbsync(), admin_page_logs(), admin_page_plugins(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), allfriends_content(), alt_pager(), api_apply_template(), api_content(), apps_content(), App\build_pagehead(), categories_widget(), channel_content(), chanview_content(), check_php(), common_content(), common_friends_visitor_widget(), connections_content(), construct_page(), contact_block(), conversation(), crepair_content(), delegate_content(), directory_content(), dirfind_content(), display_content(), editpost_content(), editwebpage_content(), events_content(), fbrowser_content(), field_timezone(), fileas_widget(), filer_content(), findpeople_widget(), follow_widget(), get_birthdays(), Item\get_comment_box(), get_events(), get_feed_for(), group_content(), group_side(), help_content(), hostxrd_init(), import_content(), intro_content(), invite_content(), lang_selector(), lastpost_content(), login(), lostpass_content(), manage_content(), match_content(), message_aside(), message_content(), micropro(), mini_group_select(), mood_content(), nav(), network_content(), new_channel_content(), nogroup_content(), notification(), notifications_content(), notify_content(), oembed_format_object(), oexchange_init(), opensearch_init(), photos_album_widget(), photos_content(), poco_init(), poke_content(), populate_acl(), posted_date_widget(), profile_sidebar(), profile_tabs(), profiles_content(), redbasic_form(), register_content(), removeme_content(), rmagic_content(), saved_searches(), search_content(), settings_aside(), setup_content(), siteinfo_content(), suggest_content(), thing_content(), vcard_from_xchan(), viewconnections_content(), webpages_content(), and xrd_init().

    +

    Referenced by admin_content(), admin_page_dbsync(), admin_page_logs(), admin_page_plugins(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), allfriends_content(), alt_pager(), api_apply_template(), api_content(), apps_content(), App\build_pagehead(), categories_widget(), channel_content(), chanview_content(), check_php(), common_content(), common_friends_visitor_widget(), connections_content(), construct_page(), contact_block(), conversation(), crepair_content(), delegate_content(), directory_content(), dirfind_content(), display_content(), editpost_content(), editwebpage_content(), events_content(), fbrowser_content(), field_timezone(), fileas_widget(), filer_content(), findpeople_widget(), follow_widget(), get_birthdays(), Item\get_comment_box(), get_events(), get_feed_for(), group_content(), group_side(), help_content(), hostxrd_init(), import_content(), intro_content(), invite_content(), lang_selector(), lastpost_content(), login(), lostpass_content(), manage_content(), match_content(), menu_content(), menu_render(), message_aside(), message_content(), micropro(), mini_group_select(), mitem_content(), mood_content(), nav(), network_content(), new_channel_content(), nogroup_content(), notification(), notifications_content(), notify_content(), oembed_format_object(), oexchange_init(), opensearch_init(), pagelist_widget(), photos_album_widget(), photos_content(), poco_init(), poke_content(), populate_acl(), posted_date_widget(), profile_sidebar(), profile_tabs(), profiles_content(), redbasic_form(), register_content(), removeme_content(), rmagic_content(), saved_searches(), search_content(), settings_aside(), setup_content(), siteinfo_content(), suggest_content(), thing_content(), vcard_from_xchan(), viewconnections_content(), webpages_content(), writepages_widget(), and xrd_init().

    diff --git a/doc/html/redbasic_2php_2style_8php.html b/doc/html/redbasic_2php_2style_8php.html index ca8e146ba..d8fdb6b9a 100644 --- a/doc/html/redbasic_2php_2style_8php.html +++ b/doc/html/redbasic_2php_2style_8php.html @@ -386,7 +386,7 @@ Variables
    -

    Referenced by admin_page_users(), admin_page_users_post(), all_friends(), build_sync_packet(), check_list_permissions(), common_friends(), common_friends_zcid(), contacts_not_grouped(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), current_theme_url(), del_pconfig(), delete_imported_item(), drop_items(), events_post(), feature_enabled(), first_post_date(), fix_attached_photo_permissions(), fix_private_photos(), follow_init(), get_all_perms(), get_pconfig(), get_theme_uid(), group_add(), group_add_member(), group_byname(), group_rec_byhash(), group_rmv(), group_rmv_member(), groups_containing(), import_channel_photo(), item_expire(), item_post(), item_store_update(), items_fetch(), load_contact_links(), load_pconfig(), FKOAuth1\loginUser(), mini_group_select(), mood_init(), new_contact(), notifier_run(), perm_is_allowed(), photo_init(), poke_init(), posted_date_widget(), posted_dates(), private_messages_list(), remove_community_tag(), send_message(), service_class_allows(), service_class_fetch(), set_pconfig(), Conversation\set_profile_owner(), photo_driver\store(), store_item_tag(), suggestion_query(), syncdirs(), tag_deliver(), tagadelic(), tagblock(), tgroup_check(), and zot_feed().

    +

    Referenced by admin_page_users(), admin_page_users_post(), all_friends(), build_sync_packet(), check_list_permissions(), common_friends(), common_friends_zcid(), contacts_not_grouped(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), current_theme_url(), del_pconfig(), delete_imported_item(), drop_items(), events_post(), feature_enabled(), first_post_date(), fix_attached_photo_permissions(), fix_private_photos(), follow_init(), get_all_perms(), get_pconfig(), get_theme_uid(), group_add(), group_add_member(), group_byname(), group_rec_byhash(), group_rmv(), group_rmv_member(), groups_containing(), import_channel_photo(), item_expire(), item_post(), item_store_update(), items_fetch(), load_contact_links(), load_pconfig(), FKOAuth1\loginUser(), menu_add_item(), menu_del_item(), menu_delete(), menu_delete_id(), menu_edit_item(), menu_fetch(), mini_group_select(), mood_init(), new_contact(), notifier_run(), perm_is_allowed(), photo_init(), poke_init(), posted_date_widget(), posted_dates(), private_messages_list(), remove_community_tag(), send_message(), service_class_allows(), service_class_fetch(), set_pconfig(), Conversation\set_profile_owner(), photo_driver\store(), store_item_tag(), suggestion_query(), syncdirs(), tag_deliver(), tagadelic(), tagblock(), tgroup_check(), and zot_feed().

    @@ -400,7 +400,7 @@ Variables
    -

    Referenced by Template\_replcb_for(), Template\_replcb_if(), account_remove(), acl_init(), activity_sanitise(), admin_page_themes(), aes_encapsulate(), argv(), array_sanitise(), attach_store(), autoname(), build_sync_packet(), change_channel(), channel_content(), check_config(), check_form_security_token(), check_list_permissions(), check_webbie(), common_init(), construct_page(), conversation(), crepair_post(), photo_gd\cropImage(), photo_imagick\cropImage(), datesel(), datesel_format(), decode_tags(), deliver_run(), directory_content(), directory_run(), dirfind_content(), display_content(), email_header_encode(), encode_item(), encode_mail(), event_store(), expand_groups(), feature_enabled(), fetch_post_tags(), find_xchan_in_array(), findpeople_widget(), fix_private_photos(), fix_system_urls(), photo_gd\flip(), fsuggest_post(), generate_user_guid(), get_all_perms(), get_item_elements(), get_mail_elements(), get_mentions(), get_profile_elements(), get_terms_oftype(), gprobe_run(), ids_to_querystr(), import_author_xchan(), import_directory_keywords(), import_directory_profile(), import_post(), import_xchan(), invite_content(), invite_post(), item_post(), json_decode_plus(), json_return_and_die(), lastpost_content(), legal_webbie(), lrdd(), magic_init(), manage_content(), match_content(), message_post(), navbar_complete(), network_content(), network_init(), new_channel_init(), new_contact(), notification(), notifier_run(), oembed_fetch_url(), onepoll_run(), parse_xml_string(), perm_is_allowed(), photos_post(), ping_init(), poco_load(), poller_run(), post_init(), post_post(), preg_heart(), prepare_body(), print_template(), private_messages_list(), proc_run(), process_mail_delivery(), profile_init(), profile_load(), profile_photo_post(), public_recips(), dba_mysql\q(), dba_mysqli\q(), randprof_init(), remove_community_tag(), photo_driver\save(), search_ac_init(), send_status_notifications(), App\set_widget(), smilies(), photo_driver\store(), stringify_array_elms(), sync_directories(), tag_deliver(), tagadelic(), tagrm_content(), tagrm_post(), theme_status(), timesel(), toggle_theme(), upgrade_bool_message(), upgrade_message(), valid_email(), webpages_content(), xchan_query(), xmlify(), zfinger_init(), zot_process_response(), zot_refresh(), and zot_register_hub().

    +

    Referenced by Template\_replcb_for(), Template\_replcb_if(), account_remove(), acl_init(), activity_sanitise(), admin_page_themes(), aes_encapsulate(), argv(), array_sanitise(), attach_store(), autoname(), build_sync_packet(), change_channel(), channel_content(), check_config(), check_form_security_token(), check_list_permissions(), check_webbie(), common_init(), construct_page(), conversation(), crepair_post(), photo_gd\cropImage(), photo_imagick\cropImage(), datesel(), datesel_format(), decode_tags(), deliver_run(), directory_content(), directory_run(), dirfind_content(), display_content(), email_header_encode(), encode_item(), encode_mail(), event_store(), expand_groups(), feature_enabled(), fetch_post_tags(), find_xchan_in_array(), findpeople_widget(), fix_private_photos(), fix_system_urls(), photo_gd\flip(), fsuggest_post(), generate_user_guid(), get_all_perms(), get_item_elements(), get_mail_elements(), get_mentions(), get_profile_elements(), get_terms_oftype(), gprobe_run(), ids_to_querystr(), import_author_xchan(), import_directory_keywords(), import_directory_profile(), import_post(), import_xchan(), invite_content(), invite_post(), item_post(), json_decode_plus(), json_return_and_die(), lastpost_content(), legal_webbie(), lrdd(), magic_init(), manage_content(), match_content(), menu_content(), menu_delete_id(), menu_fetch(), menu_render(), message_post(), navbar_complete(), network_content(), network_init(), new_channel_init(), new_contact(), notification(), notifier_run(), oembed_fetch_url(), onepoll_run(), parse_xml_string(), perm_is_allowed(), photos_post(), ping_init(), poco_load(), poller_run(), post_init(), post_post(), preg_heart(), prepare_body(), print_template(), private_messages_list(), proc_run(), process_mail_delivery(), profile_init(), profile_load(), profile_photo_post(), public_recips(), dba_mysql\q(), dba_mysqli\q(), randprof_init(), remove_community_tag(), photo_driver\save(), search_ac_init(), send_status_notifications(), App\set_widget(), smilies(), photo_driver\store(), stringify_array_elms(), sync_directories(), tag_deliver(), tagadelic(), tagrm_content(), tagrm_post(), theme_status(), timesel(), toggle_theme(), upgrade_bool_message(), upgrade_message(), valid_email(), webpages_content(), xchan_query(), xmlify(), zfinger_init(), zot_process_response(), zot_refresh(), and zot_register_hub().

    diff --git a/doc/html/search/all_61.js b/doc/html/search/all_61.js index 615550767..b9a5cab49 100644 --- a/doc/html/search/all_61.js +++ b/doc/html/search/all_61.js @@ -22,6 +22,7 @@ var searchData= ['account_5fremove',['account_remove',['../Contact_8php.html#a3eef54a5523e568a28257c1f9b1644d8',1,'Contact.php']]], ['account_5fremoved',['ACCOUNT_REMOVED',['../boot_8php.html#ab5ddbe69d3d03acd06e1fb281488cb78',1,'boot.php']]], ['account_5frole_5fadmin',['ACCOUNT_ROLE_ADMIN',['../boot_8php.html#ac8400313df2c831653f9036f71ebd86d',1,'boot.php']]], + ['account_5frole_5fallowcode',['ACCOUNT_ROLE_ALLOWCODE',['../boot_8php.html#a84f48897059bbd4a8738d7ee4cec6688',1,'boot.php']]], ['account_5ftotal',['account_total',['../account_8php.html#a43e3042b2723d76915a030bac3c668b6',1,'account.php']]], ['account_5funverified',['ACCOUNT_UNVERIFIED',['../boot_8php.html#af3a4271630aabd8be592213f925d6a36',1,'boot.php']]], ['account_5fverify_5fpassword',['account_verify_password',['../auth_8php.html#a07bae0e623e2daa9ee2cd5a8aa294dee',1,'auth.php']]], diff --git a/doc/html/search/all_69.js b/doc/html/search/all_69.js index bee3f5e56..f548d83db 100644 --- a/doc/html/search/all_69.js +++ b/doc/html/search/all_69.js @@ -41,6 +41,7 @@ var searchData= ['item',['Item',['../classItem.html',1,'']]], ['item_2ephp',['item.php',['../item_8php.html',1,'']]], ['item_5fblocked',['ITEM_BLOCKED',['../boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f',1,'boot.php']]], + ['item_5fbuildblock',['ITEM_BUILDBLOCK',['../boot_8php.html#a7fc4b291a7cdaa48b38e27344ea183cf',1,'boot.php']]], ['item_5fcontent',['item_content',['../item_8php.html#a764bbb2e9a885a86fb23d0b5e4a09221',1,'item.php']]], ['item_5fdelayed_5fpublish',['ITEM_DELAYED_PUBLISH',['../boot_8php.html#ac890557fedc5b5a3b1d996249b1e1a20',1,'boot.php']]], ['item_5fdeleted',['ITEM_DELETED',['../boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49',1,'boot.php']]], @@ -65,8 +66,8 @@ var searchData= ['item_5frelay',['ITEM_RELAY',['../boot_8php.html#a2958a2bd5422b85329d7c36c06dbc221',1,'boot.php']]], ['item_5fspam',['ITEM_SPAM',['../boot_8php.html#a40d885b2cfd736aab4234ae641ca4dfb',1,'boot.php']]], ['item_5fstarred',['ITEM_STARRED',['../boot_8php.html#a7af107fab8d62b9a73801713b774ed30',1,'boot.php']]], - ['item_5fstore',['item_store',['../items_8php.html#a8ef003b2bc2dc4816bdcf5800aec1049',1,'items.php']]], - ['item_5fstore_5fupdate',['item_store_update',['../items_8php.html#a2dc4fb9347f6fb804da4f32c107afb53',1,'items.php']]], + ['item_5fstore',['item_store',['../items_8php.html#a2541e6861a56d145c9281877cc501615',1,'items.php']]], + ['item_5fstore_5fupdate',['item_store_update',['../items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484',1,'items.php']]], ['item_5fthread_5ftop',['ITEM_THREAD_TOP',['../boot_8php.html#a749144d8dd9c1366596a0213c277d050',1,'boot.php']]], ['item_5funpublished',['ITEM_UNPUBLISHED',['../boot_8php.html#adaeb4f590c56326b2dca3b19f31b6272',1,'boot.php']]], ['item_5funseen',['ITEM_UNSEEN',['../boot_8php.html#a009e6a0637cb65804ea8094ecc4450b0',1,'boot.php']]], diff --git a/doc/html/search/all_6d.js b/doc/html/search/all_6d.js index 6f2314df0..9da146382 100644 --- a/doc/html/search/all_6d.js +++ b/doc/html/search/all_6d.js @@ -21,6 +21,23 @@ var searchData= ['max_5fimage_5flength',['MAX_IMAGE_LENGTH',['../boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa',1,'boot.php']]], ['max_5flikers',['MAX_LIKERS',['../boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd',1,'boot.php']]], ['member_5fof',['member_of',['../include_2group_8php.html#a048f6892bfd28852de1b76470df411de',1,'group.php']]], + ['menu_2ephp',['menu.php',['../mod_2menu_8php.html',1,'']]], + ['menu_2ephp',['menu.php',['../include_2menu_8php.html',1,'']]], + ['menu_5fadd_5fitem',['menu_add_item',['../include_2menu_8php.html#add35fae5e9695031b3d46e30ac409eb8',1,'menu.php']]], + ['menu_5fcontent',['menu_content',['../mod_2menu_8php.html#a6fed23af14d71a78a4153c8363a685cf',1,'menu.php']]], + ['menu_5fcreate',['menu_create',['../include_2menu_8php.html#a08a800821721781a8dfffbe31481ff98',1,'menu.php']]], + ['menu_5fdel_5fitem',['menu_del_item',['../include_2menu_8php.html#a9aa8e0052dd47c1a93f53a983bd4620a',1,'menu.php']]], + ['menu_5fdelete',['menu_delete',['../include_2menu_8php.html#a3884bda4d85d84ec99447db9403a68d8',1,'menu.php']]], + ['menu_5fdelete_5fid',['menu_delete_id',['../include_2menu_8php.html#ad87f51ce85172bcc3f931aa0cd96a804',1,'menu.php']]], + ['menu_5fedit',['menu_edit',['../include_2menu_8php.html#a6a33c6a3db2a7510b16cc656edaec571',1,'menu.php']]], + ['menu_5fedit_5fitem',['menu_edit_item',['../include_2menu_8php.html#acb66f80ca895a6ccd562b3d9ae7b41aa',1,'menu.php']]], + ['menu_5ffetch',['menu_fetch',['../include_2menu_8php.html#a68ebbf492470c930f652013656f9071d',1,'menu.php']]], + ['menu_5ffetch_5fid',['menu_fetch_id',['../include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7',1,'menu.php']]], + ['menu_5fitem_5fnewwin',['MENU_ITEM_NEWWIN',['../boot_8php.html#ad11f30a6590d3d77f0c5e1e3909af8f5',1,'boot.php']]], + ['menu_5fitem_5fzid',['MENU_ITEM_ZID',['../boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53',1,'boot.php']]], + ['menu_5flist',['menu_list',['../include_2menu_8php.html#acef15a498d52666b1c7e5c12765c689b',1,'menu.php']]], + ['menu_5fpost',['menu_post',['../mod_2menu_8php.html#aaa491ef173868fe002aece4632bcf393',1,'menu.php']]], + ['menu_5frender',['menu_render',['../include_2menu_8php.html#a890cc6237971e15f15702e6b2e88502e',1,'menu.php']]], ['message_2ephp',['message.php',['../mod_2message_8php.html',1,'']]], ['message_2ephp',['message.php',['../include_2message_8php.html',1,'']]], ['message_5faside',['message_aside',['../mod_2message_8php.html#af4ba72486117cc24335fd8e92a2112a7',1,'message.php']]], @@ -29,6 +46,10 @@ var searchData= ['micropro',['micropro',['../text_8php.html#a2a902f5fdba8646333e997898ac45ea3',1,'text.php']]], ['mini_5fgroup_5fselect',['mini_group_select',['../include_2group_8php.html#ab4d9e5b59f48787cb01baae5dc6c381f',1,'group.php']]], ['minimal_2ephp',['minimal.php',['../minimal_8php.html',1,'']]], + ['mitem_2ephp',['mitem.php',['../mitem_8php.html',1,'']]], + ['mitem_5fcontent',['mitem_content',['../mitem_8php.html#a7a31b702ecad18eeb6a38b243ff0037e',1,'mitem.php']]], + ['mitem_5finit',['mitem_init',['../mitem_8php.html#a9627cd857cafdf04e4fc0ae48c8e8518',1,'mitem.php']]], + ['mitem_5fpost',['mitem_post',['../mitem_8php.html#a6ee694cca4b551a20d7c7a94b5243ec1',1,'mitem.php']]], ['mod_5fimport_2ephp',['mod_import.php',['../mod__import_8php.html',1,'']]], ['mod_5fnew_5fchannel_2ephp',['mod_new_channel.php',['../mod__new__channel_8php.html',1,'']]], ['mod_5fregister_2ephp',['mod_register.php',['../mod__register_8php.html',1,'']]], diff --git a/doc/html/search/all_70.js b/doc/html/search/all_70.js index 9cca403ad..7a849e892 100644 --- a/doc/html/search/all_70.js +++ b/doc/html/search/all_70.js @@ -10,6 +10,8 @@ var searchData= ['page_5finit',['page_init',['../page_8php.html#a4d89800c0366a239191b1692c09635cf',1,'page.php']]], ['page_5fnormal',['PAGE_NORMAL',['../boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3',1,'boot.php']]], ['page_5fremoved',['PAGE_REMOVED',['../boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6',1,'boot.php']]], + ['page_5fwidgets_2ephp',['page_widgets.php',['../page__widgets_8php.html',1,'']]], + ['pagelist_5fwidget',['pagelist_widget',['../page__widgets_8php.html#ad82011c1ed90d9de8b9f34c12af5c6f0',1,'page_widgets.php']]], ['paginate',['paginate',['../text_8php.html#afe9f178d264d44a94dc1292aaf0fd585',1,'text.php']]], ['parse_5furl_2ephp',['parse_url.php',['../parse__url_8php.html',1,'']]], ['parse_5furl_5fcontent',['parse_url_content',['../parse__url_8php.html#a05a9e8944380ba3cf6bbf5893dd4b74b',1,'parse_url.php']]], diff --git a/doc/html/search/all_72.js b/doc/html/search/all_72.js index b6f0d62cc..258013f98 100644 --- a/doc/html/search/all_72.js +++ b/doc/html/search/all_72.js @@ -7,6 +7,7 @@ var searchData= ['random_5fstring_5ftext',['RANDOM_STRING_TEXT',['../text_8php.html#a2ffd79c60cc87cec24ef76447b905187',1,'text.php']]], ['randprof_2ephp',['randprof.php',['../randprof_8php.html',1,'']]], ['randprof_5finit',['randprof_init',['../randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090',1,'randprof.php']]], + ['rconnect_5furl',['rconnect_url',['../Contact_8php.html#a2f4f495d53f2a334ab75292af79d3c91',1,'Contact.php']]], ['rdelim',['rdelim',['../namespacefriendica-to-smarty-tpl.html#a8540514fb7c4aa18ad2dffa2a975036b',1,'friendica-to-smarty-tpl']]], ['readme_2emd',['README.md',['../README_8md.html',1,'']]], ['rebuild_5ftheme_5ftable',['rebuild_theme_table',['../admin_8php.html#ae46311a3fefc21abc838a26e91789de6',1,'admin.php']]], diff --git a/doc/html/search/all_77.js b/doc/html/search/all_77.js index 61f0635f7..cdf98bbd7 100644 --- a/doc/html/search/all_77.js +++ b/doc/html/search/all_77.js @@ -10,9 +10,9 @@ var searchData= ['webfinger_5fdfrn',['webfinger_dfrn',['../include_2network_8php.html#adf6008b38c555e98e7ed10da9ede2335',1,'network.php']]], ['webpages_2ephp',['webpages.php',['../webpages_8php.html',1,'']]], ['webpages_5fcontent',['webpages_content',['../webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d',1,'webpages.php']]], - ['webpages_5finit',['webpages_init',['../webpages_8php.html#af9ad0b65eba79acead3fa32b43d888b7',1,'webpages.php']]], ['wfinger_2ephp',['wfinger.php',['../wfinger_8php.html',1,'']]], ['wfinger_5finit',['wfinger_init',['../wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3',1,'wfinger.php']]], ['what_5fnext',['what_next',['../setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58',1,'setup.php']]], - ['while',['while',['../docblox__errorchecker_8php.html#af4ca738a05beffe9c8c23e1f7aea3c2d',1,'docblox_errorchecker.php']]] + ['while',['while',['../docblox__errorchecker_8php.html#af4ca738a05beffe9c8c23e1f7aea3c2d',1,'docblox_errorchecker.php']]], + ['writepages_5fwidget',['writepages_widget',['../page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f',1,'page_widgets.php']]] ]; diff --git a/doc/html/search/files_6d.js b/doc/html/search/files_6d.js index dfe1de471..f834737b3 100644 --- a/doc/html/search/files_6d.js +++ b/doc/html/search/files_6d.js @@ -3,9 +3,12 @@ var searchData= ['magic_2ephp',['magic.php',['../magic_8php.html',1,'']]], ['manage_2ephp',['manage.php',['../manage_8php.html',1,'']]], ['match_2ephp',['match.php',['../match_8php.html',1,'']]], + ['menu_2ephp',['menu.php',['../mod_2menu_8php.html',1,'']]], + ['menu_2ephp',['menu.php',['../include_2menu_8php.html',1,'']]], ['message_2ephp',['message.php',['../mod_2message_8php.html',1,'']]], ['message_2ephp',['message.php',['../include_2message_8php.html',1,'']]], ['minimal_2ephp',['minimal.php',['../minimal_8php.html',1,'']]], + ['mitem_2ephp',['mitem.php',['../mitem_8php.html',1,'']]], ['mod_5fimport_2ephp',['mod_import.php',['../mod__import_8php.html',1,'']]], ['mod_5fnew_5fchannel_2ephp',['mod_new_channel.php',['../mod__new__channel_8php.html',1,'']]], ['mod_5fregister_2ephp',['mod_register.php',['../mod__register_8php.html',1,'']]], diff --git a/doc/html/search/files_70.js b/doc/html/search/files_70.js index 3559e86e1..e36344f95 100644 --- a/doc/html/search/files_70.js +++ b/doc/html/search/files_70.js @@ -1,6 +1,7 @@ var searchData= [ ['page_2ephp',['page.php',['../page_8php.html',1,'']]], + ['page_5fwidgets_2ephp',['page_widgets.php',['../page__widgets_8php.html',1,'']]], ['parse_5furl_2ephp',['parse_url.php',['../parse__url_8php.html',1,'']]], ['permissions_2ephp',['permissions.php',['../permissions_8php.html',1,'']]], ['photo_2ephp',['photo.php',['../photo_8php.html',1,'']]], diff --git a/doc/html/search/functions_69.js b/doc/html/search/functions_69.js index d4c48a47b..67ee74f80 100644 --- a/doc/html/search/functions_69.js +++ b/doc/html/search/functions_69.js @@ -44,7 +44,7 @@ var searchData= ['item_5fpost',['item_post',['../item_8php.html#a693cd09805755ab85bbb5ecae69a48c3',1,'item.php']]], ['item_5fpost_5ftype',['item_post_type',['../text_8php.html#ac1dbf2e37e8069bea2c0f557fdbf203e',1,'text.php']]], ['item_5fredir_5fand_5freplace_5fimages',['item_redir_and_replace_images',['../conversation_8php.html#adda79b75bf1ccf6ce9503aa310953533',1,'conversation.php']]], - ['item_5fstore',['item_store',['../items_8php.html#a8ef003b2bc2dc4816bdcf5800aec1049',1,'items.php']]], - ['item_5fstore_5fupdate',['item_store_update',['../items_8php.html#a2dc4fb9347f6fb804da4f32c107afb53',1,'items.php']]], + ['item_5fstore',['item_store',['../items_8php.html#a2541e6861a56d145c9281877cc501615',1,'items.php']]], + ['item_5fstore_5fupdate',['item_store_update',['../items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484',1,'items.php']]], ['items_5ffetch',['items_fetch',['../items_8php.html#a756738301f2ed96be50232500677d58a',1,'items.php']]] ]; diff --git a/doc/html/search/functions_6d.js b/doc/html/search/functions_6d.js index cd02081da..3fcb290fb 100644 --- a/doc/html/search/functions_6d.js +++ b/doc/html/search/functions_6d.js @@ -10,11 +10,27 @@ var searchData= ['marital_5fselector',['marital_selector',['../profile__selectors_8php.html#a7473dd095987e1cdcc79d4f0bb5e6798',1,'profile_selectors.php']]], ['match_5fcontent',['match_content',['../match_8php.html#a1dd853e959b9e70c1911bb2fb5f5130d',1,'match.php']]], ['member_5fof',['member_of',['../include_2group_8php.html#a048f6892bfd28852de1b76470df411de',1,'group.php']]], + ['menu_5fadd_5fitem',['menu_add_item',['../include_2menu_8php.html#add35fae5e9695031b3d46e30ac409eb8',1,'menu.php']]], + ['menu_5fcontent',['menu_content',['../mod_2menu_8php.html#a6fed23af14d71a78a4153c8363a685cf',1,'menu.php']]], + ['menu_5fcreate',['menu_create',['../include_2menu_8php.html#a08a800821721781a8dfffbe31481ff98',1,'menu.php']]], + ['menu_5fdel_5fitem',['menu_del_item',['../include_2menu_8php.html#a9aa8e0052dd47c1a93f53a983bd4620a',1,'menu.php']]], + ['menu_5fdelete',['menu_delete',['../include_2menu_8php.html#a3884bda4d85d84ec99447db9403a68d8',1,'menu.php']]], + ['menu_5fdelete_5fid',['menu_delete_id',['../include_2menu_8php.html#ad87f51ce85172bcc3f931aa0cd96a804',1,'menu.php']]], + ['menu_5fedit',['menu_edit',['../include_2menu_8php.html#a6a33c6a3db2a7510b16cc656edaec571',1,'menu.php']]], + ['menu_5fedit_5fitem',['menu_edit_item',['../include_2menu_8php.html#acb66f80ca895a6ccd562b3d9ae7b41aa',1,'menu.php']]], + ['menu_5ffetch',['menu_fetch',['../include_2menu_8php.html#a68ebbf492470c930f652013656f9071d',1,'menu.php']]], + ['menu_5ffetch_5fid',['menu_fetch_id',['../include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7',1,'menu.php']]], + ['menu_5flist',['menu_list',['../include_2menu_8php.html#acef15a498d52666b1c7e5c12765c689b',1,'menu.php']]], + ['menu_5fpost',['menu_post',['../mod_2menu_8php.html#aaa491ef173868fe002aece4632bcf393',1,'menu.php']]], + ['menu_5frender',['menu_render',['../include_2menu_8php.html#a890cc6237971e15f15702e6b2e88502e',1,'menu.php']]], ['message_5faside',['message_aside',['../mod_2message_8php.html#af4ba72486117cc24335fd8e92a2112a7',1,'message.php']]], ['message_5fcontent',['message_content',['../mod_2message_8php.html#a3547ed86d09a4bb8fa64ec374a40ee79',1,'message.php']]], ['message_5fpost',['message_post',['../mod_2message_8php.html#a0db7030362a7e9ed9549b341d7b35718',1,'message.php']]], ['micropro',['micropro',['../text_8php.html#a2a902f5fdba8646333e997898ac45ea3',1,'text.php']]], ['mini_5fgroup_5fselect',['mini_group_select',['../include_2group_8php.html#ab4d9e5b59f48787cb01baae5dc6c381f',1,'group.php']]], + ['mitem_5fcontent',['mitem_content',['../mitem_8php.html#a7a31b702ecad18eeb6a38b243ff0037e',1,'mitem.php']]], + ['mitem_5finit',['mitem_init',['../mitem_8php.html#a9627cd857cafdf04e4fc0ae48c8e8518',1,'mitem.php']]], + ['mitem_5fpost',['mitem_post',['../mitem_8php.html#a6ee694cca4b551a20d7c7a94b5243ec1',1,'mitem.php']]], ['mood_5fcontent',['mood_content',['../mood_8php.html#a721b9b6703b3234a005641c92d409b8f',1,'mood.php']]], ['mood_5finit',['mood_init',['../mood_8php.html#a7ae136dd7476865b4828136175db5022',1,'mood.php']]], ['msearch_5fpost',['msearch_post',['../msearch_8php.html#ac80d2a6c0a92e79eec7efbbccd74d9a8',1,'msearch.php']]] diff --git a/doc/html/search/functions_70.js b/doc/html/search/functions_70.js index 4c662ee55..dd9bcd53f 100644 --- a/doc/html/search/functions_70.js +++ b/doc/html/search/functions_70.js @@ -2,6 +2,7 @@ var searchData= [ ['page_5fcontent',['page_content',['../page_8php.html#a91a5f649f68406149108bded1dc90b22',1,'page.php']]], ['page_5finit',['page_init',['../page_8php.html#a4d89800c0366a239191b1692c09635cf',1,'page.php']]], + ['pagelist_5fwidget',['pagelist_widget',['../page__widgets_8php.html#ad82011c1ed90d9de8b9f34c12af5c6f0',1,'page_widgets.php']]], ['paginate',['paginate',['../text_8php.html#afe9f178d264d44a94dc1292aaf0fd585',1,'text.php']]], ['parse_5furl_5fcontent',['parse_url_content',['../parse__url_8php.html#a05a9e8944380ba3cf6bbf5893dd4b74b',1,'parse_url.php']]], ['parse_5fxml_5fstring',['parse_xml_string',['../include_2network_8php.html#a27a951b59d8d622c0b3e7b0673ba74c6',1,'network.php']]], diff --git a/doc/html/search/functions_72.js b/doc/html/search/functions_72.js index 167c34050..012c67ade 100644 --- a/doc/html/search/functions_72.js +++ b/doc/html/search/functions_72.js @@ -3,6 +3,7 @@ var searchData= ['random_5fprofile',['random_profile',['../Contact_8php.html#a91281b5d4bbbb2ed468e27ec82ca083c',1,'Contact.php']]], ['random_5fstring',['random_string',['../text_8php.html#a9d6a5ee1290de7a8b483fe78585daade',1,'text.php']]], ['randprof_5finit',['randprof_init',['../randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090',1,'randprof.php']]], + ['rconnect_5furl',['rconnect_url',['../Contact_8php.html#a2f4f495d53f2a334ab75292af79d3c91',1,'Contact.php']]], ['rebuild_5ftheme_5ftable',['rebuild_theme_table',['../admin_8php.html#ae46311a3fefc21abc838a26e91789de6',1,'admin.php']]], ['red_5fzrl_5fcallback',['red_zrl_callback',['../items_8php.html#a4e6d7639431e0dd8e9f4dba8e1ac408b',1,'items.php']]], ['redbasic_5fform',['redbasic_form',['../view_2theme_2redbasic_2php_2config_8php.html#a29a6e1ef07465d1617d836b859b3b2b2',1,'redbasic_form(&$a, $font_size, $line_height, $colour, $shadow, $navcolour, $opaquenav, $displaystyle, $linkcolour, $iconset, $shiny, $colour_scheme, $radius): config.php'],['../view_2theme_2redstrap_2php_2config_8php.html#af58e97b437c1e98a5e434886494cc70e',1,'redbasic_form(&$a, $font_size, $line_height, $colour, $shadow, $navcolour, $opaquenav, $displaystyle, $linkcolour, $iconset, $shiny): config.php']]], diff --git a/doc/html/search/functions_77.js b/doc/html/search/functions_77.js index 78e960294..58fdbc3ed 100644 --- a/doc/html/search/functions_77.js +++ b/doc/html/search/functions_77.js @@ -6,7 +6,7 @@ var searchData= ['webfinger_5fcontent',['webfinger_content',['../webfinger_8php.html#a17dd28db6d390194bf9ecb809739d1d3',1,'webfinger.php']]], ['webfinger_5fdfrn',['webfinger_dfrn',['../include_2network_8php.html#adf6008b38c555e98e7ed10da9ede2335',1,'network.php']]], ['webpages_5fcontent',['webpages_content',['../webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d',1,'webpages.php']]], - ['webpages_5finit',['webpages_init',['../webpages_8php.html#af9ad0b65eba79acead3fa32b43d888b7',1,'webpages.php']]], ['wfinger_5finit',['wfinger_init',['../wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3',1,'wfinger.php']]], - ['what_5fnext',['what_next',['../setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58',1,'setup.php']]] + ['what_5fnext',['what_next',['../setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58',1,'setup.php']]], + ['writepages_5fwidget',['writepages_widget',['../page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f',1,'page_widgets.php']]] ]; diff --git a/doc/html/search/variables_61.js b/doc/html/search/variables_61.js index 916f8f330..476b99065 100644 --- a/doc/html/search/variables_61.js +++ b/doc/html/search/variables_61.js @@ -16,6 +16,7 @@ var searchData= ['account_5fpending',['ACCOUNT_PENDING',['../boot_8php.html#a032bbd6d0321e99e9117332c9ed2b1b8',1,'boot.php']]], ['account_5fremoved',['ACCOUNT_REMOVED',['../boot_8php.html#ab5ddbe69d3d03acd06e1fb281488cb78',1,'boot.php']]], ['account_5frole_5fadmin',['ACCOUNT_ROLE_ADMIN',['../boot_8php.html#ac8400313df2c831653f9036f71ebd86d',1,'boot.php']]], + ['account_5frole_5fallowcode',['ACCOUNT_ROLE_ALLOWCODE',['../boot_8php.html#a84f48897059bbd4a8738d7ee4cec6688',1,'boot.php']]], ['account_5funverified',['ACCOUNT_UNVERIFIED',['../boot_8php.html#af3a4271630aabd8be592213f925d6a36',1,'boot.php']]], ['activity_5fdislike',['ACTIVITY_DISLIKE',['../boot_8php.html#a0e57f846e6d47a308feced0f7274f178',1,'boot.php']]], ['activity_5ffavorite',['ACTIVITY_FAVORITE',['../boot_8php.html#a3e2ea123d29a72012db1241f96280b0e',1,'boot.php']]], diff --git a/doc/html/search/variables_69.js b/doc/html/search/variables_69.js index 382d21761..60b01ebbf 100644 --- a/doc/html/search/variables_69.js +++ b/doc/html/search/variables_69.js @@ -2,6 +2,7 @@ var searchData= [ ['if',['if',['../php2po_8php.html#a45b05625748f412ec97afcd61cf7980b',1,'if(): php2po.php'],['../php_2default_8php.html#a23bc1996b18e69c1a3ab44536613a762',1,'if(): default.php'],['../full_8php.html#a6fac1b4b8cdfde06ea1b7713479e92db',1,'if(): full.php'],['../redbasic_2php_2style_8php.html#ac4c6bc3cd9cc92204f04cf6cb34b47dd',1,'if(): style.php'],['../theme_2redstrap_2php_2default_8php.html#a23bc1996b18e69c1a3ab44536613a762',1,'if(): default.php'],['../redstrap_2php_2style_8php.html#a0c4684da834439885ae2285649d1aaea',1,'if(): style.php']]], ['item_5fblocked',['ITEM_BLOCKED',['../boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f',1,'boot.php']]], + ['item_5fbuildblock',['ITEM_BUILDBLOCK',['../boot_8php.html#a7fc4b291a7cdaa48b38e27344ea183cf',1,'boot.php']]], ['item_5fdelayed_5fpublish',['ITEM_DELAYED_PUBLISH',['../boot_8php.html#ac890557fedc5b5a3b1d996249b1e1a20',1,'boot.php']]], ['item_5fdeleted',['ITEM_DELETED',['../boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49',1,'boot.php']]], ['item_5fhidden',['ITEM_HIDDEN',['../boot_8php.html#ac99fc4d040764eac1736bec6973556fe',1,'boot.php']]], diff --git a/doc/html/search/variables_6d.js b/doc/html/search/variables_6d.js index 45bb59275..4996247cb 100644 --- a/doc/html/search/variables_6d.js +++ b/doc/html/search/variables_6d.js @@ -7,5 +7,7 @@ var searchData= ['mail_5freplied',['MAIL_REPLIED',['../boot_8php.html#aa3679df31c8dad1b71816b0322d5baff',1,'boot.php']]], ['mail_5fseen',['MAIL_SEEN',['../boot_8php.html#a1fbb93cf030f07391f22cc2948744869',1,'boot.php']]], ['max_5fimage_5flength',['MAX_IMAGE_LENGTH',['../boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa',1,'boot.php']]], - ['max_5flikers',['MAX_LIKERS',['../boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd',1,'boot.php']]] + ['max_5flikers',['MAX_LIKERS',['../boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd',1,'boot.php']]], + ['menu_5fitem_5fnewwin',['MENU_ITEM_NEWWIN',['../boot_8php.html#ad11f30a6590d3d77f0c5e1e3909af8f5',1,'boot.php']]], + ['menu_5fitem_5fzid',['MENU_ITEM_ZID',['../boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53',1,'boot.php']]] ]; diff --git a/doc/html/security_8php.html b/doc/html/security_8php.html index 59a5836f0..267d175c2 100644 --- a/doc/html/security_8php.html +++ b/doc/html/security_8php.html @@ -397,7 +397,7 @@ Functions

    Profile owner - everything is visible

    Authenticated visitor. Unless pre-verified, check that the contact belongs to this $owner_id and load the groups the visitor belongs to. If pre-verified, the caller is expected to have already done this and passed the groups into this function.

    -

    Referenced by attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_list_files(), photo_init(), photos_albums_list(), photos_content(), photos_list_photos(), and z_readdir().

    +

    Referenced by attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_list_files(), menu_fetch(), photo_init(), photos_albums_list(), photos_content(), photos_list_photos(), and z_readdir().

    diff --git a/doc/html/taxonomy_8php.html b/doc/html/taxonomy_8php.html index 0596dfa94..bf42e21e7 100644 --- a/doc/html/taxonomy_8php.html +++ b/doc/html/taxonomy_8php.html @@ -246,7 +246,7 @@ Functions
    -

    Referenced by conversation(), item_getfeedtags(), prepare_body(), tag_deliver(), and tgroup_check().

    +

    Referenced by conversation(), item_expire(), item_getfeedtags(), prepare_body(), tag_deliver(), and tgroup_check().

    diff --git a/doc/html/text_8php.html b/doc/html/text_8php.html index 7071491b8..d00a44abb 100644 --- a/doc/html/text_8php.html +++ b/doc/html/text_8php.html @@ -651,7 +651,7 @@ Variables
    Returns
    string
    -

    Referenced by admin_page_logs(), channel_content(), create_identity(), events_post(), fsuggest_post(), get_atom_elements(), item_post(), item_store(), item_store_update(), mail_store(), message_content(), message_post(), network_content(), post_activity_item(), printable(), profiles_post(), and thing_init().

    +

    Referenced by admin_page_logs(), channel_content(), create_identity(), events_post(), fsuggest_post(), get_atom_elements(), item_post(), item_store(), item_store_update(), mail_store(), menu_add_item(), menu_create(), menu_edit(), menu_edit_item(), message_content(), message_post(), network_content(), post_activity_item(), printable(), profiles_post(), and thing_init().

    @@ -1140,7 +1140,7 @@ Variables
    -

    Referenced by account_remove(), account_verify_password(), Item\add_child(), Conversation\add_thread(), advanced_profile(), aes_encapsulate(), allowed_public_recips(), api_call(), api_channel_stream(), api_export_basic(), api_favorites(), api_get_user(), api_login(), api_statuses_destroy(), api_statuses_mediap(), api_statuses_repeat(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), authenticate_success(), avatar_img(), base64url_decode(), build_sync_packet(), channel_remove(), chanview_content(), check_config(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), consume_feed(), conversation(), create_account(), create_identity(), crepair_post(), cronhooks_run(), datetime_convert(), delete_imported_item(), deliver_run(), detect_language(), dfrn_deliver(), directory_content(), directory_run(), display_content(), email_send(), encode_item(), expire_run(), feed_init(), fetch_lrdd_template(), fetch_xrd_links(), filer_content(), filerm_content(), fix_private_photos(), Conversation\get_template_data(), group_content(), guess_image_type(), head_set_icon(), http_status_exit(), import_author_xchan(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), item_expire(), item_post(), item_store(), item_store_update(), like_content(), limit_body_size(), load_plugin(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_token(), lrdd(), magic_init(), mail_store(), message_content(), message_post(), mini_group_select(), mood_init(), network_content(), FKOAuthDataStore\new_access_token(), new_contact(), new_keypair(), FKOAuthDataStore\new_request_token(), notification(), notifier_run(), onepoll_run(), parse_url_content(), parse_xml_string(), photo_init(), photo_upload(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), post_activity_item(), post_init(), post_post(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), process_profile_delivery(), profile_load(), public_recips(), dba_mysql\q(), dba_mysqli\q(), q(), queue_run(), redir_init(), register_content(), reload_plugins(), Item\remove_child(), remove_community_tag(), remove_queue_item(), scale_external_images(), search_ac_init(), enotify\send(), send_reg_approval_email(), Conversation\set_mode(), subthread_content(), syncdirs(), tag_deliver(), tagger_content(), tgroup_check(), uninstall_plugin(), unload_plugin(), update_imported_item(), update_queue_time(), webfinger(), webfinger_dfrn(), xml2array(), xml_status(), zfinger_init(), zid_init(), zot_build_packet(), zot_fetch(), zot_finger(), zot_gethub(), zot_import(), zot_process_response(), zot_refresh(), and zot_register_hub().

    +

    Referenced by account_remove(), account_verify_password(), Item\add_child(), Conversation\add_thread(), advanced_profile(), aes_encapsulate(), allowed_public_recips(), api_call(), api_channel_stream(), api_export_basic(), api_favorites(), api_get_user(), api_login(), api_statuses_destroy(), api_statuses_mediap(), api_statuses_repeat(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), authenticate_success(), avatar_img(), base64url_decode(), build_sync_packet(), channel_remove(), chanview_content(), check_config(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), consume_feed(), conversation(), create_account(), create_identity(), crepair_post(), cronhooks_run(), datetime_convert(), delete_imported_item(), deliver_run(), detect_language(), dfrn_deliver(), directory_content(), directory_run(), display_content(), email_send(), encode_item(), expire_run(), feed_init(), fetch_lrdd_template(), fetch_xrd_links(), filer_content(), filerm_content(), fix_private_photos(), Conversation\get_template_data(), group_content(), guess_image_type(), head_set_icon(), http_status_exit(), import_author_xchan(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), item_expire(), item_post(), item_store(), item_store_update(), like_content(), limit_body_size(), load_plugin(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_token(), lrdd(), magic_init(), mail_store(), menu_edit(), message_content(), message_post(), mini_group_select(), mood_init(), network_content(), FKOAuthDataStore\new_access_token(), new_contact(), new_keypair(), FKOAuthDataStore\new_request_token(), notification(), notifier_run(), onepoll_run(), parse_url_content(), parse_xml_string(), photo_init(), photo_upload(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), post_activity_item(), post_init(), post_post(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), process_profile_delivery(), profile_load(), public_recips(), dba_mysql\q(), dba_mysqli\q(), q(), queue_run(), redir_init(), register_content(), reload_plugins(), Item\remove_child(), remove_community_tag(), remove_queue_item(), scale_external_images(), search_ac_init(), enotify\send(), send_reg_approval_email(), Conversation\set_mode(), subthread_content(), syncdirs(), tag_deliver(), tagger_content(), tgroup_check(), uninstall_plugin(), unload_plugin(), update_imported_item(), update_queue_time(), webfinger(), webfinger_dfrn(), xml2array(), xml_status(), zfinger_init(), zid_init(), zot_build_packet(), zot_fetch(), zot_finger(), zot_gethub(), zot_import(), zot_process_response(), zot_refresh(), and zot_register_hub().

    @@ -1293,7 +1293,7 @@ Variables
    Returns
    string Filtered string
    -

    Referenced by admin_page_logs_post(), admin_page_site_post(), community_content(), connections_content(), conversation(), create_account(), directory_content(), dirfind_content(), follow_init(), get_atom_elements(), group_post(), help_content(), invite_post(), item_post(), item_store(), item_store_update(), like_content(), lostpass_post(), mail_store(), message_post(), mood_init(), network_content(), oexchange_content(), photos_post(), poco_init(), poke_init(), profile_tabs(), profiles_post(), qsearch_init(), register_post(), sanitise_acl(), settings_post(), setup_content(), setup_post(), subthread_content(), tagger_content(), and xrd_init().

    +

    Referenced by admin_page_logs_post(), admin_page_site_post(), community_content(), connections_content(), conversation(), create_account(), directory_content(), dirfind_content(), follow_init(), get_atom_elements(), group_post(), help_content(), invite_post(), item_post(), item_store(), item_store_update(), like_content(), lostpass_post(), mail_store(), message_post(), mood_init(), network_content(), oexchange_content(), photos_post(), poco_init(), poke_init(), profile_tabs(), profiles_post(), qsearch_init(), register_post(), sanitise_acl(), settings_post(), setup_content(), setup_post(), subthread_content(), tagger_content(), and xrd_init().

    @@ -1329,7 +1329,7 @@ Variables
    -

    Referenced by events_post(), item_post(), photo_upload(), photos_post(), and settings_post().

    +

    Referenced by events_post(), item_post(), menu_add_item(), menu_edit_item(), mitem_post(), photo_upload(), photos_post(), and settings_post().

    @@ -1532,7 +1532,7 @@ Variables
    -

    Referenced by aes_encapsulate(), attach_store(), build_sync_packet(), create_account(), create_identity(), dfrn_deliver(), event_store(), fsuggest_post(), generate_user_guid(), group_add(), item_message_id(), item_store(), lostpass_content(), lostpass_post(), magic_init(), mail_store(), notification(), notifier_run(), prepare_body(), profiles_init(), redir_init(), removeme_content(), send_message(), send_reg_approval_email(), settings_post(), setup_post(), and thing_init().

    +

    Referenced by aes_encapsulate(), attach_store(), build_sync_packet(), create_account(), create_identity(), dfrn_deliver(), event_store(), fsuggest_post(), generate_user_guid(), group_add(), item_message_id(), item_store(), lostpass_content(), lostpass_post(), magic_init(), mail_store(), notification(), notifier_run(), prepare_body(), profiles_init(), redir_init(), removeme_content(), send_message(), send_reg_approval_email(), settings_post(), setup_post(), and thing_init().

    @@ -1597,7 +1597,7 @@ Variables
    Returns
    string substituted string
    -

    Referenced by admin_content(), admin_page_dbsync(), admin_page_logs(), admin_page_plugins(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), allfriends_content(), alt_pager(), api_apply_template(), api_content(), apps_content(), App\build_pagehead(), categories_widget(), channel_content(), chanview_content(), check_config(), check_php(), common_content(), common_friends_visitor_widget(), connections_content(), construct_page(), contact_block(), conversation(), crepair_content(), delegate_content(), directory_content(), dirfind_content(), display_content(), editpost_content(), editwebpage_content(), events_content(), fbrowser_content(), field_timezone(), fileas_widget(), filer_content(), findpeople_widget(), follow_widget(), get_birthdays(), Item\get_comment_box(), get_events(), get_feed_for(), group_content(), group_side(), help_content(), hostxrd_init(), import_content(), intro_content(), invite_content(), lang_selector(), lastpost_content(), login(), lostpass_content(), lostpass_post(), manage_content(), match_content(), message_aside(), message_content(), micropro(), mini_group_select(), mood_content(), nav(), network_content(), new_channel_content(), nogroup_content(), notification(), notifications_content(), notify_content(), oembed_format_object(), oexchange_init(), opensearch_init(), photos_album_widget(), photos_content(), poco_init(), poke_content(), populate_acl(), posted_date_widget(), profile_sidebar(), profile_tabs(), profiles_content(), redbasic_form(), register_content(), removeme_content(), rmagic_content(), saved_searches(), search_content(), send_reg_approval_email(), send_verification_email(), settings_aside(), setup_content(), setup_post(), siteinfo_content(), suggest_content(), thing_content(), user_allow(), vcard_from_xchan(), viewconnections_content(), webpages_content(), and xrd_init().

    +

    Referenced by admin_content(), admin_page_dbsync(), admin_page_logs(), admin_page_plugins(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), allfriends_content(), alt_pager(), api_apply_template(), api_content(), apps_content(), App\build_pagehead(), categories_widget(), channel_content(), chanview_content(), check_config(), check_php(), common_content(), common_friends_visitor_widget(), connections_content(), construct_page(), contact_block(), conversation(), crepair_content(), delegate_content(), directory_content(), dirfind_content(), display_content(), editpost_content(), editwebpage_content(), events_content(), fbrowser_content(), field_timezone(), fileas_widget(), filer_content(), findpeople_widget(), follow_widget(), get_birthdays(), Item\get_comment_box(), get_events(), get_feed_for(), group_content(), group_side(), help_content(), hostxrd_init(), import_content(), intro_content(), invite_content(), lang_selector(), lastpost_content(), login(), lostpass_content(), lostpass_post(), manage_content(), match_content(), menu_content(), menu_render(), message_aside(), message_content(), micropro(), mini_group_select(), mitem_content(), mood_content(), nav(), network_content(), new_channel_content(), nogroup_content(), notification(), notifications_content(), notify_content(), oembed_format_object(), oexchange_init(), opensearch_init(), pagelist_widget(), photos_album_widget(), photos_content(), poco_init(), poke_content(), populate_acl(), posted_date_widget(), profile_sidebar(), profile_tabs(), profiles_content(), redbasic_form(), register_content(), removeme_content(), rmagic_content(), saved_searches(), search_content(), send_reg_approval_email(), send_verification_email(), settings_aside(), setup_content(), setup_post(), siteinfo_content(), suggest_content(), thing_content(), user_allow(), vcard_from_xchan(), viewconnections_content(), webpages_content(), writepages_widget(), and xrd_init().

    diff --git a/doc/html/typo_8php.html b/doc/html/typo_8php.html index eba54fb0d..caf849b49 100644 --- a/doc/html/typo_8php.html +++ b/doc/html/typo_8php.html @@ -134,7 +134,7 @@ Variables
    -

    Referenced by FriendicaSmarty\__construct(), Item\__construct(), FriendicaSmartyEngine\__construct(), Template\_replcb_if(), Template\_replcb_inc(), _well_known_init(), abook_toggle_flag(), acl_init(), admin_content(), admin_page_dbsync(), admin_page_logs(), admin_page_logs_post(), admin_page_plugins(), admin_page_site(), admin_page_site_post(), admin_page_summary(), admin_page_themes(), admin_page_users(), admin_page_users_post(), admin_post(), advanced_profile(), allfriends_content(), allowed_email(), allowed_url(), alt_pager(), api_account_verify_credentials(), api_albums(), api_apply_template(), api_call(), api_content(), api_direct_messages_all(), api_direct_messages_box(), api_direct_messages_conversation(), api_direct_messages_inbox(), api_direct_messages_new(), api_direct_messages_sentbox(), api_favorites(), api_followers_ids(), api_format_as(), api_format_items(), api_friends_ids(), api_get_user(), api_item_get_user(), api_login(), api_photos(), api_post(), api_rss_extra(), api_status_show(), api_statuses_destroy(), api_statuses_f(), api_statuses_followers(), api_statuses_friends(), api_statuses_home_timeline(), api_statuses_mediap(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), api_statusnet_config(), api_users_show(), apps_content(), atom_entry(), attribute_contains(), authenticate_success(), avatar_img(), bbcode(), best_link_url(), build_sync_packet(), cal(), call_hooks(), categories_widget(), channel_aside(), channel_content(), channel_init(), channel_remove(), chanview_content(), check_config(), check_form_security_token(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), check_htaccess(), clean_urls(), cli_startup(), cli_suggest_run(), common_aside(), common_content(), common_friends_visitor_widget(), common_init(), community_content(), connections_aside(), connections_clone(), connections_content(), connections_init(), connections_post(), construct_page(), contact_block(), contact_select(), conversation(), create_identity(), crepair_content(), crepair_init(), crepair_post(), current_theme(), current_theme_url(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), deliver_run(), dfrn_deliver(), directory_aside(), directory_content(), directory_init(), dirfind_content(), dirfind_init(), dirsearch_init(), display_content(), dlogger(), drop_item(), editpost_content(), editwebpage_content(), ev_compare(), event_store(), events_content(), events_post(), expand_acl(), expand_groups(), fbrowser_content(), fetch_url(), fileas_widget(), filer_content(), filerm_content(), findpeople_widget(), fix_private_photos(), follow_init(), format_event_diaspora(), fsuggest_content(), fsuggest_post(), BaseObject\get_app(), get_app(), get_best_language(), get_birthdays(), Item\get_comment_box(), get_config(), get_events(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_max_import_size(), get_pconfig(), get_plink(), Item\get_template_data(), get_theme_screenshot(), get_xconfig(), gprobe_run(), group_aside(), group_content(), group_post(), group_select(), guess_image_type(), handle_tag(), hcard_aside(), hcard_init(), head_get_icon(), head_set_icon(), help_content(), hostxrd_init(), import_channel_photo(), import_profile_photo(), info(), intro_aside(), intro_content(), invite_content(), invite_post(), is_site_admin(), item_content(), item_photo_menu(), item_post(), items_fetch(), lang_selector(), lastpost_aside(), lastpost_content(), lastpost_init(), like_content(), like_puller(), link_compare(), load_config(), load_contact_links(), load_database(), load_hooks(), load_pconfig(), load_translation_table(), load_xconfig(), logger(), login(), login_content(), FKOAuth1\loginUser(), lostpass_content(), lostpass_post(), lrdd(), magic_init(), manual_config(), match_content(), message_aside(), message_content(), message_post(), mood_init(), msearch_post(), nav(), nav_set_selected(), network_content(), network_init(), new_contact(), nogroup_content(), nogroup_init(), notice(), notification(), notifications_content(), notifications_post(), notifier_run(), notify_content(), notify_init(), oembed_fetch_url(), oembed_format_object(), oembed_iframe(), oexchange_content(), oexchange_init(), onepoll_run(), opensearch_init(), page_content(), page_init(), paginate(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), pop_lang(), post_init(), post_url(), preg_heart(), prepare_body(), probe_content(), proc_run(), profile_activity(), profile_aside(), profile_content(), profile_create_sidebar(), profile_init(), profile_load(), profile_photo_aside(), profile_photo_init(), profile_photo_post(), profile_sidebar(), profile_tabs(), profiles_aside(), profiles_content(), profiles_init(), profiles_post(), profperm_aside(), profperm_content(), profperm_init(), push_lang(), queue_run(), randprof_init(), redbasic_form(), redbasic_init(), redir_init(), redstrap_init(), register_content(), regmod_content(), relative_date(), removeme_content(), removeme_post(), replace_macros(), rmagic_post(), saved_searches(), scale_external_images(), search(), search_ac_init(), search_content(), search_init(), search_post(), send_message(), service_class_allows(), service_class_fetch(), set_config(), Conversation\set_mode(), set_pconfig(), set_xconfig(), settings_aside(), settings_init(), settings_post(), setup_content(), setup_post(), siteinfo_content(), siteinfo_init(), smilies(), subthread_content(), suggest_aside(), suggest_content(), t(), tag_deliver(), tagger_content(), tagrm_content(), tagrm_post(), tags_sort(), terminate_friendship(), tgroup_check(), theme_content(), theme_include(), thing_init(), timezone_cmp(), toggle_mobile_init(), tt(), uexport_init(), update_channel_content(), update_community_content(), update_display_content(), update_network_content(), update_search_content(), update_suggestions(), user_allow(), vcard_from_xchan(), viewconnections_aside(), viewconnections_content(), viewconnections_init(), viewsrc_content(), wall_upload_post(), webpages_content(), webpages_init(), wfinger_init(), what_next(), xrd_init(), z_fetch_url(), z_path(), z_root(), zfinger_init(), zid_init(), and zotfeed_init().

    +

    Referenced by FriendicaSmarty\__construct(), Item\__construct(), FriendicaSmartyEngine\__construct(), Template\_replcb_if(), Template\_replcb_inc(), _well_known_init(), abook_toggle_flag(), acl_init(), admin_content(), admin_page_dbsync(), admin_page_logs(), admin_page_logs_post(), admin_page_plugins(), admin_page_site(), admin_page_site_post(), admin_page_summary(), admin_page_themes(), admin_page_users(), admin_page_users_post(), admin_post(), advanced_profile(), allfriends_content(), allowed_email(), allowed_url(), alt_pager(), api_account_verify_credentials(), api_albums(), api_apply_template(), api_call(), api_content(), api_direct_messages_all(), api_direct_messages_box(), api_direct_messages_conversation(), api_direct_messages_inbox(), api_direct_messages_new(), api_direct_messages_sentbox(), api_favorites(), api_followers_ids(), api_format_as(), api_format_items(), api_friends_ids(), api_get_user(), api_item_get_user(), api_login(), api_photos(), api_post(), api_rss_extra(), api_status_show(), api_statuses_destroy(), api_statuses_f(), api_statuses_followers(), api_statuses_friends(), api_statuses_home_timeline(), api_statuses_mediap(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), api_statusnet_config(), api_users_show(), apps_content(), atom_entry(), attribute_contains(), authenticate_success(), avatar_img(), bbcode(), best_link_url(), build_sync_packet(), cal(), call_hooks(), categories_widget(), channel_aside(), channel_content(), channel_init(), channel_remove(), chanview_content(), check_config(), check_form_security_token(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), check_htaccess(), clean_urls(), cli_startup(), cli_suggest_run(), common_aside(), common_content(), common_friends_visitor_widget(), common_init(), community_content(), connections_aside(), connections_clone(), connections_content(), connections_init(), connections_post(), construct_page(), contact_block(), contact_select(), conversation(), create_identity(), crepair_content(), crepair_init(), crepair_post(), current_theme(), current_theme_url(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), deliver_run(), dfrn_deliver(), directory_aside(), directory_content(), directory_init(), dirfind_content(), dirfind_init(), dirsearch_init(), display_content(), dlogger(), drop_item(), editpost_content(), editwebpage_content(), ev_compare(), event_store(), events_content(), events_post(), expand_acl(), expand_groups(), fbrowser_content(), fetch_url(), fileas_widget(), filer_content(), filerm_content(), findpeople_widget(), fix_private_photos(), follow_init(), format_event_diaspora(), fsuggest_content(), fsuggest_post(), BaseObject\get_app(), get_app(), get_best_language(), get_birthdays(), Item\get_comment_box(), get_config(), get_events(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_max_import_size(), get_pconfig(), get_plink(), Item\get_template_data(), get_theme_screenshot(), get_xconfig(), gprobe_run(), group_aside(), group_content(), group_post(), group_select(), guess_image_type(), handle_tag(), hcard_aside(), hcard_init(), head_get_icon(), head_set_icon(), help_content(), hostxrd_init(), import_channel_photo(), import_profile_photo(), info(), intro_aside(), intro_content(), invite_content(), invite_post(), is_site_admin(), item_content(), item_photo_menu(), item_post(), items_fetch(), lang_selector(), lastpost_aside(), lastpost_content(), lastpost_init(), like_content(), like_puller(), link_compare(), load_config(), load_contact_links(), load_database(), load_hooks(), load_pconfig(), load_translation_table(), load_xconfig(), logger(), login(), login_content(), FKOAuth1\loginUser(), lostpass_content(), lostpass_post(), lrdd(), magic_init(), manual_config(), match_content(), message_aside(), message_content(), message_post(), mitem_content(), mitem_init(), mitem_post(), mood_init(), msearch_post(), nav(), nav_set_selected(), network_content(), network_init(), new_contact(), nogroup_content(), nogroup_init(), notice(), notification(), notifications_content(), notifications_post(), notifier_run(), notify_content(), notify_init(), oembed_fetch_url(), oembed_format_object(), oembed_iframe(), oexchange_content(), oexchange_init(), onepoll_run(), opensearch_init(), page_content(), page_init(), paginate(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), pop_lang(), post_init(), post_url(), preg_heart(), prepare_body(), probe_content(), proc_run(), profile_activity(), profile_aside(), profile_content(), profile_create_sidebar(), profile_init(), profile_load(), profile_photo_aside(), profile_photo_init(), profile_photo_post(), profile_sidebar(), profile_tabs(), profiles_aside(), profiles_content(), profiles_init(), profiles_post(), profperm_aside(), profperm_content(), profperm_init(), push_lang(), queue_run(), randprof_init(), redbasic_form(), redbasic_init(), redir_init(), redstrap_init(), register_content(), regmod_content(), relative_date(), removeme_content(), removeme_post(), replace_macros(), rmagic_post(), saved_searches(), scale_external_images(), search(), search_ac_init(), search_content(), search_init(), search_post(), send_message(), service_class_allows(), service_class_fetch(), set_config(), Conversation\set_mode(), set_pconfig(), set_xconfig(), settings_aside(), settings_init(), settings_post(), setup_content(), setup_post(), siteinfo_content(), siteinfo_init(), smilies(), subthread_content(), suggest_aside(), suggest_content(), t(), tag_deliver(), tagger_content(), tagrm_content(), tagrm_post(), tags_sort(), terminate_friendship(), tgroup_check(), theme_content(), theme_include(), thing_init(), timezone_cmp(), toggle_mobile_init(), tt(), uexport_init(), update_channel_content(), update_community_content(), update_display_content(), update_network_content(), update_search_content(), update_suggestions(), user_allow(), vcard_from_xchan(), viewconnections_aside(), viewconnections_content(), viewconnections_init(), viewsrc_content(), wall_upload_post(), webpages_content(), wfinger_init(), what_next(), xrd_init(), z_fetch_url(), z_path(), z_root(), zfinger_init(), zid_init(), and zotfeed_init().

    diff --git a/doc/html/typohelper_8php.html b/doc/html/typohelper_8php.html index 694dc6711..674acf1cb 100644 --- a/doc/html/typohelper_8php.html +++ b/doc/html/typohelper_8php.html @@ -130,7 +130,7 @@ Variables Initial value:
    = <<< EOT
    error_reporting(E_ERROR | E_WARNING | E_PARSE )
    -

    Referenced by api_date(), check_php(), check_webbie(), dbesc(), dba_mysql\escape(), dba_mysqli\escape(), head_get_css(), head_get_js(), item_store_update(), load_database(), photos_album_get_db_idstr(), photos_post(), posted_dates(), relative_date(), stream_perms_api_uids(), thing_init(), and xmlify().

    +

    Referenced by api_date(), check_php(), check_webbie(), dbesc(), dba_mysql\escape(), dba_mysqli\escape(), head_get_css(), head_get_js(), item_store_update(), load_database(), photos_album_get_db_idstr(), photos_post(), posted_dates(), relative_date(), stream_perms_api_uids(), thing_init(), and xmlify().

    @@ -144,7 +144,7 @@ Variables
    -

    Referenced by nav(), network_init(), subthread_content(), and system_down().

    +

    Referenced by nav(), subthread_content(), and system_down().

    diff --git a/doc/html/webpages_8php.html b/doc/html/webpages_8php.html index 37fcfdd29..f54d67fb2 100644 --- a/doc/html/webpages_8php.html +++ b/doc/html/webpages_8php.html @@ -112,8 +112,6 @@ $(document).ready(function(){initNavTree('webpages_8php.html','');}); - -

    Functions

     webpages_init (&$a)
     
     webpages_content (&$a)
     
    @@ -132,22 +130,6 @@ Functions
    -
    - - -
    -
    - - - - - - - - -
    webpages_init ($a)
    -
    -
    diff --git a/doc/html/webpages_8php.js b/doc/html/webpages_8php.js index 961f9a5e8..8e145305c 100644 --- a/doc/html/webpages_8php.js +++ b/doc/html/webpages_8php.js @@ -1,5 +1,4 @@ var webpages_8php = [ - [ "webpages_content", "webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d", null ], - [ "webpages_init", "webpages_8php.html#af9ad0b65eba79acead3fa32b43d888b7", null ] + [ "webpages_content", "webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d", null ] ]; \ No newline at end of file diff --git a/util/messages.po b/util/messages.po index 4a5eb44d8..b3a7ee42e 100644 --- a/util/messages.po +++ b/util/messages.po @@ -1,14 +1,14 @@ # Red Communications Project -# Copyright (C) 2013 the Friendica Project +# Copyright (C) 2013 the Red Matrix Project # This file is distributed under the same license as the Red package. # Mike Macgirvin, 2013 # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: \n" +"Project-Id-Version: 2013-08-16.407\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-08-09 03:55-0700\n" +"POT-Creation-Date: 2013-08-16 00:01-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -242,47 +242,47 @@ msgstr "" msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: ../../include/Contact.php:55 ../../include/contact_widgets.php:9 +#: ../../include/Contact.php:80 ../../include/contact_widgets.php:9 #: ../../mod/directory.php:163 ../../mod/match.php:58 ../../mod/suggest.php:56 -#: ../../boot.php:1622 +#: ../../boot.php:1630 msgid "Connect" msgstr "" -#: ../../include/Contact.php:71 +#: ../../include/Contact.php:96 msgid "New window" msgstr "" -#: ../../include/Contact.php:72 +#: ../../include/Contact.php:97 msgid "Open the selected location in a different window or browser tab" msgstr "" -#: ../../include/Contact.php:430 ../../include/conversation.php:887 +#: ../../include/Contact.php:455 ../../include/conversation.php:887 msgid "Poke" msgstr "" -#: ../../include/Contact.php:431 ../../include/conversation.php:881 +#: ../../include/Contact.php:456 ../../include/conversation.php:881 msgid "View Status" msgstr "" -#: ../../include/Contact.php:432 ../../include/nav.php:75 -#: ../../include/conversation.php:882 ../../mod/connections.php:294 -#: ../../mod/connections.php:401 +#: ../../include/Contact.php:457 ../../include/nav.php:75 +#: ../../include/conversation.php:882 ../../mod/connections.php:295 +#: ../../mod/connections.php:402 msgid "View Profile" msgstr "" -#: ../../include/Contact.php:433 ../../include/conversation.php:883 +#: ../../include/Contact.php:458 ../../include/conversation.php:883 msgid "View Photos" msgstr "" -#: ../../include/Contact.php:434 ../../include/conversation.php:884 +#: ../../include/Contact.php:459 ../../include/conversation.php:884 msgid "Network Posts" msgstr "" -#: ../../include/Contact.php:435 ../../include/conversation.php:885 +#: ../../include/Contact.php:460 ../../include/conversation.php:885 msgid "Edit Contact" msgstr "" -#: ../../include/Contact.php:436 ../../include/conversation.php:886 +#: ../../include/Contact.php:461 ../../include/conversation.php:886 msgid "Send PM" msgstr "" @@ -347,7 +347,7 @@ msgid "RSS/Atom" msgstr "" #: ../../include/contact_selectors.php:77 ../../mod/admin.php:636 -#: ../../mod/admin.php:645 ../../boot.php:1364 +#: ../../mod/admin.php:645 ../../boot.php:1369 msgid "Email" msgstr "" @@ -411,7 +411,7 @@ msgid "Examples: Robert Morgenstein, Fishing" msgstr "" #: ../../include/contact_widgets.php:33 ../../mod/directory.php:182 -#: ../../mod/directory.php:187 ../../mod/connections.php:656 +#: ../../mod/directory.php:187 ../../mod/connections.php:657 msgid "Find" msgstr "" @@ -431,7 +431,7 @@ msgstr "" msgid "Invite Friends" msgstr "" -#: ../../include/contact_widgets.php:61 ../../include/features.php:58 +#: ../../include/contact_widgets.php:61 ../../include/features.php:59 msgid "Saved Folders" msgstr "" @@ -546,7 +546,7 @@ msgid "Finishes:" msgstr "" #: ../../include/event.php:40 ../../include/bb2diaspora.php:455 -#: ../../mod/events.php:450 ../../mod/directory.php:138 ../../boot.php:1676 +#: ../../mod/events.php:450 ../../mod/directory.php:138 ../../boot.php:1675 msgid "Location:" msgstr "" @@ -554,188 +554,180 @@ msgstr "" msgid "General Features" msgstr "" -#: ../../include/features.php:22 -msgid "Content Expiration" -msgstr "" - -#: ../../include/features.php:22 -msgid "Remove old posts/comments after a period of time" -msgstr "" - -#: ../../include/features.php:23 +#: ../../include/features.php:24 msgid "Multiple Profiles" msgstr "" -#: ../../include/features.php:23 +#: ../../include/features.php:24 msgid "Ability to create multiple profiles" msgstr "" -#: ../../include/features.php:24 +#: ../../include/features.php:25 msgid "Web Pages" msgstr "" -#: ../../include/features.php:24 +#: ../../include/features.php:25 msgid "Provide managed web pages on your channel" msgstr "" -#: ../../include/features.php:25 +#: ../../include/features.php:26 msgid "Enhanced Photo Albums" msgstr "" -#: ../../include/features.php:25 +#: ../../include/features.php:26 msgid "Enable photo album with enhanced features" msgstr "" -#: ../../include/features.php:27 +#: ../../include/features.php:28 msgid "Extended Identity Sharing" msgstr "" -#: ../../include/features.php:27 ../../include/js_strings.php:28 +#: ../../include/features.php:28 ../../include/js_strings.php:28 msgid " " msgstr "" -#: ../../include/features.php:28 +#: ../../include/features.php:29 msgid "Expert Mode" msgstr "" -#: ../../include/features.php:28 +#: ../../include/features.php:29 msgid "Enable Expert Mode to provide advanced configuration options" msgstr "" -#: ../../include/features.php:35 +#: ../../include/features.php:36 msgid "Post Composition Features" msgstr "" -#: ../../include/features.php:36 +#: ../../include/features.php:37 msgid "Richtext Editor" msgstr "" -#: ../../include/features.php:36 +#: ../../include/features.php:37 msgid "Enable richtext editor" msgstr "" -#: ../../include/features.php:37 +#: ../../include/features.php:38 msgid "Post Preview" msgstr "" -#: ../../include/features.php:37 +#: ../../include/features.php:38 msgid "Allow previewing posts and comments before publishing them" msgstr "" -#: ../../include/features.php:42 +#: ../../include/features.php:43 msgid "Network and Stream Filtering" msgstr "" -#: ../../include/features.php:43 +#: ../../include/features.php:44 msgid "Search by Date" msgstr "" -#: ../../include/features.php:43 +#: ../../include/features.php:44 msgid "Ability to select posts by date ranges" msgstr "" -#: ../../include/features.php:44 +#: ../../include/features.php:45 msgid "Collections Filter" msgstr "" -#: ../../include/features.php:44 +#: ../../include/features.php:45 msgid "Enable widget to display Network posts only from selected collections" msgstr "" -#: ../../include/features.php:45 ../../mod/network.php:167 +#: ../../include/features.php:46 ../../mod/network.php:150 #: ../../mod/search.php:17 msgid "Saved Searches" msgstr "" -#: ../../include/features.php:45 +#: ../../include/features.php:46 msgid "Save search terms for re-use" msgstr "" -#: ../../include/features.php:46 +#: ../../include/features.php:47 msgid "Network Personal Tab" msgstr "" -#: ../../include/features.php:46 +#: ../../include/features.php:47 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "" -#: ../../include/features.php:47 +#: ../../include/features.php:48 msgid "Network New Tab" msgstr "" -#: ../../include/features.php:47 +#: ../../include/features.php:48 msgid "Enable tab to display all new Network activity" msgstr "" -#: ../../include/features.php:48 +#: ../../include/features.php:49 msgid "Affinity Tool" msgstr "" -#: ../../include/features.php:48 +#: ../../include/features.php:49 msgid "Filter stream activity by depth of relationships" msgstr "" -#: ../../include/features.php:53 +#: ../../include/features.php:54 msgid "Post/Comment Tools" msgstr "" -#: ../../include/features.php:54 +#: ../../include/features.php:55 msgid "Multiple Deletion" msgstr "" -#: ../../include/features.php:54 +#: ../../include/features.php:55 msgid "Select and delete multiple posts/comments at once" msgstr "" -#: ../../include/features.php:55 +#: ../../include/features.php:56 msgid "Edit Sent Posts" msgstr "" -#: ../../include/features.php:55 +#: ../../include/features.php:56 msgid "Edit and correct posts and comments after sending" msgstr "" -#: ../../include/features.php:56 +#: ../../include/features.php:57 msgid "Tagging" msgstr "" -#: ../../include/features.php:56 +#: ../../include/features.php:57 msgid "Ability to tag existing posts" msgstr "" -#: ../../include/features.php:57 +#: ../../include/features.php:58 msgid "Post Categories" msgstr "" -#: ../../include/features.php:57 +#: ../../include/features.php:58 msgid "Add categories to your posts" msgstr "" -#: ../../include/features.php:58 +#: ../../include/features.php:59 msgid "Ability to file posts under folders" msgstr "" -#: ../../include/features.php:59 +#: ../../include/features.php:60 msgid "Dislike Posts" msgstr "" -#: ../../include/features.php:59 +#: ../../include/features.php:60 msgid "Ability to dislike posts/comments" msgstr "" -#: ../../include/features.php:60 +#: ../../include/features.php:61 msgid "Star Posts" msgstr "" -#: ../../include/features.php:60 +#: ../../include/features.php:61 msgid "Ability to mark special posts with a star indicator" msgstr "" -#: ../../include/features.php:61 +#: ../../include/features.php:62 msgid "Tag Cloud" msgstr "" -#: ../../include/features.php:61 +#: ../../include/features.php:62 msgid "Provide a personal tag cloud on your channel page" msgstr "" @@ -754,7 +746,7 @@ msgstr "" msgid "All Channels" msgstr "" -#: ../../include/group.php:264 +#: ../../include/group.php:264 ../../include/page_widgets.php:8 msgid "edit" msgstr "" @@ -774,7 +766,7 @@ msgstr "" msgid "Channels not in any collection" msgstr "" -#: ../../include/group.php:290 ../../mod/network.php:168 +#: ../../include/group.php:290 ../../mod/network.php:151 msgid "add" msgstr "" @@ -905,12 +897,12 @@ msgstr "" msgid "Profile" msgstr "" -#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1018 +#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1017 msgid "Full Name:" msgstr "" #: ../../include/profile_advanced.php:17 ../../mod/directory.php:140 -#: ../../boot.php:1678 +#: ../../boot.php:1677 msgid "Gender:" msgstr "" @@ -931,7 +923,7 @@ msgid "Age:" msgstr "" #: ../../include/profile_advanced.php:37 ../../mod/directory.php:142 -#: ../../boot.php:1679 +#: ../../boot.php:1678 msgid "Status:" msgstr "" @@ -945,7 +937,7 @@ msgid "Sexual Preference:" msgstr "" #: ../../include/profile_advanced.php:48 ../../mod/directory.php:144 -#: ../../boot.php:1680 +#: ../../boot.php:1679 msgid "Homepage:" msgstr "" @@ -1013,25 +1005,7 @@ msgstr "" msgid "School/education:" msgstr "" -#: ../../include/security.php:48 -msgid "Welcome " -msgstr "" - -#: ../../include/security.php:49 -msgid "Please upload a profile photo." -msgstr "" - -#: ../../include/security.php:52 -msgid "Welcome back " -msgstr "" - -#: ../../include/security.php:355 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "" - -#: ../../include/nav.php:71 ../../include/nav.php:86 ../../boot.php:1361 +#: ../../include/nav.php:71 ../../include/nav.php:86 ../../boot.php:1366 msgid "Logout" msgstr "" @@ -1060,7 +1034,7 @@ msgstr "" msgid "Manage/Edit Profiles" msgstr "" -#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 ../../boot.php:2097 +#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 ../../boot.php:2107 msgid "Photos" msgstr "" @@ -1068,7 +1042,7 @@ msgstr "" msgid "Your photos" msgstr "" -#: ../../include/nav.php:84 ../../boot.php:1362 +#: ../../include/nav.php:84 ../../boot.php:1367 msgid "Login" msgstr "" @@ -1089,7 +1063,7 @@ msgstr "" msgid "Home Page" msgstr "" -#: ../../include/nav.php:120 ../../mod/register.php:181 ../../boot.php:1337 +#: ../../include/nav.php:120 ../../mod/register.php:181 ../../boot.php:1342 msgid "Register" msgstr "" @@ -1158,7 +1132,7 @@ msgstr "" msgid "Intros" msgstr "" -#: ../../include/nav.php:153 ../../mod/connections.php:544 +#: ../../include/nav.php:153 ../../mod/connections.php:545 msgid "New Connections" msgstr "" @@ -1210,7 +1184,7 @@ msgstr "" msgid "New Message" msgstr "" -#: ../../include/nav.php:169 ../../mod/events.php:348 ../../boot.php:2108 +#: ../../include/nav.php:169 ../../mod/events.php:348 ../../boot.php:2118 msgid "Events" msgstr "" @@ -1243,7 +1217,7 @@ msgstr "" msgid "Account/Channel Settings" msgstr "" -#: ../../include/nav.php:177 ../../mod/connections.php:650 +#: ../../include/nav.php:177 ../../mod/connections.php:651 msgid "Connections" msgstr "" @@ -1288,21 +1262,22 @@ msgstr "" #: ../../include/attach.php:133 ../../include/attach.php:189 #: ../../include/attach.php:204 ../../include/attach.php:237 #: ../../include/attach.php:251 ../../include/attach.php:272 -#: ../../include/attach.php:464 ../../include/items.php:3274 +#: ../../include/attach.php:464 ../../include/items.php:3298 #: ../../mod/common.php:43 ../../mod/events.php:134 ../../mod/invite.php:13 -#: ../../mod/invite.php:102 ../../mod/allfriends.php:10 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/lastpost.php:93 ../../mod/page.php:31 -#: ../../mod/setup.php:181 ../../mod/settings.php:585 -#: ../../mod/viewconnections.php:33 ../../mod/viewconnections.php:38 -#: ../../mod/delegate.php:6 ../../mod/group.php:15 ../../mod/photos.php:74 -#: ../../mod/photos.php:644 ../../mod/viewsrc.php:12 ../../mod/message.php:204 -#: ../../mod/item.php:151 ../../mod/network.php:7 ../../mod/intro.php:50 -#: ../../mod/connections.php:165 ../../mod/profiles.php:163 -#: ../../mod/profiles.php:476 ../../mod/new_channel.php:66 -#: ../../mod/new_channel.php:97 ../../mod/manage.php:6 -#: ../../mod/crepair.php:115 ../../mod/nogroup.php:25 +#: ../../mod/invite.php:102 ../../mod/allfriends.php:10 +#: ../../mod/webpages.php:40 ../../mod/api.php:26 ../../mod/api.php:31 +#: ../../mod/lastpost.php:93 ../../mod/page.php:33 ../../mod/setup.php:181 +#: ../../mod/settings.php:584 ../../mod/viewconnections.php:33 +#: ../../mod/viewconnections.php:38 ../../mod/delegate.php:6 +#: ../../mod/mitem.php:92 ../../mod/group.php:15 ../../mod/photos.php:74 +#: ../../mod/photos.php:644 ../../mod/viewsrc.php:12 ../../mod/menu.php:40 +#: ../../mod/message.php:204 ../../mod/item.php:152 ../../mod/network.php:7 +#: ../../mod/intro.php:50 ../../mod/connections.php:165 +#: ../../mod/profiles.php:163 ../../mod/profiles.php:476 +#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97 +#: ../../mod/manage.php:6 ../../mod/crepair.php:115 ../../mod/nogroup.php:25 #: ../../mod/profile_photo.php:197 ../../mod/profile_photo.php:210 -#: ../../mod/editwebpage.php:48 ../../mod/notifications.php:66 +#: ../../mod/editwebpage.php:49 ../../mod/notifications.php:66 #: ../../mod/editpost.php:11 ../../mod/poke.php:128 ../../mod/channel.php:115 #: ../../mod/fsuggest.php:78 ../../mod/suggest.php:32 #: ../../mod/register.php:60 ../../mod/regmod.php:18 ../../mod/mood.php:112 @@ -1327,7 +1302,7 @@ msgstr "" msgid "Photo storage failed." msgstr "" -#: ../../include/photos.php:287 ../../boot.php:2100 +#: ../../include/photos.php:287 ../../boot.php:2110 msgid "Photo Albums" msgstr "" @@ -1481,7 +1456,7 @@ msgid "Sex Addict" msgstr "" #: ../../include/profile_selectors.php:42 ../../include/identity.php:224 -#: ../../mod/network.php:381 ../../mod/connections.php:367 +#: ../../mod/network.php:364 ../../mod/connections.php:368 msgid "Friends" msgstr "" @@ -1569,62 +1544,6 @@ msgstr "" msgid "Ask me" msgstr "" -#: ../../include/account.php:22 -msgid "Not a valid email address" -msgstr "" - -#: ../../include/account.php:24 -msgid "Your email domain is not among those allowed on this site" -msgstr "" - -#: ../../include/account.php:30 -msgid "Your email address is already registered at this site." -msgstr "" - -#: ../../include/account.php:63 -msgid "An invitation is required." -msgstr "" - -#: ../../include/account.php:67 -msgid "Invitation could not be verified." -msgstr "" - -#: ../../include/account.php:117 -msgid "Please enter the required information." -msgstr "" - -#: ../../include/account.php:185 -msgid "Failed to store account information." -msgstr "" - -#: ../../include/account.php:271 -#, php-format -msgid "Registration request at %s" -msgstr "" - -#: ../../include/account.php:273 ../../include/account.php:300 -#: ../../include/account.php:357 ../../boot.php:1202 -msgid "Administrator" -msgstr "" - -#: ../../include/account.php:295 -msgid "your registration password" -msgstr "" - -#: ../../include/account.php:298 ../../include/account.php:355 -#, php-format -msgid "Registration details for %s" -msgstr "" - -#: ../../include/account.php:364 -msgid "Account approved." -msgstr "" - -#: ../../include/account.php:398 -#, php-format -msgid "Registration revoked for %s" -msgstr "" - #: ../../include/identity.php:14 msgid "Unable to obtain identity information from database" msgstr "" @@ -1679,6 +1598,62 @@ msgstr "" msgid "Unable to verify site signature for %s" 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:118 +msgid "Please enter the required information." +msgstr "" + +#: ../../include/account.php:186 +msgid "Failed to store account information." +msgstr "" + +#: ../../include/account.php:272 +#, php-format +msgid "Registration request at %s" +msgstr "" + +#: ../../include/account.php:274 ../../include/account.php:301 +#: ../../include/account.php:358 ../../boot.php:1207 +msgid "Administrator" +msgstr "" + +#: ../../include/account.php:296 +msgid "your registration password" +msgstr "" + +#: ../../include/account.php:299 ../../include/account.php:356 +#, php-format +msgid "Registration details for %s" +msgstr "" + +#: ../../include/account.php:365 +msgid "Account approved." +msgstr "" + +#: ../../include/account.php:399 +#, php-format +msgid "Registration revoked for %s" +msgstr "" + #: ../../include/text.php:281 msgid "prev" msgstr "" @@ -1955,42 +1930,46 @@ msgstr "" msgid "Click to open/close" msgstr "" -#: ../../include/text.php:1264 ../../mod/events.php:326 +#: ../../include/text.php:1280 ../../mod/events.php:326 msgid "link to source" msgstr "" -#: ../../include/text.php:1296 +#: ../../include/text.php:1312 msgid "default" msgstr "" -#: ../../include/text.php:1308 +#: ../../include/text.php:1324 msgid "Select an alternate language" msgstr "" -#: ../../include/text.php:1460 ../../include/conversation.php:111 +#: ../../include/text.php:1476 ../../include/conversation.php:111 #: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:45 msgid "photo" msgstr "" -#: ../../include/text.php:1463 ../../include/conversation.php:114 +#: ../../include/text.php:1479 ../../include/conversation.php:114 #: ../../mod/tagger.php:49 msgid "event" msgstr "" -#: ../../include/text.php:1466 ../../include/conversation.php:139 +#: ../../include/text.php:1482 ../../include/conversation.php:139 #: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:53 msgid "status" msgstr "" -#: ../../include/text.php:1468 ../../include/conversation.php:141 +#: ../../include/text.php:1484 ../../include/conversation.php:141 #: ../../mod/tagger.php:55 msgid "comment" msgstr "" -#: ../../include/text.php:1473 +#: ../../include/text.php:1489 msgid "activity" msgstr "" +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "" + #: ../../include/auth.php:65 msgid "Logged out." msgstr "" @@ -2180,16 +2159,16 @@ msgstr "" msgid "Private Message" msgstr "" -#: ../../include/ItemObject.php:92 ../../mod/webpages.php:68 -#: ../../mod/settings.php:670 ../../mod/editwebpage.php:103 -#: ../../mod/editpost.php:76 +#: ../../include/ItemObject.php:92 ../../mod/webpages.php:81 +#: ../../mod/settings.php:669 ../../mod/menu.php:52 +#: ../../mod/editwebpage.php:101 ../../mod/editpost.php:76 msgid "Edit" msgstr "" #: ../../include/ItemObject.php:104 ../../include/conversation.php:613 -#: ../../mod/settings.php:671 ../../mod/group.php:182 +#: ../../mod/settings.php:670 ../../mod/group.php:182 #: ../../mod/photos.php:1162 ../../mod/admin.php:640 -#: ../../mod/connections.php:334 +#: ../../mod/connections.php:335 msgid "Delete" msgstr "" @@ -2262,7 +2241,7 @@ msgstr "" #: ../../include/ItemObject.php:233 ../../include/conversation.php:678 #: ../../include/conversation.php:1034 ../../mod/photos.php:1052 #: ../../mod/message.php:297 ../../mod/message.php:430 -#: ../../mod/editwebpage.php:112 ../../mod/editpost.php:85 +#: ../../mod/editwebpage.php:110 ../../mod/editpost.php:85 msgid "Please wait" msgstr "" @@ -2280,16 +2259,16 @@ msgstr "" #: ../../include/ItemObject.php:505 ../../mod/events.php:458 #: ../../mod/thing.php:190 ../../mod/invite.php:153 ../../mod/setup.php:283 -#: ../../mod/setup.php:326 ../../mod/settings.php:608 -#: ../../mod/settings.php:720 ../../mod/settings.php:748 -#: ../../mod/settings.php:772 ../../mod/settings.php:843 -#: ../../mod/settings.php:1010 ../../mod/group.php:87 ../../mod/photos.php:675 +#: ../../mod/setup.php:326 ../../mod/settings.php:607 +#: ../../mod/settings.php:719 ../../mod/settings.php:747 +#: ../../mod/settings.php:771 ../../mod/settings.php:842 +#: ../../mod/settings.php:1009 ../../mod/group.php:87 ../../mod/photos.php:675 #: ../../mod/photos.php:769 ../../mod/photos.php:1031 #: ../../mod/photos.php:1070 ../../mod/photos.php:1108 #: ../../mod/photos.php:1135 ../../mod/message.php:298 #: ../../mod/message.php:429 ../../mod/admin.php:409 ../../mod/admin.php:633 #: ../../mod/admin.php:769 ../../mod/admin.php:968 ../../mod/admin.php:1055 -#: ../../mod/connections.php:411 ../../mod/profiles.php:529 +#: ../../mod/connections.php:412 ../../mod/profiles.php:529 #: ../../mod/import.php:356 ../../mod/crepair.php:166 ../../mod/poke.php:166 #: ../../mod/fsuggest.php:108 ../../mod/mood.php:135 #: ../../view/theme/redbasic/php/config.php:136 @@ -2331,7 +2310,7 @@ msgid "Video" msgstr "" #: ../../include/ItemObject.php:514 ../../include/conversation.php:1052 -#: ../../mod/photos.php:1071 ../../mod/editwebpage.php:132 +#: ../../mod/photos.php:1071 ../../mod/editwebpage.php:130 #: ../../mod/editpost.php:105 msgid "Preview" msgstr "" @@ -2463,7 +2442,7 @@ msgid "Page link title" msgstr "" #: ../../include/conversation.php:1015 ../../mod/message.php:295 -#: ../../mod/message.php:427 ../../mod/editwebpage.php:104 +#: ../../mod/message.php:427 ../../mod/editwebpage.php:102 #: ../../mod/editpost.php:77 msgid "Upload photo" msgstr "" @@ -2472,7 +2451,7 @@ msgstr "" msgid "upload photo" msgstr "" -#: ../../include/conversation.php:1017 ../../mod/editwebpage.php:105 +#: ../../include/conversation.php:1017 ../../mod/editwebpage.php:103 #: ../../mod/editpost.php:78 msgid "Attach file" msgstr "" @@ -2482,7 +2461,7 @@ msgid "attach file" msgstr "" #: ../../include/conversation.php:1019 ../../mod/message.php:296 -#: ../../mod/message.php:428 ../../mod/editwebpage.php:106 +#: ../../mod/message.php:428 ../../mod/editwebpage.php:104 #: ../../mod/editpost.php:79 msgid "Insert web link" msgstr "" @@ -2507,7 +2486,7 @@ msgstr "" msgid "audio link" msgstr "" -#: ../../include/conversation.php:1025 ../../mod/editwebpage.php:110 +#: ../../include/conversation.php:1025 ../../mod/editwebpage.php:108 #: ../../mod/editpost.php:83 msgid "Set your location" msgstr "" @@ -2516,7 +2495,7 @@ msgstr "" msgid "set location" msgstr "" -#: ../../include/conversation.php:1027 ../../mod/editwebpage.php:111 +#: ../../include/conversation.php:1027 ../../mod/editwebpage.php:109 #: ../../mod/editpost.php:84 msgid "Clear browser location" msgstr "" @@ -2525,17 +2504,17 @@ msgstr "" msgid "clear location" msgstr "" -#: ../../include/conversation.php:1030 ../../mod/editwebpage.php:124 +#: ../../include/conversation.php:1030 ../../mod/editwebpage.php:122 #: ../../mod/editpost.php:97 msgid "Set title" msgstr "" -#: ../../include/conversation.php:1033 ../../mod/editwebpage.php:126 +#: ../../include/conversation.php:1033 ../../mod/editwebpage.php:124 #: ../../mod/editpost.php:99 msgid "Categories (comma-separated list)" msgstr "" -#: ../../include/conversation.php:1035 ../../mod/editwebpage.php:113 +#: ../../include/conversation.php:1035 ../../mod/editwebpage.php:111 #: ../../mod/editpost.php:86 msgid "Permission settings" msgstr "" @@ -2544,40 +2523,40 @@ msgstr "" msgid "permissions" msgstr "" -#: ../../include/conversation.php:1044 ../../mod/editwebpage.php:121 +#: ../../include/conversation.php:1044 ../../mod/editwebpage.php:119 #: ../../mod/editpost.php:94 msgid "Public post" msgstr "" -#: ../../include/conversation.php:1046 ../../mod/editwebpage.php:127 +#: ../../include/conversation.php:1046 ../../mod/editwebpage.php:125 #: ../../mod/editpost.php:100 msgid "Example: bob@example.com, mary@example.com" msgstr "" -#: ../../include/items.php:156 ../../mod/like.php:55 ../../mod/group.php:74 +#: ../../include/items.php:157 ../../mod/like.php:55 ../../mod/group.php:74 #: ../../mod/profperm.php:28 ../../index.php:339 msgid "Permission denied" msgstr "" -#: ../../include/items.php:3223 ../../mod/page.php:62 ../../mod/viewsrc.php:18 +#: ../../include/items.php:3247 ../../mod/page.php:63 ../../mod/viewsrc.php:18 #: ../../mod/home.php:64 ../../mod/admin.php:142 ../../mod/admin.php:677 #: ../../mod/admin.php:876 ../../mod/display.php:33 msgid "Item not found." msgstr "" -#: ../../include/items.php:3395 +#: ../../include/items.php:3419 msgid "Archives" msgstr "" -#: ../../include/items.php:3556 ../../mod/group.php:44 ../../mod/group.php:146 +#: ../../include/items.php:3580 ../../mod/group.php:44 ../../mod/group.php:146 msgid "Collection not found." msgstr "" -#: ../../include/items.php:3566 +#: ../../include/items.php:3590 msgid "Collection has no members." msgstr "" -#: ../../include/items.php:3582 +#: ../../include/items.php:3606 msgid "Connection not found." msgstr "" @@ -2603,6 +2582,24 @@ msgstr "" msgid "Encrypted content" msgstr "" +#: ../../include/security.php:49 +msgid "Welcome " +msgstr "" + +#: ../../include/security.php:50 +msgid "Please upload a profile photo." +msgstr "" + +#: ../../include/security.php:53 +msgid "Welcome back " +msgstr "" + +#: ../../include/security.php:357 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "" + #: ../../mod/common.php:10 msgid "No channel." msgstr "" @@ -2806,11 +2803,11 @@ msgstr "" msgid "No friends to display." msgstr "" -#: ../../mod/webpages.php:8 ../../mod/profile.php:8 ../../boot.php:1535 +#: ../../mod/webpages.php:8 ../../mod/profile.php:8 ../../boot.php:1540 msgid "Requested profile is not available." msgstr "" -#: ../../mod/webpages.php:71 +#: ../../mod/webpages.php:84 msgid "View" msgstr "" @@ -2832,16 +2829,16 @@ msgid "" "and/or create new posts for you?" msgstr "" -#: ../../mod/api.php:105 ../../mod/settings.php:965 ../../mod/settings.php:970 -#: ../../mod/settings.php:993 ../../mod/settings.php:995 -#: ../../mod/settings.php:996 ../../mod/settings.php:997 +#: ../../mod/api.php:105 ../../mod/settings.php:964 ../../mod/settings.php:969 +#: ../../mod/settings.php:992 ../../mod/settings.php:994 +#: ../../mod/settings.php:995 ../../mod/settings.php:996 #: ../../mod/profiles.php:506 msgid "Yes" msgstr "" -#: ../../mod/api.php:106 ../../mod/settings.php:965 ../../mod/settings.php:970 -#: ../../mod/settings.php:993 ../../mod/settings.php:995 -#: ../../mod/settings.php:996 ../../mod/settings.php:997 +#: ../../mod/api.php:106 ../../mod/settings.php:964 ../../mod/settings.php:969 +#: ../../mod/settings.php:992 ../../mod/settings.php:994 +#: ../../mod/settings.php:995 ../../mod/settings.php:996 #: ../../mod/profiles.php:507 msgid "No" msgstr "" @@ -2858,11 +2855,11 @@ msgstr "" msgid "Applications" msgstr "" -#: ../../mod/page.php:37 +#: ../../mod/page.php:38 msgid "Invalid item." msgstr "" -#: ../../mod/page.php:49 ../../mod/chanview.php:78 ../../mod/home.php:51 +#: ../../mod/page.php:50 ../../mod/chanview.php:78 ../../mod/home.php:51 #: ../../mod/magic.php:63 ../../mod/wall_upload.php:35 msgid "Channel not found." msgstr "" @@ -3261,7 +3258,7 @@ msgstr "" msgid "Missing some important data!" msgstr "" -#: ../../mod/settings.php:148 ../../mod/settings.php:634 +#: ../../mod/settings.php:148 ../../mod/settings.php:633 msgid "Update" msgstr "" @@ -3293,355 +3290,355 @@ msgstr "" msgid "System failure storing new email. Please try again." msgstr "" -#: ../../mod/settings.php:536 +#: ../../mod/settings.php:535 msgid "Settings updated." msgstr "" -#: ../../mod/settings.php:607 ../../mod/settings.php:633 -#: ../../mod/settings.php:669 +#: ../../mod/settings.php:606 ../../mod/settings.php:632 +#: ../../mod/settings.php:668 msgid "Add application" msgstr "" -#: ../../mod/settings.php:609 ../../mod/settings.php:635 +#: ../../mod/settings.php:608 ../../mod/settings.php:634 #: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81 #: ../../mod/fbrowser.php:116 msgid "Cancel" msgstr "" -#: ../../mod/settings.php:610 ../../mod/settings.php:636 +#: ../../mod/settings.php:609 ../../mod/settings.php:635 #: ../../mod/admin.php:636 ../../mod/crepair.php:148 msgid "Name" msgstr "" -#: ../../mod/settings.php:611 ../../mod/settings.php:637 +#: ../../mod/settings.php:610 ../../mod/settings.php:636 msgid "Consumer Key" msgstr "" -#: ../../mod/settings.php:612 ../../mod/settings.php:638 +#: ../../mod/settings.php:611 ../../mod/settings.php:637 msgid "Consumer Secret" msgstr "" -#: ../../mod/settings.php:613 ../../mod/settings.php:639 +#: ../../mod/settings.php:612 ../../mod/settings.php:638 msgid "Redirect" msgstr "" -#: ../../mod/settings.php:614 ../../mod/settings.php:640 +#: ../../mod/settings.php:613 ../../mod/settings.php:639 msgid "Icon url" msgstr "" -#: ../../mod/settings.php:625 +#: ../../mod/settings.php:624 msgid "You can't edit this application." msgstr "" -#: ../../mod/settings.php:668 +#: ../../mod/settings.php:667 msgid "Connected Apps" msgstr "" -#: ../../mod/settings.php:672 +#: ../../mod/settings.php:671 msgid "Client key starts with" msgstr "" -#: ../../mod/settings.php:673 +#: ../../mod/settings.php:672 msgid "No name" msgstr "" -#: ../../mod/settings.php:674 +#: ../../mod/settings.php:673 msgid "Remove authorization" msgstr "" -#: ../../mod/settings.php:685 +#: ../../mod/settings.php:684 msgid "No feature settings configured" msgstr "" -#: ../../mod/settings.php:693 +#: ../../mod/settings.php:692 msgid "Feature Settings" msgstr "" -#: ../../mod/settings.php:716 +#: ../../mod/settings.php:715 msgid "Account Settings" msgstr "" -#: ../../mod/settings.php:717 +#: ../../mod/settings.php:716 msgid "Password Settings" msgstr "" -#: ../../mod/settings.php:718 +#: ../../mod/settings.php:717 msgid "New Password:" msgstr "" -#: ../../mod/settings.php:719 +#: ../../mod/settings.php:718 msgid "Confirm:" msgstr "" -#: ../../mod/settings.php:719 +#: ../../mod/settings.php:718 msgid "Leave password fields blank unless changing" msgstr "" -#: ../../mod/settings.php:721 ../../mod/settings.php:1019 +#: ../../mod/settings.php:720 ../../mod/settings.php:1018 msgid "Email Address:" msgstr "" -#: ../../mod/settings.php:722 +#: ../../mod/settings.php:721 msgid "Remove Account" msgstr "" -#: ../../mod/settings.php:723 +#: ../../mod/settings.php:722 msgid "Warning: This action is permanent and cannot be reversed." msgstr "" -#: ../../mod/settings.php:739 +#: ../../mod/settings.php:738 msgid "Off" msgstr "" -#: ../../mod/settings.php:739 +#: ../../mod/settings.php:738 msgid "On" msgstr "" -#: ../../mod/settings.php:746 +#: ../../mod/settings.php:745 msgid "Additional Features" msgstr "" -#: ../../mod/settings.php:771 +#: ../../mod/settings.php:770 msgid "Connector Settings" msgstr "" -#: ../../mod/settings.php:801 ../../mod/admin.php:361 +#: ../../mod/settings.php:800 ../../mod/admin.php:361 msgid "No special theme for mobile devices" msgstr "" -#: ../../mod/settings.php:841 +#: ../../mod/settings.php:840 msgid "Display Settings" msgstr "" -#: ../../mod/settings.php:847 +#: ../../mod/settings.php:846 msgid "Display Theme:" msgstr "" -#: ../../mod/settings.php:848 +#: ../../mod/settings.php:847 msgid "Mobile Theme:" msgstr "" -#: ../../mod/settings.php:849 +#: ../../mod/settings.php:848 msgid "Update browser every xx seconds" msgstr "" -#: ../../mod/settings.php:849 +#: ../../mod/settings.php:848 msgid "Minimum of 10 seconds, no maximum" msgstr "" -#: ../../mod/settings.php:850 +#: ../../mod/settings.php:849 msgid "Maximum number of conversations to load at any time:" msgstr "" -#: ../../mod/settings.php:850 +#: ../../mod/settings.php:849 msgid "Maximum of 100 items" msgstr "" -#: ../../mod/settings.php:851 +#: ../../mod/settings.php:850 msgid "Don't show emoticons" msgstr "" -#: ../../mod/settings.php:887 +#: ../../mod/settings.php:886 msgid "Nobody except yourself" msgstr "" -#: ../../mod/settings.php:888 +#: ../../mod/settings.php:887 msgid "Only those you specifically allow" msgstr "" -#: ../../mod/settings.php:889 +#: ../../mod/settings.php:888 msgid "Anybody in your address book" msgstr "" -#: ../../mod/settings.php:890 +#: ../../mod/settings.php:889 msgid "Anybody on this website" msgstr "" -#: ../../mod/settings.php:891 +#: ../../mod/settings.php:890 msgid "Anybody in this network" msgstr "" -#: ../../mod/settings.php:892 +#: ../../mod/settings.php:891 msgid "Anybody on the internet" msgstr "" -#: ../../mod/settings.php:965 +#: ../../mod/settings.php:964 msgid "Publish your default profile in the network directory" msgstr "" -#: ../../mod/settings.php:970 +#: ../../mod/settings.php:969 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: ../../mod/settings.php:974 ../../mod/profile_photo.php:298 +#: ../../mod/settings.php:973 ../../mod/profile_photo.php:298 msgid "or" msgstr "" -#: ../../mod/settings.php:979 +#: ../../mod/settings.php:978 msgid "Your channel address is" msgstr "" -#: ../../mod/settings.php:990 +#: ../../mod/settings.php:989 msgid "Automatically expire posts after this many days:" msgstr "" -#: ../../mod/settings.php:990 +#: ../../mod/settings.php:989 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "" -#: ../../mod/settings.php:991 +#: ../../mod/settings.php:990 msgid "Advanced expiration settings" msgstr "" -#: ../../mod/settings.php:992 +#: ../../mod/settings.php:991 msgid "Advanced Expiration" msgstr "" -#: ../../mod/settings.php:993 +#: ../../mod/settings.php:992 msgid "Expire posts:" msgstr "" -#: ../../mod/settings.php:995 +#: ../../mod/settings.php:994 msgid "Expire starred posts:" msgstr "" -#: ../../mod/settings.php:996 +#: ../../mod/settings.php:995 msgid "Expire photos:" msgstr "" -#: ../../mod/settings.php:997 +#: ../../mod/settings.php:996 msgid "Only expire posts by others:" msgstr "" -#: ../../mod/settings.php:1008 +#: ../../mod/settings.php:1007 msgid "Channel Settings" msgstr "" -#: ../../mod/settings.php:1017 +#: ../../mod/settings.php:1016 msgid "Basic Settings" msgstr "" -#: ../../mod/settings.php:1020 +#: ../../mod/settings.php:1019 msgid "Your Timezone:" msgstr "" -#: ../../mod/settings.php:1021 +#: ../../mod/settings.php:1020 msgid "Default Post Location:" msgstr "" -#: ../../mod/settings.php:1022 +#: ../../mod/settings.php:1021 msgid "Use Browser Location:" msgstr "" -#: ../../mod/settings.php:1025 +#: ../../mod/settings.php:1024 msgid "Security and Privacy Settings" msgstr "" -#: ../../mod/settings.php:1027 +#: ../../mod/settings.php:1026 msgid "Quick Privacy Settings:" msgstr "" -#: ../../mod/settings.php:1028 +#: ../../mod/settings.php:1027 msgid "Very Public - extremely permissive" msgstr "" -#: ../../mod/settings.php:1029 +#: ../../mod/settings.php:1028 msgid "Typical - default public, privacy when desired" msgstr "" -#: ../../mod/settings.php:1030 +#: ../../mod/settings.php:1029 msgid "Private - default private, rarely open or public" msgstr "" -#: ../../mod/settings.php:1031 +#: ../../mod/settings.php:1030 msgid "Blocked - default blocked to/from everybody" msgstr "" -#: ../../mod/settings.php:1034 +#: ../../mod/settings.php:1033 msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../mod/settings.php:1034 +#: ../../mod/settings.php:1033 msgid "May reduce spam activity" msgstr "" -#: ../../mod/settings.php:1035 +#: ../../mod/settings.php:1034 msgid "Default Post Permissions" msgstr "" -#: ../../mod/settings.php:1036 +#: ../../mod/settings.php:1035 msgid "(click to open/close)" msgstr "" -#: ../../mod/settings.php:1049 +#: ../../mod/settings.php:1048 msgid "Maximum private messages per day from unknown people:" msgstr "" -#: ../../mod/settings.php:1049 +#: ../../mod/settings.php:1048 msgid "Useful to reduce spamming" msgstr "" -#: ../../mod/settings.php:1052 +#: ../../mod/settings.php:1051 msgid "Notification Settings" msgstr "" -#: ../../mod/settings.php:1053 +#: ../../mod/settings.php:1052 msgid "By default post a status message when:" msgstr "" -#: ../../mod/settings.php:1054 +#: ../../mod/settings.php:1053 msgid "accepting a friend request" msgstr "" -#: ../../mod/settings.php:1055 +#: ../../mod/settings.php:1054 msgid "joining a forum/community" msgstr "" -#: ../../mod/settings.php:1056 +#: ../../mod/settings.php:1055 msgid "making an interesting profile change" msgstr "" -#: ../../mod/settings.php:1057 +#: ../../mod/settings.php:1056 msgid "Send a notification email when:" msgstr "" -#: ../../mod/settings.php:1058 +#: ../../mod/settings.php:1057 msgid "You receive an introduction" msgstr "" -#: ../../mod/settings.php:1059 +#: ../../mod/settings.php:1058 msgid "Your introductions are confirmed" msgstr "" -#: ../../mod/settings.php:1060 +#: ../../mod/settings.php:1059 msgid "Someone writes on your profile wall" msgstr "" -#: ../../mod/settings.php:1061 +#: ../../mod/settings.php:1060 msgid "Someone writes a followup comment" msgstr "" -#: ../../mod/settings.php:1062 +#: ../../mod/settings.php:1061 msgid "You receive a private message" msgstr "" -#: ../../mod/settings.php:1063 +#: ../../mod/settings.php:1062 msgid "You receive a friend suggestion" msgstr "" -#: ../../mod/settings.php:1064 +#: ../../mod/settings.php:1063 msgid "You are tagged in a post" msgstr "" -#: ../../mod/settings.php:1065 +#: ../../mod/settings.php:1064 msgid "You are poked/prodded/etc. in a post" msgstr "" -#: ../../mod/settings.php:1068 +#: ../../mod/settings.php:1067 msgid "Advanced Account/Page Type Settings" msgstr "" -#: ../../mod/settings.php:1069 +#: ../../mod/settings.php:1068 msgid "Change the behaviour of this account for special situations" msgstr "" @@ -3747,6 +3744,118 @@ msgstr "" msgid "No matches" msgstr "" +#: ../../mod/mitem.php:13 ../../mod/menu.php:84 +msgid "Menu not found." +msgstr "" + +#: ../../mod/mitem.php:66 +msgid "Menu element updated." +msgstr "" + +#: ../../mod/mitem.php:70 +msgid "Unable to update menu element." +msgstr "" + +#: ../../mod/mitem.php:76 +msgid "Menu element added." +msgstr "" + +#: ../../mod/mitem.php:80 +msgid "Unable to add menu element." +msgstr "" + +#: ../../mod/mitem.php:97 ../../mod/xchan.php:25 ../../mod/menu.php:110 +msgid "Not found." +msgstr "" + +#: ../../mod/mitem.php:114 +msgid "Manage Menu Elements" +msgstr "" + +#: ../../mod/mitem.php:117 +msgid "Edit menu" +msgstr "" + +#: ../../mod/mitem.php:120 +msgid "Edit element" +msgstr "" + +#: ../../mod/mitem.php:121 +msgid "Drop element" +msgstr "" + +#: ../../mod/mitem.php:122 +msgid "New element" +msgstr "" + +#: ../../mod/mitem.php:123 +msgid "Edit this menu container" +msgstr "" + +#: ../../mod/mitem.php:124 +msgid "Add menu element" +msgstr "" + +#: ../../mod/mitem.php:125 +msgid "Delete this menu item" +msgstr "" + +#: ../../mod/mitem.php:126 +msgid "Edit this menu item" +msgstr "" + +#: ../../mod/mitem.php:140 +msgid "New Menu Element" +msgstr "" + +#: ../../mod/mitem.php:142 ../../mod/mitem.php:183 +msgid "Link text" +msgstr "" + +#: ../../mod/mitem.php:143 ../../mod/mitem.php:184 +msgid "URL of link" +msgstr "" + +#: ../../mod/mitem.php:144 ../../mod/mitem.php:185 +msgid "Use Red magic-auth if available" +msgstr "" + +#: ../../mod/mitem.php:145 ../../mod/mitem.php:186 +msgid "Open link in new window" +msgstr "" + +#: ../../mod/mitem.php:147 ../../mod/mitem.php:188 +msgid "Order in list" +msgstr "" + +#: ../../mod/mitem.php:147 ../../mod/mitem.php:188 +msgid "Higher numbers will sink to bottom of listing" +msgstr "" + +#: ../../mod/mitem.php:148 ../../mod/menu.php:76 ../../mod/new_channel.php:117 +msgid "Create" +msgstr "" + +#: ../../mod/mitem.php:160 +msgid "Menu item not found." +msgstr "" + +#: ../../mod/mitem.php:169 +msgid "Menu item deleted." +msgstr "" + +#: ../../mod/mitem.php:171 +msgid "Menu item could not be deleted." +msgstr "" + +#: ../../mod/mitem.php:180 +msgid "Edit Menu Element" +msgstr "" + +#: ../../mod/mitem.php:189 ../../mod/menu.php:104 +msgid "Modify" +msgstr "" + #: ../../mod/group.php:26 msgid "Collection created." msgstr "" @@ -3939,11 +4048,11 @@ msgstr "" msgid "added your channel" msgstr "" -#: ../../mod/ping.php:230 ../../boot.php:1727 ../../boot.php:1807 +#: ../../mod/ping.php:230 ../../boot.php:1737 ../../boot.php:1817 msgid "g A l F d" msgstr "" -#: ../../mod/ping.php:252 ../../boot.php:1773 ../../boot.php:1848 +#: ../../mod/ping.php:252 ../../boot.php:1783 ../../boot.php:1858 msgid "[today]" msgstr "" @@ -3951,14 +4060,91 @@ msgstr "" msgid "posted an event" msgstr "" -#: ../../mod/xchan.php:25 -msgid "Not found." -msgstr "" - #: ../../mod/filer.php:35 msgid "- select -" msgstr "" +#: ../../mod/menu.php:17 +msgid "Menu updated." +msgstr "" + +#: ../../mod/menu.php:21 +msgid "Unable to update menu." +msgstr "" + +#: ../../mod/menu.php:26 +msgid "Menu created." +msgstr "" + +#: ../../mod/menu.php:30 +msgid "Unable to create menu." +msgstr "" + +#: ../../mod/menu.php:50 +msgid "Manage Menus" +msgstr "" + +#: ../../mod/menu.php:53 +msgid "Drop" +msgstr "" + +#: ../../mod/menu.php:54 ../../mod/network.php:298 +#: ../../mod/connections.php:512 +msgid "New" +msgstr "" + +#: ../../mod/menu.php:55 +msgid "Create a new menu" +msgstr "" + +#: ../../mod/menu.php:56 +msgid "Delete this menu" +msgstr "" + +#: ../../mod/menu.php:57 ../../mod/menu.php:101 +msgid "Edit menu contents" +msgstr "" + +#: ../../mod/menu.php:58 +msgid "Edit this menu" +msgstr "" + +#: ../../mod/menu.php:73 +msgid "New Menu" +msgstr "" + +#: ../../mod/menu.php:74 ../../mod/menu.php:102 +msgid "Menu name" +msgstr "" + +#: ../../mod/menu.php:74 ../../mod/menu.php:102 +msgid "Must be unique, only seen by you" +msgstr "" + +#: ../../mod/menu.php:75 ../../mod/menu.php:103 +msgid "Menu title" +msgstr "" + +#: ../../mod/menu.php:75 ../../mod/menu.php:103 +msgid "Menu title as seen by others" +msgstr "" + +#: ../../mod/menu.php:90 +msgid "Menu deleted." +msgstr "" + +#: ../../mod/menu.php:92 +msgid "Menu could not be deleted." +msgstr "" + +#: ../../mod/menu.php:98 +msgid "Edit Menu" +msgstr "" + +#: ../../mod/menu.php:100 +msgid "Add or remove entries to this menu" +msgstr "" + #: ../../mod/home.php:76 #, php-format msgid "Welcome to %s" @@ -4066,119 +4252,115 @@ msgstr "" msgid "Authenticate" msgstr "" -#: ../../mod/item.php:121 +#: ../../mod/item.php:122 msgid "Unable to locate original post." msgstr "" -#: ../../mod/item.php:289 +#: ../../mod/item.php:290 msgid "Empty post discarded." msgstr "" -#: ../../mod/item.php:751 +#: ../../mod/item.php:754 msgid "System error. Post not saved." msgstr "" -#: ../../mod/item.php:1028 ../../mod/wall_upload.php:41 +#: ../../mod/item.php:1031 ../../mod/wall_upload.php:41 msgid "Wall Photos" msgstr "" -#: ../../mod/network.php:158 ../../mod/search.php:20 +#: ../../mod/network.php:141 ../../mod/search.php:20 msgid "Remove term" msgstr "" -#: ../../mod/network.php:296 +#: ../../mod/network.php:279 msgid "Commented Order" msgstr "" -#: ../../mod/network.php:299 +#: ../../mod/network.php:282 msgid "Sort by Comment Date" msgstr "" -#: ../../mod/network.php:302 +#: ../../mod/network.php:285 msgid "Posted Order" msgstr "" -#: ../../mod/network.php:305 +#: ../../mod/network.php:288 msgid "Sort by Post Date" msgstr "" -#: ../../mod/network.php:309 ../../mod/notifications.php:86 +#: ../../mod/network.php:292 ../../mod/notifications.php:86 msgid "Personal" msgstr "" -#: ../../mod/network.php:312 +#: ../../mod/network.php:295 msgid "Posts that mention or involve you" msgstr "" -#: ../../mod/network.php:315 ../../mod/connections.php:511 -msgid "New" -msgstr "" - -#: ../../mod/network.php:318 +#: ../../mod/network.php:301 msgid "Activity Stream - by date" msgstr "" -#: ../../mod/network.php:325 +#: ../../mod/network.php:308 msgid "Starred" msgstr "" -#: ../../mod/network.php:328 +#: ../../mod/network.php:311 msgid "Favourite Posts" msgstr "" -#: ../../mod/network.php:335 +#: ../../mod/network.php:318 msgid "Spam" msgstr "" -#: ../../mod/network.php:338 +#: ../../mod/network.php:321 msgid "Posts flagged as SPAM" msgstr "" -#: ../../mod/network.php:378 +#: ../../mod/network.php:361 msgid "Refresh" msgstr "" -#: ../../mod/network.php:379 ../../mod/connections.php:364 +#: ../../mod/network.php:362 ../../mod/connections.php:365 msgid "Me" msgstr "" -#: ../../mod/network.php:380 ../../mod/connections.php:366 +#: ../../mod/network.php:363 ../../mod/connections.php:367 msgid "Best Friends" msgstr "" -#: ../../mod/network.php:382 +#: ../../mod/network.php:365 msgid "Co-workers" msgstr "" -#: ../../mod/network.php:383 ../../mod/connections.php:368 +#: ../../mod/network.php:366 ../../mod/connections.php:369 msgid "Former Friends" msgstr "" -#: ../../mod/network.php:384 ../../mod/connections.php:369 +#: ../../mod/network.php:367 ../../mod/connections.php:370 msgid "Acquaintances" msgstr "" -#: ../../mod/network.php:385 +#: ../../mod/network.php:368 msgid "Everybody" msgstr "" -#: ../../mod/network.php:402 +#: ../../mod/network.php:385 msgid "Search Results For:" msgstr "" -#: ../../mod/network.php:447 +#: ../../mod/network.php:430 msgid "No such group" msgstr "" -#: ../../mod/network.php:458 +#: ../../mod/network.php:441 msgid "Group is empty" msgstr "" -#: ../../mod/network.php:473 +#: ../../mod/network.php:456 msgid "Contact: " msgstr "" -#: ../../mod/network.php:476 +#: ../../mod/network.php:459 msgid "Invalid contact." msgstr "" @@ -4596,12 +4778,12 @@ msgid "Deny" msgstr "" #: ../../mod/admin.php:641 ../../mod/intro.php:14 ../../mod/intro.php:99 -#: ../../mod/connections.php:308 ../../mod/connections.php:449 +#: ../../mod/connections.php:309 ../../mod/connections.php:450 msgid "Block" msgstr "" -#: ../../mod/admin.php:642 ../../mod/connections.php:308 -#: ../../mod/connections.php:449 +#: ../../mod/admin.php:642 ../../mod/connections.php:309 +#: ../../mod/connections.php:450 msgid "Unblock" msgstr "" @@ -4701,7 +4883,7 @@ msgid "Log level" msgstr "" #: ../../mod/intro.php:17 ../../mod/intro.php:100 -#: ../../mod/connections.php:315 ../../mod/connections.php:450 +#: ../../mod/connections.php:316 ../../mod/connections.php:451 #: ../../mod/notifications.php:51 ../../mod/notifications.php:162 #: ../../mod/notifications.php:208 msgid "Ignore" @@ -4727,7 +4909,7 @@ msgstr "" msgid "System error. Please try again later." msgstr "" -#: ../../mod/intro.php:95 ../../mod/connections.php:455 +#: ../../mod/intro.php:95 ../../mod/connections.php:456 #: ../../mod/notifications.php:155 ../../mod/notifications.php:202 msgid "Hide this contact from others" msgstr "" @@ -4759,361 +4941,361 @@ msgstr "" msgid "Failed to update connection record." msgstr "" -#: ../../mod/connections.php:186 +#: ../../mod/connections.php:187 msgid "Could not access address book record." msgstr "" -#: ../../mod/connections.php:200 +#: ../../mod/connections.php:201 msgid "Refresh failed - channel is currently unavailable." msgstr "" -#: ../../mod/connections.php:207 +#: ../../mod/connections.php:208 msgid "Channel has been unblocked" msgstr "" -#: ../../mod/connections.php:208 +#: ../../mod/connections.php:209 msgid "Channel has been blocked" msgstr "" -#: ../../mod/connections.php:212 ../../mod/connections.php:224 -#: ../../mod/connections.php:236 ../../mod/connections.php:248 -#: ../../mod/connections.php:263 +#: ../../mod/connections.php:213 ../../mod/connections.php:225 +#: ../../mod/connections.php:237 ../../mod/connections.php:249 +#: ../../mod/connections.php:264 msgid "Unable to set address book parameters." msgstr "" -#: ../../mod/connections.php:219 +#: ../../mod/connections.php:220 msgid "Channel has been unignored" msgstr "" -#: ../../mod/connections.php:220 +#: ../../mod/connections.php:221 msgid "Channel has been ignored" msgstr "" -#: ../../mod/connections.php:231 +#: ../../mod/connections.php:232 msgid "Channel has been unarchived" msgstr "" -#: ../../mod/connections.php:232 +#: ../../mod/connections.php:233 msgid "Channel has been archived" msgstr "" -#: ../../mod/connections.php:243 +#: ../../mod/connections.php:244 msgid "Channel has been unhidden" msgstr "" -#: ../../mod/connections.php:244 +#: ../../mod/connections.php:245 msgid "Channel has been hidden" msgstr "" -#: ../../mod/connections.php:258 +#: ../../mod/connections.php:259 msgid "Channel has been approved" msgstr "" -#: ../../mod/connections.php:259 +#: ../../mod/connections.php:260 msgid "Channel has been unapproved" msgstr "" -#: ../../mod/connections.php:277 +#: ../../mod/connections.php:278 msgid "Contact has been removed." msgstr "" -#: ../../mod/connections.php:297 +#: ../../mod/connections.php:298 #, php-format msgid "View %s's profile" msgstr "" -#: ../../mod/connections.php:301 +#: ../../mod/connections.php:302 msgid "Refresh Permissions" msgstr "" -#: ../../mod/connections.php:304 +#: ../../mod/connections.php:305 msgid "Fetch updated permissions" msgstr "" -#: ../../mod/connections.php:311 +#: ../../mod/connections.php:312 msgid "Block or Unblock this connection" msgstr "" -#: ../../mod/connections.php:315 ../../mod/connections.php:450 +#: ../../mod/connections.php:316 ../../mod/connections.php:451 msgid "Unignore" msgstr "" -#: ../../mod/connections.php:318 +#: ../../mod/connections.php:319 msgid "Ignore or Unignore this connection" msgstr "" -#: ../../mod/connections.php:321 +#: ../../mod/connections.php:322 msgid "Unarchive" msgstr "" -#: ../../mod/connections.php:321 +#: ../../mod/connections.php:322 msgid "Archive" msgstr "" -#: ../../mod/connections.php:324 +#: ../../mod/connections.php:325 msgid "Archive or Unarchive this connection" msgstr "" -#: ../../mod/connections.php:327 +#: ../../mod/connections.php:328 msgid "Unhide" msgstr "" -#: ../../mod/connections.php:327 +#: ../../mod/connections.php:328 msgid "Hide" msgstr "" -#: ../../mod/connections.php:330 +#: ../../mod/connections.php:331 msgid "Hide or Unhide this connection" msgstr "" -#: ../../mod/connections.php:337 +#: ../../mod/connections.php:338 msgid "Delete this connection" msgstr "" -#: ../../mod/connections.php:370 +#: ../../mod/connections.php:371 msgid "Unknown" msgstr "" -#: ../../mod/connections.php:380 ../../mod/connections.php:408 +#: ../../mod/connections.php:381 ../../mod/connections.php:409 msgid "Approve this connection" msgstr "" -#: ../../mod/connections.php:380 +#: ../../mod/connections.php:381 msgid "Accept connection to allow communication" msgstr "" -#: ../../mod/connections.php:396 +#: ../../mod/connections.php:397 msgid "Automatic Permissions Settings" msgstr "" -#: ../../mod/connections.php:396 +#: ../../mod/connections.php:397 #, php-format msgid "Connections: settings for %s" msgstr "" -#: ../../mod/connections.php:400 +#: ../../mod/connections.php:401 msgid "" "When receiving a channel introduction, any permissions provided here will be " "applied to the new connection automatically and the introduction approved. " "Leave this page if you do not wish to use this feature." msgstr "" -#: ../../mod/connections.php:402 +#: ../../mod/connections.php:403 msgid "Slide to adjust your degree of friendship" msgstr "" -#: ../../mod/connections.php:409 +#: ../../mod/connections.php:410 msgid "Connection has no individual permissions!" msgstr "" -#: ../../mod/connections.php:410 +#: ../../mod/connections.php:411 msgid "" "This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"." msgstr "" -#: ../../mod/connections.php:412 +#: ../../mod/connections.php:413 msgid "Profile Visibility" msgstr "" -#: ../../mod/connections.php:413 +#: ../../mod/connections.php:414 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "" -#: ../../mod/connections.php:414 +#: ../../mod/connections.php:415 msgid "Contact Information / Notes" msgstr "" -#: ../../mod/connections.php:415 +#: ../../mod/connections.php:416 msgid "Edit contact notes" msgstr "" -#: ../../mod/connections.php:417 +#: ../../mod/connections.php:418 msgid "Their Settings" msgstr "" -#: ../../mod/connections.php:418 +#: ../../mod/connections.php:419 msgid "My Settings" msgstr "" -#: ../../mod/connections.php:420 +#: ../../mod/connections.php:421 msgid "Forum Members" msgstr "" -#: ../../mod/connections.php:421 +#: ../../mod/connections.php:422 msgid "Soapbox" msgstr "" -#: ../../mod/connections.php:422 +#: ../../mod/connections.php:423 msgid "Full Sharing" msgstr "" -#: ../../mod/connections.php:423 +#: ../../mod/connections.php:424 msgid "Cautious Sharing" msgstr "" -#: ../../mod/connections.php:424 +#: ../../mod/connections.php:425 msgid "Follow Only" msgstr "" -#: ../../mod/connections.php:425 +#: ../../mod/connections.php:426 msgid "Individual Permissions" msgstr "" -#: ../../mod/connections.php:426 +#: ../../mod/connections.php:427 msgid "" "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." msgstr "" -#: ../../mod/connections.php:427 +#: ../../mod/connections.php:428 msgid "Advanced Permissions" msgstr "" -#: ../../mod/connections.php:428 +#: ../../mod/connections.php:429 msgid "Quick Links" msgstr "" -#: ../../mod/connections.php:432 +#: ../../mod/connections.php:433 #, php-format msgid "Visit %s's profile - %s" msgstr "" -#: ../../mod/connections.php:433 +#: ../../mod/connections.php:434 msgid "Block/Unblock contact" msgstr "" -#: ../../mod/connections.php:434 +#: ../../mod/connections.php:435 msgid "Ignore contact" msgstr "" -#: ../../mod/connections.php:435 +#: ../../mod/connections.php:436 msgid "Repair URL settings" msgstr "" -#: ../../mod/connections.php:436 +#: ../../mod/connections.php:437 msgid "View conversations" msgstr "" -#: ../../mod/connections.php:438 +#: ../../mod/connections.php:439 msgid "Delete contact" msgstr "" -#: ../../mod/connections.php:441 +#: ../../mod/connections.php:442 msgid "Last update:" msgstr "" -#: ../../mod/connections.php:443 +#: ../../mod/connections.php:444 msgid "Update public posts" msgstr "" -#: ../../mod/connections.php:445 +#: ../../mod/connections.php:446 msgid "Update now" msgstr "" -#: ../../mod/connections.php:451 +#: ../../mod/connections.php:452 msgid "Currently blocked" msgstr "" -#: ../../mod/connections.php:452 +#: ../../mod/connections.php:453 msgid "Currently ignored" msgstr "" -#: ../../mod/connections.php:453 +#: ../../mod/connections.php:454 msgid "Currently archived" msgstr "" -#: ../../mod/connections.php:454 +#: ../../mod/connections.php:455 msgid "Currently pending" msgstr "" -#: ../../mod/connections.php:455 +#: ../../mod/connections.php:456 msgid "" "Replies/likes to your public posts may still be visible" msgstr "" -#: ../../mod/connections.php:491 ../../mod/connections.php:563 +#: ../../mod/connections.php:492 ../../mod/connections.php:564 msgid "Blocked" msgstr "" -#: ../../mod/connections.php:496 ../../mod/connections.php:570 +#: ../../mod/connections.php:497 ../../mod/connections.php:571 msgid "Ignored" msgstr "" -#: ../../mod/connections.php:501 ../../mod/connections.php:584 +#: ../../mod/connections.php:502 ../../mod/connections.php:585 msgid "Hidden" msgstr "" -#: ../../mod/connections.php:506 ../../mod/connections.php:577 +#: ../../mod/connections.php:507 ../../mod/connections.php:578 msgid "Archived" msgstr "" -#: ../../mod/connections.php:517 +#: ../../mod/connections.php:518 msgid "All" msgstr "" -#: ../../mod/connections.php:538 +#: ../../mod/connections.php:539 msgid "Suggestions" msgstr "" -#: ../../mod/connections.php:541 +#: ../../mod/connections.php:542 msgid "Suggest new connections" msgstr "" -#: ../../mod/connections.php:547 +#: ../../mod/connections.php:548 msgid "Show pending (new) connections" msgstr "" -#: ../../mod/connections.php:550 +#: ../../mod/connections.php:551 msgid "All Connections" msgstr "" -#: ../../mod/connections.php:553 +#: ../../mod/connections.php:554 msgid "Show all connections" msgstr "" -#: ../../mod/connections.php:556 +#: ../../mod/connections.php:557 msgid "Unblocked" msgstr "" -#: ../../mod/connections.php:559 +#: ../../mod/connections.php:560 msgid "Only show unblocked connections" msgstr "" -#: ../../mod/connections.php:566 +#: ../../mod/connections.php:567 msgid "Only show blocked connections" msgstr "" -#: ../../mod/connections.php:573 +#: ../../mod/connections.php:574 msgid "Only show ignored connections" msgstr "" -#: ../../mod/connections.php:580 +#: ../../mod/connections.php:581 msgid "Only show archived connections" msgstr "" -#: ../../mod/connections.php:587 +#: ../../mod/connections.php:588 msgid "Only show hidden connections" msgstr "" -#: ../../mod/connections.php:629 +#: ../../mod/connections.php:630 #, php-format msgid "%1$s [%2$s]" msgstr "" -#: ../../mod/connections.php:630 ../../mod/nogroup.php:41 +#: ../../mod/connections.php:631 ../../mod/nogroup.php:41 msgid "Edit contact" msgstr "" -#: ../../mod/connections.php:654 +#: ../../mod/connections.php:655 msgid "Search your connections" msgstr "" -#: ../../mod/connections.php:655 +#: ../../mod/connections.php:656 msgid "Finding: " msgstr "" @@ -5380,23 +5562,23 @@ msgstr "" msgid "Edit/Manage Profiles" msgstr "" -#: ../../mod/profiles.php:624 ../../boot.php:1640 +#: ../../mod/profiles.php:624 ../../boot.php:1639 msgid "Change profile photo" msgstr "" -#: ../../mod/profiles.php:625 ../../boot.php:1647 +#: ../../mod/profiles.php:625 ../../boot.php:1646 msgid "Create New Profile" msgstr "" -#: ../../mod/profiles.php:636 ../../boot.php:1661 +#: ../../mod/profiles.php:636 ../../boot.php:1660 msgid "Profile Image" msgstr "" -#: ../../mod/profiles.php:639 ../../boot.php:1664 +#: ../../mod/profiles.php:639 ../../boot.php:1663 msgid "visible to everybody" msgstr "" -#: ../../mod/profiles.php:640 ../../boot.php:1665 +#: ../../mod/profiles.php:640 ../../boot.php:1664 msgid "Edit visibility" msgstr "" @@ -5437,10 +5619,6 @@ msgid "" "Or import an existing channel from another location" msgstr "" -#: ../../mod/new_channel.php:117 -msgid "Create" -msgstr "" - #: ../../mod/lostpass.php:15 msgid "No valid account found." msgstr "" @@ -5465,7 +5643,7 @@ msgid "" "Password reset failed." msgstr "" -#: ../../mod/lostpass.php:85 ../../boot.php:1372 +#: ../../mod/lostpass.php:85 ../../boot.php:1377 msgid "Password Reset" msgstr "" @@ -5780,7 +5958,7 @@ msgstr "" msgid "Image size reduction [%s] failed." msgstr "" -#: ../../mod/editwebpage.php:36 ../../mod/editpost.php:18 +#: ../../mod/editwebpage.php:37 ../../mod/editpost.php:18 msgid "Item not found" msgstr "" @@ -5788,15 +5966,15 @@ msgstr "" msgid "Edit post" msgstr "" -#: ../../mod/editwebpage.php:107 ../../mod/editpost.php:80 +#: ../../mod/editwebpage.php:105 ../../mod/editpost.php:80 msgid "Insert YouTube video" msgstr "" -#: ../../mod/editwebpage.php:108 ../../mod/editpost.php:81 +#: ../../mod/editwebpage.php:106 ../../mod/editpost.php:81 msgid "Insert Vorbis [.ogg] video" msgstr "" -#: ../../mod/editwebpage.php:109 ../../mod/editpost.php:82 +#: ../../mod/editwebpage.php:107 ../../mod/editpost.php:82 msgid "Insert Vorbis [.ogg] audio" msgstr "" @@ -6218,104 +6396,104 @@ msgstr "" msgid "0-99 default: 5" msgstr "" -#: ../../boot.php:1196 +#: ../../boot.php:1201 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: ../../boot.php:1199 +#: ../../boot.php:1204 #, php-format msgid "Update Error at %s" msgstr "" -#: ../../boot.php:1336 +#: ../../boot.php:1341 msgid "Create a New Account" msgstr "" -#: ../../boot.php:1365 +#: ../../boot.php:1370 msgid "Password" msgstr "" -#: ../../boot.php:1366 +#: ../../boot.php:1371 msgid "Remember me" msgstr "" -#: ../../boot.php:1371 +#: ../../boot.php:1376 msgid "Forgot your password?" msgstr "" -#: ../../boot.php:1490 +#: ../../boot.php:1495 msgid "Requested channel is not available." msgstr "" -#: ../../boot.php:1502 +#: ../../boot.php:1507 msgid " Sorry, you don't have the permission to view this profile. " msgstr "" -#: ../../boot.php:1646 +#: ../../boot.php:1645 msgid "Profiles" msgstr "" -#: ../../boot.php:1646 +#: ../../boot.php:1645 msgid "Manage/edit profiles" msgstr "" -#: ../../boot.php:1650 +#: ../../boot.php:1649 msgid "Edit Profile" msgstr "" -#: ../../boot.php:1728 ../../boot.php:1808 +#: ../../boot.php:1738 ../../boot.php:1818 msgid "F d" msgstr "" -#: ../../boot.php:1785 +#: ../../boot.php:1795 msgid "Birthday Reminders" msgstr "" -#: ../../boot.php:1786 +#: ../../boot.php:1796 msgid "Birthdays this week:" msgstr "" -#: ../../boot.php:1841 +#: ../../boot.php:1851 msgid "[No description]" msgstr "" -#: ../../boot.php:1859 +#: ../../boot.php:1869 msgid "Event Reminders" msgstr "" -#: ../../boot.php:1860 +#: ../../boot.php:1870 msgid "Events this week:" msgstr "" -#: ../../boot.php:2083 +#: ../../boot.php:2093 msgid "Channel" msgstr "" -#: ../../boot.php:2086 +#: ../../boot.php:2096 msgid "Status Messages and Posts" msgstr "" -#: ../../boot.php:2090 +#: ../../boot.php:2100 msgid "About" msgstr "" -#: ../../boot.php:2093 +#: ../../boot.php:2103 msgid "Profile Details" msgstr "" -#: ../../boot.php:2111 +#: ../../boot.php:2121 msgid "Events and Calendar" msgstr "" -#: ../../boot.php:2116 +#: ../../boot.php:2126 msgid "Webpages" msgstr "" -#: ../../boot.php:2119 +#: ../../boot.php:2129 msgid "Manage Webpages" msgstr "" -#: ../../boot.php:2346 +#: ../../boot.php:2356 msgid "toggle mobile" msgstr "" diff --git a/version.inc b/version.inc index e0ba0d8fd..6e830d804 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2013-08-15.406 +2013-08-17.408 diff --git a/view/tpl/build_query.tpl b/view/tpl/build_query.tpl index 06da526f1..e5bf3acce 100755 --- a/view/tpl/build_query.tpl +++ b/view/tpl/build_query.tpl @@ -39,6 +39,7 @@ if(bParam_new != 0) bCmd = bCmd + "&new=" + bParam_new; if(bParam_wall != 0) bCmd = bCmd + "&wall=" + bParam_wall; if(bParam_search != "") bCmd = bCmd + "&search=" + bParam_search; + if(bParam_order != "") bCmd = bCmd + "&order=" + bParam_order; if(bParam_file != "") bCmd = bCmd + "&file=" + bParam_file; if(bParam_cats != "") bCmd = bCmd + "&cats=" + bParam_cats; if(bParam_dend != "") bCmd = bCmd + "&dend=" + bParam_dend; -- cgit v1.2.3 From 353ccaac05fa73b7cdca4d5cc4ed7cc789a220b8 Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Sun, 18 Aug 2013 05:03:04 +0100 Subject: Issue #99 --- include/socgraph.php | 1 + 1 file changed, 1 insertion(+) diff --git a/include/socgraph.php b/include/socgraph.php index 177ed0f3a..b34d5142c 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -1,5 +1,6 @@ Date: Sun, 18 Aug 2013 00:04:38 -0700 Subject: Another try at issue #61 and #62 - an earlier fix was partially working but the issue persisted - this extends it a bit. --- include/items.php | 23 ++++++++++++++--------- js/main.js | 34 ++++++++++++++++++++++++++++++++++ version.inc | 2 +- 3 files changed, 49 insertions(+), 10 deletions(-) diff --git a/include/items.php b/include/items.php index df49ba5c7..5137a8b31 100755 --- a/include/items.php +++ b/include/items.php @@ -773,14 +773,19 @@ function decode_tags($t) { function activity_sanitise($arr) { if($arr) { - $ret = array(); - foreach($arr as $k => $x) { - if(is_array($x)) - $ret[$k] = activity_sanitise($x); - else - $ret[$k] = htmlentities($x, ENT_COMPAT,'UTF-8',false); + if(is_array($arr)) { + $ret = array(); + foreach($arr as $k => $x) { + if(is_array($x)) + $ret[$k] = activity_sanitise($x); + else + $ret[$k] = htmlentities($x, ENT_COMPAT,'UTF-8',false); + } + return $ret; + } + else { + return htmlentities($arr, ENT_COMPAT,'UTF-8', false); } - return $ret; } return ''; } @@ -1572,10 +1577,10 @@ function item_store($arr,$allow_exec = false) { unset($arr['term']); } - dbesc_array($arr); - logger('item_store: ' . print_r($arr,true), LOGGER_DATA); + dbesc_array($arr); + $r = dbq("INSERT INTO `item` (`" . implode("`, `", array_keys($arr)) . "`) VALUES ('" diff --git a/js/main.js b/js/main.js index 2d1e9ab76..9d764c74e 100644 --- a/js/main.js +++ b/js/main.js @@ -343,6 +343,8 @@ function updateConvItems(mode,data) { + + if(mode === 'update') { prev = 'threads-begin'; @@ -391,15 +393,31 @@ function updateConvItems(mode,data) { }); } if(mode === 'append') { + next = 'threads-end'; + + + $('.thread-wrapper.toplevel_item',data).each(function() { + + var ident = $(this).attr('id'); + var commentWrap = $('#'+ident+' .collapsed-comments').attr('id'); + var itmId = 0; + var isVisible = false; + + if(typeof commentWrap !== 'undefined') + itmId = commentWrap.replace('collapsed-comments-',''); if($('#' + ident).length == 0) { $('img',this).each(function() { $(this).attr('src',$(this).attr('dst')); }); + if($('#collapsed-comments-'+itmId).is(':visible')) + isVisible = true; $('#threads-end').before($(this)); + if(isVisible) + showHideComments(itmId); $(".autotime").timeago(); // $("div.wall-item-body").divgrow({ initialHeight: 400 }); @@ -408,7 +426,11 @@ function updateConvItems(mode,data) { $('img',this).each(function() { $(this).attr('src',$(this).attr('dst')); }); + if($('#collapsed-comments-'+itmId).is(':visible')) + isVisible = true; $('#' + ident).replaceWith($(this)); + if(isVisible) + showHideComments(itmId); $(".autotime").timeago(); // $("div.wall-item-body").divgrow({ initialHeight: 400 }); } @@ -425,13 +447,25 @@ function updateConvItems(mode,data) { prev = 'threads-begin'; $('.thread-wrapper.toplevel_item',data).each(function() { + var ident = $(this).attr('id'); + var commentWrap = $('#'+ident+' .collapsed-comments').attr('id'); + var itmId = 0; + var isVisible = false; + + if(typeof commentWrap !== 'undefined') + itmId = commentWrap.replace('collapsed-comments-',''); if($('#' + ident).length == 0 && profile_page == 1) { $('img',this).each(function() { $(this).attr('src',$(this).attr('dst')); }); + + if($('#collapsed-comments-'+itmId).is(':visible')) + isVisible = true; $('#' + prev).after($(this)); + if(isVisible) + showHideComments(itmId); $(".autotime").timeago(); // $("div.wall-item-body").divgrow({ initialHeight: 400 }); diff --git a/version.inc b/version.inc index 6e830d804..7f9c7a59b 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2013-08-17.408 +2013-08-18.409 -- cgit v1.2.3 From 8bac352b1cbbefd12fe04e1b269367472cba58ee Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 18 Aug 2013 05:04:37 -0700 Subject: item_store logging to discover where object is getting quote mangled. --- include/items.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/items.php b/include/items.php index 5137a8b31..ba0867562 100755 --- a/include/items.php +++ b/include/items.php @@ -1417,12 +1417,15 @@ function item_store($arr,$allow_exec = false) { } - + if($arr['object']) + logger('item_store: input object: ' . print_r($arr['object'],true), LOGGER_DATA); if((x($arr,'object')) && is_array($arr['object'])) { activity_sanitise($arr['object']); + logger('item_store: sanitised object: ' . print_r($arr['object'],true), LOGGER_DATA); $arr['object'] = json_encode($arr['object']); + logger('item_store: encoded object: ' . print_r($arr['object'],true), LOGGER_DATA); } if((x($arr,'target')) && is_array($arr['target'])) { -- cgit v1.2.3 From 5c0220df0942db7aded0540c8c408bfbaadf6c16 Mon Sep 17 00:00:00 2001 From: Christian Vogeley Date: Mon, 19 Aug 2013 01:08:15 +0200 Subject: More steps for mobile theme toggling + dash elimination --- boot.php | 22 ++++++++++++++-------- mod/toggle_mobile.php | 4 ++-- 2 files changed, 16 insertions(+), 10 deletions(-) diff --git a/boot.php b/boot.php index f7d507d22..7b2d72f3c 100755 --- a/boot.php +++ b/boot.php @@ -1964,13 +1964,19 @@ function current_theme(){ $is_mobile = $a->is_mobile || $a->is_tablet; if($is_mobile) { - $system_theme = ((isset($a->config['system']['mobile_theme'])) ? $a->config['system']['mobile_theme'] : ''); - $theme_name = ((isset($_SESSION) && x($_SESSION,'mobile_theme')) ? $_SESSION['mobile_theme'] : $system_theme); - - if($theme_name === '---') { - // user has selected to have the mobile theme be the same as the normal one - $system_theme = ''; - $theme_name = ''; + if(isset($_SESSION['show_mobile']) && !$_SESSION['show_mobile']) { + $system_theme = ''; + $theme_name = ''; + } + else { + $system_theme = ((isset($a->config['system']['mobile_theme'])) ? $a->config['system']['mobile_theme'] : ''); + $theme_name = ((isset($_SESSION) && x($_SESSION,'mobile_theme')) ? $_SESSION['mobile_theme'] : $system_theme); + + if($theme_name === '---') { + // user has selected to have the mobile theme be the same as the normal one + $system_theme = ''; + $theme_name = ''; + } } } else { @@ -2345,7 +2351,7 @@ function construct_page(&$a) { } if($a->is_mobile || $a->is_tablet) { - if(isset($_SESSION['show-mobile']) && !$_SESSION['show-mobile']) { + if(isset($_SESSION['show_mobile']) && !$_SESSION['show_mobile']) { $link = $a->get_baseurl() . '/toggle_mobile?f=&address=' . curPageURL(); } else { diff --git a/mod/toggle_mobile.php b/mod/toggle_mobile.php index 00991e44c..06dadca04 100644 --- a/mod/toggle_mobile.php +++ b/mod/toggle_mobile.php @@ -3,9 +3,9 @@ function toggle_mobile_init(&$a) { if(isset($_GET['off'])) - $_SESSION['show-mobile'] = false; + $_SESSION['show_mobile'] = false; else - $_SESSION['show-mobile'] = true; + $_SESSION['show_mobile'] = true; if(isset($_GET['address'])) $address = $_GET['address']; -- cgit v1.2.3 From 20f3d097080fde4315b25523fe29b129cdd7034c Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 18 Aug 2013 20:20:03 -0700 Subject: some sane permission defaults. --- include/follow.php | 5 +++-- include/identity.php | 15 +++++++++++++-- include/permissions.php | 35 +++++++++++++++++++++++++++++++++++ mod/settings.php | 31 ++++++++++++++++--------------- 4 files changed, 67 insertions(+), 19 deletions(-) diff --git a/include/follow.php b/include/follow.php index 6b192234c..ce550b07f 100644 --- a/include/follow.php +++ b/include/follow.php @@ -145,12 +145,13 @@ function new_contact($uid,$url,$channel,$interactive = false) { ); } else { - $r = q("insert into abook ( abook_account, abook_channel, abook_xchan, abook_their_perms, abook_created, abook_updated ) - values( %d, %d, '%s', %d, '%s', '%s' ) ", + $r = q("insert into abook ( abook_account, abook_channel, abook_xchan, abook_their_perms, abook_my_perms, abook_created, abook_updated ) + values( %d, %d, '%s', %d, %d, '%s', '%s' ) ", intval($aid), intval($uid), dbesc($xchan_hash), intval($their_perms), + intval(PERMS_W_STREAM|PERMS_W_MAIL), dbesc(datetime_convert()), dbesc(datetime_convert()) ); diff --git a/include/identity.php b/include/identity.php index 99b90cc8b..5f210c456 100644 --- a/include/identity.php +++ b/include/identity.php @@ -115,11 +115,19 @@ function create_identity($arr) { if(array_key_exists('primary', $arr)) $primary = intval($arr['primary']); + $perms_sql = ''; + + $defperms = site_default_perms(); + $global_perms = get_perms(); + foreach($defperms as $p => $v) { + $perms_keys .= ', ' . $global_perms[$p][0]; + $perms_vals .= ', ' . intval($v); + } $r = q("insert into channel ( channel_account_id, channel_primary, channel_name, channel_address, channel_guid, channel_guid_sig, - channel_hash, channel_prvkey, channel_pubkey, channel_pageflags ) - values ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d ) ", + channel_hash, channel_prvkey, channel_pubkey, channel_pageflags $perms_keys ) + values ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d $perms_vals ) ", intval($arr['account_id']), intval($primary), @@ -133,6 +141,9 @@ function create_identity($arr) { intval($pageflags) ); + + + $r = q("select * from channel where channel_account_id = %d and channel_guid = '%s' limit 1", intval($arr['account_id']), diff --git a/include/permissions.php b/include/permissions.php index e7f50ceeb..bf50ebdd1 100644 --- a/include/permissions.php +++ b/include/permissions.php @@ -328,3 +328,38 @@ function check_list_permissions($uid,$arr,$perm) { return($result); } + + +function site_default_perms() { + + $typical = array( + 'view_stream' => PERMS_PUBLIC, + 'view_profile' => PERMS_PUBLIC, + 'view_photos' => PERMS_PUBLIC, + 'view_contacts' => PERMS_PUBLIC, + 'view_storage' => PERMS_PUBLIC, + 'view_pages' => PERMS_PUBLIC, + 'send_stream' => PERMS_SPECIFIC, + 'post_wall' => PERMS_SPECIFIC, + 'post_comments' => PERMS_SPECIFIC, + 'post_mail' => PERMS_SPECIFIC, + 'post_photos' => 0, + 'tag_deliver' => PERMS_SPECIFIC, + 'chat' => PERMS_SPECIFIC, + 'write_storage' => 0, + 'write_pages' => 0, + 'delegate' => 0, + ); + + + $global_perms = get_perms(); + $ret = array(); + + foreach($global_perms as $perm => $v) { + $x = get_config('default_perms',$perm); + if($x === false) + $x = $typical[$perm]; + $ret[$perm] = $x; + } + return $ret; +} diff --git a/mod/settings.php b/mod/settings.php index 50bb13ea2..36befead1 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -349,22 +349,23 @@ function settings_post(&$a) { $post_joingroup = (($_POST['post_joingroup'] == 1) ? 1: 0); $post_profilechange = (($_POST['post_profilechange'] == 1) ? 1: 0); + $arr = array(); - $arr['channel_r_stream'] = (($_POST['view_stream']) ? $_POST['view_stream'] : 0); - $arr['channel_r_profile'] = (($_POST['view_profile']) ? $_POST['view_profile'] : 0); - $arr['channel_r_photos'] = (($_POST['view_photos']) ? $_POST['view_photos'] : 0); - $arr['channel_r_abook'] = (($_POST['view_contacts']) ? $_POST['view_contacts'] : 0); - $arr['channel_w_stream'] = (($_POST['send_stream']) ? $_POST['send_stream'] : 0); - $arr['channel_w_wall'] = (($_POST['post_wall']) ? $_POST['post_wall'] : 0); - $arr['channel_w_tagwall'] = (($_POST['tag_deliver']) ? $_POST['tag_deliver'] : 0); - $arr['channel_w_comment'] = (($_POST['post_comments']) ? $_POST['post_comments'] : 0); - $arr['channel_w_mail'] = (($_POST['post_mail']) ? $_POST['post_mail'] : 0); - $arr['channel_w_photos'] = (($_POST['post_photos']) ? $_POST['post_photos'] : 0); - $arr['channel_w_chat'] = (($_POST['chat']) ? $_POST['chat'] : 0); - $arr['channel_a_delegate'] = (($_POST['delegate']) ? $_POST['delegate'] : 0); - $arr['channel_r_storage'] = (($_POST['view_storage']) ? $_POST['view_storage'] : 0); - $arr['channel_w_storage'] = (($_POST['write_storage']) ? $_POST['write_storage'] : 0); - $arr['channel_r_pages'] = (($_POST['view_pages']) ? $_POST['view_pages'] : 0); + $arr['channel_r_stream'] = (($_POST['view_stream']) ? $_POST['view_stream'] : 0); + $arr['channel_r_profile'] = (($_POST['view_profile']) ? $_POST['view_profile'] : 0); + $arr['channel_r_photos'] = (($_POST['view_photos']) ? $_POST['view_photos'] : 0); + $arr['channel_r_abook'] = (($_POST['view_contacts']) ? $_POST['view_contacts'] : 0); + $arr['channel_w_stream'] = (($_POST['send_stream']) ? $_POST['send_stream'] : 0); + $arr['channel_w_wall'] = (($_POST['post_wall']) ? $_POST['post_wall'] : 0); + $arr['channel_w_tagwall'] = (($_POST['tag_deliver']) ? $_POST['tag_deliver'] : 0); + $arr['channel_w_comment'] = (($_POST['post_comments']) ? $_POST['post_comments'] : 0); + $arr['channel_w_mail'] = (($_POST['post_mail']) ? $_POST['post_mail'] : 0); + $arr['channel_w_photos'] = (($_POST['post_photos']) ? $_POST['post_photos'] : 0); + $arr['channel_w_chat'] = (($_POST['chat']) ? $_POST['chat'] : 0); + $arr['channel_a_delegate'] = (($_POST['delegate']) ? $_POST['delegate'] : 0); + $arr['channel_r_storage'] = (($_POST['view_storage']) ? $_POST['view_storage'] : 0); + $arr['channel_w_storage'] = (($_POST['write_storage']) ? $_POST['write_storage'] : 0); + $arr['channel_r_pages'] = (($_POST['view_pages']) ? $_POST['view_pages'] : 0); $arr['channel_w_pages'] = (($_POST['write_pages']) ? $_POST['write_pages'] : 0); $defperms = 0; -- cgit v1.2.3 From 2e14dc242e552629cac5914e85096d423e6fd43c Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 19 Aug 2013 17:18:13 -0700 Subject: if changing primary hub during an import operation - remove the old xchan and create a fresh xchan pointing at this instance. Also a minor edit to increase the default photo upload limit for new sites. There aren't many cameras left that will take photos < 800k in size. --- mod/import.php | 25 +++++++++++++++++++++++++ version.inc | 2 +- view/en/htconfig.tpl | 2 +- 3 files changed, 27 insertions(+), 2 deletions(-) diff --git a/mod/import.php b/mod/import.php index c98f4d2eb..08311013a 100644 --- a/mod/import.php +++ b/mod/import.php @@ -206,10 +206,35 @@ function import_post(&$a) { // import xchans and contact photos + if($seize) { + + // replace our existing xchan if we're seizing control + + $r = q("delete from xchan where xchan_hash = '%s' limit 1", + dbesc($channel['channel_hash']) + ); + + $r = q("insert into xchan ( xchan_hash, xchan_guid, xchan_guid_sig, xchan_pubkey, xchan_photo_l, xchan_photo_m, xchan_photo_s, xchan_addr, xchan_url, xchan_name, xchan_network, xchan_photo_date, xchan_name_date ) values ('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s')", + dbesc($channel['channel_hash']), + dbesc($channel['channel_guid']), + dbesc($channel['channel_guid_sig']), + dbesc($channel['channel_pubkey']), + dbesc($a->get_baseurl() . "/photo/profile/l/" . $channel['channel_id']), + dbesc($a->get_baseurl() . "/photo/profile/m/" . $channel['channel_id']), + dbesc($a->get_baseurl() . "/photo/profile/s/" . $channel['channel_id']), + dbesc($channel['channel_address'] . '@' . get_app()->get_hostname()), + dbesc(z_root() . '/channel/' . $channel['channel_address']), + dbesc($channel['channel_name']), + dbesc('zot'), + dbesc(datetime_convert()), + dbesc(datetime_convert()) + ); + } $xchans = $data['xchan']; if($xchans) { foreach($xchans as $xchan) { + $r = q("select xchan_hash from xchan where xchan_hash = '%s' limit 1", dbesc($xchan['xchan_hash']) ); diff --git a/version.inc b/version.inc index 7f9c7a59b..717abe607 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2013-08-18.409 +2013-08-19.410 diff --git a/view/en/htconfig.tpl b/view/en/htconfig.tpl index 0417e9af2..3e1269441 100644 --- a/view/en/htconfig.tpl +++ b/view/en/htconfig.tpl @@ -64,7 +64,7 @@ $a->config['system']['max_import_size'] = 200000; // maximum size of uploaded photos -$a->config['system']['maximagesize'] = 800000; +$a->config['system']['maximagesize'] = 3000000; // Location of PHP command line processor -- cgit v1.2.3 From b9314935e6f85bb0098c651d021ce9bdc2753ecb Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 19 Aug 2013 19:05:11 -0700 Subject: localize_item() thinks all likes on posts are likes on comments because we didn't pass any info in the activity object to distinguish them from each other. --- include/conversation.php | 2 +- mod/like.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/include/conversation.php b/include/conversation.php index 6d551a5c9..aade06b8a 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -137,7 +137,7 @@ function localize_item(&$item){ case ACTIVITY_OBJ_NOTE: default: $post_type = t('status'); - if($obj['id'] != $item['mid']) + if($obj['mid'] != $obj['parent_mid']) $post_type = t('comment'); break; } diff --git a/mod/like.php b/mod/like.php index f617391a1..90005eca3 100755 --- a/mod/like.php +++ b/mod/like.php @@ -110,6 +110,7 @@ function like_content(&$a) { $obj = json_encode(array( 'type' => $objtype, 'id' => $item['mid'], + 'parent' => (($item['thr_parent']) ? $item['thr_parent'] : $item['parent_mid']), 'link' => $links, 'title' => $item['title'], 'content' => $item['body'], -- cgit v1.2.3 From cd5fdbcb48a2e05198bb9daaf0753e8218ea4285 Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 19 Aug 2013 21:19:39 -0700 Subject: email attachments (and fix email photos) --- boot.php | 2 +- include/items.php | 10 ++++++++ include/message.php | 49 +++++++++++++++++++++++++++++++++++++-- install/database.sql | 1 + install/update.php | 9 ++++++- mod/message.php | 43 +++++++++++++++++++++++++++++----- view/theme/redbasic/css/style.css | 1 + view/tpl/msg-header.tpl | 29 ++++++++++++++++++++--- view/tpl/prv_message.tpl | 6 +++++ 9 files changed, 137 insertions(+), 13 deletions(-) diff --git a/boot.php b/boot.php index 7b2d72f3c..10f951b6a 100755 --- a/boot.php +++ b/boot.php @@ -43,7 +43,7 @@ require_once('include/taxonomy.php'); define ( 'RED_PLATFORM', 'Red Matrix' ); define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'R'); define ( 'ZOT_REVISION', 1 ); -define ( 'DB_UPDATE_VERSION', 1059 ); +define ( 'DB_UPDATE_VERSION', 1060 ); define ( 'EOL', '
    ' . "\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); diff --git a/include/items.php b/include/items.php index ba0867562..10bdcb38f 100755 --- a/include/items.php +++ b/include/items.php @@ -840,6 +840,9 @@ function encode_mail($item) { $x['from'] = encode_item_xchan($item['from']); $x['to'] = encode_item_xchan($item['to']); + if($item['attach']) + $x['attach'] = json_decode_plus($item['attach']); + $x['flags'] = array(); if($item['mail_flags'] & MAIL_RECALLED) { @@ -885,6 +888,9 @@ function get_mail_elements($x) { $arr['mid'] = (($x['message_id']) ? htmlentities($x['message_id'], ENT_COMPAT,'UTF-8',false) : ''); $arr['parent_mid'] = (($x['message_parent']) ? htmlentities($x['message_parent'], ENT_COMPAT,'UTF-8',false) : ''); + if($x['attach']) + $arr['attach'] = activity_sanitise($x['attach']); + if(import_author_xchan($x['from'])) $arr['from_xchan'] = base64url_encode(hash('whirlpool',$x['from']['guid'] . $x['from']['guid_sig'], true)); @@ -2202,6 +2208,9 @@ function mail_store($arr) { if((strpos($arr['body'],'<') !== false) || (strpos($arr['body'],'>') !== false)) $arr['body'] = escape_tags($arr['body']); + if(array_key_exists('attach',$arr) && is_array($arr['attach'])) + $arr['attach'] = json_encode($arr['attach']); + $arr['account_id'] = ((x($arr,'account_id')) ? intval($arr['account_id']) : 0); $arr['mid'] = ((x($arr,'mid')) ? notags(trim($arr['mid'])) : random_string()); $arr['from_xchan'] = ((x($arr,'from_xchan')) ? notags(trim($arr['from_xchan'])) : ''); @@ -2210,6 +2219,7 @@ function mail_store($arr) { $arr['title'] = ((x($arr,'title')) ? notags(trim($arr['title'])) : ''); $arr['parent_mid'] = ((x($arr,'parent_mid')) ? notags(trim($arr['parent_mid'])) : ''); $arr['body'] = ((x($arr,'body')) ? trim($arr['body']) : ''); + $arr['mail_flags'] = ((x($arr,'mail_flags')) ? intval($arr['mail_flags']) : 0 ); diff --git a/include/message.php b/include/message.php index fc0d5f2b3..e54a6cd83 100644 --- a/include/message.php +++ b/include/message.php @@ -3,6 +3,7 @@ /* Private Message backend API */ require_once('include/crypto.php'); +require_once('include/attach.php'); // send a private message @@ -74,14 +75,44 @@ function send_message($uid = 0, $recipient='', $body='', $subject='', $replyto=' if(preg_match_all("/\[img\](.*?)\[\/img\]/",$body,$match)) $images = $match[1]; + $match = false; + + if(preg_match_all("/\[attachment\](.*?)\[\/attachment\]/",$body,$match)) + $attaches = $match[1]; + + $attachments = ''; + + if(preg_match_all('/(\[attachment\](.*?)\[\/attachment\])/',$body,$match)) { + $attachments = array(); + foreach($match[2] as $mtch) { + $hash = substr($mtch,0,strpos($mtch,',')); + $rev = intval(substr($mtch,strpos($mtch,','))); + $r = attach_by_hash_nodata($hash,$rev); + if($r['success']) { + $attachments[] = array( + 'href' => $a->get_baseurl() . '/attach/' . $r['data']['hash'], + 'length' => $r['data']['filesize'], + 'type' => $r['data']['filetype'], + 'title' => urlencode($r['data']['filename']), + 'revision' => $r['data']['revision'] + ); + } + $body = str_replace($match[1],'',$body); + } + } + + $jattach = (($attachments) ? json_encode($attachments) : ''); + $key = get_config('system','pubkey'); if($subject) $subject = json_encode(aes_encapsulate($subject,$key)); if($body) $body = json_encode(aes_encapsulate($body,$key)); - $r = q("INSERT INTO mail ( account_id, mail_flags, channel_id, from_xchan, to_xchan, title, body, mid, parent_mid, created ) - VALUES ( %d, %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s' )", + + + $r = q("INSERT INTO mail ( account_id, mail_flags, channel_id, from_xchan, to_xchan, title, body, attach, mid, parent_mid, created ) + VALUES ( %d, %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s' )", intval($channel['channel_account_id']), intval(MAIL_OBSCURED), intval($channel['channel_id']), @@ -89,6 +120,7 @@ function send_message($uid = 0, $recipient='', $body='', $subject='', $replyto=' dbesc($recipient), dbesc($subject), dbesc($body), + dbesc($jattach), dbesc($mid), dbesc($replyto), dbesc(datetime_convert()) @@ -122,6 +154,19 @@ function send_message($uid = 0, $recipient='', $body='', $subject='', $replyto=' } } + if($attaches) { + foreach($attaches as $attach) { + $hash = substr($attach,0,strpos($attach,',')); + $rev = intval(substr($attach,strpos($attach,','))); + attach_store($channel,$observer_hash,$options = 'update', array( + 'hash' => $hash, + 'revision' => $rev, + 'allow_cid' => '<' . $recipient . '>', + + )); + } + } + proc_run('php','include/notifier.php','mail',$post_id); $ret['success'] = true; diff --git a/install/database.sql b/install/database.sql index 0a86b8321..4a519adbb 100644 --- a/install/database.sql +++ b/install/database.sql @@ -504,6 +504,7 @@ CREATE TABLE IF NOT EXISTS `mail` ( `channel_id` int(10) unsigned NOT NULL, `title` text NOT NULL, `body` mediumtext NOT NULL, + `attach` mediumtext NOT NULL DEFAULT '', `mid` char(255) NOT NULL, `parent_mid` char(255) NOT NULL, `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', diff --git a/install/update.php b/install/update.php index c97b5619f..682ee2aea 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ page['htmlhead'] .= replace_macros($tpl, array( '$baseurl' => $a->get_baseurl(true), '$editselect' => (($plaintext) ? 'none' : '/(profile-jot-text|prvmail-text)/'), - '$nickname' => $channel['channel_addr'], + '$nickname' => $channel['channel_address'], '$linkurl' => t('Please enter a link URL:') )); @@ -293,6 +293,7 @@ function message_content(&$a) { '$select' => $select, '$parent' => '', '$upload' => t('Upload photo'), + '$attach' => t('Attach file'), '$insert' => t('Insert web link'), '$wait' => t('Please wait'), '$submit' => t('Submit') @@ -371,10 +372,39 @@ function message_content(&$a) { foreach($messages as $message) { -// FIXME -// $extracted = item_extract_images($message['body']); -// if($extracted['images']) -// $message['body'] = item_redir_and_replace_images($extracted['body'], $extracted['images'], $message['contact-id']); + $s = $arr = ''; + + if($message['attach']) + $arr = json_decode_plus($message['attach']); + if($arr) { + $s .= '
    '; + foreach($arr as $r) { + $matches = false; + $icon = ''; + $icontype = substr($r['type'],0,strpos($r['type'],'/')); + + switch($icontype) { + case 'video': + case 'audio': + case 'image': + case 'text': + $icon = '
    '; + break; + default: + $icon = '
    '; + break; + } + + $title = htmlentities($r['title'], ENT_COMPAT,'UTF-8'); + if(! $title) + $title = t('unknown.???'); + $title .= ' ' . $r['length'] . ' ' . t('bytes'); + + $url = $a->get_baseurl() . '/magic?f=&hash=' . $message['from_xchan'] . '&dest=' . $r['href'] . '/' . $r['revision']; + $s .= '' . $icon . ''; + } + $s .= '
    '; + } $mails[] = array( 'id' => $message['id'], @@ -385,7 +415,7 @@ function message_content(&$a) { 'to_url' => chanlink_hash($message['to_xchan']), 'to_photo' => $message['to']['xchan_photo_m'], 'subject' => $message['title'], - 'body' => smilies(bbcode($message['body'])), + 'body' => smilies(bbcode($message['body']) . $s), 'delete' => t('Delete message'), 'date' => datetime_convert('UTC',date_default_timezone_get(),$message['created'],'D, d M Y - g:i A'), ); @@ -425,6 +455,7 @@ function message_content(&$a) { '$select' => $select, '$parent' => $parent, '$upload' => t('Upload photo'), + '$attach' => t('Attach file'), '$insert' => t('Insert web link'), '$submit' => t('Submit'), '$wait' => t('Please wait') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index abfeb44bc..f4c399735 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1882,6 +1882,7 @@ tr.mceLast { margin-right: 30px; } #prvmail-upload-wrapper, +#prvmail-attach-wrapper, #prvmail-link-wrapper, #prvmail-rotator-wrapper { float: left; diff --git a/view/tpl/msg-header.tpl b/view/tpl/msg-header.tpl index 0be288709..5e2597605 100755 --- a/view/tpl/msg-header.tpl +++ b/view/tpl/msg-header.tpl @@ -54,7 +54,19 @@ else name: 'userfile', onSubmit: function(file,ext) { $('#profile-rotator').spin('tiny'); }, onComplete: function(file,response) { - tinyMCE.execCommand('mceInsertRawHTML',false,response); + addeditortext(response); + $('#profile-rotator').spin(false); + } + } + ); + + var file_uploader = new window.AjaxUpload( + 'prvmail-attach', + { action: 'wall_attach/{{$nickname}}', + name: 'userfile', + onSubmit: function(file,ext) { $('#profile-rotator').spin('tiny'); }, + onComplete: function(file,response) { + addeditortext(response); $('#profile-rotator').spin(false); } } @@ -67,7 +79,7 @@ else if(reply && reply.length) { $('#profile-rotator').spin('tiny'); $.get('parse_url?url=' + reply, function(data) { - tinyMCE.execCommand('mceInsertRawHTML',false,data); + addeditortext(response); $('#profile-rotator').spin(false); }); } @@ -86,11 +98,22 @@ else if(reply && reply.length) { $('#profile-rotator').spin('tiny'); $.get('parse_url?url=' + reply, function(data) { - tinyMCE.execCommand('mceInsertRawHTML',false,data); + addeditortext(response); $('#profile-rotator').spin(false); }); } } + function addeditortext(data) { + if(plaintext == 'none') { + var currentText = $("#prvmail-text").val(); + $("#prvmail-text").val(currentText + data); + } + else + tinyMCE.execCommand('mceInsertRawHTML',false,data); + } + + + diff --git a/view/tpl/prv_message.tpl b/view/tpl/prv_message.tpl index 2ddf75544..164ba0c6d 100755 --- a/view/tpl/prv_message.tpl +++ b/view/tpl/prv_message.tpl @@ -26,6 +26,12 @@
    + +
    +
    +
    + + -- cgit v1.2.3 From a53a092b441b29941e9267e6f1ba37921252ab0d Mon Sep 17 00:00:00 2001 From: "p.tacconi" Date: Tue, 20 Aug 2013 10:13:50 +0200 Subject: First version of Italian translation --- view/it/messages.po | 12195 ++++++++++++++++++++------------------------------ view/it/strings.php | 3216 ++++++------- 2 files changed, 6340 insertions(+), 9071 deletions(-) diff --git a/view/it/messages.po b/view/it/messages.po index 99002d909..b1db443d3 100644 --- a/view/it/messages.po +++ b/view/it/messages.po @@ -1,8769 +1,6506 @@ -# FRIENDICA Distributed Social Network -# Copyright (C) 2010, 2011 the Friendica Project -# This file is distributed under the same license as the Friendica package. +# Red Communications Project +# Copyright (C) 2013 the Red Matrix Project +# This file is distributed under the same license as the Red package. # # Translators: -# fabrixxm , 2011. -# , 2011, 2012. -# Francesco Apruzzese , 2012. -# , 2012. -# Paolo Pa , 2012. -msgid "" -msgstr "" -"Project-Id-Version: friendica\n" -"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n" -"POT-Creation-Date: 2012-09-27 10:00-0700\n" -"PO-Revision-Date: 2012-09-28 08:27+0000\n" -"Last-Translator: ufic \n" -"Language-Team: Italian (http://www.transifex.com/projects/p/friendica/language/it/)\n" +# fabrixxm , 2011 +# fabrixxm , 2011-2012 +# Francesco Apruzzese , 2012 +# ufic , 2012 +# tuscanhobbit Pa , 2012 +# tuscanhobbit Pa , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Red Matrix\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-08-16 00:01-0700\n" +"PO-Revision-Date: 2013-08-19 11: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "Inviato!" +#: ../../include/acl_selectors.php:235 +msgid "Visible to everybody" +msgstr "Archiviato come:" -#: ../../mod/update_notes.php:41 ../../mod/update_community.php:18 -#: ../../mod/update_network.php:22 ../../mod/update_profile.php:41 -msgid "[Embedded content - reload page to view]" -msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" +#: ../../include/acl_selectors.php:236 +msgid "show" +msgstr "mostra" -#: ../../mod/crepair.php:102 -msgid "Contact settings applied." -msgstr "Contatto modificato." +#: ../../include/acl_selectors.php:237 +msgid "don't show" +msgstr "non mostrare" -#: ../../mod/crepair.php:104 -msgid "Contact update failed." -msgstr "Le modifiche al contatto non sono state salvate." +#: ../../include/activities.php:37 +msgid " and " +msgstr "e" -#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:55 -#: ../../mod/fsuggest.php:78 ../../mod/events.php:140 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/photos.php:128 ../../mod/photos.php:972 -#: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135 -#: ../../mod/notifications.php:66 ../../mod/contacts.php:146 -#: ../../mod/settings.php:86 ../../mod/settings.php:525 -#: ../../mod/settings.php:530 ../../mod/manage.php:87 ../../mod/network.php:6 -#: ../../mod/notes.php:20 ../../mod/wallmessage.php:9 -#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79 -#: ../../mod/wallmessage.php:103 ../../mod/attach.php:33 -#: ../../mod/group.php:19 ../../mod/viewconnections.php:22 -#: ../../mod/register.php:38 ../../mod/regmod.php:116 ../../mod/item.php:126 -#: ../../mod/item.php:142 ../../mod/mood.php:114 -#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 -#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 -#: ../../mod/message.php:38 ../../mod/message.php:168 -#: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25 -#: ../../mod/wall_upload.php:64 ../../mod/follow.php:9 -#: ../../mod/display.php:141 ../../mod/profiles.php:7 -#: ../../mod/profiles.php:413 ../../mod/delegate.php:6 -#: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81 -#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510 -#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159 -#: ../../addon/fbpost/fbpost.php:165 -#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3913 -#: ../../index.php:317 -msgid "Permission denied." -msgstr "Permesso negato." +#: ../../include/activities.php:45 +msgid "public profile" +msgstr "profilo pubblico" -#: ../../mod/crepair.php:129 ../../mod/fsuggest.php:20 -#: ../../mod/fsuggest.php:92 ../../mod/dfrn_confirm.php:118 -msgid "Contact not found." -msgstr "Contatto non trovato." +#: ../../include/activities.php:48 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s ha cambiato %2$s in “%3$s”" -#: ../../mod/crepair.php:135 -msgid "Repair Contact Settings" -msgstr "Ripara il contatto" +#: ../../include/activities.php:49 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Guarda %2$s di %1$s " -#: ../../mod/crepair.php:137 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più" +#: ../../include/activities.php:52 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s ha aggiornato %2$s cambiando %3$s." -#: ../../mod/crepair.php:138 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina." +#: ../../include/api.php:968 +msgid "Public Timeline" +msgstr "Diario pubblico" -#: ../../mod/crepair.php:144 -msgid "Return to contact editor" -msgstr "Ritorna alla modifica contatto" +#: ../../include/enotify.php:36 +msgid "Red Matrix Notification" +msgstr "Notifica di Red Matrix" -#: ../../mod/crepair.php:148 ../../mod/settings.php:545 -#: ../../mod/settings.php:571 ../../mod/admin.php:692 ../../mod/admin.php:702 -msgid "Name" -msgstr "Nome" +#: ../../include/enotify.php:39 +msgid "Thank You," +msgstr "Grazie," -#: ../../mod/crepair.php:149 -msgid "Account Nickname" -msgstr "Nome utente" +#: ../../include/enotify.php:41 +#, php-format +msgid "%s Administrator" +msgstr "Amministratore %s" -#: ../../mod/crepair.php:150 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@TagName - al posto del nome utente" +#: ../../include/enotify.php:75 +#, php-format +msgid "%s " +msgstr "%s " -#: ../../mod/crepair.php:151 -msgid "Account URL" -msgstr "URL dell'utente" +#: ../../include/enotify.php:79 +#, php-format +msgid "[Red:Notify] New mail received at %s" +msgstr "[Red:Notifica] Nuovo messaggio ricevuto alle %s" -#: ../../mod/crepair.php:152 -msgid "Friend Request URL" -msgstr "URL Richiesta Amicizia" +#: ../../include/enotify.php:81 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s ti ha mandato un messaggio privato alle %2$s." -#: ../../mod/crepair.php:153 -msgid "Friend Confirm URL" -msgstr "URL Conferma Amicizia" +#: ../../include/enotify.php:82 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s ti ha mandato %2$s." -#: ../../mod/crepair.php:154 -msgid "Notification Endpoint URL" -msgstr "URL Notifiche" +#: ../../include/enotify.php:82 +msgid "a private message" +msgstr "un messaggio privato" -#: ../../mod/crepair.php:155 -msgid "Poll/Feed URL" -msgstr "URL Feed" +#: ../../include/enotify.php:83 +#, 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." -#: ../../mod/crepair.php:156 -msgid "New photo from this URL" -msgstr "Nuova foto da questo URL" +#: ../../include/enotify.php:129 +#, php-format +msgid "%1$s commented on [zrl=%2$s]a %3$s[/zrl]" +msgstr "%1$s ha commentato [zrl=%2$s]%3$s[/zrl]" -#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107 -#: ../../mod/events.php:455 ../../mod/photos.php:1005 -#: ../../mod/photos.php:1081 ../../mod/photos.php:1338 -#: ../../mod/photos.php:1378 ../../mod/photos.php:1419 -#: ../../mod/photos.php:1451 ../../mod/install.php:246 -#: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199 -#: ../../mod/content.php:693 ../../mod/contacts.php:348 -#: ../../mod/settings.php:543 ../../mod/settings.php:697 -#: ../../mod/settings.php:769 ../../mod/settings.php:976 -#: ../../mod/group.php:85 ../../mod/mood.php:137 ../../mod/message.php:294 -#: ../../mod/message.php:480 ../../mod/admin.php:443 ../../mod/admin.php:689 -#: ../../mod/admin.php:826 ../../mod/admin.php:1025 ../../mod/admin.php:1112 -#: ../../mod/profiles.php:583 ../../mod/invite.php:119 -#: ../../addon/fromgplus/fromgplus.php:40 -#: ../../addon/facebook/facebook.php:619 -#: ../../addon/snautofollow/snautofollow.php:64 ../../addon/bg/bg.php:90 -#: ../../addon/fbpost/fbpost.php:226 ../../addon/yourls/yourls.php:76 -#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:88 -#: ../../addon/page/page.php:210 ../../addon/planets/planets.php:158 -#: ../../addon/uhremotestorage/uhremotestorage.php:89 -#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93 -#: ../../addon/drpost/drpost.php:110 ../../addon/startpage/startpage.php:92 -#: ../../addon/geonames/geonames.php:187 ../../addon/oembed.old/oembed.php:41 -#: ../../addon/forumlist/forumlist.php:163 -#: ../../addon/impressum/impressum.php:83 -#: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57 -#: ../../addon/qcomment/qcomment.php:61 -#: ../../addon/openstreetmap/openstreetmap.php:70 -#: ../../addon/group_text/group_text.php:84 -#: ../../addon/libravatar/libravatar.php:99 -#: ../../addon/libertree/libertree.php:90 ../../addon/altpager/altpager.php:87 -#: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84 -#: ../../addon/blackout/blackout.php:98 ../../addon/gravatar/gravatar.php:95 -#: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93 -#: ../../addon/jappixmini/jappixmini.php:307 -#: ../../addon/statusnet/statusnet.php:278 -#: ../../addon/statusnet/statusnet.php:292 -#: ../../addon/statusnet/statusnet.php:318 -#: ../../addon/statusnet/statusnet.php:325 -#: ../../addon/statusnet/statusnet.php:353 -#: ../../addon/statusnet/statusnet.php:576 ../../addon/tumblr/tumblr.php:90 -#: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88 -#: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48 -#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180 -#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:394 -#: ../../addon/irc/irc.php:55 ../../addon/fromapp/fromapp.php:77 -#: ../../addon/blogger/blogger.php:102 ../../addon/posterous/posterous.php:103 -#: ../../view/theme/cleanzero/config.php:80 -#: ../../view/theme/diabook/theme.php:757 -#: ../../view/theme/diabook/config.php:190 -#: ../../view/theme/quattro/config.php:53 ../../view/theme/dispy/config.php:70 -#: ../../object/Item.php:560 -msgid "Submit" -msgstr "Invia" +#: ../../include/enotify.php:136 +#, php-format +msgid "%1$s commented on [zrl=%2$s]%3$s's %4$s[/zrl]" +msgstr "%1$s ha commentato [zrl=%2$s]%4$s di %3$s[/zrl]" -#: ../../mod/help.php:30 -msgid "Help:" -msgstr "Guida:" +#: ../../include/enotify.php:144 +#, php-format +msgid "%1$s commented on [zrl=%2$s]your %3$s[/zrl]" +msgstr "%1$s ha commentato [zrl=%2$s]%3$s[/zrl] che hai creato" -#: ../../mod/help.php:34 ../../addon/dav/friendica/layout.fnk.php:225 -#: ../../include/nav.php:86 -msgid "Help" -msgstr "Guida" +#: ../../include/enotify.php:154 +#, 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" -#: ../../mod/help.php:38 ../../index.php:226 -msgid "Not Found" -msgstr "Non trovato" +#: ../../include/enotify.php:155 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s ha commentato una conversazione che stai seguendo." -#: ../../mod/help.php:41 ../../index.php:229 -msgid "Page not found." -msgstr "Pagina non trovata." +#: ../../include/enotify.php:158 ../../include/enotify.php:175 +#: ../../include/enotify.php:201 ../../include/enotify.php:219 +#: ../../include/enotify.php:232 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Visita %s per leggere o commentare la conversazione." -#: ../../mod/wall_attach.php:69 +#: ../../include/enotify.php:165 #, php-format -msgid "File exceeds size limit of %d" -msgstr "Il file supera la dimensione massima di %d" +msgid "[Red:Notify] %s posted to your profile wall" +msgstr "[Red:Notifica] %s ha scritto sulla tua bacheca" -#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121 -msgid "File upload failed." -msgstr "Caricamento del file non riuscito." +#: ../../include/enotify.php:167 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s ha scritto sulla tua bacheca alle %2$s" -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Suggerimento di amicizia inviato." +#: ../../include/enotify.php:169 +#, php-format +msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]" +msgstr "%1$s ha scritto sulla [zrl=%2$s]tua bacheca[/zrl]" -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Suggerisci amici" +#: ../../include/enotify.php:195 +#, php-format +msgid "[Red:Notify] %s tagged you" +msgstr "[Red:Notifica] %s ti ha taggato" -#: ../../mod/fsuggest.php:99 +#: ../../include/enotify.php:196 #, php-format -msgid "Suggest a friend for %s" -msgstr "Suggerisci un amico a %s" +msgid "%1$s tagged you at %2$s" +msgstr "%1$s ti ha taggato alle %2$s" -#: ../../mod/events.php:66 -msgid "Event title and start time are required." -msgstr "" +#: ../../include/enotify.php:197 +#, php-format +msgid "%1$s [zrl=%2$s]tagged you[/zrl]." +msgstr "%1$s [zrl=%2$s]ti ha taggato[/zrl]." -#: ../../mod/events.php:279 -msgid "l, F j" -msgstr "l j F" +#: ../../include/enotify.php:209 +#, php-format +msgid "[Red:Notify] %1$s poked you" +msgstr "[Red:Notifica] %1$s ti ha mandato un poke" -#: ../../mod/events.php:301 -msgid "Edit event" -msgstr "Modifca l'evento" +#: ../../include/enotify.php:210 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s ti ha mandato un poke alle %2$s" -#: ../../mod/events.php:323 ../../include/text.php:1187 -msgid "link to source" -msgstr "Collegamento all'originale" +#: ../../include/enotify.php:211 +#, php-format +msgid "%1$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s [zrl=%2$s]ti ha mandato un poke[/zrl]." -#: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:131 -#: ../../include/nav.php:52 ../../boot.php:1689 -msgid "Events" -msgstr "Eventi" +#: ../../include/enotify.php:226 +#, php-format +msgid "[Red:Notify] %s tagged your post" +msgstr "[Red:Notifica] %s ha taggato il tuo articolo" -#: ../../mod/events.php:348 -msgid "Create New Event" -msgstr "Crea un nuovo evento" +#: ../../include/enotify.php:227 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s ha taggato il tuo articolo alle %2$s" -#: ../../mod/events.php:349 ../../addon/dav/friendica/layout.fnk.php:263 -msgid "Previous" -msgstr "Precendente" +#: ../../include/enotify.php:228 +#, php-format +msgid "%1$s tagged [zrl=%2$s]your post[/zrl]" +msgstr "%1$s ha taggato [zrl=%2$s]il tuo articolo[/zrl]" -#: ../../mod/events.php:350 ../../mod/install.php:205 -#: ../../addon/dav/friendica/layout.fnk.php:266 -msgid "Next" -msgstr "Successivo" +#: ../../include/enotify.php:239 +msgid "[Red:Notify] Introduction received" +msgstr "[Red:Notifica] Hai una richiesta di amicizia" -#: ../../mod/events.php:423 -msgid "hour:minute" -msgstr "ora:minuti" +#: ../../include/enotify.php:240 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Hai ricevuto una richiesta di amicizia da '%1$s' alle %2$s" -#: ../../mod/events.php:433 -msgid "Event details" -msgstr "Dettagli dell'evento" +#: ../../include/enotify.php:241 +#, php-format +msgid "You've received [zrl=%1$s]an introduction[/zrl] from %2$s." +msgstr "Hai ricevuto [zrl=%1$s]una richiesta di amicizia[/zrl] da %2$s." -#: ../../mod/events.php:434 +#: ../../include/enotify.php:244 ../../include/enotify.php:262 #, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "" +msgid "You may visit their profile at %s" +msgstr "Puoi visitare il suo profilo su %s" -#: ../../mod/events.php:436 -msgid "Event Starts:" -msgstr "L'evento inizia:" +#: ../../include/enotify.php:246 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Visita %s per approvare o rifiutare la richiesta." -#: ../../mod/events.php:436 ../../mod/events.php:450 -msgid "Required" -msgstr "" +#: ../../include/enotify.php:253 +msgid "[Red:Notify] Friend suggestion received" +msgstr "[Red:Notifica] Ti è stato suggerito un amico" -#: ../../mod/events.php:439 -msgid "Finish date/time is not known or not relevant" -msgstr "La data/ora di fine non è definita" +#: ../../include/enotify.php:254 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Ti è stato suggerito un amico da '%1$s' alle %2$s" -#: ../../mod/events.php:441 -msgid "Event Finishes:" -msgstr "L'evento finisce:" +#: ../../include/enotify.php:255 +#, php-format +msgid "" +"You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s." +msgstr "%3$s ti ha [zrl=%1$s]suggerito %2$s[/zrl] come amico." -#: ../../mod/events.php:444 -msgid "Adjust for viewer timezone" -msgstr "Visualizza con il fuso orario di chi legge" +#: ../../include/enotify.php:260 +msgid "Name:" +msgstr "Nome:" -#: ../../mod/events.php:446 -msgid "Description:" -msgstr "Descrizione:" +#: ../../include/enotify.php:261 +msgid "Photo:" +msgstr "Foto:" -#: ../../mod/events.php:448 ../../mod/directory.php:134 -#: ../../include/event.php:40 ../../include/bb2diaspora.php:412 -#: ../../boot.php:1226 -msgid "Location:" -msgstr "Posizione:" +#: ../../include/enotify.php:264 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Visita %s per approvare o rifiutare il suggerimento." -#: ../../mod/events.php:450 -msgid "Title:" -msgstr "" +#: ../../include/Contact.php:80 ../../include/contact_widgets.php:9 +#: ../../mod/directory.php:163 ../../mod/match.php:58 ../../mod/suggest.php:56 +#: ../../boot.php:1630 +msgid "Connect" +msgstr "Connetti" -#: ../../mod/events.php:452 -msgid "Share this event" -msgstr "Condividi questo evento" +#: ../../include/Contact.php:96 +msgid "New window" +msgstr "Nuova finestra" -#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:136 -#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:544 -#: ../../mod/settings.php:570 ../../addon/js_upload/js_upload.php:45 -#: ../../include/conversation.php:935 -msgid "Cancel" -msgstr "Annulla" +#: ../../include/Contact.php:97 +msgid "Open the selected location in a different window or browser tab" +msgstr "Apri l'indirizzo selezionato in una nuova scheda o finestra" -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Tag rimosso" +#: ../../include/Contact.php:455 ../../include/conversation.php:887 +msgid "Poke" +msgstr "Poke" -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Rimuovi il tag" +#: ../../include/Contact.php:456 ../../include/conversation.php:881 +msgid "View Status" +msgstr "Guarda il messaggio di stato" -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Seleziona un tag da rimuovere: " +#: ../../include/Contact.php:457 ../../include/nav.php:75 +#: ../../include/conversation.php:882 ../../mod/connections.php:295 +#: ../../mod/connections.php:402 +msgid "View Profile" +msgstr "Il mio profilo" -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 -#: ../../addon/dav/common/wdcal_edit.inc.php:468 -msgid "Remove" -msgstr "Rimuovi" +#: ../../include/Contact.php:458 ../../include/conversation.php:883 +msgid "View Photos" +msgstr "Guarda le foto" -#: ../../mod/dfrn_poll.php:99 ../../mod/dfrn_poll.php:530 -#, php-format -msgid "%s welcomes %s" -msgstr "%s dà il benvenuto a %s" +#: ../../include/Contact.php:459 ../../include/conversation.php:884 +msgid "Network Posts" +msgstr "Articoli dalla tua rete" -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autorizza la connessione dell'applicazione" +#: ../../include/Contact.php:460 ../../include/conversation.php:885 +msgid "Edit Contact" +msgstr "Modifica il contatto" -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Torna alla tua applicazione e inserisci questo codice di sicurezza:" +#: ../../include/Contact.php:461 ../../include/conversation.php:886 +msgid "Send PM" +msgstr "Invia messaggio privato" -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Effettua il login per continuare." +#: ../../include/contact_selectors.php:30 +msgid "Unknown | Not categorised" +msgstr "Sconosciuto | Senza categoria" -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?" - -#: ../../mod/api.php:105 ../../mod/dfrn_request.php:835 -#: ../../mod/settings.php:892 ../../mod/settings.php:898 -#: ../../mod/settings.php:906 ../../mod/settings.php:910 -#: ../../mod/settings.php:915 ../../mod/settings.php:921 -#: ../../mod/settings.php:927 ../../mod/settings.php:933 -#: ../../mod/settings.php:963 ../../mod/settings.php:964 -#: ../../mod/settings.php:965 ../../mod/settings.php:966 -#: ../../mod/settings.php:967 ../../mod/register.php:236 -#: ../../mod/profiles.php:563 -msgid "Yes" -msgstr "Si" +#: ../../include/contact_selectors.php:31 +msgid "Block immediately" +msgstr "Blocca subito" -#: ../../mod/api.php:106 ../../mod/dfrn_request.php:836 -#: ../../mod/settings.php:892 ../../mod/settings.php:898 -#: ../../mod/settings.php:906 ../../mod/settings.php:910 -#: ../../mod/settings.php:915 ../../mod/settings.php:921 -#: ../../mod/settings.php:927 ../../mod/settings.php:933 -#: ../../mod/settings.php:963 ../../mod/settings.php:964 -#: ../../mod/settings.php:965 ../../mod/settings.php:966 -#: ../../mod/settings.php:967 ../../mod/register.php:237 -#: ../../mod/profiles.php:564 -msgid "No" -msgstr "No" +#: ../../include/contact_selectors.php:32 +msgid "Shady, spammer, self-marketer" +msgstr "Spammer o dedito al marketing" -#: ../../mod/photos.php:46 ../../boot.php:1682 -msgid "Photo Albums" -msgstr "Album foto" +#: ../../include/contact_selectors.php:33 +msgid "Known to me, but no opinion" +msgstr "Lo conosco, ma non ho un'opinione particolare" -#: ../../mod/photos.php:54 ../../mod/photos.php:149 ../../mod/photos.php:986 -#: ../../mod/photos.php:1073 ../../mod/photos.php:1088 -#: ../../mod/photos.php:1530 ../../mod/photos.php:1542 -#: ../../addon/communityhome/communityhome.php:110 -#: ../../view/theme/diabook/theme.php:598 -msgid "Contact Photos" -msgstr "Foto dei contatti" +#: ../../include/contact_selectors.php:34 +msgid "OK, probably harmless" +msgstr "È ok, probabilmente innocuo" -#: ../../mod/photos.php:61 ../../mod/photos.php:1104 ../../mod/photos.php:1580 -msgid "Upload New Photos" -msgstr "Carica nuove foto" +#: ../../include/contact_selectors.php:35 +msgid "Reputable, has my trust" +msgstr "Affidabile, ha la mia fiducia" -#: ../../mod/photos.php:74 ../../mod/settings.php:23 -msgid "everybody" -msgstr "tutti" +#: ../../include/contact_selectors.php:54 +msgid "Frequently" +msgstr "Frequentemente" -#: ../../mod/photos.php:138 -msgid "Contact information unavailable" -msgstr "I dati di questo contatto non sono disponibili" - -#: ../../mod/photos.php:149 ../../mod/photos.php:653 ../../mod/photos.php:1073 -#: ../../mod/photos.php:1088 ../../mod/profile_photo.php:74 -#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 -#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 -#: ../../mod/profile_photo.php:305 -#: ../../addon/communityhome/communityhome.php:111 -#: ../../view/theme/diabook/theme.php:599 ../../include/user.php:324 -#: ../../include/user.php:331 ../../include/user.php:338 -msgid "Profile Photos" -msgstr "Foto del profilo" +#: ../../include/contact_selectors.php:55 +msgid "Hourly" +msgstr "Ogni ora" -#: ../../mod/photos.php:159 -msgid "Album not found." -msgstr "Album non trovato." +#: ../../include/contact_selectors.php:56 +msgid "Twice daily" +msgstr "Due volte al giorno" -#: ../../mod/photos.php:177 ../../mod/photos.php:1082 -msgid "Delete Album" -msgstr "Rimuovi album" +#: ../../include/contact_selectors.php:57 +msgid "Daily" +msgstr "Ogni giorno" -#: ../../mod/photos.php:240 ../../mod/photos.php:1339 -msgid "Delete Photo" -msgstr "Rimuovi foto" +#: ../../include/contact_selectors.php:58 +msgid "Weekly" +msgstr "Ogni settimana" -#: ../../mod/photos.php:584 -msgid "was tagged in a" -msgstr "è stato taggato in una" +#: ../../include/contact_selectors.php:59 +msgid "Monthly" +msgstr "Ogni mese" -#: ../../mod/photos.php:584 ../../mod/like.php:145 ../../mod/tagger.php:62 -#: ../../addon/communityhome/communityhome.php:163 -#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1439 -#: ../../include/diaspora.php:1824 ../../include/conversation.php:125 -#: ../../include/conversation.php:253 -msgid "photo" -msgstr "foto" +#: ../../include/contact_selectors.php:74 +msgid "Friendica" +msgstr "Friendica" -#: ../../mod/photos.php:584 -msgid "by" -msgstr "da" +#: ../../include/contact_selectors.php:75 +msgid "OStatus" +msgstr "OStatus" -#: ../../mod/photos.php:689 ../../addon/js_upload/js_upload.php:315 -msgid "Image exceeds size limit of " -msgstr "L'immagine supera il limite di" +#: ../../include/contact_selectors.php:76 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../mod/photos.php:697 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." +#: ../../include/contact_selectors.php:77 ../../mod/admin.php:636 +#: ../../mod/admin.php:645 ../../boot.php:1369 +msgid "Email" +msgstr "Email" -#: ../../mod/photos.php:729 ../../mod/profile_photo.php:153 -#: ../../mod/wall_upload.php:110 -msgid "Unable to process image." -msgstr "Impossibile caricare l'immagine." +#: ../../include/contact_selectors.php:78 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../mod/photos.php:756 ../../mod/profile_photo.php:301 -#: ../../mod/wall_upload.php:136 -msgid "Image upload failed." -msgstr "Caricamento immagine fallito." +#: ../../include/contact_selectors.php:79 +msgid "Facebook" +msgstr "Facebook" -#: ../../mod/photos.php:842 ../../mod/community.php:18 -#: ../../mod/dfrn_request.php:760 ../../mod/viewconnections.php:17 -#: ../../mod/display.php:7 ../../mod/search.php:73 ../../mod/directory.php:31 -msgid "Public access denied." -msgstr "Accesso negato." +#: ../../include/contact_selectors.php:80 +msgid "Zot!" +msgstr "Zot!" -#: ../../mod/photos.php:852 -msgid "No photos selected" -msgstr "Nessuna foto selezionata" +#: ../../include/contact_selectors.php:81 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../mod/photos.php:953 -msgid "Access to this item is restricted." -msgstr "Questo oggetto non è visibile a tutti." +#: ../../include/contact_selectors.php:82 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../mod/photos.php:1015 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "" +#: ../../include/contact_selectors.php:83 +msgid "MySpace" +msgstr "MySpace" -#: ../../mod/photos.php:1018 -#, php-format -msgid "You have used %1$.2f Mbytes of photo storage." -msgstr "" +#: ../../include/contact_widgets.php:6 +msgid "Add New Connection" +msgstr "Aggiungi un contatto" -#: ../../mod/photos.php:1024 -msgid "Upload Photos" -msgstr "Carica foto" +#: ../../include/contact_widgets.php:7 +msgid "Enter the channel address" +msgstr "Scrivi l'indirizzo del canale" -#: ../../mod/photos.php:1028 ../../mod/photos.php:1077 -msgid "New album name: " -msgstr "Nome nuovo album: " +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Per esempio: mario@pippo.it oppure http://pluto.com/barbara" -#: ../../mod/photos.php:1029 -msgid "or existing album name: " -msgstr "o nome di un album esistente: " +#: ../../include/contact_widgets.php:23 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invito disponibile" +msgstr[1] "%d inviti disponibili" -#: ../../mod/photos.php:1030 -msgid "Do not show a status post for this upload" -msgstr "Non creare un post per questo upload" +#: ../../include/contact_widgets.php:29 +msgid "Find Channels" +msgstr "Ricerca canali" -#: ../../mod/photos.php:1032 ../../mod/photos.php:1334 -msgid "Permissions" -msgstr "Permessi" +#: ../../include/contact_widgets.php:30 +msgid "Enter name or interest" +msgstr "Scrivi un nome o un interesse" -#: ../../mod/photos.php:1092 -msgid "Edit Album" -msgstr "Modifica album" +#: ../../include/contact_widgets.php:31 +msgid "Connect/Follow" +msgstr "Segui" -#: ../../mod/photos.php:1098 -msgid "Show Newest First" -msgstr "" +#: ../../include/contact_widgets.php:32 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Per esempio: Mario Rossi, Pesca" -#: ../../mod/photos.php:1100 -msgid "Show Oldest First" -msgstr "" +#: ../../include/contact_widgets.php:33 ../../mod/directory.php:182 +#: ../../mod/directory.php:187 ../../mod/connections.php:657 +msgid "Find" +msgstr "Cerca" -#: ../../mod/photos.php:1124 ../../mod/photos.php:1563 -msgid "View Photo" -msgstr "Vedi foto" +#: ../../include/contact_widgets.php:34 ../../mod/suggest.php:64 +msgid "Channel Suggestions" +msgstr "Canali suggeriti" -#: ../../mod/photos.php:1159 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permesso negato. L'accesso a questo elemento può essere limitato." +#: ../../include/contact_widgets.php:35 +msgid "Similar Interests" +msgstr "Interessi simili" -#: ../../mod/photos.php:1161 -msgid "Photo not available" -msgstr "Foto non disponibile" +#: ../../include/contact_widgets.php:36 +msgid "Random Profile" +msgstr "Profilo casuale" -#: ../../mod/photos.php:1217 -msgid "View photo" -msgstr "Vedi foto" +#: ../../include/contact_widgets.php:37 +msgid "Invite Friends" +msgstr "Invita amici" -#: ../../mod/photos.php:1217 -msgid "Edit photo" -msgstr "Modifica foto" +#: ../../include/contact_widgets.php:61 ../../include/features.php:59 +msgid "Saved Folders" +msgstr "Cartelle salvate" -#: ../../mod/photos.php:1218 -msgid "Use as profile photo" -msgstr "Usa come foto del profilo" +#: ../../include/contact_widgets.php:64 ../../include/contact_widgets.php:91 +msgid "Everything" +msgstr "Tutto" -#: ../../mod/photos.php:1224 ../../mod/content.php:603 -#: ../../object/Item.php:103 -msgid "Private Message" -msgstr "Messaggio privato" +#: ../../include/contact_widgets.php:88 +msgid "Categories" +msgstr "Categorie" -#: ../../mod/photos.php:1243 -msgid "View Full Size" -msgstr "Vedi dimensione intera" +#: ../../include/contact_widgets.php:121 +#, 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" -#: ../../mod/photos.php:1311 -msgid "Tags: " -msgstr "Tag: " +#: ../../include/contact_widgets.php:126 ../../include/js_strings.php:7 +#: ../../include/ItemObject.php:255 +msgid "show more" +msgstr "mostra tutti" -#: ../../mod/photos.php:1314 -msgid "[Remove any tag]" -msgstr "[Rimuovi tutti i tag]" +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Altro" -#: ../../mod/photos.php:1324 -msgid "Rotate CW (right)" -msgstr "" +#: ../../include/datetime.php:152 ../../include/datetime.php:284 +msgid "year" +msgstr "anno" -#: ../../mod/photos.php:1325 -msgid "Rotate CCW (left)" -msgstr "" +#: ../../include/datetime.php:157 ../../include/datetime.php:285 +msgid "month" +msgstr "mese" -#: ../../mod/photos.php:1327 -msgid "New album name" -msgstr "Nuovo nome dell'album" +#: ../../include/datetime.php:162 ../../include/datetime.php:287 +msgid "day" +msgstr "giorno" -#: ../../mod/photos.php:1330 -msgid "Caption" -msgstr "Titolo" +#: ../../include/datetime.php:275 +msgid "never" +msgstr "mai" -#: ../../mod/photos.php:1332 -msgid "Add a Tag" -msgstr "Aggiungi tag" +#: ../../include/datetime.php:281 +msgid "less than a second ago" +msgstr "meno di un secondo fa" -#: ../../mod/photos.php:1336 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +#: ../../include/datetime.php:284 +msgid "years" +msgstr "anni" -#: ../../mod/photos.php:1356 ../../mod/content.php:667 -#: ../../object/Item.php:196 -msgid "I like this (toggle)" -msgstr "Mi piace (clic per cambiare)" +#: ../../include/datetime.php:285 +msgid "months" +msgstr "mesi" -#: ../../mod/photos.php:1357 ../../mod/content.php:668 -#: ../../object/Item.php:197 -msgid "I don't like this (toggle)" -msgstr "Non mi piace (clic per cambiare)" +#: ../../include/datetime.php:286 +msgid "week" +msgstr "settimana" -#: ../../mod/photos.php:1358 ../../include/conversation.php:896 -msgid "Share" -msgstr "Condividi" +#: ../../include/datetime.php:286 +msgid "weeks" +msgstr "settimane" -#: ../../mod/photos.php:1359 ../../mod/editpost.php:112 -#: ../../mod/content.php:482 ../../mod/content.php:845 -#: ../../mod/wallmessage.php:152 ../../mod/message.php:293 -#: ../../mod/message.php:481 ../../include/conversation.php:570 -#: ../../include/conversation.php:915 ../../object/Item.php:258 -msgid "Please wait" -msgstr "Attendi" +#: ../../include/datetime.php:287 +msgid "days" +msgstr "giorni" -#: ../../mod/photos.php:1375 ../../mod/photos.php:1416 -#: ../../mod/photos.php:1448 ../../mod/content.php:690 -#: ../../object/Item.php:557 -msgid "This is you" -msgstr "Questo sei tu" +#: ../../include/datetime.php:288 +msgid "hour" +msgstr "ora" -#: ../../mod/photos.php:1377 ../../mod/photos.php:1418 -#: ../../mod/photos.php:1450 ../../mod/content.php:692 ../../boot.php:574 -#: ../../object/Item.php:559 -msgid "Comment" -msgstr "Commento" +#: ../../include/datetime.php:288 +msgid "hours" +msgstr "ore" -#: ../../mod/photos.php:1379 ../../mod/editpost.php:133 -#: ../../mod/content.php:702 ../../include/conversation.php:933 -#: ../../object/Item.php:569 -msgid "Preview" -msgstr "Anteprima" +#: ../../include/datetime.php:289 +msgid "minute" +msgstr "minuto" -#: ../../mod/photos.php:1479 ../../mod/content.php:439 -#: ../../mod/content.php:723 ../../mod/settings.php:606 -#: ../../mod/settings.php:695 ../../mod/group.php:168 ../../mod/admin.php:696 -#: ../../include/conversation.php:515 ../../object/Item.php:117 -msgid "Delete" -msgstr "Rimuovi" +#: ../../include/datetime.php:289 +msgid "minutes" +msgstr "minuti" -#: ../../mod/photos.php:1569 -msgid "View Album" -msgstr "Sfoglia l'album" +#: ../../include/datetime.php:290 +msgid "second" +msgstr "secondo" -#: ../../mod/photos.php:1578 -msgid "Recent Photos" -msgstr "Foto recenti" +#: ../../include/datetime.php:290 +msgid "seconds" +msgstr "secondi" -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "Non disponibile." +#: ../../include/datetime.php:299 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s fa" -#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:133 -#: ../../include/nav.php:101 -msgid "Community" -msgstr "Comunità" +#: ../../include/dba/dba_driver.php:50 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Non trovo le informazioni DNS per il database server '%s'" -#: ../../mod/community.php:63 ../../mod/community.php:88 -#: ../../mod/search.php:148 ../../mod/search.php:174 -msgid "No results." -msgstr "Nessun risultato." +#: ../../include/event.php:11 ../../include/bb2diaspora.php:433 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" -#: ../../mod/friendica.php:55 -msgid "This is Friendica, version" -msgstr "Questo è Friendica, versione" +#: ../../include/event.php:20 ../../include/bb2diaspora.php:439 +msgid "Starts:" +msgstr "Inizio:" -#: ../../mod/friendica.php:56 -msgid "running at web location" -msgstr "in esecuzione sull'indirizzo web" +#: ../../include/event.php:30 ../../include/bb2diaspora.php:447 +msgid "Finishes:" +msgstr "Fine:" -#: ../../mod/friendica.php:58 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Visita Friendica.com per saperne di più sul progetto Friendica." +#: ../../include/event.php:40 ../../include/bb2diaspora.php:455 +#: ../../mod/events.php:450 ../../mod/directory.php:138 ../../boot.php:1675 +msgid "Location:" +msgstr "Luogo:" -#: ../../mod/friendica.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Segnalazioni di bug e problemi: visita" +#: ../../include/features.php:21 +msgid "General Features" +msgstr "Funzionalità generali" -#: ../../mod/friendica.php:61 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com" +#: ../../include/features.php:24 +msgid "Multiple Profiles" +msgstr "Profili multipli" -#: ../../mod/friendica.php:75 -msgid "Installed plugins/addons/apps:" -msgstr "Plugin/addon/applicazioni instalate" +#: ../../include/features.php:24 +msgid "Ability to create multiple profiles" +msgstr "Abilitazione a creare profili multipli" -#: ../../mod/friendica.php:88 -msgid "No installed plugins/addons/apps" -msgstr "Nessun plugin/addons/applicazione installata" +#: ../../include/features.php:25 +msgid "Web Pages" +msgstr "Pagine web" -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Oggetto non trovato" +#: ../../include/features.php:25 +msgid "Provide managed web pages on your channel" +msgstr "Attiva la creazione di pagine web sul tuo canale" -#: ../../mod/editpost.php:36 -msgid "Edit post" -msgstr "Modifica messaggio" +#: ../../include/features.php:26 +msgid "Enhanced Photo Albums" +msgstr "Album fotografici avanzati" -#: ../../mod/editpost.php:88 ../../include/conversation.php:882 -msgid "Post to Email" -msgstr "Invia a email" +#: ../../include/features.php:26 +msgid "Enable photo album with enhanced features" +msgstr "Abilita gli album fotografici con funzionalità avanzate" -#: ../../mod/editpost.php:103 ../../mod/content.php:710 -#: ../../mod/settings.php:605 ../../object/Item.php:107 -msgid "Edit" -msgstr "Modifica" +#: ../../include/features.php:28 +msgid "Extended Identity Sharing" +msgstr "Condivisione avanzata dell'identità" -#: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150 -#: ../../mod/message.php:291 ../../mod/message.php:478 -#: ../../include/conversation.php:897 -msgid "Upload photo" -msgstr "Carica foto" +#: ../../include/features.php:28 ../../include/js_strings.php:28 +msgid " " +msgstr " " -#: ../../mod/editpost.php:105 ../../include/conversation.php:899 -msgid "Attach file" -msgstr "Allega file" +#: ../../include/features.php:29 +msgid "Expert Mode" +msgstr "Modalità esperto" -#: ../../mod/editpost.php:106 ../../mod/wallmessage.php:151 -#: ../../mod/message.php:292 ../../mod/message.php:479 -#: ../../include/conversation.php:901 -msgid "Insert web link" -msgstr "Inserisci link" +#: ../../include/features.php:29 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "Abilita la modalità esperto per vedere le opzioni di configurazione avanzate" -#: ../../mod/editpost.php:107 -msgid "Insert YouTube video" -msgstr "Inserisci video da YouTube" +#: ../../include/features.php:36 +msgid "Post Composition Features" +msgstr "Modalità di scrittura articoli" -#: ../../mod/editpost.php:108 -msgid "Insert Vorbis [.ogg] video" -msgstr "Inserisci video Vorbis [.ogg]" +#: ../../include/features.php:37 +msgid "Richtext Editor" +msgstr "Editor grafico" -#: ../../mod/editpost.php:109 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Inserisci audio Vorbis [.ogg]" +#: ../../include/features.php:37 +msgid "Enable richtext editor" +msgstr "Abilita l'editor grafico" -#: ../../mod/editpost.php:110 ../../include/conversation.php:907 -msgid "Set your location" -msgstr "La tua posizione" +#: ../../include/features.php:38 +msgid "Post Preview" +msgstr "Anteprima articolo" -#: ../../mod/editpost.php:111 ../../include/conversation.php:909 -msgid "Clear browser location" -msgstr "Rimuovi la localizzazione data dal browser" +#: ../../include/features.php:38 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Abilita l'anteprima degli articoli e dei commenti prima di pubblicarli" -#: ../../mod/editpost.php:113 ../../include/conversation.php:916 -msgid "Permission settings" -msgstr "Impostazioni permessi" +#: ../../include/features.php:43 +msgid "Network and Stream Filtering" +msgstr "Filtraggio dei contenuti" -#: ../../mod/editpost.php:121 ../../include/conversation.php:925 -msgid "CC: email addresses" -msgstr "CC: indirizzi email" +#: ../../include/features.php:44 +msgid "Search by Date" +msgstr "Ricerca per data" -#: ../../mod/editpost.php:122 ../../include/conversation.php:926 -msgid "Public post" -msgstr "Messaggio pubblico" +#: ../../include/features.php:44 +msgid "Ability to select posts by date ranges" +msgstr "Per selezionare gli articoli in un intervallo tra date" -#: ../../mod/editpost.php:125 ../../include/conversation.php:912 -msgid "Set title" -msgstr "Scegli un titolo" +#: ../../include/features.php:45 +msgid "Collections Filter" +msgstr "Ricerca per gruppo" -#: ../../mod/editpost.php:127 ../../include/conversation.php:914 -msgid "Categories (comma-separated list)" -msgstr "Categorie (lista separata da virgola)" +#: ../../include/features.php:45 +msgid "Enable widget to display Network posts only from selected collections" +msgstr "Mostra il riquadro che permette di vedere solo gli articoli dei gruppi scelti" -#: ../../mod/editpost.php:128 ../../include/conversation.php:928 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Esempio: bob@example.com, mary@example.com" +#: ../../include/features.php:46 ../../mod/network.php:150 +#: ../../mod/search.php:17 +msgid "Saved Searches" +msgstr "Ricerche salvate" -#: ../../mod/dfrn_request.php:93 -msgid "This introduction has already been accepted." -msgstr "Questa presentazione è già stata accettata." +#: ../../include/features.php:46 +msgid "Save search terms for re-use" +msgstr "Salva i termini delle ricerche per poterle ripetere" -#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:512 -msgid "Profile location is not valid or does not contain profile information." -msgstr "L'indirizzo del profilo non è valido o non contiene un profilo." +#: ../../include/features.php:47 +msgid "Network Personal Tab" +msgstr "Attività personale" -#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:517 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario." +#: ../../include/features.php:47 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Abilita il link per mostrare solamente i contenuti con cui hai interagito" -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:519 -msgid "Warning: profile location has no profile photo." -msgstr "Attenzione: l'indirizzo del profilo non ha una foto." +#: ../../include/features.php:48 +msgid "Network New Tab" +msgstr "Contenuti nuovi" -#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:522 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "%d parametro richiesto non è stato trovato all'indirizzo dato" -msgstr[1] "%d parametri richiesti non sono stati trovati all'indirizzo dato" +#: ../../include/features.php:48 +msgid "Enable tab to display all new Network activity" +msgstr "Abilita il link per visualizzare solo i nuovi contenuti" -#: ../../mod/dfrn_request.php:170 -msgid "Introduction complete." -msgstr "Presentazione completa." +#: ../../include/features.php:49 +msgid "Affinity Tool" +msgstr "Filtro per affinità" -#: ../../mod/dfrn_request.php:209 -msgid "Unrecoverable protocol error." -msgstr "Errore di comunicazione." +#: ../../include/features.php:49 +msgid "Filter stream activity by depth of relationships" +msgstr "Permette di selezionare i contenuti in base al livello di amicizia" -#: ../../mod/dfrn_request.php:237 -msgid "Profile unavailable." -msgstr "Profilo non disponibile." +#: ../../include/features.php:54 +msgid "Post/Comment Tools" +msgstr "Gestione articoli e commenti" -#: ../../mod/dfrn_request.php:262 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s ha ricevuto troppe richieste di connessione per oggi." +#: ../../include/features.php:55 +msgid "Multiple Deletion" +msgstr "Eliminazione multipla" -#: ../../mod/dfrn_request.php:263 -msgid "Spam protection measures have been invoked." -msgstr "Sono state attivate le misure di protezione contro lo spam." +#: ../../include/features.php:55 +msgid "Select and delete multiple posts/comments at once" +msgstr "Rendi possibile l'eliminazione di molti articoli o commenti con un solo comando" -#: ../../mod/dfrn_request.php:264 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Gli amici sono pregati di riprovare tra 24 ore." +#: ../../include/features.php:56 +msgid "Edit Sent Posts" +msgstr "Modifica gli articoli già inviati" -#: ../../mod/dfrn_request.php:326 -msgid "Invalid locator" -msgstr "Invalid locator" +#: ../../include/features.php:56 +msgid "Edit and correct posts and comments after sending" +msgstr "Modifica e correggi gli articoli o i commenti anche dopo l'invio" -#: ../../mod/dfrn_request.php:335 -msgid "Invalid email address." -msgstr "Indirizzo email non valido." +#: ../../include/features.php:57 +msgid "Tagging" +msgstr "Tag" -#: ../../mod/dfrn_request.php:361 -msgid "This account has not been configured for email. Request failed." -msgstr "" +#: ../../include/features.php:57 +msgid "Ability to tag existing posts" +msgstr "Permetti l'aggiunta di tag su articoli già esistenti" -#: ../../mod/dfrn_request.php:457 -msgid "Unable to resolve your name at the provided location." -msgstr "Impossibile risolvere il tuo nome nella posizione indicata." +#: ../../include/features.php:58 +msgid "Post Categories" +msgstr "Categorie degli articoli" -#: ../../mod/dfrn_request.php:470 -msgid "You have already introduced yourself here." -msgstr "Ti sei già presentato qui." +#: ../../include/features.php:58 +msgid "Add categories to your posts" +msgstr "Abilita le categorie per i tuoi articoli" -#: ../../mod/dfrn_request.php:474 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Pare che tu e %s siate già amici." +#: ../../include/features.php:59 +msgid "Ability to file posts under folders" +msgstr "Abilita la raccolta dei tuoi articoli in cartelle" -#: ../../mod/dfrn_request.php:495 -msgid "Invalid profile URL." -msgstr "Indirizzo profilo non valido." +#: ../../include/features.php:60 +msgid "Dislike Posts" +msgstr "Non mi piace" -#: ../../mod/dfrn_request.php:501 ../../include/follow.php:27 -msgid "Disallowed profile URL." -msgstr "Indirizzo profilo non permesso." +#: ../../include/features.php:60 +msgid "Ability to dislike posts/comments" +msgstr "Abilità la funzionalità \"non mi piace\" per i tuoi articoli" -#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:123 -msgid "Failed to update contact record." -msgstr "Errore nell'aggiornamento del contatto." +#: ../../include/features.php:61 +msgid "Star Posts" +msgstr "Articoli stella (preferiti)" -#: ../../mod/dfrn_request.php:591 -msgid "Your introduction has been sent." -msgstr "La tua presentazione è stata inviata." +#: ../../include/features.php:61 +msgid "Ability to mark special posts with a star indicator" +msgstr "Mostra la stella per scegliere gli articoli preferiti" -#: ../../mod/dfrn_request.php:644 -msgid "Please login to confirm introduction." -msgstr "Accedi per confermare la presentazione." +#: ../../include/features.php:62 +msgid "Tag Cloud" +msgstr "Nuvola di tag" -#: ../../mod/dfrn_request.php:658 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo." +#: ../../include/features.php:62 +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" -#: ../../mod/dfrn_request.php:669 -msgid "Hide this contact" -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." +msgstr "È stato ripristinato un gruppo con questo nome che era stato eliminato in precedenza. I permessi già presenti potrebbero rimanere validi per i nuovi membri. Se non vuoi che ciò accada, devi creare un altro gruppo con un nome diverso." -#: ../../mod/dfrn_request.php:672 -#, php-format -msgid "Welcome home %s." -msgstr "Bentornato a casa %s." +#: ../../include/group.php:223 +msgid "Default privacy group for new contacts" +msgstr "Livello di privacy predefinito per i nuovi contatti" -#: ../../mod/dfrn_request.php:673 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Conferma la tua richiesta di connessione con %s." +#: ../../include/group.php:242 +msgid "All Channels" +msgstr "Tutti i canali" -#: ../../mod/dfrn_request.php:674 -msgid "Confirm" -msgstr "Conferma" +#: ../../include/group.php:264 ../../include/page_widgets.php:8 +msgid "edit" +msgstr "modifica" -#: ../../mod/dfrn_request.php:715 ../../include/items.php:3292 -msgid "[Name Withheld]" -msgstr "[Nome Nascosto]" +#: ../../include/group.php:285 +msgid "Collections" +msgstr "Gruppi" -#: ../../mod/dfrn_request.php:810 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:" +#: ../../include/group.php:286 +msgid "Edit collection" +msgstr "Modifica gruppo" -#: ../../mod/dfrn_request.php:826 -msgid "Connect as an email follower (Coming soon)" -msgstr "Connetti un email come follower (in arrivo)" +#: ../../include/group.php:287 +msgid "Create a new collection" +msgstr "Crea un nuovo gruppo" -#: ../../mod/dfrn_request.php:828 -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public" -" Friendica site and join us today." -msgstr "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi" +#: ../../include/group.php:288 +msgid "Channels not in any collection" +msgstr "Canali fuori da tutti i gruppi" -#: ../../mod/dfrn_request.php:831 -msgid "Friend/Connection Request" -msgstr "Richieste di amicizia/connessione" - -#: ../../mod/dfrn_request.php:832 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: ../../mod/dfrn_request.php:833 -msgid "Please answer the following:" -msgstr "Rispondi:" +#: ../../include/group.php:290 ../../mod/network.php:151 +msgid "add" +msgstr "aggiungi" -#: ../../mod/dfrn_request.php:834 -#, php-format -msgid "Does %s know you?" -msgstr "%s ti conosce?" +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "Eliminare questo elemento?" -#: ../../mod/dfrn_request.php:837 -msgid "Add a personal note:" -msgstr "Aggiungi una nota personale:" +#: ../../include/js_strings.php:6 ../../include/ItemObject.php:504 +#: ../../mod/photos.php:1069 ../../mod/photos.php:1107 +#: ../../mod/photos.php:1134 +msgid "Comment" +msgstr "Commento" -#: ../../mod/dfrn_request.php:839 ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" +#: ../../include/js_strings.php:8 +msgid "show fewer" +msgstr "riduci" -#: ../../mod/dfrn_request.php:840 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" +#: ../../include/js_strings.php:9 +msgid "Password too short" +msgstr "Password troppo corta" -#: ../../mod/dfrn_request.php:841 ../../mod/settings.php:640 -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../include/js_strings.php:10 +msgid "Passwords do not match" +msgstr "Le password non corrispondono" -#: ../../mod/dfrn_request.php:842 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora." +#: ../../include/js_strings.php:11 ../../mod/photos.php:45 +msgid "everybody" +msgstr "tutti" -#: ../../mod/dfrn_request.php:843 -msgid "Your Identity Address:" -msgstr "L'indirizzo della tua identità:" +#: ../../include/js_strings.php:13 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" -#: ../../mod/dfrn_request.php:846 -msgid "Submit Request" -msgstr "Invia richiesta" +#: ../../include/js_strings.php:14 +msgid "timeago.suffixAgo" +msgstr "timeago.suffixAgo" -#: ../../mod/install.php:117 -msgid "Friendica Social Communications Server - Setup" -msgstr "Friendica Social Communications Server - Setup" +#: ../../include/js_strings.php:15 +msgid "ago" +msgstr "fa" -#: ../../mod/install.php:123 -msgid "Could not connect to database." -msgstr " Impossibile collegarsi con il database." +#: ../../include/js_strings.php:16 +msgid "from now" +msgstr "da adesso" -#: ../../mod/install.php:127 -msgid "Could not create table." -msgstr "Impossibile creare le tabelle." +#: ../../include/js_strings.php:17 +msgid "less than a minute" +msgstr "meno di un minuto" -#: ../../mod/install.php:133 -msgid "Your Friendica site database has been installed." -msgstr "Il tuo Friendica è stato installato." +#: ../../include/js_strings.php:18 +msgid "about a minute" +msgstr "circa un minuto" -#: ../../mod/install.php:138 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql" +#: ../../include/js_strings.php:19 +#, php-format +msgid "%d minutes" +msgstr "%d minuti" -#: ../../mod/install.php:139 ../../mod/install.php:204 -#: ../../mod/install.php:488 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Leggi il file \"INSTALL.txt\"." +#: ../../include/js_strings.php:20 +msgid "about an hour" +msgstr "circa un’ora" -#: ../../mod/install.php:201 -msgid "System check" -msgstr "Controllo sistema" +#: ../../include/js_strings.php:21 +#, php-format +msgid "about %d hours" +msgstr "circa %d ore" -#: ../../mod/install.php:206 -msgid "Check again" -msgstr "Controlla ancora" +#: ../../include/js_strings.php:22 +msgid "a day" +msgstr "un giorno" -#: ../../mod/install.php:225 -msgid "Database connection" -msgstr "Connessione al database" +#: ../../include/js_strings.php:23 +#, php-format +msgid "%d days" +msgstr "%d giorni" -#: ../../mod/install.php:226 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Per installare Friendica dobbiamo sapere come collegarci al tuo database." +#: ../../include/js_strings.php:24 +msgid "about a month" +msgstr "circa un mese" -#: ../../mod/install.php:227 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." +#: ../../include/js_strings.php:25 +#, php-format +msgid "%d months" +msgstr "%d mesi" -#: ../../mod/install.php:228 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Il database dovrà già esistere. Se non esiste, crealo prima di continuare." +#: ../../include/js_strings.php:26 +msgid "about a year" +msgstr "circa un anno" -#: ../../mod/install.php:232 -msgid "Database Server Name" -msgstr "Nome del database server" +#: ../../include/js_strings.php:27 +#, php-format +msgid "%d years" +msgstr "%d anni" -#: ../../mod/install.php:233 -msgid "Database Login Name" -msgstr "Nome utente database" +#: ../../include/js_strings.php:29 +msgid "timeago.numbers" +msgstr "timeago.numbers" -#: ../../mod/install.php:234 -msgid "Database Login Password" -msgstr "Password utente database" +#: ../../include/message.php:17 +msgid "No recipient provided." +msgstr "Devi scegliere un destinatario." -#: ../../mod/install.php:235 -msgid "Database Name" -msgstr "Nome database" +#: ../../include/message.php:22 +msgid "[no subject]" +msgstr "[nessun titolo]" -#: ../../mod/install.php:236 ../../mod/install.php:275 -msgid "Site administrator email address" -msgstr "Indirizzo email dell'amministratore del sito" +#: ../../include/message.php:37 +msgid "Unable to determine sender." +msgstr "Impossibile determinare il mittente." -#: ../../mod/install.php:236 ../../mod/install.php:275 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web." +#: ../../include/message.php:106 +msgid "Stored post could not be verified." +msgstr "Non è stato possibile verificare l'articolo inserito." -#: ../../mod/install.php:240 ../../mod/install.php:278 -msgid "Please select a default timezone for your website" -msgstr "Seleziona il fuso orario predefinito per il tuo sito web" +#: ../../include/network.php:1103 +msgid "view full size" +msgstr "guarda nelle dimensioni reali" -#: ../../mod/install.php:265 -msgid "Site settings" -msgstr "Impostazioni sito" +#: ../../include/photo/photo_driver.php:609 ../../include/photos.php:51 +#: ../../mod/photos.php:97 ../../mod/photos.php:754 ../../mod/photos.php:776 +#: ../../mod/profile_photo.php:88 ../../mod/profile_photo.php:235 +#: ../../mod/profile_photo.php:346 +msgid "Profile Photos" +msgstr "Foto del profilo" -#: ../../mod/install.php:318 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web" +#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:118 +#: ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Profilo" -#: ../../mod/install.php:319 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See 'Activating scheduled tasks'" -msgstr "" +#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1017 +msgid "Full Name:" +msgstr "Nome completo:" -#: ../../mod/install.php:323 -msgid "PHP executable path" -msgstr "Percorso eseguibile PHP" +#: ../../include/profile_advanced.php:17 ../../mod/directory.php:140 +#: ../../boot.php:1677 +msgid "Gender:" +msgstr "Sesso:" -#: ../../mod/install.php:323 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "" +#: ../../include/profile_advanced.php:22 +msgid "j F, Y" +msgstr "j F Y" -#: ../../mod/install.php:328 -msgid "Command line PHP" -msgstr "PHP da riga di comando" +#: ../../include/profile_advanced.php:23 +msgid "j F" +msgstr "j F" -#: ../../mod/install.php:337 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." +#: ../../include/profile_advanced.php:30 +msgid "Birthday:" +msgstr "Compleanno:" -#: ../../mod/install.php:338 -msgid "This is required for message delivery to work." -msgstr "E' obbligatorio per far funzionare la consegna dei messaggi." +#: ../../include/profile_advanced.php:34 +msgid "Age:" +msgstr "Età:" -#: ../../mod/install.php:340 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../include/profile_advanced.php:37 ../../mod/directory.php:142 +#: ../../boot.php:1678 +msgid "Status:" +msgstr "Stato:" -#: ../../mod/install.php:361 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione" +#: ../../include/profile_advanced.php:43 +#, php-format +msgid "for %1$d %2$s" +msgstr "per %1$d %2$s" -#: ../../mod/install.php:362 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." +#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:549 +msgid "Sexual Preference:" +msgstr "Preferenze sessuali:" -#: ../../mod/install.php:364 -msgid "Generate encryption keys" -msgstr "Genera chiavi di criptazione" +#: ../../include/profile_advanced.php:48 ../../mod/directory.php:144 +#: ../../boot.php:1679 +msgid "Homepage:" +msgstr "Homepage:" -#: ../../mod/install.php:371 -msgid "libCurl PHP module" -msgstr "modulo PHP libCurl" +#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:551 +msgid "Hometown:" +msgstr "Città dove vivo:" -#: ../../mod/install.php:372 -msgid "GD graphics PHP module" -msgstr "modulo PHP GD graphics" +#: ../../include/profile_advanced.php:52 +msgid "Tags:" +msgstr "Tag:" -#: ../../mod/install.php:373 -msgid "OpenSSL PHP module" -msgstr "modulo PHP OpenSSL" +#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:552 +msgid "Political Views:" +msgstr "Orientamento politico:" -#: ../../mod/install.php:374 -msgid "mysqli PHP module" -msgstr "modulo PHP mysqli" +#: ../../include/profile_advanced.php:56 +msgid "Religion:" +msgstr "Religione:" -#: ../../mod/install.php:375 -msgid "mb_string PHP module" -msgstr "modulo PHP mb_string" +#: ../../include/profile_advanced.php:58 ../../mod/directory.php:146 +msgid "About:" +msgstr "Informazioni:" -#: ../../mod/install.php:380 ../../mod/install.php:382 -msgid "Apache mod_rewrite module" -msgstr "" +#: ../../include/profile_advanced.php:60 +msgid "Hobbies/Interests:" +msgstr "Interessi e hobby:" -#: ../../mod/install.php:380 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato" +#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:555 +msgid "Likes:" +msgstr "Mi piace:" -#: ../../mod/install.php:388 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato." +#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:556 +msgid "Dislikes:" +msgstr "Non mi piace:" -#: ../../mod/install.php:392 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato." +#: ../../include/profile_advanced.php:67 +msgid "Contact information and Social Networks:" +msgstr "Contatti e social network:" -#: ../../mod/install.php:396 -msgid "Error: openssl PHP module required but not installed." -msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato." +#: ../../include/profile_advanced.php:69 +msgid "Musical interests:" +msgstr "Gusti musicali:" -#: ../../mod/install.php:400 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Errore: il modulo mysqli di PHP è richiesto ma non installato" +#: ../../include/profile_advanced.php:71 +msgid "Books, literature:" +msgstr "Libri, letteratura:" -#: ../../mod/install.php:404 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Errore: il modulo PHP mb_string è richiesto ma non installato." +#: ../../include/profile_advanced.php:73 +msgid "Television:" +msgstr "Televisione:" -#: ../../mod/install.php:421 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo." +#: ../../include/profile_advanced.php:75 +msgid "Film/dance/culture/entertainment:" +msgstr "Film, danza, cultura, intrattenimento:" -#: ../../mod/install.php:422 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server puo' scrivere il file nella tua cartella, anche se tu puoi." +#: ../../include/profile_advanced.php:77 +msgid "Love/Romance:" +msgstr "Amore:" -#: ../../mod/install.php:423 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "" +#: ../../include/profile_advanced.php:79 +msgid "Work/employment:" +msgstr "Lavoro:" -#: ../../mod/install.php:424 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "" +#: ../../include/profile_advanced.php:81 +msgid "School/education:" +msgstr "Scuola:" -#: ../../mod/install.php:427 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php è scrivibile" +#: ../../include/nav.php:71 ../../include/nav.php:86 ../../boot.php:1366 +msgid "Logout" +msgstr "Esci" -#: ../../mod/install.php:439 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "" +#: ../../include/nav.php:71 ../../include/nav.php:86 +msgid "End this session" +msgstr "Chiudi questa sessione" -#: ../../mod/install.php:441 -msgid "Url rewrite is working" -msgstr "" +#: ../../include/nav.php:74 ../../include/nav.php:116 +#: ../../include/nav.php:148 +msgid "Home" +msgstr "Bacheca" -#: ../../mod/install.php:451 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito." +#: ../../include/nav.php:74 ../../include/nav.php:148 +msgid "Your posts and conversations" +msgstr "I tuoi articoli e conversazioni" -#: ../../mod/install.php:475 -msgid "Errors encountered creating database tables." -msgstr "La creazione delle tabelle del database ha generato errori." +#: ../../include/nav.php:75 +msgid "Your profile page" +msgstr "Il tuo profilo" -#: ../../mod/install.php:486 -msgid "

    What next

    " -msgstr "" +#: ../../include/nav.php:77 +msgid "Edit Profiles" +msgstr "Modifica i profili" -#: ../../mod/install.php:487 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller." +#: ../../include/nav.php:77 +msgid "Manage/Edit Profiles" +msgstr "Gestisci e modifica i profili" -#: ../../mod/localtime.php:12 ../../include/event.php:11 -#: ../../include/bb2diaspora.php:390 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" +#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 ../../boot.php:2107 +msgid "Photos" +msgstr "Foto" -#: ../../mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Conversione Ora" +#: ../../include/nav.php:78 +msgid "Your photos" +msgstr "Le tue foto" -#: ../../mod/localtime.php:26 -msgid "" -"Friendika provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendika fornisce questo servizio per la condivisione di eventi con altre reti e contatti in fusi orari sconosciuti." +#: ../../include/nav.php:84 ../../boot.php:1367 +msgid "Login" +msgstr "Accedi" -#: ../../mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "Ora UTC: %s" +#: ../../include/nav.php:84 +msgid "Sign in" +msgstr "Entra" -#: ../../mod/localtime.php:33 +#: ../../include/nav.php:100 #, php-format -msgid "Current timezone: %s" -msgstr "Fuso orario corrente: %s" +msgid "%s - click to logout" +msgstr "%s - clicca per uscire" -#: ../../mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Ora locale convertita: %s" +#: ../../include/nav.php:103 +msgid "Click to authenticate to your home hub" +msgstr "Clicca per autenticarti sul tuo server principale" -#: ../../mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Selezionare il tuo fuso orario:" +#: ../../include/nav.php:116 +msgid "Home Page" +msgstr "Bacheca" -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "" +#: ../../include/nav.php:120 ../../mod/register.php:181 ../../boot.php:1342 +msgid "Register" +msgstr "Iscriviti" -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "" +#: ../../include/nav.php:120 +msgid "Create an account" +msgstr "Crea un account" -#: ../../mod/poke.php:194 -msgid "Recipient" -msgstr "" +#: ../../include/nav.php:125 ../../mod/help.php:34 +msgid "Help" +msgstr "Guida" -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "" +#: ../../include/nav.php:125 +msgid "Help and documentation" +msgstr "Guida e documentazione" -#: ../../mod/poke.php:198 -msgid "Make this post private" -msgstr "" +#: ../../include/nav.php:128 +msgid "Apps" +msgstr "Apps" -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "Profili corrispondenti" +#: ../../include/nav.php:128 +msgid "Addon applications, utilities, games" +msgstr "App, strumenti e giochi aggiuntivi" -#: ../../mod/match.php:20 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito." +#: ../../include/nav.php:130 ../../include/text.php:701 +#: ../../include/text.php:702 ../../mod/search.php:96 +msgid "Search" +msgstr "Cerca" -#: ../../mod/match.php:57 -msgid "is interested in:" -msgstr "è interessato a:" - -#: ../../mod/match.php:58 ../../mod/suggest.php:59 -#: ../../include/contact_widgets.php:9 ../../boot.php:1164 -msgid "Connect" -msgstr "Connetti" +#: ../../include/nav.php:130 +msgid "Search site content" +msgstr "Cerca nel sito" -#: ../../mod/match.php:65 ../../mod/dirfind.php:60 -msgid "No matches" -msgstr "Nessun risultato" +#: ../../include/nav.php:133 ../../mod/directory.php:186 +msgid "Directory" +msgstr "Elenco" -#: ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Informazioni remote sulla privacy non disponibili." +#: ../../include/nav.php:133 +msgid "Channel Locator" +msgstr "Ricerca canali" -#: ../../mod/lockview.php:43 -msgid "Visible to:" -msgstr "Visibile a:" +#: ../../include/nav.php:144 +msgid "Matrix" +msgstr "Matrix" -#: ../../mod/content.php:119 ../../mod/network.php:436 -msgid "No such group" -msgstr "Nessun gruppo" +#: ../../include/nav.php:144 +msgid "Conversations from your grid" +msgstr "Le conversazioni dalla tua rete di contatti" -#: ../../mod/content.php:130 ../../mod/network.php:447 -msgid "Group is empty" -msgstr "Il gruppo è vuoto" +#: ../../include/nav.php:145 +msgid "See all matrix notifications" +msgstr "Guarda le notifiche della tua rete di contatti" -#: ../../mod/content.php:134 ../../mod/network.php:451 -msgid "Group: " -msgstr "Gruppo: " +#: ../../include/nav.php:146 +msgid "Mark all matrix notifications seen" +msgstr "Segna come lette le notifiche della tua rete" -#: ../../mod/content.php:438 ../../mod/content.php:722 -#: ../../include/conversation.php:514 ../../object/Item.php:116 -msgid "Select" -msgstr "Seleziona" +#: ../../include/nav.php:149 +msgid "See all channel notifications" +msgstr "Guarda le notifiche dei canali" -#: ../../mod/content.php:455 ../../mod/content.php:815 -#: ../../mod/content.php:816 ../../include/conversation.php:533 -#: ../../object/Item.php:227 ../../object/Item.php:228 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Vedi il profilo di %s @ %s" +#: ../../include/nav.php:150 +msgid "Mark all channel notifications seen" +msgstr "Segna come lette le notifiche dei canali" -#: ../../mod/content.php:465 ../../mod/content.php:827 -#: ../../include/conversation.php:553 ../../object/Item.php:240 -#, php-format -msgid "%s from %s" -msgstr "%s da %s" +#: ../../include/nav.php:153 +msgid "Intros" +msgstr "Richieste" -#: ../../mod/content.php:480 ../../include/conversation.php:568 -msgid "View in context" -msgstr "Vedi nel contesto" +#: ../../include/nav.php:153 ../../mod/connections.php:545 +msgid "New Connections" +msgstr "Nuovi contatti" -#: ../../mod/content.php:586 ../../object/Item.php:277 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commento" -msgstr[1] "%d commenti" +#: ../../include/nav.php:154 +msgid "See all channel introductions" +msgstr "Guarda tutte le richieste di amicizia" -#: ../../mod/content.php:588 ../../include/text.php:1443 -#: ../../object/Item.php:279 ../../object/Item.php:292 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "commento" - -#: ../../mod/content.php:589 ../../addon/page/page.php:76 -#: ../../addon/page/page.php:110 ../../addon/showmore/showmore.php:119 -#: ../../include/contact_widgets.php:195 ../../boot.php:575 -#: ../../object/Item.php:280 -msgid "show more" -msgstr "mostra di più" +#: ../../include/nav.php:157 +msgid "Notices" +msgstr "Notifiche" -#: ../../mod/content.php:667 ../../object/Item.php:196 -msgid "like" -msgstr "mi piace" +#: ../../include/nav.php:157 ../../mod/notifications.php:218 +msgid "Notifications" +msgstr "Notifiche" -#: ../../mod/content.php:668 ../../object/Item.php:197 -msgid "dislike" -msgstr "non mi piace" +#: ../../include/nav.php:158 +msgid "See all notifications" +msgstr "Vedi tutte le notifiche" -#: ../../mod/content.php:670 ../../object/Item.php:199 -msgid "Share this" -msgstr "Condividi questo" +#: ../../include/nav.php:159 +msgid "Mark all system notifications seen" +msgstr "Segna come lette le notifiche di sistema" -#: ../../mod/content.php:670 ../../object/Item.php:199 -msgid "share" -msgstr "condividi" +#: ../../include/nav.php:161 +msgid "Mail" +msgstr "Messaggi" -#: ../../mod/content.php:694 ../../object/Item.php:561 -msgid "Bold" -msgstr "" +#: ../../include/nav.php:161 +msgid "Private mail" +msgstr "Messaggi privati" -#: ../../mod/content.php:695 ../../object/Item.php:562 -msgid "Italic" -msgstr "" +#: ../../include/nav.php:162 +msgid "See all private messages" +msgstr "Guarda tutti i messaggi privati" -#: ../../mod/content.php:696 ../../object/Item.php:563 -msgid "Underline" -msgstr "" +#: ../../include/nav.php:163 +msgid "Mark all private messages seen" +msgstr "Segna come letti tutti i messaggi privati" -#: ../../mod/content.php:697 ../../object/Item.php:564 -msgid "Quote" -msgstr "" +#: ../../include/nav.php:164 +msgid "Inbox" +msgstr "In arrivo" -#: ../../mod/content.php:698 ../../object/Item.php:565 -msgid "Code" -msgstr "" +#: ../../include/nav.php:165 +msgid "Outbox" +msgstr "Inviati" -#: ../../mod/content.php:699 ../../object/Item.php:566 -msgid "Image" -msgstr "" +#: ../../include/nav.php:166 ../../mod/message.php:21 +msgid "New Message" +msgstr "Nuovo messaggio" -#: ../../mod/content.php:700 ../../object/Item.php:567 -msgid "Link" -msgstr "" +#: ../../include/nav.php:169 ../../mod/events.php:348 ../../boot.php:2118 +msgid "Events" +msgstr "Eventi" -#: ../../mod/content.php:701 ../../object/Item.php:568 -msgid "Video" -msgstr "" +#: ../../include/nav.php:169 +msgid "Event Calendar" +msgstr "Calendario" -#: ../../mod/content.php:735 ../../object/Item.php:180 -msgid "add star" -msgstr "aggiungi a speciali" +#: ../../include/nav.php:170 +msgid "See all events" +msgstr "Guarda tutti gli eventi" -#: ../../mod/content.php:736 ../../object/Item.php:181 -msgid "remove star" -msgstr "rimuovi da speciali" +#: ../../include/nav.php:171 +msgid "Mark all events seen" +msgstr "Marca come letti tutti gli eventi" -#: ../../mod/content.php:737 ../../object/Item.php:182 -msgid "toggle star status" -msgstr "Inverti stato preferito" +#: ../../include/nav.php:173 +msgid "Channel Select" +msgstr "Gestisci i canali" -#: ../../mod/content.php:740 ../../object/Item.php:185 -msgid "starred" -msgstr "preferito" +#: ../../include/nav.php:173 +msgid "Manage Your Channels" +msgstr "Gestisci i contatti dei tuoi canali" -#: ../../mod/content.php:741 ../../object/Item.php:186 -msgid "add tag" -msgstr "aggiungi tag" +#: ../../include/nav.php:175 ../../mod/settings.php:107 +#: ../../mod/admin.php:728 ../../mod/admin.php:933 +msgid "Settings" +msgstr "Impostazioni" -#: ../../mod/content.php:745 ../../object/Item.php:120 -msgid "save to folder" -msgstr "salva nella cartella" +#: ../../include/nav.php:175 +msgid "Account/Channel Settings" +msgstr "Impostazioni account e canali" -#: ../../mod/content.php:817 ../../object/Item.php:229 -msgid "to" -msgstr "a" +#: ../../include/nav.php:177 ../../mod/connections.php:651 +msgid "Connections" +msgstr "Contatti" -#: ../../mod/content.php:818 ../../object/Item.php:230 -msgid "Wall-to-Wall" -msgstr "Da bacheca a bacheca" +#: ../../include/nav.php:177 +msgid "Manage/Edit Friends and Connections" +msgstr "Modifica amici e contatti" -#: ../../mod/content.php:819 ../../object/Item.php:231 -msgid "via Wall-To-Wall:" -msgstr "da bacheca a bacheca" +#: ../../include/nav.php:184 ../../mod/admin.php:106 +msgid "Admin" +msgstr "Amministrazione" -#: ../../mod/home.php:28 ../../addon/communityhome/communityhome.php:179 -#, php-format -msgid "Welcome to %s" -msgstr "Benvenuto su %s" +#: ../../include/nav.php:184 +msgid "Site Setup and Configuration" +msgstr "Configurazione del sito" -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "L'identificativo della richiesta non è valido." +#: ../../include/nav.php:207 +msgid "Nothing new here" +msgstr "Niente di nuovo qui" -#: ../../mod/notifications.php:35 ../../mod/notifications.php:161 -#: ../../mod/notifications.php:207 -msgid "Discard" -msgstr "Scarta" +#: ../../include/nav.php:212 +msgid "Please wait..." +msgstr "Attendere..." -#: ../../mod/notifications.php:51 ../../mod/notifications.php:160 -#: ../../mod/notifications.php:206 ../../mod/contacts.php:321 -#: ../../mod/contacts.php:375 -msgid "Ignore" -msgstr "Ignora" +#: ../../include/notify.php:23 +msgid "created a new post" +msgstr "Ha creato un nuovo articolo" -#: ../../mod/notifications.php:75 -msgid "System" -msgstr "Sistema" +#: ../../include/notify.php:24 +#, php-format +msgid "commented on %s's post" +msgstr "ha commentato l'articolo di %s" -#: ../../mod/notifications.php:80 ../../include/nav.php:113 -msgid "Network" -msgstr "Rete" +#: ../../include/oembed.php:148 +msgid "Embedded content" +msgstr "Contenuti incorporati" -#: ../../mod/notifications.php:85 ../../mod/network.php:300 -msgid "Personal" -msgstr "Personale" +#: ../../include/oembed.php:157 +msgid "Embedding disabled" +msgstr "Contenuti incorporati - funzione disabilitata" + +#: ../../include/photos.php:15 ../../include/attach.php:102 +#: ../../include/attach.php:133 ../../include/attach.php:189 +#: ../../include/attach.php:204 ../../include/attach.php:237 +#: ../../include/attach.php:251 ../../include/attach.php:272 +#: ../../include/attach.php:464 ../../include/items.php:3298 +#: ../../mod/common.php:43 ../../mod/events.php:134 ../../mod/invite.php:13 +#: ../../mod/invite.php:102 ../../mod/allfriends.php:10 +#: ../../mod/webpages.php:40 ../../mod/api.php:26 ../../mod/api.php:31 +#: ../../mod/lastpost.php:93 ../../mod/page.php:33 ../../mod/setup.php:181 +#: ../../mod/settings.php:584 ../../mod/viewconnections.php:33 +#: ../../mod/viewconnections.php:38 ../../mod/delegate.php:6 +#: ../../mod/mitem.php:92 ../../mod/group.php:15 ../../mod/photos.php:74 +#: ../../mod/photos.php:644 ../../mod/viewsrc.php:12 ../../mod/menu.php:40 +#: ../../mod/message.php:204 ../../mod/item.php:152 ../../mod/network.php:7 +#: ../../mod/intro.php:50 ../../mod/connections.php:165 +#: ../../mod/profiles.php:163 ../../mod/profiles.php:476 +#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97 +#: ../../mod/manage.php:6 ../../mod/crepair.php:115 ../../mod/nogroup.php:25 +#: ../../mod/profile_photo.php:197 ../../mod/profile_photo.php:210 +#: ../../mod/editwebpage.php:49 ../../mod/notifications.php:66 +#: ../../mod/editpost.php:11 ../../mod/poke.php:128 ../../mod/channel.php:115 +#: ../../mod/fsuggest.php:78 ../../mod/suggest.php:32 +#: ../../mod/register.php:60 ../../mod/regmod.php:18 ../../mod/mood.php:112 +#: ../../index.php:178 ../../index.php:340 +msgid "Permission denied." +msgstr "Permesso negato." -#: ../../mod/notifications.php:90 ../../view/theme/diabook/theme.php:127 -#: ../../include/nav.php:77 ../../include/nav.php:115 -msgid "Home" -msgstr "Home" +#: ../../include/photos.php:88 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "L'immagine supera il limite massimo di %lu bytes" -#: ../../mod/notifications.php:95 ../../include/nav.php:121 -msgid "Introductions" -msgstr "Presentazioni" +#: ../../include/photos.php:95 +msgid "Image file is empty." +msgstr "Il file dell'immagine è vuoto." -#: ../../mod/notifications.php:100 ../../mod/message.php:176 -#: ../../include/nav.php:128 -msgid "Messages" -msgstr "Messaggi" +#: ../../include/photos.php:124 ../../mod/profile_photo.php:157 +msgid "Unable to process image" +msgstr "Impossibile elaborare l'immagine" -#: ../../mod/notifications.php:119 -msgid "Show Ignored Requests" -msgstr "Mostra richieste ignorate" +#: ../../include/photos.php:186 +msgid "Photo storage failed." +msgstr "Impossibile caricare la foto." -#: ../../mod/notifications.php:119 -msgid "Hide Ignored Requests" -msgstr "Nascondi richieste ignorate" +#: ../../include/photos.php:287 ../../boot.php:2110 +msgid "Photo Albums" +msgstr "Album foto" -#: ../../mod/notifications.php:145 ../../mod/notifications.php:191 -msgid "Notification type: " -msgstr "Tipo di notifica: " +#: ../../include/photos.php:291 ../../mod/photos.php:792 +#: ../../mod/photos.php:1287 +msgid "Upload New Photos" +msgstr "Carica nuove foto" -#: ../../mod/notifications.php:146 -msgid "Friend Suggestion" -msgstr "Amico suggerito" +#: ../../include/profile_selectors.php:6 +msgid "Male" +msgstr "Maschio" -#: ../../mod/notifications.php:148 -#, php-format -msgid "suggested by %s" -msgstr "sugerito da %s" +#: ../../include/profile_selectors.php:6 +msgid "Female" +msgstr "Femmina" -#: ../../mod/notifications.php:153 ../../mod/notifications.php:200 -#: ../../mod/contacts.php:381 -msgid "Hide this contact from others" -msgstr "Nascondi questo contatto agli altri" +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Al momento maschio" -#: ../../mod/notifications.php:154 ../../mod/notifications.php:201 -msgid "Post a new friend activity" -msgstr "Invia una attività \"è ora amico con\"" +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Al momento femmina" -#: ../../mod/notifications.php:154 ../../mod/notifications.php:201 -msgid "if applicable" -msgstr "se applicabile" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Prevalentemente maschio" -#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 -#: ../../mod/admin.php:694 -msgid "Approve" -msgstr "Approva" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Prevalentemente femmina" -#: ../../mod/notifications.php:177 -msgid "Claims to be known to you: " -msgstr "Dice di conoscerti: " +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgender" -#: ../../mod/notifications.php:177 -msgid "yes" -msgstr "si" +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Intersex" -#: ../../mod/notifications.php:177 -msgid "no" -msgstr "no" +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transessuale" -#: ../../mod/notifications.php:184 -msgid "Approve as: " -msgstr "Approva come: " +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Ermafrodito" -#: ../../mod/notifications.php:185 -msgid "Friend" -msgstr "Amico" +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neutro" -#: ../../mod/notifications.php:186 -msgid "Sharer" -msgstr "Condivisore" +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Non specificato" -#: ../../mod/notifications.php:186 -msgid "Fan/Admirer" -msgstr "Fan/Ammiratore" +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "Altro" -#: ../../mod/notifications.php:192 -msgid "Friend/Connect Request" -msgstr "Richiesta amicizia/connessione" +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Indeciso" -#: ../../mod/notifications.php:192 -msgid "New Follower" -msgstr "Qualcuno inizia a seguirti" +#: ../../include/profile_selectors.php:23 +msgid "Males" +msgstr "Maschi" -#: ../../mod/notifications.php:213 -msgid "No introductions." -msgstr "Nessuna presentazione." +#: ../../include/profile_selectors.php:23 +msgid "Females" +msgstr "Femmine" -#: ../../mod/notifications.php:216 ../../include/nav.php:122 -msgid "Notifications" -msgstr "Notifiche" +#: ../../include/profile_selectors.php:23 +msgid "Gay" +msgstr "Gay" -#: ../../mod/notifications.php:253 ../../mod/notifications.php:378 -#: ../../mod/notifications.php:465 -#, php-format -msgid "%s liked %s's post" -msgstr "a %s è piaciuto il messaggio di %s" +#: ../../include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbica" -#: ../../mod/notifications.php:262 ../../mod/notifications.php:387 -#: ../../mod/notifications.php:474 -#, php-format -msgid "%s disliked %s's post" -msgstr "a %s non è piaciuto il messaggio di %s" +#: ../../include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Senza preferenza" -#: ../../mod/notifications.php:276 ../../mod/notifications.php:401 -#: ../../mod/notifications.php:488 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s è ora amico di %s" +#: ../../include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Bisessuale" -#: ../../mod/notifications.php:283 ../../mod/notifications.php:408 -#, php-format -msgid "%s created a new post" -msgstr "%s a creato un nuovo messaggio" +#: ../../include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Autosessuale" -#: ../../mod/notifications.php:284 ../../mod/notifications.php:409 -#: ../../mod/notifications.php:497 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s ha commentato il messaggio di %s" +#: ../../include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Astinente" -#: ../../mod/notifications.php:298 -msgid "No more network notifications." -msgstr "Nessuna nuova." +#: ../../include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Vergine" -#: ../../mod/notifications.php:302 -msgid "Network Notifications" -msgstr "Notifiche dalla rete" +#: ../../include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Deviato" -#: ../../mod/notifications.php:328 ../../mod/notify.php:61 -msgid "No more system notifications." -msgstr "Nessuna nuova notifica di sistema." +#: ../../include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Feticista" -#: ../../mod/notifications.php:332 ../../mod/notify.php:65 -msgid "System Notifications" -msgstr "Notifiche di sistema" +#: ../../include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Un sacco" -#: ../../mod/notifications.php:423 -msgid "No more personal notifications." -msgstr "Nessuna nuova." - -#: ../../mod/notifications.php:427 -msgid "Personal Notifications" -msgstr "Notifiche personali" - -#: ../../mod/notifications.php:504 -msgid "No more home notifications." -msgstr "Nessuna nuova." - -#: ../../mod/notifications.php:508 -msgid "Home Notifications" -msgstr "Notifiche bacheca" - -#: ../../mod/contacts.php:84 ../../mod/contacts.php:164 -msgid "Could not access contact record." -msgstr "Non è possibile accedere al contatto." - -#: ../../mod/contacts.php:98 -msgid "Could not locate selected profile." -msgstr "Non riesco a trovare il profilo selezionato." - -#: ../../mod/contacts.php:121 -msgid "Contact updated." -msgstr "Contatto aggiornato." - -#: ../../mod/contacts.php:186 -msgid "Contact has been blocked" -msgstr "Il contatto è stato bloccato" - -#: ../../mod/contacts.php:186 -msgid "Contact has been unblocked" -msgstr "Il contatto è stato sbloccato" - -#: ../../mod/contacts.php:200 -msgid "Contact has been ignored" -msgstr "Il contatto è ignorato" - -#: ../../mod/contacts.php:200 -msgid "Contact has been unignored" -msgstr "Il contatto non è più ignorato" - -#: ../../mod/contacts.php:216 -msgid "Contact has been archived" -msgstr "" - -#: ../../mod/contacts.php:216 -msgid "Contact has been unarchived" -msgstr "" - -#: ../../mod/contacts.php:229 -msgid "Contact has been removed." -msgstr "Il contatto è stato rimosso." - -#: ../../mod/contacts.php:263 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Sei amico reciproco con %s" - -#: ../../mod/contacts.php:267 -#, php-format -msgid "You are sharing with %s" -msgstr "Stai condividendo con %s" - -#: ../../mod/contacts.php:272 -#, php-format -msgid "%s is sharing with you" -msgstr "%s sta condividendo con te" - -#: ../../mod/contacts.php:289 -msgid "Private communications are not available for this contact." -msgstr "Le comunicazioni private non sono disponibili per questo contatto." - -#: ../../mod/contacts.php:292 -msgid "Never" -msgstr "Mai" - -#: ../../mod/contacts.php:296 -msgid "(Update was successful)" -msgstr "(L'aggiornamento è stato completato)" - -#: ../../mod/contacts.php:296 -msgid "(Update was not successful)" -msgstr "(L'aggiornamento non è stato completato)" - -#: ../../mod/contacts.php:298 -msgid "Suggest friends" -msgstr "Suggerisci amici" - -#: ../../mod/contacts.php:302 -#, php-format -msgid "Network type: %s" -msgstr "Tipo di rete: %s" - -#: ../../mod/contacts.php:305 ../../include/contact_widgets.php:190 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d contatto in comune" -msgstr[1] "%d contatti in comune" - -#: ../../mod/contacts.php:310 -msgid "View all contacts" -msgstr "Vedi tutti i contatti" - -#: ../../mod/contacts.php:315 ../../mod/contacts.php:374 -#: ../../mod/admin.php:698 -msgid "Unblock" -msgstr "Sblocca" - -#: ../../mod/contacts.php:315 ../../mod/contacts.php:374 -#: ../../mod/admin.php:697 -msgid "Block" -msgstr "Blocca" - -#: ../../mod/contacts.php:318 -msgid "Toggle Blocked status" -msgstr "" - -#: ../../mod/contacts.php:321 ../../mod/contacts.php:375 -msgid "Unignore" -msgstr "Non ignorare" - -#: ../../mod/contacts.php:324 -msgid "Toggle Ignored status" -msgstr "" - -#: ../../mod/contacts.php:328 -msgid "Unarchive" -msgstr "" - -#: ../../mod/contacts.php:328 -msgid "Archive" -msgstr "" - -#: ../../mod/contacts.php:331 -msgid "Toggle Archive status" -msgstr "" - -#: ../../mod/contacts.php:334 -msgid "Repair" -msgstr "Ripara" - -#: ../../mod/contacts.php:337 -msgid "Advanced Contact Settings" -msgstr "" - -#: ../../mod/contacts.php:343 -msgid "Communications lost with this contact!" -msgstr "" - -#: ../../mod/contacts.php:346 -msgid "Contact Editor" -msgstr "Editor dei Contatti" - -#: ../../mod/contacts.php:349 -msgid "Profile Visibility" -msgstr "Visibilità del profilo" - -#: ../../mod/contacts.php:350 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro." - -#: ../../mod/contacts.php:351 -msgid "Contact Information / Notes" -msgstr "Informazioni / Note sul contatto" - -#: ../../mod/contacts.php:352 -msgid "Edit contact notes" -msgstr "Modifica note contatto" - -#: ../../mod/contacts.php:357 ../../mod/contacts.php:549 -#: ../../mod/viewconnections.php:62 ../../mod/nogroup.php:40 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visita il profilo di %s [%s]" - -#: ../../mod/contacts.php:358 -msgid "Block/Unblock contact" -msgstr "Blocca/Sblocca contatto" - -#: ../../mod/contacts.php:359 -msgid "Ignore contact" -msgstr "Ignora il contatto" - -#: ../../mod/contacts.php:360 -msgid "Repair URL settings" -msgstr "Impostazioni riparazione URL" - -#: ../../mod/contacts.php:361 -msgid "View conversations" -msgstr "Vedi conversazioni" - -#: ../../mod/contacts.php:363 -msgid "Delete contact" -msgstr "Rimuovi contatto" - -#: ../../mod/contacts.php:367 -msgid "Last update:" -msgstr "Ultimo aggiornamento:" - -#: ../../mod/contacts.php:369 -msgid "Update public posts" -msgstr "Aggiorna messaggi pubblici" - -#: ../../mod/contacts.php:371 ../../mod/admin.php:1170 -msgid "Update now" -msgstr "Aggiorna adesso" - -#: ../../mod/contacts.php:378 -msgid "Currently blocked" -msgstr "Bloccato" - -#: ../../mod/contacts.php:379 -msgid "Currently ignored" -msgstr "Ignorato" - -#: ../../mod/contacts.php:380 -msgid "Currently archived" -msgstr "" - -#: ../../mod/contacts.php:381 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Risposte ai tuoi post pubblici possono essere comunque visibili" - -#: ../../mod/contacts.php:434 -msgid "Suggestions" -msgstr "Suggerimenti" - -#: ../../mod/contacts.php:437 -msgid "Suggest potential friends" -msgstr "" - -#: ../../mod/contacts.php:440 ../../mod/group.php:191 -msgid "All Contacts" -msgstr "Tutti i contatti" - -#: ../../mod/contacts.php:443 -msgid "Show all contacts" -msgstr "" - -#: ../../mod/contacts.php:446 -msgid "Unblocked" -msgstr "" - -#: ../../mod/contacts.php:449 -msgid "Only show unblocked contacts" -msgstr "" - -#: ../../mod/contacts.php:453 -msgid "Blocked" -msgstr "" - -#: ../../mod/contacts.php:456 -msgid "Only show blocked contacts" -msgstr "" - -#: ../../mod/contacts.php:460 -msgid "Ignored" -msgstr "" - -#: ../../mod/contacts.php:463 -msgid "Only show ignored contacts" -msgstr "" - -#: ../../mod/contacts.php:467 -msgid "Archived" -msgstr "" - -#: ../../mod/contacts.php:470 -msgid "Only show archived contacts" -msgstr "" - -#: ../../mod/contacts.php:474 -msgid "Hidden" -msgstr "" - -#: ../../mod/contacts.php:477 -msgid "Only show hidden contacts" -msgstr "" - -#: ../../mod/contacts.php:525 -msgid "Mutual Friendship" -msgstr "Amicizia reciproca" - -#: ../../mod/contacts.php:529 -msgid "is a fan of yours" -msgstr "è un tuo fan" - -#: ../../mod/contacts.php:533 -msgid "you are a fan of" -msgstr "sei un fan di" - -#: ../../mod/contacts.php:550 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Modifca contatto" - -#: ../../mod/contacts.php:571 ../../view/theme/diabook/theme.php:129 -#: ../../include/nav.php:139 -msgid "Contacts" -msgstr "Contatti" - -#: ../../mod/contacts.php:575 -msgid "Search your contacts" -msgstr "Cerca nei tuoi contatti" - -#: ../../mod/contacts.php:576 ../../mod/directory.php:59 -msgid "Finding: " -msgstr "Ricerca: " - -#: ../../mod/contacts.php:577 ../../mod/directory.php:61 -#: ../../include/contact_widgets.php:33 -msgid "Find" -msgstr "Trova" - -#: ../../mod/lostpass.php:16 -msgid "No valid account found." -msgstr "Nessun account valido trovato." - -#: ../../mod/lostpass.php:32 -msgid "Password reset request issued. Check your email." -msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." - -#: ../../mod/lostpass.php:43 -#, php-format -msgid "Password reset requested at %s" -msgstr "Richiesta reimpostazione password su %s" - -#: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107 -#: ../../mod/register.php:90 ../../mod/register.php:144 -#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752 -#: ../../addon/facebook/facebook.php:702 -#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661 -#: ../../addon/public_server/public_server.php:62 -#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3301 -#: ../../boot.php:788 -msgid "Administrator" -msgstr "Amministratore" - -#: ../../mod/lostpass.php:65 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita." - -#: ../../mod/lostpass.php:83 ../../boot.php:925 -msgid "Password Reset" -msgstr "Reimpostazione password" - -#: ../../mod/lostpass.php:84 -msgid "Your password has been reset as requested." -msgstr "La tua password è stata reimpostata come richiesto." - -#: ../../mod/lostpass.php:85 -msgid "Your new password is" -msgstr "La tua nuova password è" - -#: ../../mod/lostpass.php:86 -msgid "Save or copy your new password - and then" -msgstr "Salva o copia la tua nuova password, quindi" - -#: ../../mod/lostpass.php:87 -msgid "click here to login" -msgstr "clicca qui per entrare" - -#: ../../mod/lostpass.php:88 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso." - -#: ../../mod/lostpass.php:119 -msgid "Forgot your Password?" -msgstr "Hai dimenticato la password?" - -#: ../../mod/lostpass.php:120 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Inserisci il tuo indirizzo email per reimpostare la password." - -#: ../../mod/lostpass.php:121 -msgid "Nickname or Email: " -msgstr "Nome utente o email: " - -#: ../../mod/lostpass.php:122 -msgid "Reset" -msgstr "Reimposta" - -#: ../../mod/settings.php:30 ../../include/nav.php:137 -msgid "Account settings" -msgstr "Parametri account" - -#: ../../mod/settings.php:35 -msgid "Display settings" -msgstr "Impostazioni grafiche" - -#: ../../mod/settings.php:41 -msgid "Connector settings" -msgstr "Impostazioni connettori" - -#: ../../mod/settings.php:46 -msgid "Plugin settings" -msgstr "Impostazioni plugin" - -#: ../../mod/settings.php:51 -msgid "Connected apps" -msgstr "" - -#: ../../mod/settings.php:56 -msgid "Export personal data" -msgstr "Esporta dati personali" - -#: ../../mod/settings.php:61 -msgid "Remove account" -msgstr "" - -#: ../../mod/settings.php:69 ../../mod/newmember.php:22 -#: ../../mod/admin.php:785 ../../mod/admin.php:990 -#: ../../addon/dav/friendica/layout.fnk.php:225 -#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:643 -#: ../../view/theme/diabook/theme.php:773 ../../include/nav.php:137 -msgid "Settings" -msgstr "Impostazioni" - -#: ../../mod/settings.php:113 -msgid "Missing some important data!" -msgstr "Mancano alcuni dati importanti!" - -#: ../../mod/settings.php:116 ../../mod/settings.php:569 -msgid "Update" -msgstr "Aggiorna" - -#: ../../mod/settings.php:221 -msgid "Failed to connect with email account using the settings provided." -msgstr "Impossibile collegarsi all'account email con i parametri forniti." - -#: ../../mod/settings.php:226 -msgid "Email settings updated." -msgstr "Impostazioni e-mail aggiornate." - -#: ../../mod/settings.php:290 -msgid "Passwords do not match. Password unchanged." -msgstr "Le password non corrispondono. Password non cambiata." - -#: ../../mod/settings.php:295 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Le password non possono essere vuote. Password non cambiata." - -#: ../../mod/settings.php:306 -msgid "Password changed." -msgstr "Password cambiata." - -#: ../../mod/settings.php:308 -msgid "Password update failed. Please try again." -msgstr "Aggiornamento password fallito. Prova ancora." - -#: ../../mod/settings.php:373 -msgid " Please use a shorter name." -msgstr " Usa un nome più corto." - -#: ../../mod/settings.php:375 -msgid " Name too short." -msgstr " Nome troppo corto." - -#: ../../mod/settings.php:381 -msgid " Not valid email." -msgstr " Email non valida." - -#: ../../mod/settings.php:383 -msgid " Cannot change to that email." -msgstr "Non puoi usare quella email." - -#: ../../mod/settings.php:437 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "" - -#: ../../mod/settings.php:441 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "" - -#: ../../mod/settings.php:471 ../../addon/facebook/facebook.php:495 -#: ../../addon/fbpost/fbpost.php:144 ../../addon/impressum/impressum.php:78 -#: ../../addon/openstreetmap/openstreetmap.php:80 -#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105 -#: ../../addon/twitter/twitter.php:389 -msgid "Settings updated." -msgstr "Impostazioni aggiornate." - -#: ../../mod/settings.php:542 ../../mod/settings.php:568 -#: ../../mod/settings.php:604 -msgid "Add application" -msgstr "Aggiungi applicazione" - -#: ../../mod/settings.php:546 ../../mod/settings.php:572 -#: ../../addon/statusnet/statusnet.php:570 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: ../../mod/settings.php:547 ../../mod/settings.php:573 -#: ../../addon/statusnet/statusnet.php:569 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: ../../mod/settings.php:548 ../../mod/settings.php:574 -msgid "Redirect" -msgstr "Redirect" - -#: ../../mod/settings.php:549 ../../mod/settings.php:575 -msgid "Icon url" -msgstr "Url icona" - -#: ../../mod/settings.php:560 -msgid "You can't edit this application." -msgstr "Non puoi modificare questa applicazione." - -#: ../../mod/settings.php:603 -msgid "Connected Apps" -msgstr "Applicazioni Collegate" - -#: ../../mod/settings.php:607 -msgid "Client key starts with" -msgstr "Chiave del client inizia con" - -#: ../../mod/settings.php:608 -msgid "No name" -msgstr "Nessun nome" - -#: ../../mod/settings.php:609 -msgid "Remove authorization" -msgstr "Rimuovi l'autorizzazione" - -#: ../../mod/settings.php:620 -msgid "No Plugin settings configured" -msgstr "Nessun plugin ha impostazioni modificabili" - -#: ../../mod/settings.php:628 ../../addon/widgets/widgets.php:123 -msgid "Plugin Settings" -msgstr "Impostazioni plugin" - -#: ../../mod/settings.php:640 ../../mod/settings.php:641 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Il supporto integrato per la connettività con %s è %s" - -#: ../../mod/settings.php:640 ../../mod/settings.php:641 -msgid "enabled" -msgstr "abilitato" - -#: ../../mod/settings.php:640 ../../mod/settings.php:641 -msgid "disabled" -msgstr "disabilitato" - -#: ../../mod/settings.php:641 -msgid "StatusNet" -msgstr "StatusNet" - -#: ../../mod/settings.php:673 -msgid "Email access is disabled on this site." -msgstr "L'accesso email è disabilitato su questo sito." - -#: ../../mod/settings.php:679 -msgid "Connector Settings" -msgstr "Impostazioni Connettore" - -#: ../../mod/settings.php:684 -msgid "Email/Mailbox Setup" -msgstr "Impostazioni email" - -#: ../../mod/settings.php:685 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)" - -#: ../../mod/settings.php:686 -msgid "Last successful email check:" -msgstr "Ultimo controllo email eseguito con successo:" - -#: ../../mod/settings.php:688 -msgid "IMAP server name:" -msgstr "Nome server IMAP:" - -#: ../../mod/settings.php:689 -msgid "IMAP port:" -msgstr "Porta IMAP:" - -#: ../../mod/settings.php:690 -msgid "Security:" -msgstr "Sicurezza:" - -#: ../../mod/settings.php:690 ../../mod/settings.php:695 -#: ../../addon/dav/common/wdcal_edit.inc.php:191 -msgid "None" -msgstr "Nessuna" - -#: ../../mod/settings.php:691 -msgid "Email login name:" -msgstr "Nome utente email:" - -#: ../../mod/settings.php:692 -msgid "Email password:" -msgstr "Password email:" - -#: ../../mod/settings.php:693 -msgid "Reply-to address:" -msgstr "Indirizzo di risposta:" - -#: ../../mod/settings.php:694 -msgid "Send public posts to all email contacts:" -msgstr "Invia i messaggi pubblici ai contatti email:" - -#: ../../mod/settings.php:695 -msgid "Action after import:" -msgstr "Azione post importazione:" - -#: ../../mod/settings.php:695 -msgid "Mark as seen" -msgstr "Segna come letto" - -#: ../../mod/settings.php:695 -msgid "Move to folder" -msgstr "Sposta nella cartella" - -#: ../../mod/settings.php:696 -msgid "Move to folder:" -msgstr "Sposta nella cartella:" - -#: ../../mod/settings.php:727 ../../mod/admin.php:402 -msgid "No special theme for mobile devices" -msgstr "" - -#: ../../mod/settings.php:767 -msgid "Display Settings" -msgstr "Impostazioni Grafiche" - -#: ../../mod/settings.php:773 ../../mod/settings.php:784 -msgid "Display Theme:" -msgstr "Tema:" - -#: ../../mod/settings.php:774 -msgid "Mobile Theme:" -msgstr "" - -#: ../../mod/settings.php:775 -msgid "Update browser every xx seconds" -msgstr "Aggiorna il browser ogni x secondi" - -#: ../../mod/settings.php:775 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimo 10 secondi, nessun limite massimo" - -#: ../../mod/settings.php:776 -msgid "Number of items to display per page:" -msgstr "" - -#: ../../mod/settings.php:776 -msgid "Maximum of 100 items" -msgstr "Massimo 100 voci" - -#: ../../mod/settings.php:777 -msgid "Don't show emoticons" -msgstr "Non mostrare le emoticons" - -#: ../../mod/settings.php:853 -msgid "Normal Account Page" -msgstr "" - -#: ../../mod/settings.php:854 -msgid "This account is a normal personal profile" -msgstr "Questo account è un normale profilo personale" - -#: ../../mod/settings.php:857 -msgid "Soapbox Page" -msgstr "" - -#: ../../mod/settings.php:858 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà solamente leggere la bacheca" - -#: ../../mod/settings.php:861 -msgid "Community Forum/Celebrity Account" -msgstr "" - -#: ../../mod/settings.php:862 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà leggere e scrivere sulla bacheca" - -#: ../../mod/settings.php:865 -msgid "Automatic Friend Page" -msgstr "" - -#: ../../mod/settings.php:866 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico" - -#: ../../mod/settings.php:869 -msgid "Private Forum [Experimental]" -msgstr "" - -#: ../../mod/settings.php:870 -msgid "Private forum - approved members only" -msgstr "" - -#: ../../mod/settings.php:882 -msgid "OpenID:" -msgstr "OpenID:" - -#: ../../mod/settings.php:882 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID" - -#: ../../mod/settings.php:892 -msgid "Publish your default profile in your local site directory?" -msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito" - -#: ../../mod/settings.php:898 -msgid "Publish your default profile in the global social directory?" -msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale" - -#: ../../mod/settings.php:906 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito" - -#: ../../mod/settings.php:910 -msgid "Hide your profile details from unknown viewers?" -msgstr "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?" - -#: ../../mod/settings.php:915 -msgid "Allow friends to post to your profile page?" -msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?" - -#: ../../mod/settings.php:921 -msgid "Allow friends to tag your posts?" -msgstr "Permetti agli amici di taggare i tuoi messaggi?" - -#: ../../mod/settings.php:927 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Ci permetti di suggerirti come potenziale amico ai nuovi membri?" - -#: ../../mod/settings.php:933 -msgid "Permit unknown people to send you private mail?" -msgstr "Permetti a utenti sconosciuti di inviarti messaggi privati?" - -#: ../../mod/settings.php:941 -msgid "Profile is not published." -msgstr "Il profilo non è pubblicato." - -#: ../../mod/settings.php:944 ../../mod/profile_photo.php:248 -msgid "or" -msgstr "o" - -#: ../../mod/settings.php:949 -msgid "Your Identity Address is" -msgstr "L'indirizzo della tua identità è" - -#: ../../mod/settings.php:960 -msgid "Automatically expire posts after this many days:" -msgstr "Fai scadere i post automaticamente dopo x giorni:" - -#: ../../mod/settings.php:960 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Se lasciato vuoto, i messaggi non verranno cancellati." - -#: ../../mod/settings.php:961 -msgid "Advanced expiration settings" -msgstr "Impostazioni avanzate di scandenza" - -#: ../../mod/settings.php:962 -msgid "Advanced Expiration" -msgstr "Scadenza avanzata" - -#: ../../mod/settings.php:963 -msgid "Expire posts:" -msgstr "Fai scadere i post:" - -#: ../../mod/settings.php:964 -msgid "Expire personal notes:" -msgstr "Fai scadere le Note personali:" - -#: ../../mod/settings.php:965 -msgid "Expire starred posts:" -msgstr "Fai scadere i post Speciali:" - -#: ../../mod/settings.php:966 -msgid "Expire photos:" -msgstr "Fai scadere le foto:" - -#: ../../mod/settings.php:967 -msgid "Only expire posts by others:" -msgstr "" - -#: ../../mod/settings.php:974 -msgid "Account Settings" -msgstr "Impostazioni account" - -#: ../../mod/settings.php:982 -msgid "Password Settings" -msgstr "Impostazioni password" - -#: ../../mod/settings.php:983 -msgid "New Password:" -msgstr "Nuova password:" - -#: ../../mod/settings.php:984 -msgid "Confirm:" -msgstr "Conferma:" - -#: ../../mod/settings.php:984 -msgid "Leave password fields blank unless changing" -msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password" - -#: ../../mod/settings.php:988 -msgid "Basic Settings" -msgstr "Impostazioni base" - -#: ../../mod/settings.php:989 ../../include/profile_advanced.php:15 -msgid "Full Name:" -msgstr "Nome completo:" - -#: ../../mod/settings.php:990 -msgid "Email Address:" -msgstr "Indirizzo Email:" - -#: ../../mod/settings.php:991 -msgid "Your Timezone:" -msgstr "Il tuo fuso orario:" - -#: ../../mod/settings.php:992 -msgid "Default Post Location:" -msgstr "Località predefinita:" - -#: ../../mod/settings.php:993 -msgid "Use Browser Location:" -msgstr "Usa la località rilevata dal browser:" - -#: ../../mod/settings.php:996 -msgid "Security and Privacy Settings" -msgstr "Impostazioni di sicurezza e privacy" - -#: ../../mod/settings.php:998 -msgid "Maximum Friend Requests/Day:" -msgstr "Numero massimo di richieste di amicizia al giorno:" - -#: ../../mod/settings.php:998 ../../mod/settings.php:1017 -msgid "(to prevent spam abuse)" -msgstr "(per prevenire lo spam)" - -#: ../../mod/settings.php:999 -msgid "Default Post Permissions" -msgstr "Permessi predefiniti per i messaggi" - -#: ../../mod/settings.php:1000 -msgid "(click to open/close)" -msgstr "(clicca per aprire/chiudere)" - -#: ../../mod/settings.php:1017 -msgid "Maximum private messages per day from unknown people:" -msgstr "Numero massimo di messaggi privati da utenti sconosciuti per giorno:" - -#: ../../mod/settings.php:1020 -msgid "Notification Settings" -msgstr "Impostazioni notifiche" - -#: ../../mod/settings.php:1021 -msgid "By default post a status message when:" -msgstr "" - -#: ../../mod/settings.php:1022 -msgid "accepting a friend request" -msgstr "" - -#: ../../mod/settings.php:1023 -msgid "joining a forum/community" -msgstr "" - -#: ../../mod/settings.php:1024 -msgid "making an interesting profile change" -msgstr "" - -#: ../../mod/settings.php:1025 -msgid "Send a notification email when:" -msgstr "Invia una mail di notifica quando:" - -#: ../../mod/settings.php:1026 -msgid "You receive an introduction" -msgstr "Ricevi una presentazione" - -#: ../../mod/settings.php:1027 -msgid "Your introductions are confirmed" -msgstr "Le tue presentazioni sono confermate" - -#: ../../mod/settings.php:1028 -msgid "Someone writes on your profile wall" -msgstr "Qualcuno scrive sulla bacheca del tuo profilo" - -#: ../../mod/settings.php:1029 -msgid "Someone writes a followup comment" -msgstr "Qualcuno scrive un commento a un tuo messaggio" - -#: ../../mod/settings.php:1030 -msgid "You receive a private message" -msgstr "Ricevi un messaggio privato" - -#: ../../mod/settings.php:1031 -msgid "You receive a friend suggestion" -msgstr "Hai ricevuto un suggerimento di amicizia" - -#: ../../mod/settings.php:1032 -msgid "You are tagged in a post" -msgstr "Sei stato taggato in un post" - -#: ../../mod/settings.php:1033 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: ../../mod/settings.php:1036 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: ../../mod/settings.php:1037 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: ../../mod/manage.php:91 -msgid "Manage Identities and/or Pages" -msgstr "Gestisci indentità e/o pagine" - -#: ../../mod/manage.php:94 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione" - -#: ../../mod/manage.php:96 -msgid "Select an identity to manage: " -msgstr "Seleziona un'identità da gestire:" - -#: ../../mod/network.php:97 -msgid "Search Results For:" -msgstr "Cerca risultati per:" - -#: ../../mod/network.php:137 ../../mod/search.php:16 -msgid "Remove term" -msgstr "Rimuovi termine" - -#: ../../mod/network.php:146 ../../mod/search.php:13 -msgid "Saved Searches" -msgstr "Ricerche salvate" - -#: ../../mod/network.php:147 ../../include/group.php:244 -msgid "add" -msgstr "aggiungi" - -#: ../../mod/network.php:287 -msgid "Commented Order" -msgstr "Ordina per commento" - -#: ../../mod/network.php:290 -msgid "Sort by Comment Date" -msgstr "" - -#: ../../mod/network.php:293 -msgid "Posted Order" -msgstr "Ordina per invio" - -#: ../../mod/network.php:296 -msgid "Sort by Post Date" -msgstr "" - -#: ../../mod/network.php:303 -msgid "Posts that mention or involve you" -msgstr "" - -#: ../../mod/network.php:306 -msgid "New" -msgstr "Nuovo" - -#: ../../mod/network.php:309 -msgid "Activity Stream - by date" -msgstr "" - -#: ../../mod/network.php:312 -msgid "Starred" -msgstr "Preferiti" - -#: ../../mod/network.php:315 -msgid "Favourite Posts" -msgstr "" - -#: ../../mod/network.php:318 -msgid "Shared Links" -msgstr "Links condivisi" - -#: ../../mod/network.php:321 -msgid "Interesting Links" -msgstr "" - -#: ../../mod/network.php:388 -#, php-format -msgid "Warning: This group contains %s member from an insecure network." -msgid_plural "" -"Warning: This group contains %s members from an insecure network." -msgstr[0] "Attenzione: questo gruppo contiene %s membro da un network insicuro." -msgstr[1] "Attenzione: questo gruppo contiene %s membri da un network insicuro." - -#: ../../mod/network.php:391 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente." - -#: ../../mod/network.php:461 -msgid "Contact: " -msgstr "Contatto:" - -#: ../../mod/network.php:463 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente." - -#: ../../mod/network.php:468 -msgid "Invalid contact." -msgstr "Contatto non valido." - -#: ../../mod/notes.php:44 ../../boot.php:1696 -msgid "Personal Notes" -msgstr "Note personali" - -#: ../../mod/notes.php:63 ../../mod/filer.php:30 -#: ../../addon/facebook/facebook.php:770 -#: ../../addon/privacy_image_cache/privacy_image_cache.php:263 -#: ../../addon/fbpost/fbpost.php:267 -#: ../../addon/dav/friendica/layout.fnk.php:441 -#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:681 -msgid "Save" -msgstr "Salva" - -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Numero giornaliero di messaggi per %s superato. Invio fallito." - -#: ../../mod/wallmessage.php:56 ../../mod/message.php:59 -msgid "No recipient selected." -msgstr "Nessun destinatario selezionato." - -#: ../../mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "" - -#: ../../mod/wallmessage.php:62 ../../mod/message.php:66 -msgid "Message could not be sent." -msgstr "Il messaggio non puo' essere inviato." - -#: ../../mod/wallmessage.php:65 ../../mod/message.php:69 -msgid "Message collection failure." -msgstr "Errore recuperando il messaggio." - -#: ../../mod/wallmessage.php:68 ../../mod/message.php:72 -msgid "Message sent." -msgstr "Messaggio inviato." - -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Nessun destinatario." - -#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131 -#: ../../mod/message.php:242 ../../mod/message.php:250 -#: ../../include/conversation.php:833 ../../include/conversation.php:850 -msgid "Please enter a link URL:" -msgstr "Inserisci l'indirizzo del link:" - -#: ../../mod/wallmessage.php:138 ../../mod/message.php:278 -msgid "Send Private Message" -msgstr "Invia un messaggio privato" - -#: ../../mod/wallmessage.php:139 -#, php-format -msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti." - -#: ../../mod/wallmessage.php:140 ../../mod/message.php:279 -#: ../../mod/message.php:469 -msgid "To:" -msgstr "A:" - -#: ../../mod/wallmessage.php:141 ../../mod/message.php:284 -#: ../../mod/message.php:471 -msgid "Subject:" -msgstr "Oggetto:" - -#: ../../mod/wallmessage.php:147 ../../mod/message.php:288 -#: ../../mod/message.php:474 ../../mod/invite.php:113 -msgid "Your message:" -msgstr "Il tuo messaggio:" - -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Benvenuto su Friendica" - -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Cose da fare per i Nuovi Utenti" - -#: ../../mod/newmember.php:12 -msgid "" -"We would like to offer some tips and links to help make your experience " -"enjoyable. Click any item to visit the relevant page. A link to this page " -"will be visible from your home page for two weeks after your initial " -"registration and then will quietly disappear." -msgstr "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione." - -#: ../../mod/newmember.php:14 -msgid "Getting Started" -msgstr "" - -#: ../../mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "" - -#: ../../mod/newmember.php:18 -msgid "" -"On your Quick Start page - find a brief introduction to your " -"profile and network tabs, make some new connections, and find some groups to" -" join." -msgstr "" - -#: ../../mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "" - -#: ../../mod/newmember.php:26 -msgid "" -"On your Settings page - change your initial password. Also make a " -"note of your Identity Address. This looks just like an email address - and " -"will be useful in making friends on the free social web." -msgstr "Nella tua pagina Impostazioni - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero." - -#: ../../mod/newmember.php:28 -msgid "" -"Review the other settings, particularly the privacy settings. An unpublished" -" directory listing is like having an unlisted phone number. In general, you " -"should probably publish your listing - unless all of your friends and " -"potential friends know exactly how to find you." -msgstr "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti." - -#: ../../mod/newmember.php:32 ../../mod/profperm.php:103 -#: ../../view/theme/diabook/theme.php:128 ../../include/profile_advanced.php:7 -#: ../../include/profile_advanced.php:84 ../../include/nav.php:50 -#: ../../boot.php:1672 -msgid "Profile" -msgstr "Profilo" - -#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 -msgid "Upload Profile Photo" -msgstr "Carica la foto del profilo" - -#: ../../mod/newmember.php:36 -msgid "" -"Upload a profile photo if you have not done so already. Studies have shown " -"that people with real photos of themselves are ten times more likely to make" -" friends than people who do not." -msgstr "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno." - -#: ../../mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "" - -#: ../../mod/newmember.php:38 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown" -" visitors." -msgstr "Modifica il tuo profilo predefinito a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti." - -#: ../../mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "" - -#: ../../mod/newmember.php:40 -msgid "" -"Set some public keywords for your default profile which describe your " -"interests. We may be able to find other people with similar interests and " -"suggest friendships." -msgstr "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie." - -#: ../../mod/newmember.php:44 -msgid "Connecting" -msgstr "" - -#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 -#: ../../addon/facebook/facebook.php:728 ../../addon/fbpost/fbpost.php:239 -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" - -#: ../../mod/newmember.php:49 -msgid "" -"Authorise the Facebook Connector if you currently have a Facebook account " -"and we will (optionally) import all your Facebook friends and conversations." -msgstr "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook." - -#: ../../mod/newmember.php:51 -msgid "" -"If this is your own personal server, installing the Facebook addon " -"may ease your transition to the free social web." -msgstr "SeAdd New Contact dialog." -msgstr "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo Aggiungi Nuovo Contatto" - -#: ../../mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "" - -#: ../../mod/newmember.php:60 -msgid "" -"The Directory page lets you find other people in this network or other " -"federated sites. Look for a Connect or Follow link on " -"their profile page. Provide your own Identity Address if requested." -msgstr "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link Connetti o Segui nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto." - -#: ../../mod/newmember.php:62 -msgid "Finding New People" -msgstr "" - -#: ../../mod/newmember.php:62 -msgid "" -"On the side panel of the Contacts page are several tools to find new " -"friends. We can match people by interest, look up people by name or " -"interest, and provide suggestions based on network relationships. On a brand" -" new site, friend suggestions will usually begin to be populated within 24 " -"hours." -msgstr "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore." - -#: ../../mod/newmember.php:66 ../../include/group.php:239 -msgid "Groups" -msgstr "Grouppi" - -#: ../../mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "" - -#: ../../mod/newmember.php:70 -msgid "" -"Once you have made some friends, organize them into private conversation " -"groups from the sidebar of your Contacts page and then you can interact with" -" each group privately on your Network page." -msgstr "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete" - -#: ../../mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "" - -#: ../../mod/newmember.php:73 -msgid "" -"Friendica respects your privacy. By default, your posts will only show up to" -" people you've added as friends. For more information, see the help section " -"from the link above." -msgstr "" - -#: ../../mod/newmember.php:78 -msgid "Getting Help" -msgstr "" - -#: ../../mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "" - -#: ../../mod/newmember.php:82 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse." - -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Oggetto non disponibile." - -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Oggetto non trovato." - -#: ../../mod/group.php:29 -msgid "Group created." -msgstr "Gruppo creato." - -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "Impossibile creare il gruppo." - -#: ../../mod/group.php:47 ../../mod/group.php:137 -msgid "Group not found." -msgstr "Gruppo non trovato." - -#: ../../mod/group.php:60 -msgid "Group name changed." -msgstr "Il nome del gruppo è cambiato." - -#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:316 -msgid "Permission denied" -msgstr "Permesso negato" - -#: ../../mod/group.php:90 -msgid "Create a group of contacts/friends." -msgstr "Crea un gruppo di amici/contatti." - -#: ../../mod/group.php:91 ../../mod/group.php:177 -msgid "Group Name: " -msgstr "Nome del gruppo:" - -#: ../../mod/group.php:110 -msgid "Group removed." -msgstr "Gruppo rimosso." - -#: ../../mod/group.php:112 -msgid "Unable to remove group." -msgstr "Impossibile rimuovere il gruppo." - -#: ../../mod/group.php:176 -msgid "Group Editor" -msgstr "Modifica gruppo" - -#: ../../mod/group.php:189 -msgid "Members" -msgstr "Membri" - -#: ../../mod/group.php:221 ../../mod/profperm.php:105 -msgid "Click on a contact to add or remove." -msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." - -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Indentificativo del profilo non valido." - -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Modifica visibilità del profilo" - -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Visibile a" - -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Tutti i contatti (con profilo ad accesso sicuro)" - -#: ../../mod/viewconnections.php:39 -msgid "No contacts." -msgstr "Nessun contatto." - -#: ../../mod/viewconnections.php:76 ../../include/text.php:618 -msgid "View Contacts" -msgstr "Visualizza i contatti" - -#: ../../mod/register.php:88 ../../mod/regmod.php:52 -#, php-format -msgid "Registration details for %s" -msgstr "Dettagli della registrazione di %s" - -#: ../../mod/register.php:96 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registrazione completata. Controlla la tua mail per ulteriori informazioni." - -#: ../../mod/register.php:100 -msgid "Failed to send email message. Here is the message that failed." -msgstr "Errore nell'invio del messaggio email. Questo è il messaggio non inviato." - -#: ../../mod/register.php:105 -msgid "Your registration can not be processed." -msgstr "La tua registrazione non puo' essere elaborata." - -#: ../../mod/register.php:142 -#, php-format -msgid "Registration request at %s" -msgstr "Richiesta di registrazione su %s" - -#: ../../mod/register.php:151 -msgid "Your registration is pending approval by the site owner." -msgstr "La tua richiesta è in attesa di approvazione da parte del prorietario del sito." - -#: ../../mod/register.php:189 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." - -#: ../../mod/register.php:217 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'." - -#: ../../mod/register.php:218 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera." - -#: ../../mod/register.php:219 -msgid "Your OpenID (optional): " -msgstr "Il tuo OpenID (opzionale): " - -#: ../../mod/register.php:233 -msgid "Include your profile in member directory?" -msgstr "Includi il tuo profilo nell'elenco pubblico?" - -#: ../../mod/register.php:255 -msgid "Membership on this site is by invitation only." -msgstr "La registrazione su questo sito è solo su invito." - -#: ../../mod/register.php:256 -msgid "Your invitation ID: " -msgstr "L'ID del tuo invito:" - -#: ../../mod/register.php:259 ../../mod/admin.php:444 -msgid "Registration" -msgstr "Registrazione" - -#: ../../mod/register.php:267 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Il tuo nome completo (es. Mario Rossi): " - -#: ../../mod/register.php:268 -msgid "Your Email Address: " -msgstr "Il tuo indirizzo email: " - -#: ../../mod/register.php:269 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@$sitename'." - -#: ../../mod/register.php:270 -msgid "Choose a nickname: " -msgstr "Scegli un nome utente: " - -#: ../../mod/register.php:273 ../../include/nav.php:81 ../../boot.php:887 -msgid "Register" -msgstr "Registrati" - -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Cerca persone" - -#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/tagger.php:62 -#: ../../addon/facebook/facebook.php:1598 -#: ../../addon/communityhome/communityhome.php:158 -#: ../../addon/communityhome/communityhome.php:167 -#: ../../view/theme/diabook/theme.php:565 -#: ../../view/theme/diabook/theme.php:574 ../../include/diaspora.php:1824 -#: ../../include/conversation.php:120 ../../include/conversation.php:129 -#: ../../include/conversation.php:248 ../../include/conversation.php:257 -msgid "status" -msgstr "stato" - -#: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1602 -#: ../../addon/communityhome/communityhome.php:172 -#: ../../view/theme/diabook/theme.php:579 ../../include/diaspora.php:1840 -#: ../../include/conversation.php:136 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s piace %3$s di %2$s" - -#: ../../mod/like.php:164 ../../include/conversation.php:139 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "A %1$s non piace %3$s di %2$s" - -#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159 -#: ../../mod/admin.php:734 ../../mod/admin.php:933 ../../mod/display.php:29 -#: ../../mod/display.php:145 ../../include/items.php:3779 -msgid "Item not found." -msgstr "Elemento non trovato." - -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Accesso negato." - -#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:130 -#: ../../include/nav.php:51 ../../boot.php:1679 -msgid "Photos" -msgstr "Foto" - -#: ../../mod/fbrowser.php:96 -msgid "Files" -msgstr "" - -#: ../../mod/regmod.php:61 -msgid "Account approved." -msgstr "Account approvato." - -#: ../../mod/regmod.php:98 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrazione revocata per %s" - -#: ../../mod/regmod.php:110 -msgid "Please login." -msgstr "Accedi." - -#: ../../mod/item.php:91 -msgid "Unable to locate original post." -msgstr "Impossibile trovare il messaggio originale." - -#: ../../mod/item.php:275 -msgid "Empty post discarded." -msgstr "Messaggio vuoto scartato." - -#: ../../mod/item.php:407 ../../mod/wall_upload.php:133 -#: ../../mod/wall_upload.php:142 ../../mod/wall_upload.php:149 -#: ../../include/message.php:144 -msgid "Wall Photos" -msgstr "Foto della bacheca" - -#: ../../mod/item.php:820 -msgid "System error. Post not saved." -msgstr "Errore di sistema. Messaggio non salvato." - -#: ../../mod/item.php:845 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica." - -#: ../../mod/item.php:847 -#, php-format -msgid "You may visit them online at %s" -msgstr "Puoi visitarli online su %s" - -#: ../../mod/item.php:848 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi." - -#: ../../mod/item.php:850 -#, php-format -msgid "%s posted an update." -msgstr "%s ha inviato un aggiornamento." - -#: ../../mod/mood.php:62 ../../include/conversation.php:226 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "" - -#: ../../mod/mood.php:133 -msgid "Mood" -msgstr "" - -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "" - -#: ../../mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." - -#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 -#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Il ridimensionamento del'immagine [%s] è fallito." - -#: ../../mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente." - -#: ../../mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Impossibile elaborare l'immagine" - -#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:88 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "La dimensione dell'immagine supera il limite di %d" - -#: ../../mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Carica un file:" - -#: ../../mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "" - -#: ../../mod/profile_photo.php:245 -#: ../../addon/dav/friendica/layout.fnk.php:152 -msgid "Upload" -msgstr "Carica" - -#: ../../mod/profile_photo.php:248 -msgid "skip this step" -msgstr "salta questo passaggio" - -#: ../../mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "seleziona una foto dai tuoi album" - -#: ../../mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Ritaglia immagine" - -#: ../../mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Ritaglia l'imagine per una visualizzazione migliore." - -#: ../../mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Finito" - -#: ../../mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Immagine caricata con successo." - -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Nessun profilo" - -#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 -msgid "Remove My Account" -msgstr "Rimuovi il mio account" - -#: ../../mod/removeme.php:46 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo." - -#: ../../mod/removeme.php:47 -msgid "Please enter your password for verification:" -msgstr "Inserisci la tua password per verifica:" - -#: ../../mod/message.php:9 ../../include/nav.php:131 -msgid "New Message" -msgstr "Nuovo messaggio" - -#: ../../mod/message.php:63 -msgid "Unable to locate contact information." -msgstr "Impossibile trovare le informazioni del contatto." - -#: ../../mod/message.php:191 -msgid "Message deleted." -msgstr "Messaggio eliminato." - -#: ../../mod/message.php:221 -msgid "Conversation removed." -msgstr "Conversazione rimossa." - -#: ../../mod/message.php:327 -msgid "No messages." -msgstr "Nessun messaggio." - -#: ../../mod/message.php:334 -#, php-format -msgid "Unknown sender - %s" -msgstr "Mittente sconosciuto - %s" - -#: ../../mod/message.php:337 -#, php-format -msgid "You and %s" -msgstr "Tu e %s" - -#: ../../mod/message.php:340 -#, php-format -msgid "%s and You" -msgstr "" - -#: ../../mod/message.php:350 ../../mod/message.php:462 -msgid "Delete conversation" -msgstr "Elimina la conversazione" - -#: ../../mod/message.php:353 -msgid "D, d M Y - g:i A" -msgstr "D d M Y - G:i" - -#: ../../mod/message.php:356 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d messaggio" -msgstr[1] "%d messaggi" - -#: ../../mod/message.php:391 -msgid "Message not available." -msgstr "Messaggio non disponibile." - -#: ../../mod/message.php:444 -msgid "Delete message" -msgstr "Elimina il messaggio" - -#: ../../mod/message.php:464 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente." - -#: ../../mod/message.php:468 -msgid "Send Reply" -msgstr "Invia la risposta" - -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "Amici di %s" - -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Nessun amico da visualizzare." - -#: ../../mod/admin.php:55 -msgid "Theme settings updated." -msgstr "" - -#: ../../mod/admin.php:96 ../../mod/admin.php:442 -msgid "Site" -msgstr "Sito" - -#: ../../mod/admin.php:97 ../../mod/admin.php:688 ../../mod/admin.php:701 -msgid "Users" -msgstr "Utenti" - -#: ../../mod/admin.php:98 ../../mod/admin.php:783 ../../mod/admin.php:825 -msgid "Plugins" -msgstr "Plugin" - -#: ../../mod/admin.php:99 ../../mod/admin.php:988 ../../mod/admin.php:1024 -msgid "Themes" -msgstr "Temi" - -#: ../../mod/admin.php:100 -msgid "DB updates" -msgstr "" - -#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1111 -msgid "Logs" -msgstr "Log" - -#: ../../mod/admin.php:120 ../../include/nav.php:146 -msgid "Admin" -msgstr "Amministrazione" - -#: ../../mod/admin.php:121 -msgid "Plugin Features" -msgstr "" - -#: ../../mod/admin.php:123 -msgid "User registrations waiting for confirmation" -msgstr "Utenti registrati in attesa di conferma" - -#: ../../mod/admin.php:183 ../../mod/admin.php:669 -msgid "Normal Account" -msgstr "Account normale" - -#: ../../mod/admin.php:184 ../../mod/admin.php:670 -msgid "Soapbox Account" -msgstr "Account per comunicati e annunci" - -#: ../../mod/admin.php:185 ../../mod/admin.php:671 -msgid "Community/Celebrity Account" -msgstr "Account per celebrità o per comunità" - -#: ../../mod/admin.php:186 ../../mod/admin.php:672 -msgid "Automatic Friend Account" -msgstr "Account per amicizia automatizzato" - -#: ../../mod/admin.php:187 -msgid "Blog Account" -msgstr "" - -#: ../../mod/admin.php:188 -msgid "Private Forum" -msgstr "" - -#: ../../mod/admin.php:207 -msgid "Message queues" -msgstr "" - -#: ../../mod/admin.php:212 ../../mod/admin.php:441 ../../mod/admin.php:687 -#: ../../mod/admin.php:782 ../../mod/admin.php:824 ../../mod/admin.php:987 -#: ../../mod/admin.php:1023 ../../mod/admin.php:1110 -msgid "Administration" -msgstr "Amministrazione" - -#: ../../mod/admin.php:213 -msgid "Summary" -msgstr "Sommario" - -#: ../../mod/admin.php:215 -msgid "Registered users" -msgstr "Utenti registrati" - -#: ../../mod/admin.php:217 -msgid "Pending registrations" -msgstr "Registrazioni in attesa" - -#: ../../mod/admin.php:218 -msgid "Version" -msgstr "Versione" - -#: ../../mod/admin.php:220 -msgid "Active plugins" -msgstr "Plugin attivi" - -#: ../../mod/admin.php:373 -msgid "Site settings updated." -msgstr "Impostazioni del sito aggiornate." - -#: ../../mod/admin.php:428 -msgid "Closed" -msgstr "Chiusa" - -#: ../../mod/admin.php:429 -msgid "Requires approval" -msgstr "Richiede l'approvazione" - -#: ../../mod/admin.php:430 -msgid "Open" -msgstr "Aperta" - -#: ../../mod/admin.php:434 -msgid "No SSL policy, links will track page SSL state" -msgstr "" - -#: ../../mod/admin.php:435 -msgid "Force all links to use SSL" -msgstr "Forza tutti i linki ad usare SSL" - -#: ../../mod/admin.php:436 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "" - -#: ../../mod/admin.php:445 -msgid "File upload" -msgstr "Caricamento file" - -#: ../../mod/admin.php:446 -msgid "Policies" -msgstr "Politiche" - -#: ../../mod/admin.php:447 -msgid "Advanced" -msgstr "Avanzate" - -#: ../../mod/admin.php:451 ../../addon/statusnet/statusnet.php:567 -msgid "Site name" -msgstr "Nome del sito" - -#: ../../mod/admin.php:452 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: ../../mod/admin.php:453 -msgid "System language" -msgstr "Lingua di sistema" - -#: ../../mod/admin.php:454 -msgid "System theme" -msgstr "Tema di sistema" - -#: ../../mod/admin.php:454 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "" - -#: ../../mod/admin.php:455 -msgid "Mobile system theme" -msgstr "" - -#: ../../mod/admin.php:455 -msgid "Theme for mobile devices" -msgstr "" - -#: ../../mod/admin.php:456 -msgid "SSL link policy" -msgstr "" - -#: ../../mod/admin.php:456 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "" - -#: ../../mod/admin.php:457 -msgid "Maximum image size" -msgstr "Massima dimensione immagini" - -#: ../../mod/admin.php:457 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." - -#: ../../mod/admin.php:458 -msgid "Maximum image length" -msgstr "" - -#: ../../mod/admin.php:458 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "" - -#: ../../mod/admin.php:459 -msgid "JPEG image quality" -msgstr "" - -#: ../../mod/admin.php:459 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "" - -#: ../../mod/admin.php:461 -msgid "Register policy" -msgstr "Politica di registrazione" - -#: ../../mod/admin.php:462 -msgid "Register text" -msgstr "Testo registrazione" - -#: ../../mod/admin.php:462 -msgid "Will be displayed prominently on the registration page." -msgstr "Sarà mostrato ben visibile nella pagina di registrazione." - -#: ../../mod/admin.php:463 -msgid "Accounts abandoned after x days" -msgstr "Account abbandonati dopo x giorni" - -#: ../../mod/admin.php:463 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo." - -#: ../../mod/admin.php:464 -msgid "Allowed friend domains" -msgstr "Domini amici consentiti" - -#: ../../mod/admin.php:464 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." +#: ../../include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Asessuato" -#: ../../mod/admin.php:465 -msgid "Allowed email domains" -msgstr "Domini email consentiti" +#: ../../include/profile_selectors.php:42 +msgid "Single" +msgstr "Single" -#: ../../mod/admin.php:465 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." +#: ../../include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Da solo" -#: ../../mod/admin.php:466 -msgid "Block public" -msgstr "Blocca pagine pubbliche" +#: ../../include/profile_selectors.php:42 +msgid "Available" +msgstr "Disponibile" -#: ../../mod/admin.php:466 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato." +#: ../../include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Non disponibile" -#: ../../mod/admin.php:467 -msgid "Force publish" -msgstr "Forza publicazione" +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "Ha una cotta" -#: ../../mod/admin.php:467 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Seleziona per forzare tutti i profili di questo sito ad essere compresi nell'elenco di questo sito." +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "Infatuato/a" -#: ../../mod/admin.php:468 -msgid "Global directory update URL" -msgstr "URL aggiornamento Elenco Globale" +#: ../../include/profile_selectors.php:42 +msgid "Dating" +msgstr "Disponibile a un incontro" -#: ../../mod/admin.php:468 -msgid "" -"URL to update the global directory. If this is not set, the global directory" -" is completely unavailable to the application." -msgstr "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato." +#: ../../include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Infedele" -#: ../../mod/admin.php:469 -msgid "Allow threaded items" -msgstr "" +#: ../../include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Sesso-dipendente" -#: ../../mod/admin.php:469 -msgid "Allow infinite level threading for items on this site." -msgstr "" +#: ../../include/profile_selectors.php:42 ../../include/identity.php:224 +#: ../../mod/network.php:364 ../../mod/connections.php:368 +msgid "Friends" +msgstr "Amici" -#: ../../mod/admin.php:470 -msgid "Private posts by default for new users" -msgstr "" +#: ../../include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Amici piccanti" -#: ../../mod/admin.php:470 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "" +#: ../../include/profile_selectors.php:42 +msgid "Casual" +msgstr "Casual" -#: ../../mod/admin.php:472 -msgid "Block multiple registrations" -msgstr "Blocca registrazioni multiple" +#: ../../include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Impegnato" -#: ../../mod/admin.php:472 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Non permette all'utente di registrare account extra da usare come pagine." +#: ../../include/profile_selectors.php:42 +msgid "Married" +msgstr "Sposato/a" -#: ../../mod/admin.php:473 -msgid "OpenID support" -msgstr "Supporto OpenID" +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "Sogna il matrimonio" -#: ../../mod/admin.php:473 -msgid "OpenID support for registration and logins." -msgstr "Supporta OpenID per la registrazione e il login" +#: ../../include/profile_selectors.php:42 +msgid "Partners" +msgstr "Partner" -#: ../../mod/admin.php:474 -msgid "Fullname check" -msgstr "Controllo nome completo" +#: ../../include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "Convivente" -#: ../../mod/admin.php:474 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam" +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "Matrimonio regolare" -#: ../../mod/admin.php:475 -msgid "UTF-8 Regular expressions" -msgstr "Espressioni regolari UTF-8" +#: ../../include/profile_selectors.php:42 +msgid "Happy" +msgstr "Felice" -#: ../../mod/admin.php:475 -msgid "Use PHP UTF8 regular expressions" -msgstr "Usa le espressioni regolari PHP in UTF8" +#: ../../include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Non in cerca" -#: ../../mod/admin.php:476 -msgid "Show Community Page" -msgstr "Mostra pagina Comunità" +#: ../../include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Scambista" -#: ../../mod/admin.php:476 -msgid "" -"Display a Community page showing all recent public postings on this site." -msgstr "Mostra una pagina Comunità con tutti i recenti messaggi pubblici su questo sito." +#: ../../include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Tradito/a" -#: ../../mod/admin.php:477 -msgid "Enable OStatus support" -msgstr "Abilita supporto OStatus" +#: ../../include/profile_selectors.php:42 +msgid "Separated" +msgstr "Separato/a" -#: ../../mod/admin.php:477 -msgid "" -"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "Fornisce compatibiltà OStatuts (identi.ca, status.net, etc.). Tutte le comunicazioni in OStatus sono pubbliche, per cui avvisi di provacy verranno occasionalmente mostrati." +#: ../../include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Instabile" -#: ../../mod/admin.php:478 -msgid "Enable Diaspora support" -msgstr "Abilita il supporto a Diaspora" +#: ../../include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Divorziato/a" -#: ../../mod/admin.php:478 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Fornisce compatibilità con il network Diaspora." +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "Sogna il divorzio" -#: ../../mod/admin.php:479 -msgid "Only allow Friendica contacts" -msgstr "Permetti solo contatti Friendica" +#: ../../include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Vedovo/a" -#: ../../mod/admin.php:479 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati." +#: ../../include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Incerto/a" -#: ../../mod/admin.php:480 -msgid "Verify SSL" -msgstr "Verifica SSL" +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "Relazione complicata" -#: ../../mod/admin.php:480 -msgid "" -"If you wish, you can turn on strict certificate checking. This will mean you" -" cannot connect (at all) to self-signed SSL sites." -msgstr "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati." +#: ../../include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Chi se ne frega" -#: ../../mod/admin.php:481 -msgid "Proxy user" -msgstr "Utente Proxy" +#: ../../include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Chiedimelo" -#: ../../mod/admin.php:482 -msgid "Proxy URL" -msgstr "URL Proxy" +#: ../../include/identity.php:14 +msgid "Unable to obtain identity information from database" +msgstr "Impossibile ottenere le informazioni di identificazione dal database" -#: ../../mod/admin.php:483 -msgid "Network timeout" -msgstr "Timeout rete" +#: ../../include/identity.php:36 +msgid "Empty name" +msgstr "Nome vuoto" -#: ../../mod/admin.php:483 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)." +#: ../../include/identity.php:38 +msgid "Name too long" +msgstr "Nome troppo lungo" -#: ../../mod/admin.php:484 -msgid "Delivery interval" -msgstr "" +#: ../../include/identity.php:80 +msgid "No account identifier" +msgstr "Account senza identificativo" -#: ../../mod/admin.php:484 +#: ../../include/identity.php:95 msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "" - -#: ../../mod/admin.php:485 -msgid "Poll interval" -msgstr "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "Il nome dell'account è già in uso oppure ha dei caratteri non supportati." -#: ../../mod/admin.php:485 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "" +#: ../../include/identity.php:143 +msgid "Unable to retrieve created identity" +msgstr "Impossibile caricare l'identità creata" -#: ../../mod/admin.php:486 -msgid "Maximum Load Average" -msgstr "" +#: ../../include/identity.php:199 +msgid "Default Profile" +msgstr "Profilo predefinito" -#: ../../mod/admin.php:486 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "" +#: ../../include/plugin.php:435 ../../include/plugin.php:437 +msgid "Click here to upgrade." +msgstr "Clicca qui per aggiornare." -#: ../../mod/admin.php:503 -msgid "Update has been marked successful" -msgstr "" +#: ../../include/plugin.php:443 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Questa operazione esce dai termini del tuo abbonamento." -#: ../../mod/admin.php:513 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "" +#: ../../include/plugin.php:448 +msgid "This action is not available under your subscription plan." +msgstr "Questa operazione non è prevista dal tuo abbonamento." -#: ../../mod/admin.php:516 -#, php-format -msgid "Update %s was successfully applied." -msgstr "" +#: ../../include/zot.php:423 +msgid "Invalid data packet" +msgstr "Dati non validi" -#: ../../mod/admin.php:520 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "" +#: ../../include/zot.php:433 +msgid "Unable to verify channel signature" +msgstr "Impossibile verificare la firma elettronica del canale" -#: ../../mod/admin.php:523 +#: ../../include/zot.php:560 #, php-format -msgid "Update function %s could not be found." -msgstr "" - -#: ../../mod/admin.php:538 -msgid "No failed updates." -msgstr "" - -#: ../../mod/admin.php:542 -msgid "Failed Updates" -msgstr "" +msgid "Unable to verify site signature for %s" +msgstr "Impossibile verificare la firma elettronica del sito %s" -#: ../../mod/admin.php:543 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "" +#: ../../include/account.php:23 +msgid "Not a valid email address" +msgstr "Email non valida" -#: ../../mod/admin.php:544 -msgid "Mark success (if update was manually applied)" -msgstr "" +#: ../../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" -#: ../../mod/admin.php:545 -msgid "Attempt to execute this update step automatically" -msgstr "" +#: ../../include/account.php:31 +msgid "Your email address is already registered at this site." +msgstr "La tua email è già registrata su questo sito." -#: ../../mod/admin.php:570 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "" -msgstr[1] "" +#: ../../include/account.php:64 +msgid "An invitation is required." +msgstr "È necessario un invito." -#: ../../mod/admin.php:577 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s utente cancellato" -msgstr[1] "%s utenti cancellati" +#: ../../include/account.php:68 +msgid "Invitation could not be verified." +msgstr "L'invito non può essere verificato." -#: ../../mod/admin.php:616 -#, php-format -msgid "User '%s' deleted" -msgstr "Utente '%s' cancellato" +#: ../../include/account.php:118 +msgid "Please enter the required information." +msgstr "Inserisci le informazioni richieste." -#: ../../mod/admin.php:624 -#, php-format -msgid "User '%s' unblocked" -msgstr "Utente '%s' sbloccato" +#: ../../include/account.php:186 +msgid "Failed to store account information." +msgstr "Non è stato possibile salvare le informazioni del tuo account." -#: ../../mod/admin.php:624 +#: ../../include/account.php:272 #, php-format -msgid "User '%s' blocked" -msgstr "Utente '%s' bloccato" - -#: ../../mod/admin.php:690 -msgid "select all" -msgstr "seleziona tutti" +msgid "Registration request at %s" +msgstr "Richiesta di registrazione su %s" -#: ../../mod/admin.php:691 -msgid "User registrations waiting for confirm" -msgstr "Richieste di registrazione in attesa di conferma" +#: ../../include/account.php:274 ../../include/account.php:301 +#: ../../include/account.php:358 ../../boot.php:1207 +msgid "Administrator" +msgstr "Amministratore" -#: ../../mod/admin.php:692 -msgid "Request date" -msgstr "Data richiesta" +#: ../../include/account.php:296 +msgid "your registration password" +msgstr "la password di registrazione" -#: ../../mod/admin.php:692 ../../mod/admin.php:702 -#: ../../include/contact_selectors.php:79 -msgid "Email" -msgstr "Email" +#: ../../include/account.php:299 ../../include/account.php:356 +#, php-format +msgid "Registration details for %s" +msgstr "Dettagli della registrazione di %s" -#: ../../mod/admin.php:693 -msgid "No registrations." -msgstr "Nessuna registrazione." +#: ../../include/account.php:365 +msgid "Account approved." +msgstr "Account approvato." -#: ../../mod/admin.php:695 -msgid "Deny" -msgstr "Nega" +#: ../../include/account.php:399 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrazione revocata per %s" -#: ../../mod/admin.php:699 -msgid "Site admin" -msgstr "" +#: ../../include/text.php:281 +msgid "prev" +msgstr "prec" -#: ../../mod/admin.php:702 -msgid "Register date" -msgstr "Data registrazione" +#: ../../include/text.php:283 +msgid "first" +msgstr "inizio" -#: ../../mod/admin.php:702 -msgid "Last login" -msgstr "Ultimo accesso" +#: ../../include/text.php:312 +msgid "last" +msgstr "fine" -#: ../../mod/admin.php:702 -msgid "Last item" -msgstr "Ultimo elemento" +#: ../../include/text.php:315 +msgid "next" +msgstr "succ" -#: ../../mod/admin.php:702 -msgid "Account" -msgstr "Account" +#: ../../include/text.php:327 +msgid "older" +msgstr "più recenti" -#: ../../mod/admin.php:704 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?" +#: ../../include/text.php:329 +msgid "newer" +msgstr "più nuovi" -#: ../../mod/admin.php:705 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?" +#: ../../include/text.php:620 +msgid "No connections" +msgstr "Nessun contatto" -#: ../../mod/admin.php:746 +#: ../../include/text.php:631 #, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s disabilitato." +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "%d contatto" +msgstr[1] "%d contatti" -#: ../../mod/admin.php:750 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s abilitato." +#: ../../include/text.php:643 +msgid "View Connections" +msgstr "Elenco contatti" -#: ../../mod/admin.php:760 ../../mod/admin.php:958 -msgid "Disable" -msgstr "Disabilita" +#: ../../include/text.php:704 ../../mod/filer.php:36 +msgid "Save" +msgstr "Salva" -#: ../../mod/admin.php:762 ../../mod/admin.php:960 -msgid "Enable" -msgstr "Abilita" +#: ../../include/text.php:742 +msgid "poke" +msgstr "poke" -#: ../../mod/admin.php:784 ../../mod/admin.php:989 -msgid "Toggle" -msgstr "Inverti" +#: ../../include/text.php:742 ../../include/conversation.php:227 +msgid "poked" +msgstr "ha ricevuto un poke" -#: ../../mod/admin.php:792 ../../mod/admin.php:999 -msgid "Author: " -msgstr "Autore: " +#: ../../include/text.php:743 +msgid "ping" +msgstr "ping" -#: ../../mod/admin.php:793 ../../mod/admin.php:1000 -msgid "Maintainer: " -msgstr "Manutentore: " +#: ../../include/text.php:743 +msgid "pinged" +msgstr "ha ricevuto un ping" -#: ../../mod/admin.php:922 -msgid "No themes found." -msgstr "Nessun tema trovato." +#: ../../include/text.php:744 +msgid "prod" +msgstr "prod" -#: ../../mod/admin.php:981 -msgid "Screenshot" -msgstr "" +#: ../../include/text.php:744 +msgid "prodded" +msgstr "ha ricevuto un prod" -#: ../../mod/admin.php:1029 -msgid "[Experimental]" -msgstr "[Sperimentale]" +#: ../../include/text.php:745 +msgid "slap" +msgstr "schiaffo" -#: ../../mod/admin.php:1030 -msgid "[Unsupported]" -msgstr "[Non supportato]" +#: ../../include/text.php:745 +msgid "slapped" +msgstr "ha ricevuto uno schiaffo" -#: ../../mod/admin.php:1057 -msgid "Log settings updated." -msgstr "Impostazioni Log aggiornate." +#: ../../include/text.php:746 +msgid "finger" +msgstr "finger" -#: ../../mod/admin.php:1113 -msgid "Clear" -msgstr "Pulisci" +#: ../../include/text.php:746 +msgid "fingered" +msgstr "ha ricevuto un finger" -#: ../../mod/admin.php:1119 -msgid "Debugging" -msgstr "Debugging" +#: ../../include/text.php:747 +msgid "rebuff" +msgstr "rifiuto" -#: ../../mod/admin.php:1120 -msgid "Log file" -msgstr "File di Log" +#: ../../include/text.php:747 +msgid "rebuffed" +msgstr "ha ricevuto un rifiuto" -#: ../../mod/admin.php:1120 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica." +#: ../../include/text.php:759 +msgid "happy" +msgstr "allegro" -#: ../../mod/admin.php:1121 -msgid "Log level" -msgstr "Livello di Log" +#: ../../include/text.php:760 +msgid "sad" +msgstr "triste" -#: ../../mod/admin.php:1171 -msgid "Close" -msgstr "Chiudi" +#: ../../include/text.php:761 +msgid "mellow" +msgstr "calmo" -#: ../../mod/admin.php:1177 -msgid "FTP Host" -msgstr "Indirizzo FTP" +#: ../../include/text.php:762 +msgid "tired" +msgstr "stanco" -#: ../../mod/admin.php:1178 -msgid "FTP Path" -msgstr "Percorso FTP" +#: ../../include/text.php:763 +msgid "perky" +msgstr "vivace" -#: ../../mod/admin.php:1179 -msgid "FTP User" -msgstr "Utente FTP" +#: ../../include/text.php:764 +msgid "angry" +msgstr "arrabbiato" -#: ../../mod/admin.php:1180 -msgid "FTP Password" -msgstr "Pasword FTP" +#: ../../include/text.php:765 +msgid "stupified" +msgstr "stordito" -#: ../../mod/profile.php:22 ../../boot.php:1074 -msgid "Requested profile is not available." -msgstr "Profilo richiesto non disponibile." +#: ../../include/text.php:766 +msgid "puzzled" +msgstr "confuso" -#: ../../mod/profile.php:152 ../../mod/display.php:77 -msgid "Access to this profile has been restricted." -msgstr "L'accesso a questo profilo è stato limitato." +#: ../../include/text.php:767 +msgid "interested" +msgstr "attento" -#: ../../mod/profile.php:177 -msgid "Tips for New Members" -msgstr "Consigli per i Nuovi Utenti" +#: ../../include/text.php:768 +msgid "bitter" +msgstr "amaro" -#: ../../mod/ping.php:238 -msgid "{0} wants to be your friend" -msgstr "{0} vuole essere tuo amico" +#: ../../include/text.php:769 +msgid "cheerful" +msgstr "allegro" -#: ../../mod/ping.php:243 -msgid "{0} sent you a message" -msgstr "{0} ti ha inviato un messaggio" +#: ../../include/text.php:770 +msgid "alive" +msgstr "vivace" -#: ../../mod/ping.php:248 -msgid "{0} requested registration" -msgstr "{0} chiede la registrazione" +#: ../../include/text.php:771 +msgid "annoyed" +msgstr "seccato" -#: ../../mod/ping.php:254 -#, php-format -msgid "{0} commented %s's post" -msgstr "{0} ha commentato il post di %s" +#: ../../include/text.php:772 +msgid "anxious" +msgstr "ansioso" -#: ../../mod/ping.php:259 -#, php-format -msgid "{0} liked %s's post" -msgstr "a {0} piace il post di %s" +#: ../../include/text.php:773 +msgid "cranky" +msgstr "irritabile" -#: ../../mod/ping.php:264 -#, php-format -msgid "{0} disliked %s's post" -msgstr "a {0} non piace il post di %s" +#: ../../include/text.php:774 +msgid "disturbed" +msgstr "turbato" -#: ../../mod/ping.php:269 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} ora è amico di %s" +#: ../../include/text.php:775 +msgid "frustrated" +msgstr "frustrato" -#: ../../mod/ping.php:274 -msgid "{0} posted" -msgstr "{0} ha inviato un nuovo messaggio" +#: ../../include/text.php:776 +msgid "motivated" +msgstr "motivato" -#: ../../mod/ping.php:279 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} ha taggato il post di %s con #%s" +#: ../../include/text.php:777 +msgid "relaxed" +msgstr "rilassato" -#: ../../mod/ping.php:285 -msgid "{0} mentioned you in a post" -msgstr "{0} ti ha citato in un post" +#: ../../include/text.php:778 +msgid "surprised" +msgstr "sorpreso" -#: ../../mod/nogroup.php:58 -msgid "Contacts who are not members of a group" -msgstr "" +#: ../../include/text.php:940 +msgid "Monday" +msgstr "lunedì" -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "" +#: ../../include/text.php:940 +msgid "Tuesday" +msgstr "martedì" -#: ../../mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "" +#: ../../include/text.php:940 +msgid "Wednesday" +msgstr "mercoledì" -#: ../../mod/openid.php:93 ../../include/auth.php:98 -#: ../../include/auth.php:161 -msgid "Login failed." -msgstr "Accesso fallito." +#: ../../include/text.php:940 +msgid "Thursday" +msgstr "giovedì" -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "" +#: ../../include/text.php:940 +msgid "Friday" +msgstr "venerdì" -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Amici in comune" +#: ../../include/text.php:940 +msgid "Saturday" +msgstr "sabato" -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "" +#: ../../include/text.php:940 +msgid "Sunday" +msgstr "domenica" -#: ../../mod/share.php:28 -msgid "link" -msgstr "" +#: ../../include/text.php:944 +msgid "January" +msgstr "gennaio" -#: ../../mod/display.php:138 -msgid "Item has been removed." -msgstr "L'oggetto è stato rimosso." +#: ../../include/text.php:944 +msgid "February" +msgstr "febbraio" -#: ../../mod/apps.php:4 -msgid "Applications" -msgstr "Applicazioni" +#: ../../include/text.php:944 +msgid "March" +msgstr "marzo" -#: ../../mod/apps.php:7 -msgid "No installed applications." -msgstr "Nessuna applicazione installata." +#: ../../include/text.php:944 +msgid "April" +msgstr "aprile" -#: ../../mod/search.php:85 ../../include/text.php:678 -#: ../../include/text.php:679 ../../include/nav.php:91 -msgid "Search" -msgstr "Cerca" +#: ../../include/text.php:944 +msgid "May" +msgstr "maggio" -#: ../../mod/profiles.php:21 ../../mod/profiles.php:423 -#: ../../mod/profiles.php:537 ../../mod/dfrn_confirm.php:62 -msgid "Profile not found." -msgstr "Profilo non trovato." +#: ../../include/text.php:944 +msgid "June" +msgstr "giugno" -#: ../../mod/profiles.php:31 -msgid "Profile Name is required." -msgstr "Il nome profilo è obbligatorio ." +#: ../../include/text.php:944 +msgid "July" +msgstr "luglio" -#: ../../mod/profiles.php:160 -msgid "Marital Status" -msgstr "" +#: ../../include/text.php:944 +msgid "August" +msgstr "agosto" -#: ../../mod/profiles.php:164 -msgid "Romantic Partner" -msgstr "" +#: ../../include/text.php:944 +msgid "September" +msgstr "settembre" -#: ../../mod/profiles.php:168 -msgid "Likes" -msgstr "" +#: ../../include/text.php:944 +msgid "October" +msgstr "ottobre" -#: ../../mod/profiles.php:172 -msgid "Dislikes" -msgstr "" +#: ../../include/text.php:944 +msgid "November" +msgstr "novembre" -#: ../../mod/profiles.php:176 -msgid "Work/Employment" -msgstr "" +#: ../../include/text.php:944 +msgid "December" +msgstr "dicembre" -#: ../../mod/profiles.php:179 -msgid "Religion" -msgstr "Religione" +#: ../../include/text.php:1029 +msgid "unknown.???" +msgstr "sconosciuto???" -#: ../../mod/profiles.php:183 -msgid "Political Views" -msgstr "Orientamento Politico" +#: ../../include/text.php:1030 +msgid "bytes" +msgstr "byte" -#: ../../mod/profiles.php:187 -msgid "Gender" -msgstr "Sesso" +#: ../../include/text.php:1066 ../../include/text.php:1081 +#: ../../include/conversation.php:787 +msgid "remove" +msgstr "rimuovi" -#: ../../mod/profiles.php:191 -msgid "Sexual Preference" -msgstr "Preferenza sessuale" +#: ../../include/text.php:1066 ../../include/text.php:1081 +msgid "[remove]" +msgstr "[rimuovi]" -#: ../../mod/profiles.php:195 -msgid "Homepage" -msgstr "Homepage" +#: ../../include/text.php:1069 ../../include/conversation.php:649 +msgid "Categories:" +msgstr "Categorie:" -#: ../../mod/profiles.php:199 -msgid "Interests" -msgstr "Interessi" +#: ../../include/text.php:1084 ../../include/conversation.php:650 +msgid "Filed under:" +msgstr "Archiviato come:" -#: ../../mod/profiles.php:203 -msgid "Address" -msgstr "" +#: ../../include/text.php:1100 ../../include/text.php:1112 +msgid "Click to open/close" +msgstr "Clicca per aprire/chiudere" -#: ../../mod/profiles.php:210 ../../addon/dav/common/wdcal_edit.inc.php:183 -msgid "Location" -msgstr "Posizione" +#: ../../include/text.php:1280 ../../mod/events.php:326 +msgid "link to source" +msgstr "Link all'originale" -#: ../../mod/profiles.php:293 -msgid "Profile updated." -msgstr "Profilo aggiornato." +#: ../../include/text.php:1312 +msgid "default" +msgstr "predefinito" -#: ../../mod/profiles.php:360 -msgid " and " -msgstr "" +#: ../../include/text.php:1324 +msgid "Select an alternate language" +msgstr "Seleziona una lingua diversa" -#: ../../mod/profiles.php:368 -msgid "public profile" -msgstr "profilo pubblico" +#: ../../include/text.php:1476 ../../include/conversation.php:111 +#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:45 +msgid "photo" +msgstr "la foto" -#: ../../mod/profiles.php:371 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "" +#: ../../include/text.php:1479 ../../include/conversation.php:114 +#: ../../mod/tagger.php:49 +msgid "event" +msgstr "l'evento" -#: ../../mod/profiles.php:372 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr "" +#: ../../include/text.php:1482 ../../include/conversation.php:139 +#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:53 +msgid "status" +msgstr "il messaggio di stato" -#: ../../mod/profiles.php:375 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s ha un %2$s aggiornato. Ha cambiato %3$s" +#: ../../include/text.php:1484 ../../include/conversation.php:141 +#: ../../mod/tagger.php:55 +msgid "comment" +msgstr "il commento" -#: ../../mod/profiles.php:442 -msgid "Profile deleted." -msgstr "Profilo elminato." +#: ../../include/text.php:1489 +msgid "activity" +msgstr "l'attività" -#: ../../mod/profiles.php:460 ../../mod/profiles.php:494 -msgid "Profile-" -msgstr "Profilo-" +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Nuova pagina web" -#: ../../mod/profiles.php:479 ../../mod/profiles.php:521 -msgid "New profile created." -msgstr "Il nuovo profilo è stato creato." +#: ../../include/auth.php:65 +msgid "Logged out." +msgstr "Uscita effettuata." -#: ../../mod/profiles.php:500 -msgid "Profile unavailable to clone." -msgstr "Impossibile duplicare il profilo." +#: ../../include/auth.php:177 +msgid "Failed authentication" +msgstr "Autenticazione fallita" -#: ../../mod/profiles.php:562 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?" +#: ../../include/auth.php:186 +msgid "Login failed." +msgstr "Accesso fallito." -#: ../../mod/profiles.php:582 -msgid "Edit Profile Details" -msgstr "Modifica i dettagli del profilo" +#: ../../include/follow.php:21 +msgid "Channel is blocked on this site." +msgstr "Il canale è bloccato per questo sito." -#: ../../mod/profiles.php:584 -msgid "View this profile" -msgstr "Visualizza questo profilo" +#: ../../include/follow.php:26 +msgid "Channel location missing." +msgstr "Manca l'indirizzo del canale." -#: ../../mod/profiles.php:585 -msgid "Create a new profile using these settings" -msgstr "Crea un nuovo profilo usando queste impostazioni" +#: ../../include/follow.php:43 +msgid "Channel discovery failed. Website may be down or misconfigured." +msgstr "La ricerca del canale è fallita. Il sito potrebbe avere problemi o una configurazione sbagliata." -#: ../../mod/profiles.php:586 -msgid "Clone this profile" -msgstr "Clona questo profilo" +#: ../../include/follow.php:51 +msgid "Response from remote channel was not understood." +msgstr "La risposta dal canale non è comprensibile." -#: ../../mod/profiles.php:587 -msgid "Delete this profile" -msgstr "Elimina questo profilo" +#: ../../include/follow.php:58 +msgid "Response from remote channel was incomplete." +msgstr "La risposta dal canale non è completa." -#: ../../mod/profiles.php:588 -msgid "Profile Name:" -msgstr "Nome del profilo:" +#: ../../include/follow.php:124 +msgid "local account not found." +msgstr "l'account locale non è stato trovato." -#: ../../mod/profiles.php:589 -msgid "Your Full Name:" -msgstr "Il tuo nome completo:" +#: ../../include/follow.php:133 +msgid "Cannot connect to yourself." +msgstr "Non puoi connetterti a te stesso." -#: ../../mod/profiles.php:590 -msgid "Title/Description:" -msgstr "Breve descrizione (es. titolo, posizione, altro):" +#: ../../include/permissions.php:13 +msgid "Can view my \"public\" stream and posts" +msgstr "Può vedere i miei contenuti \"pubblici\"" -#: ../../mod/profiles.php:591 -msgid "Your Gender:" -msgstr "Il tuo sesso:" +#: ../../include/permissions.php:14 +msgid "Can view my \"public\" channel profile" +msgstr "Può vedere il profilo del mio canale \"pubblico\"" -#: ../../mod/profiles.php:592 -#, php-format -msgid "Birthday (%s):" -msgstr "Compleanno (%s)" +#: ../../include/permissions.php:15 +msgid "Can view my \"public\" photo albums" +msgstr "Può vedere il mio album fotografico \"pubblico\"" -#: ../../mod/profiles.php:593 -msgid "Street Address:" -msgstr "Indirizzo (via/piazza):" +#: ../../include/permissions.php:16 +msgid "Can view my \"public\" address book" +msgstr "Può vedere il mio elenco contatti \"pubblico\"" -#: ../../mod/profiles.php:594 -msgid "Locality/City:" -msgstr "Località:" +#: ../../include/permissions.php:17 +msgid "Can view my \"public\" file storage" +msgstr "Può vedere il mio archivio file \"pubblico\"" -#: ../../mod/profiles.php:595 -msgid "Postal/Zip Code:" -msgstr "CAP:" +#: ../../include/permissions.php:18 +msgid "Can view my \"public\" pages" +msgstr "Può vedere le mie pagine web \"pubbliche\"" -#: ../../mod/profiles.php:596 -msgid "Country:" -msgstr "Nazione:" +#: ../../include/permissions.php:21 +msgid "Can send me their channel stream and posts" +msgstr "Può inviarmi i contenuti del canale e gli articoli" -#: ../../mod/profiles.php:597 -msgid "Region/State:" -msgstr "Regione/Stato:" +#: ../../include/permissions.php:22 +msgid "Can post on my channel page (\"wall\")" +msgstr "Può scrivere sulla bacheca del mio canale" -#: ../../mod/profiles.php:598 -msgid " Marital Status:" -msgstr " Stato sentimentale:" +#: ../../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" -#: ../../mod/profiles.php:599 -msgid "Who: (if applicable)" -msgstr "Con chi: (se possibile)" +#: ../../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" -#: ../../mod/profiles.php:600 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com" +#: ../../include/permissions.php:26 +msgid "Advanced - useful for creating group forum channels" +msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione" -#: ../../mod/profiles.php:601 -msgid "Since [date]:" -msgstr "" +#: ../../include/permissions.php:27 +msgid "Can chat with me (when available)" +msgstr "Può aprire una chat con me (se disponibile)" -#: ../../mod/profiles.php:602 ../../include/profile_advanced.php:46 -msgid "Sexual Preference:" -msgstr "Preferenze sessuali:" +#: ../../include/permissions.php:27 +msgid "Requires compatible chat plugin" +msgstr "Necessita di un plugin di chat compatibile" -#: ../../mod/profiles.php:603 -msgid "Homepage URL:" -msgstr "Homepage:" +#: ../../include/permissions.php:28 +msgid "Can write to my \"public\" file storage" +msgstr "Può scrivere sul mio archivio di file \"pubblico\"" -#: ../../mod/profiles.php:604 ../../include/profile_advanced.php:50 -msgid "Hometown:" -msgstr "" +#: ../../include/permissions.php:29 +msgid "Can edit my \"public\" pages" +msgstr "Può modificare le mie pagine web \"pubbliche\"" -#: ../../mod/profiles.php:605 ../../include/profile_advanced.php:54 -msgid "Political Views:" -msgstr "Orientamento politico:" +#: ../../include/permissions.php:31 +msgid "Can administer my channel resources" +msgstr "Può amministrare i contenuti del mio canale" -#: ../../mod/profiles.php:606 -msgid "Religious Views:" -msgstr "Orientamento religioso:" +#: ../../include/permissions.php:31 +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" -#: ../../mod/profiles.php:607 -msgid "Public Keywords:" -msgstr "Parole chiave visibili a tutti:" +#: ../../include/taxonomy.php:166 +msgid "Tags" +msgstr "Tag" -#: ../../mod/profiles.php:608 -msgid "Private Keywords:" -msgstr "Parole chiave private:" +#: ../../include/taxonomy.php:187 +msgid "have" +msgstr "ho" -#: ../../mod/profiles.php:609 ../../include/profile_advanced.php:62 -msgid "Likes:" -msgstr "" +#: ../../include/taxonomy.php:187 +msgid "has" +msgstr "ha" -#: ../../mod/profiles.php:610 ../../include/profile_advanced.php:64 -msgid "Dislikes:" -msgstr "" +#: ../../include/taxonomy.php:188 +msgid "want" +msgstr "voglio" -#: ../../mod/profiles.php:611 -msgid "Example: fishing photography software" -msgstr "Esempio: pesca fotografia programmazione" +#: ../../include/taxonomy.php:188 +msgid "wants" +msgstr "vuole" -#: ../../mod/profiles.php:612 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)" +#: ../../include/taxonomy.php:189 ../../include/ItemObject.php:165 +msgid "like" +msgstr "mi piace" -#: ../../mod/profiles.php:613 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Usato per cercare tra i profili, non è mai visibile agli altri)" +#: ../../include/taxonomy.php:189 +msgid "likes" +msgstr "ama" -#: ../../mod/profiles.php:614 -msgid "Tell us about yourself..." -msgstr "Raccontaci di te..." +#: ../../include/taxonomy.php:190 ../../include/ItemObject.php:166 +msgid "dislike" +msgstr "non mi piace" -#: ../../mod/profiles.php:615 -msgid "Hobbies/Interests" -msgstr "Hobby/interessi" +#: ../../include/taxonomy.php:190 +msgid "dislikes" +msgstr "non ama" -#: ../../mod/profiles.php:616 -msgid "Contact information and Social Networks" -msgstr "Informazioni su contatti e social network" +#: ../../include/attach.php:184 ../../include/attach.php:232 +msgid "Item was not found." +msgstr "Elemento non trovato." -#: ../../mod/profiles.php:617 -msgid "Musical interests" -msgstr "Interessi musicali" +#: ../../include/attach.php:285 +msgid "No source file." +msgstr "Nessun file di origine." -#: ../../mod/profiles.php:618 -msgid "Books, literature" -msgstr "Libri, letteratura" +#: ../../include/attach.php:302 +msgid "Cannot locate file to replace" +msgstr "Il file da sostituire non è stato trovato" -#: ../../mod/profiles.php:619 -msgid "Television" -msgstr "Televisione" +#: ../../include/attach.php:320 +msgid "Cannot locate file to revise/update" +msgstr "Il file da aggiornare non è stato trovato" -#: ../../mod/profiles.php:620 -msgid "Film/dance/culture/entertainment" -msgstr "Film/danza/cultura/intrattenimento" +#: ../../include/attach.php:331 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Il file supera la dimensione massima di %d" -#: ../../mod/profiles.php:621 -msgid "Love/romance" -msgstr "Amore" +#: ../../include/attach.php:424 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Caricamento file fallito, potrebbe aver superato i limiti o l'azione potrebbe essere stata interrotta." -#: ../../mod/profiles.php:622 -msgid "Work/employment" -msgstr "Lavoro/impiego" +#: ../../include/attach.php:436 +msgid "Stored file could not be verified. Upload failed." +msgstr "Il file non può essere verificato. Caricamento fallito." -#: ../../mod/profiles.php:623 -msgid "School/education" -msgstr "Scuola/educazione" +#: ../../include/attach.php:480 ../../include/attach.php:497 +msgid "Path not available." +msgstr "Percorso non disponibile." -#: ../../mod/profiles.php:628 -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." +#: ../../include/ItemObject.php:87 ../../mod/photos.php:942 +msgid "Private Message" +msgstr "Messaggio privato" -#: ../../mod/profiles.php:638 ../../mod/directory.php:111 -msgid "Age: " -msgstr "Età : " +#: ../../include/ItemObject.php:92 ../../mod/webpages.php:81 +#: ../../mod/settings.php:669 ../../mod/menu.php:52 +#: ../../mod/editwebpage.php:101 ../../mod/editpost.php:76 +msgid "Edit" +msgstr "Modifica" -#: ../../mod/profiles.php:677 -msgid "Edit/Manage Profiles" -msgstr "Modifica / Gestisci profili" +#: ../../include/ItemObject.php:104 ../../include/conversation.php:613 +#: ../../mod/settings.php:670 ../../mod/group.php:182 +#: ../../mod/photos.php:1162 ../../mod/admin.php:640 +#: ../../mod/connections.php:335 +msgid "Delete" +msgstr "Elimina" -#: ../../mod/profiles.php:678 ../../boot.php:1192 -msgid "Change profile photo" -msgstr "Cambia la foto del profilo" +#: ../../include/ItemObject.php:110 ../../include/conversation.php:612 +msgid "Select" +msgstr "Seleziona" -#: ../../mod/profiles.php:679 ../../boot.php:1193 -msgid "Create New Profile" -msgstr "Crea un nuovo profilo" +#: ../../include/ItemObject.php:114 +msgid "save to folder" +msgstr "salva in una cartella" -#: ../../mod/profiles.php:690 ../../boot.php:1203 -msgid "Profile Image" -msgstr "Immagine del Profilo" +#: ../../include/ItemObject.php:142 +msgid "add star" +msgstr "aggiungi ai preferiti" -#: ../../mod/profiles.php:692 ../../boot.php:1206 -msgid "visible to everybody" -msgstr "visibile a tutti" +#: ../../include/ItemObject.php:143 +msgid "remove star" +msgstr "rimuovi dai preferiti" -#: ../../mod/profiles.php:693 ../../boot.php:1207 -msgid "Edit visibility" -msgstr "Modifica visibilità" +#: ../../include/ItemObject.php:144 +msgid "toggle star status" +msgstr "Attiva/disattiva preferito" -#: ../../mod/filer.php:29 ../../include/conversation.php:837 -#: ../../include/conversation.php:854 -msgid "Save to Folder:" -msgstr "" +#: ../../include/ItemObject.php:148 +msgid "starred" +msgstr "preferito" -#: ../../mod/filer.php:29 -msgid "- select -" -msgstr "" +#: ../../include/ItemObject.php:159 +msgid "add tag" +msgstr "Aggiungi tag" -#: ../../mod/tagger.php:95 ../../include/conversation.php:265 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha taggato %3$s di %2$s con %4$s" +#: ../../include/ItemObject.php:165 ../../mod/photos.php:1049 +msgid "I like this (toggle)" +msgstr "Attiva/disattiva Mi piace" -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Nessun potenziale delegato per la pagina è stato trovato." +#: ../../include/ItemObject.php:166 ../../mod/photos.php:1050 +msgid "I don't like this (toggle)" +msgstr "Attiva/disattiva Non mi piace" -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "Gestione delegati per la pagina" +#: ../../include/ItemObject.php:168 +msgid "Share this" +msgstr "Condividi" -#: ../../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." +#: ../../include/ItemObject.php:168 +msgid "share" +msgstr "condividi" -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "Gestori Pagina Esistenti" +#: ../../include/ItemObject.php:192 ../../include/ItemObject.php:193 +#, php-format +msgid "View %s's profile - %s" +msgstr "Guarda il profilo di %s - %s" -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "Delegati Pagina Esistenti" +#: ../../include/ItemObject.php:194 +msgid "to" +msgstr "a" -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "Delegati Potenziali" +#: ../../include/ItemObject.php:195 +msgid "Wall-to-Wall" +msgstr "Da bacheca a bacheca" -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Aggiungi" +#: ../../include/ItemObject.php:196 +msgid "via Wall-To-Wall:" +msgstr "da bacheca a bacheca:" -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Nessun articolo." +#: ../../include/ItemObject.php:206 ../../include/conversation.php:659 +#, php-format +msgid " from %s" +msgstr " da %s" -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "" +#: ../../include/ItemObject.php:233 ../../include/conversation.php:678 +#: ../../include/conversation.php:1034 ../../mod/photos.php:1052 +#: ../../mod/message.php:297 ../../mod/message.php:430 +#: ../../mod/editwebpage.php:110 ../../mod/editpost.php:85 +msgid "Please wait" +msgstr "Attendere" -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "" +#: ../../include/ItemObject.php:254 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d commento" +msgstr[1] "%d commenti" -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "" +#: ../../include/ItemObject.php:502 ../../mod/photos.php:1067 +#: ../../mod/photos.php:1105 ../../mod/photos.php:1132 +msgid "This is you" +msgstr "Questo sei tu" -#: ../../mod/babel.php:35 -msgid "bb2html: " -msgstr "" +#: ../../include/ItemObject.php:505 ../../mod/events.php:458 +#: ../../mod/thing.php:190 ../../mod/invite.php:153 ../../mod/setup.php:283 +#: ../../mod/setup.php:326 ../../mod/settings.php:607 +#: ../../mod/settings.php:719 ../../mod/settings.php:747 +#: ../../mod/settings.php:771 ../../mod/settings.php:842 +#: ../../mod/settings.php:1009 ../../mod/group.php:87 ../../mod/photos.php:675 +#: ../../mod/photos.php:769 ../../mod/photos.php:1031 +#: ../../mod/photos.php:1070 ../../mod/photos.php:1108 +#: ../../mod/photos.php:1135 ../../mod/message.php:298 +#: ../../mod/message.php:429 ../../mod/admin.php:409 ../../mod/admin.php:633 +#: ../../mod/admin.php:769 ../../mod/admin.php:968 ../../mod/admin.php:1055 +#: ../../mod/connections.php:412 ../../mod/profiles.php:529 +#: ../../mod/import.php:356 ../../mod/crepair.php:166 ../../mod/poke.php:166 +#: ../../mod/fsuggest.php:108 ../../mod/mood.php:135 +#: ../../view/theme/redbasic/php/config.php:136 +#: ../../view/theme/redbasic/php/config.php:154 +#: ../../view/theme/redstrap/php/config.php:131 +msgid "Submit" +msgstr "Invia" -#: ../../mod/babel.php:39 -msgid "bb2html2bb: " -msgstr "" +#: ../../include/ItemObject.php:506 +msgid "Bold" +msgstr "Grassetto" -#: ../../mod/babel.php:43 -msgid "bb2md: " -msgstr "" +#: ../../include/ItemObject.php:507 +msgid "Italic" +msgstr "Corsivo" -#: ../../mod/babel.php:47 -msgid "bb2md2html: " -msgstr "" +#: ../../include/ItemObject.php:508 +msgid "Underline" +msgstr "Sottolineato" -#: ../../mod/babel.php:51 -msgid "bb2dia2bb: " -msgstr "" +#: ../../include/ItemObject.php:509 +msgid "Quote" +msgstr "Citazione" -#: ../../mod/babel.php:55 -msgid "bb2md2html2bb: " -msgstr "" +#: ../../include/ItemObject.php:510 +msgid "Code" +msgstr "Codice" -#: ../../mod/babel.php:65 -msgid "Source input (Diaspora format): " -msgstr "" +#: ../../include/ItemObject.php:511 +msgid "Image" +msgstr "Immagine" -#: ../../mod/babel.php:70 -msgid "diaspora2bb: " -msgstr "" +#: ../../include/ItemObject.php:512 +msgid "Link" +msgstr "Link" -#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:626 -#: ../../include/contact_widgets.php:34 -msgid "Friend Suggestions" -msgstr "Contatti suggeriti" +#: ../../include/ItemObject.php:513 +msgid "Video" +msgstr "Video" -#: ../../mod/suggest.php:44 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore." +#: ../../include/ItemObject.php:514 ../../include/conversation.php:1052 +#: ../../mod/photos.php:1071 ../../mod/editwebpage.php:130 +#: ../../mod/editpost.php:105 +msgid "Preview" +msgstr "Anteprima" -#: ../../mod/suggest.php:61 -msgid "Ignore/Hide" -msgstr "Ignora / Nascondi" +#: ../../include/conversation.php:117 +msgid "channel" +msgstr "canale" + +#: ../../include/conversation.php:155 ../../mod/like.php:133 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s piace %3$s di %2$s" -#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:624 -msgid "Global Directory" -msgstr "Elenco globale" +#: ../../include/conversation.php:158 ../../mod/like.php:135 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "A %1$s non piace %3$s di %2$s" -#: ../../mod/directory.php:57 -msgid "Find on this site" -msgstr "Cerca nel sito" +#: ../../include/conversation.php:192 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s adesso è connesso con %2$s" -#: ../../mod/directory.php:60 -msgid "Site Directory" -msgstr "Elenco del sito" +#: ../../include/conversation.php:223 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ha mandato un poke a %2$s" -#: ../../mod/directory.php:114 -msgid "Gender: " -msgstr "Genere:" +#: ../../include/conversation.php:245 ../../mod/mood.php:63 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s al momento è %2$s" -#: ../../mod/directory.php:136 ../../include/profile_advanced.php:17 -#: ../../boot.php:1228 -msgid "Gender:" -msgstr "Genere:" +#: ../../include/conversation.php:637 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Vedi il profilo di %s @ %s" -#: ../../mod/directory.php:138 ../../include/profile_advanced.php:37 -#: ../../boot.php:1231 -msgid "Status:" -msgstr "Stato:" +#: ../../include/conversation.php:676 +msgid "View in context" +msgstr "Vedi nel contesto" -#: ../../mod/directory.php:140 ../../include/profile_advanced.php:48 -#: ../../boot.php:1233 -msgid "Homepage:" -msgstr "Homepage:" +#: ../../include/conversation.php:791 +msgid "Loading..." +msgstr "Caricamento in corso..." -#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58 -msgid "About:" -msgstr "Informazioni:" +#: ../../include/conversation.php:792 +msgid "Delete Selected Items" +msgstr "Elimina gli oggetti selezionati" -#: ../../mod/directory.php:180 -msgid "No entries (some entries may be hidden)." -msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)." +#: ../../include/conversation.php:880 +msgid "Follow Thread" +msgstr "Segui la discussione" -#: ../../mod/invite.php:35 +#: ../../include/conversation.php:949 #, php-format -msgid "%s : Not a valid email address." -msgstr "%s: non è un indirizzo email valido." +msgid "%s likes this." +msgstr "Piace a %s." -#: ../../mod/invite.php:59 -msgid "Please join us on Friendica" -msgstr "" +#: ../../include/conversation.php:949 +#, php-format +msgid "%s doesn't like this." +msgstr "Non piace a %s." -#: ../../mod/invite.php:69 +#: ../../include/conversation.php:953 #, php-format -msgid "%s : Message delivery failed." -msgstr "%s: la consegna del messaggio fallita." +msgid "%2$d people like this." +msgstr "Piace a %2$d persone." -#: ../../mod/invite.php:73 +#: ../../include/conversation.php:955 #, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d messaggio inviato." -msgstr[1] "%d messaggi inviati." +msgid "%2$d people don't like this." +msgstr "Non piace a %2$d persone." -#: ../../mod/invite.php:92 -msgid "You have no more invitations available" -msgstr "Non hai altri inviti disponibili" +#: ../../include/conversation.php:961 +msgid "and" +msgstr "e" -#: ../../mod/invite.php:100 +#: ../../include/conversation.php:964 #, php-format -msgid "" -"Visit %s for a list of public sites that you can join. Friendica members on " -"other sites can all connect with each other, as well as with members of many" -" other social networks." -msgstr "" +msgid ", and %d other people" +msgstr "e altre %d persone" -#: ../../mod/invite.php:102 +#: ../../include/conversation.php:965 #, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "" +msgid "%s like this." +msgstr "Piace a %s." + +#: ../../include/conversation.php:965 +#, php-format +msgid "%s don't like this." +msgstr "Non piace a %s." + +#: ../../include/conversation.php:990 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: ../../include/conversation.php:991 ../../mod/message.php:253 +#: ../../mod/message.php:364 +msgid "Please enter a link URL:" +msgstr "Inserisci l'indirizzo del link:" + +#: ../../include/conversation.php:992 +msgid "Please enter a video link/URL:" +msgstr "Inserisci l'indirizzo del video:" + +#: ../../include/conversation.php:993 +msgid "Please enter an audio link/URL:" +msgstr "Inserisci l'indirizzo dell'audio:" + +#: ../../include/conversation.php:994 +msgid "Tag term:" +msgstr "Tag:" + +#: ../../include/conversation.php:995 ../../mod/filer.php:35 +msgid "Save to Folder:" +msgstr "Salva nella cartella:" + +#: ../../include/conversation.php:996 +msgid "Where are you right now?" +msgstr "Dove sei ora?" + +#: ../../include/conversation.php:1011 ../../mod/photos.php:1051 +msgid "Share" +msgstr "Condividi" + +#: ../../include/conversation.php:1013 +msgid "Page link title" +msgstr "Titolo del link" + +#: ../../include/conversation.php:1015 ../../mod/message.php:295 +#: ../../mod/message.php:427 ../../mod/editwebpage.php:102 +#: ../../mod/editpost.php:77 +msgid "Upload photo" +msgstr "Carica foto" + +#: ../../include/conversation.php:1016 +msgid "upload photo" +msgstr "carica foto" + +#: ../../include/conversation.php:1017 ../../mod/editwebpage.php:103 +#: ../../mod/editpost.php:78 +msgid "Attach file" +msgstr "Allega file" + +#: ../../include/conversation.php:1018 +msgid "attach file" +msgstr "allega file" + +#: ../../include/conversation.php:1019 ../../mod/message.php:296 +#: ../../mod/message.php:428 ../../mod/editwebpage.php:104 +#: ../../mod/editpost.php:79 +msgid "Insert web link" +msgstr "Inserisci un indirizzo web" + +#: ../../include/conversation.php:1020 +msgid "web link" +msgstr "link web" -#: ../../mod/invite.php:103 -#, php-format -msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks. See %s for a list of alternate Friendica " -"sites you can join." -msgstr "" +#: ../../include/conversation.php:1021 +msgid "Insert video link" +msgstr "Inserisci l'indirizzo di un video" -#: ../../mod/invite.php:106 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "" +#: ../../include/conversation.php:1022 +msgid "video link" +msgstr "link video" -#: ../../mod/invite.php:111 -msgid "Send invitations" -msgstr "Invia inviti" +#: ../../include/conversation.php:1023 +msgid "Insert audio link" +msgstr "Inserisci l'indirizzo di un audio" -#: ../../mod/invite.php:112 -msgid "Enter email addresses, one per line:" -msgstr "Inserisci gli indirizzi email, uno per riga:" +#: ../../include/conversation.php:1024 +msgid "audio link" +msgstr "link audio" -#: ../../mod/invite.php:114 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "" +#: ../../include/conversation.php:1025 ../../mod/editwebpage.php:108 +#: ../../mod/editpost.php:83 +msgid "Set your location" +msgstr "La tua località" -#: ../../mod/invite.php:116 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Sarà necessario fornire questo codice invito: $invite_code" +#: ../../include/conversation.php:1026 +msgid "set location" +msgstr "inserisci la località" -#: ../../mod/invite.php:116 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Una volta registrato, connettiti con me dal mio profilo:" +#: ../../include/conversation.php:1027 ../../mod/editwebpage.php:109 +#: ../../mod/editpost.php:84 +msgid "Clear browser location" +msgstr "Rimuovi la località data dal browser" -#: ../../mod/invite.php:118 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "" +#: ../../include/conversation.php:1028 +msgid "clear location" +msgstr "rimuovi la località" -#: ../../mod/dfrn_confirm.php:119 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "" +#: ../../include/conversation.php:1030 ../../mod/editwebpage.php:122 +#: ../../mod/editpost.php:97 +msgid "Set title" +msgstr "Scegli un titolo" -#: ../../mod/dfrn_confirm.php:237 -msgid "Response from remote site was not understood." -msgstr "Errore di comunicazione con l'altro sito." +#: ../../include/conversation.php:1033 ../../mod/editwebpage.php:124 +#: ../../mod/editpost.php:99 +msgid "Categories (comma-separated list)" +msgstr "Categorie (separate da virgola)" -#: ../../mod/dfrn_confirm.php:246 -msgid "Unexpected response from remote site: " -msgstr "La risposta dell'altro sito non può essere gestita: " +#: ../../include/conversation.php:1035 ../../mod/editwebpage.php:111 +#: ../../mod/editpost.php:86 +msgid "Permission settings" +msgstr "Impostazioni permessi" -#: ../../mod/dfrn_confirm.php:254 -msgid "Confirmation completed successfully." -msgstr "Conferma completata con successo." +#: ../../include/conversation.php:1036 +msgid "permissions" +msgstr "permessi" -#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270 -#: ../../mod/dfrn_confirm.php:277 -msgid "Remote site reported: " -msgstr "Il sito remoto riporta: " +#: ../../include/conversation.php:1044 ../../mod/editwebpage.php:119 +#: ../../mod/editpost.php:94 +msgid "Public post" +msgstr "Articolo pubblico" -#: ../../mod/dfrn_confirm.php:268 -msgid "Temporary failure. Please wait and try again." -msgstr "Problema temporaneo. Attendi e riprova." +#: ../../include/conversation.php:1046 ../../mod/editwebpage.php:125 +#: ../../mod/editpost.php:100 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Per esempio: mario@esempio.com, simona@esempio.com" -#: ../../mod/dfrn_confirm.php:275 -msgid "Introduction failed or was revoked." -msgstr "La presentazione ha generato un errore o è stata revocata." +#: ../../include/items.php:157 ../../mod/like.php:55 ../../mod/group.php:74 +#: ../../mod/profperm.php:28 ../../index.php:339 +msgid "Permission denied" +msgstr "Permesso negato" -#: ../../mod/dfrn_confirm.php:420 -msgid "Unable to set contact photo." -msgstr "Impossibile impostare la foto del contatto." +#: ../../include/items.php:3247 ../../mod/page.php:63 ../../mod/viewsrc.php:18 +#: ../../mod/home.php:64 ../../mod/admin.php:142 ../../mod/admin.php:677 +#: ../../mod/admin.php:876 ../../mod/display.php:33 +msgid "Item not found." +msgstr "Elemento non trovato." -#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:608 -#: ../../include/conversation.php:171 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s e %2$s adesso sono amici" +#: ../../include/items.php:3419 +msgid "Archives" +msgstr "Archivi" -#: ../../mod/dfrn_confirm.php:562 -#, php-format -msgid "No user record found for '%s' " -msgstr "Nessun utente trovato '%s'" +#: ../../include/items.php:3580 ../../mod/group.php:44 ../../mod/group.php:146 +msgid "Collection not found." +msgstr "Gruppo non trovato." -#: ../../mod/dfrn_confirm.php:572 -msgid "Our site encryption key is apparently messed up." -msgstr "La nostra chiave di criptazione del sito sembra essere corrotta." +#: ../../include/items.php:3590 +msgid "Collection has no members." +msgstr "Il gruppo è vuoto." -#: ../../mod/dfrn_confirm.php:583 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo." +#: ../../include/items.php:3606 +msgid "Connection not found." +msgstr "Gruppo non trovato." -#: ../../mod/dfrn_confirm.php:604 -msgid "Contact record was not found for you on our site." -msgstr "Il contatto non è stato trovato sul nostro sito." +#: ../../include/bbcode.php:94 ../../include/bbcode.php:442 +#: ../../include/bbcode.php:445 +msgid "Image/photo" +msgstr "Immagine" -#: ../../mod/dfrn_confirm.php:618 +#: ../../include/bbcode.php:161 #, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "La chiave pubblica del sito non è disponibile per l'URL %s" +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s ha scritto %2$s seguente %3$s" -#: ../../mod/dfrn_confirm.php:638 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare." +#: ../../include/bbcode.php:163 +msgid "post" +msgstr "l'articolo" -#: ../../mod/dfrn_confirm.php:649 -msgid "Unable to set your contact credentials on our system." -msgstr "Impossibile impostare le credenziali del tuo contatto sul nostro sistema." +#: ../../include/bbcode.php:402 ../../include/bbcode.php:422 +msgid "$1 wrote:" +msgstr "$1 ha scritto:" -#: ../../mod/dfrn_confirm.php:716 -msgid "Unable to update your contact profile details on our system" -msgstr "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema" +#: ../../include/bbcode.php:449 ../../include/bbcode.php:450 +msgid "Encrypted content" +msgstr "Contenuto crittografato" -#: ../../mod/dfrn_confirm.php:750 -#, php-format -msgid "Connection accepted at %s" -msgstr "Connession accettata su %s" +#: ../../include/security.php:49 +msgid "Welcome " +msgstr "Ciao" -#: ../../mod/dfrn_confirm.php:799 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "" +#: ../../include/security.php:50 +msgid "Please upload a profile photo." +msgstr "Carica una foto per il profilo!" -#: ../../addon/fromgplus/fromgplus.php:29 -msgid "Google+ Import Settings" -msgstr "" +#: ../../include/security.php:53 +msgid "Welcome back " +msgstr "Ciao, è bello rivederti" -#: ../../addon/fromgplus/fromgplus.php:32 -msgid "Enable Google+ Import" -msgstr "" +#: ../../include/security.php:357 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "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." -#: ../../addon/fromgplus/fromgplus.php:35 -msgid "Google Account ID" -msgstr "" +#: ../../mod/common.php:10 +msgid "No channel." +msgstr "Nessun canale." -#: ../../addon/fromgplus/fromgplus.php:55 -msgid "Google+ Import Settings saved." -msgstr "" +#: ../../mod/common.php:47 +msgid "Common connections" +msgstr "Contatti in comune" -#: ../../addon/facebook/facebook.php:523 -msgid "Facebook disabled" -msgstr "Facebook disabilitato" +#: ../../mod/common.php:52 +msgid "No connections in common." +msgstr "Nessun contatto in comune." -#: ../../addon/facebook/facebook.php:528 -msgid "Updating contacts" -msgstr "Aggiornamento contatti" +#: ../../mod/events.php:66 +msgid "Event title and start time are required." +msgstr "Sono necessari il titolo e l'ora d'inizio dell'evento." -#: ../../addon/facebook/facebook.php:551 ../../addon/fbpost/fbpost.php:192 -msgid "Facebook API key is missing." -msgstr "Chiave API Facebook mancante." +#: ../../mod/events.php:281 +msgid "l, F j" +msgstr "l j F" -#: ../../addon/facebook/facebook.php:558 -msgid "Facebook Connect" -msgstr "Facebook Connect" +#: ../../mod/events.php:303 +msgid "Edit event" +msgstr "Modifca l'evento" -#: ../../addon/facebook/facebook.php:564 -msgid "Install Facebook connector for this account." -msgstr "Installa Facebook connector per questo account" +#: ../../mod/events.php:349 +msgid "Create New Event" +msgstr "Crea un nuovo evento" -#: ../../addon/facebook/facebook.php:571 -msgid "Remove Facebook connector" -msgstr "Rimuovi Facebook connector" +#: ../../mod/events.php:350 +msgid "Previous" +msgstr "Precendente" -#: ../../addon/facebook/facebook.php:576 ../../addon/fbpost/fbpost.php:217 -msgid "" -"Re-authenticate [This is necessary whenever your Facebook password is " -"changed.]" -msgstr "Ri-autentica [Questo è necessario ogni volta che cambia la password di Facebook.]" +#: ../../mod/events.php:351 ../../mod/setup.php:237 +msgid "Next" +msgstr "Successivo" -#: ../../addon/facebook/facebook.php:583 ../../addon/fbpost/fbpost.php:224 -msgid "Post to Facebook by default" -msgstr "Invia sempre a Facebook" +#: ../../mod/events.php:425 +msgid "hour:minute" +msgstr "ora:minuti" -#: ../../addon/facebook/facebook.php:589 -msgid "" -"Facebook friend linking has been disabled on this site. The following " -"settings will have no effect." -msgstr "" +#: ../../mod/events.php:435 +msgid "Event details" +msgstr "Dettagli evento" -#: ../../addon/facebook/facebook.php:593 -msgid "" -"Facebook friend linking has been disabled on this site. If you disable it, " -"you will be unable to re-enable it." -msgstr "" +#: ../../mod/events.php:436 +#, php-format +msgid "Format is %s %s. Starting date and Title are required." +msgstr "Il formato è %s %s. L'inizio e il titolo sono obbligatori." -#: ../../addon/facebook/facebook.php:596 -msgid "Link all your Facebook friends and conversations on this website" -msgstr "Collega tutti i tuoi amici di Facebook e le conversazioni su questo sito" +#: ../../mod/events.php:438 +msgid "Event Starts:" +msgstr "Inizio:" -#: ../../addon/facebook/facebook.php:598 -msgid "" -"Facebook conversations consist of your profile wall and your friend" -" stream." -msgstr "Le conversazione su Facebook sono composte dai i tuoi messsaggi in bacheca e dai messaggi dei tuoi amici" +#: ../../mod/events.php:438 ../../mod/events.php:452 +msgid "Required" +msgstr "Obbligatorio" -#: ../../addon/facebook/facebook.php:599 -msgid "On this website, your Facebook friend stream is only visible to you." -msgstr "Su questo sito, i messaggi dai vostri amici su Facebook è visibile solo a te." +#: ../../mod/events.php:441 +msgid "Finish date/time is not known or not relevant" +msgstr "La data/ora di fine non è rilevante" -#: ../../addon/facebook/facebook.php:600 -msgid "" -"The following settings determine the privacy of your Facebook profile wall " -"on this website." -msgstr "Le seguenti impostazioni determinano la privacy della vostra bacheca di Facebook su questo sito." +#: ../../mod/events.php:443 +msgid "Event Finishes:" +msgstr "Fine:" -#: ../../addon/facebook/facebook.php:604 -msgid "" -"On this website your Facebook profile wall conversations will only be " -"visible to you" -msgstr "Su questo sito, le conversazioni sulla tua bacheca di Facebook saranno visibili solo a te" +#: ../../mod/events.php:446 +msgid "Adjust for viewer timezone" +msgstr "Adatta al fuso orario di chi legge" -#: ../../addon/facebook/facebook.php:609 -msgid "Do not import your Facebook profile wall conversations" -msgstr "Non importare le conversazione sulla tua bacheca di Facebook" +#: ../../mod/events.php:448 +msgid "Description:" +msgstr "Descrizione:" -#: ../../addon/facebook/facebook.php:611 -msgid "" -"If you choose to link conversations and leave both of these boxes unchecked," -" your Facebook profile wall will be merged with your profile wall on this " -"website and your privacy settings on this website will be used to determine " -"who may see the conversations." -msgstr "Se scegli di collegare le conversazioni e lasci entrambi questi box non segnati, la tua bacheca di Facebook sarà fusa con la tua bacheca su questao sito, e le impostazioni di privacy su questo sito saranno usate per decidere chi potrà vedere le conversazioni." +#: ../../mod/events.php:452 +msgid "Title:" +msgstr "Titolo:" -#: ../../addon/facebook/facebook.php:616 -msgid "Comma separated applications to ignore" -msgstr "Elenco separato da virgola di applicazioni da ignorare" +#: ../../mod/events.php:454 +msgid "Share this event" +msgstr "Condividi questo evento" -#: ../../addon/facebook/facebook.php:700 -msgid "Problems with Facebook Real-Time Updates" -msgstr "Problemi con gli aggiornamenti in tempo reale con Facebook" +#: ../../mod/thing.php:109 +msgid "Object store: failed" +msgstr "Memorizzazione oggetto: fallita" -#: ../../addon/facebook/facebook.php:729 -msgid "Facebook Connector Settings" -msgstr "Impostazioni del connettore Facebook" +#: ../../mod/thing.php:113 +msgid "thing/stuff added" +msgstr "oggetto aggiunto" -#: ../../addon/facebook/facebook.php:744 ../../addon/fbpost/fbpost.php:255 -msgid "Facebook API Key" -msgstr "Facebook API Key" +#: ../../mod/thing.php:129 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../addon/facebook/facebook.php:754 ../../addon/fbpost/fbpost.php:262 -msgid "" -"Error: it appears that you have specified the App-ID and -Secret in your " -".htconfig.php file. As long as they are specified there, they cannot be set " -"using this form.

    " -msgstr "Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.

    " +#: ../../mod/thing.php:175 +msgid "not yet implemented." +msgstr "non ancora implementato." -#: ../../addon/facebook/facebook.php:759 -msgid "" -"Error: the given API Key seems to be incorrect (the application access token" -" could not be retrieved)." -msgstr "Error: the given API Key seems to be incorrect (the application access token could not be retrieved)." +#: ../../mod/thing.php:181 +msgid "Add Stuff to your Profile" +msgstr "Aggiungi un oggetto al tuo profilo" -#: ../../addon/facebook/facebook.php:761 -msgid "The given API Key seems to work correctly." -msgstr "L' API Key fornita sembra funzionare correttamente." +#: ../../mod/thing.php:183 +msgid "Select a profile" +msgstr "Scegli un profilo" -#: ../../addon/facebook/facebook.php:763 -msgid "" -"The correctness of the API Key could not be detected. Something strange's " -"going on." -msgstr "" +#: ../../mod/thing.php:185 +msgid "Select a category of stuff. e.g. I ______ something" +msgstr "Scegli una categoria di oggetto. Esempio: Io _____ qualcosa" -#: ../../addon/facebook/facebook.php:766 ../../addon/fbpost/fbpost.php:264 -msgid "App-ID / API-Key" -msgstr "App-ID / API-Key" +#: ../../mod/thing.php:187 +msgid "Name of thing or stuff e.g. something" +msgstr "Nome dell'oggetto" -#: ../../addon/facebook/facebook.php:767 ../../addon/fbpost/fbpost.php:265 -msgid "Application secret" -msgstr "Application secret" +#: ../../mod/thing.php:188 +msgid "URL of thing or stuff (optional)" +msgstr "Indirizzo web dell'oggetto (se cel'ha)" -#: ../../addon/facebook/facebook.php:768 -#, php-format -msgid "Polling Interval in minutes (minimum %1$s minutes)" -msgstr "" +#: ../../mod/thing.php:189 +msgid "URL for photo of thing or stuff (optional)" +msgstr "Indirizzo web della foto dell'oggetto (facoltativo)" -#: ../../addon/facebook/facebook.php:769 -msgid "" -"Synchronize comments (no comments on Facebook are missed, at the cost of " -"increased system load)" -msgstr "" +#: ../../mod/invite.php:25 +msgid "Total invitation limit exceeded." +msgstr "Hai superato il numero massimo di inviti." -#: ../../addon/facebook/facebook.php:773 -msgid "Real-Time Updates" -msgstr "Aggiornamenti Real-Time" +#: ../../mod/invite.php:47 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: non è un indirizzo email valido." -#: ../../addon/facebook/facebook.php:777 -msgid "Real-Time Updates are activated." -msgstr "Gli aggiornamenti in tempo reale sono attivi" +#: ../../mod/invite.php:74 +msgid "Please join us on Red" +msgstr "Vieni con noi su Red" -#: ../../addon/facebook/facebook.php:778 -msgid "Deactivate Real-Time Updates" -msgstr "Disattiva gli aggiornamenti in tempo reale" +#: ../../mod/invite.php:85 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario." -#: ../../addon/facebook/facebook.php:780 -msgid "Real-Time Updates not activated." -msgstr "Gli aggiornamenti in tempo reale non sono attivi" +#: ../../mod/invite.php:90 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: la consegna del messaggio è fallita." -#: ../../addon/facebook/facebook.php:780 -msgid "Activate Real-Time Updates" -msgstr "Attiva gli aggiornamenti in tempo reale" +#: ../../mod/invite.php:94 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d messaggio inviato." +msgstr[1] "%d messaggi inviati." -#: ../../addon/facebook/facebook.php:799 ../../addon/fbpost/fbpost.php:282 -#: ../../addon/dav/friendica/layout.fnk.php:361 -msgid "The new values have been saved." -msgstr "I nuovi valori sono stati salvati." +#: ../../mod/invite.php:113 +msgid "You have no more invitations available" +msgstr "Non hai altri inviti disponibili" -#: ../../addon/facebook/facebook.php:823 ../../addon/fbpost/fbpost.php:301 -msgid "Post to Facebook" -msgstr "Invia a Facebook" +#: ../../mod/invite.php:139 +msgid "Send invitations" +msgstr "Spedisci inviti" -#: ../../addon/facebook/facebook.php:921 ../../addon/fbpost/fbpost.php:399 -msgid "" -"Post to Facebook cancelled because of multi-network access permission " -"conflict." -msgstr "Invio su Facebook annullato per un conflitto nei permessi di accesso." +#: ../../mod/invite.php:140 +msgid "Enter email addresses, one per line:" +msgstr "Inserisci gli indirizzi email, uno per riga:" -#: ../../addon/facebook/facebook.php:1149 ../../addon/fbpost/fbpost.php:610 -msgid "View on Friendica" -msgstr "Vedi su Friendica" +#: ../../mod/invite.php:141 ../../mod/message.php:292 +#: ../../mod/message.php:423 +msgid "Your message:" +msgstr "Il tuo messaggio:" -#: ../../addon/facebook/facebook.php:1182 ../../addon/fbpost/fbpost.php:643 -msgid "Facebook post failed. Queued for retry." -msgstr "Invio a Facebook fallito. In attesa di riprovare." +#: ../../mod/invite.php:142 +msgid "" +"You are cordially invited to join me and some other close friends on the Red" +" Matrix - a revolutionary new decentralised social and information tool." +msgstr "Questo è un caloroso invito ad unirti a me e altri amici su Red Matrix - uno strumento di comunicazione social rivoluzionario e decentrato." -#: ../../addon/facebook/facebook.php:1222 ../../addon/fbpost/fbpost.php:683 -msgid "Your Facebook connection became invalid. Please Re-authenticate." -msgstr "" +#: ../../mod/invite.php:144 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Sarà necessario fornire questo codice invito: $invite_code" -#: ../../addon/facebook/facebook.php:1223 ../../addon/fbpost/fbpost.php:684 -msgid "Facebook connection became invalid" -msgstr "" +#: ../../mod/invite.php:146 +msgid "Please visit my channel at" +msgstr "Puoi visitare il mio canale su" -#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:685 -#, php-format +#: ../../mod/invite.php:150 msgid "" -"Hi %1$s,\n" -"\n" -"The connection between your accounts on %2$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3$sre-authenticate the Facebook-connector%4$s." -msgstr "" +"Once you have registered, please connect with my Red Matrix channel address:" +msgstr "Una volta che avrai fatto la registrazione, potrai connetterti col mio canale Red Matrix a questo indirizzo:" -#: ../../addon/snautofollow/snautofollow.php:32 -msgid "StatusNet AutoFollow settings updated." -msgstr "" +#: ../../mod/invite.php:152 +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" -#: ../../addon/snautofollow/snautofollow.php:56 -msgid "StatusNet AutoFollow Settings" -msgstr "" +#: ../../mod/allfriends.php:35 +#, php-format +msgid "Friends of %s" +msgstr "Amici di %s" -#: ../../addon/snautofollow/snautofollow.php:58 -msgid "Automatically follow any StatusNet followers/mentioners" -msgstr "" +#: ../../mod/allfriends.php:41 +msgid "No friends to display." +msgstr "Nessun amico da visualizzare." -#: ../../addon/bg/bg.php:51 -msgid "Bg settings updated." -msgstr "" +#: ../../mod/webpages.php:8 ../../mod/profile.php:8 ../../boot.php:1540 +msgid "Requested profile is not available." +msgstr "Il profilo richiesto non è disponibile." -#: ../../addon/bg/bg.php:82 -msgid "Bg Settings" -msgstr "" +#: ../../mod/webpages.php:84 +msgid "View" +msgstr "Guarda" -#: ../../addon/bg/bg.php:84 ../../addon/numfriends/numfriends.php:79 -msgid "How many contacts to display on profile sidebar" -msgstr "Quanti contatti visualizzare nella barra laterale del profilo" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autorizza la app" -#: ../../addon/privacy_image_cache/privacy_image_cache.php:260 -msgid "Lifetime of the cache (in hours)" -msgstr "" +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Torna alla app e inserisci questo codice di sicurezza:" -#: ../../addon/privacy_image_cache/privacy_image_cache.php:265 -msgid "Cache Statistics" -msgstr "" +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Accedi al sito per continuare." -#: ../../addon/privacy_image_cache/privacy_image_cache.php:268 -msgid "Number of items" -msgstr "" +#: ../../mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?" -#: ../../addon/privacy_image_cache/privacy_image_cache.php:270 -msgid "Size of the cache" -msgstr "" +#: ../../mod/api.php:105 ../../mod/settings.php:964 ../../mod/settings.php:969 +#: ../../mod/settings.php:992 ../../mod/settings.php:994 +#: ../../mod/settings.php:995 ../../mod/settings.php:996 +#: ../../mod/profiles.php:506 +msgid "Yes" +msgstr "Si" -#: ../../addon/privacy_image_cache/privacy_image_cache.php:272 -msgid "Delete the whole cache" -msgstr "" +#: ../../mod/api.php:106 ../../mod/settings.php:964 ../../mod/settings.php:969 +#: ../../mod/settings.php:992 ../../mod/settings.php:994 +#: ../../mod/settings.php:995 ../../mod/settings.php:996 +#: ../../mod/profiles.php:507 +msgid "No" +msgstr "No" -#: ../../addon/fbpost/fbpost.php:172 -msgid "Facebook Post disabled" -msgstr "" +#: ../../mod/lastpost.php:16 ../../mod/channel.php:16 +msgid "You must be logged in to see this page." +msgstr "Devi aver effettuato l'accesso per vedere questa pagina." -#: ../../addon/fbpost/fbpost.php:199 -msgid "Facebook Post" -msgstr "" +#: ../../mod/apps.php:8 +msgid "No installed applications." +msgstr "Nessuna app installata." -#: ../../addon/fbpost/fbpost.php:205 -msgid "Install Facebook Post connector for this account." -msgstr "" +#: ../../mod/apps.php:13 +msgid "Applications" +msgstr "Applicazioni" -#: ../../addon/fbpost/fbpost.php:212 -msgid "Remove Facebook Post connector" -msgstr "" +#: ../../mod/page.php:38 +msgid "Invalid item." +msgstr "Elemento non valido." -#: ../../addon/fbpost/fbpost.php:240 -msgid "Facebook Post Settings" -msgstr "" +#: ../../mod/page.php:50 ../../mod/chanview.php:78 ../../mod/home.php:51 +#: ../../mod/magic.php:63 ../../mod/wall_upload.php:35 +msgid "Channel not found." +msgstr "Canale non trovato." -#: ../../addon/widgets/widget_like.php:58 -#, php-format -msgid "%d person likes this" -msgid_plural "%d people like this" -msgstr[0] "piace a %d persona" -msgstr[1] "piace a %d persone" +#: ../../mod/attach.php:9 +msgid "Item not available." +msgstr "Elemento non disponibile." -#: ../../addon/widgets/widget_like.php:61 -#, php-format -msgid "%d person doesn't like this" -msgid_plural "%d people don't like this" -msgstr[0] "non piace a %d persona" -msgstr[1] "non piace a %d persone" +#: ../../mod/setup.php:142 +msgid "Red Matrix Server - Setup" +msgstr "Red Matrix Server - Installazione" -#: ../../addon/widgets/widget_friendheader.php:40 -msgid "Get added to this list!" -msgstr "" +#: ../../mod/setup.php:148 +msgid "Could not connect to database." +msgstr " Impossibile connettersi al database." -#: ../../addon/widgets/widgets.php:56 -msgid "Generate new key" -msgstr "Genera una nuova chiave" +#: ../../mod/setup.php:152 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS." -#: ../../addon/widgets/widgets.php:59 -msgid "Widgets key" -msgstr "Chiave Widget" +#: ../../mod/setup.php:157 +msgid "Could not create table." +msgstr "Impossibile creare le tabelle." -#: ../../addon/widgets/widgets.php:61 -msgid "Widgets available" -msgstr "Widget disponibili" +#: ../../mod/setup.php:163 +msgid "Your site database has been installed." +msgstr "Il database del sito è stato installato." -#: ../../addon/widgets/widget_friends.php:40 -msgid "Connect on Friendica!" -msgstr "Connettiti su Friendica!" +#: ../../mod/setup.php:168 +msgid "" +"You may need to import the file \"install/database.sql\" manually using " +"phpmyadmin or mysql." +msgstr "Potresti dover importare il file 'install/database.sql' manualmente usando phpmyadmin o mysql." -#: ../../addon/morepokes/morepokes.php:19 -msgid "bitchslap" -msgstr "" +#: ../../mod/setup.php:169 ../../mod/setup.php:236 ../../mod/setup.php:565 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Leggi il file 'install/INSTALL.txt'." -#: ../../addon/morepokes/morepokes.php:19 -msgid "bitchslapped" -msgstr "" +#: ../../mod/setup.php:233 +msgid "System check" +msgstr "Verifica del sistema" -#: ../../addon/morepokes/morepokes.php:20 -msgid "shag" -msgstr "" +#: ../../mod/setup.php:238 +msgid "Check again" +msgstr "Verifica di nuovo" -#: ../../addon/morepokes/morepokes.php:20 -msgid "shagged" -msgstr "" +#: ../../mod/setup.php:260 +msgid "Database connection" +msgstr "Connessione al database" -#: ../../addon/morepokes/morepokes.php:21 -msgid "do something obscenely biological to" -msgstr "" +#: ../../mod/setup.php:261 +msgid "" +"In order to install Red Matrix we need to know how to connect to your " +"database." +msgstr "Per installare Red Matrix è necessario conoscere i parametri di connessione al database." -#: ../../addon/morepokes/morepokes.php:21 -msgid "did something obscenely biological to" -msgstr "" +#: ../../mod/setup.php:262 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." -#: ../../addon/morepokes/morepokes.php:22 -msgid "point out the poke feature to" -msgstr "" +#: ../../mod/setup.php:263 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Il database deve già esistere. Se non esiste, crealo prima di continuare." -#: ../../addon/morepokes/morepokes.php:22 -msgid "pointed out the poke feature to" -msgstr "" +#: ../../mod/setup.php:267 +msgid "Database Server Name" +msgstr "Server del database" -#: ../../addon/morepokes/morepokes.php:23 -msgid "declare undying love for" -msgstr "" +#: ../../mod/setup.php:267 +msgid "Default is localhost" +msgstr "'localhost' è il predefinito" -#: ../../addon/morepokes/morepokes.php:23 -msgid "declared undying love for" -msgstr "" +#: ../../mod/setup.php:268 +msgid "Database Port" +msgstr "Port del database" -#: ../../addon/morepokes/morepokes.php:24 -msgid "patent" -msgstr "" +#: ../../mod/setup.php:268 +msgid "Communication port number - use 0 for default" +msgstr "Scrivi 0 per usare il valore standard" -#: ../../addon/morepokes/morepokes.php:24 -msgid "patented" -msgstr "" +#: ../../mod/setup.php:269 +msgid "Database Login Name" +msgstr "Utente database" -#: ../../addon/morepokes/morepokes.php:25 -msgid "stroke beard" -msgstr "" +#: ../../mod/setup.php:270 +msgid "Database Login Password" +msgstr "Password utente database" -#: ../../addon/morepokes/morepokes.php:25 -msgid "stroked their beard at" -msgstr "" +#: ../../mod/setup.php:271 +msgid "Database Name" +msgstr "Nome database" -#: ../../addon/morepokes/morepokes.php:26 -msgid "" -"bemoan the declining standards of modern secondary and tertiary education to" -msgstr "" +#: ../../mod/setup.php:273 ../../mod/setup.php:315 +msgid "Site administrator email address" +msgstr "Indirizzo email dell'amministratore del sito" -#: ../../addon/morepokes/morepokes.php:26 +#: ../../mod/setup.php:273 ../../mod/setup.php:315 msgid "" -"bemoans the declining standards of modern secondary and tertiary education " -"to" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:27 -msgid "hug" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:27 -msgid "hugged" -msgstr "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web." -#: ../../addon/morepokes/morepokes.php:28 -msgid "kiss" -msgstr "" +#: ../../mod/setup.php:274 ../../mod/setup.php:317 +msgid "Website URL" +msgstr "URL completo del sito" -#: ../../addon/morepokes/morepokes.php:28 -msgid "kissed" -msgstr "" +#: ../../mod/setup.php:274 ../../mod/setup.php:317 +msgid "Please use SSL (https) URL if available." +msgstr "Se disponibile, usa l'indirizzo SSL (https)." -#: ../../addon/morepokes/morepokes.php:29 -msgid "raise eyebrows at" -msgstr "" +#: ../../mod/setup.php:277 ../../mod/setup.php:320 +msgid "Please select a default timezone for your website" +msgstr "Seleziona il fuso orario predefinito per il tuo sito web" -#: ../../addon/morepokes/morepokes.php:29 -msgid "raised their eyebrows at" -msgstr "" +#: ../../mod/setup.php:304 +msgid "Site settings" +msgstr "Impostazioni del sito" -#: ../../addon/morepokes/morepokes.php:30 -msgid "insult" -msgstr "" +#: ../../mod/setup.php:360 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web" -#: ../../addon/morepokes/morepokes.php:30 -msgid "insulted" -msgstr "" +#: ../../mod/setup.php:361 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." +msgstr "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron." -#: ../../addon/morepokes/morepokes.php:31 -msgid "praise" -msgstr "" +#: ../../mod/setup.php:365 +msgid "PHP executable path" +msgstr "Path del comando PHP" -#: ../../addon/morepokes/morepokes.php:31 -msgid "praised" -msgstr "" +#: ../../mod/setup.php:365 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione." -#: ../../addon/morepokes/morepokes.php:32 -msgid "be dubious of" -msgstr "" +#: ../../mod/setup.php:370 +msgid "Command line PHP" +msgstr "PHP da riga di comando" -#: ../../addon/morepokes/morepokes.php:32 -msgid "was dubious of" -msgstr "" +#: ../../mod/setup.php:379 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." -#: ../../addon/morepokes/morepokes.php:33 -msgid "eat" -msgstr "" +#: ../../mod/setup.php:380 +msgid "This is required for message delivery to work." +msgstr "E' necessario perché funzioni la consegna dei messaggi." -#: ../../addon/morepokes/morepokes.php:33 -msgid "ate" -msgstr "" +#: ../../mod/setup.php:382 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../addon/morepokes/morepokes.php:34 -msgid "giggle and fawn at" -msgstr "" +#: ../../mod/setup.php:403 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di criptazione" -#: ../../addon/morepokes/morepokes.php:34 -msgid "giggled and fawned at" -msgstr "" +#: ../../mod/setup.php:404 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../addon/morepokes/morepokes.php:35 -msgid "doubt" -msgstr "" +#: ../../mod/setup.php:406 +msgid "Generate encryption keys" +msgstr "Genera chiavi di criptazione" -#: ../../addon/morepokes/morepokes.php:35 -msgid "doubted" -msgstr "" +#: ../../mod/setup.php:413 +msgid "libCurl PHP module" +msgstr "modulo PHP libCurl" -#: ../../addon/morepokes/morepokes.php:36 -msgid "glare" -msgstr "" +#: ../../mod/setup.php:414 +msgid "GD graphics PHP module" +msgstr "modulo PHP GD graphics" -#: ../../addon/morepokes/morepokes.php:36 -msgid "glared at" -msgstr "" +#: ../../mod/setup.php:415 +msgid "OpenSSL PHP module" +msgstr "modulo PHP OpenSSL" -#: ../../addon/yourls/yourls.php:55 -msgid "YourLS Settings" -msgstr "Impostazioni YourLS" +#: ../../mod/setup.php:416 +msgid "mysqli PHP module" +msgstr "modulo PHP mysqli" -#: ../../addon/yourls/yourls.php:57 -msgid "URL: http://" -msgstr "URL: http://" +#: ../../mod/setup.php:417 +msgid "mb_string PHP module" +msgstr "modulo PHP mb_string" -#: ../../addon/yourls/yourls.php:62 -msgid "Username:" -msgstr "Nome utente:" +#: ../../mod/setup.php:418 +msgid "mcrypt PHP module" +msgstr "modulo PHP mcrypt" -#: ../../addon/yourls/yourls.php:67 -msgid "Password:" -msgstr "Password:" +#: ../../mod/setup.php:423 ../../mod/setup.php:425 +msgid "Apache mod_rewrite module" +msgstr "modulo Apache mod_rewrite" -#: ../../addon/yourls/yourls.php:72 -msgid "Use SSL " -msgstr "Usa SSL" +#: ../../mod/setup.php:423 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato" -#: ../../addon/yourls/yourls.php:92 -msgid "yourls Settings saved." -msgstr "Impostazioni yourls salvate." +#: ../../mod/setup.php:429 ../../mod/setup.php:432 +msgid "proc_open" +msgstr "proc_open" -#: ../../addon/ljpost/ljpost.php:39 -msgid "Post to LiveJournal" -msgstr "Posta su LiveJournal" +#: ../../mod/setup.php:429 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini" -#: ../../addon/ljpost/ljpost.php:70 -msgid "LiveJournal Post Settings" -msgstr "Impostazioni post LiveJournal" +#: ../../mod/setup.php:437 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato." -#: ../../addon/ljpost/ljpost.php:72 -msgid "Enable LiveJournal Post Plugin" -msgstr "Abilita il plugin LiveJournal" +#: ../../mod/setup.php:441 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato." -#: ../../addon/ljpost/ljpost.php:77 -msgid "LiveJournal username" -msgstr "LiveJournal username" +#: ../../mod/setup.php:445 +msgid "Error: openssl PHP module required but not installed." +msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato." -#: ../../addon/ljpost/ljpost.php:82 -msgid "LiveJournal password" -msgstr "LiveJournal password" +#: ../../mod/setup.php:449 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Errore: il modulo mysqli di PHP è richiesto ma non installato." -#: ../../addon/ljpost/ljpost.php:87 -msgid "Post to LiveJournal by default" -msgstr "Posta su LiveJournal di default" +#: ../../mod/setup.php:453 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Errore: il modulo PHP mb_string è richiesto ma non installato." -#: ../../addon/nsfw/nsfw.php:78 -msgid "Not Safe For Work (General Purpose Content Filter) settings" -msgstr "Impostazioni per NSWF (Filtro Contenuti Generico)" +#: ../../mod/setup.php:457 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Errore: il modulo PHP mcrypt è richiesto ma non installato." -#: ../../addon/nsfw/nsfw.php:80 +#: ../../mod/setup.php:473 msgid "" -"This plugin looks in posts for the words/text you specify below, and " -"collapses any content containing those keywords so it is not displayed at " -"inappropriate times, such as sexual innuendo that may be improper in a work " -"setting. It is polite and recommended to tag any content containing nudity " -"with #NSFW. This filter can also match any other word/text you specify, and" -" can thereby be used as a general purpose content filter." -msgstr "Questo plugin cerca nei messagi le parole/testo che inserisci qui sotto, e collassa i messaggi che li contengono, per non mostrare contenuto inappropriato nel momento sbagliato, come contenuto a sfondo sessuale che puo' essere inappropriato in un ambiente di lavoro. E' educato (e consigliato) taggare i messaggi che contengono nudità con #NSFW (Not Safe For Work: Non Sicuro Per il Lavoro). Questo filtro puo' cercare anche qualsiasi parola che inserisci, quindi puo' essere usato come filtro di contenuti generico." - -#: ../../addon/nsfw/nsfw.php:81 -msgid "Enable Content filter" -msgstr "Abilita il Filtro Contenuti" - -#: ../../addon/nsfw/nsfw.php:84 -msgid "Comma separated list of keywords to hide" -msgstr "Elenco separato da virgole di parole da nascondere" - -#: ../../addon/nsfw/nsfw.php:89 -msgid "Use /expression/ to provide regular expressions" -msgstr "Utilizza /espressione/ per inserire espressioni regolari" - -#: ../../addon/nsfw/nsfw.php:105 -msgid "NSFW Settings saved." -msgstr "Impostazioni NSFW salvate." - -#: ../../addon/nsfw/nsfw.php:157 -#, php-format -msgid "%s - Click to open/close" -msgstr "%s - Clicca per aprire / chiudere" - -#: ../../addon/page/page.php:61 ../../addon/page/page.php:91 -#: ../../addon/forumlist/forumlist.php:55 -msgid "Forums" -msgstr "Forum" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo." -#: ../../addon/page/page.php:129 ../../addon/forumlist/forumlist.php:89 -msgid "Forums:" -msgstr "" +#: ../../mod/setup.php:474 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi." -#: ../../addon/page/page.php:165 -msgid "Page settings updated." -msgstr "" +#: ../../mod/setup.php:475 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." +msgstr "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di Red." -#: ../../addon/page/page.php:194 -msgid "Page Settings" -msgstr "" +#: ../../mod/setup.php:476 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni." -#: ../../addon/page/page.php:196 -msgid "How many forums to display on sidebar without paging" -msgstr "" +#: ../../mod/setup.php:479 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php è scrivibile" -#: ../../addon/page/page.php:199 -msgid "Randomise Page/Forum list" -msgstr "" +#: ../../mod/setup.php:489 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Red usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP." -#: ../../addon/page/page.php:202 -msgid "Show pages/forums on profile page" -msgstr "" +#: ../../mod/setup.php:490 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/tpl/smarty3/ under the Red top level " +"folder." +msgstr "Per poter memorizzare i template compilati, il web server deve avere accesso in scrittura alla cartella view/tpl/smarty3/ sotto la cartella di installazione di Red." -#: ../../addon/planets/planets.php:150 -msgid "Planets Settings" -msgstr "" +#: ../../mod/setup.php:491 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Assicurati che il tuo web server sia in esecuzione come un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)." -#: ../../addon/planets/planets.php:152 -msgid "Enable Planets Plugin" -msgstr "" +#: ../../mod/setup.php:492 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/tpl/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "Nota bene: come precauzione, dovresti dare i diritti di scrittura solamente per view/tpl/smarty3/ non per tutti i file di template (.tpl) che contiene." -#: ../../addon/communityhome/communityhome.php:28 -#: ../../addon/communityhome/communityhome.php:34 -#: ../../addon/communityhome/twillingham/communityhome.php:28 -#: ../../addon/communityhome/twillingham/communityhome.php:34 -#: ../../include/nav.php:64 ../../boot.php:912 -msgid "Login" -msgstr "Accedi" +#: ../../mod/setup.php:495 +msgid "view/tpl/smarty3 is writable" +msgstr "view/tpl/smarty3 è scrivibile" -#: ../../addon/communityhome/communityhome.php:29 -#: ../../addon/communityhome/twillingham/communityhome.php:29 -msgid "OpenID" -msgstr "OpenID" +#: ../../mod/setup.php:509 +msgid "SSL certificate validation" +msgstr "Validazione del certificato SSL" -#: ../../addon/communityhome/communityhome.php:38 -#: ../../addon/communityhome/twillingham/communityhome.php:38 -msgid "Latest users" -msgstr "Ultimi utenti" +#: ../../mod/setup.php:509 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito." -#: ../../addon/communityhome/communityhome.php:81 -#: ../../addon/communityhome/twillingham/communityhome.php:81 -msgid "Most active users" -msgstr "Utenti più attivi" +#: ../../mod/setup.php:516 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server." -#: ../../addon/communityhome/communityhome.php:98 -msgid "Latest photos" -msgstr "Ultime foto" +#: ../../mod/setup.php:518 +msgid "Url rewrite is working" +msgstr "Url rewrite funziona correttamente" -#: ../../addon/communityhome/communityhome.php:133 -msgid "Latest likes" -msgstr "Ultimi \"mi piace\"" +#: ../../mod/setup.php:528 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito." -#: ../../addon/communityhome/communityhome.php:155 -#: ../../view/theme/diabook/theme.php:562 ../../include/text.php:1437 -#: ../../include/conversation.php:117 ../../include/conversation.php:245 -msgid "event" -msgstr "l'evento" +#: ../../mod/setup.php:552 +msgid "Errors encountered creating database tables." +msgstr "La creazione delle tabelle del database ha generato errori." -#: ../../addon/dav/common/wdcal_backend.inc.php:92 -#: ../../addon/dav/common/wdcal_backend.inc.php:166 -#: ../../addon/dav/common/wdcal_backend.inc.php:178 -#: ../../addon/dav/common/wdcal_backend.inc.php:206 -#: ../../addon/dav/common/wdcal_backend.inc.php:214 -#: ../../addon/dav/common/wdcal_backend.inc.php:229 -msgid "No access" -msgstr "" +#: ../../mod/setup.php:563 +msgid "

    What next

    " +msgstr "

    I prossimi passi

    " -#: ../../addon/dav/common/wdcal_edit.inc.php:30 -#: ../../addon/dav/common/wdcal_edit.inc.php:738 -msgid "Could not open component for editing" -msgstr "" +#: ../../mod/setup.php:564 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling." -#: ../../addon/dav/common/wdcal_edit.inc.php:140 -#: ../../addon/dav/friendica/layout.fnk.php:143 -#: ../../addon/dav/friendica/layout.fnk.php:422 -msgid "Go back to the calendar" -msgstr "" +#: ../../mod/subthread.php:105 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s sta seguendo %3$s di %2$s" -#: ../../addon/dav/common/wdcal_edit.inc.php:144 -msgid "Event data" -msgstr "" +#: ../../mod/update_network.php:23 ../../mod/update_channel.php:43 +#: ../../mod/update_search.php:46 ../../mod/update_display.php:25 +#: ../../mod/update_community.php:18 +msgid "[Embedded content - reload page to view]" +msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" -#: ../../addon/dav/common/wdcal_edit.inc.php:146 -#: ../../addon/dav/friendica/main.php:239 -msgid "Calendar" -msgstr "" +#: ../../mod/chanview.php:94 +msgid "toggle full screen mode" +msgstr "attiva/disattiva schermo intero" -#: ../../addon/dav/common/wdcal_edit.inc.php:163 -msgid "Special color" -msgstr "" +#: ../../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" -#: ../../addon/dav/common/wdcal_edit.inc.php:169 -msgid "Subject" -msgstr "" +#: ../../mod/settings.php:49 +msgid "Account settings" +msgstr "Impostazioni dell'account" -#: ../../addon/dav/common/wdcal_edit.inc.php:173 -msgid "Starts" -msgstr "" +#: ../../mod/settings.php:55 +msgid "Channel settings" +msgstr "Impostazioni del canale" -#: ../../addon/dav/common/wdcal_edit.inc.php:178 -msgid "Ends" -msgstr "" +#: ../../mod/settings.php:61 +msgid "Additional features" +msgstr "Funzionalità aggiuntive" -#: ../../addon/dav/common/wdcal_edit.inc.php:185 -msgid "Description" -msgstr "" +#: ../../mod/settings.php:67 +msgid "Feature settings" +msgstr "Impostazioni aggiuntive" -#: ../../addon/dav/common/wdcal_edit.inc.php:188 -msgid "Recurrence" -msgstr "" +#: ../../mod/settings.php:73 +msgid "Display settings" +msgstr "Impostazioni grafiche" -#: ../../addon/dav/common/wdcal_edit.inc.php:190 -msgid "Frequency" -msgstr "" +#: ../../mod/settings.php:79 +msgid "Connected apps" +msgstr "App connesse" -#: ../../addon/dav/common/wdcal_edit.inc.php:194 -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Giornalmente" +#: ../../mod/settings.php:85 +msgid "Export channel" +msgstr "Esporta il canale" -#: ../../addon/dav/common/wdcal_edit.inc.php:197 -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Settimanalmente" +#: ../../mod/settings.php:97 +msgid "Automatic Permissions (Advanced)" +msgstr "Permessi predefiniti (avanzato)" -#: ../../addon/dav/common/wdcal_edit.inc.php:200 -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Mensilmente" +#: ../../mod/settings.php:145 +msgid "Missing some important data!" +msgstr "Mancano alcune informazioni importanti!" -#: ../../addon/dav/common/wdcal_edit.inc.php:203 -msgid "Yearly" -msgstr "" +#: ../../mod/settings.php:148 ../../mod/settings.php:633 +msgid "Update" +msgstr "Aggiorna" -#: ../../addon/dav/common/wdcal_edit.inc.php:214 -#: ../../include/datetime.php:288 -msgid "days" -msgstr "giorni" +#: ../../mod/settings.php:261 +msgid "Passwords do not match. Password unchanged." +msgstr "Le password non corrispondono. Password non cambiata." -#: ../../addon/dav/common/wdcal_edit.inc.php:215 -#: ../../include/datetime.php:287 -msgid "weeks" -msgstr "settimane" +#: ../../mod/settings.php:265 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Le password non possono essere vuote. Password non cambiata." -#: ../../addon/dav/common/wdcal_edit.inc.php:216 -#: ../../include/datetime.php:286 -msgid "months" -msgstr "mesi" +#: ../../mod/settings.php:278 +msgid "Password changed." +msgstr "Password cambiata." -#: ../../addon/dav/common/wdcal_edit.inc.php:217 -#: ../../include/datetime.php:285 -msgid "years" -msgstr "anni" +#: ../../mod/settings.php:280 +msgid "Password update failed. Please try again." +msgstr "Aggiornamento password fallito. Prova ancora." -#: ../../addon/dav/common/wdcal_edit.inc.php:218 -msgid "Interval" -msgstr "" +#: ../../mod/settings.php:294 +msgid "Not valid email." +msgstr "Email non valida." -#: ../../addon/dav/common/wdcal_edit.inc.php:218 -msgid "All %select% %time%" -msgstr "" +#: ../../mod/settings.php:297 +msgid "Protected email address. Cannot change to that email." +msgstr "È un indirizzo email riservato. Non puoi sceglierlo." -#: ../../addon/dav/common/wdcal_edit.inc.php:222 -#: ../../addon/dav/common/wdcal_edit.inc.php:260 -#: ../../addon/dav/common/wdcal_edit.inc.php:481 -msgid "Days" -msgstr "" +#: ../../mod/settings.php:306 +msgid "System failure storing new email. Please try again." +msgstr "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore." -#: ../../addon/dav/common/wdcal_edit.inc.php:231 -#: ../../addon/dav/common/wdcal_edit.inc.php:254 -#: ../../addon/dav/common/wdcal_edit.inc.php:270 -#: ../../addon/dav/common/wdcal_edit.inc.php:293 -#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:917 -msgid "Sunday" -msgstr "Domenica" +#: ../../mod/settings.php:535 +msgid "Settings updated." +msgstr "Impostazioni aggiornate." -#: ../../addon/dav/common/wdcal_edit.inc.php:235 -#: ../../addon/dav/common/wdcal_edit.inc.php:274 -#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:917 -msgid "Monday" -msgstr "Lunedì" +#: ../../mod/settings.php:606 ../../mod/settings.php:632 +#: ../../mod/settings.php:668 +msgid "Add application" +msgstr "Aggiungi una app" -#: ../../addon/dav/common/wdcal_edit.inc.php:238 -#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:917 -msgid "Tuesday" -msgstr "Martedì" +#: ../../mod/settings.php:608 ../../mod/settings.php:634 +#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81 +#: ../../mod/fbrowser.php:116 +msgid "Cancel" +msgstr "Annulla" -#: ../../addon/dav/common/wdcal_edit.inc.php:241 -#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:917 -msgid "Wednesday" -msgstr "Mercoledì" +#: ../../mod/settings.php:609 ../../mod/settings.php:635 +#: ../../mod/admin.php:636 ../../mod/crepair.php:148 +msgid "Name" +msgstr "Nome" -#: ../../addon/dav/common/wdcal_edit.inc.php:244 -#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:917 -msgid "Thursday" -msgstr "Giovedì" +#: ../../mod/settings.php:610 ../../mod/settings.php:636 +msgid "Consumer Key" +msgstr "Consumer Key" -#: ../../addon/dav/common/wdcal_edit.inc.php:247 -#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:917 -msgid "Friday" -msgstr "Venerdì" +#: ../../mod/settings.php:611 ../../mod/settings.php:637 +msgid "Consumer Secret" +msgstr "Consumer Secret" -#: ../../addon/dav/common/wdcal_edit.inc.php:250 -#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:917 -msgid "Saturday" -msgstr "Sabato" +#: ../../mod/settings.php:612 ../../mod/settings.php:638 +msgid "Redirect" +msgstr "Redirect" -#: ../../addon/dav/common/wdcal_edit.inc.php:297 -msgid "First day of week:" -msgstr "" +#: ../../mod/settings.php:613 ../../mod/settings.php:639 +msgid "Icon url" +msgstr "Url icona" -#: ../../addon/dav/common/wdcal_edit.inc.php:350 -#: ../../addon/dav/common/wdcal_edit.inc.php:373 -msgid "Day of month" -msgstr "" +#: ../../mod/settings.php:624 +msgid "You can't edit this application." +msgstr "Non puoi modificare questa applicazione." -#: ../../addon/dav/common/wdcal_edit.inc.php:354 -msgid "#num#th of each month" -msgstr "" +#: ../../mod/settings.php:667 +msgid "Connected Apps" +msgstr "App connesse" -#: ../../addon/dav/common/wdcal_edit.inc.php:357 -msgid "#num#th-last of each month" -msgstr "" +#: ../../mod/settings.php:671 +msgid "Client key starts with" +msgstr "La client key inizia con" -#: ../../addon/dav/common/wdcal_edit.inc.php:360 -msgid "#num#th #wkday# of each month" -msgstr "" +#: ../../mod/settings.php:672 +msgid "No name" +msgstr "Nessun nome" -#: ../../addon/dav/common/wdcal_edit.inc.php:363 -msgid "#num#th-last #wkday# of each month" -msgstr "" +#: ../../mod/settings.php:673 +msgid "Remove authorization" +msgstr "Revoca l'autorizzazione" -#: ../../addon/dav/common/wdcal_edit.inc.php:372 -#: ../../addon/dav/friendica/layout.fnk.php:255 -msgid "Month" -msgstr "" +#: ../../mod/settings.php:684 +msgid "No feature settings configured" +msgstr "Non ci sono funzionalità aggiuntive personalizzabili" -#: ../../addon/dav/common/wdcal_edit.inc.php:377 -msgid "#num#th of the given month" -msgstr "" +#: ../../mod/settings.php:692 +msgid "Feature Settings" +msgstr "Impostazioni aggiuntive" -#: ../../addon/dav/common/wdcal_edit.inc.php:380 -msgid "#num#th-last of the given month" -msgstr "" +#: ../../mod/settings.php:715 +msgid "Account Settings" +msgstr "Impostazioni account" -#: ../../addon/dav/common/wdcal_edit.inc.php:383 -msgid "#num#th #wkday# of the given month" -msgstr "" +#: ../../mod/settings.php:716 +msgid "Password Settings" +msgstr "Impostazioni password" -#: ../../addon/dav/common/wdcal_edit.inc.php:386 -msgid "#num#th-last #wkday# of the given month" -msgstr "" +#: ../../mod/settings.php:717 +msgid "New Password:" +msgstr "Nuova password:" -#: ../../addon/dav/common/wdcal_edit.inc.php:413 -msgid "Repeat until" -msgstr "" +#: ../../mod/settings.php:718 +msgid "Confirm:" +msgstr "Conferma:" -#: ../../addon/dav/common/wdcal_edit.inc.php:417 -msgid "Infinite" -msgstr "" +#: ../../mod/settings.php:718 +msgid "Leave password fields blank unless changing" +msgstr "Lascia questi campi in bianco per non cambiare la password" -#: ../../addon/dav/common/wdcal_edit.inc.php:420 -msgid "Until the following date" -msgstr "" +#: ../../mod/settings.php:720 ../../mod/settings.php:1018 +msgid "Email Address:" +msgstr "Indirizzo email:" -#: ../../addon/dav/common/wdcal_edit.inc.php:423 -msgid "Number of times" -msgstr "" +#: ../../mod/settings.php:721 +msgid "Remove Account" +msgstr "Elimina l'account" -#: ../../addon/dav/common/wdcal_edit.inc.php:429 -msgid "Exceptions" -msgstr "" +#: ../../mod/settings.php:722 +msgid "Warning: This action is permanent and cannot be reversed." +msgstr "Attenzione: questa azione è permanente e non potrà più essere annullata." -#: ../../addon/dav/common/wdcal_edit.inc.php:432 -msgid "none" -msgstr "" +#: ../../mod/settings.php:738 +msgid "Off" +msgstr "Off" -#: ../../addon/dav/common/wdcal_edit.inc.php:449 -msgid "Notification" -msgstr "" +#: ../../mod/settings.php:738 +msgid "On" +msgstr "On" -#: ../../addon/dav/common/wdcal_edit.inc.php:466 -msgid "Notify by" -msgstr "" +#: ../../mod/settings.php:745 +msgid "Additional Features" +msgstr "Funzionalità aggiuntive" -#: ../../addon/dav/common/wdcal_edit.inc.php:469 -msgid "E-Mail" -msgstr "" +#: ../../mod/settings.php:770 +msgid "Connector Settings" +msgstr "Impostazioni del connettore" -#: ../../addon/dav/common/wdcal_edit.inc.php:470 -msgid "On Friendica / Display" -msgstr "" +#: ../../mod/settings.php:800 ../../mod/admin.php:361 +msgid "No special theme for mobile devices" +msgstr "Nessun tema per dispositivi mobili" -#: ../../addon/dav/common/wdcal_edit.inc.php:474 -msgid "Time" -msgstr "" +#: ../../mod/settings.php:840 +msgid "Display Settings" +msgstr "Impostazioni grafiche" -#: ../../addon/dav/common/wdcal_edit.inc.php:478 -msgid "Hours" -msgstr "" +#: ../../mod/settings.php:846 +msgid "Display Theme:" +msgstr "Tema per monitor:" -#: ../../addon/dav/common/wdcal_edit.inc.php:479 -msgid "Minutes" -msgstr "" +#: ../../mod/settings.php:847 +msgid "Mobile Theme:" +msgstr "Tema per dispositivi mobili:" -#: ../../addon/dav/common/wdcal_edit.inc.php:480 -msgid "Seconds" -msgstr "" +#: ../../mod/settings.php:848 +msgid "Update browser every xx seconds" +msgstr "Aggiorna il browser ogni x secondi" -#: ../../addon/dav/common/wdcal_edit.inc.php:482 -msgid "Weeks" -msgstr "" +#: ../../mod/settings.php:848 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimo 10 secondi, nessun limite massimo" -#: ../../addon/dav/common/wdcal_edit.inc.php:485 -msgid "before the" -msgstr "" +#: ../../mod/settings.php:849 +msgid "Maximum number of conversations to load at any time:" +msgstr "Massimo numero di conversazioni da mostrare ogni volta:" -#: ../../addon/dav/common/wdcal_edit.inc.php:486 -msgid "start of the event" -msgstr "" +#: ../../mod/settings.php:849 +msgid "Maximum of 100 items" +msgstr "Massimo 100" -#: ../../addon/dav/common/wdcal_edit.inc.php:487 -msgid "end of the event" -msgstr "" +#: ../../mod/settings.php:850 +msgid "Don't show emoticons" +msgstr "Non mostrare le emoticons" -#: ../../addon/dav/common/wdcal_edit.inc.php:492 -msgid "Add a notification" -msgstr "" +#: ../../mod/settings.php:886 +msgid "Nobody except yourself" +msgstr "Nessuno tranne te" -#: ../../addon/dav/common/wdcal_edit.inc.php:687 -msgid "The event #name# will start at #date" -msgstr "" +#: ../../mod/settings.php:887 +msgid "Only those you specifically allow" +msgstr "Solo chi riceve il mio permesso" -#: ../../addon/dav/common/wdcal_edit.inc.php:696 -msgid "#name# is about to begin." -msgstr "" +#: ../../mod/settings.php:888 +msgid "Anybody in your address book" +msgstr "Chiunque tra i miei contatti" -#: ../../addon/dav/common/wdcal_edit.inc.php:769 -msgid "Saved" -msgstr "" +#: ../../mod/settings.php:889 +msgid "Anybody on this website" +msgstr "Chiunque su questo sito" -#: ../../addon/dav/common/wdcal_configuration.php:148 -msgid "U.S. Time Format (mm/dd/YYYY)" -msgstr "" +#: ../../mod/settings.php:890 +msgid "Anybody in this network" +msgstr "Chiunque su Red" -#: ../../addon/dav/common/wdcal_configuration.php:243 -msgid "German Time Format (dd.mm.YYYY)" -msgstr "" +#: ../../mod/settings.php:891 +msgid "Anybody on the internet" +msgstr "Chiunque su internet" -#: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39 -msgid "Private Events" -msgstr "" +#: ../../mod/settings.php:964 +msgid "Publish your default profile in the network directory" +msgstr "Pubblica il mio profilo predefinito sull'elenco pubblico" -#: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46 -msgid "Private Addressbooks" -msgstr "" +#: ../../mod/settings.php:969 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Vuoi essere suggerito come potenziale amico ai nuovi membri?" -#: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36 -msgid "Friendica-Native events" -msgstr "" +#: ../../mod/settings.php:973 ../../mod/profile_photo.php:298 +msgid "or" +msgstr "o" -#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36 -#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59 -msgid "Friendica-Contacts" -msgstr "" +#: ../../mod/settings.php:978 +msgid "Your channel address is" +msgstr "L'indirizzo del tuo canale è" -#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60 -msgid "Your Friendica-Contacts" -msgstr "" +#: ../../mod/settings.php:989 +msgid "Automatically expire posts after this many days:" +msgstr "Gli articoli scadono automaticamente dopo questo numero di giorni:" -#: ../../addon/dav/friendica/layout.fnk.php:99 -#: ../../addon/dav/friendica/layout.fnk.php:136 -msgid "" -"Something went wrong when trying to import the file. Sorry. Maybe some " -"events were imported anyway." -msgstr "" +#: ../../mod/settings.php:989 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Se lasci vuoto, i messaggi non scadranno mai. I messaggi scaduti saranno eliminati." -#: ../../addon/dav/friendica/layout.fnk.php:131 -msgid "Something went wrong when trying to import the file. Sorry." -msgstr "" +#: ../../mod/settings.php:990 +msgid "Advanced expiration settings" +msgstr "Impostazioni avanzate di scandenza" -#: ../../addon/dav/friendica/layout.fnk.php:134 -msgid "The ICS-File has been imported." -msgstr "" +#: ../../mod/settings.php:991 +msgid "Advanced Expiration" +msgstr "Scadenza" -#: ../../addon/dav/friendica/layout.fnk.php:138 -msgid "No file was uploaded." -msgstr "" +#: ../../mod/settings.php:992 +msgid "Expire posts:" +msgstr "Fai scadere gli articoli:" -#: ../../addon/dav/friendica/layout.fnk.php:147 -msgid "Import a ICS-file" -msgstr "" +#: ../../mod/settings.php:994 +msgid "Expire starred posts:" +msgstr "Fai scadere gli articoli preferiti:" -#: ../../addon/dav/friendica/layout.fnk.php:150 -msgid "ICS-File" -msgstr "" +#: ../../mod/settings.php:995 +msgid "Expire photos:" +msgstr "Fai scadere le foto:" -#: ../../addon/dav/friendica/layout.fnk.php:151 -msgid "Overwrite all #num# existing events" -msgstr "" +#: ../../mod/settings.php:996 +msgid "Only expire posts by others:" +msgstr "Fai scadere solo gli articoli scritti da altri:" -#: ../../addon/dav/friendica/layout.fnk.php:228 -msgid "New event" -msgstr "" +#: ../../mod/settings.php:1007 +msgid "Channel Settings" +msgstr "Impostazioni del canale" -#: ../../addon/dav/friendica/layout.fnk.php:232 -msgid "Today" -msgstr "" +#: ../../mod/settings.php:1016 +msgid "Basic Settings" +msgstr "Impostazioni di base" -#: ../../addon/dav/friendica/layout.fnk.php:241 -msgid "Day" -msgstr "" +#: ../../mod/settings.php:1019 +msgid "Your Timezone:" +msgstr "Il tuo fuso orario:" -#: ../../addon/dav/friendica/layout.fnk.php:248 -msgid "Week" -msgstr "" +#: ../../mod/settings.php:1020 +msgid "Default Post Location:" +msgstr "Località predefinita:" -#: ../../addon/dav/friendica/layout.fnk.php:260 -msgid "Reload" -msgstr "" +#: ../../mod/settings.php:1021 +msgid "Use Browser Location:" +msgstr "Usa la località rilevata dal browser:" -#: ../../addon/dav/friendica/layout.fnk.php:271 -msgid "Date" -msgstr "" +#: ../../mod/settings.php:1024 +msgid "Security and Privacy Settings" +msgstr "Impostazioni di sicurezza e privacy" -#: ../../addon/dav/friendica/layout.fnk.php:313 -msgid "Error" -msgstr "" +#: ../../mod/settings.php:1026 +msgid "Quick Privacy Settings:" +msgstr "Impostazioni veloci della privacy:" -#: ../../addon/dav/friendica/layout.fnk.php:380 -msgid "The calendar has been updated." -msgstr "" +#: ../../mod/settings.php:1027 +msgid "Very Public - extremely permissive" +msgstr "Tutto pubblico - molto permissivo" -#: ../../addon/dav/friendica/layout.fnk.php:393 -msgid "The new calendar has been created." -msgstr "" +#: ../../mod/settings.php:1028 +msgid "Typical - default public, privacy when desired" +msgstr "Normale - tutto sarà pubblico tranne quel che vorrai tu" -#: ../../addon/dav/friendica/layout.fnk.php:417 -msgid "The calendar has been deleted." -msgstr "" +#: ../../mod/settings.php:1029 +msgid "Private - default private, rarely open or public" +msgstr "Privato - i contenuti saranno privati ma, se vorrai, alcuni potrai renderli pubblici" -#: ../../addon/dav/friendica/layout.fnk.php:424 -msgid "Calendar Settings" -msgstr "" +#: ../../mod/settings.php:1030 +msgid "Blocked - default blocked to/from everybody" +msgstr "Bloccato - non ci saranno interazioni con altri a meno che tu non voglia" -#: ../../addon/dav/friendica/layout.fnk.php:430 -msgid "Date format" -msgstr "" +#: ../../mod/settings.php:1033 +msgid "Maximum Friend Requests/Day:" +msgstr "Numero massimo giornaliero di richieste di amicizia:" -#: ../../addon/dav/friendica/layout.fnk.php:439 -msgid "Time zone" -msgstr "" +#: ../../mod/settings.php:1033 +msgid "May reduce spam activity" +msgstr "Serve e ridurre lo spam" -#: ../../addon/dav/friendica/layout.fnk.php:445 -msgid "Calendars" -msgstr "" +#: ../../mod/settings.php:1034 +msgid "Default Post Permissions" +msgstr "Permessi predefiniti per gli articoli" -#: ../../addon/dav/friendica/layout.fnk.php:487 -msgid "Create a new calendar" -msgstr "" +#: ../../mod/settings.php:1035 +msgid "(click to open/close)" +msgstr "(clicca per aprire/chiudere)" -#: ../../addon/dav/friendica/layout.fnk.php:496 -msgid "Limitations" -msgstr "" +#: ../../mod/settings.php:1048 +msgid "Maximum private messages per day from unknown people:" +msgstr "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:" -#: ../../addon/dav/friendica/layout.fnk.php:500 -#: ../../addon/libravatar/libravatar.php:82 -msgid "Warning" -msgstr "" +#: ../../mod/settings.php:1048 +msgid "Useful to reduce spamming" +msgstr "Serve e ridurre lo spam" -#: ../../addon/dav/friendica/layout.fnk.php:504 -msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)" -msgstr "" +#: ../../mod/settings.php:1051 +msgid "Notification Settings" +msgstr "Impostazioni di notifica" -#: ../../addon/dav/friendica/layout.fnk.php:511 -msgid "Synchronizing this calendar with the iPhone" -msgstr "" +#: ../../mod/settings.php:1052 +msgid "By default post a status message when:" +msgstr "Pubblica un messaggio di stato quando:" -#: ../../addon/dav/friendica/layout.fnk.php:522 -msgid "Synchronizing your Friendica-Contacts with the iPhone" -msgstr "" +#: ../../mod/settings.php:1053 +msgid "accepting a friend request" +msgstr "accetto una nuova amicizia" -#: ../../addon/dav/friendica/main.php:202 -msgid "" -"The current version of this plugin has not been set up correctly. Please " -"contact the system administrator of your installation of friendica to fix " -"this." -msgstr "" +#: ../../mod/settings.php:1054 +msgid "joining a forum/community" +msgstr "entro a far parte di un forum" -#: ../../addon/dav/friendica/main.php:242 -msgid "Extended calendar with CalDAV-support" -msgstr "" +#: ../../mod/settings.php:1055 +msgid "making an interesting profile change" +msgstr "faccio un cambiamento interessante al mio profilo" -#: ../../addon/dav/friendica/main.php:279 -#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:464 -#: ../../include/enotify.php:28 ../../include/notifier.php:710 -msgid "noreply" -msgstr "nessuna risposta" +#: ../../mod/settings.php:1056 +msgid "Send a notification email when:" +msgstr "Invia una email di notifica quando:" -#: ../../addon/dav/friendica/main.php:282 -msgid "Notification: " -msgstr "" +#: ../../mod/settings.php:1057 +msgid "You receive an introduction" +msgstr "Ricevi una richiesta di amicizia" -#: ../../addon/dav/friendica/main.php:309 -msgid "The database tables have been installed." -msgstr "" +#: ../../mod/settings.php:1058 +msgid "Your introductions are confirmed" +msgstr "Le tue richieste di amicizia sono state accettate" -#: ../../addon/dav/friendica/main.php:310 -msgid "An error occurred during the installation." -msgstr "" +#: ../../mod/settings.php:1059 +msgid "Someone writes on your profile wall" +msgstr "Qualcuno scrive sulla tua bacheca" -#: ../../addon/dav/friendica/main.php:316 -msgid "The database tables have been updated." -msgstr "" +#: ../../mod/settings.php:1060 +msgid "Someone writes a followup comment" +msgstr "Qualcuno scrive un commento a un tuo articolo" -#: ../../addon/dav/friendica/main.php:317 -msgid "An error occurred during the update." -msgstr "" +#: ../../mod/settings.php:1061 +msgid "You receive a private message" +msgstr "Ricevi un messaggio privato" -#: ../../addon/dav/friendica/main.php:333 -msgid "No system-wide settings yet." -msgstr "" +#: ../../mod/settings.php:1062 +msgid "You receive a friend suggestion" +msgstr "Ti viene suggerito un amico" -#: ../../addon/dav/friendica/main.php:336 -msgid "Database status" -msgstr "" +#: ../../mod/settings.php:1063 +msgid "You are tagged in a post" +msgstr "Sei taggato in un articolo" -#: ../../addon/dav/friendica/main.php:339 -msgid "Installed" -msgstr "" +#: ../../mod/settings.php:1064 +msgid "You are poked/prodded/etc. in a post" +msgstr "Ricevi un poke in un articolo" -#: ../../addon/dav/friendica/main.php:343 -msgid "Upgrade needed" -msgstr "" +#: ../../mod/settings.php:1067 +msgid "Advanced Account/Page Type Settings" +msgstr "Impostazioni avanzate" -#: ../../addon/dav/friendica/main.php:343 -msgid "" -"Please back up all calendar data (the tables beginning with dav_*) before " -"proceeding. While all calendar events should be converted to the new " -"database structure, it's always safe to have a backup. Below, you can have a" -" look at the database-queries that will be made when pressing the " -"'update'-button." -msgstr "" +#: ../../mod/settings.php:1068 +msgid "Change the behaviour of this account for special situations" +msgstr "Cambia il funzionamento di questo account in situazioni particolari" -#: ../../addon/dav/friendica/main.php:343 -msgid "Upgrade" -msgstr "" +#: ../../mod/viewconnections.php:28 ../../mod/directory.php:23 +#: ../../mod/photos.php:558 ../../mod/display.php:9 ../../mod/search.php:80 +#: ../../mod/community.php:18 +msgid "Public access denied." +msgstr "Accesso pubblico negato." -#: ../../addon/dav/friendica/main.php:346 -msgid "Not installed" -msgstr "" +#: ../../mod/viewconnections.php:57 +msgid "No connections." +msgstr "Nessun contatto." -#: ../../addon/dav/friendica/main.php:346 -msgid "Install" -msgstr "" +#: ../../mod/viewconnections.php:69 ../../mod/nogroup.php:40 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visita il profilo di %s [%s]" -#: ../../addon/dav/friendica/main.php:350 -msgid "Unknown" -msgstr "" +#: ../../mod/viewconnections.php:84 +msgid "View Connnections" +msgstr "Guarda i contatti" -#: ../../addon/dav/friendica/main.php:350 -msgid "" -"Something really went wrong. I cannot recover from this state automatically," -" sorry. Please go to the database backend, back up the data, and delete all " -"tables beginning with 'dav_' manually. Afterwards, this installation routine" -" should be able to reinitialize the tables automatically." -msgstr "" +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Tag rimosso" -#: ../../addon/dav/friendica/main.php:355 -msgid "Troubleshooting" -msgstr "" +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Rimuovi il tag" -#: ../../addon/dav/friendica/main.php:356 -msgid "Manual creation of the database tables:" -msgstr "" +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Seleziona un tag da rimuovere: " -#: ../../addon/dav/friendica/main.php:357 -msgid "Show SQL-statements" -msgstr "" +#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 +msgid "Remove" +msgstr "Rimuovi" -#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206 -msgid "Private Calendar" -msgstr "" +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "Impossibile trovare delegati per questa pagina." -#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207 -msgid "Friendica Events: Mine" -msgstr "" +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" +msgstr "Gestione delegati per la pagina" -#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208 -msgid "Friendica Events: Contacts" -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 "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." -#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248 -msgid "Private Addresses" -msgstr "" +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" +msgstr "Gestori attuali della pagina" -#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249 -msgid "Friendica Contacts" -msgstr "" +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "Delegati attuali della pagina" -#: ../../addon/uhremotestorage/uhremotestorage.php:84 -#, php-format -msgid "" -"Allow to use your friendica id (%s) to connecto to external unhosted-enabled" -" storage (like ownCloud). See RemoteStorage" -" WebFinger" -msgstr "Permette di usare il tuo id friendica (%s) per collegarsi a storage esterni che supportano unhosted (come ownCloud). Vedi RemoteStorage WebFinger" +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "Delegati potenziali" -#: ../../addon/uhremotestorage/uhremotestorage.php:85 -msgid "Template URL (with {category})" -msgstr "Template URL (con {category})" +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "Aggiungi" -#: ../../addon/uhremotestorage/uhremotestorage.php:86 -msgid "OAuth end-point" -msgstr "OAuth end-point" +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "Nessun risultato." -#: ../../addon/uhremotestorage/uhremotestorage.php:87 -msgid "Api" -msgstr "Api" +#: ../../mod/directory.php:125 ../../mod/profiles.php:584 +msgid "Age: " +msgstr "Età:" -#: ../../addon/membersince/membersince.php:18 -msgid "Member since:" -msgstr "Membro dal:" +#: ../../mod/directory.php:128 +msgid "Gender: " +msgstr "Sesso:" -#: ../../addon/tictac/tictac.php:20 -msgid "Three Dimensional Tic-Tac-Toe" -msgstr "Tic-Tac-Toe tridimensionale" +#: ../../mod/directory.php:183 +msgid "Finding:" +msgstr "Cerca:" -#: ../../addon/tictac/tictac.php:53 -msgid "3D Tic-Tac-Toe" -msgstr "3D Tic-Tac-Toe" +#: ../../mod/directory.php:191 +msgid "next page" +msgstr "pagina succ." -#: ../../addon/tictac/tictac.php:58 -msgid "New game" -msgstr "Nuova partita" +#: ../../mod/directory.php:191 +msgid "previous page" +msgstr "pagina prec." -#: ../../addon/tictac/tictac.php:59 -msgid "New game with handicap" -msgstr "Nuova partita con handicap" +#: ../../mod/directory.php:198 +msgid "No entries (some entries may be hidden)." +msgstr "Nessun risultato (qualcosa potrebbe essere nascosto)." -#: ../../addon/tictac/tictac.php:60 -msgid "" -"Three dimensional tic-tac-toe is just like the traditional game except that " -"it is played on multiple levels simultaneously. " -msgstr "Tic-tac-toe tridimensionale è come il gioco tradizionale, solo che si gioca su livelli multipli contemporaneamente." +#: ../../mod/dirfind.php:26 +msgid "People Search" +msgstr "Cerca persone" -#: ../../addon/tictac/tictac.php:61 -msgid "" -"In this case there are three levels. You win by getting three in a row on " -"any level, as well as up, down, and diagonally across the different levels." -msgstr "In questo caso ci sono tre livelli. Puoi vincere mettendo tre segni in fila su ogni livello, anche verso l'alto, il basso e diagonalmente anche attraverso i diversi livelli." +#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +msgid "No matches" +msgstr "Nessun risultato" -#: ../../addon/tictac/tictac.php:63 -msgid "" -"The handicap game disables the center position on the middle level because " -"the player claiming this square often has an unfair advantage." -msgstr "L'handicap disabilita la casella centrale sul livello di mezzo, perchè il giocatore che si prende quella casella spesso ha un deciso vantaggio." +#: ../../mod/mitem.php:13 ../../mod/menu.php:84 +msgid "Menu not found." +msgstr "Menù non trovato." -#: ../../addon/tictac/tictac.php:182 -msgid "You go first..." -msgstr "Cominci tu..." +#: ../../mod/mitem.php:66 +msgid "Menu element updated." +msgstr "L'elemento del menù è stato aggiornato." -#: ../../addon/tictac/tictac.php:187 -msgid "I'm going first this time..." -msgstr "Comincio io questa volta..." +#: ../../mod/mitem.php:70 +msgid "Unable to update menu element." +msgstr "Non è possibile aggiornare l'elemento del menù." -#: ../../addon/tictac/tictac.php:193 -msgid "You won!" -msgstr "Hai vinto!" +#: ../../mod/mitem.php:76 +msgid "Menu element added." +msgstr "Elemento aggiunto al menù." -#: ../../addon/tictac/tictac.php:199 ../../addon/tictac/tictac.php:224 -msgid "\"Cat\" game!" -msgstr "Stallo!" +#: ../../mod/mitem.php:80 +msgid "Unable to add menu element." +msgstr "Impossibile aggiungere l'elemento al menù." -#: ../../addon/tictac/tictac.php:222 -msgid "I won!" -msgstr "Ho vinto!" +#: ../../mod/mitem.php:97 ../../mod/xchan.php:25 ../../mod/menu.php:110 +msgid "Not found." +msgstr "Non trovato." -#: ../../addon/randplace/randplace.php:169 -msgid "Randplace Settings" -msgstr "Impostazioni Randplace" +#: ../../mod/mitem.php:114 +msgid "Manage Menu Elements" +msgstr "Gestione elementi del menù" -#: ../../addon/randplace/randplace.php:171 -msgid "Enable Randplace Plugin" -msgstr "Abilita il plugin Randplace" +#: ../../mod/mitem.php:117 +msgid "Edit menu" +msgstr "Modifica il menù" -#: ../../addon/dwpost/dwpost.php:39 -msgid "Post to Dreamwidth" -msgstr "Posta su Dreamwidth" +#: ../../mod/mitem.php:120 +msgid "Edit element" +msgstr "Modifica l'elemento" -#: ../../addon/dwpost/dwpost.php:70 -msgid "Dreamwidth Post Settings" -msgstr "Impostazioni post Dreamwidth" +#: ../../mod/mitem.php:121 +msgid "Drop element" +msgstr "Elimina l'elemento" -#: ../../addon/dwpost/dwpost.php:72 -msgid "Enable dreamwidth Post Plugin" -msgstr "Abilita il plugin dreamwidth" +#: ../../mod/mitem.php:122 +msgid "New element" +msgstr "Nuovo elemento" -#: ../../addon/dwpost/dwpost.php:77 -msgid "dreamwidth username" -msgstr "dreamwidth username" +#: ../../mod/mitem.php:123 +msgid "Edit this menu container" +msgstr "Modifica il contenitore del menù" -#: ../../addon/dwpost/dwpost.php:82 -msgid "dreamwidth password" -msgstr "Password dreamwidth" +#: ../../mod/mitem.php:124 +msgid "Add menu element" +msgstr "Aggiungi un elemento al menù" -#: ../../addon/dwpost/dwpost.php:87 -msgid "Post to dreamwidth by default" -msgstr "Invia a dreamwidth per impostazione predefinita" +#: ../../mod/mitem.php:125 +msgid "Delete this menu item" +msgstr "Elimina questo elemento del menù" -#: ../../addon/drpost/drpost.php:35 -msgid "Post to Drupal" -msgstr "Invia a Drupal" +#: ../../mod/mitem.php:126 +msgid "Edit this menu item" +msgstr "Modifica questo elemento del menù" -#: ../../addon/drpost/drpost.php:72 -msgid "Drupal Post Settings" -msgstr "Impostazioni invio a Drupal" +#: ../../mod/mitem.php:140 +msgid "New Menu Element" +msgstr "Nuovo elemento del menù" -#: ../../addon/drpost/drpost.php:74 -msgid "Enable Drupal Post Plugin" -msgstr "Abilita il plugin di invio a Drupal" +#: ../../mod/mitem.php:142 ../../mod/mitem.php:183 +msgid "Link text" +msgstr "Testo del link" -#: ../../addon/drpost/drpost.php:79 -msgid "Drupal username" -msgstr "Drupal username" +#: ../../mod/mitem.php:143 ../../mod/mitem.php:184 +msgid "URL of link" +msgstr "Indirizzo del link" -#: ../../addon/drpost/drpost.php:84 -msgid "Drupal password" -msgstr "Drupal password" +#: ../../mod/mitem.php:144 ../../mod/mitem.php:185 +msgid "Use Red magic-auth if available" +msgstr "Usa l'autenticazione magica di Red, se disponibile" -#: ../../addon/drpost/drpost.php:89 -msgid "Post Type - article,page,or blog" -msgstr "Tipo di post - article,page o blog" +#: ../../mod/mitem.php:145 ../../mod/mitem.php:186 +msgid "Open link in new window" +msgstr "Apri il link in una nuova finestra" -#: ../../addon/drpost/drpost.php:94 -msgid "Drupal site URL" -msgstr "Indirizzo del sito Drupal" +#: ../../mod/mitem.php:147 ../../mod/mitem.php:188 +msgid "Order in list" +msgstr "Ordine dell'elenco" -#: ../../addon/drpost/drpost.php:99 -msgid "Drupal site uses clean URLS" -msgstr "Il sito Drupal usa URL puliti" +#: ../../mod/mitem.php:147 ../../mod/mitem.php:188 +msgid "Higher numbers will sink to bottom of listing" +msgstr "I numeri più alti vanno in fondo" -#: ../../addon/drpost/drpost.php:104 -msgid "Post to Drupal by default" -msgstr "Invia a Drupal per impostazione predefinita" +#: ../../mod/mitem.php:148 ../../mod/menu.php:76 ../../mod/new_channel.php:117 +msgid "Create" +msgstr "Crea" -#: ../../addon/drpost/drpost.php:184 ../../addon/wppost/wppost.php:201 -#: ../../addon/blogger/blogger.php:172 ../../addon/posterous/posterous.php:189 -msgid "Post from Friendica" -msgstr "Messaggio da Friendica" +#: ../../mod/mitem.php:160 +msgid "Menu item not found." +msgstr "L'elemento del menù non è stato trovato." -#: ../../addon/startpage/startpage.php:83 -msgid "Startpage Settings" -msgstr "" +#: ../../mod/mitem.php:169 +msgid "Menu item deleted." +msgstr "L'elemento del menù è stato eliminato." -#: ../../addon/startpage/startpage.php:85 -msgid "Home page to load after login - leave blank for profile wall" -msgstr "" +#: ../../mod/mitem.php:171 +msgid "Menu item could not be deleted." +msgstr "L'elemento del menù non può essere eliminato." -#: ../../addon/startpage/startpage.php:88 -msgid "Examples: "network" or "notifications/system"" -msgstr "" +#: ../../mod/mitem.php:180 +msgid "Edit Menu Element" +msgstr "Modifica l'elemento del menù" -#: ../../addon/geonames/geonames.php:143 -msgid "Geonames settings updated." -msgstr "Impostazioni di geonames aggiornate." +#: ../../mod/mitem.php:189 ../../mod/menu.php:104 +msgid "Modify" +msgstr "Modifica" -#: ../../addon/geonames/geonames.php:179 -msgid "Geonames Settings" -msgstr "Impostazioni Geonames" +#: ../../mod/group.php:26 +msgid "Collection created." +msgstr "Gruppo creato." -#: ../../addon/geonames/geonames.php:181 -msgid "Enable Geonames Plugin" -msgstr "Abilita plugin Geonames" +#: ../../mod/group.php:32 +msgid "Could not create collection." +msgstr "Impossibile creare il gruppo." -#: ../../addon/public_server/public_server.php:126 -#: ../../addon/testdrive/testdrive.php:94 -#, php-format -msgid "Your account on %s will expire in a few days." -msgstr "" +#: ../../mod/group.php:60 +msgid "Collection name changed." +msgstr "Il nome del gruppo è stato cambiato." -#: ../../addon/public_server/public_server.php:127 -msgid "Your Friendica account is about to expire." -msgstr "" +#: ../../mod/group.php:92 +msgid "Create a collection of channels." +msgstr "Crea un gruppo di canali." -#: ../../addon/public_server/public_server.php:128 -#, php-format -msgid "" -"Hi %1$s,\n" -"\n" -"Your account on %2$s will expire in less than five days. You may keep your account by logging in at least once every 30 days" -msgstr "" +#: ../../mod/group.php:93 ../../mod/group.php:189 +msgid "Collection Name: " +msgstr "Nome del gruppo:" -#: ../../addon/js_upload/js_upload.php:43 -msgid "Upload a file" -msgstr "Carica un file" +#: ../../mod/group.php:95 ../../mod/group.php:192 +msgid "Members are visible to other channels" +msgstr "I membri sono visibili agli altri canali" -#: ../../addon/js_upload/js_upload.php:44 -msgid "Drop files here to upload" -msgstr "Trascina un file qui per caricarlo" +#: ../../mod/group.php:113 +msgid "Collection removed." +msgstr "Gruppo rimosso." -#: ../../addon/js_upload/js_upload.php:46 -msgid "Failed" -msgstr "Caricamento fallito" +#: ../../mod/group.php:115 +msgid "Unable to remove collection." +msgstr "Impossibile rimuovere il gruppo." -#: ../../addon/js_upload/js_upload.php:297 -msgid "No files were uploaded." -msgstr "Nessun file è stato caricato." +#: ../../mod/group.php:188 +msgid "Collection Editor" +msgstr "Modifica il gruppo" -#: ../../addon/js_upload/js_upload.php:303 -msgid "Uploaded file is empty" -msgstr "Il file caricato è vuoto" +#: ../../mod/group.php:202 +msgid "Members" +msgstr "Membri" -#: ../../addon/js_upload/js_upload.php:326 -msgid "File has an invalid extension, it should be one of " -msgstr "Il file ha un'estensione non valida, dovrebbe essere una tra " +#: ../../mod/group.php:204 +msgid "All Connected Channels" +msgstr "Tutti i canali connessi" -#: ../../addon/js_upload/js_upload.php:337 -msgid "Upload was cancelled, or server error encountered" -msgstr "Il caricamento è stato cancellato, o si è verificato un errore sul server" +#: ../../mod/group.php:237 +msgid "Click on a channel to add or remove." +msgstr "Clicca su un canale per aggiungerlo o rimuoverlo." -#: ../../addon/oembed.old/oembed.php:30 -msgid "OEmbed settings updated" -msgstr "Impostazioni OEmbed aggiornate" +#: ../../mod/photos.php:83 +msgid "Page owner information could not be retrieved." +msgstr "Impossibile ottenere informazioni sul proprietario della pagina." -#: ../../addon/oembed.old/oembed.php:43 -msgid "Use OEmbed for YouTube videos" -msgstr "Usa OEmbed per i video di YouTube" +#: ../../mod/photos.php:103 +msgid "Album not found." +msgstr "Album non trovato." -#: ../../addon/oembed.old/oembed.php:71 -msgid "URL to embed:" -msgstr "URL da incorporare:" +#: ../../mod/photos.php:125 ../../mod/photos.php:770 +msgid "Delete Album" +msgstr "Elimina album" -#: ../../addon/forumlist/forumlist.php:58 -msgid "show/hide" -msgstr "" +#: ../../mod/photos.php:165 ../../mod/photos.php:1032 +msgid "Delete Photo" +msgstr "Elimina foto" -#: ../../addon/forumlist/forumlist.php:72 -msgid "No forum subscriptions" -msgstr "" +#: ../../mod/photos.php:494 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%3$s ha taggato %1$s in %2$s" -#: ../../addon/forumlist/forumlist.php:125 -msgid "Forumlist settings updated." -msgstr "" +#: ../../mod/photos.php:494 +msgid "a photo" +msgstr "una foto" -#: ../../addon/forumlist/forumlist.php:150 -msgid "Forumlist Settings" -msgstr "" +#: ../../mod/photos.php:568 +msgid "No photos selected" +msgstr "Nessuna foto selezionata" -#: ../../addon/forumlist/forumlist.php:152 -msgid "Randomise forum list" -msgstr "" +#: ../../mod/photos.php:622 +msgid "Access to this item is restricted." +msgstr "Questo elemento non è visibile a tutti." -#: ../../addon/forumlist/forumlist.php:155 -msgid "Show forums on profile page" -msgstr "" +#: ../../mod/photos.php:686 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Hai usato %1$.2f Mb di %2$.2f Mb disponibili per le foto." -#: ../../addon/impressum/impressum.php:37 -msgid "Impressum" -msgstr "Impressum" +#: ../../mod/photos.php:689 +#, php-format +msgid "You have used %1$.2f Mbytes of photo storage." +msgstr "Hai usato %1$.2f Mb di spazio per le foto." -#: ../../addon/impressum/impressum.php:50 -#: ../../addon/impressum/impressum.php:52 -#: ../../addon/impressum/impressum.php:84 -msgid "Site Owner" -msgstr "Proprietario del sito" +#: ../../mod/photos.php:697 +msgid "Upload Photos" +msgstr "Carica foto" -#: ../../addon/impressum/impressum.php:50 -#: ../../addon/impressum/impressum.php:88 -msgid "Email Address" -msgstr "Indirizzo email" +#: ../../mod/photos.php:701 ../../mod/photos.php:765 +msgid "New album name: " +msgstr "Nome del nuovo album: " -#: ../../addon/impressum/impressum.php:55 -#: ../../addon/impressum/impressum.php:86 -msgid "Postal Address" -msgstr "Indirizzo" +#: ../../mod/photos.php:702 +msgid "or existing album name: " +msgstr "o nome di un album esistente: " -#: ../../addon/impressum/impressum.php:61 -msgid "" -"The impressum addon needs to be configured!
    Please add at least the " -"owner variable to your config file. For other variables please " -"refer to the README file of the addon." -msgstr "Il plugin Impressum deve essere configurato!
    Aggiungi almeno il Proprietario del sito." +#: ../../mod/photos.php:703 +msgid "Do not show a status post for this upload" +msgstr "Non creare un messaggio di stato per questo caricamento" -#: ../../addon/impressum/impressum.php:84 -msgid "The page operators name." -msgstr "Nome del gestore della pagina." +#: ../../mod/photos.php:705 ../../mod/photos.php:1027 +msgid "Permissions" +msgstr "Permessi" -#: ../../addon/impressum/impressum.php:85 -msgid "Site Owners Profile" -msgstr "Profilo del proprietario del sito" +#: ../../mod/photos.php:754 ../../mod/photos.php:776 ../../mod/photos.php:1223 +#: ../../mod/photos.php:1238 +msgid "Contact Photos" +msgstr "Foto dei contatti" -#: ../../addon/impressum/impressum.php:85 -msgid "Profile address of the operator." -msgstr "Indirizzo del profilo del gestore della pagina" +#: ../../mod/photos.php:780 +msgid "Edit Album" +msgstr "Modifica album" -#: ../../addon/impressum/impressum.php:86 -msgid "How to contact the operator via snail mail. You can use BBCode here." -msgstr "" +#: ../../mod/photos.php:786 +msgid "Show Newest First" +msgstr "Prima i più recenti" -#: ../../addon/impressum/impressum.php:87 -msgid "Notes" -msgstr "Note" +#: ../../mod/photos.php:788 +msgid "Show Oldest First" +msgstr "Prima i più vecchi" -#: ../../addon/impressum/impressum.php:87 -msgid "" -"Additional notes that are displayed beneath the contact information. You can" -" use BBCode here." -msgstr "" +#: ../../mod/photos.php:832 ../../mod/photos.php:1270 +msgid "View Photo" +msgstr "Guarda la foto" -#: ../../addon/impressum/impressum.php:88 -msgid "How to contact the operator via email. (will be displayed obfuscated)" -msgstr "" +#: ../../mod/photos.php:876 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permesso negato. L'accesso a questo elemento può essere stato limitato." -#: ../../addon/impressum/impressum.php:89 -msgid "Footer note" -msgstr "Footer delle note" +#: ../../mod/photos.php:878 +msgid "Photo not available" +msgstr "Foto non disponibile" -#: ../../addon/impressum/impressum.php:89 -msgid "Text for the footer. You can use BBCode here." -msgstr "" +#: ../../mod/photos.php:936 +msgid "Use as profile photo" +msgstr "Usa come foto del profilo" -#: ../../addon/buglink/buglink.php:15 -msgid "Report Bug" -msgstr "Segnala un Bug" +#: ../../mod/photos.php:964 +msgid "View Full Size" +msgstr "Vedi nelle dimensioni originali" -#: ../../addon/notimeline/notimeline.php:32 -msgid "No Timeline settings updated." -msgstr "" +#: ../../mod/photos.php:1015 +msgid "Edit photo" +msgstr "Modifica la foto" -#: ../../addon/notimeline/notimeline.php:56 -msgid "No Timeline Settings" -msgstr "" +#: ../../mod/photos.php:1017 +msgid "Rotate CW (right)" +msgstr "Ruota (senso orario)" -#: ../../addon/notimeline/notimeline.php:58 -msgid "Disable Archive selector on profile wall" -msgstr "" +#: ../../mod/photos.php:1018 +msgid "Rotate CCW (left)" +msgstr "Ruota (senso antiorario)" -#: ../../addon/blockem/blockem.php:51 -msgid "\"Blockem\" Settings" -msgstr "Impostazioni \"Blockem\"" +#: ../../mod/photos.php:1020 +msgid "New album name" +msgstr "Nuovo nome dell'album" -#: ../../addon/blockem/blockem.php:53 -msgid "Comma separated profile URLS to block" -msgstr "Lista, separata da virgola, di indirizzi da bloccare" +#: ../../mod/photos.php:1023 +msgid "Caption" +msgstr "Titolo" -#: ../../addon/blockem/blockem.php:70 -msgid "BLOCKEM Settings saved." -msgstr "Impostazioni salvate." +#: ../../mod/photos.php:1025 +msgid "Add a Tag" +msgstr "Aggiungi tag" -#: ../../addon/blockem/blockem.php:105 -#, php-format -msgid "Blocked %s - Click to open/close" -msgstr "%s bloccato - Clicca per aprire/chiudere" +#: ../../mod/photos.php:1029 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Per esempio: @luca, @Maria_Bianchi, @bob@example.com, #California, #camping" -#: ../../addon/blockem/blockem.php:160 -msgid "Unblock Author" -msgstr "Sblocca autore" +#: ../../mod/photos.php:1276 +msgid "View Album" +msgstr "Guarda l'album" -#: ../../addon/blockem/blockem.php:162 -msgid "Block Author" -msgstr "Blocca autore" +#: ../../mod/photos.php:1285 +msgid "Recent Photos" +msgstr "Foto recenti" -#: ../../addon/blockem/blockem.php:194 -msgid "blockem settings updated" -msgstr "Impostazioni 'blockem' aggiornate." +#: ../../mod/ping.php:160 +msgid "sent you a private message" +msgstr "ti ha inviato un messaggio privato" -#: ../../addon/qcomment/qcomment.php:51 -msgid ":-)" -msgstr ":-)" +#: ../../mod/ping.php:218 +msgid "added your channel" +msgstr "ha aggiunto il tuo canale" -#: ../../addon/qcomment/qcomment.php:51 -msgid ":-(" -msgstr ":-(" +#: ../../mod/ping.php:230 ../../boot.php:1737 ../../boot.php:1817 +msgid "g A l F d" +msgstr "g A l d F" -#: ../../addon/qcomment/qcomment.php:51 -msgid "lol" -msgstr "lol" +#: ../../mod/ping.php:252 ../../boot.php:1783 ../../boot.php:1858 +msgid "[today]" +msgstr "[oggi]" -#: ../../addon/qcomment/qcomment.php:54 -msgid "Quick Comment Settings" -msgstr "Impostazioni commento rapido" +#: ../../mod/ping.php:262 +msgid "posted an event" +msgstr "ha creato un evento" -#: ../../addon/qcomment/qcomment.php:56 -msgid "" -"Quick comments are found near comment boxes, sometimes hidden. Click them to" -" provide simple replies." -msgstr "Trovi i commenti rapidi vicino al box dei commenti, a volte nascosti. Cliccali per inviare semplici risposte." +#: ../../mod/filer.php:35 +msgid "- select -" +msgstr "- scegli -" -#: ../../addon/qcomment/qcomment.php:57 -msgid "Enter quick comments, one per line" -msgstr "Inserire un commento rapido, uno per linea" +#: ../../mod/menu.php:17 +msgid "Menu updated." +msgstr "Menù aggiornato." -#: ../../addon/qcomment/qcomment.php:75 -msgid "Quick Comment settings saved." -msgstr "Impostazioni commento rapido salvate." +#: ../../mod/menu.php:21 +msgid "Unable to update menu." +msgstr "Impossibile aggiornare il menù" -#: ../../addon/openstreetmap/openstreetmap.php:71 -msgid "Tile Server URL" -msgstr "" +#: ../../mod/menu.php:26 +msgid "Menu created." +msgstr "Menù creato." -#: ../../addon/openstreetmap/openstreetmap.php:71 -msgid "" -"A list of public tile servers" -msgstr "" +#: ../../mod/menu.php:30 +msgid "Unable to create menu." +msgstr "Impossibile creare il menù." -#: ../../addon/openstreetmap/openstreetmap.php:72 -msgid "Default zoom" -msgstr "Default zoom" +#: ../../mod/menu.php:50 +msgid "Manage Menus" +msgstr "Gestione menù" -#: ../../addon/openstreetmap/openstreetmap.php:72 -msgid "The default zoom level. (1:world, 18:highest)" -msgstr "" +#: ../../mod/menu.php:53 +msgid "Drop" +msgstr "Elimina" -#: ../../addon/group_text/group_text.php:46 -#: ../../addon/editplain/editplain.php:46 -msgid "Editplain settings updated." -msgstr "Impostazioni 'Editplain' aggiornate." +#: ../../mod/menu.php:54 ../../mod/network.php:298 +#: ../../mod/connections.php:512 +msgid "New" +msgstr "Novità" -#: ../../addon/group_text/group_text.php:76 -msgid "Group Text" -msgstr "" +#: ../../mod/menu.php:55 +msgid "Create a new menu" +msgstr "Crea un nuovo menù" -#: ../../addon/group_text/group_text.php:78 -msgid "Use a text only (non-image) group selector in the \"group edit\" menu" -msgstr "" +#: ../../mod/menu.php:56 +msgid "Delete this menu" +msgstr "Elimina questo menù" -#: ../../addon/libravatar/libravatar.php:14 -msgid "Could NOT install Libravatar successfully.
    It requires PHP >= 5.3" -msgstr "" +#: ../../mod/menu.php:57 ../../mod/menu.php:101 +msgid "Edit menu contents" +msgstr "Modifica i contenuti del menù" -#: ../../addon/libravatar/libravatar.php:73 -#: ../../addon/gravatar/gravatar.php:71 -msgid "generic profile image" -msgstr "immagine generica del profilo" +#: ../../mod/menu.php:58 +msgid "Edit this menu" +msgstr "Modifica questo menù" -#: ../../addon/libravatar/libravatar.php:74 -#: ../../addon/gravatar/gravatar.php:72 -msgid "random geometric pattern" -msgstr "" +#: ../../mod/menu.php:73 +msgid "New Menu" +msgstr "Nuovo menù" -#: ../../addon/libravatar/libravatar.php:75 -#: ../../addon/gravatar/gravatar.php:73 -msgid "monster face" -msgstr "" +#: ../../mod/menu.php:74 ../../mod/menu.php:102 +msgid "Menu name" +msgstr "Nome del menù" -#: ../../addon/libravatar/libravatar.php:76 -#: ../../addon/gravatar/gravatar.php:74 -msgid "computer generated face" -msgstr "" +#: ../../mod/menu.php:74 ../../mod/menu.php:102 +msgid "Must be unique, only seen by you" +msgstr "Deve essere unico, lo vedrai solo tu" -#: ../../addon/libravatar/libravatar.php:77 -#: ../../addon/gravatar/gravatar.php:75 -msgid "retro arcade style face" -msgstr "" +#: ../../mod/menu.php:75 ../../mod/menu.php:103 +msgid "Menu title" +msgstr "Titolo del menù" -#: ../../addon/libravatar/libravatar.php:83 -#, php-format -msgid "Your PHP version %s is lower than the required PHP >= 5.3." -msgstr "" +#: ../../mod/menu.php:75 ../../mod/menu.php:103 +msgid "Menu title as seen by others" +msgstr "Titolo del menù come comparirà a tutti" -#: ../../addon/libravatar/libravatar.php:84 -msgid "This addon is not functional on your server." -msgstr "" +#: ../../mod/menu.php:90 +msgid "Menu deleted." +msgstr "Menù eliminato." -#: ../../addon/libravatar/libravatar.php:93 -#: ../../addon/gravatar/gravatar.php:89 -msgid "Information" -msgstr "" +#: ../../mod/menu.php:92 +msgid "Menu could not be deleted." +msgstr "Il menù non può essere eliminato." -#: ../../addon/libravatar/libravatar.php:93 -msgid "" -"Gravatar addon is installed. Please disable the Gravatar addon.
    The " -"Libravatar addon will fall back to Gravatar if nothing was found at " -"Libravatar." -msgstr "" +#: ../../mod/menu.php:98 +msgid "Edit Menu" +msgstr "Modifica menù" -#: ../../addon/libravatar/libravatar.php:100 -#: ../../addon/gravatar/gravatar.php:96 -msgid "Default avatar image" -msgstr "" +#: ../../mod/menu.php:100 +msgid "Add or remove entries to this menu" +msgstr "Aggiungi o rimuovi righe di questo menù" -#: ../../addon/libravatar/libravatar.php:100 -msgid "Select default avatar image if none was found. See README" -msgstr "" +#: ../../mod/home.php:76 +#, php-format +msgid "Welcome to %s" +msgstr "%s ti dà il benvenuto" -#: ../../addon/libravatar/libravatar.php:112 -msgid "Libravatar settings updated." -msgstr "" +#: ../../mod/message.php:16 +msgid "Check Mail" +msgstr "Controlla i messaggi" -#: ../../addon/libertree/libertree.php:36 -msgid "Post to libertree" -msgstr "" +#: ../../mod/message.php:52 +msgid "Unable to lookup recipient." +msgstr "Impossibile associare un destinatario." -#: ../../addon/libertree/libertree.php:67 -msgid "libertree Post Settings" -msgstr "" +#: ../../mod/message.php:60 +msgid "Unable to communicate with requested channel." +msgstr "Impossibile comunicare con il canale richiesto." -#: ../../addon/libertree/libertree.php:69 -msgid "Enable Libertree Post Plugin" -msgstr "" +#: ../../mod/message.php:67 +msgid "Cannot verify requested channel." +msgstr "Impossibile verificare il canale richiesto." -#: ../../addon/libertree/libertree.php:74 -msgid "Libertree API token" -msgstr "" +#: ../../mod/message.php:93 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito." -#: ../../addon/libertree/libertree.php:79 -msgid "Libertree site URL" -msgstr "" +#: ../../mod/message.php:213 ../../mod/notifications.php:101 +msgid "Messages" +msgstr "Messaggi" -#: ../../addon/libertree/libertree.php:84 -msgid "Post to Libertree by default" -msgstr "" +#: ../../mod/message.php:224 +msgid "Message deleted." +msgstr "Messaggio eliminato." -#: ../../addon/altpager/altpager.php:46 -msgid "Altpager settings updated." -msgstr "" +#: ../../mod/message.php:231 +msgid "Conversation removed." +msgstr "Conversazione rimossa." -#: ../../addon/altpager/altpager.php:79 -msgid "Alternate Pagination Setting" -msgstr "" +#: ../../mod/message.php:282 +msgid "Send Private Message" +msgstr "Invia un messaggio privato" -#: ../../addon/altpager/altpager.php:81 -msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?" -msgstr "" +#: ../../mod/message.php:283 ../../mod/message.php:418 +msgid "To:" +msgstr "A:" -#: ../../addon/mathjax/mathjax.php:37 -msgid "" -"The MathJax addon renders mathematical formulae written using the LaTeX " -"syntax surrounded by the usual $$ or an eqnarray block in the postings of " -"your wall,network tab and private mail." -msgstr "" +#: ../../mod/message.php:288 ../../mod/message.php:420 +msgid "Subject:" +msgstr "Oggetto:" -#: ../../addon/mathjax/mathjax.php:38 -msgid "Use the MathJax renderer" -msgstr "" +#: ../../mod/message.php:316 +msgid "No messages." +msgstr "Nessun messaggio." -#: ../../addon/mathjax/mathjax.php:74 -msgid "MathJax Base URL" -msgstr "" +#: ../../mod/message.php:332 ../../mod/message.php:389 +msgid "Delete message" +msgstr "Elimina il messaggio" -#: ../../addon/mathjax/mathjax.php:74 -msgid "" -"The URL for the javascript file that should be included to use MathJax. Can " -"be either the MathJax CDN or another installation of MathJax." -msgstr "" +#: ../../mod/message.php:334 +msgid "D, d M Y - g:i A" +msgstr "D d M Y - G:i" -#: ../../addon/editplain/editplain.php:76 -msgid "Editplain Settings" -msgstr "Impostazioni Editplain" +#: ../../mod/message.php:353 +msgid "Message not found." +msgstr "Messaggio non trovato." -#: ../../addon/editplain/editplain.php:78 -msgid "Disable richtext status editor" -msgstr "Disabilita l'editor di testo visuale" +#: ../../mod/message.php:411 +msgid "Delete conversation" +msgstr "Elimina la conversazione" -#: ../../addon/gravatar/gravatar.php:89 +#: ../../mod/message.php:413 msgid "" -"Libravatar addon is installed, too. Please disable Libravatar addon or this " -"Gravatar addon.
    The Libravatar addon will fall back to Gravatar if " -"nothing was found at Libravatar." -msgstr "" +"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." -#: ../../addon/gravatar/gravatar.php:96 -msgid "Select default avatar image if none was found at Gravatar. See README" -msgstr "" +#: ../../mod/message.php:417 +msgid "Send Reply" +msgstr "Invia la risposta" -#: ../../addon/gravatar/gravatar.php:97 -msgid "Rating of images" -msgstr "" +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "Nessun profilo" -#: ../../addon/gravatar/gravatar.php:97 -msgid "Select the appropriate avatar rating for your site. See README" -msgstr "" +#: ../../mod/help.php:30 +msgid "Help:" +msgstr "Guida:" -#: ../../addon/gravatar/gravatar.php:111 -msgid "Gravatar settings updated." -msgstr "" +#: ../../mod/help.php:38 ../../index.php:226 +msgid "Not Found" +msgstr "Non disponibile" -#: ../../addon/testdrive/testdrive.php:95 -msgid "Your Friendica test account is about to expire." -msgstr "" +#: ../../mod/help.php:41 ../../index.php:229 +msgid "Page not found." +msgstr "Pagina non trovata." -#: ../../addon/testdrive/testdrive.php:96 -#, php-format -msgid "" -"Hi %1$s,\n" -"\n" -"Your test account on %2$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com." -msgstr "" +#: ../../mod/rmagic.php:56 +msgid "Remote Authentication" +msgstr "Autenticazione a distanza" -#: ../../addon/pageheader/pageheader.php:50 -msgid "\"pageheader\" Settings" -msgstr "Impostazioni \"pageheader\"" +#: ../../mod/rmagic.php:57 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)" -#: ../../addon/pageheader/pageheader.php:68 -msgid "pageheader Settings saved." -msgstr "Impostazioni salvate." +#: ../../mod/rmagic.php:58 +msgid "Authenticate" +msgstr "Autenticazione" -#: ../../addon/ijpost/ijpost.php:39 -msgid "Post to Insanejournal" -msgstr "" +#: ../../mod/item.php:122 +msgid "Unable to locate original post." +msgstr "Impossibile trovare il messaggio originale." -#: ../../addon/ijpost/ijpost.php:70 -msgid "InsaneJournal Post Settings" -msgstr "" +#: ../../mod/item.php:290 +msgid "Empty post discarded." +msgstr "L'articolo vuoto è stato ignorato." -#: ../../addon/ijpost/ijpost.php:72 -msgid "Enable InsaneJournal Post Plugin" -msgstr "" +#: ../../mod/item.php:754 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Articolo non salvato." -#: ../../addon/ijpost/ijpost.php:77 -msgid "InsaneJournal username" -msgstr "" +#: ../../mod/item.php:1031 ../../mod/wall_upload.php:41 +msgid "Wall Photos" +msgstr "Foto della bacheca" -#: ../../addon/ijpost/ijpost.php:82 -msgid "InsaneJournal password" -msgstr "" +#: ../../mod/network.php:141 ../../mod/search.php:20 +msgid "Remove term" +msgstr "Rimuovi termine" -#: ../../addon/ijpost/ijpost.php:87 -msgid "Post to InsaneJournal by default" -msgstr "" +#: ../../mod/network.php:279 +msgid "Commented Order" +msgstr "Ultimi commenti" -#: ../../addon/jappixmini/jappixmini.php:266 -msgid "Jappix Mini addon settings" -msgstr "" +#: ../../mod/network.php:282 +msgid "Sort by Comment Date" +msgstr "Per data del commento" -#: ../../addon/jappixmini/jappixmini.php:268 -msgid "Activate addon" -msgstr "" +#: ../../mod/network.php:285 +msgid "Posted Order" +msgstr "Ultimi articoli" -#: ../../addon/jappixmini/jappixmini.php:271 -msgid "" -"Do not insert the Jappixmini Chat-Widget into the webinterface" -msgstr "" +#: ../../mod/network.php:288 +msgid "Sort by Post Date" +msgstr "Per data di creazione" -#: ../../addon/jappixmini/jappixmini.php:274 -msgid "Jabber username" -msgstr "" +#: ../../mod/network.php:292 ../../mod/notifications.php:86 +msgid "Personal" +msgstr "Personali" -#: ../../addon/jappixmini/jappixmini.php:277 -msgid "Jabber server" -msgstr "" +#: ../../mod/network.php:295 +msgid "Posts that mention or involve you" +msgstr "Articoli che ti riguardano o ti menzionano" -#: ../../addon/jappixmini/jappixmini.php:281 -msgid "Jabber BOSH host" -msgstr "" +#: ../../mod/network.php:301 +msgid "Activity Stream - by date" +msgstr "Elenco attività - per data" -#: ../../addon/jappixmini/jappixmini.php:285 -msgid "Jabber password" -msgstr "" +#: ../../mod/network.php:308 +msgid "Starred" +msgstr "Preferiti" -#: ../../addon/jappixmini/jappixmini.php:290 -msgid "Encrypt Jabber password with Friendica password (recommended)" -msgstr "" +#: ../../mod/network.php:311 +msgid "Favourite Posts" +msgstr "Articoli preferiti" -#: ../../addon/jappixmini/jappixmini.php:293 -msgid "Friendica password" -msgstr "" +#: ../../mod/network.php:318 +msgid "Spam" +msgstr "Spam" -#: ../../addon/jappixmini/jappixmini.php:296 -msgid "Approve subscription requests from Friendica contacts automatically" -msgstr "" +#: ../../mod/network.php:321 +msgid "Posts flagged as SPAM" +msgstr "Articoli marcati come spam" -#: ../../addon/jappixmini/jappixmini.php:299 -msgid "Subscribe to Friendica contacts automatically" -msgstr "" +#: ../../mod/network.php:361 +msgid "Refresh" +msgstr "Aggiorna" -#: ../../addon/jappixmini/jappixmini.php:302 -msgid "Purge internal list of jabber addresses of contacts" -msgstr "" +#: ../../mod/network.php:362 ../../mod/connections.php:365 +msgid "Me" +msgstr "Io" -#: ../../addon/jappixmini/jappixmini.php:308 -msgid "Add contact" -msgstr "" +#: ../../mod/network.php:363 ../../mod/connections.php:367 +msgid "Best Friends" +msgstr "Buoni amici" -#: ../../addon/viewsrc/viewsrc.php:37 -msgid "View Source" -msgstr "Vedi sorgente" +#: ../../mod/network.php:365 +msgid "Co-workers" +msgstr "Colleghi" -#: ../../addon/statusnet/statusnet.php:134 -msgid "Post to StatusNet" -msgstr "Invia a StatusNet" +#: ../../mod/network.php:366 ../../mod/connections.php:369 +msgid "Former Friends" +msgstr "Ex amici" -#: ../../addon/statusnet/statusnet.php:176 -msgid "" -"Please contact your site administrator.
    The provided API URL is not " -"valid." -msgstr "Contatta l'amministratore del sito.
    L'URL delle API fornito non è valido." +#: ../../mod/network.php:367 ../../mod/connections.php:370 +msgid "Acquaintances" +msgstr "Conoscenti" -#: ../../addon/statusnet/statusnet.php:204 -msgid "We could not contact the StatusNet API with the Path you entered." -msgstr "Non possiamo conttattare le API di StatusNet con il percorso che hai inserito." +#: ../../mod/network.php:368 +msgid "Everybody" +msgstr "Tutti" -#: ../../addon/statusnet/statusnet.php:232 -msgid "StatusNet settings updated." -msgstr "Impostazioni StatusNet aggiornate." +#: ../../mod/network.php:385 +msgid "Search Results For:" +msgstr "Cerca risultati con:" -#: ../../addon/statusnet/statusnet.php:257 -msgid "StatusNet Posting Settings" -msgstr "Impostazioni di invio a StatusNet" +#: ../../mod/network.php:430 +msgid "No such group" +msgstr "" -#: ../../addon/statusnet/statusnet.php:271 -msgid "Globally Available StatusNet OAuthKeys" -msgstr "OAuthKeys globali di StatusNet" +#: ../../mod/network.php:441 +msgid "Group is empty" +msgstr "" -#: ../../addon/statusnet/statusnet.php:272 -msgid "" -"There are preconfigured OAuth key pairs for some StatusNet servers " -"available. If you are useing one of them, please use these credentials. If " -"not feel free to connect to any other StatusNet instance (see below)." -msgstr "Esistono coppie di chiavi OAuth precofigurate per alcuni server StatusNet. Se usi uno di questi server, per favore scegli queste credenziali. Altrimenti sei libero di collegarti a un'altra installazione di StatusNet (vedi sotto)." +#: ../../mod/network.php:456 +msgid "Contact: " +msgstr "Contatto:" -#: ../../addon/statusnet/statusnet.php:280 -msgid "Provide your own OAuth Credentials" -msgstr "Fornisci le tue credenziali OAuth" +#: ../../mod/network.php:459 +msgid "Invalid contact." +msgstr "Contatto non valido." -#: ../../addon/statusnet/statusnet.php:281 -msgid "" -"No consumer key pair for StatusNet found. Register your Friendica Account as" -" an desktop client on your StatusNet account, copy the consumer key pair " -"here and enter the API base root.
    Before you register your own OAuth " -"key pair ask the administrator if there is already a key pair for this " -"Friendica installation at your favorited StatusNet installation." -msgstr "Nessuna coppia di chiavi consumer trovate per StatusNet. Registra il tuo account Friendica come un client desktop nel tuo account StatusNet, copia la coppia di chiavi consumer qui e inserisci l'url base delle API.
    Prima di registrare la tua coppia di chiavi OAuth, chiedi all'amministratore se esiste già una coppia di chiavi per questo sito Friendica presso la tua installazione StatusNet preferita." - -#: ../../addon/statusnet/statusnet.php:283 -msgid "OAuth Consumer Key" -msgstr "OAuth Consumer Key" - -#: ../../addon/statusnet/statusnet.php:286 -msgid "OAuth Consumer Secret" -msgstr "OAuth Consumer Secret" - -#: ../../addon/statusnet/statusnet.php:289 -msgid "Base API Path (remember the trailing /)" -msgstr "Indirizzo di base per le API (ricorda la / alla fine)" - -#: ../../addon/statusnet/statusnet.php:310 -msgid "" -"To connect to your StatusNet account click the button below to get a " -"security code from StatusNet which you have to copy into the input box below" -" and submit the form. Only your public posts will be posted" -" to StatusNet." -msgstr "Per collegare il tuo account StatusNet, clicca sul bottone per ottenere un codice di sicurezza da StatusNet, che dovrai copiare nel box sottostante e poi inviare la form. Solo i tuoi messaggi pubblici saranno inviati a StatusNet." +#: ../../mod/admin.php:48 +msgid "Theme settings updated." +msgstr "Le impostazioni del tema sono state aggiornate." -#: ../../addon/statusnet/statusnet.php:311 -msgid "Log in with StatusNet" -msgstr "Accedi con StatuNet" +#: ../../mod/admin.php:83 ../../mod/admin.php:408 +msgid "Site" +msgstr "Sito" -#: ../../addon/statusnet/statusnet.php:313 -msgid "Copy the security code from StatusNet here" -msgstr "Copia il codice di sicurezza da StatusNet qui" +#: ../../mod/admin.php:84 ../../mod/admin.php:632 ../../mod/admin.php:644 +msgid "Users" +msgstr "Utenti" -#: ../../addon/statusnet/statusnet.php:319 -msgid "Cancel Connection Process" -msgstr "Annulla il processo di connessione" +#: ../../mod/admin.php:85 ../../mod/admin.php:726 ../../mod/admin.php:768 +msgid "Plugins" +msgstr "Plugin" -#: ../../addon/statusnet/statusnet.php:321 -msgid "Current StatusNet API is" -msgstr "Le API StatusNet correnti sono" +#: ../../mod/admin.php:86 ../../mod/admin.php:931 ../../mod/admin.php:967 +msgid "Themes" +msgstr "Temi" -#: ../../addon/statusnet/statusnet.php:322 -msgid "Cancel StatusNet Connection" -msgstr "Annulla la connessione a StatusNet" +#: ../../mod/admin.php:87 +msgid "DB updates" +msgstr "Aggiornamenti al DB" -#: ../../addon/statusnet/statusnet.php:333 ../../addon/twitter/twitter.php:189 -msgid "Currently connected to: " -msgstr "Al momento connesso con:" +#: ../../mod/admin.php:101 ../../mod/admin.php:108 ../../mod/admin.php:1054 +msgid "Logs" +msgstr "Log" -#: ../../addon/statusnet/statusnet.php:334 -msgid "" -"If enabled all your public postings can be posted to the " -"associated StatusNet account. You can choose to do so by default (here) or " -"for every posting separately in the posting options when writing the entry." -msgstr "Se abilitato tutti i tuoi messaggi pubblici possono essere inviati all'account StatusNet associato. Puoi scegliere di farlo sempre (qui) o ogni volta che invii, nelle impostazioni di privacy del messaggio." +#: ../../mod/admin.php:107 +msgid "Plugin Features" +msgstr "Funzionalità dei componenti aggiuntivi" -#: ../../addon/statusnet/statusnet.php:336 -msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) the link potentially included in public " -"postings relayed to StatusNet will lead the visitor to a blank page " -"informing the visitor that the access to your profile has been restricted." -msgstr "" +#: ../../mod/admin.php:109 +msgid "User registrations waiting for confirmation" +msgstr "Utenti registrati in attesa di conferma" -#: ../../addon/statusnet/statusnet.php:339 -msgid "Allow posting to StatusNet" -msgstr "Permetti l'invio a StatusNet" +#: ../../mod/admin.php:180 +msgid "Message queues" +msgstr "Coda dei messaggi" -#: ../../addon/statusnet/statusnet.php:342 -msgid "Send public postings to StatusNet by default" -msgstr "Invia sempre i messaggi pubblici a StatusNet" +#: ../../mod/admin.php:185 ../../mod/admin.php:407 ../../mod/admin.php:631 +#: ../../mod/admin.php:725 ../../mod/admin.php:767 ../../mod/admin.php:930 +#: ../../mod/admin.php:966 ../../mod/admin.php:1053 +msgid "Administration" +msgstr "Amministrazione" -#: ../../addon/statusnet/statusnet.php:345 -msgid "Send linked #-tags and @-names to StatusNet" -msgstr "" +#: ../../mod/admin.php:186 +msgid "Summary" +msgstr "Riepilogo" -#: ../../addon/statusnet/statusnet.php:350 ../../addon/twitter/twitter.php:206 -msgid "Clear OAuth configuration" -msgstr "Rimuovi la configurazione OAuth" +#: ../../mod/admin.php:188 +msgid "Registered users" +msgstr "Utenti registrati" -#: ../../addon/statusnet/statusnet.php:568 -msgid "API URL" -msgstr "API URL" +#: ../../mod/admin.php:190 +msgid "Pending registrations" +msgstr "Registrazioni in attesa" -#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19 -msgid "Infinite Improbability Drive" -msgstr "" +#: ../../mod/admin.php:191 +msgid "Version" +msgstr "Versione" -#: ../../addon/tumblr/tumblr.php:36 -msgid "Post to Tumblr" -msgstr "Pubblica su Tumblr" +#: ../../mod/admin.php:193 +msgid "Active plugins" +msgstr "Plugin attivi" -#: ../../addon/tumblr/tumblr.php:67 -msgid "Tumblr Post Settings" -msgstr "Impostazioni di invio a Tumblr" +#: ../../mod/admin.php:332 +msgid "Site settings updated." +msgstr "Impostazioni del sito aggiornate." -#: ../../addon/tumblr/tumblr.php:69 -msgid "Enable Tumblr Post Plugin" -msgstr "Abilita Plugin Tumblr" +#: ../../mod/admin.php:363 +msgid "No special theme for accessibility" +msgstr "Nessun tema speciale per l'accessibilità" -#: ../../addon/tumblr/tumblr.php:74 -msgid "Tumblr login" -msgstr "Tumblr login" +#: ../../mod/admin.php:388 +msgid "Closed" +msgstr "Chiusa" -#: ../../addon/tumblr/tumblr.php:79 -msgid "Tumblr password" -msgstr "Tumblr password" +#: ../../mod/admin.php:389 +msgid "Requires approval" +msgstr "Richiede l'approvazione" -#: ../../addon/tumblr/tumblr.php:84 -msgid "Post to Tumblr by default" -msgstr "Pubblica su Tumblr di default" +#: ../../mod/admin.php:390 +msgid "Open" +msgstr "Aperta" -#: ../../addon/numfriends/numfriends.php:46 -msgid "Numfriends settings updated." -msgstr "Impostazioni \"Numfriends' aggiornate." +#: ../../mod/admin.php:395 +msgid "Private" +msgstr "Privato" -#: ../../addon/numfriends/numfriends.php:77 -msgid "Numfriends Settings" -msgstr "Impostazioni Numfriends" +#: ../../mod/admin.php:396 +msgid "Paid Access" +msgstr "Servizio a pagamento" -#: ../../addon/gnot/gnot.php:48 -msgid "Gnot settings updated." -msgstr "Impostazioni di \"Gnot\" aggiornate." +#: ../../mod/admin.php:397 +msgid "Free Access" +msgstr "Servizio gratuito" -#: ../../addon/gnot/gnot.php:79 -msgid "Gnot Settings" -msgstr "Impostazioni Gnot" +#: ../../mod/admin.php:401 +msgid "No SSL policy, links will track page SSL state" +msgstr "Nessuna politica restrittiva su SSL, i link seguiranno lo stato SSL della pagina" -#: ../../addon/gnot/gnot.php:81 -msgid "" -"Allows threading of email comment notifications on Gmail and anonymising the" -" subject line." -msgstr "Permetti di raggruppare le notifiche dei commenti in thread su Gmail e anonimizza l'oggetto" +#: ../../mod/admin.php:402 +msgid "Force all links to use SSL" +msgstr "Forza tutti i link ad usare SSL" -#: ../../addon/gnot/gnot.php:82 -msgid "Enable this plugin/addon?" -msgstr "Abilita questo plugin?" +#: ../../mod/admin.php:410 ../../mod/register.php:166 +msgid "Registration" +msgstr "Registrazione" -#: ../../addon/gnot/gnot.php:97 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%d" -msgstr "[Friendica:Notifica] Commento alla conversazione #%d" +#: ../../mod/admin.php:411 +msgid "File upload" +msgstr "Caricamento file" -#: ../../addon/wppost/wppost.php:42 -msgid "Post to Wordpress" -msgstr "Pubblica su Wordpress" +#: ../../mod/admin.php:412 +msgid "Policies" +msgstr "Politiche" -#: ../../addon/wppost/wppost.php:76 -msgid "WordPress Post Settings" -msgstr "Impostazioni invio a WordPress" +#: ../../mod/admin.php:413 +msgid "Advanced" +msgstr "Avanzate" -#: ../../addon/wppost/wppost.php:78 -msgid "Enable WordPress Post Plugin" -msgstr "Abilita plugin \"invia a WordPress\"" +#: ../../mod/admin.php:417 +msgid "Site name" +msgstr "Nome del sito" -#: ../../addon/wppost/wppost.php:83 -msgid "WordPress username" -msgstr "nome utente WordPress" +#: ../../mod/admin.php:418 +msgid "Banner/Logo" +msgstr "Testata o logo" -#: ../../addon/wppost/wppost.php:88 -msgid "WordPress password" -msgstr "password WordPress" +#: ../../mod/admin.php:419 +msgid "System language" +msgstr "Lingua di sistema" -#: ../../addon/wppost/wppost.php:93 -msgid "WordPress API URL" -msgstr "WordPress API URL" +#: ../../mod/admin.php:420 +msgid "System theme" +msgstr "Tema di sistema" -#: ../../addon/wppost/wppost.php:98 -msgid "Post to WordPress by default" -msgstr "Pubblica su WordPress di default" +#: ../../mod/admin.php:420 +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" -#: ../../addon/wppost/wppost.php:103 -msgid "Provide a backlink to the Friendica post" -msgstr "" +#: ../../mod/admin.php:421 +msgid "Mobile system theme" +msgstr "Tema di sistema per dispositivi mobili" -#: ../../addon/wppost/wppost.php:207 -msgid "Read the original post and comment stream on Friendica" -msgstr "" +#: ../../mod/admin.php:421 +msgid "Theme for mobile devices" +msgstr "Tema per i dispositivi mobili" -#: ../../addon/showmore/showmore.php:38 -msgid "\"Show more\" Settings" -msgstr "Impostazioni \"Mostra altro\"" +#: ../../mod/admin.php:422 +msgid "Accessibility system theme" +msgstr "Tema di sistema ad alta accessibilità" -#: ../../addon/showmore/showmore.php:41 -msgid "Enable Show More" -msgstr "Abilita \"Mostra altro\"" +#: ../../mod/admin.php:422 +msgid "Accessibility theme" +msgstr "Tema ad alta accessibilità" -#: ../../addon/showmore/showmore.php:44 -msgid "Cutting posts after how much characters" -msgstr "" +#: ../../mod/admin.php:423 +msgid "Channel to use for this website's static pages" +msgstr "Canale da usare per le pagine statiche di questo sito" -#: ../../addon/showmore/showmore.php:65 -msgid "Show More Settings saved." -msgstr "Impostazioni \"Mostra altro\" salvate." +#: ../../mod/admin.php:423 +msgid "Site Channel" +msgstr "Canale del sito" -#: ../../addon/piwik/piwik.php:79 -msgid "" -"This website is tracked using the Piwik " -"analytics tool." -msgstr "Questo sito è monitorato con lo strumento di analisi Piwik." +#: ../../mod/admin.php:424 +msgid "SSL link policy" +msgstr "Politiche sui link SSL" -#: ../../addon/piwik/piwik.php:82 -#, php-format -msgid "" -"If you do not want that your visits are logged this way you can" -" set a cookie to prevent Piwik from tracking further visits of the site " -"(opt-out)." -msgstr "Se non vuoi che le tue visite vengono registrate in questo modo è possibile impostare un cookie per evitare che Piwik rintracci ulteriori visite del sito (opt-out)." +#: ../../mod/admin.php:424 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Determina se i link generati debbano usare esclusivamente SSL" -#: ../../addon/piwik/piwik.php:90 -msgid "Piwik Base URL" -msgstr "Piwik Base URL" +#: ../../mod/admin.php:425 +msgid "Maximum image size" +msgstr "Dimensione massima immagini" -#: ../../addon/piwik/piwik.php:90 +#: ../../mod/admin.php:425 msgid "" -"Absolute path to your Piwik installation. (without protocol (http/s), with " -"trailing slash)" -msgstr "" - -#: ../../addon/piwik/piwik.php:91 -msgid "Site ID" -msgstr "Site ID" +"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." -#: ../../addon/piwik/piwik.php:92 -msgid "Show opt-out cookie link?" -msgstr "Mostra il link per il cookie opt-out?" +#: ../../mod/admin.php:426 +msgid "Register policy" +msgstr "Politica di registrazione" -#: ../../addon/piwik/piwik.php:93 -msgid "Asynchronous tracking" -msgstr "" +#: ../../mod/admin.php:427 +msgid "Access policy" +msgstr "Tipo di accesso" -#: ../../addon/twitter/twitter.php:73 -msgid "Post to Twitter" -msgstr "Invia a Twitter" +#: ../../mod/admin.php:428 +msgid "Register text" +msgstr "Testo registrazione" -#: ../../addon/twitter/twitter.php:122 -msgid "Twitter settings updated." -msgstr "Impostazioni di Twitter aggiornate." +#: ../../mod/admin.php:428 +msgid "Will be displayed prominently on the registration page." +msgstr "Sarà mostrato ben visibile nella pagina di registrazione." -#: ../../addon/twitter/twitter.php:146 -msgid "Twitter Posting Settings" -msgstr "Impostazioni di invio a Twitter" +#: ../../mod/admin.php:429 +msgid "Accounts abandoned after x days" +msgstr "Account abbandonati dopo x giorni" -#: ../../addon/twitter/twitter.php:153 +#: ../../mod/admin.php:429 msgid "" -"No consumer key pair for Twitter found. Please contact your site " -"administrator." -msgstr "Nessuna coppia di chiavi per Twitter trovata. Contatta l'amministratore del sito." +"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 nessun limite di tempo." -#: ../../addon/twitter/twitter.php:172 -msgid "" -"At this Friendica instance the Twitter plugin was enabled but you have not " -"yet connected your account to your Twitter account. To do so click the " -"button below to get a PIN from Twitter which you have to copy into the input" -" box below and submit the form. Only your public posts will" -" be posted to Twitter." -msgstr "Il plugin Twitter è abilitato ma non hai ancora collegato i tuoi account Friendica e Twitter. Per farlo, clicca il bottone qui sotto per ricevere un PIN da Twitter che dovrai copiare nel campo qui sotto. Solo i tuoi post pubblici saranno inviati a Twitter." - -#: ../../addon/twitter/twitter.php:173 -msgid "Log in with Twitter" -msgstr "Accedi con Twitter" - -#: ../../addon/twitter/twitter.php:175 -msgid "Copy the PIN from Twitter here" -msgstr "Copia il PIN da Twitter qui" - -#: ../../addon/twitter/twitter.php:190 +#: ../../mod/admin.php:430 +msgid "Allowed friend domains" +msgstr "Domini fidati e consentiti" + +#: ../../mod/admin.php:430 msgid "" -"If enabled all your public postings can be posted to the " -"associated Twitter account. You can choose to do so by default (here) or for" -" every posting separately in the posting options when writing the entry." -msgstr "Se abilitato tutti i tuoi messaggi pubblici possono essere inviati all'account Twitter associato. Puoi scegliere di farlo sempre (qui) o ogni volta che invii, nelle impostazioni di privacy del messaggio." +"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." -#: ../../addon/twitter/twitter.php:192 +#: ../../mod/admin.php:431 +msgid "Allowed email domains" +msgstr "Domini email consentiti" + +#: ../../mod/admin.php:431 msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) the link potentially included in public " -"postings relayed to Twitter will lead the visitor to a blank page informing " -"the visitor that the access to your profile has been restricted." -msgstr "" +"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." -#: ../../addon/twitter/twitter.php:195 -msgid "Allow posting to Twitter" -msgstr "Permetti l'invio a Twitter" +#: ../../mod/admin.php:432 +msgid "Block public" +msgstr "Blocca pagine pubbliche" -#: ../../addon/twitter/twitter.php:198 -msgid "Send public postings to Twitter by default" -msgstr "Invia sempre i messaggi pubblici a Twitter" +#: ../../mod/admin.php:432 +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." -#: ../../addon/twitter/twitter.php:201 -msgid "Send linked #-tags and @-names to Twitter" -msgstr "" +#: ../../mod/admin.php:433 +msgid "Force publish" +msgstr "Forza publicazione del profilo" -#: ../../addon/twitter/twitter.php:396 -msgid "Consumer key" -msgstr "Consumer key" +#: ../../mod/admin.php:433 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Seleziona per mostrare obbligatoriamente tutti i profili registrati nell'elenco del sito." -#: ../../addon/twitter/twitter.php:397 -msgid "Consumer secret" -msgstr "Consumer secret" +#: ../../mod/admin.php:435 +msgid "Proxy user" +msgstr "Utente proxy" -#: ../../addon/irc/irc.php:44 -msgid "IRC Settings" -msgstr "Impostazioni IRC" +#: ../../mod/admin.php:436 +msgid "Proxy URL" +msgstr "URL proxy" -#: ../../addon/irc/irc.php:46 -msgid "Channel(s) to auto connect (comma separated)" -msgstr "Canali a cui autocollegarsi (separati da virgola)" +#: ../../mod/admin.php:437 +msgid "Network timeout" +msgstr "Timeout rete" -#: ../../addon/irc/irc.php:51 -msgid "Popular Channels (comma separated)" -msgstr "Canali popolari (separati da virgola)" +#: ../../mod/admin.php:437 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)." -#: ../../addon/irc/irc.php:69 -msgid "IRC settings saved." -msgstr "Impostazioni IRC salvate." +#: ../../mod/admin.php:438 +msgid "Delivery interval" +msgstr "Recapito ritardato" -#: ../../addon/irc/irc.php:74 -msgid "IRC Chatroom" -msgstr "Stanza IRC" +#: ../../mod/admin.php:438 +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." -#: ../../addon/irc/irc.php:96 -msgid "Popular Channels" -msgstr "Canali Popolari" +#: ../../mod/admin.php:439 +msgid "Poll interval" +msgstr "Intervallo di polling" -#: ../../addon/fromapp/fromapp.php:38 -msgid "Fromapp settings updated." -msgstr "" +#: ../../mod/admin.php:439 +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'." -#: ../../addon/fromapp/fromapp.php:64 -msgid "FromApp Settings" -msgstr "" +#: ../../mod/admin.php:440 +msgid "Maximum Load Average" +msgstr "Carico massimo medio" -#: ../../addon/fromapp/fromapp.php:66 +#: ../../mod/admin.php:440 msgid "" -"The application name you would like to show your posts originating from." -msgstr "" +"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." -#: ../../addon/fromapp/fromapp.php:70 -msgid "Use this application name even if another application was used." -msgstr "" +#: ../../mod/admin.php:456 +msgid "Update has been marked successful" +msgstr "L'aggiornamento è stato marcato come eseguito." -#: ../../addon/blogger/blogger.php:42 -msgid "Post to blogger" -msgstr "Posta su blogger" +#: ../../mod/admin.php:466 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema." -#: ../../addon/blogger/blogger.php:74 -msgid "Blogger Post Settings" -msgstr "Impostazioni post per blogger" +#: ../../mod/admin.php:469 +#, php-format +msgid "Update %s was successfully applied." +msgstr "L'aggiornamento %s è terminato correttamente." -#: ../../addon/blogger/blogger.php:76 -msgid "Enable Blogger Post Plugin" -msgstr "Abilita il plugin Blogger" +#: ../../mod/admin.php:473 +#, 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." -#: ../../addon/blogger/blogger.php:81 -msgid "Blogger username" -msgstr "Blogger username" +#: ../../mod/admin.php:476 +#, php-format +msgid "Update function %s could not be found." +msgstr "Impossibile trovare la funzione di aggiornamento %s" -#: ../../addon/blogger/blogger.php:86 -msgid "Blogger password" -msgstr "Blogger password" +#: ../../mod/admin.php:491 +msgid "No failed updates." +msgstr "Nessun aggiornamento fallito." -#: ../../addon/blogger/blogger.php:91 -msgid "Blogger API URL" -msgstr "Blogger API URL" +#: ../../mod/admin.php:495 +msgid "Failed Updates" +msgstr "Aggiornamenti falliti." -#: ../../addon/blogger/blogger.php:96 -msgid "Post to Blogger by default" -msgstr "" +#: ../../mod/admin.php:497 +msgid "Mark success (if update was manually applied)" +msgstr "Marca come eseguito (se applicato manualmente)." -#: ../../addon/posterous/posterous.php:37 -msgid "Post to Posterous" -msgstr "Invia a Posterous" +#: ../../mod/admin.php:498 +msgid "Attempt to execute this update step automatically" +msgstr "Tenta di eseguire in automatico questo passaggio dell'aggiornamento." -#: ../../addon/posterous/posterous.php:70 -msgid "Posterous Post Settings" -msgstr "Impostazioni di invio a Posterous" +#: ../../mod/admin.php:524 +#, 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" -#: ../../addon/posterous/posterous.php:72 -msgid "Enable Posterous Post Plugin" -msgstr "Abilita il plugin di invio a Posterous" +#: ../../mod/admin.php:531 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s utente cancellato" +msgstr[1] "%s utenti cancellati" -#: ../../addon/posterous/posterous.php:77 -msgid "Posterous login" -msgstr "Posterous login" +#: ../../mod/admin.php:562 +msgid "Account not found" +msgstr "Account non trovato" -#: ../../addon/posterous/posterous.php:82 -msgid "Posterous password" -msgstr "Posterous password" +#: ../../mod/admin.php:573 +#, php-format +msgid "User '%s' deleted" +msgstr "Utente '%s' eliminato" -#: ../../addon/posterous/posterous.php:87 -msgid "Posterous site ID" -msgstr "" +#: ../../mod/admin.php:582 +#, php-format +msgid "User '%s' unblocked" +msgstr "Utente '%s' sbloccato" -#: ../../addon/posterous/posterous.php:92 -msgid "Posterous API token" -msgstr "" +#: ../../mod/admin.php:582 +#, php-format +msgid "User '%s' blocked" +msgstr "Utente '%s' bloccato" -#: ../../addon/posterous/posterous.php:97 -msgid "Post to Posterous by default" -msgstr "Invia sempre a Posterous" +#: ../../mod/admin.php:613 +msgid "Normal Account" +msgstr "Account normale" -#: ../../view/theme/cleanzero/config.php:82 -#: ../../view/theme/diabook/config.php:192 -#: ../../view/theme/quattro/config.php:55 ../../view/theme/dispy/config.php:72 -msgid "Theme settings" -msgstr "Impostazioni tema" +#: ../../mod/admin.php:614 +msgid "Soapbox Account" +msgstr "Account per comunicati e annunci" -#: ../../view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "" +#: ../../mod/admin.php:615 +msgid "Community/Celebrity Account" +msgstr "Account per celebrità o per comunità" -#: ../../view/theme/cleanzero/config.php:84 -#: ../../view/theme/diabook/config.php:193 -#: ../../view/theme/dispy/config.php:73 -msgid "Set font-size for posts and comments" -msgstr "" +#: ../../mod/admin.php:616 +msgid "Automatic Friend Account" +msgstr "Account per amicizia automatizzato" -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "" +#: ../../mod/admin.php:634 +msgid "select all" +msgstr "seleziona tutti" -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:57 -msgid "Color scheme" -msgstr "Schema colori" +#: ../../mod/admin.php:635 +msgid "User registrations waiting for confirm" +msgstr "Richieste di registrazione in attesa di conferma" -#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:49 -#: ../../include/nav.php:115 -msgid "Your posts and conversations" -msgstr "I tuoi messaggi e le tue conversazioni" +#: ../../mod/admin.php:636 +msgid "Request date" +msgstr "Data richiesta" -#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:50 -msgid "Your profile page" -msgstr "Pagina del tuo profilo" +#: ../../mod/admin.php:637 +msgid "No registrations." +msgstr "Nessuna registrazione." -#: ../../view/theme/diabook/theme.php:129 -msgid "Your contacts" -msgstr "" +#: ../../mod/admin.php:638 ../../mod/intro.php:11 ../../mod/intro.php:98 +#: ../../mod/notifications.php:159 ../../mod/notifications.php:206 +msgid "Approve" +msgstr "Approva" -#: ../../view/theme/diabook/theme.php:130 ../../include/nav.php:51 -msgid "Your photos" -msgstr "Le tue foto" +#: ../../mod/admin.php:639 +msgid "Deny" +msgstr "Nega" -#: ../../view/theme/diabook/theme.php:131 ../../include/nav.php:52 -msgid "Your events" -msgstr "I tuoi eventi" +#: ../../mod/admin.php:641 ../../mod/intro.php:14 ../../mod/intro.php:99 +#: ../../mod/connections.php:309 ../../mod/connections.php:450 +msgid "Block" +msgstr "Blocca" -#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53 -msgid "Personal notes" -msgstr "Note personali" +#: ../../mod/admin.php:642 ../../mod/connections.php:309 +#: ../../mod/connections.php:450 +msgid "Unblock" +msgstr "Sblocca" -#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53 -msgid "Your personal photos" -msgstr "Le tue foto personali" +#: ../../mod/admin.php:645 +msgid "Register date" +msgstr "Data registrazione" -#: ../../view/theme/diabook/theme.php:134 -#: ../../view/theme/diabook/theme.php:643 -#: ../../view/theme/diabook/theme.php:747 -#: ../../view/theme/diabook/config.php:201 -msgid "Community Pages" -msgstr "" +#: ../../mod/admin.php:645 +msgid "Last login" +msgstr "Ultimo accesso" -#: ../../view/theme/diabook/theme.php:490 -#: ../../view/theme/diabook/theme.php:749 -#: ../../view/theme/diabook/config.php:203 -msgid "Community Profiles" -msgstr "" +#: ../../mod/admin.php:645 +msgid "Service Class" +msgstr "Service Class" -#: ../../view/theme/diabook/theme.php:511 -#: ../../view/theme/diabook/theme.php:754 -#: ../../view/theme/diabook/config.php:208 -msgid "Last users" -msgstr "Ultimi utenti" - -#: ../../view/theme/diabook/theme.php:540 -#: ../../view/theme/diabook/theme.php:756 -#: ../../view/theme/diabook/config.php:210 -msgid "Last likes" -msgstr "Ultimi \"mi piace\"" - -#: ../../view/theme/diabook/theme.php:585 -#: ../../view/theme/diabook/theme.php:755 -#: ../../view/theme/diabook/config.php:209 -msgid "Last photos" -msgstr "Ultime foto" - -#: ../../view/theme/diabook/theme.php:622 -#: ../../view/theme/diabook/theme.php:752 -#: ../../view/theme/diabook/config.php:206 -msgid "Find Friends" -msgstr "Trova Amici" - -#: ../../view/theme/diabook/theme.php:623 -msgid "Local Directory" -msgstr "Elenco Locale" - -#: ../../view/theme/diabook/theme.php:625 ../../include/contact_widgets.php:35 -msgid "Similar Interests" -msgstr "Interessi simili" +#: ../../mod/admin.php:647 +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?" -#: ../../view/theme/diabook/theme.php:627 ../../include/contact_widgets.php:37 -msgid "Invite Friends" -msgstr "Invita amici" +#: ../../mod/admin.php:648 +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?" -#: ../../view/theme/diabook/theme.php:678 -#: ../../view/theme/diabook/theme.php:748 -#: ../../view/theme/diabook/config.php:202 -msgid "Earth Layers" -msgstr "" +#: ../../mod/admin.php:689 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s non attivo." -#: ../../view/theme/diabook/theme.php:683 -msgid "Set zoomfactor for Earth Layers" -msgstr "" +#: ../../mod/admin.php:693 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s attivo." -#: ../../view/theme/diabook/theme.php:684 -#: ../../view/theme/diabook/config.php:199 -msgid "Set longitude (X) for Earth Layers" -msgstr "" +#: ../../mod/admin.php:703 ../../mod/admin.php:901 +msgid "Disable" +msgstr "Disattiva" -#: ../../view/theme/diabook/theme.php:685 -#: ../../view/theme/diabook/config.php:200 -msgid "Set latitude (Y) for Earth Layers" -msgstr "" +#: ../../mod/admin.php:705 ../../mod/admin.php:903 +msgid "Enable" +msgstr "Attiva" -#: ../../view/theme/diabook/theme.php:698 -#: ../../view/theme/diabook/theme.php:750 -#: ../../view/theme/diabook/config.php:204 -msgid "Help or @NewHere ?" -msgstr "Serve aiuto? Sei nuovo?" - -#: ../../view/theme/diabook/theme.php:705 -#: ../../view/theme/diabook/theme.php:751 -#: ../../view/theme/diabook/config.php:205 -msgid "Connect Services" -msgstr "Servizi di conessione" - -#: ../../view/theme/diabook/theme.php:712 -#: ../../view/theme/diabook/theme.php:753 -msgid "Last Tweets" -msgstr "" +#: ../../mod/admin.php:727 ../../mod/admin.php:932 +msgid "Toggle" +msgstr "Attiva/disattiva" -#: ../../view/theme/diabook/theme.php:715 -#: ../../view/theme/diabook/config.php:197 -msgid "Set twitter search term" -msgstr "" +#: ../../mod/admin.php:735 ../../mod/admin.php:942 +msgid "Author: " +msgstr "Autore:" -#: ../../view/theme/diabook/theme.php:735 -#: ../../view/theme/diabook/theme.php:736 -#: ../../view/theme/diabook/theme.php:737 -#: ../../view/theme/diabook/theme.php:738 -#: ../../view/theme/diabook/theme.php:739 -#: ../../view/theme/diabook/theme.php:740 -#: ../../view/theme/diabook/theme.php:741 -#: ../../view/theme/diabook/theme.php:742 -#: ../../view/theme/diabook/theme.php:743 -#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:288 -msgid "don't show" -msgstr "non mostrare" +#: ../../mod/admin.php:736 ../../mod/admin.php:943 +msgid "Maintainer: " +msgstr "Gestore:" -#: ../../view/theme/diabook/theme.php:735 -#: ../../view/theme/diabook/theme.php:736 -#: ../../view/theme/diabook/theme.php:737 -#: ../../view/theme/diabook/theme.php:738 -#: ../../view/theme/diabook/theme.php:739 -#: ../../view/theme/diabook/theme.php:740 -#: ../../view/theme/diabook/theme.php:741 -#: ../../view/theme/diabook/theme.php:742 -#: ../../view/theme/diabook/theme.php:743 -#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:287 -msgid "show" -msgstr "mostra" +#: ../../mod/admin.php:865 +msgid "No themes found." +msgstr "Nessun tema trovato." -#: ../../view/theme/diabook/theme.php:745 -msgid "Show/hide boxes at right-hand column:" -msgstr "" +#: ../../mod/admin.php:924 +msgid "Screenshot" +msgstr "Istantanea dello schermo" -#: ../../view/theme/diabook/config.php:194 -#: ../../view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -msgstr "" +#: ../../mod/admin.php:972 +msgid "[Experimental]" +msgstr "[Sperimentale]" -#: ../../view/theme/diabook/config.php:195 -msgid "Set resolution for middle column" -msgstr "" +#: ../../mod/admin.php:973 +msgid "[Unsupported]" +msgstr "[Non supportato]" -#: ../../view/theme/diabook/config.php:196 -msgid "Set color scheme" -msgstr "" +#: ../../mod/admin.php:1000 +msgid "Log settings updated." +msgstr "Impostazioni di log aggiornate." -#: ../../view/theme/diabook/config.php:198 -msgid "Set zoomfactor for Earth Layer" -msgstr "" +#: ../../mod/admin.php:1056 +msgid "Clear" +msgstr "Pulisci" -#: ../../view/theme/diabook/config.php:207 -msgid "Last tweets" -msgstr "" +#: ../../mod/admin.php:1062 +msgid "Debugging" +msgstr "Debugging" -#: ../../view/theme/quattro/config.php:56 -msgid "Alignment" -msgstr "Allineamento" +#: ../../mod/admin.php:1063 +msgid "Log file" +msgstr "File di log" -#: ../../view/theme/quattro/config.php:56 -msgid "Left" -msgstr "Sinistra" +#: ../../mod/admin.php:1063 +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." -#: ../../view/theme/quattro/config.php:56 -msgid "Center" -msgstr "Centrato" +#: ../../mod/admin.php:1064 +msgid "Log level" +msgstr "Livello di log" -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "" +#: ../../mod/intro.php:17 ../../mod/intro.php:100 +#: ../../mod/connections.php:316 ../../mod/connections.php:451 +#: ../../mod/notifications.php:51 ../../mod/notifications.php:162 +#: ../../mod/notifications.php:208 +msgid "Ignore" +msgstr "Ignora" -#: ../../include/profile_advanced.php:22 -msgid "j F, Y" -msgstr "j F Y" +#: ../../mod/intro.php:29 ../../mod/connections.php:117 +msgid "Connection updated." +msgstr "Contatto aggiornato." -#: ../../include/profile_advanced.php:23 -msgid "j F" -msgstr "j F" +#: ../../mod/intro.php:31 +msgid "Connection update failed." +msgstr "Impossibile aggiornare il contatto." -#: ../../include/profile_advanced.php:30 -msgid "Birthday:" -msgstr "Compleanno:" +#: ../../mod/intro.php:56 +msgid "Introductions and Connection Requests" +msgstr "Richieste di contatto e di amicizia" -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "Età:" +#: ../../mod/intro.php:67 +msgid "No pending introductions." +msgstr "Nessuna richiesta in attesa." -#: ../../include/profile_advanced.php:43 -#, php-format -msgid "for %1$d %2$s" -msgstr "" +#: ../../mod/intro.php:72 +msgid "System error. Please try again later." +msgstr "Errore di sistema. Riprovare più tardi." -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "Tag:" +#: ../../mod/intro.php:95 ../../mod/connections.php:456 +#: ../../mod/notifications.php:155 ../../mod/notifications.php:202 +msgid "Hide this contact from others" +msgstr "Nascondi questo contatto agli altri" -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "Religione:" +#: ../../mod/intro.php:96 ../../mod/notifications.php:156 +#: ../../mod/notifications.php:203 +msgid "Post a new friend activity" +msgstr "Pubblica sulla bacheca che hai un nuovo contatto" -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "Hobby/Interessi:" +#: ../../mod/intro.php:96 ../../mod/notifications.php:156 +#: ../../mod/notifications.php:203 +msgid "if applicable" +msgstr "se possibile" -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "Informazioni su contatti e social network:" +#: ../../mod/intro.php:101 ../../mod/notifications.php:35 +#: ../../mod/notifications.php:163 ../../mod/notifications.php:209 +msgid "Discard" +msgstr "Rifiuta" -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "Interessi musicali:" +#: ../../mod/connections.php:64 +msgid "Could not access contact record." +msgstr "Non è possibile accedere alle informazioni sul contatto." -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "Libri, letteratura:" +#: ../../mod/connections.php:78 +msgid "Could not locate selected profile." +msgstr "Non riesco a trovare il profilo selezionato." -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "Televisione:" +#: ../../mod/connections.php:119 +msgid "Failed to update connection record." +msgstr "Impossibile aggiornare le informazioni di contatto." -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/danza/cultura/intrattenimento:" +#: ../../mod/connections.php:187 +msgid "Could not access address book record." +msgstr "Impossibile accedere alle informazioni della rubrica." -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "Amore:" +#: ../../mod/connections.php:201 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Il canale non è disponibile - impossibile aggiornare." -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "Lavoro:" +#: ../../mod/connections.php:208 +msgid "Channel has been unblocked" +msgstr "Il canale è stato sbloccato" -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "Scuola:" +#: ../../mod/connections.php:209 +msgid "Channel has been blocked" +msgstr "Il canale è stato bloccato" -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Sconosciuto | non categorizzato" +#: ../../mod/connections.php:213 ../../mod/connections.php:225 +#: ../../mod/connections.php:237 ../../mod/connections.php:249 +#: ../../mod/connections.php:264 +msgid "Unable to set address book parameters." +msgstr "Impossibile impostare i parametri della rubrica." -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Blocca immediatamente" +#: ../../mod/connections.php:220 +msgid "Channel has been unignored" +msgstr "Il canale non sarà più ignorato" -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Shady, spammer, self-marketer" +#: ../../mod/connections.php:221 +msgid "Channel has been ignored" +msgstr "Il canale sarà ignorato" -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Lo conosco, ma non ho un'opinione particolare" +#: ../../mod/connections.php:232 +msgid "Channel has been unarchived" +msgstr "Il canale non è più archiviato" -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "E' ok, probabilmente innocuo" +#: ../../mod/connections.php:233 +msgid "Channel has been archived" +msgstr "Il canale è stato archiviato" -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Rispettabile, ha la mia fiducia" +#: ../../mod/connections.php:244 +msgid "Channel has been unhidden" +msgstr "Il canale non è più nascosto" -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Frequentemente" +#: ../../mod/connections.php:245 +msgid "Channel has been hidden" +msgstr "Il canale è stato nascosto" -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Ogni ora" +#: ../../mod/connections.php:259 +msgid "Channel has been approved" +msgstr "Il canale è stato approvato" -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Due volte al dì" +#: ../../mod/connections.php:260 +msgid "Channel has been unapproved" +msgstr "Il canale non è più approvato" -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "Ostatus" +#: ../../mod/connections.php:278 +msgid "Contact has been removed." +msgstr "Il contatto è stato rimosso." -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS / Atom" +#: ../../mod/connections.php:298 +#, php-format +msgid "View %s's profile" +msgstr "Guarda il profilo di %s" -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" +#: ../../mod/connections.php:302 +msgid "Refresh Permissions" +msgstr "Aggiorna i permessi" -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../mod/connections.php:305 +msgid "Fetch updated permissions" +msgstr "Scarica i permessi aggiornati" -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../mod/connections.php:312 +msgid "Block or Unblock this connection" +msgstr "Per bloccare o meno questo contatto" -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" +#: ../../mod/connections.php:316 ../../mod/connections.php:451 +msgid "Unignore" +msgstr "Non ignorare" -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "Maschio" +#: ../../mod/connections.php:319 +msgid "Ignore or Unignore this connection" +msgstr "Per ignorare o meno questo contatto" -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Femmina" +#: ../../mod/connections.php:322 +msgid "Unarchive" +msgstr "Non archiviare" -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Al momento maschio" +#: ../../mod/connections.php:322 +msgid "Archive" +msgstr "Archivia" -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Al momento femmina" +#: ../../mod/connections.php:325 +msgid "Archive or Unarchive this connection" +msgstr "Per archiviare o meno questo contatto" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Prevalentemente maschio" +#: ../../mod/connections.php:328 +msgid "Unhide" +msgstr "Non nascondere" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Prevalentemente femmina" +#: ../../mod/connections.php:328 +msgid "Hide" +msgstr "Nascondi" -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgender" +#: ../../mod/connections.php:331 +msgid "Hide or Unhide this connection" +msgstr "Per nascondere o meno questo contatto" -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Intersex" +#: ../../mod/connections.php:338 +msgid "Delete this connection" +msgstr "Elimina questo contatto" -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transessuale" +#: ../../mod/connections.php:371 +msgid "Unknown" +msgstr "Sconosciuto" -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Ermafrodito" +#: ../../mod/connections.php:381 ../../mod/connections.php:409 +msgid "Approve this connection" +msgstr "Approva questo contatto" -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neutro" +#: ../../mod/connections.php:381 +msgid "Accept connection to allow communication" +msgstr "Accetta il contatto per permettere la comunicazione tra voi" -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Non specificato" +#: ../../mod/connections.php:397 +msgid "Automatic Permissions Settings" +msgstr "Permessi predefiniti" -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "Altro" +#: ../../mod/connections.php:397 +#, php-format +msgid "Connections: settings for %s" +msgstr "Contatti: impostazioni per %s" -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Indeciso" +#: ../../mod/connections.php:401 +msgid "" +"When receiving a channel introduction, any permissions provided here will be" +" applied to the new connection automatically and the introduction approved. " +"Leave this page if you do not wish to use this feature." +msgstr "Quando ricevi una richiesta di amicizia da un canale, i permessi mostrati in questa pagina saranno applicati al nuovo contatto con l'approvazione della richiesta. Lascia questa pagina se non vuoi proseguire." -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Maschi" +#: ../../mod/connections.php:403 +msgid "Slide to adjust your degree of friendship" +msgstr "Trascina per restringere il grado di amicizia da mostrare" -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Femmine" +#: ../../mod/connections.php:410 +msgid "Connection has no individual permissions!" +msgstr "Non hai assegnato permessi individuali a questo contatto!" -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Gay" +#: ../../mod/connections.php:411 +msgid "" +"This may be appropriate based on your privacy " +"settings, though you may wish to review the \"Advanced Permissions\"." +msgstr "Questo corrisponde alle tue impostazioni di privacy, ma puoi anche dare un'occhiata ai 'Permessi avanzati' per opzioni più dettagliate." -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesbica" +#: ../../mod/connections.php:413 +msgid "Profile Visibility" +msgstr "Visibilità del profilo" -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Nessuna preferenza" +#: ../../mod/connections.php:414 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro." -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Bisessuale" +#: ../../mod/connections.php:415 +msgid "Contact Information / Notes" +msgstr "Informazioni e annotazioni sul contatto" -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Autosessuale" +#: ../../mod/connections.php:416 +msgid "Edit contact notes" +msgstr "Modifica le annotazioni sul contatto" -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Astinente" +#: ../../mod/connections.php:418 +msgid "Their Settings" +msgstr "Permessi concessi a te" -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Vergine" +#: ../../mod/connections.php:419 +msgid "My Settings" +msgstr "I permessi che concedo" -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Deviato" +#: ../../mod/connections.php:421 +msgid "Forum Members" +msgstr "Membro di un forum" -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Fetish" +#: ../../mod/connections.php:422 +msgid "Soapbox" +msgstr "Soapbox" -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Un sacco" +#: ../../mod/connections.php:423 +msgid "Full Sharing" +msgstr "Condivisione totale" -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Asessuato" +#: ../../mod/connections.php:424 +msgid "Cautious Sharing" +msgstr "Condivisione prudente" -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "Single" +#: ../../mod/connections.php:425 +msgid "Follow Only" +msgstr "Follower" -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Solitario" +#: ../../mod/connections.php:426 +msgid "Individual Permissions" +msgstr "Permessi individuali" -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "Disponibile" +#: ../../mod/connections.php:427 +msgid "" +"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." +msgstr "I permessi individuali sono disponibili solo quando nelle impostazioni di sicurezza e privacy scegli \"Solo chi riceve il mio permesso\". Altrimenti sono applicate le stesse impostazioni per tutti." -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Non disponibile" +#: ../../mod/connections.php:428 +msgid "Advanced Permissions" +msgstr "Permessi avanzati" -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "" +#: ../../mod/connections.php:429 +msgid "Quick Links" +msgstr "Impostazioni veloci" -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "" +#: ../../mod/connections.php:433 +#, php-format +msgid "Visit %s's profile - %s" +msgstr "Guarda il profilo di %s - %s" -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "Disponibile a un incontro" +#: ../../mod/connections.php:434 +msgid "Block/Unblock contact" +msgstr "Blocca/sblocca contatto" -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Infedele" +#: ../../mod/connections.php:435 +msgid "Ignore contact" +msgstr "Ignora il contatto" -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Sesso-dipendente" +#: ../../mod/connections.php:436 +msgid "Repair URL settings" +msgstr "Ripara le impostazioni URL" -#: ../../include/profile_selectors.php:42 ../../include/user.php:278 -#: ../../include/user.php:282 -msgid "Friends" -msgstr "Amici" +#: ../../mod/connections.php:437 +msgid "View conversations" +msgstr "Vedi le conversazioni" -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Amici con benefici" +#: ../../mod/connections.php:439 +msgid "Delete contact" +msgstr "Elimina contatto" -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "Casual" +#: ../../mod/connections.php:442 +msgid "Last update:" +msgstr "Ultimo aggiornamento:" -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Impegnato" +#: ../../mod/connections.php:444 +msgid "Update public posts" +msgstr "Aggiorna gli articoli pubblici" -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "Sposato" +#: ../../mod/connections.php:446 +msgid "Update now" +msgstr "Aggiorna adesso" -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "" +#: ../../mod/connections.php:452 +msgid "Currently blocked" +msgstr "Attualmente bloccato" -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "Partners" +#: ../../mod/connections.php:453 +msgid "Currently ignored" +msgstr "Attualmente ignorato" -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "Coinquilino" +#: ../../mod/connections.php:454 +msgid "Currently archived" +msgstr "Attualmente archiviato" -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "" +#: ../../mod/connections.php:455 +msgid "Currently pending" +msgstr "Attualmente da approvare" -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "Felice" +#: ../../mod/connections.php:456 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Le risposte ai tuoi articoli pubblici potrebbero restare comunque visibili" -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "" +#: ../../mod/connections.php:492 ../../mod/connections.php:564 +msgid "Blocked" +msgstr "Bloccati" -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Scambista" +#: ../../mod/connections.php:497 ../../mod/connections.php:571 +msgid "Ignored" +msgstr "Ignorati" -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Tradito" +#: ../../mod/connections.php:502 ../../mod/connections.php:585 +msgid "Hidden" +msgstr "Nascosti" -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "Separato" +#: ../../mod/connections.php:507 ../../mod/connections.php:578 +msgid "Archived" +msgstr "Archiviati" -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Instabile" +#: ../../mod/connections.php:518 +msgid "All" +msgstr "Tutti" -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Divorziato" +#: ../../mod/connections.php:539 +msgid "Suggestions" +msgstr "Suggerimenti" -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "" +#: ../../mod/connections.php:542 +msgid "Suggest new connections" +msgstr "Suggerisci nuovi contatti" -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Vedovo" +#: ../../mod/connections.php:548 +msgid "Show pending (new) connections" +msgstr "Richieste di amicizia in attesa" -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Incerto" +#: ../../mod/connections.php:551 +msgid "All Connections" +msgstr "Tutti i contatti" -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "" +#: ../../mod/connections.php:554 +msgid "Show all connections" +msgstr "Mostra tutti i contatti" -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Non interessa" +#: ../../mod/connections.php:557 +msgid "Unblocked" +msgstr "Non bloccati" -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Chiedimelo" +#: ../../mod/connections.php:560 +msgid "Only show unblocked connections" +msgstr "Mostra solo i contatti non bloccati" -#: ../../include/event.php:20 ../../include/bb2diaspora.php:396 -msgid "Starts:" -msgstr "Inizia:" +#: ../../mod/connections.php:567 +msgid "Only show blocked connections" +msgstr "Mostra solo i contatti bloccati" -#: ../../include/event.php:30 ../../include/bb2diaspora.php:404 -msgid "Finishes:" -msgstr "Finisce:" +#: ../../mod/connections.php:574 +msgid "Only show ignored connections" +msgstr "Mostra solo i contatti ignorati" -#: ../../include/delivery.php:457 ../../include/notifier.php:703 -msgid "(no subject)" -msgstr "(nessun oggetto)" +#: ../../mod/connections.php:581 +msgid "Only show archived connections" +msgstr "Mostra solo i contatti archiviati" -#: ../../include/Scrape.php:576 -msgid " on Last.fm" -msgstr "" +#: ../../mod/connections.php:588 +msgid "Only show hidden connections" +msgstr "Mostra solo i contatti nascosti" -#: ../../include/text.php:243 -msgid "prev" -msgstr "prec" +#: ../../mod/connections.php:630 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../include/text.php:245 -msgid "first" -msgstr "primo" +#: ../../mod/connections.php:631 ../../mod/nogroup.php:41 +msgid "Edit contact" +msgstr "Modifica il contatto" -#: ../../include/text.php:274 -msgid "last" -msgstr "ultimo" +#: ../../mod/connections.php:655 +msgid "Search your connections" +msgstr "Cerca tra i contatti" -#: ../../include/text.php:277 -msgid "next" -msgstr "succ" +#: ../../mod/connections.php:656 +msgid "Finding: " +msgstr "Ricerca: " -#: ../../include/text.php:295 -msgid "newer" +#: ../../mod/dirsearch.php:21 +msgid "This site is not a directory server" msgstr "" -#: ../../include/text.php:299 -msgid "older" -msgstr "" +#: ../../mod/lockview.php:34 +msgid "Remote privacy information not available." +msgstr "Le informazioni remote sulla privacy non sono disponibili." -#: ../../include/text.php:597 -msgid "No contacts" -msgstr "Nessun contatto" +#: ../../mod/lockview.php:43 +msgid "Visible to:" +msgstr "Visibile a:" -#: ../../include/text.php:606 +#: ../../mod/post.php:114 +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/post.php:127 #, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d contatto" -msgstr[1] "%d contatti" +msgid "Welcome %s. Remote authentication successful." +msgstr "Ciao %s. La tua autenticazione da remoto è avvenuta con successo." -#: ../../include/text.php:719 -msgid "poke" -msgstr "" +#: ../../mod/profiles.php:18 ../../mod/profiles.php:138 +#: ../../mod/profiles.php:179 ../../mod/profiles.php:486 +msgid "Profile not found." +msgstr "Profilo non trovato." -#: ../../include/text.php:719 ../../include/conversation.php:210 -msgid "poked" -msgstr "" +#: ../../mod/profiles.php:38 +msgid "Profile deleted." +msgstr "Profilo eliminato." -#: ../../include/text.php:720 -msgid "ping" -msgstr "" +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" +msgstr "Profilo-" -#: ../../include/text.php:720 -msgid "pinged" -msgstr "" +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." +msgstr "Il nuovo profilo è stato creato." -#: ../../include/text.php:721 -msgid "prod" -msgstr "" +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." +msgstr "Impossibile duplicare il profilo." -#: ../../include/text.php:721 -msgid "prodded" -msgstr "" +#: ../../mod/profiles.php:189 +msgid "Profile Name is required." +msgstr "Il nome del profilo è obbligatorio ." -#: ../../include/text.php:722 -msgid "slap" -msgstr "" +#: ../../mod/profiles.php:317 +msgid "Marital Status" +msgstr "Stato sentimentale" -#: ../../include/text.php:722 -msgid "slapped" -msgstr "" +#: ../../mod/profiles.php:321 +msgid "Romantic Partner" +msgstr "Partner affettivo" + +#: ../../mod/profiles.php:325 +msgid "Likes" +msgstr "Cosa gli piace" + +#: ../../mod/profiles.php:329 +msgid "Dislikes" +msgstr "Cosa non gli piace" + +#: ../../mod/profiles.php:333 +msgid "Work/Employment" +msgstr "Lavoro/impiego" + +#: ../../mod/profiles.php:336 +msgid "Religion" +msgstr "Religione" + +#: ../../mod/profiles.php:340 +msgid "Political Views" +msgstr "Orientamento politico" -#: ../../include/text.php:723 -msgid "finger" -msgstr "" +#: ../../mod/profiles.php:344 +msgid "Gender" +msgstr "Sesso" -#: ../../include/text.php:723 -msgid "fingered" -msgstr "" +#: ../../mod/profiles.php:348 +msgid "Sexual Preference" +msgstr "Preferenze sessuali" -#: ../../include/text.php:724 -msgid "rebuff" -msgstr "" +#: ../../mod/profiles.php:352 +msgid "Homepage" +msgstr "Homepage" -#: ../../include/text.php:724 -msgid "rebuffed" -msgstr "" +#: ../../mod/profiles.php:356 +msgid "Interests" +msgstr "Interessi" -#: ../../include/text.php:736 -msgid "happy" -msgstr "" +#: ../../mod/profiles.php:360 +msgid "Address" +msgstr "Indirizzo" -#: ../../include/text.php:737 -msgid "sad" -msgstr "" +#: ../../mod/profiles.php:367 +msgid "Location" +msgstr "Luogo" -#: ../../include/text.php:738 -msgid "mellow" -msgstr "" +#: ../../mod/profiles.php:450 +msgid "Profile updated." +msgstr "Profilo aggiornato." -#: ../../include/text.php:739 -msgid "tired" -msgstr "" +#: ../../mod/profiles.php:505 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?" -#: ../../include/text.php:740 -msgid "perky" -msgstr "" +#: ../../mod/profiles.php:528 +msgid "Edit Profile Details" +msgstr "Modifica i dettagli del profilo" -#: ../../include/text.php:741 -msgid "angry" -msgstr "" +#: ../../mod/profiles.php:530 +msgid "View this profile" +msgstr "Guarda questo profilo" -#: ../../include/text.php:742 -msgid "stupified" -msgstr "" +#: ../../mod/profiles.php:531 +msgid "Change Profile Photo" +msgstr "Cambia la foto del profilo" -#: ../../include/text.php:743 -msgid "puzzled" -msgstr "" +#: ../../mod/profiles.php:532 +msgid "Create a new profile using these settings" +msgstr "Crea un nuovo profilo usando queste impostazioni" -#: ../../include/text.php:744 -msgid "interested" -msgstr "" +#: ../../mod/profiles.php:533 +msgid "Clone this profile" +msgstr "Clona questo profilo" -#: ../../include/text.php:745 -msgid "bitter" -msgstr "" +#: ../../mod/profiles.php:534 +msgid "Delete this profile" +msgstr "Elimina questo profilo" -#: ../../include/text.php:746 -msgid "cheerful" -msgstr "" +#: ../../mod/profiles.php:535 +msgid "Profile Name:" +msgstr "Nome del profilo:" -#: ../../include/text.php:747 -msgid "alive" -msgstr "" +#: ../../mod/profiles.php:536 +msgid "Your Full Name:" +msgstr "Il tuo nome completo:" -#: ../../include/text.php:748 -msgid "annoyed" -msgstr "" +#: ../../mod/profiles.php:537 +msgid "Title/Description:" +msgstr "Titolo/descrizione:" -#: ../../include/text.php:749 -msgid "anxious" -msgstr "" +#: ../../mod/profiles.php:538 +msgid "Your Gender:" +msgstr "Sesso:" -#: ../../include/text.php:750 -msgid "cranky" -msgstr "" +#: ../../mod/profiles.php:539 +#, php-format +msgid "Birthday (%s):" +msgstr "Compleanno (%s):" -#: ../../include/text.php:751 -msgid "disturbed" -msgstr "" +#: ../../mod/profiles.php:540 +msgid "Street Address:" +msgstr "Indirizzo (via/piazza):" -#: ../../include/text.php:752 -msgid "frustrated" -msgstr "" +#: ../../mod/profiles.php:541 +msgid "Locality/City:" +msgstr "Località:" -#: ../../include/text.php:753 -msgid "motivated" -msgstr "" +#: ../../mod/profiles.php:542 +msgid "Postal/Zip Code:" +msgstr "CAP:" -#: ../../include/text.php:754 -msgid "relaxed" -msgstr "" +#: ../../mod/profiles.php:543 +msgid "Country:" +msgstr "Nazione:" -#: ../../include/text.php:755 -msgid "surprised" -msgstr "" +#: ../../mod/profiles.php:544 +msgid "Region/State:" +msgstr "Regione/stato:" -#: ../../include/text.php:921 -msgid "January" -msgstr "Gennaio" +#: ../../mod/profiles.php:545 +msgid " Marital Status:" +msgstr " Stato sentimentale:" -#: ../../include/text.php:921 -msgid "February" -msgstr "Febbraio" +#: ../../mod/profiles.php:546 +msgid "Who: (if applicable)" +msgstr "Con chi: (se possibile)" -#: ../../include/text.php:921 -msgid "March" -msgstr "Marzo" +#: ../../mod/profiles.php:547 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Per esempio: cathy123, Cathy Williams, cathy@example.com" -#: ../../include/text.php:921 -msgid "April" -msgstr "Aprile" +#: ../../mod/profiles.php:548 +msgid "Since [date]:" +msgstr "dal [data]:" -#: ../../include/text.php:921 -msgid "May" -msgstr "Maggio" +#: ../../mod/profiles.php:550 +msgid "Homepage URL:" +msgstr "Indirizzo homepage:" -#: ../../include/text.php:921 -msgid "June" -msgstr "Giugno" +#: ../../mod/profiles.php:553 +msgid "Religious Views:" +msgstr "Orientamento religioso:" -#: ../../include/text.php:921 -msgid "July" -msgstr "Luglio" +#: ../../mod/profiles.php:554 +msgid "Keywords:" +msgstr "Parole chiave, tag:" -#: ../../include/text.php:921 -msgid "August" -msgstr "Agosto" +#: ../../mod/profiles.php:557 +msgid "Example: fishing photography software" +msgstr "Per esempio: pesca fotografia programmazione" -#: ../../include/text.php:921 -msgid "September" -msgstr "Settembre" +#: ../../mod/profiles.php:558 +msgid "Used in directory listings" +msgstr "Pubblicato sugli elenchi" -#: ../../include/text.php:921 -msgid "October" -msgstr "Ottobre" +#: ../../mod/profiles.php:559 +msgid "Tell us about yourself..." +msgstr "Raccontaci di te..." -#: ../../include/text.php:921 -msgid "November" -msgstr "Novembre" +#: ../../mod/profiles.php:560 +msgid "Hobbies/Interests" +msgstr "Hobby/interessi" -#: ../../include/text.php:921 -msgid "December" -msgstr "Dicembre" +#: ../../mod/profiles.php:561 +msgid "Contact information and Social Networks" +msgstr "Contatti personali e i tuoi social network" -#: ../../include/text.php:1007 -msgid "bytes" -msgstr "bytes" +#: ../../mod/profiles.php:562 +msgid "My other channels" +msgstr "I miei altri canali" -#: ../../include/text.php:1034 ../../include/text.php:1046 -msgid "Click to open/close" -msgstr "Clicca per aprire/chiudere" +#: ../../mod/profiles.php:563 +msgid "Musical interests" +msgstr "Interessi musicali" -#: ../../include/text.php:1219 ../../include/user.php:236 -msgid "default" -msgstr "default" +#: ../../mod/profiles.php:564 +msgid "Books, literature" +msgstr "Libri, letteratura" -#: ../../include/text.php:1231 -msgid "Select an alternate language" -msgstr "Seleziona una diversa lingua" +#: ../../mod/profiles.php:565 +msgid "Television" +msgstr "Televisione" -#: ../../include/text.php:1441 -msgid "activity" -msgstr "attività" +#: ../../mod/profiles.php:566 +msgid "Film/dance/culture/entertainment" +msgstr "Film/danza/cultura/intrattenimento" -#: ../../include/text.php:1444 -msgid "post" -msgstr "messaggio" +#: ../../mod/profiles.php:567 +msgid "Love/romance" +msgstr "Amore" -#: ../../include/text.php:1599 -msgid "Item filed" -msgstr "" +#: ../../mod/profiles.php:568 +msgid "Work/employment" +msgstr "Lavoro/impiego" -#: ../../include/diaspora.php:691 -msgid "Sharing notification from Diaspora network" -msgstr "Notifica di condivisione dal network Diaspora*" +#: ../../mod/profiles.php:569 +msgid "School/education" +msgstr "Scuola/educazione" -#: ../../include/diaspora.php:2211 -msgid "Attachments:" -msgstr "Allegati:" +#: ../../mod/profiles.php:574 +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." -#: ../../include/network.php:849 -msgid "view full size" -msgstr "vedi a schermo intero" +#: ../../mod/profiles.php:623 +msgid "Edit/Manage Profiles" +msgstr "Modifica/gestisci i profili" -#: ../../include/oembed.php:137 -msgid "Embedded content" -msgstr "Contenuto incorporato" +#: ../../mod/profiles.php:624 ../../boot.php:1639 +msgid "Change profile photo" +msgstr "Cambia la foto del profilo" -#: ../../include/oembed.php:146 -msgid "Embedding disabled" -msgstr "Embed disabilitato" +#: ../../mod/profiles.php:625 ../../boot.php:1646 +msgid "Create New Profile" +msgstr "Crea un nuovo profilo" -#: ../../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 "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso." +#: ../../mod/profiles.php:636 ../../boot.php:1660 +msgid "Profile Image" +msgstr "Immagine del profilo" -#: ../../include/group.php:176 -msgid "Default privacy group for new contacts" -msgstr "" +#: ../../mod/profiles.php:639 ../../boot.php:1663 +msgid "visible to everybody" +msgstr "visibile a tutti" -#: ../../include/group.php:195 -msgid "Everybody" -msgstr "Tutti" +#: ../../mod/profiles.php:640 ../../boot.php:1664 +msgid "Edit visibility" +msgstr "Cambia la visibilità" -#: ../../include/group.php:218 -msgid "edit" -msgstr "modifica" +#: ../../mod/new_channel.php:107 +msgid "Add a Channel" +msgstr "Aggiungi un canale" -#: ../../include/group.php:240 -msgid "Edit group" -msgstr "Modifica gruppo" +#: ../../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." -#: ../../include/group.php:241 -msgid "Create a new group" -msgstr "Crea un nuovo gruppo" +#: ../../mod/new_channel.php:110 +msgid "Channel Name" +msgstr "Nome del canale" -#: ../../include/group.php:242 -msgid "Contacts not in any group" -msgstr "Contatti in nessun gruppo." +#: ../../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\"" -#: ../../include/nav.php:46 ../../boot.php:911 -msgid "Logout" -msgstr "Esci" +#: ../../mod/new_channel.php:112 +msgid "Choose a short nickname" +msgstr "Scegli un nome breve" -#: ../../include/nav.php:46 -msgid "End this session" -msgstr "Finisci questa sessione" +#: ../../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." -#: ../../include/nav.php:49 ../../boot.php:1665 -msgid "Status" -msgstr "Stato" +#: ../../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" -#: ../../include/nav.php:64 -msgid "Sign in" -msgstr "Entra" +#: ../../mod/lostpass.php:15 +msgid "No valid account found." +msgstr "Nessun account valido trovato." -#: ../../include/nav.php:77 -msgid "Home Page" -msgstr "Home Page" +#: ../../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." -#: ../../include/nav.php:81 -msgid "Create an account" -msgstr "Crea un account" +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#, php-format +msgid "Site Member (%s)" +msgstr "Utente del sito (%s)" -#: ../../include/nav.php:86 -msgid "Help and documentation" -msgstr "Guida e documentazione" +#: ../../mod/lostpass.php:40 +#, php-format +msgid "Password reset requested at %s" +msgstr "È stato richiesto di reimpostare password su %s" -#: ../../include/nav.php:89 -msgid "Apps" -msgstr "Applicazioni" +#: ../../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." -#: ../../include/nav.php:89 -msgid "Addon applications, utilities, games" -msgstr "Applicazioni, utilità e giochi aggiuntivi" +#: ../../mod/lostpass.php:85 ../../boot.php:1377 +msgid "Password Reset" +msgstr "Reimposta la password" -#: ../../include/nav.php:91 -msgid "Search site content" -msgstr "Cerca nel contenuto del sito" +#: ../../mod/lostpass.php:86 +msgid "Your password has been reset as requested." +msgstr "La password è stata reimpostata come richiesto." -#: ../../include/nav.php:101 -msgid "Conversations on this site" -msgstr "Conversazioni su questo sito" +#: ../../mod/lostpass.php:87 +msgid "Your new password is" +msgstr "La tua nuova password è" -#: ../../include/nav.php:103 -msgid "Directory" -msgstr "Elenco" +#: ../../mod/lostpass.php:88 +msgid "Save or copy your new password - and then" +msgstr "Salva o copia la tua nuova password, quindi" -#: ../../include/nav.php:103 -msgid "People directory" -msgstr "Elenco delle persone" +#: ../../mod/lostpass.php:89 +msgid "click here to login" +msgstr "clicca qui per accedere" -#: ../../include/nav.php:113 -msgid "Conversations from your friends" -msgstr "Conversazioni dai tuoi amici" +#: ../../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." -#: ../../include/nav.php:121 -msgid "Friend Requests" -msgstr "Richieste di amicizia" +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has changed at %s" +msgstr "La tua password su %s è cambiata" -#: ../../include/nav.php:123 -msgid "See all notifications" -msgstr "Vedi tutte le notifiche" +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "Hai dimenticato la password?" -#: ../../include/nav.php:124 -msgid "Mark all system notifications seen" -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 "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta controlla l'email dove troverai le istruzioni per continuare." -#: ../../include/nav.php:128 -msgid "Private mail" -msgstr "Posta privata" +#: ../../mod/lostpass.php:124 +msgid "Email Address" +msgstr "Indirizzo email" -#: ../../include/nav.php:129 -msgid "Inbox" -msgstr "In arrivo" +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "Reimposta" -#: ../../include/nav.php:130 -msgid "Outbox" -msgstr "Inviati" +#: ../../mod/import.php:36 +msgid "Nothing to import." +msgstr "Non c'è niente da importare." -#: ../../include/nav.php:134 -msgid "Manage" -msgstr "Gestisci" +#: ../../mod/import.php:58 +msgid "Unable to download data from old server" +msgstr "Impossibile importare i dati dal vecchio server" -#: ../../include/nav.php:134 -msgid "Manage other pages" -msgstr "Gestisci altre pagine" +#: ../../mod/import.php:64 +msgid "Imported file is empty." +msgstr "Il file da importare è vuoto." -#: ../../include/nav.php:138 ../../boot.php:1186 -msgid "Profiles" -msgstr "Profili" +#: ../../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'import è fallito." -#: ../../include/nav.php:138 ../../boot.php:1186 -msgid "Manage/edit profiles" -msgstr "Gestisci/modifica i profili" +#: ../../mod/import.php:106 +msgid "Channel clone failed. Import failed." +msgstr "Impossibile clonare il canale. L'import è fallito." -#: ../../include/nav.php:139 -msgid "Manage/edit friends and contacts" -msgstr "Gestisci/modifica amici e contatti" +#: ../../mod/import.php:116 +msgid "Cloned channel not found. Import failed." +msgstr "Impossibile trovare il canale clonato. L'import è fallito." -#: ../../include/nav.php:146 -msgid "Site setup and configuration" -msgstr "Configurazione del sito" +#: ../../mod/import.php:327 +msgid "Import completed." +msgstr "L'import è terminato con successo!" -#: ../../include/nav.php:170 -msgid "Nothing new here" -msgstr "Niente di nuovo qui" +#: ../../mod/import.php:340 +msgid "You must be logged in to use this feature." +msgstr "Per questa funzionalità devi aver effettuato l'accesso." -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Aggiungi nuovo contatto" +#: ../../mod/import.php:345 +msgid "Import Channel" +msgstr "Importa un canale" -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Inserisci posizione o indirizzo web" +#: ../../mod/import.php:346 +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." -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Esempio: bob@example.com, http://example.com/barbara" +#: ../../mod/import.php:347 +msgid "File to Upload" +msgstr "File da caricare" -#: ../../include/contact_widgets.php:23 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invito disponibile" -msgstr[1] "%d inviti disponibili" +#: ../../mod/import.php:348 +msgid "Or provide the old server/hub details" +msgstr "Oppure fornisci i dettagli del vecchio server/hub" -#: ../../include/contact_widgets.php:29 -msgid "Find People" -msgstr "Trova persone" +#: ../../mod/import.php:349 +msgid "Your old identity address (xyz@example.com)" +msgstr "Il tuo vecchio identificativo (per esempio pippo@esempio.com)" -#: ../../include/contact_widgets.php:30 -msgid "Enter name or interest" -msgstr "Inserisci un nome o un interesse" +#: ../../mod/import.php:350 +msgid "Your old login email address" +msgstr "L'email che usavi per accedere sul vecchio server" -#: ../../include/contact_widgets.php:31 -msgid "Connect/Follow" -msgstr "Connetti/segui" +#: ../../mod/import.php:351 +msgid "Your old login password" +msgstr "La password per il vecchio server" -#: ../../include/contact_widgets.php:32 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Esempi: Mario Rossi, Pesca" +#: ../../mod/import.php:352 +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." -#: ../../include/contact_widgets.php:36 -msgid "Random Profile" -msgstr "Profilo causale" +#: ../../mod/import.php:353 +msgid "Make this hub my primary location" +msgstr "Rendi questo server il mio indirizzo primario" -#: ../../include/contact_widgets.php:68 -msgid "Networks" -msgstr "Reti" +#: ../../mod/manage.php:59 +msgid "Create a new channel" +msgstr "Crea un nuovo canale" -#: ../../include/contact_widgets.php:71 -msgid "All Networks" -msgstr "Tutte le Reti" +#: ../../mod/manage.php:64 +msgid "Channel Manager" +msgstr "Gestione canali" -#: ../../include/contact_widgets.php:98 -msgid "Saved Folders" -msgstr "Cartelle Salvate" +#: ../../mod/manage.php:65 +msgid "Current Channel" +msgstr "Canale attuale" -#: ../../include/contact_widgets.php:101 ../../include/contact_widgets.php:129 -msgid "Everything" -msgstr "Tutto" +#: ../../mod/manage.php:67 +msgid "Attach to one of your channels by selecting it." +msgstr "Per passare ad un altro canale selezionalo" -#: ../../include/contact_widgets.php:126 -msgid "Categories" -msgstr "Categorie" +#: ../../mod/manage.php:68 +msgid "Default Channel" +msgstr "Canale predefinito" -#: ../../include/auth.php:35 -msgid "Logged out." -msgstr "Uscita effettuata." +#: ../../mod/manage.php:69 +msgid "Make Default" +msgstr "Rendi predefinito" -#: ../../include/auth.php:114 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto." +#: ../../mod/match.php:12 +msgid "Profile Match" +msgstr "Profili corrispondenti" -#: ../../include/auth.php:114 -msgid "The error message was:" -msgstr "Il messaggio riportato era:" +#: ../../mod/match.php:20 +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." -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Varie" +#: ../../mod/match.php:57 +msgid "is interested in:" +msgstr "i tuoi interessi:" -#: ../../include/datetime.php:153 ../../include/datetime.php:285 -msgid "year" -msgstr "anno" +#: ../../mod/crepair.php:102 +msgid "Contact settings applied." +msgstr "Contatto modificato." -#: ../../include/datetime.php:158 ../../include/datetime.php:286 -msgid "month" -msgstr "mese" +#: ../../mod/crepair.php:104 +msgid "Contact update failed." +msgstr "Le modifiche al contatto non sono state salvate." -#: ../../include/datetime.php:163 ../../include/datetime.php:288 -msgid "day" -msgstr "giorno" +#: ../../mod/crepair.php:129 ../../mod/fsuggest.php:20 +#: ../../mod/fsuggest.php:92 +msgid "Contact not found." +msgstr "Contatto non trovato." -#: ../../include/datetime.php:276 -msgid "never" -msgstr "mai" +#: ../../mod/crepair.php:135 +msgid "Repair Contact Settings" +msgstr "Ripara le impostazioni del contatto" -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "meno di un secondo fa" +#: ../../mod/crepair.php:137 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più" -#: ../../include/datetime.php:287 -msgid "week" -msgstr "settimana" +#: ../../mod/crepair.php:138 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Usa adesso il tasto 'Indietro' del tuo browser se non c'è certezza assoluta." -#: ../../include/datetime.php:289 -msgid "hour" -msgstr "ora" +#: ../../mod/crepair.php:144 +msgid "Return to contact editor" +msgstr "Ritorna alla modifica del contatto" -#: ../../include/datetime.php:289 -msgid "hours" -msgstr "ore" +#: ../../mod/crepair.php:149 +msgid "Account Nickname" +msgstr "Nome utente" -#: ../../include/datetime.php:290 -msgid "minute" -msgstr "minuto" +#: ../../mod/crepair.php:150 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@TagName - sostituirà il nome utente" -#: ../../include/datetime.php:290 -msgid "minutes" -msgstr "minuti" +#: ../../mod/crepair.php:151 +msgid "Account URL" +msgstr "URL dell'utente" -#: ../../include/datetime.php:291 -msgid "second" -msgstr "secondo" +#: ../../mod/crepair.php:152 +msgid "Friend Request URL" +msgstr "URL di richiesta amicizia" -#: ../../include/datetime.php:291 -msgid "seconds" -msgstr "secondi" +#: ../../mod/crepair.php:153 +msgid "Friend Confirm URL" +msgstr "URL di conferma amicizia" -#: ../../include/datetime.php:300 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s fa" +#: ../../mod/crepair.php:154 +msgid "Notification Endpoint URL" +msgstr "URL per le notifiche" -#: ../../include/datetime.php:472 ../../include/items.php:1688 -#, php-format -msgid "%s's birthday" -msgstr "" +#: ../../mod/crepair.php:155 +msgid "Poll/Feed URL" +msgstr "URL del feed" -#: ../../include/datetime.php:473 ../../include/items.php:1689 -#, php-format -msgid "Happy Birthday %s" -msgstr "" +#: ../../mod/crepair.php:156 +msgid "New photo from this URL" +msgstr "Nuova foto da questo URL" -#: ../../include/onepoll.php:399 -msgid "From: " -msgstr "Da: " +#: ../../mod/zfinger.php:23 +msgid "invalid target signature" +msgstr "firma riscontrata non valida" -#: ../../include/bbcode.php:185 ../../include/bbcode.php:406 -msgid "Image/photo" -msgstr "Immagine/foto" +#: ../../mod/follow.php:24 +msgid "Channel added." +msgstr "Canale aggiunto." -#: ../../include/bbcode.php:371 ../../include/bbcode.php:391 -msgid "$1 wrote:" -msgstr "$1 ha scritto:" +#: ../../mod/nogroup.php:58 +msgid "Contacts who are not members of a group" +msgstr "Contatti che non sono in nessun gruppo" -#: ../../include/bbcode.php:410 ../../include/bbcode.php:411 -msgid "Encrypted content" -msgstr "" +#: ../../mod/profile_photo.php:54 +msgid "Image uploaded but image cropping failed." +msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." + +#: ../../mod/profile_photo.php:107 +msgid "Image resize failed." +msgstr "Il ridimensionamento dell'immagine è fallito." + +#: ../../mod/profile_photo.php:151 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente." -#: ../../include/dba.php:41 +#: ../../mod/profile_photo.php:173 #, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Non trovo le informazioni DNS per il database server '%s'" +msgid "Image exceeds size limit of %d" +msgstr "La dimensione dell'immagine supera il limite di %d" -#: ../../include/message.php:15 ../../include/message.php:171 -msgid "[no subject]" -msgstr "[nessun oggetto]" +#: ../../mod/profile_photo.php:182 +msgid "Unable to process image." +msgstr "Impossibile elaborare l'immagine." -#: ../../include/acl_selectors.php:286 -msgid "Visible to everybody" -msgstr "Visibile a tutti" +#: ../../mod/profile_photo.php:224 ../../mod/profile_photo.php:272 +msgid "Photo not available." +msgstr "Foto non disponibile." -#: ../../include/enotify.php:16 -msgid "Friendica Notification" -msgstr "Notifica Friendica" +#: ../../mod/profile_photo.php:291 +msgid "Upload File:" +msgstr "Carica un file:" -#: ../../include/enotify.php:19 -msgid "Thank You," -msgstr "Grazie," +#: ../../mod/profile_photo.php:292 +msgid "Select a profile:" +msgstr "Seleziona un profilo:" -#: ../../include/enotify.php:21 -#, php-format -msgid "%s Administrator" -msgstr "Amministratore %s" +#: ../../mod/profile_photo.php:293 +msgid "Upload Profile Photo" +msgstr "Carica la foto del profilo" -#: ../../include/enotify.php:40 -#, php-format -msgid "%s " -msgstr "%s " +#: ../../mod/profile_photo.php:294 +msgid "Upload" +msgstr "Carica" -#: ../../include/enotify.php:44 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s" +#: ../../mod/profile_photo.php:298 +msgid "skip this step" +msgstr "salta questo passaggio" -#: ../../include/enotify.php:46 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "" +#: ../../mod/profile_photo.php:298 +msgid "select a photo from your photo albums" +msgstr "seleziona una foto dai tuoi album" -#: ../../include/enotify.php:47 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "" +#: ../../mod/profile_photo.php:312 +msgid "Crop Image" +msgstr "Ritaglia immagine" -#: ../../include/enotify.php:47 -msgid "a private message" -msgstr "un messaggio privato" +#: ../../mod/profile_photo.php:313 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Ritaglia l'immagine per migliorarne la visualizzazione." -#: ../../include/enotify.php:48 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Visita %s per vedere e/o rispodere ai tuoi messaggi privati." +#: ../../mod/profile_photo.php:315 +msgid "Done Editing" +msgstr "Finito" -#: ../../include/enotify.php:89 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "" +#: ../../mod/profile_photo.php:350 +msgid "Image uploaded successfully." +msgstr "Immagine caricata con successo." -#: ../../include/enotify.php:96 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "" +#: ../../mod/profile_photo.php:352 +msgid "Image upload failed." +msgstr "Il caricamento dell'immagine è fallito." -#: ../../include/enotify.php:104 +#: ../../mod/profile_photo.php:361 #, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "" +msgid "Image size reduction [%s] failed." +msgstr "Il ridimensionamento del'immagine [%s] è fallito." -#: ../../include/enotify.php:114 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "" +#: ../../mod/editwebpage.php:37 ../../mod/editpost.php:18 +msgid "Item not found" +msgstr "Elemento non trovato" -#: ../../include/enotify.php:115 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s ha commentato un elemento che stavi seguendo." +#: ../../mod/editwebpage.php:69 ../../mod/editpost.php:38 +msgid "Edit post" +msgstr "Modifica articolo" -#: ../../include/enotify.php:118 ../../include/enotify.php:133 -#: ../../include/enotify.php:146 ../../include/enotify.php:164 -#: ../../include/enotify.php:177 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Visita %s per vedere e/o commentare la conversazione" +#: ../../mod/editwebpage.php:105 ../../mod/editpost.php:80 +msgid "Insert YouTube video" +msgstr "Inserisci video da YouTube" -#: ../../include/enotify.php:125 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Notifica] %s ha scritto sulla tua bacheca" +#: ../../mod/editwebpage.php:106 ../../mod/editpost.php:81 +msgid "Insert Vorbis [.ogg] video" +msgstr "Inserisci video Vorbis [.ogg]" -#: ../../include/enotify.php:127 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "" +#: ../../mod/editwebpage.php:107 ../../mod/editpost.php:82 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Inserisci audio Vorbis [.ogg]" -#: ../../include/enotify.php:129 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "" +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "L'identificativo della richiesta non è valido." -#: ../../include/enotify.php:140 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Notifica] %s ti ha taggato" +#: ../../mod/notifications.php:76 +msgid "System" +msgstr "Sistema" -#: ../../include/enotify.php:141 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "" +#: ../../mod/notifications.php:96 +msgid "Introductions" +msgstr "Richieste di amicizia" -#: ../../include/enotify.php:142 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "" +#: ../../mod/notifications.php:121 +msgid "Show Ignored Requests" +msgstr "Mostra le richieste ignorate" -#: ../../include/enotify.php:154 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "" +#: ../../mod/notifications.php:121 +msgid "Hide Ignored Requests" +msgstr "Nascondi le richieste ignorate" -#: ../../include/enotify.php:155 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "" +#: ../../mod/notifications.php:147 ../../mod/notifications.php:193 +msgid "Notification type: " +msgstr "Tipo di notifica: " -#: ../../include/enotify.php:156 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "" +#: ../../mod/notifications.php:148 +msgid "Friend Suggestion" +msgstr "Suggerimento di amicizia" -#: ../../include/enotify.php:171 +#: ../../mod/notifications.php:150 #, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Notifica] %s ha taggato un tuo messaggio" +msgid "suggested by %s" +msgstr "suggerito da %s" -#: ../../include/enotify.php:172 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "" +#: ../../mod/notifications.php:179 +msgid "Claims to be known to you: " +msgstr "Dice di conoscerti: " -#: ../../include/enotify.php:173 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "" +#: ../../mod/notifications.php:179 +msgid "yes" +msgstr "si" -#: ../../include/enotify.php:184 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Notifica] Hai ricevuto una presentazione" +#: ../../mod/notifications.php:179 +msgid "no" +msgstr "no" -#: ../../include/enotify.php:185 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "" +#: ../../mod/notifications.php:186 +msgid "Approve as: " +msgstr "Approva come: " -#: ../../include/enotify.php:186 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +#: ../../mod/notifications.php:187 +msgid "Friend" +msgstr "Amico" + +#: ../../mod/notifications.php:188 +msgid "Sharer" msgstr "" -#: ../../include/enotify.php:189 ../../include/enotify.php:207 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Puoi visitare il suo profilo presso %s" +#: ../../mod/notifications.php:188 +msgid "Fan/Admirer" +msgstr "Fan/Ammiratore" + +#: ../../mod/notifications.php:194 +msgid "Friend/Connect Request" +msgstr "Richiesta di amicizia" -#: ../../include/enotify.php:191 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Visita %s per approvare o rifiutare la presentazione." +#: ../../mod/notifications.php:194 +msgid "New Follower" +msgstr "Nuovo follower" -#: ../../include/enotify.php:198 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia" +#: ../../mod/notifications.php:215 +msgid "No introductions." +msgstr "Nessuna richiesta di amicizia." -#: ../../include/enotify.php:199 +#: ../../mod/notifications.php:257 ../../mod/notifications.php:382 +#: ../../mod/notifications.php:465 #, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "" +msgid "%s liked %s's post" +msgstr "A %s è piaciuto l'articolo di %s" -#: ../../include/enotify.php:200 +#: ../../mod/notifications.php:266 ../../mod/notifications.php:391 +#: ../../mod/notifications.php:474 #, php-format -msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "" - -#: ../../include/enotify.php:205 -msgid "Name:" -msgstr "Nome:" - -#: ../../include/enotify.php:206 -msgid "Photo:" -msgstr "Foto:" +msgid "%s disliked %s's post" +msgstr "A %s non è piaciuto l'articolo di %s" -#: ../../include/enotify.php:209 +#: ../../mod/notifications.php:280 ../../mod/notifications.php:405 +#: ../../mod/notifications.php:488 #, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Visita %s per approvare o rifiutare il suggerimento." +msgid "%s is now friends with %s" +msgstr "%s è ora amico di %s" -#: ../../include/follow.php:32 -msgid "Connect URL missing." -msgstr "URL di connessione mancante." +#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 +#, php-format +msgid "%s created a new post" +msgstr "%s ha creato un nuovo articolo" -#: ../../include/follow.php:59 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Questo sito non è configurato per permettere la comunicazione con altri network." +#: ../../mod/notifications.php:288 ../../mod/notifications.php:413 +#: ../../mod/notifications.php:497 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s ha commentato l'articolo di %s" -#: ../../include/follow.php:60 ../../include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili." +#: ../../mod/notifications.php:302 +msgid "No more network notifications." +msgstr "Non ci sono nuove notifiche dalla rete." -#: ../../include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni." +#: ../../mod/notifications.php:306 +msgid "Network Notifications" +msgstr "Notifiche dalla rete" -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "Non è stato trovato un nome o un autore" +#: ../../mod/notifications.php:332 ../../mod/notify.php:54 +msgid "No more system notifications." +msgstr "Non ci sono nuove notifiche di sistema." -#: ../../include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "Nessun URL puo' essere associato a questo indirizzo." +#: ../../mod/notifications.php:336 ../../mod/notify.php:58 +msgid "System Notifications" +msgstr "Notifiche di sistema" -#: ../../include/follow.php:86 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "" +#: ../../mod/notifications.php:427 +msgid "No more personal notifications." +msgstr "Non ci sono nuove notifiche personali." -#: ../../include/follow.php:87 -msgid "Use mailto: in front of address to force email check." -msgstr "" +#: ../../mod/notifications.php:431 +msgid "Personal Notifications" +msgstr "Notifiche personali" -#: ../../include/follow.php:93 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito." +#: ../../mod/notifications.php:504 +msgid "No more home notifications." +msgstr "Non ci sono nuove notifiche dalla bacheca." -#: ../../include/follow.php:103 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te." +#: ../../mod/notifications.php:508 +msgid "Home Notifications" +msgstr "Notifiche dalla bacheca" -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "Impossibile recuperare informazioni sul contatto." +#: ../../mod/oexchange.php:22 +msgid "Post successful." +msgstr "Inviato!" -#: ../../include/follow.php:259 -msgid "following" -msgstr "segue" +#: ../../mod/editpost.php:29 +msgid "Item is not editable" +msgstr "L'elemento non è modificabile" -#: ../../include/items.php:3299 -msgid "A new person is sharing with you at " -msgstr "Una nuova persona sta condividendo con te da " +#: ../../mod/profile.php:111 +msgid "Access to this profile has been restricted." +msgstr "L'accesso a questo profilo è stato limitato." -#: ../../include/items.php:3299 -msgid "You have a new follower at " -msgstr "Una nuova persona ti segue su " +#: ../../mod/poke.php:159 +msgid "Poke/Prod" +msgstr "" -#: ../../include/items.php:3980 -msgid "Archives" +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" msgstr "" -#: ../../include/user.php:38 -msgid "An invitation is required." -msgstr "E' richiesto un invito." +#: ../../mod/poke.php:161 +msgid "Recipient" +msgstr "Destinatario" -#: ../../include/user.php:43 -msgid "Invitation could not be verified." -msgstr "L'invito non puo' essere verificato." +#: ../../mod/poke.php:162 +msgid "Choose what you wish to do to recipient" +msgstr "Scegli cosa vuoi mandare al destinatario" -#: ../../include/user.php:51 -msgid "Invalid OpenID url" -msgstr "Url OpenID non valido" +#: ../../mod/poke.php:165 +msgid "Make this post private" +msgstr "Rendi privato questo articolo" -#: ../../include/user.php:66 -msgid "Please enter the required information." -msgstr "Inserisci le informazioni richieste." +#: ../../mod/community.php:23 +msgid "Not available." +msgstr "Non disponibile." -#: ../../include/user.php:80 -msgid "Please use a shorter name." -msgstr "Usa un nome più corto." +#: ../../mod/community.php:32 +msgid "Community" +msgstr "Comunità" -#: ../../include/user.php:82 -msgid "Name too short." -msgstr "Il nome è troppo corto." +#: ../../mod/community.php:63 ../../mod/community.php:88 +msgid "No results." +msgstr "Nessun risultato." -#: ../../include/user.php:97 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)." +#: ../../mod/fbrowser.php:113 +msgid "Files" +msgstr "Elenco file" -#: ../../include/user.php:102 -msgid "Your email domain is not among those allowed on this site." -msgstr "Il dominio della tua email non è tra quelli autorizzati su questo sito." +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Suggerimento di amicizia inviato." -#: ../../include/user.php:105 -msgid "Not a valid email address." -msgstr "L'indirizzo email non è valido." +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Suggerisci amici" -#: ../../include/user.php:115 -msgid "Cannot use that email." -msgstr "Non puoi usare quell'email." +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Suggerisci un amico a %s" -#: ../../include/user.php:121 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "Il tuo nome utente puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera." +#: ../../mod/profperm.php:34 ../../mod/profperm.php:64 +msgid "Invalid profile identifier." +msgstr "Indentificativo del profilo non valido." -#: ../../include/user.php:127 ../../include/user.php:225 -msgid "Nickname is already registered. Please choose another." -msgstr "Nome utente già registrato. Scegline un altro." +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" +msgstr "Modifica la visibilità del profilo" -#: ../../include/user.php:137 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo." +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." +msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." -#: ../../include/user.php:153 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita." +#: ../../mod/profperm.php:123 +msgid "Visible To" +msgstr "Visibile a" -#: ../../include/user.php:211 -msgid "An error occurred during registration. Please try again." -msgstr "C'è stato un errore durante la registrazione. Prova ancora." +#: ../../mod/profperm.php:139 +msgid "All Contacts (with secure profile access)" +msgstr "Tutti i contatti (con profilo ad accesso sicuro)" -#: ../../include/user.php:246 -msgid "An error occurred creating your default profile. Please try again." -msgstr "C'è stato un errore nella creazione del tuo profilo. Prova ancora." +#: ../../mod/siteinfo.php:51 +#, php-format +msgid "Version %s" +msgstr "Versione %s" -#: ../../include/security.php:22 -msgid "Welcome " -msgstr "Ciao" +#: ../../mod/siteinfo.php:65 +msgid "Installed plugins/addons/apps:" +msgstr "App e componanti aggiuntivi instalati:" -#: ../../include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Carica una foto per il profilo." +#: ../../mod/siteinfo.php:78 +msgid "No installed plugins/addons/apps" +msgstr "Nessuna app o componente aggiuntivo installato" -#: ../../include/security.php:26 -msgid "Welcome back " -msgstr "Ciao " +#: ../../mod/siteinfo.php:81 +msgid "Red" +msgstr "Red" -#: ../../include/security.php:344 +#: ../../mod/siteinfo.php:82 msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "" - -#: ../../include/Contact.php:111 -msgid "stopped following" -msgstr "" +"This is Red - another decentralized, distributed communications project by " +"the folks at Friendica." +msgstr "Questo è Red - un progetto di comunicazione decentralizzata e distribuita dagli autori di Friendica." -#: ../../include/Contact.php:220 ../../include/conversation.php:734 -msgid "Poke" -msgstr "" - -#: ../../include/Contact.php:221 ../../include/conversation.php:728 -msgid "View Status" -msgstr "Visualizza stato" - -#: ../../include/Contact.php:222 ../../include/conversation.php:729 -msgid "View Profile" -msgstr "Visualizza profilo" - -#: ../../include/Contact.php:223 ../../include/conversation.php:730 -msgid "View Photos" -msgstr "Visualizza foto" +#: ../../mod/siteinfo.php:84 +msgid "Running at web location" +msgstr "In esecuzione sull'indirizzo web" -#: ../../include/Contact.php:224 ../../include/Contact.php:237 -#: ../../include/conversation.php:731 -msgid "Network Posts" -msgstr "" +#: ../../mod/siteinfo.php:85 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica and/or Red project." +msgstr "Visita Friendica.com per scoprire di più sul progetto Red o sul progetto Friendica." -#: ../../include/Contact.php:225 ../../include/Contact.php:237 -#: ../../include/conversation.php:732 -msgid "Edit Contact" -msgstr "Modifica contatti" +#: ../../mod/siteinfo.php:86 +msgid "Bug reports and issues: please visit" +msgstr "Per segnalare bug e problemi: visita" -#: ../../include/Contact.php:226 ../../include/Contact.php:237 -#: ../../include/conversation.php:733 -msgid "Send PM" -msgstr "Invia messaggio privato" +#: ../../mod/siteinfo.php:89 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Per suggerimenti, ringraziamenti, donazioni, ecc - scrivi a \"info chiocciola friendica punto com\"" -#: ../../include/conversation.php:206 -#, php-format -msgid "%1$s poked %2$s" -msgstr "" +#: ../../mod/suggest.php:41 +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." -#: ../../include/conversation.php:290 -msgid "post/item" -msgstr "post/elemento" +#: ../../mod/suggest.php:58 +msgid "Ignore/Hide" +msgstr "Ignora/nascondi" -#: ../../include/conversation.php:291 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s ha segnato il/la %3$s di %2$s come preferito" +#: ../../mod/register.php:35 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "È stato superato il numero massimo giornaliero di registrazioni su questo sito. Riprova domani!" -#: ../../include/conversation.php:545 ../../object/Item.php:218 -msgid "Categories:" -msgstr "" +#: ../../mod/register.php:41 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio." -#: ../../include/conversation.php:546 ../../object/Item.php:219 -msgid "Filed under:" -msgstr "" +#: ../../mod/register.php:91 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata." -#: ../../include/conversation.php:630 -msgid "remove" -msgstr "rimuovi" +#: ../../mod/register.php:97 +msgid "Your registration is pending approval by the site owner." +msgstr "La tua richiesta è in attesa di approvazione da parte dell'amministratore del sito." -#: ../../include/conversation.php:634 -msgid "Delete Selected Items" -msgstr "Cancella elementi selezionati" +#: ../../mod/register.php:100 +msgid "Your registration can not be processed." +msgstr "La tua registrazione non puo' essere acquisita." -#: ../../include/conversation.php:792 -#, php-format -msgid "%s likes this." -msgstr "Piace a %s." +#: ../../mod/register.php:135 +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." -#: ../../include/conversation.php:792 -#, php-format -msgid "%s doesn't like this." -msgstr "Non piace a %s." +#: ../../mod/register.php:146 +msgid "Terms of Service" +msgstr "Condizioni d'Uso" -#: ../../include/conversation.php:796 +#: ../../mod/register.php:152 #, php-format -msgid "%2$d people like this." -msgstr "Piace a %2$d persone." +msgid "I accept the %s for this website" +msgstr "Accetto le %s di questo sito" -#: ../../include/conversation.php:798 +#: ../../mod/register.php:154 #, php-format -msgid "%2$d people don't like this." -msgstr "Non piace a %2$d persone." +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" -#: ../../include/conversation.php:804 -msgid "and" -msgstr "e" - -#: ../../include/conversation.php:807 -#, php-format -msgid ", and %d other people" -msgstr "e altre %d persone" +#: ../../mod/register.php:169 +msgid "Membership on this site is by invitation only." +msgstr "Per registrarsi su questo sito è necessario un invito." -#: ../../include/conversation.php:808 -#, php-format -msgid "%s like this." -msgstr "Piace a %s." +#: ../../mod/register.php:170 +msgid "Please enter your invitation code" +msgstr "Inserisci il codice dell'invito" -#: ../../include/conversation.php:808 -#, php-format -msgid "%s don't like this." -msgstr "Non piace a %s." +#: ../../mod/register.php:173 +msgid "Your email address" +msgstr "Il tuo indirizzo email" -#: ../../include/conversation.php:832 ../../include/conversation.php:849 -msgid "Visible to everybody" -msgstr "Visibile a tutti" +#: ../../mod/register.php:174 +msgid "Choose a password" +msgstr "Scegli una password" -#: ../../include/conversation.php:834 ../../include/conversation.php:851 -msgid "Please enter a video link/URL:" -msgstr "Inserisci un collegamento video / URL:" +#: ../../mod/register.php:175 +msgid "Please re-enter your password" +msgstr "Ripeti la password per verifica" -#: ../../include/conversation.php:835 ../../include/conversation.php:852 -msgid "Please enter an audio link/URL:" -msgstr "Inserisci un collegamento audio / URL:" +#: ../../mod/regmod.php:12 +msgid "Please login." +msgstr "Accedi." -#: ../../include/conversation.php:836 ../../include/conversation.php:853 -msgid "Tag term:" -msgstr "Tag:" +#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 +msgid "Remove My Account" +msgstr "Elimina il mio account" -#: ../../include/conversation.php:838 ../../include/conversation.php:855 -msgid "Where are you right now?" -msgstr "Dove sei ora?" +#: ../../mod/removeme.php:46 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo." -#: ../../include/conversation.php:898 -msgid "upload photo" -msgstr "carica foto" +#: ../../mod/removeme.php:47 +msgid "Please enter your password for verification:" +msgstr "Inserisci la tua password per verifica:" -#: ../../include/conversation.php:900 -msgid "attach file" -msgstr "allega file" +#: ../../mod/mood.php:131 +msgid "Mood" +msgstr "Umore" -#: ../../include/conversation.php:902 -msgid "web link" -msgstr "link web" +#: ../../mod/mood.php:132 +msgid "Set your current mood and tell your friends" +msgstr "Scegli il tuo umore attuale per mostrarlo agli amici" -#: ../../include/conversation.php:903 -msgid "Insert video link" -msgstr "Inserire collegamento video" +#: ../../view/theme/redbasic/php/config.php:138 +#: ../../view/theme/redbasic/php/config.php:156 +#: ../../view/theme/redstrap/php/config.php:133 +msgid "Theme settings" +msgstr "Impostazioni tema" -#: ../../include/conversation.php:904 -msgid "video link" -msgstr "link video" +#: ../../view/theme/redbasic/php/config.php:139 +#: ../../view/theme/redbasic/php/config.php:157 +#: ../../view/theme/redstrap/php/config.php:134 +msgid "Set font-size for posts and comments" +msgstr "Scegli le dimensioni del carattere per articoli e commenti" -#: ../../include/conversation.php:905 -msgid "Insert audio link" -msgstr "Inserisci collegamento audio" +#: ../../view/theme/redbasic/php/config.php:140 +#: ../../view/theme/redbasic/php/config.php:158 +#: ../../view/theme/redstrap/php/config.php:135 +msgid "Set line-height for posts and comments" +msgstr "Scegli l'altezza della riga per articoli e commenti" -#: ../../include/conversation.php:906 -msgid "audio link" -msgstr "link audio" +#: ../../view/theme/redbasic/php/config.php:141 +#: ../../view/theme/redbasic/php/config.php:159 +#: ../../view/theme/redstrap/php/config.php:136 +msgid "Set colour scheme" +msgstr "Scegli lo schema di colore" -#: ../../include/conversation.php:908 -msgid "set location" -msgstr "posizione" +#: ../../view/theme/redbasic/php/config.php:142 +#: ../../view/theme/redstrap/php/config.php:137 +msgid "Draw shadows" +msgstr "Aggiungi l'ombreggiatura" -#: ../../include/conversation.php:910 -msgid "clear location" -msgstr "canc. pos." +#: ../../view/theme/redbasic/php/config.php:143 +#: ../../view/theme/redstrap/php/config.php:138 +msgid "Navigation bar colour" +msgstr "Colore della barra di navigazione" -#: ../../include/conversation.php:917 -msgid "permissions" -msgstr "permessi" +#: ../../view/theme/redbasic/php/config.php:144 +#: ../../view/theme/redstrap/php/config.php:139 +msgid "Display style" +msgstr "Stile di visualizzazione" -#: ../../include/plugin.php:389 ../../include/plugin.php:391 -msgid "Click here to upgrade." -msgstr "" +#: ../../view/theme/redbasic/php/config.php:145 +#: ../../view/theme/redstrap/php/config.php:140 +msgid "Display colour of links - hex value, do not include the #" +msgstr "Scegli il colore dei link - in esadecimale, senza #" -#: ../../include/plugin.php:397 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" +#: ../../view/theme/redbasic/php/config.php:146 +#: ../../view/theme/redstrap/php/config.php:141 +msgid "Icons" +msgstr "Icone" -#: ../../include/plugin.php:402 -msgid "This action is not available under your subscription plan." -msgstr "" +#: ../../view/theme/redbasic/php/config.php:147 +#: ../../view/theme/redstrap/php/config.php:142 +msgid "Shiny style" +msgstr "Effetto lucido" -#: ../../boot.php:573 -msgid "Delete this item?" -msgstr "Cancellare questo elemento?" +#: ../../view/theme/redbasic/php/config.php:148 +msgid "Corner radius" +msgstr "Raggio dell'angolo" -#: ../../boot.php:576 -msgid "show fewer" -msgstr "mostra di meno" +#: ../../view/theme/redbasic/php/config.php:148 +msgid "0-99 default: 5" +msgstr "0-99 predefinito: 5" -#: ../../boot.php:783 +#: ../../boot.php:1201 #, php-format msgid "Update %s failed. See error logs." -msgstr "" +msgstr "%s: aggiornamento fallito. Controlla i log di errore." -#: ../../boot.php:785 +#: ../../boot.php:1204 #, php-format msgid "Update Error at %s" -msgstr "" +msgstr "Errore di aggiornamento su %s" -#: ../../boot.php:886 +#: ../../boot.php:1341 msgid "Create a New Account" msgstr "Crea un nuovo account" -#: ../../boot.php:914 -msgid "Nickname or Email address: " -msgstr "Nome utente o indirizzo email: " +#: ../../boot.php:1370 +msgid "Password" +msgstr "Password" -#: ../../boot.php:915 -msgid "Password: " -msgstr "Password: " +#: ../../boot.php:1371 +msgid "Remember me" +msgstr "Ricorda i miei dati" -#: ../../boot.php:918 -msgid "Or login using OpenID: " -msgstr "O entra con OpenID:" - -#: ../../boot.php:924 +#: ../../boot.php:1376 msgid "Forgot your password?" msgstr "Hai dimenticato la password?" -#: ../../boot.php:1035 -msgid "Requested account is not available." -msgstr "" +#: ../../boot.php:1495 +msgid "Requested channel is not available." +msgstr "Il canale che cerchi non è disponibile." -#: ../../boot.php:1112 -msgid "Edit profile" -msgstr "Modifica il profilo" +#: ../../boot.php:1507 +msgid " Sorry, you don't have the permission to view this profile. " +msgstr "Purtroppo non hai il permesso di vedere questo profilo." -#: ../../boot.php:1178 -msgid "Message" -msgstr "Messaggio" +#: ../../boot.php:1645 +msgid "Profiles" +msgstr "Profili" -#: ../../boot.php:1300 ../../boot.php:1386 -msgid "g A l F d" -msgstr "g A l d F" +#: ../../boot.php:1645 +msgid "Manage/edit profiles" +msgstr "Gestisci/modifica i profili" + +#: ../../boot.php:1649 +msgid "Edit Profile" +msgstr "Modifica il profilo" -#: ../../boot.php:1301 ../../boot.php:1387 +#: ../../boot.php:1738 ../../boot.php:1818 msgid "F d" msgstr "d F" -#: ../../boot.php:1346 ../../boot.php:1427 -msgid "[today]" -msgstr "[oggi]" - -#: ../../boot.php:1358 +#: ../../boot.php:1795 msgid "Birthday Reminders" msgstr "Promemoria compleanni" -#: ../../boot.php:1359 +#: ../../boot.php:1796 msgid "Birthdays this week:" msgstr "Compleanni questa settimana:" -#: ../../boot.php:1420 +#: ../../boot.php:1851 msgid "[No description]" msgstr "[Nessuna descrizione]" -#: ../../boot.php:1438 +#: ../../boot.php:1869 msgid "Event Reminders" msgstr "Promemoria" -#: ../../boot.php:1439 +#: ../../boot.php:1870 msgid "Events this week:" msgstr "Eventi di questa settimana:" -#: ../../boot.php:1668 +#: ../../boot.php:2093 +msgid "Channel" +msgstr "Canale" + +#: ../../boot.php:2096 msgid "Status Messages and Posts" -msgstr "" +msgstr "Articoli e messaggi di stato" -#: ../../boot.php:1675 +#: ../../boot.php:2100 +msgid "About" +msgstr "Informazioni" + +#: ../../boot.php:2103 msgid "Profile Details" -msgstr "" +msgstr "Dettagli del profilo" -#: ../../boot.php:1692 +#: ../../boot.php:2121 msgid "Events and Calendar" -msgstr "" +msgstr "Calendario eventi" -#: ../../boot.php:1699 -msgid "Only You Can See This" -msgstr "" +#: ../../boot.php:2126 +msgid "Webpages" +msgstr "Pagine web" + +#: ../../boot.php:2129 +msgid "Manage Webpages" +msgstr "Gestisci le pagine web" + +#: ../../boot.php:2356 +msgid "toggle mobile" +msgstr "attiva/disattiva versione mobile" diff --git a/view/it/strings.php b/view/it/strings.php index 7959a67e5..500e22f8e 100644 --- a/view/it/strings.php +++ b/view/it/strings.php @@ -4,980 +4,1315 @@ function string_plural_select_it($n){ return ($n != 1);; } ; -$a->strings["Post successful."] = "Inviato!"; -$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; -$a->strings["Contact settings applied."] = "Contatto modificato."; -$a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate."; -$a->strings["Permission denied."] = "Permesso negato."; -$a->strings["Contact not found."] = "Contatto non trovato."; -$a->strings["Repair Contact Settings"] = "Ripara il contatto"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più"; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina."; -$a->strings["Return to contact editor"] = "Ritorna alla modifica contatto"; -$a->strings["Name"] = "Nome"; -$a->strings["Account Nickname"] = "Nome utente"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - al posto del nome utente"; -$a->strings["Account URL"] = "URL dell'utente"; -$a->strings["Friend Request URL"] = "URL Richiesta Amicizia"; -$a->strings["Friend Confirm URL"] = "URL Conferma Amicizia"; -$a->strings["Notification Endpoint URL"] = "URL Notifiche"; -$a->strings["Poll/Feed URL"] = "URL Feed"; -$a->strings["New photo from this URL"] = "Nuova foto da questo URL"; -$a->strings["Submit"] = "Invia"; -$a->strings["Help:"] = "Guida:"; +$a->strings["Visible to everybody"] = "Archiviato come:"; +$a->strings["show"] = "mostra"; +$a->strings["don't show"] = "non mostrare"; +$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["Red Matrix Notification"] = "Notifica di Red Matrix"; +$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 alle %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s ti ha mandato un messaggio privato alle %2\$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 commented on [zrl=%2\$s]a %3\$s[/zrl]"] = "%1\$s ha commentato [zrl=%2\$s]%3\$s[/zrl]"; +$a->strings["%1\$s commented on [zrl=%2\$s]%3\$s's %4\$s[/zrl]"] = "%1\$s ha commentato [zrl=%2\$s]%4\$s di %3\$s[/zrl]"; +$a->strings["%1\$s commented on [zrl=%2\$s]your %3\$s[/zrl]"] = "%1\$s ha commentato [zrl=%2\$s]%3\$s[/zrl] che hai creato"; +$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["%s commented on an item/conversation you have been following."] = "%s ha commentato una conversazione che stai 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 posted to your profile wall at %2\$s"] = "%1\$s ha scritto sulla tua bacheca alle %2\$s"; +$a->strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = "%1\$s ha scritto sulla [zrl=%2\$s]tua bacheca[/zrl]"; +$a->strings["[Red:Notify] %s tagged you"] = "[Red:Notifica] %s ti ha taggato"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s ti ha taggato alle %2\$s"; +$a->strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = "%1\$s [zrl=%2\$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 poked you at %2\$s"] = "%1\$s ti ha mandato un poke alle %2\$s"; +$a->strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$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 tagged your post at %2\$s"] = "%1\$s ha taggato il tuo articolo alle %2\$s"; +$a->strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = "%1\$s ha taggato [zrl=%2\$s]il tuo articolo[/zrl]"; +$a->strings["[Red:Notify] Introduction received"] = "[Red:Notifica] Hai una richiesta di amicizia"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Hai ricevuto una richiesta di amicizia da '%1\$s' alle %2\$s"; +$a->strings["You've received [zrl=%1\$s]an introduction[/zrl] from %2\$s."] = "Hai ricevuto [zrl=%1\$s]una richiesta di amicizia[/zrl] da %2\$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 introduction."] = "Visita %s per approvare o rifiutare la richiesta."; +$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Notifica] Ti è stato suggerito un amico"; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Ti è stato suggerito un amico da '%1\$s' alle %2\$s"; +$a->strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = "%3\$s ti ha [zrl=%1\$s]suggerito %2\$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["Connect"] = "Connetti"; +$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["Poke"] = "Poke"; +$a->strings["View Status"] = "Guarda il messaggio di stato"; +$a->strings["View Profile"] = "Il mio profilo"; +$a->strings["View Photos"] = "Guarda le foto"; +$a->strings["Network Posts"] = "Articoli dalla tua rete"; +$a->strings["Edit Contact"] = "Modifica il contatto"; +$a->strings["Send PM"] = "Invia messaggio privato"; +$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"; +$a->strings["Known to me, but no opinion"] = "Lo conosco, ma non ho un'opinione particolare"; +$a->strings["OK, probably harmless"] = "È ok, probabilmente innocuo"; +$a->strings["Reputable, has my trust"] = "Affidabile, ha la mia fiducia"; +$a->strings["Frequently"] = "Frequentemente"; +$a->strings["Hourly"] = "Ogni ora"; +$a->strings["Twice daily"] = "Due volte al giorno"; +$a->strings["Daily"] = "Ogni giorno"; +$a->strings["Weekly"] = "Ogni settimana"; +$a->strings["Monthly"] = "Ogni mese"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Email"] = "Email"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$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["%d invitation available"] = array( + 0 => "%d invito disponibile", + 1 => "%d inviti disponibili", +); +$a->strings["Find Channels"] = "Ricerca canali"; +$a->strings["Enter name or interest"] = "Scrivi un nome o un interesse"; +$a->strings["Connect/Follow"] = "Segui"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Per esempio: Mario Rossi, Pesca"; +$a->strings["Find"] = "Cerca"; +$a->strings["Channel Suggestions"] = "Canali suggeriti"; +$a->strings["Similar Interests"] = "Interessi simili"; +$a->strings["Random Profile"] = "Profilo casuale"; +$a->strings["Invite Friends"] = "Invita amici"; +$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["show more"] = "mostra tutti"; +$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["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; +$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["General Features"] = "Funzionalità generali"; +$a->strings["Multiple Profiles"] = "Profili multipli"; +$a->strings["Ability to create multiple profiles"] = "Abilitazione a creare profili multipli"; +$a->strings["Web Pages"] = "Pagine web"; +$a->strings["Provide managed web pages on your channel"] = "Attiva la creazione di pagine web sul tuo canale"; +$a->strings["Enhanced Photo Albums"] = "Album fotografici avanzati"; +$a->strings["Enable photo album with enhanced features"] = "Abilita gli album fotografici con funzionalità avanzate"; +$a->strings["Extended Identity Sharing"] = "Condivisione avanzata dell'identità"; +$a->strings[" "] = " "; +$a->strings["Expert Mode"] = "Modalità esperto"; +$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Abilita la modalità esperto per vedere le opzioni di configurazione avanzate"; +$a->strings["Post Composition Features"] = "Modalità di scrittura articoli"; +$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["Network and Stream Filtering"] = "Filtraggio dei contenuti"; +$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"] = "Ricerca per gruppo"; +$a->strings["Enable widget to display Network posts only from selected collections"] = "Mostra il riquadro che permette di vedere solo gli articoli dei gruppi scelti"; +$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"; +$a->strings["Network New Tab"] = "Contenuti nuovi"; +$a->strings["Enable tab to display all new Network activity"] = "Abilita il link per visualizzare solo i nuovi contenuti"; +$a->strings["Affinity Tool"] = "Filtro per affinità"; +$a->strings["Filter stream activity by depth of relationships"] = "Permette di selezionare i contenuti in base al livello di amicizia"; +$a->strings["Post/Comment Tools"] = "Gestione articoli e commenti"; +$a->strings["Multiple Deletion"] = "Eliminazione multipla"; +$a->strings["Select and delete multiple posts/comments at once"] = "Rendi possibile l'eliminazione di molti articoli o commenti con un solo comando"; +$a->strings["Edit Sent Posts"] = "Modifica gli articoli già inviati"; +$a->strings["Edit and correct posts and comments after sending"] = "Modifica e correggi gli articoli o i commenti anche dopo l'invio"; +$a->strings["Tagging"] = "Tag"; +$a->strings["Ability to tag existing posts"] = "Permetti l'aggiunta di tag su articoli già esistenti"; +$a->strings["Post Categories"] = "Categorie degli articoli"; +$a->strings["Add categories to your posts"] = "Abilita le categorie per i tuoi articoli"; +$a->strings["Ability to file posts under folders"] = "Abilita la raccolta dei tuoi articoli in cartelle"; +$a->strings["Dislike Posts"] = "Non mi piace"; +$a->strings["Ability to dislike posts/comments"] = "Abilità la funzionalità \"non mi piace\" per i tuoi articoli"; +$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["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 gruppo con questo nome che era stato eliminato in precedenza. I permessi già presenti potrebbero rimanere validi per i nuovi membri. Se non vuoi che ciò accada, devi creare un altro gruppo con un nome diverso."; +$a->strings["Default privacy group for new contacts"] = "Livello di privacy predefinito per i nuovi contatti"; +$a->strings["All Channels"] = "Tutti i canali"; +$a->strings["edit"] = "modifica"; +$a->strings["Collections"] = "Gruppi"; +$a->strings["Edit collection"] = "Modifica gruppo"; +$a->strings["Create a new collection"] = "Crea un nuovo gruppo"; +$a->strings["Channels not in any collection"] = "Canali fuori da tutti i gruppi"; +$a->strings["add"] = "aggiungi"; +$a->strings["Delete this item?"] = "Eliminare questo elemento?"; +$a->strings["Comment"] = "Commento"; +$a->strings["show fewer"] = "riduci"; +$a->strings["Password too short"] = "Password troppo corta"; +$a->strings["Passwords do not match"] = "Le password non corrispondono"; +$a->strings["everybody"] = "tutti"; +$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo"; +$a->strings["timeago.suffixAgo"] = "timeago.suffixAgo"; +$a->strings["ago"] = "fa"; +$a->strings["from now"] = "da adesso"; +$a->strings["less than a minute"] = "meno di un minuto"; +$a->strings["about a minute"] = "circa un minuto"; +$a->strings["%d minutes"] = "%d minuti"; +$a->strings["about an hour"] = "circa un’ora"; +$a->strings["about %d hours"] = "circa %d ore"; +$a->strings["a day"] = "un giorno"; +$a->strings["%d days"] = "%d giorni"; +$a->strings["about a month"] = "circa un mese"; +$a->strings["%d months"] = "%d mesi"; +$a->strings["about a year"] = "circa un anno"; +$a->strings["%d years"] = "%d anni"; +$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["view full size"] = "guarda nelle dimensioni reali"; +$a->strings["Profile Photos"] = "Foto del profilo"; +$a->strings["Profile"] = "Profilo"; +$a->strings["Full Name:"] = "Nome completo:"; +$a->strings["Gender:"] = "Sesso:"; +$a->strings["j F, Y"] = "j F Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Compleanno:"; +$a->strings["Age:"] = "Età:"; +$a->strings["Status:"] = "Stato:"; +$a->strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Preferenze sessuali:"; +$a->strings["Homepage:"] = "Homepage:"; +$a->strings["Hometown:"] = "Città dove vivo:"; +$a->strings["Tags:"] = "Tag:"; +$a->strings["Political Views:"] = "Orientamento politico:"; +$a->strings["Religion:"] = "Religione:"; +$a->strings["About:"] = "Informazioni:"; +$a->strings["Hobbies/Interests:"] = "Interessi e hobby:"; +$a->strings["Likes:"] = "Mi piace:"; +$a->strings["Dislikes:"] = "Non mi piace:"; +$a->strings["Contact information and Social Networks:"] = "Contatti e social network:"; +$a->strings["Musical interests:"] = "Gusti musicali:"; +$a->strings["Books, literature:"] = "Libri, letteratura:"; +$a->strings["Television:"] = "Televisione:"; +$a->strings["Film/dance/culture/entertainment:"] = "Film, danza, cultura, intrattenimento:"; +$a->strings["Love/Romance:"] = "Amore:"; +$a->strings["Work/employment:"] = "Lavoro:"; +$a->strings["School/education:"] = "Scuola:"; +$a->strings["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 e modifica i profili"; +$a->strings["Photos"] = "Foto"; +$a->strings["Your photos"] = "Le tue foto"; +$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["Not Found"] = "Non trovato"; -$a->strings["Page not found."] = "Pagina non trovata."; +$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"] = "Elenco"; +$a->strings["Channel Locator"] = "Ricerca canali"; +$a->strings["Matrix"] = "Matrix"; +$a->strings["Conversations from your grid"] = "Le conversazioni dalla tua rete di contatti"; +$a->strings["See all matrix notifications"] = "Guarda le notifiche della tua rete di contatti"; +$a->strings["Mark all matrix notifications seen"] = "Segna come lette le notifiche della tua rete"; +$a->strings["See all channel notifications"] = "Guarda le notifiche dei canali"; +$a->strings["Mark all channel notifications seen"] = "Segna come lette le notifiche dei canali"; +$a->strings["Intros"] = "Richieste"; +$a->strings["New Connections"] = "Nuovi contatti"; +$a->strings["See all channel introductions"] = "Guarda tutte le richieste di amicizia"; +$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["Events"] = "Eventi"; +$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["Connections"] = "Contatti"; +$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["created a new post"] = "Ha creato un nuovo articolo"; +$a->strings["commented on %s's post"] = "ha commentato l'articolo di %s"; +$a->strings["Embedded content"] = "Contenuti incorporati"; +$a->strings["Embedding disabled"] = "Contenuti incorporati - funzione disabilitata"; +$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["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"] = "Amici"; +$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["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"; +$a->strings["No account identifier"] = "Account senza identificativo"; +$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["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["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["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["prev"] = "prec"; +$a->strings["first"] = "inizio"; +$a->strings["last"] = "fine"; +$a->strings["next"] = "succ"; +$a->strings["older"] = "più recenti"; +$a->strings["newer"] = "più nuovi"; +$a->strings["No connections"] = "Nessun contatto"; +$a->strings["%d Connection"] = array( + 0 => "%d contatto", + 1 => "%d contatti", +); +$a->strings["View Connections"] = "Elenco contatti"; +$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"; +$a->strings["prodded"] = "ha ricevuto un prod"; +$a->strings["slap"] = "schiaffo"; +$a->strings["slapped"] = "ha ricevuto uno schiaffo"; +$a->strings["finger"] = "finger"; +$a->strings["fingered"] = "ha ricevuto un finger"; +$a->strings["rebuff"] = "rifiuto"; +$a->strings["rebuffed"] = "ha ricevuto un rifiuto"; +$a->strings["happy"] = "allegro"; +$a->strings["sad"] = "triste"; +$a->strings["mellow"] = "calmo"; +$a->strings["tired"] = "stanco"; +$a->strings["perky"] = "vivace"; +$a->strings["angry"] = "arrabbiato"; +$a->strings["stupified"] = "stordito"; +$a->strings["puzzled"] = "confuso"; +$a->strings["interested"] = "attento"; +$a->strings["bitter"] = "amaro"; +$a->strings["cheerful"] = "allegro"; +$a->strings["alive"] = "vivace"; +$a->strings["annoyed"] = "seccato"; +$a->strings["anxious"] = "ansioso"; +$a->strings["cranky"] = "irritabile"; +$a->strings["disturbed"] = "turbato"; +$a->strings["frustrated"] = "frustrato"; +$a->strings["motivated"] = "motivato"; +$a->strings["relaxed"] = "rilassato"; +$a->strings["surprised"] = "sorpreso"; +$a->strings["Monday"] = "lunedì"; +$a->strings["Tuesday"] = "martedì"; +$a->strings["Wednesday"] = "mercoledì"; +$a->strings["Thursday"] = "giovedì"; +$a->strings["Friday"] = "venerdì"; +$a->strings["Saturday"] = "sabato"; +$a->strings["Sunday"] = "domenica"; +$a->strings["January"] = "gennaio"; +$a->strings["February"] = "febbraio"; +$a->strings["March"] = "marzo"; +$a->strings["April"] = "aprile"; +$a->strings["May"] = "maggio"; +$a->strings["June"] = "giugno"; +$a->strings["July"] = "luglio"; +$a->strings["August"] = "agosto"; +$a->strings["September"] = "settembre"; +$a->strings["October"] = "ottobre"; +$a->strings["November"] = "novembre"; +$a->strings["December"] = "dicembre"; +$a->strings["unknown.???"] = "sconosciuto???"; +$a->strings["bytes"] = "byte"; +$a->strings["remove"] = "rimuovi"; +$a->strings["[remove]"] = "[rimuovi]"; +$a->strings["Categories:"] = "Categorie:"; +$a->strings["Filed under:"] = "Archiviato come:"; +$a->strings["Click to open/close"] = "Clicca per aprire/chiudere"; +$a->strings["link to source"] = "Link all'originale"; +$a->strings["default"] = "predefinito"; +$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["New Page"] = "Nuova pagina web"; +$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["Channel discovery failed. Website may be down or misconfigured."] = "La ricerca del canale è fallita. Il sito potrebbe avere problemi o una configurazione sbagliata."; +$a->strings["Response from remote channel was not understood."] = "La risposta dal canale non è comprensibile."; +$a->strings["Response from remote channel was incomplete."] = "La risposta dal canale non è completa."; +$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["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"] = "Può inviarmi i contenuti del canale e gli articoli"; +$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["Requires compatible chat plugin"] = "Necessita di un plugin di chat compatibile"; +$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 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["Tags"] = "Tag"; +$a->strings["have"] = "ho"; +$a->strings["has"] = "ha"; +$a->strings["want"] = "voglio"; +$a->strings["wants"] = "vuole"; +$a->strings["like"] = "mi piace"; +$a->strings["likes"] = "ama"; +$a->strings["dislike"] = "non mi piace"; +$a->strings["dislikes"] = "non ama"; +$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["File upload failed."] = "Caricamento del file non riuscito."; -$a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato."; -$a->strings["Suggest Friends"] = "Suggerisci amici"; -$a->strings["Suggest a friend for %s"] = "Suggerisci un amico a %s"; -$a->strings["Event title and start time are required."] = ""; +$a->strings["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["Private Message"] = "Messaggio privato"; +$a->strings["Edit"] = "Modifica"; +$a->strings["Delete"] = "Elimina"; +$a->strings["Select"] = "Seleziona"; +$a->strings["save to folder"] = "salva in una cartella"; +$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["add tag"] = "Aggiungi tag"; +$a->strings["I like this (toggle)"] = "Attiva/disattiva Mi piace"; +$a->strings["I don't like this (toggle)"] = "Attiva/disattiva 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"; +$a->strings["to"] = "a"; +$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca"; +$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca:"; +$a->strings[" from %s"] = " da %s"; +$a->strings["Please wait"] = "Attendere"; +$a->strings["%d comment"] = array( + 0 => "%d commento", + 1 => "%d commenti", +); +$a->strings["This is you"] = "Questo sei tu"; +$a->strings["Submit"] = "Invia"; +$a->strings["Bold"] = "Grassetto"; +$a->strings["Italic"] = "Corsivo"; +$a->strings["Underline"] = "Sottolineato"; +$a->strings["Quote"] = "Citazione"; +$a->strings["Code"] = "Codice"; +$a->strings["Image"] = "Immagine"; +$a->strings["Link"] = "Link"; +$a->strings["Video"] = "Video"; +$a->strings["Preview"] = "Anteprima"; +$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["View in context"] = "Vedi nel contesto"; +$a->strings["Loading..."] = "Caricamento in corso..."; +$a->strings["Delete Selected Items"] = "Elimina gli oggetti selezionati"; +$a->strings["Follow Thread"] = "Segui la discussione"; +$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."] = "Piace a %2\$d persone."; +$a->strings["%2\$d people don't like this."] = "Non piace a %2\$d persone."; +$a->strings["and"] = "e"; +$a->strings[", and %d other people"] = "e altre %d persone"; +$a->strings["%s like this."] = "Piace a %s."; +$a->strings["%s don't like this."] = "Non piace a %s."; +$a->strings["Visible to 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["Share"] = "Condividi"; +$a->strings["Page link title"] = "Titolo del link"; +$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"] = "inserisci la 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["Permission denied"] = "Permesso negato"; +$a->strings["Item not found."] = "Elemento non trovato."; +$a->strings["Archives"] = "Archivi"; +$a->strings["Collection not found."] = "Gruppo non trovato."; +$a->strings["Collection has no members."] = "Il gruppo è vuoto."; +$a->strings["Connection not found."] = "Gruppo non trovato."; +$a->strings["Image/photo"] = "Immagine"; +$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s seguente %3\$s"; +$a->strings["post"] = "l'articolo"; +$a->strings["$1 wrote:"] = "$1 ha scritto:"; +$a->strings["Encrypted content"] = "Contenuto crittografato"; +$a->strings["Welcome "] = "Ciao"; +$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo!"; +$a->strings["Welcome back "] = "Ciao, è bello rivederti"; +$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["No channel."] = "Nessun canale."; +$a->strings["Common connections"] = "Contatti in comune"; +$a->strings["No connections in common."] = "Nessun contatto in comune."; +$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"] = "Modifca l'evento"; -$a->strings["link to source"] = "Collegamento all'originale"; -$a->strings["Events"] = "Eventi"; $a->strings["Create New Event"] = "Crea un nuovo evento"; $a->strings["Previous"] = "Precendente"; $a->strings["Next"] = "Successivo"; $a->strings["hour:minute"] = "ora:minuti"; -$a->strings["Event details"] = "Dettagli dell'evento"; -$a->strings["Format is %s %s. Starting date and Title are required."] = ""; -$a->strings["Event Starts:"] = "L'evento inizia:"; -$a->strings["Required"] = ""; -$a->strings["Finish date/time is not known or not relevant"] = "La data/ora di fine non è definita"; -$a->strings["Event Finishes:"] = "L'evento finisce:"; -$a->strings["Adjust for viewer timezone"] = "Visualizza con il fuso orario di chi legge"; +$a->strings["Event details"] = "Dettagli evento"; +$a->strings["Format is %s %s. Starting date and Title are required."] = "Il formato è %s %s. L'inizio e il titolo sono obbligatori."; +$a->strings["Event Starts:"] = "Inizio:"; +$a->strings["Required"] = "Obbligatorio"; +$a->strings["Finish date/time is not known or not relevant"] = "La data/ora di fine non è rilevante"; +$a->strings["Event Finishes:"] = "Fine:"; +$a->strings["Adjust for viewer timezone"] = "Adatta al fuso orario di chi legge"; $a->strings["Description:"] = "Descrizione:"; -$a->strings["Location:"] = "Posizione:"; -$a->strings["Title:"] = ""; +$a->strings["Title:"] = "Titolo:"; $a->strings["Share this event"] = "Condividi questo evento"; -$a->strings["Cancel"] = "Annulla"; -$a->strings["Tag removed"] = "Tag rimosso"; -$a->strings["Remove Item Tag"] = "Rimuovi il tag"; -$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: "; -$a->strings["Remove"] = "Rimuovi"; -$a->strings["%s welcomes %s"] = "%s dà il benvenuto a %s"; -$a->strings["Authorize application connection"] = "Autorizza la connessione dell'applicazione"; -$a->strings["Return to your app and insert this Securty Code:"] = "Torna alla tua applicazione e inserisci questo codice di sicurezza:"; -$a->strings["Please login to continue."] = "Effettua il login per continuare."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?"; +$a->strings["Object store: failed"] = "Memorizzazione oggetto: fallita"; +$a->strings["thing/stuff added"] = "oggetto aggiunto"; +$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +$a->strings["not yet implemented."] = "non ancora implementato."; +$a->strings["Add Stuff to your Profile"] = "Aggiungi un oggetto al tuo profilo"; +$a->strings["Select a profile"] = "Scegli un profilo"; +$a->strings["Select a category of stuff. e.g. I ______ something"] = "Scegli una categoria di oggetto. Esempio: Io _____ qualcosa"; +$a->strings["Name of thing or stuff e.g. something"] = "Nome dell'oggetto"; +$a->strings["URL of thing or stuff (optional)"] = "Indirizzo web dell'oggetto (se cel'ha)"; +$a->strings["URL for photo of thing or stuff (optional)"] = "Indirizzo web della foto dell'oggetto (facoltativo)"; +$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 social and information tool."] = "Questo è un caloroso invito ad unirti a me e altri amici su Red Matrix - uno strumento di comunicazione social rivoluzionario e decentrato."; +$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, please connect with my Red Matrix channel address:"] = "Una volta che avrai fatto la registrazione, potrai connetterti col mio canale Red Matrix a questo indirizzo:"; +$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["Friends of %s"] = "Amici di %s"; +$a->strings["No friends to display."] = "Nessun amico da visualizzare."; +$a->strings["Requested profile is not available."] = "Il profilo richiesto non è disponibile."; +$a->strings["View"] = "Guarda"; +$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["Photo Albums"] = "Album foto"; -$a->strings["Contact Photos"] = "Foto dei contatti"; -$a->strings["Upload New Photos"] = "Carica nuove foto"; -$a->strings["everybody"] = "tutti"; -$a->strings["Contact information unavailable"] = "I dati di questo contatto non sono disponibili"; -$a->strings["Profile Photos"] = "Foto del profilo"; -$a->strings["Album not found."] = "Album non trovato."; -$a->strings["Delete Album"] = "Rimuovi album"; -$a->strings["Delete Photo"] = "Rimuovi foto"; -$a->strings["was tagged in a"] = "è stato taggato in una"; -$a->strings["photo"] = "foto"; -$a->strings["by"] = "da"; -$a->strings["Image exceeds size limit of "] = "L'immagine supera il limite di"; -$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto."; -$a->strings["Unable to process image."] = "Impossibile caricare l'immagine."; -$a->strings["Image upload failed."] = "Caricamento immagine fallito."; -$a->strings["Public access denied."] = "Accesso negato."; -$a->strings["No photos selected"] = "Nessuna foto selezionata"; -$a->strings["Access to this item is restricted."] = "Questo oggetto non è visibile a tutti."; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = ""; -$a->strings["You have used %1$.2f Mbytes of photo storage."] = ""; -$a->strings["Upload Photos"] = "Carica foto"; -$a->strings["New album name: "] = "Nome nuovo album: "; -$a->strings["or existing album name: "] = "o nome di un album esistente: "; -$a->strings["Do not show a status post for this upload"] = "Non creare un post per questo upload"; -$a->strings["Permissions"] = "Permessi"; -$a->strings["Edit Album"] = "Modifica album"; -$a->strings["Show Newest First"] = ""; -$a->strings["Show Oldest First"] = ""; -$a->strings["View Photo"] = "Vedi foto"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere limitato."; -$a->strings["Photo not available"] = "Foto non disponibile"; -$a->strings["View photo"] = "Vedi foto"; -$a->strings["Edit photo"] = "Modifica foto"; -$a->strings["Use as profile photo"] = "Usa come foto del profilo"; -$a->strings["Private Message"] = "Messaggio privato"; -$a->strings["View Full Size"] = "Vedi dimensione intera"; -$a->strings["Tags: "] = "Tag: "; -$a->strings["[Remove any tag]"] = "[Rimuovi tutti i tag]"; -$a->strings["Rotate CW (right)"] = ""; -$a->strings["Rotate CCW (left)"] = ""; -$a->strings["New album name"] = "Nuovo nome dell'album"; -$a->strings["Caption"] = "Titolo"; -$a->strings["Add a Tag"] = "Aggiungi tag"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["I like this (toggle)"] = "Mi piace (clic per cambiare)"; -$a->strings["I don't like this (toggle)"] = "Non mi piace (clic per cambiare)"; -$a->strings["Share"] = "Condividi"; -$a->strings["Please wait"] = "Attendi"; -$a->strings["This is you"] = "Questo sei tu"; -$a->strings["Comment"] = "Commento"; -$a->strings["Preview"] = "Anteprima"; -$a->strings["Delete"] = "Rimuovi"; -$a->strings["View Album"] = "Sfoglia l'album"; -$a->strings["Recent Photos"] = "Foto recenti"; -$a->strings["Not available."] = "Non disponibile."; -$a->strings["Community"] = "Comunità"; -$a->strings["No results."] = "Nessun risultato."; -$a->strings["This is Friendica, version"] = "Questo è Friendica, versione"; -$a->strings["running at web location"] = "in esecuzione sull'indirizzo web"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Visita Friendica.com per saperne di più sul progetto Friendica."; -$a->strings["Bug reports and issues: please visit"] = "Segnalazioni di bug e problemi: visita"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com"; -$a->strings["Installed plugins/addons/apps:"] = "Plugin/addon/applicazioni instalate"; -$a->strings["No installed plugins/addons/apps"] = "Nessun plugin/addons/applicazione installata"; -$a->strings["Item not found"] = "Oggetto non trovato"; -$a->strings["Edit post"] = "Modifica messaggio"; -$a->strings["Post to Email"] = "Invia a email"; -$a->strings["Edit"] = "Modifica"; -$a->strings["Upload photo"] = "Carica foto"; -$a->strings["Attach file"] = "Allega file"; -$a->strings["Insert web link"] = "Inserisci link"; -$a->strings["Insert YouTube video"] = "Inserisci video da YouTube"; -$a->strings["Insert Vorbis [.ogg] video"] = "Inserisci video Vorbis [.ogg]"; -$a->strings["Insert Vorbis [.ogg] audio"] = "Inserisci audio Vorbis [.ogg]"; -$a->strings["Set your location"] = "La tua posizione"; -$a->strings["Clear browser location"] = "Rimuovi la localizzazione data dal browser"; -$a->strings["Permission settings"] = "Impostazioni permessi"; -$a->strings["CC: email addresses"] = "CC: indirizzi email"; -$a->strings["Public post"] = "Messaggio pubblico"; -$a->strings["Set title"] = "Scegli un titolo"; -$a->strings["Categories (comma-separated list)"] = "Categorie (lista separata da virgola)"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Esempio: bob@example.com, mary@example.com"; -$a->strings["This introduction has already been accepted."] = "Questa presentazione è già stata accettata."; -$a->strings["Profile location is not valid or does not contain profile information."] = "L'indirizzo del profilo non è valido o non contiene un profilo."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario."; -$a->strings["Warning: profile location has no profile photo."] = "Attenzione: l'indirizzo del profilo non ha una foto."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d parametro richiesto non è stato trovato all'indirizzo dato", - 1 => "%d parametri richiesti non sono stati trovati all'indirizzo dato", -); -$a->strings["Introduction complete."] = "Presentazione completa."; -$a->strings["Unrecoverable protocol error."] = "Errore di comunicazione."; -$a->strings["Profile unavailable."] = "Profilo non disponibile."; -$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessione per oggi."; -$a->strings["Spam protection measures have been invoked."] = "Sono state attivate le misure di protezione contro lo spam."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Gli amici sono pregati di riprovare tra 24 ore."; -$a->strings["Invalid locator"] = "Invalid locator"; -$a->strings["Invalid email address."] = "Indirizzo email non valido."; -$a->strings["This account has not been configured for email. Request failed."] = ""; -$a->strings["Unable to resolve your name at the provided location."] = "Impossibile risolvere il tuo nome nella posizione indicata."; -$a->strings["You have already introduced yourself here."] = "Ti sei già presentato qui."; -$a->strings["Apparently you are already friends with %s."] = "Pare che tu e %s siate già amici."; -$a->strings["Invalid profile URL."] = "Indirizzo profilo non valido."; -$a->strings["Disallowed profile URL."] = "Indirizzo profilo non permesso."; -$a->strings["Failed to update contact record."] = "Errore nell'aggiornamento del contatto."; -$a->strings["Your introduction has been sent."] = "La tua presentazione è stata inviata."; -$a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo."; -$a->strings["Hide this contact"] = ""; -$a->strings["Welcome home %s."] = "Bentornato a casa %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Conferma la tua richiesta di connessione con %s."; -$a->strings["Confirm"] = "Conferma"; -$a->strings["[Name Withheld]"] = "[Nome Nascosto]"; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:"; -$a->strings["Connect as an email follower (Coming soon)"] = "Connetti un email come follower (in arrivo)"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi"; -$a->strings["Friend/Connection Request"] = "Richieste di amicizia/connessione"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Rispondi:"; -$a->strings["Does %s know you?"] = "%s ti conosce?"; -$a->strings["Add a personal note:"] = "Aggiungi una nota personale:"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora."; -$a->strings["Your Identity Address:"] = "L'indirizzo della tua identità:"; -$a->strings["Submit Request"] = "Invia richiesta"; -$a->strings["Friendica Social Communications Server - Setup"] = "Friendica Social Communications Server - Setup"; -$a->strings["Could not connect to database."] = " Impossibile collegarsi con il database."; +$a->strings["You must be logged in to see this page."] = "Devi aver effettuato l'accesso per vedere questa pagina."; +$a->strings["No installed applications."] = "Nessuna app installata."; +$a->strings["Applications"] = "Applicazioni"; +$a->strings["Invalid item."] = "Elemento non valido."; +$a->strings["Channel not found."] = "Canale non trovato."; +$a->strings["Item not available."] = "Elemento non disponibile."; +$a->strings["Red Matrix Server - Setup"] = "Red Matrix Server - Installazione"; +$a->strings["Could not connect to database."] = " Impossibile connettersi al database."; +$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS."; $a->strings["Could not create table."] = "Impossibile creare le tabelle."; -$a->strings["Your Friendica site database has been installed."] = "Il tuo Friendica è stato installato."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql"; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Leggi il file \"INSTALL.txt\"."; -$a->strings["System check"] = "Controllo sistema"; -$a->strings["Check again"] = "Controlla ancora"; +$a->strings["Your site database has been installed."] = "Il database del sito è stato installato."; +$a->strings["You may need to import the file \"install/database.sql\" manually using phpmyadmin or mysql."] = "Potresti dover importare il file 'install/database.sql' manualmente usando phpmyadmin o mysql."; +$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Leggi il file 'install/INSTALL.txt'."; +$a->strings["System check"] = "Verifica del sistema"; +$a->strings["Check again"] = "Verifica di nuovo"; $a->strings["Database connection"] = "Connessione al database"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Per installare Friendica dobbiamo sapere come collegarci al tuo database."; +$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "Per installare Red Matrix è necessario conoscere i parametri di connessione al database."; $a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Il database dovrà già esistere. Se non esiste, crealo prima di continuare."; -$a->strings["Database Server Name"] = "Nome del database server"; -$a->strings["Database Login Name"] = "Nome utente database"; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Il database deve già esistere. Se non esiste, crealo prima di continuare."; +$a->strings["Database Server Name"] = "Server del database"; +$a->strings["Default is localhost"] = "'localhost' è il predefinito"; +$a->strings["Database Port"] = "Port del database"; +$a->strings["Communication port number - use 0 for default"] = "Scrivi 0 per usare il valore standard"; +$a->strings["Database Login Name"] = "Utente database"; $a->strings["Database Login Password"] = "Password utente database"; $a->strings["Database Name"] = "Nome database"; $a->strings["Site administrator email address"] = "Indirizzo email dell'amministratore del sito"; $a->strings["Your account email address must match this in order to use the web admin panel."] = "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web."; +$a->strings["Website URL"] = "URL completo del sito"; +$a->strings["Please use SSL (https) URL if available."] = "Se disponibile, usa l'indirizzo SSL (https)."; $a->strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo sito web"; -$a->strings["Site settings"] = "Impostazioni sito"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web"; -$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Activating scheduled tasks'"] = ""; -$a->strings["PHP executable path"] = "Percorso eseguibile PHP"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = ""; +$a->strings["Site settings"] = "Impostazioni del sito"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web"; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron."; +$a->strings["PHP executable path"] = "Path del comando PHP"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione."; $a->strings["Command line PHP"] = "PHP da riga di comando"; $a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."; -$a->strings["This is required for message delivery to work."] = "E' obbligatorio per far funzionare la consegna dei messaggi."; +$a->strings["This is required for message delivery to work."] = "E' necessario perché funzioni la consegna dei messaggi."; $a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di criptazione"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."; $a->strings["Generate encryption keys"] = "Genera chiavi di criptazione"; $a->strings["libCurl PHP module"] = "modulo PHP libCurl"; $a->strings["GD graphics PHP module"] = "modulo PHP GD graphics"; $a->strings["OpenSSL PHP module"] = "modulo PHP OpenSSL"; $a->strings["mysqli PHP module"] = "modulo PHP mysqli"; $a->strings["mb_string PHP module"] = "modulo PHP mb_string"; -$a->strings["Apache mod_rewrite module"] = ""; +$a->strings["mcrypt PHP module"] = "modulo PHP mcrypt"; +$a->strings["Apache mod_rewrite module"] = "modulo Apache mod_rewrite"; $a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato"; +$a->strings["proc_open"] = "proc_open"; +$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini"; $a->strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto ma non installato."; $a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato."; $a->strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto ma non installato."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Errore: il modulo mysqli di PHP è richiesto ma non installato"; +$a->strings["Error: mysqli PHP module required but not installed."] = "Errore: il modulo mysqli di PHP è richiesto ma non installato."; $a->strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto ma non installato."; +$a->strings["Error: mcrypt PHP module required but not installed."] = "Errore: il modulo PHP mcrypt è richiesto ma non installato."; $a->strings["The web installer needs to be able to create a file called \".htconfig.php\ in the top folder of your web server and it is unable to do so."] = "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo."; -$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server puo' scrivere il file nella tua cartella, anche se tu puoi."; -$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = ""; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = ""; +$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di Red."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni."; $a->strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = ""; -$a->strings["Url rewrite is working"] = ""; -$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito."; +$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/tpl/smarty3/ under the Red top level folder."] = "Per poter memorizzare i template compilati, il web server deve avere accesso in scrittura alla cartella view/tpl/smarty3/ sotto la cartella di installazione di Red."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Assicurati che il tuo web server sia in esecuzione come un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)."; +$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."] = "Nota bene: come precauzione, dovresti dare i diritti di scrittura solamente per view/tpl/smarty3/ non per tutti i file di template (.tpl) che contiene."; +$a->strings["view/tpl/smarty3 is writable"] = "view/tpl/smarty3 è scrivibile"; +$a->strings["SSL certificate validation"] = "Validazione del certificato SSL"; +$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito."; +$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."; +$a->strings["Url rewrite is working"] = "Url rewrite funziona correttamente"; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito."; $a->strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; -$a->strings["

    What next

    "] = ""; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller."; -$a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; -$a->strings["Time Conversion"] = "Conversione Ora"; -$a->strings["Friendika provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendika fornisce questo servizio per la condivisione di eventi con altre reti e contatti in fusi orari sconosciuti."; -$a->strings["UTC time: %s"] = "Ora UTC: %s"; -$a->strings["Current timezone: %s"] = "Fuso orario corrente: %s"; -$a->strings["Converted localtime: %s"] = "Ora locale convertita: %s"; -$a->strings["Please select your timezone:"] = "Selezionare il tuo fuso orario:"; -$a->strings["Poke/Prod"] = ""; -$a->strings["poke, prod or do other things to somebody"] = ""; -$a->strings["Recipient"] = ""; -$a->strings["Choose what you wish to do to recipient"] = ""; -$a->strings["Make this post private"] = ""; -$a->strings["Profile Match"] = "Profili corrispondenti"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito."; -$a->strings["is interested in:"] = "è interessato a:"; -$a->strings["Connect"] = "Connetti"; -$a->strings["No matches"] = "Nessun risultato"; -$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili."; -$a->strings["Visible to:"] = "Visibile a:"; -$a->strings["No such group"] = "Nessun gruppo"; -$a->strings["Group is empty"] = "Il gruppo è vuoto"; -$a->strings["Group: "] = "Gruppo: "; -$a->strings["Select"] = "Seleziona"; -$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; -$a->strings["%s from %s"] = "%s da %s"; -$a->strings["View in context"] = "Vedi nel contesto"; -$a->strings["%d comment"] = array( - 0 => "%d commento", - 1 => "%d commenti", -); -$a->strings["comment"] = array( - 0 => "", - 1 => "commento", -); -$a->strings["show more"] = "mostra di più"; -$a->strings["like"] = "mi piace"; -$a->strings["dislike"] = "non mi piace"; -$a->strings["Share this"] = "Condividi questo"; -$a->strings["share"] = "condividi"; -$a->strings["Bold"] = ""; -$a->strings["Italic"] = ""; -$a->strings["Underline"] = ""; -$a->strings["Quote"] = ""; -$a->strings["Code"] = ""; -$a->strings["Image"] = ""; -$a->strings["Link"] = ""; -$a->strings["Video"] = ""; -$a->strings["add star"] = "aggiungi a speciali"; -$a->strings["remove star"] = "rimuovi da speciali"; -$a->strings["toggle star status"] = "Inverti stato preferito"; -$a->strings["starred"] = "preferito"; -$a->strings["add tag"] = "aggiungi tag"; -$a->strings["save to folder"] = "salva nella cartella"; -$a->strings["to"] = "a"; -$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca"; -$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca"; -$a->strings["Welcome to %s"] = "Benvenuto su %s"; -$a->strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido."; -$a->strings["Discard"] = "Scarta"; -$a->strings["Ignore"] = "Ignora"; -$a->strings["System"] = "Sistema"; -$a->strings["Network"] = "Rete"; -$a->strings["Personal"] = "Personale"; -$a->strings["Home"] = "Home"; -$a->strings["Introductions"] = "Presentazioni"; -$a->strings["Messages"] = "Messaggi"; -$a->strings["Show Ignored Requests"] = "Mostra richieste ignorate"; -$a->strings["Hide Ignored Requests"] = "Nascondi richieste ignorate"; -$a->strings["Notification type: "] = "Tipo di notifica: "; -$a->strings["Friend Suggestion"] = "Amico suggerito"; -$a->strings["suggested by %s"] = "sugerito da %s"; -$a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri"; -$a->strings["Post a new friend activity"] = "Invia una attività \"è ora amico con\""; -$a->strings["if applicable"] = "se applicabile"; -$a->strings["Approve"] = "Approva"; -$a->strings["Claims to be known to you: "] = "Dice di conoscerti: "; -$a->strings["yes"] = "si"; -$a->strings["no"] = "no"; -$a->strings["Approve as: "] = "Approva come: "; -$a->strings["Friend"] = "Amico"; -$a->strings["Sharer"] = "Condivisore"; -$a->strings["Fan/Admirer"] = "Fan/Ammiratore"; -$a->strings["Friend/Connect Request"] = "Richiesta amicizia/connessione"; -$a->strings["New Follower"] = "Qualcuno inizia a seguirti"; -$a->strings["No introductions."] = "Nessuna presentazione."; -$a->strings["Notifications"] = "Notifiche"; -$a->strings["%s liked %s's post"] = "a %s è piaciuto il messaggio di %s"; -$a->strings["%s disliked %s's post"] = "a %s non è piaciuto il messaggio di %s"; -$a->strings["%s is now friends with %s"] = "%s è ora amico di %s"; -$a->strings["%s created a new post"] = "%s a creato un nuovo messaggio"; -$a->strings["%s commented on %s's post"] = "%s ha commentato il messaggio di %s"; -$a->strings["No more network notifications."] = "Nessuna nuova."; -$a->strings["Network Notifications"] = "Notifiche dalla rete"; -$a->strings["No more system notifications."] = "Nessuna nuova notifica di sistema."; -$a->strings["System Notifications"] = "Notifiche di sistema"; -$a->strings["No more personal notifications."] = "Nessuna nuova."; -$a->strings["Personal Notifications"] = "Notifiche personali"; -$a->strings["No more home notifications."] = "Nessuna nuova."; -$a->strings["Home Notifications"] = "Notifiche bacheca"; -$a->strings["Could not access contact record."] = "Non è possibile accedere al contatto."; -$a->strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; -$a->strings["Contact updated."] = "Contatto aggiornato."; -$a->strings["Contact has been blocked"] = "Il contatto è stato bloccato"; -$a->strings["Contact has been unblocked"] = "Il contatto è stato sbloccato"; -$a->strings["Contact has been ignored"] = "Il contatto è ignorato"; -$a->strings["Contact has been unignored"] = "Il contatto non è più ignorato"; -$a->strings["Contact has been archived"] = ""; -$a->strings["Contact has been unarchived"] = ""; -$a->strings["Contact has been removed."] = "Il contatto è stato rimosso."; -$a->strings["You are mutual friends with %s"] = "Sei amico reciproco con %s"; -$a->strings["You are sharing with %s"] = "Stai condividendo con %s"; -$a->strings["%s is sharing with you"] = "%s sta condividendo con te"; -$a->strings["Private communications are not available for this contact."] = "Le comunicazioni private non sono disponibili per questo contatto."; -$a->strings["Never"] = "Mai"; -$a->strings["(Update was successful)"] = "(L'aggiornamento è stato completato)"; -$a->strings["(Update was not successful)"] = "(L'aggiornamento non è stato completato)"; -$a->strings["Suggest friends"] = "Suggerisci amici"; -$a->strings["Network type: %s"] = "Tipo di rete: %s"; -$a->strings["%d contact in common"] = array( - 0 => "%d contatto in comune", - 1 => "%d contatti in comune", -); -$a->strings["View all contacts"] = "Vedi tutti i contatti"; -$a->strings["Unblock"] = "Sblocca"; -$a->strings["Block"] = "Blocca"; -$a->strings["Toggle Blocked status"] = ""; -$a->strings["Unignore"] = "Non ignorare"; -$a->strings["Toggle Ignored status"] = ""; -$a->strings["Unarchive"] = ""; -$a->strings["Archive"] = ""; -$a->strings["Toggle Archive status"] = ""; -$a->strings["Repair"] = "Ripara"; -$a->strings["Advanced Contact Settings"] = ""; -$a->strings["Communications lost with this contact!"] = ""; -$a->strings["Contact Editor"] = "Editor dei Contatti"; -$a->strings["Profile Visibility"] = "Visibilità del profilo"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro."; -$a->strings["Contact Information / Notes"] = "Informazioni / Note sul contatto"; -$a->strings["Edit contact notes"] = "Modifica note contatto"; -$a->strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; -$a->strings["Block/Unblock contact"] = "Blocca/Sblocca contatto"; -$a->strings["Ignore contact"] = "Ignora il contatto"; -$a->strings["Repair URL settings"] = "Impostazioni riparazione URL"; -$a->strings["View conversations"] = "Vedi conversazioni"; -$a->strings["Delete contact"] = "Rimuovi contatto"; -$a->strings["Last update:"] = "Ultimo aggiornamento:"; -$a->strings["Update public posts"] = "Aggiorna messaggi pubblici"; -$a->strings["Update now"] = "Aggiorna adesso"; -$a->strings["Currently blocked"] = "Bloccato"; -$a->strings["Currently ignored"] = "Ignorato"; -$a->strings["Currently archived"] = ""; -$a->strings["Replies/likes to your public posts may still be visible"] = "Risposte ai tuoi post pubblici possono essere comunque visibili"; -$a->strings["Suggestions"] = "Suggerimenti"; -$a->strings["Suggest potential friends"] = ""; -$a->strings["All Contacts"] = "Tutti i contatti"; -$a->strings["Show all contacts"] = ""; -$a->strings["Unblocked"] = ""; -$a->strings["Only show unblocked contacts"] = ""; -$a->strings["Blocked"] = ""; -$a->strings["Only show blocked contacts"] = ""; -$a->strings["Ignored"] = ""; -$a->strings["Only show ignored contacts"] = ""; -$a->strings["Archived"] = ""; -$a->strings["Only show archived contacts"] = ""; -$a->strings["Hidden"] = ""; -$a->strings["Only show hidden contacts"] = ""; -$a->strings["Mutual Friendship"] = "Amicizia reciproca"; -$a->strings["is a fan of yours"] = "è un tuo fan"; -$a->strings["you are a fan of"] = "sei un fan di"; -$a->strings["Edit contact"] = "Modifca contatto"; -$a->strings["Contacts"] = "Contatti"; -$a->strings["Search your contacts"] = "Cerca nei tuoi contatti"; -$a->strings["Finding: "] = "Ricerca: "; -$a->strings["Find"] = "Trova"; -$a->strings["No valid account found."] = "Nessun account valido trovato."; -$a->strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; -$a->strings["Password reset requested at %s"] = "Richiesta reimpostazione password su %s"; -$a->strings["Administrator"] = "Amministratore"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita."; -$a->strings["Password Reset"] = "Reimpostazione password"; -$a->strings["Your password has been reset as requested."] = "La tua password è stata reimpostata come richiesto."; -$a->strings["Your new password is"] = "La tua nuova password è"; -$a->strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi"; -$a->strings["click here to login"] = "clicca qui per entrare"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso."; -$a->strings["Forgot your Password?"] = "Hai dimenticato la password?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password."; -$a->strings["Nickname or Email: "] = "Nome utente o email: "; -$a->strings["Reset"] = "Reimposta"; -$a->strings["Account settings"] = "Parametri account"; +$a->strings["

    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["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; +$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; +$a->strings["toggle full screen mode"] = "attiva/disattiva schermo intero"; +$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["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["Connector settings"] = "Impostazioni connettori"; -$a->strings["Plugin settings"] = "Impostazioni plugin"; -$a->strings["Connected apps"] = ""; -$a->strings["Export personal data"] = "Esporta dati personali"; -$a->strings["Remove account"] = ""; -$a->strings["Settings"] = "Impostazioni"; -$a->strings["Missing some important data!"] = "Mancano alcuni dati importanti!"; +$a->strings["Connected apps"] = "App connesse"; +$a->strings["Export channel"] = "Esporta il canale"; +$a->strings["Automatic Permissions (Advanced)"] = "Permessi predefiniti (avanzato)"; +$a->strings["Missing some important data!"] = "Mancano alcune informazioni importanti!"; $a->strings["Update"] = "Aggiorna"; -$a->strings["Failed to connect with email account using the settings provided."] = "Impossibile collegarsi all'account email con i parametri forniti."; -$a->strings["Email settings updated."] = "Impostazioni e-mail aggiornate."; $a->strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata."; $a->strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata."; $a->strings["Password changed."] = "Password cambiata."; $a->strings["Password update failed. Please try again."] = "Aggiornamento password fallito. Prova ancora."; -$a->strings[" Please use a shorter name."] = " Usa un nome più corto."; -$a->strings[" Name too short."] = " Nome troppo corto."; -$a->strings[" Not valid email."] = " Email non valida."; -$a->strings[" Cannot change to that email."] = "Non puoi usare quella email."; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = ""; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = ""; +$a->strings["Not valid email."] = "Email non valida."; +$a->strings["Protected email address. Cannot change to that email."] = "È un indirizzo email riservato. Non puoi sceglierlo."; +$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 applicazione"; +$a->strings["Add application"] = "Aggiungi una app"; +$a->strings["Cancel"] = "Annulla"; +$a->strings["Name"] = "Nome"; $a->strings["Consumer Key"] = "Consumer Key"; $a->strings["Consumer Secret"] = "Consumer Secret"; $a->strings["Redirect"] = "Redirect"; $a->strings["Icon url"] = "Url icona"; $a->strings["You can't edit this application."] = "Non puoi modificare questa applicazione."; -$a->strings["Connected Apps"] = "Applicazioni Collegate"; -$a->strings["Client key starts with"] = "Chiave del client inizia con"; +$a->strings["Connected Apps"] = "App connesse"; +$a->strings["Client key starts with"] = "La client key inizia con"; $a->strings["No name"] = "Nessun nome"; -$a->strings["Remove authorization"] = "Rimuovi l'autorizzazione"; -$a->strings["No Plugin settings configured"] = "Nessun plugin ha impostazioni modificabili"; -$a->strings["Plugin Settings"] = "Impostazioni plugin"; -$a->strings["Built-in support for %s connectivity is %s"] = "Il supporto integrato per la connettività con %s è %s"; -$a->strings["enabled"] = "abilitato"; -$a->strings["disabled"] = "disabilitato"; -$a->strings["StatusNet"] = "StatusNet"; -$a->strings["Email access is disabled on this site."] = "L'accesso email è disabilitato su questo sito."; -$a->strings["Connector Settings"] = "Impostazioni Connettore"; -$a->strings["Email/Mailbox Setup"] = "Impostazioni email"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)"; -$a->strings["Last successful email check:"] = "Ultimo controllo email eseguito con successo:"; -$a->strings["IMAP server name:"] = "Nome server IMAP:"; -$a->strings["IMAP port:"] = "Porta IMAP:"; -$a->strings["Security:"] = "Sicurezza:"; -$a->strings["None"] = "Nessuna"; -$a->strings["Email login name:"] = "Nome utente email:"; -$a->strings["Email password:"] = "Password email:"; -$a->strings["Reply-to address:"] = "Indirizzo di risposta:"; -$a->strings["Send public posts to all email contacts:"] = "Invia i messaggi pubblici ai contatti email:"; -$a->strings["Action after import:"] = "Azione post importazione:"; -$a->strings["Mark as seen"] = "Segna come letto"; -$a->strings["Move to folder"] = "Sposta nella cartella"; -$a->strings["Move to folder:"] = "Sposta nella cartella:"; -$a->strings["No special theme for mobile devices"] = ""; -$a->strings["Display Settings"] = "Impostazioni Grafiche"; -$a->strings["Display Theme:"] = "Tema:"; -$a->strings["Mobile Theme:"] = ""; +$a->strings["Remove authorization"] = "Revoca l'autorizzazione"; +$a->strings["No feature settings configured"] = "Non ci sono funzionalità aggiuntive personalizzabili"; +$a->strings["Feature Settings"] = "Impostazioni aggiuntive"; +$a->strings["Account Settings"] = "Impostazioni account"; +$a->strings["Password Settings"] = "Impostazioni password"; +$a->strings["New Password:"] = "Nuova password:"; +$a->strings["Confirm:"] = "Conferma:"; +$a->strings["Leave password fields blank unless changing"] = "Lascia questi campi in bianco per non cambiare la password"; +$a->strings["Email Address:"] = "Indirizzo email:"; +$a->strings["Remove Account"] = "Elimina l'account"; +$a->strings["Warning: This action is permanent and cannot be reversed."] = "Attenzione: questa azione è permanente e non potrà più essere annullata."; +$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:"; $a->strings["Update browser every xx seconds"] = "Aggiorna il browser ogni x secondi"; $a->strings["Minimum of 10 seconds, no maximum"] = "Minimo 10 secondi, nessun limite massimo"; -$a->strings["Number of items to display per page:"] = ""; -$a->strings["Maximum of 100 items"] = "Massimo 100 voci"; +$a->strings["Maximum number of conversations to load at any time:"] = "Massimo numero di conversazioni da mostrare ogni volta:"; +$a->strings["Maximum of 100 items"] = "Massimo 100"; $a->strings["Don't show emoticons"] = "Non mostrare le emoticons"; -$a->strings["Normal Account Page"] = ""; -$a->strings["This account is a normal personal profile"] = "Questo account è un normale profilo personale"; -$a->strings["Soapbox Page"] = ""; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà solamente leggere la bacheca"; -$a->strings["Community Forum/Celebrity Account"] = ""; -$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà leggere e scrivere sulla bacheca"; -$a->strings["Automatic Friend Page"] = ""; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico"; -$a->strings["Private Forum [Experimental]"] = ""; -$a->strings["Private forum - approved members only"] = ""; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opzionale) Consente di loggarti in questo account con questo OpenID"; -$a->strings["Publish your default profile in your local site directory?"] = "Pubblica il tuo profilo predefinito nell'elenco locale del sito"; -$a->strings["Publish your default profile in the global social directory?"] = "Pubblica il tuo profilo predefinito nell'elenco sociale globale"; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito"; -$a->strings["Hide your profile details from unknown viewers?"] = "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?"; -$a->strings["Allow friends to post to your profile page?"] = "Permetti agli amici di scrivere sulla tua pagina profilo?"; -$a->strings["Allow friends to tag your posts?"] = "Permetti agli amici di taggare i tuoi messaggi?"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Ci permetti di suggerirti come potenziale amico ai nuovi membri?"; -$a->strings["Permit unknown people to send you private mail?"] = "Permetti a utenti sconosciuti di inviarti messaggi privati?"; -$a->strings["Profile is not published."] = "Il profilo non è pubblicato."; +$a->strings["Nobody except yourself"] = "Nessuno tranne te"; +$a->strings["Only those you specifically allow"] = "Solo chi riceve il mio permesso"; +$a->strings["Anybody in your address book"] = "Chiunque tra i miei contatti"; +$a->strings["Anybody on this website"] = "Chiunque su questo sito"; +$a->strings["Anybody in this network"] = "Chiunque su Red"; +$a->strings["Anybody on the internet"] = "Chiunque su internet"; +$a->strings["Publish your default profile in the network directory"] = "Pubblica il mio profilo predefinito sull'elenco pubblico"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Vuoi essere suggerito come potenziale amico ai nuovi membri?"; $a->strings["or"] = "o"; -$a->strings["Your Identity Address is"] = "L'indirizzo della tua identità è"; -$a->strings["Automatically expire posts after this many days:"] = "Fai scadere i post automaticamente dopo x giorni:"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Se lasciato vuoto, i messaggi non verranno cancellati."; +$a->strings["Your channel address is"] = "L'indirizzo del tuo canale è"; +$a->strings["Automatically expire posts after this many days:"] = "Gli articoli scadono automaticamente dopo questo numero di giorni:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Se lasci vuoto, i messaggi non scadranno mai. I messaggi scaduti saranno eliminati."; $a->strings["Advanced expiration settings"] = "Impostazioni avanzate di scandenza"; -$a->strings["Advanced Expiration"] = "Scadenza avanzata"; -$a->strings["Expire posts:"] = "Fai scadere i post:"; -$a->strings["Expire personal notes:"] = "Fai scadere le Note personali:"; -$a->strings["Expire starred posts:"] = "Fai scadere i post Speciali:"; +$a->strings["Advanced Expiration"] = "Scadenza"; +$a->strings["Expire posts:"] = "Fai scadere gli articoli:"; +$a->strings["Expire starred posts:"] = "Fai scadere gli articoli preferiti:"; $a->strings["Expire photos:"] = "Fai scadere le foto:"; -$a->strings["Only expire posts by others:"] = ""; -$a->strings["Account Settings"] = "Impostazioni account"; -$a->strings["Password Settings"] = "Impostazioni password"; -$a->strings["New Password:"] = "Nuova password:"; -$a->strings["Confirm:"] = "Conferma:"; -$a->strings["Leave password fields blank unless changing"] = "Lascia questi campi in bianco per non effettuare variazioni alla password"; -$a->strings["Basic Settings"] = "Impostazioni base"; -$a->strings["Full Name:"] = "Nome completo:"; -$a->strings["Email Address:"] = "Indirizzo Email:"; +$a->strings["Only expire posts by others:"] = "Fai scadere solo gli articoli scritti da altri:"; +$a->strings["Channel Settings"] = "Impostazioni del canale"; +$a->strings["Basic Settings"] = "Impostazioni di base"; $a->strings["Your Timezone:"] = "Il tuo fuso orario:"; $a->strings["Default Post Location:"] = "Località predefinita:"; $a->strings["Use Browser Location:"] = "Usa la località rilevata dal browser:"; $a->strings["Security and Privacy Settings"] = "Impostazioni di sicurezza e privacy"; -$a->strings["Maximum Friend Requests/Day:"] = "Numero massimo di richieste di amicizia al giorno:"; -$a->strings["(to prevent spam abuse)"] = "(per prevenire lo spam)"; -$a->strings["Default Post Permissions"] = "Permessi predefiniti per i messaggi"; +$a->strings["Quick Privacy Settings:"] = "Impostazioni veloci della privacy:"; +$a->strings["Very Public - extremely permissive"] = "Tutto pubblico - molto permissivo"; +$a->strings["Typical - default public, privacy when desired"] = "Normale - tutto sarà pubblico tranne quel che vorrai tu"; +$a->strings["Private - default private, rarely open or public"] = "Privato - i contenuti saranno privati ma, se vorrai, alcuni potrai renderli pubblici"; +$a->strings["Blocked - default blocked to/from everybody"] = "Bloccato - non ci saranno interazioni con altri a meno che tu non voglia"; +$a->strings["Maximum Friend Requests/Day:"] = "Numero massimo giornaliero di richieste di amicizia:"; +$a->strings["May reduce spam activity"] = "Serve e ridurre lo spam"; +$a->strings["Default Post Permissions"] = "Permessi predefiniti per gli articoli"; $a->strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; -$a->strings["Maximum private messages per day from unknown people:"] = "Numero massimo di messaggi privati da utenti sconosciuti per giorno:"; -$a->strings["Notification Settings"] = "Impostazioni notifiche"; -$a->strings["By default post a status message when:"] = ""; -$a->strings["accepting a friend request"] = ""; -$a->strings["joining a forum/community"] = ""; -$a->strings["making an interesting profile change"] = ""; -$a->strings["Send a notification email when:"] = "Invia una mail di notifica quando:"; -$a->strings["You receive an introduction"] = "Ricevi una presentazione"; -$a->strings["Your introductions are confirmed"] = "Le tue presentazioni sono confermate"; -$a->strings["Someone writes on your profile wall"] = "Qualcuno scrive sulla bacheca del tuo profilo"; -$a->strings["Someone writes a followup comment"] = "Qualcuno scrive un commento a un tuo messaggio"; +$a->strings["Maximum private messages per day from unknown people:"] = "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:"; +$a->strings["Useful to reduce spamming"] = "Serve e ridurre lo spam"; +$a->strings["Notification Settings"] = "Impostazioni di notifica"; +$a->strings["By default post a status message when:"] = "Pubblica un messaggio di stato quando:"; +$a->strings["accepting a friend request"] = "accetto una nuova amicizia"; +$a->strings["joining a forum/community"] = "entro a far parte di un forum"; +$a->strings["making an interesting profile change"] = "faccio un cambiamento interessante al mio profilo"; +$a->strings["Send a notification email when:"] = "Invia una email di notifica quando:"; +$a->strings["You receive an introduction"] = "Ricevi una richiesta di amicizia"; +$a->strings["Your introductions are confirmed"] = "Le tue richieste di amicizia sono state accettate"; +$a->strings["Someone writes on your profile wall"] = "Qualcuno scrive sulla tua bacheca"; +$a->strings["Someone writes a followup comment"] = "Qualcuno scrive un commento a un tuo articolo"; $a->strings["You receive a private message"] = "Ricevi un messaggio privato"; -$a->strings["You receive a friend suggestion"] = "Hai ricevuto un suggerimento di amicizia"; -$a->strings["You are tagged in a post"] = "Sei stato taggato in un post"; -$a->strings["You are poked/prodded/etc. in a post"] = ""; -$a->strings["Advanced Account/Page Type Settings"] = ""; -$a->strings["Change the behaviour of this account for special situations"] = ""; -$a->strings["Manage Identities and/or Pages"] = "Gestisci indentità e/o pagine"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione"; -$a->strings["Select an identity to manage: "] = "Seleziona un'identità da gestire:"; -$a->strings["Search Results For:"] = "Cerca risultati per:"; -$a->strings["Remove term"] = "Rimuovi termine"; -$a->strings["Saved Searches"] = "Ricerche salvate"; -$a->strings["add"] = "aggiungi"; -$a->strings["Commented Order"] = "Ordina per commento"; -$a->strings["Sort by Comment Date"] = ""; -$a->strings["Posted Order"] = "Ordina per invio"; -$a->strings["Sort by Post Date"] = ""; -$a->strings["Posts that mention or involve you"] = ""; -$a->strings["New"] = "Nuovo"; -$a->strings["Activity Stream - by date"] = ""; -$a->strings["Starred"] = "Preferiti"; -$a->strings["Favourite Posts"] = ""; -$a->strings["Shared Links"] = "Links condivisi"; -$a->strings["Interesting Links"] = ""; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Attenzione: questo gruppo contiene %s membro da un network insicuro.", - 1 => "Attenzione: questo gruppo contiene %s membri da un network insicuro.", -); -$a->strings["Private messages to this group are at risk of public disclosure."] = "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente."; -$a->strings["Contact: "] = "Contatto:"; -$a->strings["Private messages to this person are at risk of public disclosure."] = "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente."; -$a->strings["Invalid contact."] = "Contatto non valido."; -$a->strings["Personal Notes"] = "Note personali"; -$a->strings["Save"] = "Salva"; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Numero giornaliero di messaggi per %s superato. Invio fallito."; -$a->strings["No recipient selected."] = "Nessun destinatario selezionato."; -$a->strings["Unable to check your home location."] = ""; -$a->strings["Message could not be sent."] = "Il messaggio non puo' essere inviato."; -$a->strings["Message collection failure."] = "Errore recuperando il messaggio."; -$a->strings["Message sent."] = "Messaggio inviato."; -$a->strings["No recipient."] = "Nessun destinatario."; -$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; -$a->strings["Send Private Message"] = "Invia un messaggio privato"; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti."; -$a->strings["To:"] = "A:"; -$a->strings["Subject:"] = "Oggetto:"; -$a->strings["Your message:"] = "Il tuo messaggio:"; -$a->strings["Welcome to Friendica"] = "Benvenuto su Friendica"; -$a->strings["New Member Checklist"] = "Cose da fare per i Nuovi Utenti"; -$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione."; -$a->strings["Getting Started"] = ""; -$a->strings["Friendica Walk-Through"] = ""; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = ""; -$a->strings["Go to Your Settings"] = ""; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Nella tua pagina Impostazioni - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero."; -$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti."; -$a->strings["Profile"] = "Profilo"; -$a->strings["Upload Profile Photo"] = "Carica la foto del profilo"; -$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno."; -$a->strings["Edit Your Profile"] = ""; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Modifica il tuo profilo predefinito a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti."; -$a->strings["Profile Keywords"] = ""; -$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie."; -$a->strings["Connecting"] = ""; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Sestrings["Importing Emails"] = ""; -$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo"; -$a->strings["Go to Your Contacts Page"] = ""; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo Aggiungi Nuovo Contatto"; -$a->strings["Go to Your Site's Directory"] = ""; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link Connetti o Segui nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto."; -$a->strings["Finding New People"] = ""; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore."; -$a->strings["Groups"] = "Grouppi"; -$a->strings["Group Your Contacts"] = ""; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete"; -$a->strings["Why Aren't My Posts Public?"] = ""; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = ""; -$a->strings["Getting Help"] = ""; -$a->strings["Go to the Help Section"] = ""; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse."; -$a->strings["Item not available."] = "Oggetto non disponibile."; -$a->strings["Item was not found."] = "Oggetto non trovato."; -$a->strings["Group created."] = "Gruppo creato."; -$a->strings["Could not create group."] = "Impossibile creare il gruppo."; -$a->strings["Group not found."] = "Gruppo non trovato."; -$a->strings["Group name changed."] = "Il nome del gruppo è cambiato."; -$a->strings["Permission denied"] = "Permesso negato"; -$a->strings["Create a group of contacts/friends."] = "Crea un gruppo di amici/contatti."; -$a->strings["Group Name: "] = "Nome del gruppo:"; -$a->strings["Group removed."] = "Gruppo rimosso."; -$a->strings["Unable to remove group."] = "Impossibile rimuovere il gruppo."; -$a->strings["Group Editor"] = "Modifica gruppo"; -$a->strings["Members"] = "Membri"; -$a->strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo."; -$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; -$a->strings["Profile Visibility Editor"] = "Modifica visibilità del profilo"; -$a->strings["Visible To"] = "Visibile a"; -$a->strings["All Contacts (with secure profile access)"] = "Tutti i contatti (con profilo ad accesso sicuro)"; -$a->strings["No contacts."] = "Nessun contatto."; -$a->strings["View Contacts"] = "Visualizza i contatti"; -$a->strings["Registration details for %s"] = "Dettagli della registrazione di %s"; -$a->strings["Registration successful. Please check your email for further instructions."] = "Registrazione completata. Controlla la tua mail per ulteriori informazioni."; -$a->strings["Failed to send email message. Here is the message that failed."] = "Errore nell'invio del messaggio email. Questo è il messaggio non inviato."; -$a->strings["Your registration can not be processed."] = "La tua registrazione non puo' essere elaborata."; -$a->strings["Registration request at %s"] = "Richiesta di registrazione su %s"; -$a->strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte del prorietario del sito."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera."; -$a->strings["Your OpenID (optional): "] = "Il tuo OpenID (opzionale): "; -$a->strings["Include your profile in member directory?"] = "Includi il tuo profilo nell'elenco pubblico?"; -$a->strings["Membership on this site is by invitation only."] = "La registrazione su questo sito è solo su invito."; -$a->strings["Your invitation ID: "] = "L'ID del tuo invito:"; -$a->strings["Registration"] = "Registrazione"; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Il tuo nome completo (es. Mario Rossi): "; -$a->strings["Your Email Address: "] = "Il tuo indirizzo email: "; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@\$sitename'."; -$a->strings["Choose a nickname: "] = "Scegli un nome utente: "; -$a->strings["Register"] = "Registrati"; +$a->strings["You receive a friend suggestion"] = "Ti viene suggerito un amico"; +$a->strings["You are tagged in a post"] = "Sei taggato in un articolo"; +$a->strings["You are poked/prodded/etc. in a post"] = "Ricevi un poke in un articolo"; +$a->strings["Advanced Account/Page Type Settings"] = "Impostazioni avanzate"; +$a->strings["Change the behaviour of this account for special situations"] = "Cambia il funzionamento di questo account in situazioni particolari"; +$a->strings["Public access denied."] = "Accesso pubblico negato."; +$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["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["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["Age: "] = "Età:"; +$a->strings["Gender: "] = "Sesso:"; +$a->strings["Finding:"] = "Cerca:"; +$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["People Search"] = "Cerca persone"; -$a->strings["status"] = "stato"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; -$a->strings["Item not found."] = "Elemento non trovato."; -$a->strings["Access denied."] = "Accesso negato."; -$a->strings["Photos"] = "Foto"; -$a->strings["Files"] = ""; -$a->strings["Account approved."] = "Account approvato."; -$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s"; -$a->strings["Please login."] = "Accedi."; -$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; -$a->strings["Empty post discarded."] = "Messaggio vuoto scartato."; -$a->strings["Wall Photos"] = "Foto della bacheca"; -$a->strings["System error. Post not saved."] = "Errore di sistema. Messaggio non salvato."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica."; -$a->strings["You may visit them online at %s"] = "Puoi visitarli online su %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi."; -$a->strings["%s posted an update."] = "%s ha inviato un aggiornamento."; -$a->strings["%1\$s is currently %2\$s"] = ""; -$a->strings["Mood"] = ""; -$a->strings["Set your current mood and tell your friends"] = ""; -$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; -$a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente."; -$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine"; -$a->strings["Image exceeds size limit of %d"] = "La dimensione dell'immagine supera il limite di %d"; -$a->strings["Upload File:"] = "Carica un file:"; -$a->strings["Select a profile:"] = ""; -$a->strings["Upload"] = "Carica"; -$a->strings["skip this step"] = "salta questo passaggio"; -$a->strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; -$a->strings["Crop Image"] = "Ritaglia immagine"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'imagine per una visualizzazione migliore."; -$a->strings["Done Editing"] = "Finito"; -$a->strings["Image uploaded successfully."] = "Immagine caricata con successo."; -$a->strings["No profile"] = "Nessun profilo"; -$a->strings["Remove My Account"] = "Rimuovi il mio account"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo."; -$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; -$a->strings["New Message"] = "Nuovo messaggio"; -$a->strings["Unable to locate contact information."] = "Impossibile trovare le informazioni del contatto."; +$a->strings["No matches"] = "Nessun risultato"; +$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"; +$a->strings["Drop element"] = "Elimina l'elemento"; +$a->strings["New element"] = "Nuovo elemento"; +$a->strings["Edit this menu container"] = "Modifica il contenitore del menù"; +$a->strings["Add menu element"] = "Aggiungi un elemento al menù"; +$a->strings["Delete this menu item"] = "Elimina questo elemento del menù"; +$a->strings["Edit this menu item"] = "Modifica questo elemento del menù"; +$a->strings["New Menu Element"] = "Nuovo elemento del menù"; +$a->strings["Link text"] = "Testo del link"; +$a->strings["URL of link"] = "Indirizzo del link"; +$a->strings["Use Red magic-auth if available"] = "Usa l'autenticazione magica di Red, se disponibile"; +$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 vanno in fondo"; +$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["Collection created."] = "Gruppo creato."; +$a->strings["Could not create collection."] = "Impossibile creare il gruppo."; +$a->strings["Collection name changed."] = "Il nome del gruppo è stato cambiato."; +$a->strings["Create a collection of channels."] = "Crea un gruppo di canali."; +$a->strings["Collection Name: "] = "Nome del gruppo:"; +$a->strings["Members are visible to other channels"] = "I membri sono visibili agli altri canali"; +$a->strings["Collection removed."] = "Gruppo rimosso."; +$a->strings["Unable to remove collection."] = "Impossibile rimuovere il gruppo."; +$a->strings["Collection Editor"] = "Modifica il gruppo"; +$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["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"; +$a->strings["Delete Photo"] = "Elimina foto"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%3\$s ha taggato %1\$s in %2\$s"; +$a->strings["a photo"] = "una foto"; +$a->strings["No photos selected"] = "Nessuna foto selezionata"; +$a->strings["Access to this item is restricted."] = "Questo elemento non è visibile a tutti."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Hai usato %1$.2f Mb di %2$.2f Mb disponibili per le foto."; +$a->strings["You have used %1$.2f Mbytes of photo storage."] = "Hai usato %1$.2f Mb di spazio per le foto."; +$a->strings["Upload Photos"] = "Carica foto"; +$a->strings["New album name: "] = "Nome del nuovo album: "; +$a->strings["or existing album name: "] = "o nome di un album esistente: "; +$a->strings["Do not show a status post for this upload"] = "Non creare un messaggio di stato per questo caricamento"; +$a->strings["Permissions"] = "Permessi"; +$a->strings["Contact Photos"] = "Foto dei contatti"; +$a->strings["Edit Album"] = "Modifica album"; +$a->strings["Show Newest First"] = "Prima i più recenti"; +$a->strings["Show Oldest First"] = "Prima i più vecchi"; +$a->strings["View Photo"] = "Guarda la foto"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere stato limitato."; +$a->strings["Photo not available"] = "Foto non disponibile"; +$a->strings["Use as profile photo"] = "Usa come foto del profilo"; +$a->strings["View Full Size"] = "Vedi nelle dimensioni originali"; +$a->strings["Edit photo"] = "Modifica la foto"; +$a->strings["Rotate CW (right)"] = "Ruota (senso orario)"; +$a->strings["Rotate CCW (left)"] = "Ruota (senso antiorario)"; +$a->strings["New album name"] = "Nuovo nome dell'album"; +$a->strings["Caption"] = "Titolo"; +$a->strings["Add a Tag"] = "Aggiungi tag"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Per esempio: @luca, @Maria_Bianchi, @bob@example.com, #California, #camping"; +$a->strings["View Album"] = "Guarda l'album"; +$a->strings["Recent Photos"] = "Foto recenti"; +$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["g A l F d"] = "g A l d F"; +$a->strings["[today]"] = "[oggi]"; +$a->strings["posted an event"] = "ha creato un evento"; +$a->strings["- select -"] = "- scegli -"; +$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["New"] = "Novità"; +$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["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 righe di questo menù"; +$a->strings["Welcome to %s"] = "%s ti dà il benvenuto"; +$a->strings["Check Mail"] = "Controlla i messaggi"; +$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["Conversation removed."] = "Conversazione rimossa."; +$a->strings["Send Private Message"] = "Invia un messaggio privato"; +$a->strings["To:"] = "A:"; +$a->strings["Subject:"] = "Oggetto:"; $a->strings["No messages."] = "Nessun messaggio."; -$a->strings["Unknown sender - %s"] = "Mittente sconosciuto - %s"; -$a->strings["You and %s"] = "Tu e %s"; -$a->strings["%s and You"] = ""; -$a->strings["Delete conversation"] = "Elimina la conversazione"; -$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; -$a->strings["%d message"] = array( - 0 => "%d messaggio", - 1 => "%d messaggi", -); -$a->strings["Message not available."] = "Messaggio non disponibile."; $a->strings["Delete message"] = "Elimina il messaggio"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente."; +$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; +$a->strings["Message not found."] = "Messaggio non trovato."; +$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["Friends of %s"] = "Amici di %s"; -$a->strings["No friends to display."] = "Nessun amico da visualizzare."; -$a->strings["Theme settings updated."] = ""; +$a->strings["No profile"] = "Nessun profilo"; +$a->strings["Help:"] = "Guida:"; +$a->strings["Not Found"] = "Non disponibile"; +$a->strings["Page not found."] = "Pagina non trovata."; +$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["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; +$a->strings["Empty post discarded."] = "L'articolo vuoto è stato ignorato."; +$a->strings["System error. Post not saved."] = "Errore di sistema. Articolo non salvato."; +$a->strings["Wall Photos"] = "Foto della bacheca"; +$a->strings["Remove term"] = "Rimuovi termine"; +$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["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["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["Search Results For:"] = "Cerca risultati con:"; +$a->strings["No such group"] = ""; +$a->strings["Group is empty"] = ""; +$a->strings["Contact: "] = "Contatto:"; +$a->strings["Invalid contact."] = "Contatto non valido."; +$a->strings["Theme settings updated."] = "Le impostazioni del tema sono state aggiornate."; $a->strings["Site"] = "Sito"; $a->strings["Users"] = "Utenti"; $a->strings["Plugins"] = "Plugin"; $a->strings["Themes"] = "Temi"; -$a->strings["DB updates"] = ""; -$a->strings["Logs"] = "Log"; -$a->strings["Admin"] = "Amministrazione"; -$a->strings["Plugin Features"] = ""; -$a->strings["User registrations waiting for confirmation"] = "Utenti registrati in attesa di conferma"; -$a->strings["Normal Account"] = "Account normale"; -$a->strings["Soapbox Account"] = "Account per comunicati e annunci"; -$a->strings["Community/Celebrity Account"] = "Account per celebrità o per comunità"; -$a->strings["Automatic Friend Account"] = "Account per amicizia automatizzato"; -$a->strings["Blog Account"] = ""; -$a->strings["Private Forum"] = ""; -$a->strings["Message queues"] = ""; +$a->strings["DB updates"] = "Aggiornamenti al DB"; +$a->strings["Logs"] = "Log"; +$a->strings["Plugin Features"] = "Funzionalità dei componenti aggiuntivi"; +$a->strings["User registrations waiting for confirmation"] = "Utenti registrati in attesa di conferma"; +$a->strings["Message queues"] = "Coda dei messaggi"; $a->strings["Administration"] = "Amministrazione"; -$a->strings["Summary"] = "Sommario"; +$a->strings["Summary"] = "Riepilogo"; $a->strings["Registered users"] = "Utenti registrati"; $a->strings["Pending registrations"] = "Registrazioni in attesa"; $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["Closed"] = "Chiusa"; $a->strings["Requires approval"] = "Richiede l'approvazione"; $a->strings["Open"] = "Aperta"; -$a->strings["No SSL policy, links will track page SSL state"] = ""; -$a->strings["Force all links to use SSL"] = "Forza tutti i linki ad usare SSL"; -$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = ""; +$a->strings["Private"] = "Privato"; +$a->strings["Paid Access"] = "Servizio a pagamento"; +$a->strings["Free Access"] = "Servizio gratuito"; +$a->strings["No SSL policy, links will track page SSL state"] = "Nessuna politica restrittiva su SSL, i link seguiranno lo stato SSL della pagina"; +$a->strings["Force all links to use SSL"] = "Forza tutti i link ad usare SSL"; +$a->strings["Registration"] = "Registrazione"; $a->strings["File upload"] = "Caricamento file"; $a->strings["Policies"] = "Politiche"; $a->strings["Advanced"] = "Avanzate"; $a->strings["Site name"] = "Nome del sito"; -$a->strings["Banner/Logo"] = "Banner/Logo"; +$a->strings["Banner/Logo"] = "Testata o logo"; $a->strings["System language"] = "Lingua di sistema"; $a->strings["System theme"] = "Tema di sistema"; -$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = ""; -$a->strings["Mobile system theme"] = ""; -$a->strings["Theme for mobile devices"] = ""; -$a->strings["SSL link policy"] = ""; -$a->strings["Determines whether generated links should be forced to use SSL"] = ""; -$a->strings["Maximum image size"] = "Massima dimensione immagini"; +$a->strings["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["SSL link policy"] = "Politiche sui link SSL"; +$a->strings["Determines whether generated links should be forced to use SSL"] = "Determina se i link generati debbano usare esclusivamente SSL"; +$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["Maximum image length"] = ""; -$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = ""; -$a->strings["JPEG image quality"] = ""; -$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = ""; $a->strings["Register policy"] = "Politica di registrazione"; +$a->strings["Access policy"] = "Tipo di accesso"; $a->strings["Register text"] = "Testo registrazione"; $a->strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione."; $a->strings["Accounts abandoned after x days"] = "Account abbandonati dopo x giorni"; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo."; -$a->strings["Allowed friend domains"] = "Domini amici consentiti"; -$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."; +$a->strings["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 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 a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."; +$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 bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato."; -$a->strings["Force publish"] = "Forza publicazione"; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per forzare tutti i profili di questo sito ad essere compresi nell'elenco di questo sito."; -$a->strings["Global directory update URL"] = "URL aggiornamento Elenco Globale"; -$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato."; -$a->strings["Allow threaded items"] = ""; -$a->strings["Allow infinite level threading for items on this site."] = ""; -$a->strings["Private posts by default for new users"] = ""; -$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = ""; -$a->strings["Block multiple registrations"] = "Blocca registrazioni multiple"; -$a->strings["Disallow users to register additional accounts for use as pages."] = "Non permette all'utente di registrare account extra da usare come pagine."; -$a->strings["OpenID support"] = "Supporto OpenID"; -$a->strings["OpenID support for registration and logins."] = "Supporta OpenID per la registrazione e il login"; -$a->strings["Fullname check"] = "Controllo nome completo"; -$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam"; -$a->strings["UTF-8 Regular expressions"] = "Espressioni regolari UTF-8"; -$a->strings["Use PHP UTF8 regular expressions"] = "Usa le espressioni regolari PHP in UTF8"; -$a->strings["Show Community Page"] = "Mostra pagina Comunità"; -$a->strings["Display a Community page showing all recent public postings on this site."] = "Mostra una pagina Comunità con tutti i recenti messaggi pubblici su questo sito."; -$a->strings["Enable OStatus support"] = "Abilita supporto OStatus"; -$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Fornisce compatibiltà OStatuts (identi.ca, status.net, etc.). Tutte le comunicazioni in OStatus sono pubbliche, per cui avvisi di provacy verranno occasionalmente mostrati."; -$a->strings["Enable Diaspora support"] = "Abilita il supporto a Diaspora"; -$a->strings["Provide built-in Diaspora network compatibility."] = "Fornisce compatibilità con il network Diaspora."; -$a->strings["Only allow Friendica contacts"] = "Permetti solo contatti Friendica"; -$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati."; -$a->strings["Verify SSL"] = "Verifica SSL"; -$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati."; -$a->strings["Proxy user"] = "Utente Proxy"; -$a->strings["Proxy URL"] = "URL Proxy"; +$a->strings["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 publicazione del profilo"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per mostrare obbligatoriamente tutti i profili registrati nell'elenco del sito."; +$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 (non raccomandato)."; -$a->strings["Delivery interval"] = ""; -$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = ""; -$a->strings["Poll interval"] = ""; -$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = ""; -$a->strings["Maximum Load Average"] = ""; -$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = ""; -$a->strings["Update has been marked successful"] = ""; -$a->strings["Executing %s failed. Check system logs."] = ""; -$a->strings["Update %s was successfully applied."] = ""; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = ""; -$a->strings["Update function %s could not be found."] = ""; -$a->strings["No failed updates."] = ""; -$a->strings["Failed Updates"] = ""; -$a->strings["This does not include updates prior to 1139, which did not return a status."] = ""; -$a->strings["Mark success (if update was manually applied)"] = ""; -$a->strings["Attempt to execute this update step automatically"] = ""; +$a->strings["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["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 => "", - 1 => "", + 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["User '%s' deleted"] = "Utente '%s' cancellato"; +$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["Normal Account"] = "Account normale"; +$a->strings["Soapbox Account"] = "Account per comunicati e annunci"; +$a->strings["Community/Celebrity Account"] = "Account per celebrità o per comunità"; +$a->strings["Automatic Friend Account"] = "Account per amicizia automatizzato"; $a->strings["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["Email"] = "Email"; $a->strings["No registrations."] = "Nessuna registrazione."; +$a->strings["Approve"] = "Approva"; $a->strings["Deny"] = "Nega"; -$a->strings["Site admin"] = ""; +$a->strings["Block"] = "Blocca"; +$a->strings["Unblock"] = "Sblocca"; $a->strings["Register date"] = "Data registrazione"; $a->strings["Last login"] = "Ultimo accesso"; -$a->strings["Last item"] = "Ultimo elemento"; -$a->strings["Account"] = "Account"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?"; -$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à cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?"; -$a->strings["Plugin %s disabled."] = "Plugin %s disabilitato."; -$a->strings["Plugin %s enabled."] = "Plugin %s abilitato."; -$a->strings["Disable"] = "Disabilita"; -$a->strings["Enable"] = "Abilita"; -$a->strings["Toggle"] = "Inverti"; -$a->strings["Author: "] = "Autore: "; -$a->strings["Maintainer: "] = "Manutentore: "; +$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["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"] = ""; +$a->strings["Screenshot"] = "Istantanea dello schermo"; $a->strings["[Experimental]"] = "[Sperimentale]"; $a->strings["[Unsupported]"] = "[Non supportato]"; -$a->strings["Log settings updated."] = "Impostazioni Log aggiornate."; +$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 Friendica top-level directory."] = "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica."; -$a->strings["Log level"] = "Livello di Log"; -$a->strings["Close"] = "Chiudi"; -$a->strings["FTP Host"] = "Indirizzo FTP"; -$a->strings["FTP Path"] = "Percorso FTP"; -$a->strings["FTP User"] = "Utente FTP"; -$a->strings["FTP Password"] = "Pasword FTP"; -$a->strings["Requested profile is not available."] = "Profilo richiesto non disponibile."; -$a->strings["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato."; -$a->strings["Tips for New Members"] = "Consigli per i Nuovi Utenti"; -$a->strings["{0} wants to be your friend"] = "{0} vuole essere tuo amico"; -$a->strings["{0} sent you a message"] = "{0} ti ha inviato un messaggio"; -$a->strings["{0} requested registration"] = "{0} chiede la registrazione"; -$a->strings["{0} commented %s's post"] = "{0} ha commentato il post di %s"; -$a->strings["{0} liked %s's post"] = "a {0} piace il post di %s"; -$a->strings["{0} disliked %s's post"] = "a {0} non piace il post di %s"; -$a->strings["{0} is now friends with %s"] = "{0} ora è amico di %s"; -$a->strings["{0} posted"] = "{0} ha inviato un nuovo messaggio"; -$a->strings["{0} tagged %s's post with #%s"] = "{0} ha taggato il post di %s con #%s"; -$a->strings["{0} mentioned you in a post"] = "{0} ti ha citato in un post"; -$a->strings["Contacts who are not members of a group"] = ""; -$a->strings["OpenID protocol error. No ID returned."] = ""; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = ""; -$a->strings["Login failed."] = "Accesso fallito."; -$a->strings["Contact added"] = ""; -$a->strings["Common Friends"] = "Amici in comune"; -$a->strings["No contacts in common."] = ""; -$a->strings["link"] = ""; -$a->strings["Item has been removed."] = "L'oggetto è stato rimosso."; -$a->strings["Applications"] = "Applicazioni"; -$a->strings["No installed applications."] = "Nessuna applicazione installata."; -$a->strings["Search"] = "Cerca"; +$a->strings["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["Ignore"] = "Ignora"; +$a->strings["Connection updated."] = "Contatto aggiornato."; +$a->strings["Connection update failed."] = "Impossibile aggiornare il contatto."; +$a->strings["Introductions and Connection Requests"] = "Richieste di contatto e di amicizia"; +$a->strings["No pending introductions."] = "Nessuna richiesta in attesa."; +$a->strings["System error. Please try again later."] = "Errore di sistema. Riprovare più tardi."; +$a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri"; +$a->strings["Post a new friend activity"] = "Pubblica sulla bacheca che hai un nuovo contatto"; +$a->strings["if applicable"] = "se possibile"; +$a->strings["Discard"] = "Rifiuta"; +$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["Failed to update connection record."] = "Impossibile aggiornare le informazioni di contatto."; +$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"; +$a->strings["Channel has been blocked"] = "Il canale è stato bloccato"; +$a->strings["Unable to set address book parameters."] = "Impossibile impostare i parametri della rubrica."; +$a->strings["Channel has been unignored"] = "Il canale non sarà più ignorato"; +$a->strings["Channel has been ignored"] = "Il canale sarà ignorato"; +$a->strings["Channel has been unarchived"] = "Il canale non è più archiviato"; +$a->strings["Channel has been archived"] = "Il canale è stato archiviato"; +$a->strings["Channel has been unhidden"] = "Il canale non è più nascosto"; +$a->strings["Channel has been hidden"] = "Il canale è stato nascosto"; +$a->strings["Channel has been approved"] = "Il canale è stato approvato"; +$a->strings["Channel has been unapproved"] = "Il canale non è più approvato"; +$a->strings["Contact has been removed."] = "Il contatto è stato rimosso."; +$a->strings["View %s's profile"] = "Guarda il profilo di %s"; +$a->strings["Refresh Permissions"] = "Aggiorna i permessi"; +$a->strings["Fetch updated permissions"] = "Scarica i permessi aggiornati"; +$a->strings["Block or Unblock this connection"] = "Per bloccare o meno questo contatto"; +$a->strings["Unignore"] = "Non ignorare"; +$a->strings["Ignore or Unignore this connection"] = "Per ignorare o meno questo contatto"; +$a->strings["Unarchive"] = "Non archiviare"; +$a->strings["Archive"] = "Archivia"; +$a->strings["Archive or Unarchive this connection"] = "Per archiviare o meno questo contatto"; +$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"] = "Accetta il contatto per permettere la comunicazione tra voi"; +$a->strings["Automatic Permissions Settings"] = "Permessi predefiniti"; +$a->strings["Connections: settings for %s"] = "Contatti: impostazioni per %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."] = "Quando ricevi una richiesta di amicizia da un canale, i permessi mostrati in questa pagina saranno applicati al nuovo contatto con l'approvazione della richiesta. Lascia questa pagina se non vuoi proseguire."; +$a->strings["Slide to adjust your degree of friendship"] = "Trascina per restringere il grado di amicizia da mostrare"; +$a->strings["Connection has no individual permissions!"] = "Non hai assegnato permessi individuali a questo contatto!"; +$a->strings["This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"."] = "Questo corrisponde alle tue impostazioni di privacy, ma puoi anche dare un'occhiata ai 'Permessi avanzati' per opzioni più dettagliate."; +$a->strings["Profile Visibility"] = "Visibilità del profilo"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro."; +$a->strings["Contact Information / Notes"] = "Informazioni e annotazioni sul contatto"; +$a->strings["Edit contact notes"] = "Modifica le annotazioni sul contatto"; +$a->strings["Their Settings"] = "Permessi concessi a te"; +$a->strings["My Settings"] = "I permessi che concedo"; +$a->strings["Forum Members"] = "Membro di un forum"; +$a->strings["Soapbox"] = "Soapbox"; +$a->strings["Full Sharing"] = "Condivisione totale"; +$a->strings["Cautious Sharing"] = "Condivisione prudente"; +$a->strings["Follow Only"] = "Follower"; +$a->strings["Individual Permissions"] = "Permessi individuali"; +$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."] = "I permessi individuali sono disponibili solo quando nelle impostazioni di sicurezza e privacy scegli \"Solo chi riceve il mio permesso\". Altrimenti sono applicate le stesse impostazioni per tutti."; +$a->strings["Advanced Permissions"] = "Permessi avanzati"; +$a->strings["Quick Links"] = "Impostazioni veloci"; +$a->strings["Visit %s's profile - %s"] = "Guarda il profilo di %s - %s"; +$a->strings["Block/Unblock contact"] = "Blocca/sblocca contatto"; +$a->strings["Ignore contact"] = "Ignora il contatto"; +$a->strings["Repair URL settings"] = "Ripara le impostazioni URL"; +$a->strings["View conversations"] = "Vedi le conversazioni"; +$a->strings["Delete contact"] = "Elimina contatto"; +$a->strings["Last update:"] = "Ultimo aggiornamento:"; +$a->strings["Update public posts"] = "Aggiorna gli articoli pubblici"; +$a->strings["Update now"] = "Aggiorna adesso"; +$a->strings["Currently blocked"] = "Attualmente bloccato"; +$a->strings["Currently ignored"] = "Attualmente ignorato"; +$a->strings["Currently archived"] = "Attualmente archiviato"; +$a->strings["Currently pending"] = "Attualmente da approvare"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Le risposte ai tuoi articoli pubblici potrebbero restare comunque visibili"; +$a->strings["Blocked"] = "Bloccati"; +$a->strings["Ignored"] = "Ignorati"; +$a->strings["Hidden"] = "Nascosti"; +$a->strings["Archived"] = "Archiviati"; +$a->strings["All"] = "Tutti"; +$a->strings["Suggestions"] = "Suggerimenti"; +$a->strings["Suggest new connections"] = "Suggerisci nuovi contatti"; +$a->strings["Show pending (new) connections"] = "Richieste di amicizia in attesa"; +$a->strings["All Connections"] = "Tutti i contatti"; +$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["%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["This site is not a directory server"] = ""; +$a->strings["Remote privacy information not available."] = "Le informazioni remote sulla privacy non sono disponibili."; +$a->strings["Visible to:"] = "Visibile a:"; +$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["Profile not found."] = "Profilo non trovato."; -$a->strings["Profile Name is required."] = "Il nome profilo è obbligatorio ."; -$a->strings["Marital Status"] = ""; -$a->strings["Romantic Partner"] = ""; -$a->strings["Likes"] = ""; -$a->strings["Dislikes"] = ""; -$a->strings["Work/Employment"] = ""; +$a->strings["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"] = "Cosa gli piace"; +$a->strings["Dislikes"] = "Cosa non gli piace"; +$a->strings["Work/Employment"] = "Lavoro/impiego"; $a->strings["Religion"] = "Religione"; -$a->strings["Political Views"] = "Orientamento Politico"; +$a->strings["Political Views"] = "Orientamento politico"; $a->strings["Gender"] = "Sesso"; -$a->strings["Sexual Preference"] = "Preferenza sessuale"; +$a->strings["Sexual Preference"] = "Preferenze sessuali"; $a->strings["Homepage"] = "Homepage"; $a->strings["Interests"] = "Interessi"; -$a->strings["Address"] = ""; -$a->strings["Location"] = "Posizione"; +$a->strings["Address"] = "Indirizzo"; +$a->strings["Location"] = "Luogo"; $a->strings["Profile updated."] = "Profilo aggiornato."; -$a->strings[" and "] = ""; -$a->strings["public profile"] = "profilo pubblico"; -$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."] = "%1\$s ha un %2\$s aggiornato. Ha cambiato %3\$s"; -$a->strings["Profile deleted."] = "Profilo elminato."; -$a->strings["Profile-"] = "Profilo-"; -$a->strings["New profile created."] = "Il nuovo profilo è stato creato."; -$a->strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo."; $a->strings["Hide your contact/friend list from viewers of this profile?"] = "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?"; $a->strings["Edit Profile Details"] = "Modifica i dettagli del profilo"; -$a->strings["View this profile"] = "Visualizza questo profilo"; +$a->strings["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:"] = "Breve descrizione (es. titolo, posizione, altro):"; -$a->strings["Your Gender:"] = "Il tuo sesso:"; -$a->strings["Birthday (%s):"] = "Compleanno (%s)"; +$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["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"] = "Esempio: cathy123, Cathy Williams, cathy@example.com"; -$a->strings["Since [date]:"] = ""; -$a->strings["Sexual Preference:"] = "Preferenze sessuali:"; -$a->strings["Homepage URL:"] = "Homepage:"; -$a->strings["Hometown:"] = ""; -$a->strings["Political Views:"] = "Orientamento politico:"; +$a->strings["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 homepage:"; $a->strings["Religious Views:"] = "Orientamento religioso:"; -$a->strings["Public Keywords:"] = "Parole chiave visibili a tutti:"; -$a->strings["Private Keywords:"] = "Parole chiave private:"; -$a->strings["Likes:"] = ""; -$a->strings["Dislikes:"] = ""; -$a->strings["Example: fishing photography software"] = "Esempio: pesca fotografia programmazione"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Usato per cercare tra i profili, non è mai visibile agli altri)"; +$a->strings["Keywords:"] = "Parole chiave, tag:"; +$a->strings["Example: fishing photography software"] = "Per esempio: pesca fotografia programmazione"; +$a->strings["Used in directory listings"] = "Pubblicato sugli elenchi"; $a->strings["Tell us about yourself..."] = "Raccontaci di te..."; $a->strings["Hobbies/Interests"] = "Hobby/interessi"; -$a->strings["Contact information and Social Networks"] = "Informazioni su contatti e social network"; +$a->strings["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"; @@ -986,1021 +1321,218 @@ $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 profili"; +$a->strings["Edit/Manage Profiles"] = "Modifica/gestisci i profili"; $a->strings["Change profile photo"] = "Cambia la foto del profilo"; $a->strings["Create New Profile"] = "Crea un nuovo profilo"; -$a->strings["Profile Image"] = "Immagine del Profilo"; +$a->strings["Profile Image"] = "Immagine del profilo"; $a->strings["visible to everybody"] = "visibile a tutti"; -$a->strings["Edit visibility"] = "Modifica visibilità"; -$a->strings["Save to Folder:"] = ""; -$a->strings["- select -"] = ""; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s"; -$a->strings["No potential page delegates located."] = "Nessun potenziale delegato per la pagina è stato trovato."; -$a->strings["Delegate Page Management"] = "Gestione delegati per la pagina"; -$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente."; -$a->strings["Existing Page Managers"] = "Gestori Pagina Esistenti"; -$a->strings["Existing Page Delegates"] = "Delegati Pagina Esistenti"; -$a->strings["Potential Delegates"] = "Delegati Potenziali"; -$a->strings["Add"] = "Aggiungi"; -$a->strings["No entries."] = "Nessun articolo."; -$a->strings["Source (bbcode) text:"] = ""; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = ""; -$a->strings["Source input: "] = ""; -$a->strings["bb2html: "] = ""; -$a->strings["bb2html2bb: "] = ""; -$a->strings["bb2md: "] = ""; -$a->strings["bb2md2html: "] = ""; -$a->strings["bb2dia2bb: "] = ""; -$a->strings["bb2md2html2bb: "] = ""; -$a->strings["Source input (Diaspora format): "] = ""; -$a->strings["diaspora2bb: "] = ""; -$a->strings["Friend Suggestions"] = "Contatti suggeriti"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore."; -$a->strings["Ignore/Hide"] = "Ignora / Nascondi"; -$a->strings["Global Directory"] = "Elenco globale"; -$a->strings["Find on this site"] = "Cerca nel sito"; -$a->strings["Site Directory"] = "Elenco del sito"; -$a->strings["Gender: "] = "Genere:"; -$a->strings["Gender:"] = "Genere:"; -$a->strings["Status:"] = "Stato:"; -$a->strings["Homepage:"] = "Homepage:"; -$a->strings["About:"] = "Informazioni:"; -$a->strings["No entries (some entries may be hidden)."] = "Nessuna voce (qualche voce potrebbe essere nascosta)."; -$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; -$a->strings["Please join us on Friendica"] = ""; -$a->strings["%s : Message delivery failed."] = "%s: la consegna del messaggio fallita."; -$a->strings["%d message sent."] = array( - 0 => "%d messaggio inviato.", - 1 => "%d messaggi inviati.", -); -$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = ""; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = ""; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = ""; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = ""; -$a->strings["Send invitations"] = "Invia inviti"; -$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = ""; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una volta registrato, connettiti con me dal mio profilo:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = ""; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = ""; -$a->strings["Response from remote site was not understood."] = "Errore di comunicazione con l'altro sito."; -$a->strings["Unexpected response from remote site: "] = "La risposta dell'altro sito non può essere gestita: "; -$a->strings["Confirmation completed successfully."] = "Conferma completata con successo."; -$a->strings["Remote site reported: "] = "Il sito remoto riporta: "; -$a->strings["Temporary failure. Please wait and try again."] = "Problema temporaneo. Attendi e riprova."; -$a->strings["Introduction failed or was revoked."] = "La presentazione ha generato un errore o è stata revocata."; -$a->strings["Unable to set contact photo."] = "Impossibile impostare la foto del contatto."; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s e %2\$s adesso sono amici"; -$a->strings["No user record found for '%s' "] = "Nessun utente trovato '%s'"; -$a->strings["Our site encryption key is apparently messed up."] = "La nostra chiave di criptazione del sito sembra essere corrotta."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo."; -$a->strings["Contact record was not found for you on our site."] = "Il contatto non è stato trovato sul nostro sito."; -$a->strings["Site public key not available in contact record for URL %s."] = "La chiave pubblica del sito non è disponibile per l'URL %s"; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare."; -$a->strings["Unable to set your contact credentials on our system."] = "Impossibile impostare le credenziali del tuo contatto sul nostro sistema."; -$a->strings["Unable to update your contact profile details on our system"] = "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema"; -$a->strings["Connection accepted at %s"] = "Connession accettata su %s"; -$a->strings["%1\$s has joined %2\$s"] = ""; -$a->strings["Google+ Import Settings"] = ""; -$a->strings["Enable Google+ Import"] = ""; -$a->strings["Google Account ID"] = ""; -$a->strings["Google+ Import Settings saved."] = ""; -$a->strings["Facebook disabled"] = "Facebook disabilitato"; -$a->strings["Updating contacts"] = "Aggiornamento contatti"; -$a->strings["Facebook API key is missing."] = "Chiave API Facebook mancante."; -$a->strings["Facebook Connect"] = "Facebook Connect"; -$a->strings["Install Facebook connector for this account."] = "Installa Facebook connector per questo account"; -$a->strings["Remove Facebook connector"] = "Rimuovi Facebook connector"; -$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Ri-autentica [Questo è necessario ogni volta che cambia la password di Facebook.]"; -$a->strings["Post to Facebook by default"] = "Invia sempre a Facebook"; -$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = ""; -$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = ""; -$a->strings["Link all your Facebook friends and conversations on this website"] = "Collega tutti i tuoi amici di Facebook e le conversazioni su questo sito"; -$a->strings["Facebook conversations consist of your profile wall and your friend stream."] = "Le conversazione su Facebook sono composte dai i tuoi messsaggi in bacheca e dai messaggi dei tuoi amici"; -$a->strings["On this website, your Facebook friend stream is only visible to you."] = "Su questo sito, i messaggi dai vostri amici su Facebook è visibile solo a te."; -$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "Le seguenti impostazioni determinano la privacy della vostra bacheca di Facebook su questo sito."; -$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "Su questo sito, le conversazioni sulla tua bacheca di Facebook saranno visibili solo a te"; -$a->strings["Do not import your Facebook profile wall conversations"] = "Non importare le conversazione sulla tua bacheca di Facebook"; -$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "Se scegli di collegare le conversazioni e lasci entrambi questi box non segnati, la tua bacheca di Facebook sarà fusa con la tua bacheca su questao sito, e le impostazioni di privacy su questo sito saranno usate per decidere chi potrà vedere le conversazioni."; -$a->strings["Comma separated applications to ignore"] = "Elenco separato da virgola di applicazioni da ignorare"; -$a->strings["Problems with Facebook Real-Time Updates"] = "Problemi con gli aggiornamenti in tempo reale con Facebook"; -$a->strings["Facebook Connector Settings"] = "Impostazioni del connettore Facebook"; -$a->strings["Facebook API Key"] = "Facebook API Key"; -$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.

    "] = "Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.

    "; -$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."; -$a->strings["The given API Key seems to work correctly."] = "L' API Key fornita sembra funzionare correttamente."; -$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = ""; -$a->strings["App-ID / API-Key"] = "App-ID / API-Key"; -$a->strings["Application secret"] = "Application secret"; -$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = ""; -$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = ""; -$a->strings["Real-Time Updates"] = "Aggiornamenti Real-Time"; -$a->strings["Real-Time Updates are activated."] = "Gli aggiornamenti in tempo reale sono attivi"; -$a->strings["Deactivate Real-Time Updates"] = "Disattiva gli aggiornamenti in tempo reale"; -$a->strings["Real-Time Updates not activated."] = "Gli aggiornamenti in tempo reale non sono attivi"; -$a->strings["Activate Real-Time Updates"] = "Attiva gli aggiornamenti in tempo reale"; -$a->strings["The new values have been saved."] = "I nuovi valori sono stati salvati."; -$a->strings["Post to Facebook"] = "Invia a Facebook"; -$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Invio su Facebook annullato per un conflitto nei permessi di accesso."; -$a->strings["View on Friendica"] = "Vedi su Friendica"; -$a->strings["Facebook post failed. Queued for retry."] = "Invio a Facebook fallito. In attesa di riprovare."; -$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = ""; -$a->strings["Facebook connection became invalid"] = ""; -$a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."] = ""; -$a->strings["StatusNet AutoFollow settings updated."] = ""; -$a->strings["StatusNet AutoFollow Settings"] = ""; -$a->strings["Automatically follow any StatusNet followers/mentioners"] = ""; -$a->strings["Bg settings updated."] = ""; -$a->strings["Bg Settings"] = ""; -$a->strings["How many contacts to display on profile sidebar"] = "Quanti contatti visualizzare nella barra laterale del profilo"; -$a->strings["Lifetime of the cache (in hours)"] = ""; -$a->strings["Cache Statistics"] = ""; -$a->strings["Number of items"] = ""; -$a->strings["Size of the cache"] = ""; -$a->strings["Delete the whole cache"] = ""; -$a->strings["Facebook Post disabled"] = ""; -$a->strings["Facebook Post"] = ""; -$a->strings["Install Facebook Post connector for this account."] = ""; -$a->strings["Remove Facebook Post connector"] = ""; -$a->strings["Facebook Post Settings"] = ""; -$a->strings["%d person likes this"] = array( - 0 => "piace a %d persona", - 1 => "piace a %d persone", -); -$a->strings["%d person doesn't like this"] = array( - 0 => "non piace a %d persona", - 1 => "non piace a %d persone", -); -$a->strings["Get added to this list!"] = ""; -$a->strings["Generate new key"] = "Genera una nuova chiave"; -$a->strings["Widgets key"] = "Chiave Widget"; -$a->strings["Widgets available"] = "Widget disponibili"; -$a->strings["Connect on Friendica!"] = "Connettiti su Friendica!"; -$a->strings["bitchslap"] = ""; -$a->strings["bitchslapped"] = ""; -$a->strings["shag"] = ""; -$a->strings["shagged"] = ""; -$a->strings["do something obscenely biological to"] = ""; -$a->strings["did something obscenely biological to"] = ""; -$a->strings["point out the poke feature to"] = ""; -$a->strings["pointed out the poke feature to"] = ""; -$a->strings["declare undying love for"] = ""; -$a->strings["declared undying love for"] = ""; -$a->strings["patent"] = ""; -$a->strings["patented"] = ""; -$a->strings["stroke beard"] = ""; -$a->strings["stroked their beard at"] = ""; -$a->strings["bemoan the declining standards of modern secondary and tertiary education to"] = ""; -$a->strings["bemoans the declining standards of modern secondary and tertiary education to"] = ""; -$a->strings["hug"] = ""; -$a->strings["hugged"] = ""; -$a->strings["kiss"] = ""; -$a->strings["kissed"] = ""; -$a->strings["raise eyebrows at"] = ""; -$a->strings["raised their eyebrows at"] = ""; -$a->strings["insult"] = ""; -$a->strings["insulted"] = ""; -$a->strings["praise"] = ""; -$a->strings["praised"] = ""; -$a->strings["be dubious of"] = ""; -$a->strings["was dubious of"] = ""; -$a->strings["eat"] = ""; -$a->strings["ate"] = ""; -$a->strings["giggle and fawn at"] = ""; -$a->strings["giggled and fawned at"] = ""; -$a->strings["doubt"] = ""; -$a->strings["doubted"] = ""; -$a->strings["glare"] = ""; -$a->strings["glared at"] = ""; -$a->strings["YourLS Settings"] = "Impostazioni YourLS"; -$a->strings["URL: http://"] = "URL: http://"; -$a->strings["Username:"] = "Nome utente:"; -$a->strings["Password:"] = "Password:"; -$a->strings["Use SSL "] = "Usa SSL"; -$a->strings["yourls Settings saved."] = "Impostazioni yourls salvate."; -$a->strings["Post to LiveJournal"] = "Posta su LiveJournal"; -$a->strings["LiveJournal Post Settings"] = "Impostazioni post LiveJournal"; -$a->strings["Enable LiveJournal Post Plugin"] = "Abilita il plugin LiveJournal"; -$a->strings["LiveJournal username"] = "LiveJournal username"; -$a->strings["LiveJournal password"] = "LiveJournal password"; -$a->strings["Post to LiveJournal by default"] = "Posta su LiveJournal di default"; -$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "Impostazioni per NSWF (Filtro Contenuti Generico)"; -$a->strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "Questo plugin cerca nei messagi le parole/testo che inserisci qui sotto, e collassa i messaggi che li contengono, per non mostrare contenuto inappropriato nel momento sbagliato, come contenuto a sfondo sessuale che puo' essere inappropriato in un ambiente di lavoro. E' educato (e consigliato) taggare i messaggi che contengono nudità con #NSFW (Not Safe For Work: Non Sicuro Per il Lavoro). Questo filtro puo' cercare anche qualsiasi parola che inserisci, quindi puo' essere usato come filtro di contenuti generico."; -$a->strings["Enable Content filter"] = "Abilita il Filtro Contenuti"; -$a->strings["Comma separated list of keywords to hide"] = "Elenco separato da virgole di parole da nascondere"; -$a->strings["Use /expression/ to provide regular expressions"] = "Utilizza /espressione/ per inserire espressioni regolari"; -$a->strings["NSFW Settings saved."] = "Impostazioni NSFW salvate."; -$a->strings["%s - Click to open/close"] = "%s - Clicca per aprire / chiudere"; -$a->strings["Forums"] = "Forum"; -$a->strings["Forums:"] = ""; -$a->strings["Page settings updated."] = ""; -$a->strings["Page Settings"] = ""; -$a->strings["How many forums to display on sidebar without paging"] = ""; -$a->strings["Randomise Page/Forum list"] = ""; -$a->strings["Show pages/forums on profile page"] = ""; -$a->strings["Planets Settings"] = ""; -$a->strings["Enable Planets Plugin"] = ""; -$a->strings["Login"] = "Accedi"; -$a->strings["OpenID"] = "OpenID"; -$a->strings["Latest users"] = "Ultimi utenti"; -$a->strings["Most active users"] = "Utenti più attivi"; -$a->strings["Latest photos"] = "Ultime foto"; -$a->strings["Latest likes"] = "Ultimi \"mi piace\""; -$a->strings["event"] = "l'evento"; -$a->strings["No access"] = ""; -$a->strings["Could not open component for editing"] = ""; -$a->strings["Go back to the calendar"] = ""; -$a->strings["Event data"] = ""; -$a->strings["Calendar"] = ""; -$a->strings["Special color"] = ""; -$a->strings["Subject"] = ""; -$a->strings["Starts"] = ""; -$a->strings["Ends"] = ""; -$a->strings["Description"] = ""; -$a->strings["Recurrence"] = ""; -$a->strings["Frequency"] = ""; -$a->strings["Daily"] = "Giornalmente"; -$a->strings["Weekly"] = "Settimanalmente"; -$a->strings["Monthly"] = "Mensilmente"; -$a->strings["Yearly"] = ""; -$a->strings["days"] = "giorni"; -$a->strings["weeks"] = "settimane"; -$a->strings["months"] = "mesi"; -$a->strings["years"] = "anni"; -$a->strings["Interval"] = ""; -$a->strings["All %select% %time%"] = ""; -$a->strings["Days"] = ""; -$a->strings["Sunday"] = "Domenica"; -$a->strings["Monday"] = "Lunedì"; -$a->strings["Tuesday"] = "Martedì"; -$a->strings["Wednesday"] = "Mercoledì"; -$a->strings["Thursday"] = "Giovedì"; -$a->strings["Friday"] = "Venerdì"; -$a->strings["Saturday"] = "Sabato"; -$a->strings["First day of week:"] = ""; -$a->strings["Day of month"] = ""; -$a->strings["#num#th of each month"] = ""; -$a->strings["#num#th-last of each month"] = ""; -$a->strings["#num#th #wkday# of each month"] = ""; -$a->strings["#num#th-last #wkday# of each month"] = ""; -$a->strings["Month"] = ""; -$a->strings["#num#th of the given month"] = ""; -$a->strings["#num#th-last of the given month"] = ""; -$a->strings["#num#th #wkday# of the given month"] = ""; -$a->strings["#num#th-last #wkday# of the given month"] = ""; -$a->strings["Repeat until"] = ""; -$a->strings["Infinite"] = ""; -$a->strings["Until the following date"] = ""; -$a->strings["Number of times"] = ""; -$a->strings["Exceptions"] = ""; -$a->strings["none"] = ""; -$a->strings["Notification"] = ""; -$a->strings["Notify by"] = ""; -$a->strings["E-Mail"] = ""; -$a->strings["On Friendica / Display"] = ""; -$a->strings["Time"] = ""; -$a->strings["Hours"] = ""; -$a->strings["Minutes"] = ""; -$a->strings["Seconds"] = ""; -$a->strings["Weeks"] = ""; -$a->strings["before the"] = ""; -$a->strings["start of the event"] = ""; -$a->strings["end of the event"] = ""; -$a->strings["Add a notification"] = ""; -$a->strings["The event #name# will start at #date"] = ""; -$a->strings["#name# is about to begin."] = ""; -$a->strings["Saved"] = ""; -$a->strings["U.S. Time Format (mm/dd/YYYY)"] = ""; -$a->strings["German Time Format (dd.mm.YYYY)"] = ""; -$a->strings["Private Events"] = ""; -$a->strings["Private Addressbooks"] = ""; -$a->strings["Friendica-Native events"] = ""; -$a->strings["Friendica-Contacts"] = ""; -$a->strings["Your Friendica-Contacts"] = ""; -$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = ""; -$a->strings["Something went wrong when trying to import the file. Sorry."] = ""; -$a->strings["The ICS-File has been imported."] = ""; -$a->strings["No file was uploaded."] = ""; -$a->strings["Import a ICS-file"] = ""; -$a->strings["ICS-File"] = ""; -$a->strings["Overwrite all #num# existing events"] = ""; -$a->strings["New event"] = ""; -$a->strings["Today"] = ""; -$a->strings["Day"] = ""; -$a->strings["Week"] = ""; -$a->strings["Reload"] = ""; -$a->strings["Date"] = ""; -$a->strings["Error"] = ""; -$a->strings["The calendar has been updated."] = ""; -$a->strings["The new calendar has been created."] = ""; -$a->strings["The calendar has been deleted."] = ""; -$a->strings["Calendar Settings"] = ""; -$a->strings["Date format"] = ""; -$a->strings["Time zone"] = ""; -$a->strings["Calendars"] = ""; -$a->strings["Create a new calendar"] = ""; -$a->strings["Limitations"] = ""; -$a->strings["Warning"] = ""; -$a->strings["Synchronization (iPhone, Thunderbird Lightning, Android, ...)"] = ""; -$a->strings["Synchronizing this calendar with the iPhone"] = ""; -$a->strings["Synchronizing your Friendica-Contacts with the iPhone"] = ""; -$a->strings["The current version of this plugin has not been set up correctly. Please contact the system administrator of your installation of friendica to fix this."] = ""; -$a->strings["Extended calendar with CalDAV-support"] = ""; -$a->strings["noreply"] = "nessuna risposta"; -$a->strings["Notification: "] = ""; -$a->strings["The database tables have been installed."] = ""; -$a->strings["An error occurred during the installation."] = ""; -$a->strings["The database tables have been updated."] = ""; -$a->strings["An error occurred during the update."] = ""; -$a->strings["No system-wide settings yet."] = ""; -$a->strings["Database status"] = ""; -$a->strings["Installed"] = ""; -$a->strings["Upgrade needed"] = ""; -$a->strings["Please back up all calendar data (the tables beginning with dav_*) before proceeding. While all calendar events should be converted to the new database structure, it's always safe to have a backup. Below, you can have a look at the database-queries that will be made when pressing the 'update'-button."] = ""; -$a->strings["Upgrade"] = ""; -$a->strings["Not installed"] = ""; -$a->strings["Install"] = ""; -$a->strings["Unknown"] = ""; -$a->strings["Something really went wrong. I cannot recover from this state automatically, sorry. Please go to the database backend, back up the data, and delete all tables beginning with 'dav_' manually. Afterwards, this installation routine should be able to reinitialize the tables automatically."] = ""; -$a->strings["Troubleshooting"] = ""; -$a->strings["Manual creation of the database tables:"] = ""; -$a->strings["Show SQL-statements"] = ""; -$a->strings["Private Calendar"] = ""; -$a->strings["Friendica Events: Mine"] = ""; -$a->strings["Friendica Events: Contacts"] = ""; -$a->strings["Private Addresses"] = ""; -$a->strings["Friendica Contacts"] = ""; -$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See RemoteStorage WebFinger"] = "Permette di usare il tuo id friendica (%s) per collegarsi a storage esterni che supportano unhosted (come ownCloud). Vedi RemoteStorage WebFinger"; -$a->strings["Template URL (with {category})"] = "Template URL (con {category})"; -$a->strings["OAuth end-point"] = "OAuth end-point"; -$a->strings["Api"] = "Api"; -$a->strings["Member since:"] = "Membro dal:"; -$a->strings["Three Dimensional Tic-Tac-Toe"] = "Tic-Tac-Toe tridimensionale"; -$a->strings["3D Tic-Tac-Toe"] = "3D Tic-Tac-Toe"; -$a->strings["New game"] = "Nuova partita"; -$a->strings["New game with handicap"] = "Nuova partita con handicap"; -$a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "Tic-tac-toe tridimensionale è come il gioco tradizionale, solo che si gioca su livelli multipli contemporaneamente."; -$a->strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "In questo caso ci sono tre livelli. Puoi vincere mettendo tre segni in fila su ogni livello, anche verso l'alto, il basso e diagonalmente anche attraverso i diversi livelli."; -$a->strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "L'handicap disabilita la casella centrale sul livello di mezzo, perchè il giocatore che si prende quella casella spesso ha un deciso vantaggio."; -$a->strings["You go first..."] = "Cominci tu..."; -$a->strings["I'm going first this time..."] = "Comincio io questa volta..."; -$a->strings["You won!"] = "Hai vinto!"; -$a->strings["\"Cat\" game!"] = "Stallo!"; -$a->strings["I won!"] = "Ho vinto!"; -$a->strings["Randplace Settings"] = "Impostazioni Randplace"; -$a->strings["Enable Randplace Plugin"] = "Abilita il plugin Randplace"; -$a->strings["Post to Dreamwidth"] = "Posta su Dreamwidth"; -$a->strings["Dreamwidth Post Settings"] = "Impostazioni post Dreamwidth"; -$a->strings["Enable dreamwidth Post Plugin"] = "Abilita il plugin dreamwidth"; -$a->strings["dreamwidth username"] = "dreamwidth username"; -$a->strings["dreamwidth password"] = "Password dreamwidth"; -$a->strings["Post to dreamwidth by default"] = "Invia a dreamwidth per impostazione predefinita"; -$a->strings["Post to Drupal"] = "Invia a Drupal"; -$a->strings["Drupal Post Settings"] = "Impostazioni invio a Drupal"; -$a->strings["Enable Drupal Post Plugin"] = "Abilita il plugin di invio a Drupal"; -$a->strings["Drupal username"] = "Drupal username"; -$a->strings["Drupal password"] = "Drupal password"; -$a->strings["Post Type - article,page,or blog"] = "Tipo di post - article,page o blog"; -$a->strings["Drupal site URL"] = "Indirizzo del sito Drupal"; -$a->strings["Drupal site uses clean URLS"] = "Il sito Drupal usa URL puliti"; -$a->strings["Post to Drupal by default"] = "Invia a Drupal per impostazione predefinita"; -$a->strings["Post from Friendica"] = "Messaggio da Friendica"; -$a->strings["Startpage Settings"] = ""; -$a->strings["Home page to load after login - leave blank for profile wall"] = ""; -$a->strings["Examples: "network" or "notifications/system""] = ""; -$a->strings["Geonames settings updated."] = "Impostazioni di geonames aggiornate."; -$a->strings["Geonames Settings"] = "Impostazioni Geonames"; -$a->strings["Enable Geonames Plugin"] = "Abilita plugin Geonames"; -$a->strings["Your account on %s will expire in a few days."] = ""; -$a->strings["Your Friendica account is about to expire."] = ""; -$a->strings["Hi %1\$s,\n\nYour account on %2\$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"] = ""; -$a->strings["Upload a file"] = "Carica un file"; -$a->strings["Drop files here to upload"] = "Trascina un file qui per caricarlo"; -$a->strings["Failed"] = "Caricamento fallito"; -$a->strings["No files were uploaded."] = "Nessun file è stato caricato."; -$a->strings["Uploaded file is empty"] = "Il file caricato è vuoto"; -$a->strings["File has an invalid extension, it should be one of "] = "Il file ha un'estensione non valida, dovrebbe essere una tra "; -$a->strings["Upload was cancelled, or server error encountered"] = "Il caricamento è stato cancellato, o si è verificato un errore sul server"; -$a->strings["OEmbed settings updated"] = "Impostazioni OEmbed aggiornate"; -$a->strings["Use OEmbed for YouTube videos"] = "Usa OEmbed per i video di YouTube"; -$a->strings["URL to embed:"] = "URL da incorporare:"; -$a->strings["show/hide"] = ""; -$a->strings["No forum subscriptions"] = ""; -$a->strings["Forumlist settings updated."] = ""; -$a->strings["Forumlist Settings"] = ""; -$a->strings["Randomise forum list"] = ""; -$a->strings["Show forums on profile page"] = ""; -$a->strings["Impressum"] = "Impressum"; -$a->strings["Site Owner"] = "Proprietario del sito"; +$a->strings["Edit visibility"] = "Cambia la visibilità"; +$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["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 dove troverai le istruzioni per continuare."; $a->strings["Email Address"] = "Indirizzo email"; -$a->strings["Postal Address"] = "Indirizzo"; -$a->strings["The impressum addon needs to be configured!
    Please add at least the owner variable to your config file. For other variables please refer to the README file of the addon."] = "Il plugin Impressum deve essere configurato!
    Aggiungi almeno il Proprietario del sito."; -$a->strings["The page operators name."] = "Nome del gestore della pagina."; -$a->strings["Site Owners Profile"] = "Profilo del proprietario del sito"; -$a->strings["Profile address of the operator."] = "Indirizzo del profilo del gestore della pagina"; -$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = ""; -$a->strings["Notes"] = "Note"; -$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = ""; -$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = ""; -$a->strings["Footer note"] = "Footer delle note"; -$a->strings["Text for the footer. You can use BBCode here."] = ""; -$a->strings["Report Bug"] = "Segnala un Bug"; -$a->strings["No Timeline settings updated."] = ""; -$a->strings["No Timeline Settings"] = ""; -$a->strings["Disable Archive selector on profile wall"] = ""; -$a->strings["\"Blockem\" Settings"] = "Impostazioni \"Blockem\""; -$a->strings["Comma separated profile URLS to block"] = "Lista, separata da virgola, di indirizzi da bloccare"; -$a->strings["BLOCKEM Settings saved."] = "Impostazioni salvate."; -$a->strings["Blocked %s - Click to open/close"] = "%s bloccato - Clicca per aprire/chiudere"; -$a->strings["Unblock Author"] = "Sblocca autore"; -$a->strings["Block Author"] = "Blocca autore"; -$a->strings["blockem settings updated"] = "Impostazioni 'blockem' aggiornate."; -$a->strings[":-)"] = ":-)"; -$a->strings[":-("] = ":-("; -$a->strings["lol"] = "lol"; -$a->strings["Quick Comment Settings"] = "Impostazioni commento rapido"; -$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "Trovi i commenti rapidi vicino al box dei commenti, a volte nascosti. Cliccali per inviare semplici risposte."; -$a->strings["Enter quick comments, one per line"] = "Inserire un commento rapido, uno per linea"; -$a->strings["Quick Comment settings saved."] = "Impostazioni commento rapido salvate."; -$a->strings["Tile Server URL"] = ""; -$a->strings["A list of public tile servers"] = ""; -$a->strings["Default zoom"] = "Default zoom"; -$a->strings["The default zoom level. (1:world, 18:highest)"] = ""; -$a->strings["Editplain settings updated."] = "Impostazioni 'Editplain' aggiornate."; -$a->strings["Group Text"] = ""; -$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = ""; -$a->strings["Could NOT install Libravatar successfully.
    It requires PHP >= 5.3"] = ""; -$a->strings["generic profile image"] = "immagine generica del profilo"; -$a->strings["random geometric pattern"] = ""; -$a->strings["monster face"] = ""; -$a->strings["computer generated face"] = ""; -$a->strings["retro arcade style face"] = ""; -$a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = ""; -$a->strings["This addon is not functional on your server."] = ""; -$a->strings["Information"] = ""; -$a->strings["Gravatar addon is installed. Please disable the Gravatar addon.
    The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = ""; -$a->strings["Default avatar image"] = ""; -$a->strings["Select default avatar image if none was found. See README"] = ""; -$a->strings["Libravatar settings updated."] = ""; -$a->strings["Post to libertree"] = ""; -$a->strings["libertree Post Settings"] = ""; -$a->strings["Enable Libertree Post Plugin"] = ""; -$a->strings["Libertree API token"] = ""; -$a->strings["Libertree site URL"] = ""; -$a->strings["Post to Libertree by default"] = ""; -$a->strings["Altpager settings updated."] = ""; -$a->strings["Alternate Pagination Setting"] = ""; -$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = ""; -$a->strings["The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail."] = ""; -$a->strings["Use the MathJax renderer"] = ""; -$a->strings["MathJax Base URL"] = ""; -$a->strings["The URL for the javascript file that should be included to use MathJax. Can be either the MathJax CDN or another installation of MathJax."] = ""; -$a->strings["Editplain Settings"] = "Impostazioni Editplain"; -$a->strings["Disable richtext status editor"] = "Disabilita l'editor di testo visuale"; -$a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
    The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = ""; -$a->strings["Select default avatar image if none was found at Gravatar. See README"] = ""; -$a->strings["Rating of images"] = ""; -$a->strings["Select the appropriate avatar rating for your site. See README"] = ""; -$a->strings["Gravatar settings updated."] = ""; -$a->strings["Your Friendica test account is about to expire."] = ""; -$a->strings["Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."] = ""; -$a->strings["\"pageheader\" Settings"] = "Impostazioni \"pageheader\""; -$a->strings["pageheader Settings saved."] = "Impostazioni salvate."; -$a->strings["Post to Insanejournal"] = ""; -$a->strings["InsaneJournal Post Settings"] = ""; -$a->strings["Enable InsaneJournal Post Plugin"] = ""; -$a->strings["InsaneJournal username"] = ""; -$a->strings["InsaneJournal password"] = ""; -$a->strings["Post to InsaneJournal by default"] = ""; -$a->strings["Jappix Mini addon settings"] = ""; -$a->strings["Activate addon"] = ""; -$a->strings["Do not insert the Jappixmini Chat-Widget into the webinterface"] = ""; -$a->strings["Jabber username"] = ""; -$a->strings["Jabber server"] = ""; -$a->strings["Jabber BOSH host"] = ""; -$a->strings["Jabber password"] = ""; -$a->strings["Encrypt Jabber password with Friendica password (recommended)"] = ""; -$a->strings["Friendica password"] = ""; -$a->strings["Approve subscription requests from Friendica contacts automatically"] = ""; -$a->strings["Subscribe to Friendica contacts automatically"] = ""; -$a->strings["Purge internal list of jabber addresses of contacts"] = ""; -$a->strings["Add contact"] = ""; -$a->strings["View Source"] = "Vedi sorgente"; -$a->strings["Post to StatusNet"] = "Invia a StatusNet"; -$a->strings["Please contact your site administrator.
    The provided API URL is not valid."] = "Contatta l'amministratore del sito.
    L'URL delle API fornito non è valido."; -$a->strings["We could not contact the StatusNet API with the Path you entered."] = "Non possiamo conttattare le API di StatusNet con il percorso che hai inserito."; -$a->strings["StatusNet settings updated."] = "Impostazioni StatusNet aggiornate."; -$a->strings["StatusNet Posting Settings"] = "Impostazioni di invio a StatusNet"; -$a->strings["Globally Available StatusNet OAuthKeys"] = "OAuthKeys globali di StatusNet"; -$a->strings["There are preconfigured OAuth key pairs for some StatusNet servers available. If you are useing one of them, please use these credentials. If not feel free to connect to any other StatusNet instance (see below)."] = "Esistono coppie di chiavi OAuth precofigurate per alcuni server StatusNet. Se usi uno di questi server, per favore scegli queste credenziali. Altrimenti sei libero di collegarti a un'altra installazione di StatusNet (vedi sotto)."; -$a->strings["Provide your own OAuth Credentials"] = "Fornisci le tue credenziali OAuth"; -$a->strings["No consumer key pair for StatusNet found. Register your Friendica Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.
    Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorited StatusNet installation."] = "Nessuna coppia di chiavi consumer trovate per StatusNet. Registra il tuo account Friendica come un client desktop nel tuo account StatusNet, copia la coppia di chiavi consumer qui e inserisci l'url base delle API.
    Prima di registrare la tua coppia di chiavi OAuth, chiedi all'amministratore se esiste già una coppia di chiavi per questo sito Friendica presso la tua installazione StatusNet preferita."; -$a->strings["OAuth Consumer Key"] = "OAuth Consumer Key"; -$a->strings["OAuth Consumer Secret"] = "OAuth Consumer Secret"; -$a->strings["Base API Path (remember the trailing /)"] = "Indirizzo di base per le API (ricorda la / alla fine)"; -$a->strings["To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your public posts will be posted to StatusNet."] = "Per collegare il tuo account StatusNet, clicca sul bottone per ottenere un codice di sicurezza da StatusNet, che dovrai copiare nel box sottostante e poi inviare la form. Solo i tuoi messaggi pubblici saranno inviati a StatusNet."; -$a->strings["Log in with StatusNet"] = "Accedi con StatuNet"; -$a->strings["Copy the security code from StatusNet here"] = "Copia il codice di sicurezza da StatusNet qui"; -$a->strings["Cancel Connection Process"] = "Annulla il processo di connessione"; -$a->strings["Current StatusNet API is"] = "Le API StatusNet correnti sono"; -$a->strings["Cancel StatusNet Connection"] = "Annulla la connessione a StatusNet"; -$a->strings["Currently connected to: "] = "Al momento connesso con:"; -$a->strings["If enabled all your public postings can be posted to the associated StatusNet account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Se abilitato tutti i tuoi messaggi pubblici possono essere inviati all'account StatusNet associato. Puoi scegliere di farlo sempre (qui) o ogni volta che invii, nelle impostazioni di privacy del messaggio."; -$a->strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to StatusNet will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = ""; -$a->strings["Allow posting to StatusNet"] = "Permetti l'invio a StatusNet"; -$a->strings["Send public postings to StatusNet by default"] = "Invia sempre i messaggi pubblici a StatusNet"; -$a->strings["Send linked #-tags and @-names to StatusNet"] = ""; -$a->strings["Clear OAuth configuration"] = "Rimuovi la configurazione OAuth"; -$a->strings["API URL"] = "API URL"; -$a->strings["Infinite Improbability Drive"] = ""; -$a->strings["Post to Tumblr"] = "Pubblica su Tumblr"; -$a->strings["Tumblr Post Settings"] = "Impostazioni di invio a Tumblr"; -$a->strings["Enable Tumblr Post Plugin"] = "Abilita Plugin Tumblr"; -$a->strings["Tumblr login"] = "Tumblr login"; -$a->strings["Tumblr password"] = "Tumblr password"; -$a->strings["Post to Tumblr by default"] = "Pubblica su Tumblr di default"; -$a->strings["Numfriends settings updated."] = "Impostazioni \"Numfriends' aggiornate."; -$a->strings["Numfriends Settings"] = "Impostazioni Numfriends"; -$a->strings["Gnot settings updated."] = "Impostazioni di \"Gnot\" aggiornate."; -$a->strings["Gnot Settings"] = "Impostazioni Gnot"; -$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "Permetti di raggruppare le notifiche dei commenti in thread su Gmail e anonimizza l'oggetto"; -$a->strings["Enable this plugin/addon?"] = "Abilita questo plugin?"; -$a->strings["[Friendica:Notify] Comment to conversation #%d"] = "[Friendica:Notifica] Commento alla conversazione #%d"; -$a->strings["Post to Wordpress"] = "Pubblica su Wordpress"; -$a->strings["WordPress Post Settings"] = "Impostazioni invio a WordPress"; -$a->strings["Enable WordPress Post Plugin"] = "Abilita plugin \"invia a WordPress\""; -$a->strings["WordPress username"] = "nome utente WordPress"; -$a->strings["WordPress password"] = "password WordPress"; -$a->strings["WordPress API URL"] = "WordPress API URL"; -$a->strings["Post to WordPress by default"] = "Pubblica su WordPress di default"; -$a->strings["Provide a backlink to the Friendica post"] = ""; -$a->strings["Read the original post and comment stream on Friendica"] = ""; -$a->strings["\"Show more\" Settings"] = "Impostazioni \"Mostra altro\""; -$a->strings["Enable Show More"] = "Abilita \"Mostra altro\""; -$a->strings["Cutting posts after how much characters"] = ""; -$a->strings["Show More Settings saved."] = "Impostazioni \"Mostra altro\" salvate."; -$a->strings["This website is tracked using the Piwik analytics tool."] = "Questo sito è monitorato con lo strumento di analisi Piwik."; -$a->strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = "Se non vuoi che le tue visite vengono registrate in questo modo è possibile impostare un cookie per evitare che Piwik rintracci ulteriori visite del sito (opt-out)."; -$a->strings["Piwik Base URL"] = "Piwik Base URL"; -$a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = ""; -$a->strings["Site ID"] = "Site ID"; -$a->strings["Show opt-out cookie link?"] = "Mostra il link per il cookie opt-out?"; -$a->strings["Asynchronous tracking"] = ""; -$a->strings["Post to Twitter"] = "Invia a Twitter"; -$a->strings["Twitter settings updated."] = "Impostazioni di Twitter aggiornate."; -$a->strings["Twitter Posting Settings"] = "Impostazioni di invio a Twitter"; -$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Nessuna coppia di chiavi per Twitter trovata. Contatta l'amministratore del sito."; -$a->strings["At this Friendica instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your public posts will be posted to Twitter."] = "Il plugin Twitter è abilitato ma non hai ancora collegato i tuoi account Friendica e Twitter. Per farlo, clicca il bottone qui sotto per ricevere un PIN da Twitter che dovrai copiare nel campo qui sotto. Solo i tuoi post pubblici saranno inviati a Twitter."; -$a->strings["Log in with Twitter"] = "Accedi con Twitter"; -$a->strings["Copy the PIN from Twitter here"] = "Copia il PIN da Twitter qui"; -$a->strings["If enabled all your public postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Se abilitato tutti i tuoi messaggi pubblici possono essere inviati all'account Twitter associato. Puoi scegliere di farlo sempre (qui) o ogni volta che invii, nelle impostazioni di privacy del messaggio."; -$a->strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = ""; -$a->strings["Allow posting to Twitter"] = "Permetti l'invio a Twitter"; -$a->strings["Send public postings to Twitter by default"] = "Invia sempre i messaggi pubblici a Twitter"; -$a->strings["Send linked #-tags and @-names to Twitter"] = ""; -$a->strings["Consumer key"] = "Consumer key"; -$a->strings["Consumer secret"] = "Consumer secret"; -$a->strings["IRC Settings"] = "Impostazioni IRC"; -$a->strings["Channel(s) to auto connect (comma separated)"] = "Canali a cui autocollegarsi (separati da virgola)"; -$a->strings["Popular Channels (comma separated)"] = "Canali popolari (separati da virgola)"; -$a->strings["IRC settings saved."] = "Impostazioni IRC salvate."; -$a->strings["IRC Chatroom"] = "Stanza IRC"; -$a->strings["Popular Channels"] = "Canali Popolari"; -$a->strings["Fromapp settings updated."] = ""; -$a->strings["FromApp Settings"] = ""; -$a->strings["The application name you would like to show your posts originating from."] = ""; -$a->strings["Use this application name even if another application was used."] = ""; -$a->strings["Post to blogger"] = "Posta su blogger"; -$a->strings["Blogger Post Settings"] = "Impostazioni post per blogger"; -$a->strings["Enable Blogger Post Plugin"] = "Abilita il plugin Blogger"; -$a->strings["Blogger username"] = "Blogger username"; -$a->strings["Blogger password"] = "Blogger password"; -$a->strings["Blogger API URL"] = "Blogger API URL"; -$a->strings["Post to Blogger by default"] = ""; -$a->strings["Post to Posterous"] = "Invia a Posterous"; -$a->strings["Posterous Post Settings"] = "Impostazioni di invio a Posterous"; -$a->strings["Enable Posterous Post Plugin"] = "Abilita il plugin di invio a Posterous"; -$a->strings["Posterous login"] = "Posterous login"; -$a->strings["Posterous password"] = "Posterous password"; -$a->strings["Posterous site ID"] = ""; -$a->strings["Posterous API token"] = ""; -$a->strings["Post to Posterous by default"] = "Invia sempre a Posterous"; +$a->strings["Reset"] = "Reimposta"; +$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'import è fallito."; +$a->strings["Channel clone failed. Import failed."] = "Impossibile clonare il canale. L'import è fallito."; +$a->strings["Cloned channel not found. Import failed."] = "Impossibile trovare il canale clonato. L'import è fallito."; +$a->strings["Import completed."] = "L'import è terminato 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["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."] = "Per passare ad un altro canale selezionalo"; +$a->strings["Default Channel"] = "Canale predefinito"; +$a->strings["Make Default"] = "Rendi predefinito"; +$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:"] = "i tuoi interessi:"; +$a->strings["Contact settings applied."] = "Contatto modificato."; +$a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate."; +$a->strings["Contact not found."] = "Contatto non trovato."; +$a->strings["Repair Contact Settings"] = "Ripara le impostazioni del contatto"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più"; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Usa adesso il tasto 'Indietro' del tuo browser se non c'è certezza assoluta."; +$a->strings["Return to contact editor"] = "Ritorna alla modifica del contatto"; +$a->strings["Account Nickname"] = "Nome utente"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - sostituirà il nome utente"; +$a->strings["Account URL"] = "URL dell'utente"; +$a->strings["Friend Request URL"] = "URL di richiesta amicizia"; +$a->strings["Friend Confirm URL"] = "URL di conferma amicizia"; +$a->strings["Notification Endpoint URL"] = "URL per le notifiche"; +$a->strings["Poll/Feed URL"] = "URL del feed"; +$a->strings["New photo from this URL"] = "Nuova foto da questo URL"; +$a->strings["invalid target signature"] = "firma riscontrata non valida"; +$a->strings["Channel added."] = "Canale aggiunto."; +$a->strings["Contacts who are not members of a group"] = "Contatti che non sono in nessun gruppo"; +$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."; +$a->strings["Image exceeds size limit of %d"] = "La dimensione dell'immagine supera il limite di %d"; +$a->strings["Unable to process image."] = "Impossibile elaborare l'immagine."; +$a->strings["Photo not available."] = "Foto non disponibile."; +$a->strings["Upload File:"] = "Carica un file:"; +$a->strings["Select a profile:"] = "Seleziona un profilo:"; +$a->strings["Upload Profile Photo"] = "Carica la foto del profilo"; +$a->strings["Upload"] = "Carica"; +$a->strings["skip this step"] = "salta questo passaggio"; +$a->strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; +$a->strings["Crop Image"] = "Ritaglia immagine"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'immagine per migliorarne la visualizzazione."; +$a->strings["Done Editing"] = "Finito"; +$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["Item not found"] = "Elemento non trovato"; +$a->strings["Edit post"] = "Modifica articolo"; +$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["Invalid request identifier."] = "L'identificativo della richiesta non è valido."; +$a->strings["System"] = "Sistema"; +$a->strings["Introductions"] = "Richieste di amicizia"; +$a->strings["Show Ignored Requests"] = "Mostra le richieste ignorate"; +$a->strings["Hide Ignored Requests"] = "Nascondi le richieste ignorate"; +$a->strings["Notification type: "] = "Tipo di notifica: "; +$a->strings["Friend Suggestion"] = "Suggerimento di amicizia"; +$a->strings["suggested by %s"] = "suggerito da %s"; +$a->strings["Claims to be known to you: "] = "Dice di conoscerti: "; +$a->strings["yes"] = "si"; +$a->strings["no"] = "no"; +$a->strings["Approve as: "] = "Approva come: "; +$a->strings["Friend"] = "Amico"; +$a->strings["Sharer"] = ""; +$a->strings["Fan/Admirer"] = "Fan/Ammiratore"; +$a->strings["Friend/Connect Request"] = "Richiesta di amicizia"; +$a->strings["New Follower"] = "Nuovo follower"; +$a->strings["No introductions."] = "Nessuna richiesta di amicizia."; +$a->strings["%s liked %s's post"] = "A %s è piaciuto l'articolo di %s"; +$a->strings["%s disliked %s's post"] = "A %s non è piaciuto l'articolo di %s"; +$a->strings["%s is now friends with %s"] = "%s è ora amico di %s"; +$a->strings["%s created a new post"] = "%s ha creato un nuovo articolo"; +$a->strings["%s commented on %s's post"] = "%s ha commentato l'articolo di %s"; +$a->strings["No more network notifications."] = "Non ci sono nuove notifiche dalla rete."; +$a->strings["Network Notifications"] = "Notifiche dalla rete"; +$a->strings["No more system notifications."] = "Non ci sono nuove notifiche di sistema."; +$a->strings["System Notifications"] = "Notifiche di sistema"; +$a->strings["No more personal notifications."] = "Non ci sono nuove notifiche personali."; +$a->strings["Personal Notifications"] = "Notifiche personali"; +$a->strings["No more home notifications."] = "Non ci sono nuove notifiche dalla bacheca."; +$a->strings["Home Notifications"] = "Notifiche dalla bacheca"; +$a->strings["Post successful."] = "Inviato!"; +$a->strings["Item is not editable"] = "L'elemento non è modificabile"; +$a->strings["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato."; +$a->strings["Poke/Prod"] = ""; +$a->strings["poke, prod or do other things to somebody"] = ""; +$a->strings["Recipient"] = "Destinatario"; +$a->strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi mandare al destinatario"; +$a->strings["Make this post private"] = "Rendi privato questo articolo"; +$a->strings["Not available."] = "Non disponibile."; +$a->strings["Community"] = "Comunità"; +$a->strings["No results."] = "Nessun risultato."; +$a->strings["Files"] = "Elenco file"; +$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["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 Contacts (with secure profile access)"] = "Tutti i contatti (con profilo ad accesso sicuro)"; +$a->strings["Version %s"] = "Versione %s"; +$a->strings["Installed plugins/addons/apps:"] = "App e componanti aggiuntivi instalati:"; +$a->strings["No installed plugins/addons/apps"] = "Nessuna app o componente aggiuntivo installato"; +$a->strings["Red"] = "Red"; +$a->strings["This is Red - another decentralized, distributed communications project by the folks at Friendica."] = "Questo è Red - un progetto di comunicazione decentralizzata e distribuita dagli autori di Friendica."; +$a->strings["Running at web location"] = "In esecuzione sull'indirizzo web"; +$a->strings["Please visit Friendica.com to learn more about the Friendica and/or Red project."] = "Visita Friendica.com per scoprire di più sul progetto Red o sul progetto Friendica."; +$a->strings["Bug reports and issues: please visit"] = "Per segnalare bug e problemi: visita"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Per suggerimenti, ringraziamenti, donazioni, ecc - scrivi a \"info chiocciola friendica punto com\""; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore."; +$a->strings["Ignore/Hide"] = "Ignora/nascondi"; +$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "È stato superato il numero massimo giornaliero di registrazioni su 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["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["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["Please login."] = "Accedi."; +$a->strings["Remove My Account"] = "Elimina il mio account"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo."; +$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; +$a->strings["Mood"] = "Umore"; +$a->strings["Set your current mood and tell your friends"] = "Scegli il tuo umore attuale per mostrarlo agli amici"; $a->strings["Theme settings"] = "Impostazioni tema"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = ""; -$a->strings["Set font-size for posts and comments"] = ""; -$a->strings["Set theme width"] = ""; -$a->strings["Color scheme"] = "Schema colori"; -$a->strings["Your posts and conversations"] = "I tuoi messaggi e le tue conversazioni"; -$a->strings["Your profile page"] = "Pagina del tuo profilo"; -$a->strings["Your contacts"] = ""; -$a->strings["Your photos"] = "Le tue foto"; -$a->strings["Your events"] = "I tuoi eventi"; -$a->strings["Personal notes"] = "Note personali"; -$a->strings["Your personal photos"] = "Le tue foto personali"; -$a->strings["Community Pages"] = ""; -$a->strings["Community Profiles"] = ""; -$a->strings["Last users"] = "Ultimi utenti"; -$a->strings["Last likes"] = "Ultimi \"mi piace\""; -$a->strings["Last photos"] = "Ultime foto"; -$a->strings["Find Friends"] = "Trova Amici"; -$a->strings["Local Directory"] = "Elenco Locale"; -$a->strings["Similar Interests"] = "Interessi simili"; -$a->strings["Invite Friends"] = "Invita amici"; -$a->strings["Earth Layers"] = ""; -$a->strings["Set zoomfactor for Earth Layers"] = ""; -$a->strings["Set longitude (X) for Earth Layers"] = ""; -$a->strings["Set latitude (Y) for Earth Layers"] = ""; -$a->strings["Help or @NewHere ?"] = "Serve aiuto? Sei nuovo?"; -$a->strings["Connect Services"] = "Servizi di conessione"; -$a->strings["Last Tweets"] = ""; -$a->strings["Set twitter search term"] = ""; -$a->strings["don't show"] = "non mostrare"; -$a->strings["show"] = "mostra"; -$a->strings["Show/hide boxes at right-hand column:"] = ""; -$a->strings["Set line-height for posts and comments"] = ""; -$a->strings["Set resolution for middle column"] = ""; -$a->strings["Set color scheme"] = ""; -$a->strings["Set zoomfactor for Earth Layer"] = ""; -$a->strings["Last tweets"] = ""; -$a->strings["Alignment"] = "Allineamento"; -$a->strings["Left"] = "Sinistra"; -$a->strings["Center"] = "Centrato"; -$a->strings["Set colour scheme"] = ""; -$a->strings["j F, Y"] = "j F Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Compleanno:"; -$a->strings["Age:"] = "Età:"; -$a->strings["for %1\$d %2\$s"] = ""; -$a->strings["Tags:"] = "Tag:"; -$a->strings["Religion:"] = "Religione:"; -$a->strings["Hobbies/Interests:"] = "Hobby/Interessi:"; -$a->strings["Contact information and Social Networks:"] = "Informazioni su contatti e social network:"; -$a->strings["Musical interests:"] = "Interessi musicali:"; -$a->strings["Books, literature:"] = "Libri, letteratura:"; -$a->strings["Television:"] = "Televisione:"; -$a->strings["Film/dance/culture/entertainment:"] = "Film/danza/cultura/intrattenimento:"; -$a->strings["Love/Romance:"] = "Amore:"; -$a->strings["Work/employment:"] = "Lavoro:"; -$a->strings["School/education:"] = "Scuola:"; -$a->strings["Unknown | Not categorised"] = "Sconosciuto | non categorizzato"; -$a->strings["Block immediately"] = "Blocca immediatamente"; -$a->strings["Shady, spammer, self-marketer"] = "Shady, spammer, self-marketer"; -$a->strings["Known to me, but no opinion"] = "Lo conosco, ma non ho un'opinione particolare"; -$a->strings["OK, probably harmless"] = "E' ok, probabilmente innocuo"; -$a->strings["Reputable, has my trust"] = "Rispettabile, ha la mia fiducia"; -$a->strings["Frequently"] = "Frequentemente"; -$a->strings["Hourly"] = "Ogni ora"; -$a->strings["Twice daily"] = "Due volte al dì"; -$a->strings["OStatus"] = "Ostatus"; -$a->strings["RSS/Atom"] = "RSS / Atom"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["Male"] = "Maschio"; -$a->strings["Female"] = "Femmina"; -$a->strings["Currently Male"] = "Al momento maschio"; -$a->strings["Currently Female"] = "Al momento femmina"; -$a->strings["Mostly Male"] = "Prevalentemente maschio"; -$a->strings["Mostly Female"] = "Prevalentemente femmina"; -$a->strings["Transgender"] = "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"] = "Nessuna preferenza"; -$a->strings["Bisexual"] = "Bisessuale"; -$a->strings["Autosexual"] = "Autosessuale"; -$a->strings["Abstinent"] = "Astinente"; -$a->strings["Virgin"] = "Vergine"; -$a->strings["Deviant"] = "Deviato"; -$a->strings["Fetish"] = "Fetish"; -$a->strings["Oodles"] = "Un sacco"; -$a->strings["Nonsexual"] = "Asessuato"; -$a->strings["Single"] = "Single"; -$a->strings["Lonely"] = "Solitario"; -$a->strings["Available"] = "Disponibile"; -$a->strings["Unavailable"] = "Non disponibile"; -$a->strings["Has crush"] = ""; -$a->strings["Infatuated"] = ""; -$a->strings["Dating"] = "Disponibile a un incontro"; -$a->strings["Unfaithful"] = "Infedele"; -$a->strings["Sex Addict"] = "Sesso-dipendente"; -$a->strings["Friends"] = "Amici"; -$a->strings["Friends/Benefits"] = "Amici con benefici"; -$a->strings["Casual"] = "Casual"; -$a->strings["Engaged"] = "Impegnato"; -$a->strings["Married"] = "Sposato"; -$a->strings["Imaginarily married"] = ""; -$a->strings["Partners"] = "Partners"; -$a->strings["Cohabiting"] = "Coinquilino"; -$a->strings["Common law"] = ""; -$a->strings["Happy"] = "Felice"; -$a->strings["Not looking"] = ""; -$a->strings["Swinger"] = "Scambista"; -$a->strings["Betrayed"] = "Tradito"; -$a->strings["Separated"] = "Separato"; -$a->strings["Unstable"] = "Instabile"; -$a->strings["Divorced"] = "Divorziato"; -$a->strings["Imaginarily divorced"] = ""; -$a->strings["Widowed"] = "Vedovo"; -$a->strings["Uncertain"] = "Incerto"; -$a->strings["It's complicated"] = ""; -$a->strings["Don't care"] = "Non interessa"; -$a->strings["Ask me"] = "Chiedimelo"; -$a->strings["Starts:"] = "Inizia:"; -$a->strings["Finishes:"] = "Finisce:"; -$a->strings["(no subject)"] = "(nessun oggetto)"; -$a->strings[" on Last.fm"] = ""; -$a->strings["prev"] = "prec"; -$a->strings["first"] = "primo"; -$a->strings["last"] = "ultimo"; -$a->strings["next"] = "succ"; -$a->strings["newer"] = ""; -$a->strings["older"] = ""; -$a->strings["No contacts"] = "Nessun contatto"; -$a->strings["%d Contact"] = array( - 0 => "%d contatto", - 1 => "%d contatti", -); -$a->strings["poke"] = ""; -$a->strings["poked"] = ""; -$a->strings["ping"] = ""; -$a->strings["pinged"] = ""; -$a->strings["prod"] = ""; -$a->strings["prodded"] = ""; -$a->strings["slap"] = ""; -$a->strings["slapped"] = ""; -$a->strings["finger"] = ""; -$a->strings["fingered"] = ""; -$a->strings["rebuff"] = ""; -$a->strings["rebuffed"] = ""; -$a->strings["happy"] = ""; -$a->strings["sad"] = ""; -$a->strings["mellow"] = ""; -$a->strings["tired"] = ""; -$a->strings["perky"] = ""; -$a->strings["angry"] = ""; -$a->strings["stupified"] = ""; -$a->strings["puzzled"] = ""; -$a->strings["interested"] = ""; -$a->strings["bitter"] = ""; -$a->strings["cheerful"] = ""; -$a->strings["alive"] = ""; -$a->strings["annoyed"] = ""; -$a->strings["anxious"] = ""; -$a->strings["cranky"] = ""; -$a->strings["disturbed"] = ""; -$a->strings["frustrated"] = ""; -$a->strings["motivated"] = ""; -$a->strings["relaxed"] = ""; -$a->strings["surprised"] = ""; -$a->strings["January"] = "Gennaio"; -$a->strings["February"] = "Febbraio"; -$a->strings["March"] = "Marzo"; -$a->strings["April"] = "Aprile"; -$a->strings["May"] = "Maggio"; -$a->strings["June"] = "Giugno"; -$a->strings["July"] = "Luglio"; -$a->strings["August"] = "Agosto"; -$a->strings["September"] = "Settembre"; -$a->strings["October"] = "Ottobre"; -$a->strings["November"] = "Novembre"; -$a->strings["December"] = "Dicembre"; -$a->strings["bytes"] = "bytes"; -$a->strings["Click to open/close"] = "Clicca per aprire/chiudere"; -$a->strings["default"] = "default"; -$a->strings["Select an alternate language"] = "Seleziona una diversa lingua"; -$a->strings["activity"] = "attività"; -$a->strings["post"] = "messaggio"; -$a->strings["Item filed"] = ""; -$a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*"; -$a->strings["Attachments:"] = "Allegati:"; -$a->strings["view full size"] = "vedi a schermo intero"; -$a->strings["Embedded content"] = "Contenuto incorporato"; -$a->strings["Embedding disabled"] = "Embed disabilitato"; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso."; -$a->strings["Default privacy group for new contacts"] = ""; -$a->strings["Everybody"] = "Tutti"; -$a->strings["edit"] = "modifica"; -$a->strings["Edit group"] = "Modifica gruppo"; -$a->strings["Create a new group"] = "Crea un nuovo gruppo"; -$a->strings["Contacts not in any group"] = "Contatti in nessun gruppo."; -$a->strings["Logout"] = "Esci"; -$a->strings["End this session"] = "Finisci questa sessione"; -$a->strings["Status"] = "Stato"; -$a->strings["Sign in"] = "Entra"; -$a->strings["Home Page"] = "Home Page"; -$a->strings["Create an account"] = "Crea un account"; -$a->strings["Help and documentation"] = "Guida e documentazione"; -$a->strings["Apps"] = "Applicazioni"; -$a->strings["Addon applications, utilities, games"] = "Applicazioni, utilità e giochi aggiuntivi"; -$a->strings["Search site content"] = "Cerca nel contenuto del sito"; -$a->strings["Conversations on this site"] = "Conversazioni su questo sito"; -$a->strings["Directory"] = "Elenco"; -$a->strings["People directory"] = "Elenco delle persone"; -$a->strings["Conversations from your friends"] = "Conversazioni dai tuoi amici"; -$a->strings["Friend Requests"] = "Richieste di amicizia"; -$a->strings["See all notifications"] = "Vedi tutte le notifiche"; -$a->strings["Mark all system notifications seen"] = ""; -$a->strings["Private mail"] = "Posta privata"; -$a->strings["Inbox"] = "In arrivo"; -$a->strings["Outbox"] = "Inviati"; -$a->strings["Manage"] = "Gestisci"; -$a->strings["Manage other pages"] = "Gestisci altre pagine"; -$a->strings["Profiles"] = "Profili"; -$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili"; -$a->strings["Manage/edit friends and contacts"] = "Gestisci/modifica amici e contatti"; -$a->strings["Site setup and configuration"] = "Configurazione del sito"; -$a->strings["Nothing new here"] = "Niente di nuovo qui"; -$a->strings["Add New Contact"] = "Aggiungi nuovo contatto"; -$a->strings["Enter address or web location"] = "Inserisci posizione o indirizzo web"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esempio: bob@example.com, http://example.com/barbara"; -$a->strings["%d invitation available"] = array( - 0 => "%d invito disponibile", - 1 => "%d inviti disponibili", -); -$a->strings["Find People"] = "Trova persone"; -$a->strings["Enter name or interest"] = "Inserisci un nome o un interesse"; -$a->strings["Connect/Follow"] = "Connetti/segui"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esempi: Mario Rossi, Pesca"; -$a->strings["Random Profile"] = "Profilo causale"; -$a->strings["Networks"] = "Reti"; -$a->strings["All Networks"] = "Tutte le Reti"; -$a->strings["Saved Folders"] = "Cartelle Salvate"; -$a->strings["Everything"] = "Tutto"; -$a->strings["Categories"] = "Categorie"; -$a->strings["Logged out."] = "Uscita effettuata."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto."; -$a->strings["The error message was:"] = "Il messaggio riportato era:"; -$a->strings["Miscellaneous"] = "Varie"; -$a->strings["year"] = "anno"; -$a->strings["month"] = "mese"; -$a->strings["day"] = "giorno"; -$a->strings["never"] = "mai"; -$a->strings["less than a second ago"] = "meno di un secondo fa"; -$a->strings["week"] = "settimana"; -$a->strings["hour"] = "ora"; -$a->strings["hours"] = "ore"; -$a->strings["minute"] = "minuto"; -$a->strings["minutes"] = "minuti"; -$a->strings["second"] = "secondo"; -$a->strings["seconds"] = "secondi"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s fa"; -$a->strings["%s's birthday"] = ""; -$a->strings["Happy Birthday %s"] = ""; -$a->strings["From: "] = "Da: "; -$a->strings["Image/photo"] = "Immagine/foto"; -$a->strings["$1 wrote:"] = "$1 ha scritto:"; -$a->strings["Encrypted content"] = ""; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; -$a->strings["[no subject]"] = "[nessun oggetto]"; -$a->strings["Visible to everybody"] = "Visibile a tutti"; -$a->strings["Friendica Notification"] = "Notifica Friendica"; -$a->strings["Thank You,"] = "Grazie,"; -$a->strings["%s Administrator"] = "Amministratore %s"; -$a->strings["%s "] = "%s "; -$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s"; -$a->strings["%1\$s sent you a new private message at %2\$s."] = ""; -$a->strings["%1\$s sent you %2\$s."] = ""; -$a->strings["a private message"] = "un messaggio privato"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Visita %s per vedere e/o rispodere ai tuoi messaggi privati."; -$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = ""; -$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = ""; -$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = ""; -$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = ""; -$a->strings["%s commented on an item/conversation you have been following."] = "%s ha commentato un elemento che stavi seguendo."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per vedere e/o commentare la conversazione"; -$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notifica] %s ha scritto sulla tua bacheca"; -$a->strings["%1\$s posted to your profile wall at %2\$s"] = ""; -$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = ""; -$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notifica] %s ti ha taggato"; -$a->strings["%1\$s tagged you at %2\$s"] = ""; -$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = ""; -$a->strings["[Friendica:Notify] %1\$s poked you"] = ""; -$a->strings["%1\$s poked you at %2\$s"] = ""; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = ""; -$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notifica] %s ha taggato un tuo messaggio"; -$a->strings["%1\$s tagged your post at %2\$s"] = ""; -$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = ""; -$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notifica] Hai ricevuto una presentazione"; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = ""; -$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = ""; -$a->strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo presso %s"; -$a->strings["Please visit %s to approve or reject the introduction."] = "Visita %s per approvare o rifiutare la presentazione."; -$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia"; -$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = ""; -$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = ""; -$a->strings["Name:"] = "Nome:"; -$a->strings["Photo:"] = "Foto:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento."; -$a->strings["Connect URL missing."] = "URL di connessione mancante."; -$a->strings["This site is not configured to allow communications with other networks."] = "Questo sito non è configurato per permettere la comunicazione con altri network."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Non sono stati trovati protocolli di comunicazione o feed compatibili."; -$a->strings["The profile address specified does not provide adequate information."] = "L'indirizzo del profilo specificato non fornisce adeguate informazioni."; -$a->strings["An author or name was not found."] = "Non è stato trovato un nome o un autore"; -$a->strings["No browser URL could be matched to this address."] = "Nessun URL puo' essere associato a questo indirizzo."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = ""; -$a->strings["Use mailto: in front of address to force email check."] = ""; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te."; -$a->strings["Unable to retrieve contact information."] = "Impossibile recuperare informazioni sul contatto."; -$a->strings["following"] = "segue"; -$a->strings["A new person is sharing with you at "] = "Una nuova persona sta condividendo con te da "; -$a->strings["You have a new follower at "] = "Una nuova persona ti segue su "; -$a->strings["Archives"] = ""; -$a->strings["An invitation is required."] = "E' richiesto un invito."; -$a->strings["Invitation could not be verified."] = "L'invito non puo' essere verificato."; -$a->strings["Invalid OpenID url"] = "Url OpenID non valido"; -$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste."; -$a->strings["Please use a shorter name."] = "Usa un nome più corto."; -$a->strings["Name too short."] = "Il nome è troppo corto."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Questo non sembra essere il tuo nome completo (Nome Cognome)."; -$a->strings["Your email domain is not among those allowed on this site."] = "Il dominio della tua email non è tra quelli autorizzati su questo sito."; -$a->strings["Not a valid email address."] = "L'indirizzo email non è valido."; -$a->strings["Cannot use that email."] = "Non puoi usare quell'email."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Il tuo nome utente puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera."; -$a->strings["Nickname is already registered. Please choose another."] = "Nome utente già registrato. Scegline un altro."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita."; -$a->strings["An error occurred during registration. Please try again."] = "C'è stato un errore durante la registrazione. Prova ancora."; -$a->strings["An error occurred creating your default profile. Please try again."] = "C'è stato un errore nella creazione del tuo profilo. Prova ancora."; -$a->strings["Welcome "] = "Ciao"; -$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo."; -$a->strings["Welcome back "] = "Ciao "; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = ""; -$a->strings["stopped following"] = ""; -$a->strings["Poke"] = ""; -$a->strings["View Status"] = "Visualizza stato"; -$a->strings["View Profile"] = "Visualizza profilo"; -$a->strings["View Photos"] = "Visualizza foto"; -$a->strings["Network Posts"] = ""; -$a->strings["Edit Contact"] = "Modifica contatti"; -$a->strings["Send PM"] = "Invia messaggio privato"; -$a->strings["%1\$s poked %2\$s"] = ""; -$a->strings["post/item"] = "post/elemento"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s ha segnato il/la %3\$s di %2\$s come preferito"; -$a->strings["Categories:"] = ""; -$a->strings["Filed under:"] = ""; -$a->strings["remove"] = "rimuovi"; -$a->strings["Delete Selected Items"] = "Cancella elementi selezionati"; -$a->strings["%s likes this."] = "Piace a %s."; -$a->strings["%s doesn't like this."] = "Non piace a %s."; -$a->strings["%2\$d people like this."] = "Piace a %2\$d persone."; -$a->strings["%2\$d people don't like this."] = "Non piace a %2\$d persone."; -$a->strings["and"] = "e"; -$a->strings[", and %d other people"] = "e altre %d persone"; -$a->strings["%s like this."] = "Piace a %s."; -$a->strings["%s don't like this."] = "Non piace a %s."; -$a->strings["Visible to everybody"] = "Visibile a tutti"; -$a->strings["Please enter a video link/URL:"] = "Inserisci un collegamento video / URL:"; -$a->strings["Please enter an audio link/URL:"] = "Inserisci un collegamento audio / URL:"; -$a->strings["Tag term:"] = "Tag:"; -$a->strings["Where are you right now?"] = "Dove sei ora?"; -$a->strings["upload photo"] = "carica foto"; -$a->strings["attach file"] = "allega file"; -$a->strings["web link"] = "link web"; -$a->strings["Insert video link"] = "Inserire collegamento video"; -$a->strings["video link"] = "link video"; -$a->strings["Insert audio link"] = "Inserisci collegamento audio"; -$a->strings["audio link"] = "link audio"; -$a->strings["set location"] = "posizione"; -$a->strings["clear location"] = "canc. pos."; -$a->strings["permissions"] = "permessi"; -$a->strings["Click here to upgrade."] = ""; -$a->strings["This action exceeds the limits set by your subscription plan."] = ""; -$a->strings["This action is not available under your subscription plan."] = ""; -$a->strings["Delete this item?"] = "Cancellare questo elemento?"; -$a->strings["show fewer"] = "mostra di meno"; -$a->strings["Update %s failed. See error logs."] = ""; -$a->strings["Update Error at %s"] = ""; +$a->strings["Set font-size for posts and comments"] = "Scegli le dimensioni del carattere per articoli e commenti"; +$a->strings["Set line-height for posts and comments"] = "Scegli l'altezza della riga per articoli e commenti"; +$a->strings["Set colour scheme"] = "Scegli lo schema di colore"; +$a->strings["Draw shadows"] = "Aggiungi l'ombreggiatura"; +$a->strings["Navigation bar colour"] = "Colore della barra di navigazione"; +$a->strings["Display style"] = "Stile di visualizzazione"; +$a->strings["Display colour of links - hex value, do not include the #"] = "Scegli il colore dei link - in esadecimale, senza #"; +$a->strings["Icons"] = "Icone"; +$a->strings["Shiny style"] = "Effetto lucido"; +$a->strings["Corner radius"] = "Raggio dell'angolo"; +$a->strings["0-99 default: 5"] = "0-99 predefinito: 5"; +$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 a New Account"] = "Crea un nuovo account"; -$a->strings["Nickname or Email address: "] = "Nome utente o indirizzo email: "; -$a->strings["Password: "] = "Password: "; -$a->strings["Or login using OpenID: "] = "O entra con OpenID:"; +$a->strings["Password"] = "Password"; +$a->strings["Remember me"] = "Ricorda i miei dati"; $a->strings["Forgot your password?"] = "Hai dimenticato la password?"; -$a->strings["Requested account is not available."] = ""; -$a->strings["Edit profile"] = "Modifica il profilo"; -$a->strings["Message"] = "Messaggio"; -$a->strings["g A l F d"] = "g A l d F"; +$a->strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile."; +$a->strings[" Sorry, you don't have the permission to view this profile. "] = "Purtroppo non hai il permesso di vedere questo profilo."; +$a->strings["Profiles"] = "Profili"; +$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili"; +$a->strings["Edit Profile"] = "Modifica il profilo"; $a->strings["F d"] = "d F"; -$a->strings["[today]"] = "[oggi]"; $a->strings["Birthday Reminders"] = "Promemoria compleanni"; $a->strings["Birthdays this week:"] = "Compleanni questa settimana:"; $a->strings["[No description]"] = "[Nessuna descrizione]"; $a->strings["Event Reminders"] = "Promemoria"; $a->strings["Events this week:"] = "Eventi di questa settimana:"; -$a->strings["Status Messages and Posts"] = ""; -$a->strings["Profile Details"] = ""; -$a->strings["Events and Calendar"] = ""; -$a->strings["Only You Can See This"] = ""; +$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["Events and Calendar"] = "Calendario eventi"; +$a->strings["Webpages"] = "Pagine web"; +$a->strings["Manage Webpages"] = "Gestisci le pagine web"; +$a->strings["toggle mobile"] = "attiva/disattiva versione mobile"; -- cgit v1.2.3 From add03b64985f79aa268514854e91d96b6880bb3d Mon Sep 17 00:00:00 2001 From: "p.tacconi" Date: Tue, 20 Aug 2013 11:20:16 +0200 Subject: First version of Italian translation --- view/it/messages.po | 6 +++--- view/it/strings.php | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/view/it/messages.po b/view/it/messages.po index b1db443d3..9da9c03da 100644 --- a/view/it/messages.po +++ b/view/it/messages.po @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: Red Matrix\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-08-16 00:01-0700\n" -"PO-Revision-Date: 2013-08-19 11:56+0000\n" +"PO-Revision-Date: 2013-08-20 06:55+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" @@ -4359,11 +4359,11 @@ msgstr "Cerca risultati con:" #: ../../mod/network.php:430 msgid "No such group" -msgstr "" +msgstr "Impossibile trovare il gruppo" #: ../../mod/network.php:441 msgid "Group is empty" -msgstr "" +msgstr "Il gruppo è vuoto" #: ../../mod/network.php:456 msgid "Contact: " diff --git a/view/it/strings.php b/view/it/strings.php index 500e22f8e..cfd70a220 100644 --- a/view/it/strings.php +++ b/view/it/strings.php @@ -1032,8 +1032,8 @@ $a->strings["Former Friends"] = "Ex amici"; $a->strings["Acquaintances"] = "Conoscenti"; $a->strings["Everybody"] = "Tutti"; $a->strings["Search Results For:"] = "Cerca risultati con:"; -$a->strings["No such group"] = ""; -$a->strings["Group is empty"] = ""; +$a->strings["No such group"] = "Impossibile trovare il gruppo"; +$a->strings["Group is empty"] = "Il gruppo è vuoto"; $a->strings["Contact: "] = "Contatto:"; $a->strings["Invalid contact."] = "Contatto non valido."; $a->strings["Theme settings updated."] = "Le impostazioni del tema sono state aggiornate."; -- cgit v1.2.3 From 02a36948685737afdbbb9a292a338b304bb5cc04 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 20 Aug 2013 19:51:58 -0700 Subject: fix superblock for comments --- include/ItemObject.php | 4 ++-- include/conversation.php | 14 ++++++++++++++ version.inc | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/include/ItemObject.php b/include/ItemObject.php index 8c8c0ee2a..22b191e79 100644 --- a/include/ItemObject.php +++ b/include/ItemObject.php @@ -39,10 +39,10 @@ class Item extends BaseObject { foreach($data['children'] as $item) { /* - * Only add thos that will be displayed + * Only add those that will be displayed */ - if(! visible_activity($item)) { + if((! visible_activity($item)) || array_key_exists('author_blocked',$item)) { continue; } diff --git a/include/conversation.php b/include/conversation.php index aade06b8a..9dab5931b 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -712,6 +712,8 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional') { $threads = array(); foreach($items as $item) { + // Check for any blocked authors + if($arr_blocked) { $blocked = false; foreach($arr_blocked as $b) { @@ -724,6 +726,18 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional') { continue; } + // Check all the kids too + + if($arr_blocked && $item['children']) { + for($d = 0; $d < count($item['children']); $d ++) { + foreach($arr_blocked as $b) { + if(($b) && ($item['children'][$d]['author_xchan'] == $b)) + $item['children'][$d]['author_blocked'] = true; + } + } + } + + // Can we put this after the visibility check? like_puller($a,$item,$alike,'like'); diff --git a/version.inc b/version.inc index 717abe607..6ca230997 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2013-08-19.410 +2013-08-20.411 -- cgit v1.2.3 From 5d35d2110065dec9f984ad9028a5e8798f1faa37 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 20 Aug 2013 20:39:00 -0700 Subject: network-wide poll voting structure --- boot.php | 2 +- install/database.sql | 46 ++++++++++++++++++++++++++++------------------ install/update.php | 19 ++++++++++++++++++- 3 files changed, 47 insertions(+), 20 deletions(-) diff --git a/boot.php b/boot.php index 10f951b6a..cf3d17050 100755 --- a/boot.php +++ b/boot.php @@ -43,7 +43,7 @@ require_once('include/taxonomy.php'); define ( 'RED_PLATFORM', 'Red Matrix' ); define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'R'); define ( 'ZOT_REVISION', 1 ); -define ( 'DB_UPDATE_VERSION', 1060 ); +define ( 'DB_UPDATE_VERSION', 1061 ); define ( 'EOL', '
    ' . "\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); diff --git a/install/database.sql b/install/database.sql index 4a519adbb..de36bdad2 100644 --- a/install/database.sql +++ b/install/database.sql @@ -136,7 +136,7 @@ CREATE TABLE IF NOT EXISTS `challenge` ( `type` char(255) NOT NULL, `last_update` char(255) NOT NULL, PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; +) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `channel` ( `channel_id` int(10) unsigned NOT NULL AUTO_INCREMENT, @@ -267,7 +267,7 @@ CREATE TABLE IF NOT EXISTS `event` ( KEY `aid` (`aid`), KEY `event_hash` (`event_hash`), KEY `event_xchan` (`event_xchan`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; +) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `fcontact` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, @@ -348,7 +348,7 @@ CREATE TABLE IF NOT EXISTS `group_member` ( KEY `uid` (`uid`), KEY `gid` (`gid`), KEY `xchan` (`xchan`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; +) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `hook` ( `id` int(11) NOT NULL AUTO_INCREMENT, @@ -421,7 +421,7 @@ CREATE TABLE IF NOT EXISTS `item` ( `owner_xchan` char(255) NOT NULL DEFAULT '', `author_xchan` char(255) NOT NULL DEFAULT '', `mimetype` char(255) NOT NULL DEFAULT '', - `title` text NOT NULL DEFAULT '', + `title` text NOT NULL, `body` mediumtext NOT NULL, `app` char(255) NOT NULL DEFAULT '', `lang` char(64) NOT NULL DEFAULT '', @@ -493,7 +493,7 @@ CREATE TABLE IF NOT EXISTS `item_id` ( KEY `sid` (`sid`), KEY `service` (`service`), KEY `iid` (`iid`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; +) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `mail` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, @@ -504,7 +504,7 @@ CREATE TABLE IF NOT EXISTS `mail` ( `channel_id` int(10) unsigned NOT NULL, `title` text NOT NULL, `body` mediumtext NOT NULL, - `attach` mediumtext NOT NULL DEFAULT '', + `attach` mediumtext NOT NULL, `mid` char(255) NOT NULL, `parent_mid` char(255) NOT NULL, `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', @@ -536,7 +536,7 @@ CREATE TABLE IF NOT EXISTS `menu` ( PRIMARY KEY (`menu_id`), KEY `menu_channel_id` (`menu_channel_id`), KEY `menu_name` (`menu_name`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; +) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `menu_item` ( `mitem_id` int(10) unsigned NOT NULL AUTO_INCREMENT, @@ -551,10 +551,10 @@ CREATE TABLE IF NOT EXISTS `menu_item` ( `mitem_menu_id` int(10) unsigned NOT NULL DEFAULT '0', `mitem_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`mitem_id`), - KEY `mitem_flags` (`mitem_flags`), KEY `mitem_channel_id` (`mitem_channel_id`), - KEY `mitem_menu_id` (`mitem_menu_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; + KEY `mitem_menu_id` (`mitem_menu_id`), + KEY `mitem_flags` (`mitem_flags`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `notify` ( `id` int(11) NOT NULL AUTO_INCREMENT, @@ -595,7 +595,7 @@ CREATE TABLE IF NOT EXISTS `obj` ( KEY `obj_type` (`obj_type`), KEY `obj_channel` (`obj_channel`), KEY `obj_obj` (`obj_obj`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; +) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `outq` ( `outq_hash` char(255) NOT NULL, @@ -658,7 +658,7 @@ CREATE TABLE IF NOT EXISTS `photo` ( KEY `album` (`album`), KEY `scale` (`scale`), KEY `profile` (`profile`), - KEY `photo_flags` (`photo_flags`), + KEY `photo_flags` (`photo_flags`), KEY `type` (`type`), KEY `aid` (`aid`), KEY `xchan` (`xchan`), @@ -676,7 +676,7 @@ CREATE TABLE IF NOT EXISTS `profile` ( `hide_friends` tinyint(1) NOT NULL DEFAULT '0', `name` char(255) NOT NULL, `pdesc` char(255) NOT NULL, - `chandesc` text NOT NULL DEFAULT '', + `chandesc` text NOT NULL, `dob` char(32) NOT NULL DEFAULT '0000-00-00', `dob_tz` char(255) NOT NULL DEFAULT 'UTC', `address` char(255) NOT NULL, @@ -770,7 +770,7 @@ CREATE TABLE IF NOT EXISTS `register` ( KEY `hash` (`hash`), KEY `created` (`created`), KEY `uid` (`uid`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; +) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `session` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, @@ -842,7 +842,7 @@ CREATE TABLE IF NOT EXISTS `term` ( KEY `imgurl` (`imgurl`), KEY `term_hash` (`term_hash`), KEY `parent_hash` (`parent_hash`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; +) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `tokens` ( `id` varchar(40) NOT NULL, @@ -877,7 +877,17 @@ CREATE TABLE IF NOT EXISTS `verify` ( KEY `token` (`token`), KEY `meta` (`meta`), KEY `created` (`created`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +CREATE TABLE IF NOT EXISTS `vote` ( + `vote_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `vote_poll` int(11) NOT NULL DEFAULT '0', + `vote_element` int(11) NOT NULL DEFAULT '0', + `vote_result` text NOT NULL, + `vote_xchan` char(255) NOT NULL DEFAULT '', + PRIMARY KEY (`vote_id`), + UNIQUE KEY `vote_vote` (`vote_poll`,`vote_element`,`vote_xchan`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `xchan` ( `xchan_hash` char(255) NOT NULL, @@ -902,10 +912,10 @@ CREATE TABLE IF NOT EXISTS `xchan` ( KEY `xchan_addr` (`xchan_addr`), KEY `xchan_name` (`xchan_name`), KEY `xchan_network` (`xchan_network`), - KEY `xchan_instance_url` (`xchan_instance_url`), KEY `xchan_url` (`xchan_url`), KEY `xchan_flags` (`xchan_flags`), - KEY `xchan_connurl` (`xchan_connurl`) + KEY `xchan_connurl` (`xchan_connurl`), + KEY `xchan_instance_url` (`xchan_instance_url`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `xconfig` ( diff --git a/install/update.php b/install/update.php index 682ee2aea..fa5afe8de 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ Date: Wed, 21 Aug 2013 01:33:20 -0700 Subject: poll stuff --- boot.php | 2 +- install/database.sql | 27 ++++++++++++++++++++++++++- install/update.php | 38 +++++++++++++++++++++++++++++++++++++- version.inc | 2 +- 4 files changed, 65 insertions(+), 4 deletions(-) diff --git a/boot.php b/boot.php index cf3d17050..2323e302c 100755 --- a/boot.php +++ b/boot.php @@ -43,7 +43,7 @@ require_once('include/taxonomy.php'); define ( 'RED_PLATFORM', 'Red Matrix' ); define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'R'); define ( 'ZOT_REVISION', 1 ); -define ( 'DB_UPDATE_VERSION', 1061 ); +define ( 'DB_UPDATE_VERSION', 1063 ); define ( 'EOL', '
    ' . "\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); diff --git a/install/database.sql b/install/database.sql index de36bdad2..cefb081d1 100644 --- a/install/database.sql +++ b/install/database.sql @@ -666,6 +666,29 @@ CREATE TABLE IF NOT EXISTS `photo` ( KEY `resource_id` (`resource_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +CREATE TABLE IF NOT EXISTS `poll` ( + `poll_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `poll_channel` int(10) unsigned NOT NULL DEFAULT '0', + `poll_desc` text NOT NULL, + `poll_flags` int(11) NOT NULL DEFAULT '0', + `poll_votes` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`poll_id`), + KEY `poll_channel` (`poll_channel`), + KEY `poll_flags` (`poll_flags`), + KEY `poll_votes` (`poll_votes`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +CREATE TABLE IF NOT EXISTS `poll_elm` ( + `pelm_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pelm_poll` int(10) unsigned NOT NULL DEFAULT '0', + `pelm_desc` text NOT NULL, + `pelm_flags` int(11) NOT NULL DEFAULT '0', + `pelm_result` float NOT NULL DEFAULT '0', + PRIMARY KEY (`pelm_id`), + KEY `pelm_poll` (`pelm_poll`), + KEY `pelm_result` (`pelm_result`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + CREATE TABLE IF NOT EXISTS `profile` ( `id` int(11) NOT NULL AUTO_INCREMENT, `profile_guid` char(64) NOT NULL DEFAULT '', @@ -886,7 +909,9 @@ CREATE TABLE IF NOT EXISTS `vote` ( `vote_result` text NOT NULL, `vote_xchan` char(255) NOT NULL DEFAULT '', PRIMARY KEY (`vote_id`), - UNIQUE KEY `vote_vote` (`vote_poll`,`vote_element`,`vote_xchan`) + UNIQUE KEY `vote_vote` (`vote_poll`,`vote_element`,`vote_xchan`), + KEY `vote_poll` (`vote_poll`), + KEY `vote_element` (`vote_element`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `xchan` ( diff --git a/install/update.php b/install/update.php index fa5afe8de..c5eaa4f19 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ Date: Wed, 21 Aug 2013 22:12:22 +0200 Subject: show chosen desktop theme when SESSION['show_mobile'] is false --- boot.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boot.php b/boot.php index 7b2d72f3c..dd008558d 100755 --- a/boot.php +++ b/boot.php @@ -1965,8 +1965,8 @@ function current_theme(){ if($is_mobile) { if(isset($_SESSION['show_mobile']) && !$_SESSION['show_mobile']) { - $system_theme = ''; - $theme_name = ''; + $system_theme = ((isset($a->config['system']['theme'])) ? $a->config['system']['theme'] : ''); + $theme_name = ((isset($_SESSION) && x($_SESSION,'theme')) ? $_SESSION['theme'] : $system_theme); } else { $system_theme = ((isset($a->config['system']['mobile_theme'])) ? $a->config['system']['mobile_theme'] : ''); -- cgit v1.2.3 From ab06b18f5b618bc2df80f309e6c9f1d10a6ba88f Mon Sep 17 00:00:00 2001 From: Christian Vogeley Date: Wed, 21 Aug 2013 23:14:52 +0200 Subject: theme qualifier without dots --- mod/admin.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mod/admin.php b/mod/admin.php index df1a40019..7e8f7a301 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -365,11 +365,11 @@ function admin_page_site(&$a) { if($files) { foreach($files as $file) { $f = basename($file); - $theme_name = ((file_exists($file . '/.experimental')) ? sprintf("%s - Experimental", $f) : $f); - if (file_exists($file . '/.mobile')) { + $theme_name = ((file_exists($file . '/experimental')) ? sprintf("%s - Experimental", $f) : $f); + if (file_exists($file . '/mobile')) { $theme_choices_mobile[$f] = $theme_name; } - if (file_exists($file . '/.accessibility')) { + if (file_exists($file . '/accessibility')) { $theme_choices_accessibility[$f] = $theme_name; } $theme_choices[$f] = $theme_name; -- cgit v1.2.3 From 2d3a489f5171a8fe8b6b7aeb022c945a689d9f1a Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 21 Aug 2013 17:15:56 -0700 Subject: basic structure for premium channel implementation --- boot.php | 7 ++----- install/database.sql | 4 ++++ install/update.php | 10 +++++++++- mod/connect.php | 3 +++ mod/zfinger.php | 12 ++++++++++++ 5 files changed, 30 insertions(+), 6 deletions(-) create mode 100644 mod/connect.php diff --git a/boot.php b/boot.php index 2323e302c..eeddf8162 100755 --- a/boot.php +++ b/boot.php @@ -43,7 +43,7 @@ require_once('include/taxonomy.php'); define ( 'RED_PLATFORM', 'Red Matrix' ); define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'R'); define ( 'ZOT_REVISION', 1 ); -define ( 'DB_UPDATE_VERSION', 1063 ); +define ( 'DB_UPDATE_VERSION', 1064 ); define ( 'EOL', '
    ' . "\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); @@ -190,13 +190,10 @@ define ( 'PAGE_HIDDEN', 0x0001 ); define ( 'PAGE_AUTOCONNECT', 0x0002 ); define ( 'PAGE_APPLICATION', 0x0004 ); define ( 'PAGE_DIRECTORY_CHANNEL', 0x0008 ); // system channel used for directory synchronisation +define ( 'PAGE_PREMIUM', 0x0010 ); define ( 'PAGE_REMOVED', 0x8000 ); -//define ( 'PAGE_FREELOVE', 3 ); -//define ( 'PAGE_BLOG', 4 ); -//define ( 'PAGE_PRVGROUP', 5 ); - /** * Photo types diff --git a/install/database.sql b/install/database.sql index cefb081d1..dbffbf59b 100644 --- a/install/database.sql +++ b/install/database.sql @@ -926,6 +926,8 @@ CREATE TABLE IF NOT EXISTS `xchan` ( `xchan_addr` char(255) NOT NULL DEFAULT '', `xchan_url` char(255) NOT NULL DEFAULT '', `xchan_connurl` char(255) NOT NULL DEFAULT '', + `xchan_follow` char(255) NOT NULL DEFAULT '', + `xchan_connpage` char(255) NOT NULL DEFAULT '', `xchan_name` char(255) NOT NULL DEFAULT '', `xchan_network` char(255) NOT NULL DEFAULT '', `xchan_instance_url` char(255) NOT NULL DEFAULT '', @@ -940,6 +942,8 @@ CREATE TABLE IF NOT EXISTS `xchan` ( KEY `xchan_url` (`xchan_url`), KEY `xchan_flags` (`xchan_flags`), KEY `xchan_connurl` (`xchan_connurl`), + KEY `xchan_follow` (`xchan_follow`), + KEY `xchan_connpage` (`xchan_connpage`), KEY `xchan_instance_url` (`xchan_instance_url`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; diff --git a/install/update.php b/install/update.php index c5eaa4f19..9beb25254 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ Date: Wed, 21 Aug 2013 17:34:04 -0700 Subject: implement premium channel discovery --- include/zot.php | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/include/zot.php b/include/zot.php index bddbc9bee..ff69a119e 100644 --- a/include/zot.php +++ b/include/zot.php @@ -441,6 +441,9 @@ function import_xchan($arr) { dbesc($xchan_hash) ); + if(! array_key_exists('connect_url', $arr)) + $arr['connect_url'] = ''; + if($r) { if($r[0]['xchan_photo_date'] != $arr['photo_updated']) @@ -462,18 +465,22 @@ function import_xchan($arr) { $new_flags = $r[0]['xchan_flags'] ^ XCHAN_FLAGS_HIDDEN; else $new_flags = $r[0]['xchan_flags']; - - + if(($r[0]['xchan_name_date'] != $arr['name_updated']) || ($r[0]['xchan_connurl'] != $arr['connections_url']) || ($r[0]['xchan_flags'] != $new_flags) || ($r[0]['xchan_addr'] != $arr['address']) + || ($r[0]['xchan_follow'] != $arr['follow_url']) + || ($r[0]['xchan_connpage'] != $arr['connect_url']) || ($r[0]['xchan_url'] != $arr['url'])) { - $r = q("update xchan set xchan_name = '%s', xchan_name_date = '%s', xchan_connurl = '%s', xchan_flags = %d, + $r = q("update xchan set xchan_name = '%s', xchan_name_date = '%s', xchan_connurl = '%s', xchan_follow = '%s', + xchan_connpage = '%s', xchan_flags = %d, xchan_addr = '%s', xchan_url = '%s' where xchan_hash = '%s' limit 1", dbesc($arr['name']), dbesc($arr['name_updated']), dbesc($arr['connections_url']), + dbesc($arr['follow_url']), + dbesc($arr['connect_url']), intval($new_flags), dbesc($arr['address']), dbesc($arr['url']), @@ -503,8 +510,8 @@ function import_xchan($arr) { $new_flags = 0; $x = q("insert into xchan ( xchan_hash, xchan_guid, xchan_guid_sig, xchan_pubkey, xchan_photo_mimetype, - xchan_photo_l, xchan_addr, xchan_url, xchan_connurl, xchan_name, xchan_network, xchan_photo_date, xchan_name_date, xchan_flags) - values ( '%s', '%s', '%s', '%s' , '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d) ", + xchan_photo_l, xchan_addr, xchan_url, xchan_connurl, xchan_follow, xchan_connpage, xchan_name, xchan_network, xchan_photo_date, xchan_name_date, xchan_flags) + values ( '%s', '%s', '%s', '%s' , '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d) ", dbesc($xchan_hash), dbesc($arr['guid']), dbesc($arr['guid_sig']), @@ -514,6 +521,8 @@ function import_xchan($arr) { dbesc($arr['address']), dbesc($arr['url']), dbesc($arr['connections_url']), + dbesc($arr['follow_url']), + dbesc($arr['connect_url']), dbesc($arr['name']), dbesc('zot'), dbesc($arr['photo_updated']), -- cgit v1.2.3 From 6cea04eb440c2bb08bcb81ae13749c08d09b755c Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 21 Aug 2013 20:05:55 -0700 Subject: progress on generic sellpage - is not yet linked from existing connect buttons and editing has not been completed --- boot.php | 12 +++--- include/identity.php | 3 +- mod/connect.php | 98 +++++++++++++++++++++++++++++++++++++++++++- view/css/mod_connect.css | 3 ++ view/tpl/sellpage_submit.tpl | 3 ++ view/tpl/sellpage_view.tpl | 9 ++++ 6 files changed, 121 insertions(+), 7 deletions(-) create mode 100644 view/css/mod_connect.css create mode 100644 view/tpl/sellpage_submit.tpl create mode 100644 view/tpl/sellpage_view.tpl diff --git a/boot.php b/boot.php index 0afc976ae..3327fdbb2 100755 --- a/boot.php +++ b/boot.php @@ -1572,11 +1572,11 @@ function profile_load(&$a, $nickname, $profile = '') { return; } -function profile_create_sidebar(&$a) { +function profile_create_sidebar(&$a,$connect = true) { $block = (((get_config('system','block_public')) && (! local_user()) && (! remote_user())) ? true : false); - $a->set_widget('profile',profile_sidebar($a->profile, $block)); + $a->set_widget('profile',profile_sidebar($a->profile, $block, $connect)); return; } @@ -1598,7 +1598,7 @@ function profile_create_sidebar(&$a) { -function profile_sidebar($profile, $block = 0) { +function profile_sidebar($profile, $block = 0, $show_connect = true) { $a = get_app(); @@ -1623,11 +1623,13 @@ function profile_sidebar($profile, $block = 0) { require_once('include/Contact.php'); - $connect_url = rconnect_url($profile['uid'],get_observer_hash()); + + $connect_url = (($show_connect) ? rconnect_url($profile['uid'],get_observer_hash()) : ''); + $connect = (($connect_url) ? t('Connect') : ''); if($connect_url) - $connect_url = $connect_url . '/follow?f=1&url=' . $profile['channel_address'] . '@' . $a->get_hostname(); + $connect_url = $connect_url . '/follow?f=1&url=' . urlencode($profile['channel_address'] . '@' . $a->get_hostname()); // show edit profile to yourself if($is_owner) { diff --git a/include/identity.php b/include/identity.php index 5f210c456..1658669d6 100644 --- a/include/identity.php +++ b/include/identity.php @@ -182,7 +182,7 @@ function create_identity($arr) { $newuid = $ret['channel']['channel_id']; - $r = q("insert into xchan ( xchan_hash, xchan_guid, xchan_guid_sig, xchan_pubkey, xchan_photo_l, xchan_photo_m, xchan_photo_s, xchan_addr, xchan_url, xchan_name, xchan_network, xchan_photo_date, xchan_name_date ) values ('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s')", + $r = q("insert into xchan ( xchan_hash, xchan_guid, xchan_guid_sig, xchan_pubkey, xchan_photo_l, xchan_photo_m, xchan_photo_s, xchan_addr, xchan_url, xchan_follow, xchan_name, xchan_network, xchan_photo_date, xchan_name_date ) values ('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s')", dbesc($hash), dbesc($guid), dbesc($sig), @@ -192,6 +192,7 @@ function create_identity($arr) { dbesc($a->get_baseurl() . "/photo/profile/s/{$newuid}"), dbesc($ret['channel']['channel_address'] . '@' . get_app()->get_hostname()), dbesc(z_root() . '/channel/' . $ret['channel']['channel_address']), + dbesc(z_root() . '/follow?f=&url=%s'), dbesc($ret['channel']['channel_name']), dbesc('zot'), dbesc(datetime_convert()), diff --git a/mod/connect.php b/mod/connect.php index 21d461c19..0ab994ddd 100644 --- a/mod/connect.php +++ b/mod/connect.php @@ -1,3 +1,99 @@ 1) + $which = argv(1); + else { + notice( t('Requested profile is not available.') . EOL ); + $a->error = 404; + return; + } + + profile_load($a,$which,''); + profile_create_sidebar($a,false); + + +} + +function connect_post(&$a) { + + $edit = ((local_user() && (local_user() == $a->profile['profile_uid'])) ? true : false); + + if($edit) { + $premium = (($_POST['premium']) ? intval($_POST['premium']) : 0); + $text = escape_tags($_POST['text']); + + $channel = $a->get_channel(); + if(($channel['channel_pageflags'] & PAGE_PREMIUM) != $premium) + $r = q("update channel set channel_flags = channel_flags ^ %d where channel_id = %d limit 1", + intval(PAGE_PREMIUM), + intval(local_user()) + ); + set_pconfig($a->profile['profile_uid'],'system','selltext',$text); + return; + } + + $url = ''; + $observer = $a->get_observer(); + if(($observer) && ($_POST['submit'] === t('Continue'))) { + if($observer['xchan_follow']) + $url = sprintf($observer['xchan_follow'],urlencode($a->profile['channel_address'] . '@' . $a->get_hostname())); + if(! $url) { + $r = q("select * from hubloc where hubloc_hash = '%s' order by hubloc_id desc limit 1", + dbesc($observer['xchan_hash']) + ); + if($r) + $url = $r[0]['hubloc_url'] . '/follow?f=&url=' . urlencode($a->profile['channel_address'] . '@' . $a->get_hostname()); + } + } + if($url) + goaway($url); + else + notice('Unable to connect to your home hub location.'); + +} + + + +function connect_content(&$a) { + + $edit = ((local_user() && (local_user() == $a->profile['profile_uid'])) ? true : false); + + $text = get_pconfig($a->profile['profile_uid'],'system','selltext'); + + if($edit) { + $o = replace_macros(get_markup_template('sellpage_edit.tpl'),array( + + + )); + return $o; + } + else { + $submit = replace_macros(get_markup_template('sellpage_submit.tpl'), array( + '$continue' => t('Continue'), + '$address' => $a->profile['channel_address'] + )); + + $o = replace_macros(get_markup_template('sellpage_view.tpl'),array( + '$header' => t('Restricted Channel'), + '$desc' => t('This channel may require additional steps or acknowledgement of the following conditions prior to connecting:'), + '$text' => prepare_text($text), + + '$desc2' => t('By continuing, I certify that I have complied with any instructions provided on this page.'), + '$submit' => $submit, + + )); + + + + + } + + return $o; +} \ No newline at end of file diff --git a/view/css/mod_connect.css b/view/css/mod_connect.css new file mode 100644 index 000000000..43de7d256 --- /dev/null +++ b/view/css/mod_connect.css @@ -0,0 +1,3 @@ +.sellpage-final { + margin-top: 25px; +} \ No newline at end of file diff --git a/view/tpl/sellpage_submit.tpl b/view/tpl/sellpage_submit.tpl new file mode 100644 index 000000000..2bd735ea4 --- /dev/null +++ b/view/tpl/sellpage_submit.tpl @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/view/tpl/sellpage_view.tpl b/view/tpl/sellpage_view.tpl new file mode 100644 index 000000000..414445039 --- /dev/null +++ b/view/tpl/sellpage_view.tpl @@ -0,0 +1,9 @@ +

    {{$header}}

    + +
    {{$desc}}
    + +
    {{$text}}
    + +
    {{$desc2}}
    + +{{$submit}} -- cgit v1.2.3 From 925b046794b77345c1321a3c74e4561d5c10ec95 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 21 Aug 2013 22:10:08 -0700 Subject: premium/restricted channel connections implemented, configure at yoursite/channel/nickname - this basically redirects "follow" requests to a premium channel's sell page if it has one configured. You can still click through and create a connection request (introduction), but this provides a means for the channel owner to state their terms. If you don't abide by the terms, you will likely be blocked or the channel deleted. This facility is extensible in a number of ways. --- boot.php | 17 ++++++++++++----- include/Contact.php | 9 ++++++++- include/follow.php | 7 ++++++- mod/connect.php | 28 ++++++++++++++++++++++------ mod/follow.php | 3 ++- mod/zfinger.php | 2 +- view/css/mod_connect.css | 8 ++++++++ view/tpl/sellpage_edit.tpl | 23 +++++++++++++++++++++++ 8 files changed, 82 insertions(+), 15 deletions(-) create mode 100644 view/tpl/sellpage_edit.tpl diff --git a/boot.php b/boot.php index 3327fdbb2..c8a8fbc7e 100755 --- a/boot.php +++ b/boot.php @@ -1623,13 +1623,20 @@ function profile_sidebar($profile, $block = 0, $show_connect = true) { require_once('include/Contact.php'); + if($show_connect) { - $connect_url = (($show_connect) ? rconnect_url($profile['uid'],get_observer_hash()) : ''); - - $connect = (($connect_url) ? t('Connect') : ''); + // This will return an empty string if we're already connected. + + $connect_url = rconnect_url($profile['uid'],get_observer_hash()); + $connect = (($connect_url) ? t('Connect') : ''); + if($connect_url) + $connect_url = sprintf($connect_url,urlencode($profile['channel_address'] . '@' . $a->get_hostname())); - if($connect_url) - $connect_url = $connect_url . '/follow?f=1&url=' . urlencode($profile['channel_address'] . '@' . $a->get_hostname()); + // premium channel - over-ride + + if($profile['channel_pageflags'] & PAGE_PREMIUM) + $connect_url = z_root() . '/connect/' . $profile['channel_address']; + } // show edit profile to yourself if($is_owner) { diff --git a/include/Contact.php b/include/Contact.php index bf536ccd5..46d356f3f 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -15,13 +15,20 @@ function rconnect_url($channel_id,$xchan) { if($r) return ''; + $r = q("select * from xchan where xchan_hash = '%s' limit 1", + dbesc($xchan) + ); + + if(($r) && ($r[0]['xchan_follow'])) + return $r[0]['xchan_follow']; + $r = q("select hubloc_url from hubloc where hubloc_hash = '%s' and ( hubloc_flags & %d ) limit 1", dbesc($xchan), intval(HUBLOC_FLAGS_PRIMARY) ); if($r) - return $r[0]['hubloc_url']; + return $r[0]['hubloc_url'] . '/follow?f=&url=%s'; return ''; } diff --git a/include/follow.php b/include/follow.php index ce550b07f..510c6cd7e 100644 --- a/include/follow.php +++ b/include/follow.php @@ -11,7 +11,7 @@ require_once('include/zot.php'); -function new_contact($uid,$url,$channel,$interactive = false) { +function new_contact($uid,$url,$channel,$interactive = false, $confirm = false) { $result = array('success' => false,'message' => ''); @@ -60,6 +60,11 @@ function new_contact($uid,$url,$channel,$interactive = false) { return $result; } + // Premium channel, set confirm before callback to avoid recursion + + if(array_key_exists('connect_url',$j) && (! $confirm)) + goaway($j['connect_url']); + // check service class limits diff --git a/mod/connect.php b/mod/connect.php index 0ab994ddd..c2b55d997 100644 --- a/mod/connect.php +++ b/mod/connect.php @@ -31,12 +31,13 @@ function connect_post(&$a) { $channel = $a->get_channel(); if(($channel['channel_pageflags'] & PAGE_PREMIUM) != $premium) - $r = q("update channel set channel_flags = channel_flags ^ %d where channel_id = %d limit 1", + $r = q("update channel set channel_pageflags = channel_pageflags ^ %d where channel_id = %d limit 1", intval(PAGE_PREMIUM), intval(local_user()) ); set_pconfig($a->profile['profile_uid'],'system','selltext',$text); - return; + goaway(z_root() . '/' . $a->query_string); + } $url = ''; @@ -53,7 +54,7 @@ function connect_post(&$a) { } } if($url) - goaway($url); + goaway($url . '&confirm=1'); else notice('Unable to connect to your home hub location.'); @@ -68,20 +69,34 @@ function connect_content(&$a) { $text = get_pconfig($a->profile['profile_uid'],'system','selltext'); if($edit) { + $channel = $a->get_channel(); + $o = replace_macros(get_markup_template('sellpage_edit.tpl'),array( + '$header' => t('Premium Channel Setup'), + '$address' => $a->profile['channel_address'], + '$premium' => array('premium', t('Enable premium channel connection restrictions'),(($channel['channel_pageflags'] & PAGE_PREMIUM) ? '1' : ''),''), + '$lbl_about' => t('Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc.'), + '$text' => $text, + '$desc' => t('This channel may require additional steps or acknowledgement of the following conditions prior to connecting:'), + '$lbl2' => t('Potential connections will then see the following text before proceeding:'), + '$desc2' => t('By continuing, I certify that I have complied with any instructions provided on this page.'), + '$submit' => t('Submit'), )); return $o; } else { + if(! $text) + $text = t('(No specific instructions have been provided by the channel owner.)'); + $submit = replace_macros(get_markup_template('sellpage_submit.tpl'), array( '$continue' => t('Continue'), '$address' => $a->profile['channel_address'] )); $o = replace_macros(get_markup_template('sellpage_view.tpl'),array( - '$header' => t('Restricted Channel'), + '$header' => t('Restricted or Premium Channel'), '$desc' => t('This channel may require additional steps or acknowledgement of the following conditions prior to connecting:'), '$text' => prepare_text($text), @@ -90,8 +105,9 @@ function connect_content(&$a) { )); - - + $arr = array('profile' => $a->profile,'observer' => $a->get_observer(), 'sellpage' => $o, 'submit' => $submit); + call_hooks('connect_premium', $arr); + $o = $arr['sellpage']; } diff --git a/mod/follow.php b/mod/follow.php index d21c50df6..9f5a8183b 100644 --- a/mod/follow.php +++ b/mod/follow.php @@ -12,8 +12,9 @@ function follow_init(&$a) { $uid = local_user(); $url = notags(trim($_REQUEST['url'])); $return_url = $_SESSION['return_url']; + $confirm = intval($_REQUEST['confirm']); - $result = new_contact($uid,$url,$a->get_channel(),true); + $result = new_contact($uid,$url,$a->get_channel(),true,$confirm); if($result['success'] == false) { if($result['message']) diff --git a/mod/zfinger.php b/mod/zfinger.php index d5b750537..320f0ca71 100644 --- a/mod/zfinger.php +++ b/mod/zfinger.php @@ -140,7 +140,7 @@ function zfinger_init(&$a) { // This is a template - %s will be replaced with the follow_url we discover for the return channel. if($special_channel) - $ret['connect_url'] = z_root() . '/connect/' . $e['channel_address'] . '?f=&follow=%s'; + $ret['connect_url'] = z_root() . '/connect/' . $e['channel_address']; // This is a template for our follow url, %s will be replaced with a webbie diff --git a/view/css/mod_connect.css b/view/css/mod_connect.css index 43de7d256..d1a46ec48 100644 --- a/view/css/mod_connect.css +++ b/view/css/mod_connect.css @@ -1,3 +1,11 @@ +.sellpage-body { + margin-top: 25px; +} + .sellpage-final { margin-top: 25px; +} + +#sellpage-edit label{ + width: 300px; } \ No newline at end of file diff --git a/view/tpl/sellpage_edit.tpl b/view/tpl/sellpage_edit.tpl new file mode 100644 index 000000000..0a4726fb2 --- /dev/null +++ b/view/tpl/sellpage_edit.tpl @@ -0,0 +1,23 @@ +

    {{$header}}

    +
    + +{{include file="field_checkbox.tpl" field=$premium}} + +
    {{$desc}}
    + +
    +

    +{{$lbl_about}} +

    + + + +
    +
    + + +
    {{$lbl2}}
    +
    {{$desc2}}
    + + +
    -- cgit v1.2.3 From 1101f4ab8879a189873804c8ee7b3cafec63c7da Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 21 Aug 2013 23:10:16 -0700 Subject: fixes for sellpage with blocked profiles --- mod/connect.php | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/mod/connect.php b/mod/connect.php index c2b55d997..6bf53eb2b 100644 --- a/mod/connect.php +++ b/mod/connect.php @@ -15,7 +15,15 @@ function connect_init(&$a) { return; } + $r = q("select * from channel where channel_address = '%s' limit 1", + dbesc($which) + ); + + if($r) + $a->data['channel'] = $r[0]; + profile_load($a,$which,''); + profile_create_sidebar($a,false); @@ -44,13 +52,13 @@ function connect_post(&$a) { $observer = $a->get_observer(); if(($observer) && ($_POST['submit'] === t('Continue'))) { if($observer['xchan_follow']) - $url = sprintf($observer['xchan_follow'],urlencode($a->profile['channel_address'] . '@' . $a->get_hostname())); + $url = sprintf($observer['xchan_follow'],urlencode($a->data['channel']['channel_address'] . '@' . $a->get_hostname())); if(! $url) { $r = q("select * from hubloc where hubloc_hash = '%s' order by hubloc_id desc limit 1", dbesc($observer['xchan_hash']) ); if($r) - $url = $r[0]['hubloc_url'] . '/follow?f=&url=' . urlencode($a->profile['channel_address'] . '@' . $a->get_hostname()); + $url = $r[0]['hubloc_url'] . '/follow?f=&url=' . urlencode($a->data['channel']['channel_address'] . '@' . $a->get_hostname()); } } if($url) @@ -64,17 +72,16 @@ function connect_post(&$a) { function connect_content(&$a) { - $edit = ((local_user() && (local_user() == $a->profile['profile_uid'])) ? true : false); + $edit = ((local_user() && (local_user() == $a->data['channel']['channel_id'])) ? true : false); - $text = get_pconfig($a->profile['profile_uid'],'system','selltext'); + $text = get_pconfig($a->data['channel']['channel_id'],'system','selltext'); if($edit) { - $channel = $a->get_channel(); $o = replace_macros(get_markup_template('sellpage_edit.tpl'),array( '$header' => t('Premium Channel Setup'), - '$address' => $a->profile['channel_address'], - '$premium' => array('premium', t('Enable premium channel connection restrictions'),(($channel['channel_pageflags'] & PAGE_PREMIUM) ? '1' : ''),''), + '$address' => $a->data['channel']['channel_address'], + '$premium' => array('premium', t('Enable premium channel connection restrictions'),(($a->data['channel']['channel_pageflags'] & PAGE_PREMIUM) ? '1' : ''),''), '$lbl_about' => t('Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc.'), '$text' => $text, '$desc' => t('This channel may require additional steps or acknowledgement of the following conditions prior to connecting:'), @@ -92,7 +99,7 @@ function connect_content(&$a) { $submit = replace_macros(get_markup_template('sellpage_submit.tpl'), array( '$continue' => t('Continue'), - '$address' => $a->profile['channel_address'] + '$address' => $a->data['channel']['channel_address'] )); $o = replace_macros(get_markup_template('sellpage_view.tpl'),array( @@ -105,7 +112,7 @@ function connect_content(&$a) { )); - $arr = array('profile' => $a->profile,'observer' => $a->get_observer(), 'sellpage' => $o, 'submit' => $submit); + $arr = array('channel' => $a->data['channel'],'observer' => $a->get_observer(), 'sellpage' => $o, 'submit' => $submit); call_hooks('connect_premium', $arr); $o = $arr['sellpage']; -- cgit v1.2.3 From 22b6ddef9457e5ed3d38cf03be4b4451ec9d150c Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 22 Aug 2013 00:44:24 -0700 Subject: add zid to connect_url --- include/follow.php | 2 +- version.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/follow.php b/include/follow.php index 510c6cd7e..10bcddf2b 100644 --- a/include/follow.php +++ b/include/follow.php @@ -63,7 +63,7 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false) // Premium channel, set confirm before callback to avoid recursion if(array_key_exists('connect_url',$j) && (! $confirm)) - goaway($j['connect_url']); + goaway(zid($j['connect_url'])); // check service class limits diff --git a/version.inc b/version.inc index 9990b329d..eef8ef12b 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2013-08-21.412 +2013-08-22.413 -- cgit v1.2.3 From af72f40759418275abae575176f43d27388bfcd6 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 22 Aug 2013 01:00:54 -0700 Subject: make premium channels a feature --- include/features.php | 3 +-- mod/settings.php | 13 +++++++++++++ 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/include/features.php b/include/features.php index 757f719df..6272b33ea 100644 --- a/include/features.php +++ b/include/features.php @@ -27,8 +27,7 @@ function get_features() { //FIXME - needs a description, but how the hell do we explain this to normals? array('sendzid', t('Extended Identity Sharing'), t(' ')), array('expert', t('Expert Mode'), t('Enable Expert Mode to provide advanced configuration options')), - - + array('premium_channel', t('Premium Channel'), t('Allows you to set restrictions and terms on those that connect with your channel')), ), // Post composition diff --git a/mod/settings.php b/mod/settings.php index 36befead1..2a3a64581 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -31,6 +31,8 @@ function settings_aside(&$a) { $a->argv[] = 'channel'; } + $channel = $a->get_channel(); + $abook_self_id = 0; // Retrieve the 'self' address book entry for use in the auto-permissions link @@ -101,6 +103,17 @@ function settings_aside(&$a) { ); + + if(feature_enabled(local_user(),'premium_channel')) { + $tabs[] = array( + 'label' => t('Premium Channel Settings'), + 'url' => $a->get_baseurl(true) . '/connect/' . $channel['channel_address'], + 'selected' => '' + ); + + } + + $tabtpl = get_markup_template("generic_links_widget.tpl"); $a->page['aside'] = replace_macros($tabtpl, array( -- cgit v1.2.3 From 32ff0932bf3b596e68ae7f4100bebbccdc1eae00 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 22 Aug 2013 03:24:50 -0700 Subject: add detailed logging to public recips - find out why some public recipients are getting bypassed (David Benfells' problem with tagging groups, etc.) --- include/zot.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/zot.php b/include/zot.php index ff69a119e..37d2a03bd 100644 --- a/include/zot.php +++ b/include/zot.php @@ -928,6 +928,8 @@ function public_recips($msg) { if(! $col) return NULL; + logger('__public_recips'); +dbg(1); if($msg['notify']['sender']['url'] === z_root()) $sql = " where (( " . $col . " & " . PERMS_NETWORK . " ) or ( " . $col . " & " . PERMS_SITE . " )) "; else @@ -945,6 +947,7 @@ function public_recips($msg) { if(! $x) $x = array(); +dbg(0); $r = array_merge($r,$x); logger('public_recips: ' . print_r($r,true), LOGGER_DATA); -- cgit v1.2.3 From 141c8ccb1f94b9ce80466aa6be178d97e3f290bf Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 22 Aug 2013 05:50:15 -0700 Subject: possible fix for mention tags not posting to mentioned forum (when send stream permission is blocked) --- include/zot.php | 28 +++++++++++++++++++++++++--- 1 file changed, 25 insertions(+), 3 deletions(-) diff --git a/include/zot.php b/include/zot.php index 37d2a03bd..c7049dee6 100644 --- a/include/zot.php +++ b/include/zot.php @@ -838,6 +838,7 @@ function zot_import($arr) { // and who are allowed to see them based on the sender's permissions $deliveries = allowed_public_recips($i); + } if(! $deliveries) { logger('zot_import: no deliveries on this site'); @@ -910,10 +911,12 @@ function zot_import($arr) { function public_recips($msg) { + $check_mentions = false; if($msg['message']['type'] === 'activity') { if(array_key_exists('flags',$msg['message']) && in_array('thread_parent', $msg['message']['flags'])) { $col = 'channel_w_stream'; $field = PERMS_W_STREAM; + $check_mentions = true; } else { $col = 'channel_w_comment'; @@ -928,8 +931,7 @@ function public_recips($msg) { if(! $col) return NULL; - logger('__public_recips'); -dbg(1); + if($msg['notify']['sender']['url'] === z_root()) $sql = " where (( " . $col . " & " . PERMS_NETWORK . " ) or ( " . $col . " & " . PERMS_SITE . " )) "; else @@ -947,9 +949,29 @@ dbg(1); if(! $x) $x = array(); -dbg(0); $r = array_merge($r,$x); + + // look for any public mentions on this site + // They will get filtered by tgroup_check() so we don't need to check permissions now + + if($check_mentions && $msg['message']['tags']) { + if(is_array($msg['message']['tags']) && $msg['message']['tags']) { + foreach($msg['message']['tags'] as $tag) { + if(($tag['type'] === 'mention') && (strpos($tag['url'],z_root()) !== false)) { + $address = basename($tag['url']); + if($address) { + $z = q("select channel_hash as hash from channel where channel_address = '%s' limit 1", + dbesc($address) + ); + if($z) + $r = array_merge($r,$z); + } + } + } + } + } + logger('public_recips: ' . print_r($r,true), LOGGER_DATA); return $r; } -- cgit v1.2.3 From 99a9aee03e55af84f6963bbdbe3e365a7721e93d Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 22 Aug 2013 06:15:00 -0700 Subject: extra logging for translating likes in notification emails - which is still failing on occasion. --- include/conversation.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/conversation.php b/include/conversation.php index 9dab5931b..6e6ffef94 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -162,6 +162,9 @@ function localize_item(&$item){ $item['body'] .= "\n\n\n" . '[zrl=' . chanlink_url($author_link) . '][zmg=80x80]' . $Bphoto . '[/zmg][/zrl]'; } + else { + logger('localize_item like failed: link ' . $author_link . ' name ' . $author_name . ' url ' . $item_url); + } } -- cgit v1.2.3 From c102a4e428dd827667a3d8194523e94358cde5a5 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 22 Aug 2013 14:37:08 -0700 Subject: perform a refresh_all operation after changing premium status so that everybody will catch it quickly and not in a day or two. --- mod/connect.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/mod/connect.php b/mod/connect.php index 6bf53eb2b..5731d050d 100644 --- a/mod/connect.php +++ b/mod/connect.php @@ -38,12 +38,14 @@ function connect_post(&$a) { $text = escape_tags($_POST['text']); $channel = $a->get_channel(); - if(($channel['channel_pageflags'] & PAGE_PREMIUM) != $premium) + if(($channel['channel_pageflags'] & PAGE_PREMIUM) != $premium) { $r = q("update channel set channel_pageflags = channel_pageflags ^ %d where channel_id = %d limit 1", intval(PAGE_PREMIUM), intval(local_user()) ); - set_pconfig($a->profile['profile_uid'],'system','selltext',$text); + proc_exec('php','include/notifier.php','refresh_all',$channel['channel_id']); + } + set_pconfig($channel['channel_id'],'system','selltext',$text); goaway(z_root() . '/' . $a->query_string); } -- cgit v1.2.3 From 347faa59b6f112ae76122e55f57ee73968479d7a Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 22 Aug 2013 14:59:17 -0700 Subject: proc_run, not proc_exec --- mod/connect.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/connect.php b/mod/connect.php index 5731d050d..1d0a21496 100644 --- a/mod/connect.php +++ b/mod/connect.php @@ -43,7 +43,7 @@ function connect_post(&$a) { intval(PAGE_PREMIUM), intval(local_user()) ); - proc_exec('php','include/notifier.php','refresh_all',$channel['channel_id']); + proc_run('php','include/notifier.php','refresh_all',$channel['channel_id']); } set_pconfig($channel['channel_id'],'system','selltext',$text); goaway(z_root() . '/' . $a->query_string); -- cgit v1.2.3 From 83e3e4e45a1906590a2a629f197800c928ebe169 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 22 Aug 2013 15:35:10 -0700 Subject: this should fix the premium checkbox stickiness issue --- mod/connect.php | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/mod/connect.php b/mod/connect.php index 1d0a21496..93f994af5 100644 --- a/mod/connect.php +++ b/mod/connect.php @@ -31,21 +31,25 @@ function connect_init(&$a) { function connect_post(&$a) { - $edit = ((local_user() && (local_user() == $a->profile['profile_uid'])) ? true : false); + if(! array_key_exists('channel', $a->data)) + return; + + $edit = ((local_user() && (local_user() == $a->data['channel']['channel_id'])) ? true : false); if($edit) { + $has_premium = (($a->data['channel']['channel_pageflags'] & PAGE_PREMIUM) ? 1 : 0); $premium = (($_POST['premium']) ? intval($_POST['premium']) : 0); $text = escape_tags($_POST['text']); - $channel = $a->get_channel(); - if(($channel['channel_pageflags'] & PAGE_PREMIUM) != $premium) { - $r = q("update channel set channel_pageflags = channel_pageflags ^ %d where channel_id = %d limit 1", + if($has_premium != $premium) { + $r = q("update channel set channel_pageflags = ( channel_pageflags ^ %d ) where channel_id = %d limit 1", intval(PAGE_PREMIUM), intval(local_user()) ); - proc_run('php','include/notifier.php','refresh_all',$channel['channel_id']); + proc_run('php','include/notifier.php','refresh_all',$a->data['channel']['channel_id']); } - set_pconfig($channel['channel_id'],'system','selltext',$text); + set_pconfig($a->data['channel']['channel_id'],'system','selltext',$text); + // reload the page completely to get fresh data goaway(z_root() . '/' . $a->query_string); } -- cgit v1.2.3 From c9fc8efd2295338febbbcba6dc3cc377e752d3d4 Mon Sep 17 00:00:00 2001 From: Christian Vogeley Date: Sat, 24 Aug 2013 14:11:46 +0200 Subject: Make footers position fixed, so that its content appears --- view/theme/redbasic/css/style.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index f4c399735..1105bb4bb 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -331,6 +331,8 @@ ul.tabs { /* footer */ footer { + position:fixed; + bottom:1px; text-align: right; padding-bottom: 1em; padding-right: 3em; -- cgit v1.2.3