From 711719ce0ce340fbcda7559bf20582e85e4b1e3d Mon Sep 17 00:00:00 2001 From: root Date: Wed, 7 May 2014 12:01:12 -0700 Subject: [PATCH 001/147] Made some changes to img tags to enforce max-width everywhere, and to the page headers to allow user scaling. --- include/bbcode.php | 12 ++++++------ view/tpl/head.tpl | 2 +- view/tpl/photo_view.tpl | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/include/bbcode.php b/include/bbcode.php index 326676b72..92d979638 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -606,24 +606,24 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true) { // Images // [img]pathtoimage[/img] if (strpos($Text,'[/img]') !== false) { - $Text = preg_replace("/\[img\](.*?)\[\/img\]/ism", '' . t('Image/photo') . '', $Text); + $Text = preg_replace("/\[img\](.*?)\[\/img\]/ism", '' . t('Image/photo') . '', $Text); } if (strpos($Text,'[/zmg]') !== false) { - $Text = preg_replace("/\[zmg\](.*?)\[\/zmg\]/ism", '' . t('Image/photo') . '', $Text); + $Text = preg_replace("/\[zmg\](.*?)\[\/zmg\]/ism", '' . t('Image/photo') . '', $Text); } // [img float={left, right}]pathtoimage[/img] if (strpos($Text,'[/img]') !== false) { - $Text = preg_replace("/\[img float=left\](.*?)\[\/img\]/ism", '' . t('Image/photo') . '', $Text); + $Text = preg_replace("/\[img float=left\](.*?)\[\/img\]/ism", '' . t('Image/photo') . '', $Text); } if (strpos($Text,'[/img]') !== false) { - $Text = preg_replace("/\[img float=right\](.*?)\[\/img\]/ism", '' . t('Image/photo') . '', $Text); + $Text = preg_replace("/\[img float=right\](.*?)\[\/img\]/ism", '' . t('Image/photo') . '', $Text); } if (strpos($Text,'[/zmg]') !== false) { - $Text = preg_replace("/\[zmg float=left\](.*?)\[\/zmg\]/ism", '' . t('Image/photo') . '', $Text); + $Text = preg_replace("/\[zmg float=left\](.*?)\[\/zmg\]/ism", '' . t('Image/photo') . '', $Text); } if (strpos($Text,'[/zmg]') !== false) { - $Text = preg_replace("/\[zmg float=right\](.*?)\[\/zmg\]/ism", '' . t('Image/photo') . '', $Text); + $Text = preg_replace("/\[zmg float=right\](.*?)\[\/zmg\]/ism", '' . t('Image/photo') . '', $Text); } // [img=widthxheight]pathtoimage[/img] diff --git a/view/tpl/head.tpl b/view/tpl/head.tpl index e7b41523f..54aa5d41c 100755 --- a/view/tpl/head.tpl +++ b/view/tpl/head.tpl @@ -1,6 +1,6 @@ - + + + + {{$head_css}} {{$js_strings}} From 874b8d40ff14e39bac4875efbaee2f24121d20bd Mon Sep 17 00:00:00 2001 From: root Date: Sat, 10 May 2014 11:22:00 -0700 Subject: [PATCH 022/147] Changed some comments. --- mod/photo.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mod/photo.php b/mod/photo.php index b351ce17f..9302278b6 100644 --- a/mod/photo.php +++ b/mod/photo.php @@ -104,8 +104,7 @@ function photo_init(&$a) { if(substr($photo,-2,1) == '-') { $resolution = intval(substr($photo,-1,1)); $photo = substr($photo,0,-2); - // Serve high-resolution images regardless (this is rude): - // [Note: this can be improved by setting a cookie to indicate that the user is viewing on a high-resolution display] + // If viewing on a high-res screen, attempt to serve a higher resolution image: if ($resolution == 2 && ($cookie_value > 1)) { $resolution = 1; From d1e0479f58e32c63160c7ad9dbd0c1c2363a1b6c Mon Sep 17 00:00:00 2001 From: root Date: Sat, 10 May 2014 11:35:16 -0700 Subject: [PATCH 023/147] Removed some unnecessary changes. --- view/tpl/head.tpl | 2 +- view/tpl/photo_view.tpl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/view/tpl/head.tpl b/view/tpl/head.tpl index 496758079..a212fd486 100755 --- a/view/tpl/head.tpl +++ b/view/tpl/head.tpl @@ -1,6 +1,6 @@ - + From e68bb132a701d170ef1e13752a8f64107eac7353 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 15 May 2014 16:43:42 -0700 Subject: [PATCH 061/147] some backend stuff for apps --- include/apps.php | 53 ++++++++++++++++++++++++++++++++++++++++++++++ include/plugin.php | 11 ++++++++++ mod/apps.php | 22 +++++++++++-------- version.inc | 2 +- 4 files changed, 78 insertions(+), 10 deletions(-) create mode 100644 include/apps.php diff --git a/include/apps.php b/include/apps.php new file mode 100644 index 000000000..38812ef83 --- /dev/null +++ b/include/apps.php @@ -0,0 +1,53 @@ +get_apps(); - - if(count($apps) == 0) - notice( t('No installed applications.') . EOL); - $tpl = get_markup_template("apps.tpl"); - return replace_macros($tpl, array( - '$title' => t('Applications'), - '$apps' => $apps, - )); + $apps = get_system_apps(); + + $o .= print_r($apps,true); + + return $o; + +// $tpl = get_markup_template("apps.tpl"); +// return replace_macros($tpl, array( +// '$title' => t('Applications'), +// '$apps' => $apps, +// )); } diff --git a/version.inc b/version.inc index bb7d12c4b..3a42d37e3 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-05-14.675 +2014-05-15.676 From 99d97170deb1d2b04e649b8f7a3170145ff2a19d Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 15 May 2014 17:15:22 -0700 Subject: [PATCH 062/147] apps: provide a default photo if none was set. For now it's the default profile photo until we have a default app photo --- include/apps.php | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/include/apps.php b/include/apps.php index 38812ef83..244c2adb7 100644 --- a/include/apps.php +++ b/include/apps.php @@ -40,14 +40,27 @@ function get_system_apps() { function parse_app_description($f) { $ret = array(); + $baseurl = z_root(); + $channel = get_app()->get_channel(); + $address = (($channel) ? $channel['channel_address'] : ''); + + //future expansion + + $observer = get_observer(); + + + $lines = @file($f); if($lines) { foreach($lines as $x) { if(preg_match('/^([a-zA-Z].*?):(.*?)$/ism',$x,$matches)) { - $ret[$matches[1]] = trim($matches[2]); + $ret[$matches[1]] = trim(str_replace(array('$baseurl','$nick'),array($baseurl,$address),$matches[2])); } } } + if(! $ret['photo']) + $ret['photo'] = $baseurl . '/' . get_default_profile_photo(80); + return $ret; } From 077b97eac46989cfc7aadc14f3c4974fb31473b3 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 15 May 2014 19:54:37 -0700 Subject: [PATCH 063/147] the app menu takes form --- include/apps.php | 46 +++++++++++++++++++++++++++++++++++++++++++--- mod/apps.php | 14 +++++++------- view/tpl/apps.tpl | 14 +++++++++----- 3 files changed, 59 insertions(+), 15 deletions(-) diff --git a/include/apps.php b/include/apps.php index 244c2adb7..f6c09d803 100644 --- a/include/apps.php +++ b/include/apps.php @@ -46,10 +46,9 @@ function parse_app_description($f) { //future expansion - $observer = get_observer(); + $observer = get_app()->get_observer(); - $lines = @file($f); if($lines) { foreach($lines as $x) { @@ -62,5 +61,46 @@ function parse_app_description($f) { if(! $ret['photo']) $ret['photo'] = $baseurl . '/' . get_default_profile_photo(80); - return $ret; + + foreach($ret as $k => $v) { + if(strpos($v,'http') === 0) + $ret[$k] = zid($v); + } + + if(array_key_exists('requires',$ret)) { + $require = trim(strtolower($ret['requires'])); + switch($require) { + case 'local_user': + if(! local_user()) + unset($ret); + break; + case 'observer': + if(! $observer) + unset($ret); + break; + default: + if(! local_user() && feature_enabled(local_user(),$require)) + unset($ret); + break; + + } + logger('require: ' . print_r($ret,true)); + } + if($ret) { + translate_system_apps($ret); + return $ret; + } + return false; } + + +function translate_system_apps(&$arr) { + $apps = array( 'Matrix' => t('Matrix'), 'Channel Home' => t('Channel Home'), 'Profile' => t('Profile'), + 'Photos' => t('Photos') + + ); + + if(array_key_exists($arr['name'],$apps)) + $arr['name'] = $apps[$arr['name']]; + +} \ No newline at end of file diff --git a/mod/apps.php b/mod/apps.php index 678af74e7..51d610703 100644 --- a/mod/apps.php +++ b/mod/apps.php @@ -8,14 +8,14 @@ function apps_content(&$a) { $apps = get_system_apps(); - $o .= print_r($apps,true); +// $o .= print_r($apps,true); - return $o; +// return $o; -// $tpl = get_markup_template("apps.tpl"); -// return replace_macros($tpl, array( -// '$title' => t('Applications'), -// '$apps' => $apps, -// )); + + return replace_macros(get_markup_template('apps.tpl'), array( + '$title' => t('Applications'), + '$apps' => $apps, + )); } diff --git a/view/tpl/apps.tpl b/view/tpl/apps.tpl index 335e0ca97..4a5ddfbcb 100755 --- a/view/tpl/apps.tpl +++ b/view/tpl/apps.tpl @@ -1,7 +1,11 @@

{{$title}}

-
    - {{foreach $apps as $ap}} -
  • {{$ap}}
  • - {{/foreach}} -
+{{foreach $apps as $ap}} + +{{/foreach}} +
+ From 2237c39c94f3fdad72a5d7703a6def69c26b0a47 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 15 May 2014 19:56:31 -0700 Subject: [PATCH 064/147] first apd files --- app/channel.apd | 3 +++ app/matrix.apd | 3 +++ app/profile.apd | 4 ++++ 3 files changed, 10 insertions(+) create mode 100644 app/channel.apd create mode 100644 app/matrix.apd create mode 100644 app/profile.apd diff --git a/app/channel.apd b/app/channel.apd new file mode 100644 index 000000000..cfb1f55da --- /dev/null +++ b/app/channel.apd @@ -0,0 +1,3 @@ +url: $baseurl/channel/$nick +requires: local_user +name: Channel Home diff --git a/app/matrix.apd b/app/matrix.apd new file mode 100644 index 000000000..c762e5aa6 --- /dev/null +++ b/app/matrix.apd @@ -0,0 +1,3 @@ +url: $baseurl/network +requires: local_user +name: Matrix diff --git a/app/profile.apd b/app/profile.apd new file mode 100644 index 000000000..ce52f960b --- /dev/null +++ b/app/profile.apd @@ -0,0 +1,4 @@ +url: $baseurl/profile/$nick +requires: local_user +name: Profile + From 2450caa161170ee940fb1bd99b7c255111f44cba Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 15 May 2014 19:58:23 -0700 Subject: [PATCH 065/147] add the theme file --- view/css/mod_apps.css | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 view/css/mod_apps.css diff --git a/view/css/mod_apps.css b/view/css/mod_apps.css new file mode 100644 index 000000000..2788817d9 --- /dev/null +++ b/view/css/mod_apps.css @@ -0,0 +1,5 @@ +.app-container { + float: left; + width: 125px; + padding: 20px; +} From 2dee303d92e4dc5d176483b2af3791b7c5f546cb Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 15 May 2014 20:09:28 -0700 Subject: [PATCH 066/147] more base apps --- app/events.apd | 4 ++++ app/photos.apd | 4 ++++ include/apps.php | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 app/events.apd create mode 100644 app/photos.apd diff --git a/app/events.apd b/app/events.apd new file mode 100644 index 000000000..4f832ab18 --- /dev/null +++ b/app/events.apd @@ -0,0 +1,4 @@ +url: $baseurl/events +requires: local_user +name: Events + diff --git a/app/photos.apd b/app/photos.apd new file mode 100644 index 000000000..de0e60096 --- /dev/null +++ b/app/photos.apd @@ -0,0 +1,4 @@ +url: $baseurl/photos/$nick +requires: local_user +name: Photos + diff --git a/include/apps.php b/include/apps.php index f6c09d803..ced337e71 100644 --- a/include/apps.php +++ b/include/apps.php @@ -96,7 +96,7 @@ function parse_app_description($f) { function translate_system_apps(&$arr) { $apps = array( 'Matrix' => t('Matrix'), 'Channel Home' => t('Channel Home'), 'Profile' => t('Profile'), - 'Photos' => t('Photos') + 'Photos' => t('Photos'), 'Events' => t('Events') ); From 2fdc13e91d3b0ccd514a13fd7f475f045656b23f Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 15 May 2014 20:20:20 -0700 Subject: [PATCH 067/147] some sidebar content (doesn't yet do anything) --- include/widgets.php | 12 ++++++++++++ mod/apps.php | 2 +- view/pdl/mod_apps.pdl | 3 +++ view/tpl/app_select.tpl | 10 ++++++++++ 4 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 view/pdl/mod_apps.pdl create mode 100644 view/tpl/app_select.tpl diff --git a/include/widgets.php b/include/widgets.php index 0ed79f1eb..37a079bc7 100644 --- a/include/widgets.php +++ b/include/widgets.php @@ -74,6 +74,18 @@ function widget_collections($args) { } +function widget_appselect($arr) { + return replace_macros(get_markup_template('app_select.tpl'),array( + '$title' => t('App Category'), + '$system' => t('System'), + '$personal' => t('Personal'), + '$featured' => t('Featured'), + '$new' => t('New') + )); +} + + + function widget_suggestions($arr) { if((! local_user()) || (! feature_enabled(local_user(),'suggest'))) diff --git a/mod/apps.php b/mod/apps.php index 51d610703..3d06abd49 100644 --- a/mod/apps.php +++ b/mod/apps.php @@ -14,7 +14,7 @@ function apps_content(&$a) { return replace_macros(get_markup_template('apps.tpl'), array( - '$title' => t('Applications'), + '$title' => t('Apps'), '$apps' => $apps, )); diff --git a/view/pdl/mod_apps.pdl b/view/pdl/mod_apps.pdl new file mode 100644 index 000000000..db93958a3 --- /dev/null +++ b/view/pdl/mod_apps.pdl @@ -0,0 +1,3 @@ +[region=aside] +[widget=appselect][/widget] +[/region] diff --git a/view/tpl/app_select.tpl b/view/tpl/app_select.tpl new file mode 100644 index 000000000..9613b4976 --- /dev/null +++ b/view/tpl/app_select.tpl @@ -0,0 +1,10 @@ + + From a2b4187a083a16df788fa6feb196d64ec970d3c4 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 15 May 2014 20:36:09 -0700 Subject: [PATCH 068/147] add directory --- app/directory.apd | 2 ++ include/apps.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 app/directory.apd diff --git a/app/directory.apd b/app/directory.apd new file mode 100644 index 000000000..59aa157c6 --- /dev/null +++ b/app/directory.apd @@ -0,0 +1,2 @@ +url: $baseurl/directory +name: Directory diff --git a/include/apps.php b/include/apps.php index ced337e71..80fc0299b 100644 --- a/include/apps.php +++ b/include/apps.php @@ -96,7 +96,7 @@ function parse_app_description($f) { function translate_system_apps(&$arr) { $apps = array( 'Matrix' => t('Matrix'), 'Channel Home' => t('Channel Home'), 'Profile' => t('Profile'), - 'Photos' => t('Photos'), 'Events' => t('Events') + 'Photos' => t('Photos'), 'Events' => t('Events'), 'Directory' => t('Directory') ); From 420540fc9444ec3273338ea7663e7903e9933414 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 15 May 2014 20:39:49 -0700 Subject: [PATCH 069/147] login app --- app/login.apd | 3 +++ include/apps.php | 4 ++++ 2 files changed, 7 insertions(+) create mode 100644 app/login.apd diff --git a/app/login.apd b/app/login.apd new file mode 100644 index 000000000..8d2c688b5 --- /dev/null +++ b/app/login.apd @@ -0,0 +1,3 @@ +url: $baseurl/login +requires: nologin +name: Login \ No newline at end of file diff --git a/include/apps.php b/include/apps.php index 80fc0299b..733cb30cf 100644 --- a/include/apps.php +++ b/include/apps.php @@ -70,6 +70,10 @@ function parse_app_description($f) { if(array_key_exists('requires',$ret)) { $require = trim(strtolower($ret['requires'])); switch($require) { + case 'nologin': + if(local_user()) + unset($ret); + break; case 'local_user': if(! local_user()) unset($ret); From 07fbf0d5de09ea594f2b19a4067bca986e96cacc Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 15 May 2014 20:46:41 -0700 Subject: [PATCH 070/147] this is how to link photos to apps --- app/matrix.apd | 1 + app/matrix.png | Bin 0 -> 8983 bytes 2 files changed, 1 insertion(+) create mode 100644 app/matrix.png diff --git a/app/matrix.apd b/app/matrix.apd index c762e5aa6..96df48690 100644 --- a/app/matrix.apd +++ b/app/matrix.apd @@ -1,3 +1,4 @@ url: $baseurl/network requires: local_user name: Matrix +photo: $baseurl/app/matrix.png diff --git a/app/matrix.png b/app/matrix.png new file mode 100644 index 0000000000000000000000000000000000000000..1ee7c1b97193212e9d1a7315cd7d00c45ce100f3 GIT binary patch literal 8983 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 xI5St}pZjckyWJpmg^#qA{ Date: Thu, 15 May 2014 20:58:26 -0700 Subject: [PATCH 071/147] add hover tips - except we need a way to translate the things --- include/apps.php | 5 +++++ view/tpl/apps.tpl | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/include/apps.php b/include/apps.php index 733cb30cf..1896b938b 100644 --- a/include/apps.php +++ b/include/apps.php @@ -58,6 +58,8 @@ function parse_app_description($f) { } } + + if(! $ret['photo']) $ret['photo'] = $baseurl . '/' . get_default_profile_photo(80); @@ -67,6 +69,9 @@ function parse_app_description($f) { $ret[$k] = zid($v); } + if(array_key_exists('hover',$ret)) + $ret['hover'] = str_replace(array('\'','"'),array(''','&dquot;'),$ret['hover']); + if(array_key_exists('requires',$ret)) { $require = trim(strtolower($ret['requires'])); switch($require) { diff --git a/view/tpl/apps.tpl b/view/tpl/apps.tpl index 4a5ddfbcb..02a6bd047 100755 --- a/view/tpl/apps.tpl +++ b/view/tpl/apps.tpl @@ -2,7 +2,7 @@ {{foreach $apps as $ap}} From 95f4103a9fa7966e8b5419ec73d5f54f39795e3e Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 15 May 2014 22:29:07 -0700 Subject: [PATCH 072/147] some photos --- app/channel.apd | 1 + app/directory.apd | 1 + app/directory.png | Bin 0 -> 12024 bytes app/events.apd | 2 +- app/events.png | Bin 0 -> 11242 bytes app/home.png | Bin 0 -> 5172 bytes app/photos.apd | 2 +- app/photos.png | Bin 0 -> 11571 bytes 8 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 app/directory.png create mode 100644 app/events.png create mode 100644 app/home.png create mode 100644 app/photos.png diff --git a/app/channel.apd b/app/channel.apd index cfb1f55da..be13ee77b 100644 --- a/app/channel.apd +++ b/app/channel.apd @@ -1,3 +1,4 @@ url: $baseurl/channel/$nick requires: local_user name: Channel Home +photo: $baseurl/app/home.png diff --git a/app/directory.apd b/app/directory.apd index 59aa157c6..c4a6f12d9 100644 --- a/app/directory.apd +++ b/app/directory.apd @@ -1,2 +1,3 @@ url: $baseurl/directory name: Directory +photo: $baseurl/app/directory.png diff --git a/app/directory.png b/app/directory.png new file mode 100644 index 0000000000000000000000000000000000000000..2df872d944cbd05a02d19f3c1a00704bfd441546 GIT binary patch literal 12024 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 WfTqTDM^bbE0000|D^_ww@lRz|vCuzLs)$;-`! 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 UVQ=j-jsO4v07*qoM6N<$f+%JN#sB~S literal 0 HcmV?d00001 diff --git a/app/home.png b/app/home.png new file mode 100644 index 0000000000000000000000000000000000000000..3f1b864fceefdb032ac026e876e845b6ec94f9c6 GIT binary patch literal 5172 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 literal 0 HcmV?d00001 From 6d4d8ec42df3caef9cfc6a538c8c6d772afb175a Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 15 May 2014 22:49:42 -0700 Subject: [PATCH 073/147] icons --- app/login.apd | 3 ++- app/login.png | Bin 0 -> 5847 bytes 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 app/login.png diff --git a/app/login.apd b/app/login.apd index 8d2c688b5..e4cccbc7e 100644 --- a/app/login.apd +++ b/app/login.apd @@ -1,3 +1,4 @@ url: $baseurl/login requires: nologin -name: Login \ No newline at end of file +name: Login +photo: $baseurl/app/login.png diff --git a/app/login.png b/app/login.png new file mode 100644 index 0000000000000000000000000000000000000000..4e5625ee74f496ffbf449fea17d81dd21f03e404 GIT binary patch literal 5847 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 Date: Fri, 16 May 2014 02:13:27 -0700 Subject: [PATCH 074/147] doc updates --- app/connections.apd | 4 + app/connections.png | Bin 0 -> 9387 bytes doc/html/apw_2php_2style_8php.html | 2 +- doc/html/boot_8php.html | 10 +- doc/html/dba__driver_8php.html | 4 +- .../dir_3d9c9d0c5e9556dd3eba1e072fa6eaeb.html | 2 + .../dir_3d9c9d0c5e9556dd3eba1e072fa6eaeb.js | 1 + .../dir_d41ce877eb409a4791b288730010abe2.html | 2 +- .../dir_d41ce877eb409a4791b288730010abe2.js | 2 +- .../dir_d44c64559bbebec7f509842c48db8b23.html | 2 + .../dir_d44c64559bbebec7f509842c48db8b23.js | 1 + doc/html/extract_8php.html | 4 +- doc/html/features_8php.html | 2 +- doc/html/files.html | 154 ++-- doc/html/globals_0x61.html | 2 +- doc/html/globals_0x67.html | 3 + doc/html/globals_0x70.html | 6 + doc/html/globals_0x72.html | 3 + doc/html/globals_0x74.html | 5 +- doc/html/globals_0x77.html | 6 + doc/html/globals_func_0x61.html | 2 +- doc/html/globals_func_0x67.html | 3 + doc/html/globals_func_0x70.html | 6 + doc/html/globals_func_0x72.html | 3 + doc/html/globals_func_0x74.html | 3 + doc/html/globals_func_0x77.html | 6 + doc/html/identity_8php.html | 4 +- doc/html/items_8php.html | 18 + doc/html/items_8php.js | 1 + doc/html/language_8php.html | 2 +- doc/html/navtree.js | 16 +- doc/html/navtreeindex0.js | 110 +-- doc/html/navtreeindex1.js | 8 +- doc/html/navtreeindex2.js | 4 +- doc/html/navtreeindex3.js | 216 +++--- doc/html/navtreeindex4.js | 98 +-- doc/html/navtreeindex5.js | 408 +++++------ doc/html/navtreeindex6.js | 134 ++-- doc/html/navtreeindex7.js | 338 ++++----- doc/html/navtreeindex8.js | 125 ++-- doc/html/php2po_8php.html | 2 +- doc/html/php_2theme__init_8php.html | 2 +- doc/html/plugin_8php.html | 24 +- doc/html/plugin_8php.js | 1 + doc/html/search/all_61.js | 5 +- doc/html/search/all_62.js | 1 + doc/html/search/all_67.js | 3 +- doc/html/search/all_70.js | 2 + doc/html/search/all_72.js | 1 + doc/html/search/all_74.js | 3 +- doc/html/search/all_77.js | 2 + doc/html/search/files_61.js | 5 +- doc/html/search/files_62.js | 3 +- doc/html/search/functions_61.js | 2 +- doc/html/search/functions_67.js | 1 + doc/html/search/functions_70.js | 2 + doc/html/search/functions_72.js | 1 + doc/html/search/functions_74.js | 1 + doc/html/search/functions_77.js | 2 + doc/html/text_8php.html | 6 +- doc/html/typo_8php.html | 2 +- doc/html/widgets_8php.html | 43 ++ doc/html/widgets_8php.js | 2 + util/messages.po | 692 +++++++++--------- version.inc | 2 +- 65 files changed, 1356 insertions(+), 1174 deletions(-) create mode 100644 app/connections.apd create mode 100644 app/connections.png diff --git a/app/connections.apd b/app/connections.apd new file mode 100644 index 000000000..80f9b4570 --- /dev/null +++ b/app/connections.apd @@ -0,0 +1,4 @@ +url: $baseurl/connections +requires: local_user +name: Address Book +photo: $baseurl/app/connections.png diff --git a/app/connections.png b/app/connections.png new file mode 100644 index 0000000000000000000000000000000000000000..6f61007619c353856ed9a2e0f903c9582b067c1d GIT binary patch literal 9387 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
-

Referenced by Template\_replcb_for(), Template\_replcb_if(), account_remove(), acl_init(), activity_sanitise(), admin_page_channels(), admin_page_themes(), aes_encapsulate(), argv(), array_sanitise(), attach_change_permissions(), attach_delete(), attach_store(), autoname(), bb_parse_crypt(), bbcode(), block_content(), blocks_content(), bookmark_add(), bookmarks_content(), build_sync_packet(), change_channel(), channel_content(), chat_content(), chat_message(), chat_post(), chatroom_create(), chatroom_enter(), chatsvc_content(), chatsvc_init(), chatsvc_post(), check_config(), check_form_security_token(), check_item_source(), check_list_permissions(), check_webbie(), RedDirectory\childExists(), cloud_init(), common_init(), construct_page(), conversation(), RedDirectory\createFile(), photo_gd\cropImage(), photo_imagick\cropImage(), datesel(), datesel_format(), decode_tags(), deliver_run(), dir_tagadelic(), directory_content(), directory_run(), dirprofile_init(), display_content(), downgrade_accounts(), email_header_encode(), encode_item(), encode_mail(), event_store(), expand_groups(), expire_run(), externals_run(), feature_enabled(), fetch_post_tags(), filer_content(), find_xchan_in_array(), findpeople_widget(), fix_private_photos(), fix_system_urls(), photo_gd\flip(), fsuggest_post(), get_all_perms(), get_item_elements(), get_mail_elements(), get_mentions(), get_online_status(), get_profile_elements(), get_terms_oftype(), get_theme_uid(), RedDirectory\getChild(), RedDirectory\getDir(), RedDirectory\getQuotaInfo(), gprobe_run(), hostxrd_init(), ids_to_querystr(), import_author_rss(), import_author_xchan(), import_author_zot(), import_directory_keywords(), import_directory_profile(), import_post(), import_site(), import_xchan(), invite_content(), invite_post(), item_post(), items_fetch(), json_decode_plus(), json_return_and_die(), layouts_content(), legal_webbie(), FKOAuth1\loginUser(), magic_init(), mail_post(), manage_content(), match_content(), menu_content(), menu_delete_id(), menu_fetch(), menu_render(), mimetype_select(), nav(), navbar_complete(), network_content(), new_channel_init(), new_contact(), notification(), notifier_run(), oembed_fetch_url(), onedirsync_run(), onepoll_run(), openid_content(), page_content(), parse_xml_string(), pdledit_content(), perm_is_allowed(), photos_list_photos(), photos_post(), ping_init(), poco_load(), poller_run(), post_init(), post_post(), preg_heart(), print_template(), private_messages_list(), proc_run(), process_channel_sync_delivery(), process_mail_delivery(), profile_init(), profile_load(), profile_photo_post(), prune_hub_reinstalls(), public_recips(), RedFile\put(), dba_mysql\q(), dba_mysqli\q(), randprof_init(), red_item_new(), RedCollectionData(), RedFileData(), remote_online_status(), remove_community_tag(), rpost_content(), photo_driver\save(), search_ac_init(), send_status_notifications(), share_init(), site_default_perms(), smilies(), sources_content(), sslify_init(), photo_driver\store(), string_splitter(), stringify_array_elms(), sync_directories(), tag_deliver(), tagadelic(), tagrm_content(), tagrm_post(), theme_status(), thing_content(), timesel(), toggle_theme(), update_directory_entry(), update_imported_item(), upgrade_bool_message(), upgrade_message(), valid_email(), RedBasicAuth\validateUserPass(), webpages_content(), what_next(), widget_affinity(), widget_bookmarkedchats(), widget_suggestedchats(), widget_suggestions(), xchan_query(), xmlify(), zfinger_init(), zot_process_response(), zot_refresh(), zot_register_hub(), and zotfeed_init().

+

Referenced by Template\_replcb_for(), Template\_replcb_if(), account_remove(), acl_init(), activity_sanitise(), admin_page_channels(), admin_page_themes(), aes_encapsulate(), argv(), array_sanitise(), attach_change_permissions(), attach_delete(), attach_store(), autoname(), bb_parse_crypt(), bbcode(), block_content(), blocks_content(), bookmark_add(), bookmarks_content(), build_sync_packet(), change_channel(), channel_content(), chat_content(), chat_message(), chat_post(), chatroom_create(), chatroom_enter(), chatsvc_content(), chatsvc_init(), chatsvc_post(), check_config(), check_form_security_token(), check_item_source(), check_list_permissions(), check_webbie(), RedDirectory\childExists(), cloud_init(), common_init(), construct_page(), conversation(), RedDirectory\createFile(), photo_gd\cropImage(), photo_imagick\cropImage(), datesel(), datesel_format(), decode_tags(), deliver_run(), dir_tagadelic(), directory_content(), directory_run(), dirprofile_init(), display_content(), downgrade_accounts(), email_header_encode(), encode_item(), encode_mail(), event_store(), expand_groups(), expire_run(), externals_run(), feature_enabled(), fetch_post_tags(), filer_content(), find_xchan_in_array(), findpeople_widget(), fix_private_photos(), fix_system_urls(), photo_gd\flip(), fsuggest_post(), get_all_perms(), get_item_elements(), get_mail_elements(), get_mentions(), get_online_status(), get_profile_elements(), get_system_apps(), get_terms_oftype(), get_theme_uid(), RedDirectory\getChild(), RedDirectory\getDir(), RedDirectory\getQuotaInfo(), gprobe_run(), hostxrd_init(), ids_to_querystr(), import_author_rss(), import_author_xchan(), import_author_zot(), import_directory_keywords(), import_directory_profile(), import_post(), import_site(), import_xchan(), invite_content(), invite_post(), item_post(), items_fetch(), json_decode_plus(), json_return_and_die(), layouts_content(), legal_webbie(), FKOAuth1\loginUser(), magic_init(), mail_post(), manage_content(), match_content(), menu_content(), menu_delete_id(), menu_fetch(), menu_render(), mimetype_select(), nav(), navbar_complete(), network_content(), new_channel_init(), new_contact(), notification(), notifier_run(), oembed_fetch_url(), onedirsync_run(), onepoll_run(), openid_content(), page_content(), parse_app_description(), parse_xml_string(), pdledit_content(), perm_is_allowed(), photos_list_photos(), photos_post(), ping_init(), poco_load(), poller_run(), post_init(), post_post(), preg_heart(), print_template(), private_messages_list(), proc_run(), process_channel_sync_delivery(), process_mail_delivery(), profile_init(), profile_load(), profile_photo_post(), prune_hub_reinstalls(), public_recips(), RedFile\put(), dba_mysql\q(), dba_mysqli\q(), randprof_init(), red_item_new(), RedCollectionData(), RedFileData(), remote_online_status(), remove_community_tag(), rpost_content(), photo_driver\save(), search_ac_init(), send_status_notifications(), share_init(), site_default_perms(), smilies(), sources_content(), sslify_init(), photo_driver\store(), string_splitter(), stringify_array_elms(), sync_directories(), tag_deliver(), tagadelic(), tagrm_content(), tagrm_post(), theme_status(), thing_content(), timesel(), toggle_theme(), update_directory_entry(), update_imported_item(), upgrade_bool_message(), upgrade_message(), valid_email(), RedBasicAuth\validateUserPass(), webpages_content(), what_next(), widget_affinity(), widget_bookmarkedchats(), widget_suggestedchats(), widget_suggestions(), xchan_query(), xmlify(), zfinger_init(), zot_process_response(), zot_refresh(), zot_register_hub(), and zotfeed_init().

diff --git a/doc/html/boot_8php.html b/doc/html/boot_8php.html index e826cddaa..c58e7006c 100644 --- a/doc/html/boot_8php.html +++ b/doc/html/boot_8php.html @@ -984,7 +984,7 @@ Variables
-

Referenced by FriendicaSmarty\__construct(), FriendicaSmartyEngine\__construct(), abook_toggle_flag(), allowed_public_recips(), api_apply_template(), api_format_items(), api_get_user(), api_statuses_home_timeline(), api_statuses_repeat(), api_statuses_user_timeline(), api_user(), argc(), argv(), atom_entry(), authenticate_success(), avatar_img(), bbcode(), best_link_url(), blogtheme_imgurl(), build_sync_packet(), call_hooks(), can_comment_on_post(), categories_widget(), change_channel(), channel_remove(), check_form_security_token(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), check_htaccess(), cli_suggest_run(), comanche_get_channel_id(), comanche_replace_region(), comanche_widget(), common_friends_visitor_widget(), connedit_content(), contact_block(), contact_select(), create_identity(), current_theme(), deliver_run(), design_tools(), dir_tagblock(), drop_item(), editpost_content(), event_store(), externals_run(), fileas_widget(), findpeople_widget(), fix_attached_photo_permissions(), fix_private_photos(), format_event_diaspora(), RedBrowser\generateDirectoryIndex(), get_account_id(), get_best_language(), get_birthdays(), get_events(), get_feed_for(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_observer_hash(), get_plink(), get_theme_config_file(), get_theme_screenshot(), gprobe_run(), group_select(), guess_image_type(), handle_tag(), head_add_css(), head_add_js(), head_get_css(), head_get_js(), head_remove_css(), head_remove_js(), RedBrowser\htmlActionsPanel(), identity_selector(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_xchan(), info(), insert_hook(), is_developer(), is_site_admin(), item_message_id(), item_photo_menu(), item_redir_and_replace_images(), item_store(), item_store_update(), items_fetch(), load_contact_links(), load_hooks(), local_dir_update(), login(), FKOAuth1\loginUser(), manage_content(), map_scope(), menu_add_item(), menu_edit_item(), nav_set_selected(), new_contact(), notice(), notification(), notifier_run(), oembed_fetch_url(), oembed_format_object(), oembed_iframe(), onedirsync_run(), onepoll_run(), page_content(), photos_album_widget(), photos_content(), ping_init(), poco_load(), poller_run(), post_activity_item(), preg_heart(), prepare_body(), proc_run(), process_delivery(), profile_activity(), profile_sidebar(), public_permissions_sql(), register_page_template(), replace_macros(), rmagic_init(), rpost_callback(), scale_external_images(), search(), searchbox(), send_message(), send_reg_approval_email(), send_status_notifications(), send_verification_email(), service_class_allows(), service_class_fetch(), smilies(), tag_deliver(), terminate_friendship(), tgroup_check(), theme_include(), tryzrlvideo(), tt(), update_suggestions(), user_allow(), vcard_from_xchan(), wfinger_init(), what_next(), widget_archive(), widget_categories(), widget_chatroom_list(), widget_collections(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_mailmenu(), widget_menu_preview(), widget_photo_albums(), widget_profile(), widget_savedsearch(), widget_settings_menu(), widget_tagcloud(), widget_tagcloud_wall(), widget_vcard(), z_fetch_url(), and zot_finger().

+

Referenced by FriendicaSmarty\__construct(), FriendicaSmartyEngine\__construct(), abook_toggle_flag(), allowed_public_recips(), api_apply_template(), api_format_items(), api_get_user(), api_statuses_home_timeline(), api_statuses_repeat(), api_statuses_user_timeline(), api_user(), argc(), argv(), atom_entry(), authenticate_success(), avatar_img(), bbcode(), best_link_url(), blogtheme_imgurl(), build_sync_packet(), call_hooks(), can_comment_on_post(), categories_widget(), change_channel(), channel_remove(), check_form_security_token(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), check_htaccess(), cli_suggest_run(), comanche_get_channel_id(), comanche_replace_region(), comanche_widget(), common_friends_visitor_widget(), connedit_content(), contact_block(), contact_select(), create_identity(), current_theme(), deliver_run(), design_tools(), dir_tagblock(), drop_item(), editpost_content(), event_store(), externals_run(), fileas_widget(), findpeople_widget(), fix_attached_photo_permissions(), fix_private_photos(), format_event_diaspora(), RedBrowser\generateDirectoryIndex(), get_account_id(), get_best_language(), get_birthdays(), get_events(), get_feed_for(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_observer_hash(), get_plink(), get_theme_config_file(), get_theme_screenshot(), gprobe_run(), group_select(), guess_image_type(), handle_tag(), head_add_css(), head_add_js(), head_get_css(), head_get_js(), head_remove_css(), head_remove_js(), RedBrowser\htmlActionsPanel(), identity_selector(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_xchan(), info(), insert_hook(), is_developer(), is_site_admin(), item_message_id(), item_photo_menu(), item_redir_and_replace_images(), item_store(), item_store_update(), items_fetch(), load_contact_links(), load_hooks(), local_dir_update(), login(), FKOAuth1\loginUser(), manage_content(), map_scope(), menu_add_item(), menu_edit_item(), nav_set_selected(), new_contact(), notice(), notification(), notifier_run(), oembed_fetch_url(), oembed_format_object(), oembed_iframe(), onedirsync_run(), onepoll_run(), page_content(), parse_app_description(), photos_album_widget(), photos_content(), ping_init(), poco_load(), poller_run(), post_activity_item(), preg_heart(), prepare_body(), proc_run(), process_delivery(), profile_activity(), profile_sidebar(), public_permissions_sql(), register_page_template(), replace_macros(), rmagic_init(), rpost_callback(), scale_external_images(), search(), searchbox(), send_message(), send_reg_approval_email(), send_status_notifications(), send_verification_email(), service_class_allows(), service_class_fetch(), smilies(), tag_deliver(), terminate_friendship(), tgroup_check(), theme_include(), tryzrlvideo(), tt(), update_suggestions(), user_allow(), vcard_from_xchan(), wfinger_init(), what_next(), widget_archive(), widget_categories(), widget_chatroom_list(), widget_collections(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_mailmenu(), widget_menu_preview(), widget_photo_albums(), widget_profile(), widget_savedsearch(), widget_settings_menu(), widget_tagcloud(), widget_tagcloud_wall(), widget_vcard(), z_fetch_url(), and zot_finger().

@@ -1233,7 +1233,7 @@ Variables
-

Referenced by Conversation\__construct(), acl_init(), api_content(), api_get_user(), api_post(), api_user(), apw_form(), best_link_url(), blocks_content(), bookmarks_content(), bookmarks_init(), App\build_pagehead(), build_sync_packet(), change_channel(), channel_content(), channel_init(), channel_remove(), chanview_content(), chat_content(), chat_init(), chat_post(), cloud_init(), comanche_get_channel_id(), common_friends_visitor_widget(), connect_content(), connect_post(), connections_content(), connections_init(), connections_post(), connedit_content(), connedit_init(), connedit_post(), contact_block(), contact_select(), contactgroup_content(), conversation(), current_theme(), delegate_content(), directory_content(), dirprofile_init(), display_content(), drop_item(), drop_items(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), fbrowser_content(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), filestorage_post(), findpeople_widget(), follow_content(), follow_init(), fsuggest_content(), fsuggest_post(), RedBrowser\generateDirectoryIndex(), get_birthdays(), Item\get_comment_box(), get_events(), get_online_status(), Item\get_template_data(), get_theme_uid(), group_content(), group_get_members(), group_post(), group_select(), group_side(), handle_tag(), home_init(), identity_selector(), invite_content(), invite_post(), item_content(), item_permissions_sql(), item_photo_menu(), item_post(), item_store(), item_store_update(), items_fetch(), layouts_content(), lockview_content(), login(), login_content(), magic_init(), mail_content(), mail_post(), manage_content(), match_content(), menu_add_item(), menu_content(), menu_edit_item(), menu_post(), message_content(), mimetype_select(), mitem_content(), mitem_init(), mitem_post(), mood_content(), mood_init(), nav(), navbar_complete(), network_content(), network_init(), new_contact(), notes_init(), notifications_content(), notifications_post(), notify_content(), notify_init(), oexchange_content(), pdledit_content(), pdledit_post(), 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_init(), profile_photo_post(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), profperm_init(), rbmark_content(), redbasic_form(), regmod_content(), removeme_content(), removeme_post(), rmagic_init(), rpost_content(), search(), search_ac_init(), search_content(), searchbox(), service_class_allows(), service_class_fetch(), Conversation\set_mode(), settings_init(), settings_post(), share_init(), smilies(), sources_content(), sources_post(), starred_init(), stream_perms_api_uids(), stream_perms_xchans(), 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_content(), viewconnections_init(), viewsrc_content(), webpages_content(), widget_affinity(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_mailmenu(), widget_notes(), widget_profile(), widget_savedsearch(), widget_settings_menu(), widget_suggestions(), z_input_filter(), zid_init(), and zping_content().

+

Referenced by Conversation\__construct(), acl_init(), api_content(), api_get_user(), api_post(), api_user(), apw_form(), best_link_url(), blocks_content(), bookmarks_content(), bookmarks_init(), App\build_pagehead(), build_sync_packet(), change_channel(), channel_content(), channel_init(), channel_remove(), chanview_content(), chat_content(), chat_init(), chat_post(), cloud_init(), comanche_get_channel_id(), common_friends_visitor_widget(), connect_content(), connect_post(), connections_content(), connections_init(), connections_post(), connedit_content(), connedit_init(), connedit_post(), contact_block(), contact_select(), contactgroup_content(), conversation(), current_theme(), delegate_content(), directory_content(), dirprofile_init(), display_content(), drop_item(), drop_items(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), fbrowser_content(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), filestorage_post(), findpeople_widget(), follow_content(), follow_init(), fsuggest_content(), fsuggest_post(), RedBrowser\generateDirectoryIndex(), get_birthdays(), Item\get_comment_box(), get_events(), get_online_status(), Item\get_template_data(), get_theme_uid(), group_content(), group_get_members(), group_post(), group_select(), group_side(), handle_tag(), home_init(), identity_selector(), invite_content(), invite_post(), item_content(), item_permissions_sql(), item_photo_menu(), item_post(), item_store(), item_store_update(), items_fetch(), layouts_content(), lockview_content(), login(), login_content(), magic_init(), mail_content(), mail_post(), manage_content(), match_content(), menu_add_item(), menu_content(), menu_edit_item(), menu_post(), message_content(), mimetype_select(), mitem_content(), mitem_init(), mitem_post(), mood_content(), mood_init(), nav(), navbar_complete(), network_content(), network_init(), new_contact(), notes_init(), notifications_content(), notifications_post(), notify_content(), notify_init(), oexchange_content(), parse_app_description(), pdledit_content(), pdledit_post(), 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_init(), profile_photo_post(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), profperm_init(), rbmark_content(), redbasic_form(), regmod_content(), removeme_content(), removeme_post(), rmagic_init(), rpost_content(), search(), search_ac_init(), search_content(), searchbox(), service_class_allows(), service_class_fetch(), Conversation\set_mode(), settings_init(), settings_post(), share_init(), smilies(), sources_content(), sources_post(), starred_init(), stream_perms_api_uids(), stream_perms_xchans(), 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_content(), viewconnections_init(), viewsrc_content(), webpages_content(), widget_affinity(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_mailmenu(), widget_notes(), widget_profile(), widget_savedsearch(), widget_settings_menu(), widget_suggestions(), z_input_filter(), zid_init(), and zping_content().

@@ -1285,7 +1285,7 @@ Variables
-

Referenced by achievements_content(), admin_content(), admin_page_channels(), admin_page_channels_post(), admin_page_hubloc(), admin_page_plugins(), admin_page_themes(), admin_page_users(), admin_page_users_post(), api_content(), api_post(), apps_content(), attach_init(), block_content(), blocks_content(), bookmarks_content(), channel_content(), channel_init(), chanview_content(), chat_content(), chat_init(), chatroom_enter(), check_form_security_token_redirectOnErr(), common_content(), common_init(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_post(), delegate_content(), directory_content(), dirprofile_init(), display_content(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), filestorage_content(), filestorage_post(), follow_init(), fsuggest_content(), fsuggest_post(), group_add(), group_content(), group_post(), home_content(), import_content(), import_post(), importelm_post(), invite_content(), invite_post(), item_content(), item_post(), layouts_content(), like_content(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), match_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_content(), network_content(), network_init(), new_channel_content(), new_channel_post(), notifications_content(), notifications_post(), oexchange_content(), openid_content(), page_content(), pdledit_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(), sources_content(), sources_post(), subthread_content(), suggest_content(), thing_content(), thing_init(), user_deny(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), and xchan_content().

+

Referenced by achievements_content(), admin_content(), admin_page_channels(), admin_page_channels_post(), admin_page_hubloc(), admin_page_plugins(), admin_page_themes(), admin_page_users(), admin_page_users_post(), api_content(), api_post(), attach_init(), block_content(), blocks_content(), bookmarks_content(), channel_content(), channel_init(), chanview_content(), chat_content(), chat_init(), chatroom_enter(), check_form_security_token_redirectOnErr(), common_content(), common_init(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_post(), delegate_content(), directory_content(), dirprofile_init(), display_content(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), filestorage_content(), filestorage_post(), follow_init(), fsuggest_content(), fsuggest_post(), group_add(), group_content(), group_post(), home_content(), import_content(), import_post(), importelm_post(), invite_content(), invite_post(), item_content(), item_post(), layouts_content(), like_content(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), match_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_content(), network_content(), network_init(), new_channel_content(), new_channel_post(), notifications_content(), notifications_post(), oexchange_content(), openid_content(), page_content(), pdledit_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(), sources_content(), sources_post(), subthread_content(), suggest_content(), thing_content(), thing_init(), user_deny(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), and xchan_content().

@@ -1419,7 +1419,7 @@ Variables
-

Referenced by allowed_public_recips(), authenticate_success(), bb_parse_crypt(), bbcode(), blocks_content(), chanlink_cid(), chanlink_hash(), chanlink_url(), channel_content(), channel_remove(), chat_content(), chat_post(), chatsvc_content(), check_config(), connect_post(), connections_content(), connections_post(), conversation(), create_identity(), deliver_run(), directory_content(), dirprofile_init(), display_content(), event_store(), externals_run(), filestorage_content(), find_upstream_directory(), follow_init(), format_categories(), format_filer(), RedBrowser\getAssetUrl(), group_post(), handle_tag(), App\head_get_icon(), head_get_icon(), home_init(), hostxrd_init(), import_post(), import_xchan(), invite_content(), item_post(), item_store(), layouts_content(), login_content(), lostpass_content(), lostpass_post(), magic_init(), magiclink_url(), mail_post(), manage_content(), menu_content(), menu_post(), mitem_content(), mitem_post(), mood_init(), nav(), navbar_complete(), network_content(), new_channel_post(), notification(), notifications_post(), notifier_run(), openid_content(), pagelist_widget(), pdledit_post(), photo_upload(), photos_album_widget(), photos_albums_list(), photos_create_item(), photos_list_photos(), post_activity_item(), post_init(), post_post(), profile_activity(), profile_sidebar(), public_recips(), pubsites_content(), rbmark_content(), rbmark_post(), register_post(), removeme_content(), rmagic_init(), rmagic_post(), rpost_content(), script_path(), search_content(), searchbox(), send_reg_approval_email(), send_verification_email(), setup_content(), setup_post(), siteinfo_content(), siteinfo_init(), sources_content(), sources_post(), sslify(), sync_directories(), tagger_content(), theme_attachments(), thing_init(), toggle_safesearch_init(), update_suggestions(), user_allow(), vcard_from_xchan(), webpages_content(), wfinger_init(), widget_archive(), widget_chatroom_list(), widget_dirtags(), widget_filer(), widget_savedsearch(), widget_suggestions(), xref_init(), zfinger_init(), zid_init(), zot_build_packet(), zot_fetch(), zot_new_uid(), and zot_refresh().

+

Referenced by allowed_public_recips(), authenticate_success(), bb_parse_crypt(), bbcode(), blocks_content(), chanlink_cid(), chanlink_hash(), chanlink_url(), channel_content(), channel_remove(), chat_content(), chat_post(), chatsvc_content(), check_config(), connect_post(), connections_content(), connections_post(), conversation(), create_identity(), deliver_run(), directory_content(), dirprofile_init(), display_content(), event_store(), externals_run(), filestorage_content(), find_upstream_directory(), follow_init(), format_categories(), format_filer(), RedBrowser\getAssetUrl(), group_post(), handle_tag(), App\head_get_icon(), head_get_icon(), home_init(), hostxrd_init(), import_post(), import_xchan(), invite_content(), item_post(), item_store(), layouts_content(), login_content(), lostpass_content(), lostpass_post(), magic_init(), magiclink_url(), mail_post(), manage_content(), menu_content(), menu_post(), mitem_content(), mitem_post(), mood_init(), nav(), navbar_complete(), network_content(), new_channel_post(), notification(), notifications_post(), notifier_run(), openid_content(), pagelist_widget(), parse_app_description(), pdledit_post(), photo_upload(), photos_album_widget(), photos_albums_list(), photos_create_item(), photos_list_photos(), post_activity_item(), post_init(), post_post(), profile_activity(), profile_sidebar(), public_recips(), pubsites_content(), rbmark_content(), rbmark_post(), register_post(), removeme_content(), rmagic_init(), rmagic_post(), rpost_content(), script_path(), search_content(), searchbox(), send_reg_approval_email(), send_verification_email(), setup_content(), setup_post(), siteinfo_content(), siteinfo_init(), sources_content(), sources_post(), sslify(), sync_directories(), tagger_content(), theme_attachments(), thing_init(), toggle_safesearch_init(), update_suggestions(), user_allow(), vcard_from_xchan(), webpages_content(), wfinger_init(), widget_archive(), widget_chatroom_list(), widget_dirtags(), widget_filer(), widget_savedsearch(), widget_suggestions(), xref_init(), zfinger_init(), zid_init(), zot_build_packet(), zot_fetch(), zot_new_uid(), and zot_refresh().

@@ -2373,7 +2373,7 @@ Variables
-

Referenced by achievements_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_site_post(), admin_page_users(), api_content(), api_post(), apps_content(), attach_init(), block_content(), blocks_content(), bookmarks_content(), bookmarks_init(), channel_content(), channel_init(), chanview_content(), chat_content(), chat_init(), chatroom_enter(), check_account_email(), check_account_invite(), check_form_security_std_err_msg(), check_htaccess(), check_keys(), check_php(), check_store(), common_content(), common_init(), connect_init(), connections_content(), connections_post(), connedit_content(), connedit_post(), delegate_content(), directory_content(), dirprofile_init(), display_content(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), filestorage_content(), filestorage_post(), follow_init(), format_like(), fsuggest_content(), fsuggest_post(), group_add(), group_content(), group_post(), home_content(), import_post(), import_xchan(), importelm_post(), invite_content(), invite_post(), item_content(), item_post(), layouts_content(), like_content(), load_database(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), match_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_content(), network_content(), network_init(), new_channel_content(), new_channel_post(), notifications_content(), notifications_post(), oexchange_content(), openid_content(), page_content(), pdledit_content(), pdledit_post(), photos_content(), photos_post(), poke_content(), post_init(), post_post(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), pubsites_content(), register_content(), register_post(), regmod_content(), rmagic_post(), search_content(), settings_post(), setup_content(), sources_content(), sources_post(), subthread_content(), suggest_content(), tagrm_post(), thing_content(), thing_init(), user_allow(), user_deny(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), and xchan_content().

+

Referenced by achievements_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_site_post(), admin_page_users(), api_content(), api_post(), attach_init(), block_content(), blocks_content(), bookmarks_content(), bookmarks_init(), channel_content(), channel_init(), chanview_content(), chat_content(), chat_init(), chatroom_enter(), check_account_email(), check_account_invite(), check_form_security_std_err_msg(), check_htaccess(), check_keys(), check_php(), check_store(), common_content(), common_init(), connect_init(), connections_content(), connections_post(), connedit_content(), connedit_post(), delegate_content(), directory_content(), dirprofile_init(), display_content(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), filestorage_content(), filestorage_post(), follow_init(), format_like(), fsuggest_content(), fsuggest_post(), group_add(), group_content(), group_post(), home_content(), import_post(), import_xchan(), importelm_post(), invite_content(), invite_post(), item_content(), item_post(), layouts_content(), like_content(), load_database(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), match_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_content(), network_content(), network_init(), new_channel_content(), new_channel_post(), notifications_content(), notifications_post(), oexchange_content(), openid_content(), page_content(), pdledit_content(), pdledit_post(), photos_content(), photos_post(), poke_content(), post_init(), post_post(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), pubsites_content(), register_content(), register_post(), regmod_content(), rmagic_post(), search_content(), settings_post(), setup_content(), sources_content(), sources_post(), subthread_content(), suggest_content(), tagrm_post(), thing_content(), thing_init(), user_allow(), user_deny(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), and xchan_content().

diff --git a/doc/html/dba__driver_8php.html b/doc/html/dba__driver_8php.html index 669920355..9ce6da914 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(), achievements_content(), acl_init(), add_source_route(), admin_page_users(), allowed_public_recips(), api_direct_messages_new(), api_get_user(), api_status_show(), api_statuses_destroy(), api_statuses_mentions(), api_user(), api_users_show(), attach_by_hash(), attach_by_hash_nodata(), attach_change_permissions(), attach_count_files(), attach_delete(), attach_list_files(), attach_mkdir(), attach_store(), authenticate_success(), block_content(), blocks_content(), bookmark_add(), bookmarks_init(), build_sync_packet(), call_hooks(), categories_widget(), change_channel(), channel_content(), channel_remove(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), chat_message(), chat_post(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatroom_leave(), chatsvc_content(), chatsvc_post(), check_account_email(), check_account_invite(), check_item_source(), check_webbie(), Cache\clear(), comanche_block(), common_friends(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_post(), consume_feed(), contact_remove(), contactgroup_content(), count_common_friends(), create_account(), create_identity(), RedDirectory\createFile(), dbesc_array_cb(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), dir_query_build(), directory_run(), dirsearch_content(), display_content(), downgrade_accounts(), editlayout_content(), editpost_content(), editwebpage_content(), event_store(), events_content(), events_post(), externals_run(), fbrowser_content(), feed_init(), fetch_post_tags(), file_tag_file_query(), filerm_content(), filestorage_content(), fix_attached_photo_permissions(), fix_private_photos(), fix_system_urls(), fsuggest_post(), Cache\get(), RedFile\get(), get_all_perms(), get_birthdays(), get_channel_by_nick(), get_cloudpath(), get_config_from_storage(), get_events(), get_item_elements(), get_online_status(), RedDirectory\getDir(), RedDirectory\getLastModified(), 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(), home_content(), import_author_rss(), import_author_zot(), 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(), layouts_content(), like_content(), load_config(), load_plugin(), load_xconfig(), local_dir_update(), lockview_content(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_store(), match_openid(), member_of(), menu_add_item(), menu_create(), menu_delete(), menu_edit(), menu_edit_item(), menu_fetch(), menu_list(), msearch_post(), network_content(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), FKOAuthDataStore\new_request_token(), notification(), notifier_run(), notify_init(), oauth_get_client(), oembed_fetch_url(), onedirsync_run(), onepoll_run(), openid_content(), 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(), process_profile_delivery(), profile_init(), profile_load(), profile_photo_post(), profile_photo_set_profile_perms(), profiles_init(), profiles_post(), profperm_content(), prune_hub_reinstalls(), public_permissions_sql(), public_recips(), RedFile\put(), queue_run(), rconnect_url(), red_zrl_callback(), RedCollectionData(), RedFileData(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), register_hook(), register_post(), remote_online_status(), remove_all_xchan_resources(), remove_community_tag(), remove_queue_item(), rmagic_init(), rmagic_post(), photo_driver\save(), search_ac_init(), search_content(), send_message(), send_reg_approval_email(), send_status_notifications(), Cache\set(), set_config(), set_pconfig(), set_xconfig(), RedFile\setName(), settings_post(), siteinfo_init(), sources_content(), sources_post(), photo_driver\store(), store_item_tag(), stream_perms_xchans(), stringify_array_elms(), subthread_content(), suggest_init(), sync_directories(), tag_deliver(), tagger_content(), tagrm_post(), term_query(), tgroup_check(), thing_content(), thing_init(), tryzrlaudio(), tryzrlvideo(), uninstall_plugin(), unregister_hook(), update_directory_entry(), update_modtime(), update_queue_time(), update_remote_id(), user_allow(), user_deny(), RedBasicAuth\validateUserPass(), vcard_from_xchan(), vote_post(), webpages_content(), wfinger_init(), widget_bookmarkedchats(), widget_item(), widget_savedsearch(), xchan_content(), xchan_mail_query(), xchan_query(), xrd_init(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hublocs(), zot_gethub(), zot_process_response(), zot_refresh(), and zotfeed_init().

+

Referenced by account_verify_password(), achievements_content(), acl_init(), add_source_route(), admin_page_users(), allowed_public_recips(), api_direct_messages_new(), api_get_user(), api_status_show(), api_statuses_destroy(), api_statuses_mentions(), api_user(), api_users_show(), attach_by_hash(), attach_by_hash_nodata(), attach_change_permissions(), attach_count_files(), attach_delete(), attach_list_files(), attach_mkdir(), attach_store(), authenticate_success(), block_content(), blocks_content(), bookmark_add(), bookmarks_init(), build_sync_packet(), call_hooks(), categories_widget(), change_channel(), channel_content(), channel_remove(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), chat_message(), chat_post(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatroom_leave(), chatsvc_content(), chatsvc_post(), check_account_email(), check_account_invite(), check_item_source(), check_webbie(), Cache\clear(), comanche_block(), common_friends(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_post(), consume_feed(), contact_remove(), contactgroup_content(), count_common_friends(), create_account(), create_identity(), RedDirectory\createFile(), dbesc_array_cb(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), dir_query_build(), directory_run(), dirsearch_content(), display_content(), downgrade_accounts(), editlayout_content(), editpost_content(), editwebpage_content(), event_store(), events_content(), events_post(), externals_run(), fbrowser_content(), feed_init(), fetch_post_tags(), file_tag_file_query(), filerm_content(), filestorage_content(), fix_attached_photo_permissions(), fix_private_photos(), fix_system_urls(), fsuggest_post(), Cache\get(), RedFile\get(), get_all_perms(), get_birthdays(), get_channel_by_nick(), get_cloudpath(), get_config_from_storage(), get_events(), get_item_elements(), get_online_status(), RedDirectory\getDir(), RedDirectory\getLastModified(), 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(), home_content(), import_author_rss(), import_author_zot(), 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(), layouts_content(), like_content(), load_config(), load_plugin(), load_xconfig(), local_dir_update(), lockview_content(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_store(), match_openid(), member_of(), menu_add_item(), menu_create(), menu_delete(), menu_edit(), menu_edit_item(), menu_fetch(), menu_list(), msearch_post(), network_content(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), FKOAuthDataStore\new_request_token(), notification(), notifier_run(), notify_init(), oauth_get_client(), oembed_fetch_url(), onedirsync_run(), onepoll_run(), openid_content(), 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(), plugin_is_installed(), 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(), process_profile_delivery(), profile_init(), profile_load(), profile_photo_post(), profile_photo_set_profile_perms(), profiles_init(), profiles_post(), profperm_content(), prune_hub_reinstalls(), public_permissions_sql(), public_recips(), RedFile\put(), queue_run(), rconnect_url(), red_zrl_callback(), red_zrlify_img_callback(), RedCollectionData(), RedFileData(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), register_hook(), register_post(), remote_online_status(), remove_all_xchan_resources(), remove_community_tag(), remove_queue_item(), rmagic_init(), rmagic_post(), photo_driver\save(), search_ac_init(), search_content(), send_message(), send_reg_approval_email(), send_status_notifications(), Cache\set(), set_config(), set_pconfig(), set_xconfig(), RedFile\setName(), settings_post(), siteinfo_init(), sources_content(), sources_post(), photo_driver\store(), store_item_tag(), stream_perms_xchans(), stringify_array_elms(), subthread_content(), suggest_init(), sync_directories(), tag_deliver(), tagger_content(), tagrm_post(), term_query(), tgroup_check(), thing_content(), thing_init(), tryzrlaudio(), tryzrlvideo(), uninstall_plugin(), unregister_hook(), update_directory_entry(), update_modtime(), update_queue_time(), update_remote_id(), user_allow(), user_deny(), RedBasicAuth\validateUserPass(), vcard_from_xchan(), vote_post(), webpages_content(), wfinger_init(), widget_bookmarkedchats(), widget_item(), widget_savedsearch(), xchan_content(), xchan_mail_query(), xchan_query(), xrd_init(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hublocs(), zot_gethub(), zot_process_response(), zot_refresh(), and zotfeed_init().

@@ -318,7 +318,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(), achievements_content(), acl_init(), add_source_route(), admin_content(), admin_page_channels(), admin_page_channels_post(), admin_page_dbsync(), admin_page_hubloc(), admin_page_hubloc_post(), admin_page_summary(), admin_page_users(), admin_page_users_post(), all_friends(), 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_destroy(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_user(), api_users_show(), attach_by_hash(), attach_by_hash_nodata(), attach_change_permissions(), attach_count_files(), attach_delete(), attach_init(), attach_list_files(), attach_mkdir(), attach_store(), authenticate_success(), block_content(), blocks_content(), bookmark_add(), bookmarks_init(), build_sync_packet(), call_hooks(), categories_widget(), change_channel(), chanman_remove_everything_from_network(), channel_content(), channel_remove(), channel_total(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), chat_content(), chat_message(), chat_post(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatroom_leave(), chatroom_list(), chatsvc_content(), chatsvc_init(), chatsvc_post(), check_account_email(), check_account_invite(), check_config(), check_item_source(), check_webbie(), Cache\clear(), collect_recipients(), comanche_block(), common_friends(), common_friends_zcid(), common_init(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_init(), connedit_post(), consume_feed(), contact_block(), contact_profile_assign(), contact_remove(), contact_select(), contactgroup_content(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), create_account(), create_identity(), RedDirectory\createDirectory(), RedDirectory\createFile(), current_theme(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), dir_parse_query(), dir_tagadelic(), directory_content(), directory_run(), dirprofile_init(), dirsearch_content(), display_content(), downgrade_accounts(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), encode_item(), event_store(), events_content(), expand_groups(), expire_run(), externals_run(), fbrowser_content(), feed_init(), fetch_post_tags(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), first_post_date(), fix_attached_photo_permissions(), fix_private_photos(), fix_system_urls(), fsuggest_content(), fsuggest_post(), Cache\get(), RedFile\get(), get_all_perms(), get_birthdays(), get_channel_by_nick(), get_cloudpath(), get_config_from_storage(), get_events(), get_item_elements(), get_online_status(), get_sys_channel(), get_things(), get_words(), RedDirectory\getDir(), RedDirectory\getLastModified(), RedDirectory\getQuotaInfo(), 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(), home_content(), identity_basic_export(), identity_check_service_class(), identity_selector(), import_author_rss(), import_author_zot(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), invite_post(), is_sys_channel(), item_check_service_class(), item_content(), item_expire(), item_message_id(), item_post(), item_store(), item_store_update(), items_fetch(), layout_select(), layouts_content(), like_content(), list_public_sites(), load_config(), load_contact_links(), load_hooks(), load_pconfig(), load_plugin(), load_translation_table(), load_xconfig(), local_dir_update(), lockview_content(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_store(), manage_content(), match_content(), match_openid(), 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(), mimetype_select(), mini_group_select(), mitem_content(), mood_init(), msearch_post(), network_content(), 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(), oembed_fetch_url(), onedirsync_run(), onepoll_run(), openid_content(), page_content(), pagelist_widget(), pdl_selector(), 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(), process_profile_delivery(), profile_init(), profile_load(), profile_photo_post(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), prune_hub_reinstalls(), public_recips(), RedFile\put(), queue_run(), random_profile(), rconnect_url(), red_zrl_callback(), RedChannelList(), RedCollectionData(), RedFileData(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), register_content(), register_hook(), register_post(), reload_plugins(), remote_online_status(), remove_all_xchan_resources(), remove_community_tag(), remove_queue_item(), retain_item(), rmagic_init(), rmagic_post(), photo_driver\save(), search_ac_init(), search_content(), 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(), RedFile\setName(), settings_post(), setup_content(), share_init(), siteinfo_content(), siteinfo_init(), sitelist_init(), sources_content(), sources_post(), starred_init(), photo_driver\store(), store_item_tag(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), suggest_init(), suggestion_query(), sync_directories(), tag_deliver(), tagadelic(), tagger_content(), tagrm_content(), tagrm_post(), tgroup_check(), thing_content(), thing_init(), tryzrlaudio(), tryzrlvideo(), uninstall_plugin(), unregister_hook(), update_directory_entry(), update_modtime(), update_queue_time(), update_remote_id(), update_suggestions(), user_allow(), user_deny(), RedBasicAuth\validateUserPass(), vcard_from_xchan(), viewconnections_content(), viewsrc_content(), vote_content(), vote_init(), vote_post(), webpages_content(), wfinger_init(), widget_bookmarkedchats(), widget_filer(), widget_follow(), widget_item(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), xchan_content(), xchan_mail_query(), xchan_query(), xrd_init(), z_input_filter(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hublocs(), 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(), achievements_content(), acl_init(), add_source_route(), admin_content(), admin_page_channels(), admin_page_channels_post(), admin_page_dbsync(), admin_page_hubloc(), admin_page_hubloc_post(), admin_page_summary(), admin_page_users(), admin_page_users_post(), all_friends(), 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_destroy(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_user(), api_users_show(), attach_by_hash(), attach_by_hash_nodata(), attach_change_permissions(), attach_count_files(), attach_delete(), attach_init(), attach_list_files(), attach_mkdir(), attach_store(), authenticate_success(), block_content(), blocks_content(), bookmark_add(), bookmarks_init(), build_sync_packet(), call_hooks(), categories_widget(), change_channel(), chanman_remove_everything_from_network(), channel_content(), channel_remove(), channel_total(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), chat_content(), chat_message(), chat_post(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatroom_leave(), chatroom_list(), chatsvc_content(), chatsvc_init(), chatsvc_post(), check_account_email(), check_account_invite(), check_config(), check_item_source(), check_webbie(), Cache\clear(), collect_recipients(), comanche_block(), common_friends(), common_friends_zcid(), common_init(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_init(), connedit_post(), consume_feed(), contact_block(), contact_profile_assign(), contact_remove(), contact_select(), contactgroup_content(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), create_account(), create_identity(), RedDirectory\createDirectory(), RedDirectory\createFile(), current_theme(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), dir_parse_query(), dir_tagadelic(), directory_content(), directory_run(), dirprofile_init(), dirsearch_content(), display_content(), downgrade_accounts(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), encode_item(), event_store(), events_content(), expand_groups(), expire_run(), externals_run(), fbrowser_content(), feed_init(), fetch_post_tags(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), first_post_date(), fix_attached_photo_permissions(), fix_private_photos(), fix_system_urls(), fsuggest_content(), fsuggest_post(), Cache\get(), RedFile\get(), get_all_perms(), get_birthdays(), get_channel_by_nick(), get_cloudpath(), get_config_from_storage(), get_events(), get_item_elements(), get_online_status(), get_sys_channel(), get_things(), get_words(), RedDirectory\getDir(), RedDirectory\getLastModified(), RedDirectory\getQuotaInfo(), 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(), home_content(), identity_basic_export(), identity_check_service_class(), identity_selector(), import_author_rss(), import_author_zot(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), invite_post(), is_sys_channel(), item_check_service_class(), item_content(), item_expire(), item_message_id(), item_post(), item_store(), item_store_update(), items_fetch(), layout_select(), layouts_content(), like_content(), list_public_sites(), load_config(), load_contact_links(), load_hooks(), load_pconfig(), load_plugin(), load_translation_table(), load_xconfig(), local_dir_update(), lockview_content(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_store(), manage_content(), match_content(), match_openid(), 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(), mimetype_select(), mini_group_select(), mitem_content(), mood_init(), msearch_post(), network_content(), 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(), oembed_fetch_url(), onedirsync_run(), onepoll_run(), openid_content(), page_content(), pagelist_widget(), pdl_selector(), 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(), plugin_is_installed(), 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(), process_profile_delivery(), profile_init(), profile_load(), profile_photo_post(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), prune_hub_reinstalls(), public_recips(), RedFile\put(), queue_run(), random_profile(), rconnect_url(), red_zrl_callback(), red_zrlify_img_callback(), RedChannelList(), RedCollectionData(), RedFileData(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), register_content(), register_hook(), register_post(), reload_plugins(), remote_online_status(), remove_all_xchan_resources(), remove_community_tag(), remove_queue_item(), retain_item(), rmagic_init(), rmagic_post(), photo_driver\save(), search_ac_init(), search_content(), 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(), RedFile\setName(), settings_post(), setup_content(), share_init(), siteinfo_content(), siteinfo_init(), sitelist_init(), sources_content(), sources_post(), starred_init(), photo_driver\store(), store_item_tag(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), suggest_init(), suggestion_query(), sync_directories(), tag_deliver(), tagadelic(), tagger_content(), tagrm_content(), tagrm_post(), tgroup_check(), thing_content(), thing_init(), tryzrlaudio(), tryzrlvideo(), uninstall_plugin(), unregister_hook(), update_directory_entry(), update_modtime(), update_queue_time(), update_remote_id(), update_suggestions(), user_allow(), user_deny(), RedBasicAuth\validateUserPass(), vcard_from_xchan(), viewconnections_content(), viewsrc_content(), vote_content(), vote_init(), vote_post(), webpages_content(), wfinger_init(), widget_bookmarkedchats(), widget_filer(), widget_follow(), widget_item(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), xchan_content(), xchan_mail_query(), xchan_query(), xrd_init(), z_input_filter(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hublocs(), zot_gethub(), zot_import(), zot_process_response(), zot_refresh(), and zotfeed_init().

diff --git a/doc/html/dir_3d9c9d0c5e9556dd3eba1e072fa6eaeb.html b/doc/html/dir_3d9c9d0c5e9556dd3eba1e072fa6eaeb.html index c4615e093..0f7deb162 100644 --- a/doc/html/dir_3d9c9d0c5e9556dd3eba1e072fa6eaeb.html +++ b/doc/html/dir_3d9c9d0c5e9556dd3eba1e072fa6eaeb.html @@ -104,6 +104,8 @@ $(document).ready(function(){initNavTree('dir_3d9c9d0c5e9556dd3eba1e072fa6eaeb.h + + diff --git a/doc/html/dir_3d9c9d0c5e9556dd3eba1e072fa6eaeb.js b/doc/html/dir_3d9c9d0c5e9556dd3eba1e072fa6eaeb.js index 9dcf8fec5..0ec7e6954 100644 --- a/doc/html/dir_3d9c9d0c5e9556dd3eba1e072fa6eaeb.js +++ b/doc/html/dir_3d9c9d0c5e9556dd3eba1e072fa6eaeb.js @@ -1,5 +1,6 @@ var dir_3d9c9d0c5e9556dd3eba1e072fa6eaeb = [ + [ "boxy.php", "boxy_8php.html", null ], [ "BS-Default.php", "BS-Default_8php.html", null ], [ "dark.php", "dark_8php.html", null ], [ "notred.php", "notred_8php.html", null ] diff --git a/doc/html/dir_d41ce877eb409a4791b288730010abe2.html b/doc/html/dir_d41ce877eb409a4791b288730010abe2.html index 30e47e773..9a7a37a17 100644 --- a/doc/html/dir_d41ce877eb409a4791b288730010abe2.html +++ b/doc/html/dir_d41ce877eb409a4791b288730010abe2.html @@ -114,7 +114,7 @@ Files - + diff --git a/doc/html/dir_d41ce877eb409a4791b288730010abe2.js b/doc/html/dir_d41ce877eb409a4791b288730010abe2.js index 2b4fa247a..eed058e44 100644 --- a/doc/html/dir_d41ce877eb409a4791b288730010abe2.js +++ b/doc/html/dir_d41ce877eb409a4791b288730010abe2.js @@ -5,7 +5,7 @@ var dir_d41ce877eb409a4791b288730010abe2 = [ "acl.php", "acl_8php.html", "acl_8php" ], [ "admin.php", "admin_8php.html", "admin_8php" ], [ "api.php", "mod_2api_8php.html", "mod_2api_8php" ], - [ "apps.php", "apps_8php.html", "apps_8php" ], + [ "apps.php", "mod_2apps_8php.html", "mod_2apps_8php" ], [ "attach.php", "mod_2attach_8php.html", "mod_2attach_8php" ], [ "block.php", "block_8php.html", "block_8php" ], [ "blocks.php", "blocks_8php.html", "blocks_8php" ], diff --git a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html index 7ceabcdea..156ccdb9e 100644 --- a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html +++ b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html @@ -119,6 +119,8 @@ Files + + diff --git a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js index 7e7581319..3ccb3d653 100644 --- a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js +++ b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js @@ -6,6 +6,7 @@ var dir_d44c64559bbebec7f509842c48db8b23 = [ "acl_selectors.php", "acl__selectors_8php.html", "acl__selectors_8php" ], [ "activities.php", "activities_8php.html", "activities_8php" ], [ "api.php", "include_2api_8php.html", "include_2api_8php" ], + [ "apps.php", "include_2apps_8php.html", "include_2apps_8php" ], [ "attach.php", "include_2attach_8php.html", "include_2attach_8php" ], [ "auth.php", "auth_8php.html", "auth_8php" ], [ "BaseObject.php", "BaseObject_8php.html", [ diff --git a/doc/html/extract_8php.html b/doc/html/extract_8php.html index 3d71dfb34..123430af5 100644 --- a/doc/html/extract_8php.html +++ b/doc/html/extract_8php.html @@ -132,7 +132,7 @@ Variables

Files

file  boxy.php
 
file  BS-Default.php
 
file  dark.php
 
file  api.php
 
file  apps.php
file  apps.php
 
file  attach.php
 
 
file  api.php
 
file  apps.php
 
file  attach.php
 File/attach API with the potential for revision control.
 
-

Referenced by _well_known_init(), activity_sanitise(), api_rss_extra(), api_statuses_user_timeline(), array_sanitise(), attach_mkdir(), attach_store(), bookmark_add(), chat_message(), chat_post(), chatroom_create(), chatroom_destroy(), chatsvc_post(), check_account_admin(), check_account_email(), check_account_invite(), check_account_password(), check_list_permissions(), check_webbie(), connect_content(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_block(), contact_select(), conversation(), create_account(), create_identity(), dbesc_array(), directory_content(), drop_item(), event_store(), externals_run(), feature_enabled(), find_xchan_in_array(), format_like(), get_all_perms(), get_atom_elements(), get_cloudpath(), 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(), hostxrd_init(), ids_to_querystr(), import_author_rss(), import_author_xchan(), import_directory_profile(), import_post(), import_site(), import_xchan(), item_getfeedattach(), item_store(), item_store_update(), items_fetch(), like_content(), like_puller(), load_database(), 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(), openid_content(), parse_url_content(), pdl_selector(), perm_is_allowed(), photo_upload(), photos_album_get_db_idstr(), photos_create_item(), ping_init(), po2php_run(), poke_init(), post_activity_item(), post_init(), post_post(), proc_run(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), process_profile_delivery(), profile_activity(), profile_sidebar(), profiles_content(), redbasic_form(), register_page_template(), register_post(), remove_community_tag(), replace_macros(), rmagic_post(), 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(), tag_deliver(), tagger_content(), tagrm_content(), tagrm_post(), theme_attachments(), theme_content(), thing_init(), validate_channelname(), wfinger_init(), widget_affinity(), widget_archive(), widget_clock(), widget_item(), widget_suggestions(), widget_tagcloud_wall(), xchan_mail_query(), xchan_query(), xml2array(), xrd_init(), zfinger_init(), zid(), zid_init(), zot_fetch(), zot_gethub(), zot_import(), zot_process_response(), and zot_register_hub().

+

Referenced by _well_known_init(), activity_sanitise(), api_rss_extra(), api_statuses_user_timeline(), array_sanitise(), attach_mkdir(), attach_store(), bookmark_add(), chat_message(), chat_post(), chatroom_create(), chatroom_destroy(), chatsvc_post(), check_account_admin(), check_account_email(), check_account_invite(), check_account_password(), check_list_permissions(), check_webbie(), connect_content(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_block(), contact_select(), conversation(), create_account(), create_identity(), dbesc_array(), directory_content(), drop_item(), event_store(), externals_run(), feature_enabled(), find_xchan_in_array(), format_like(), get_all_perms(), get_atom_elements(), get_cloudpath(), 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(), hostxrd_init(), ids_to_querystr(), import_author_rss(), import_author_xchan(), import_directory_profile(), import_post(), import_site(), import_xchan(), item_getfeedattach(), item_store(), item_store_update(), items_fetch(), like_content(), like_puller(), load_database(), 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(), openid_content(), parse_url_content(), pdl_selector(), perm_is_allowed(), photo_upload(), photos_album_get_db_idstr(), photos_create_item(), ping_init(), po2php_run(), poke_init(), post_activity_item(), post_init(), post_post(), proc_run(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), process_profile_delivery(), profile_activity(), profile_sidebar(), profiles_content(), redbasic_form(), register_page_template(), register_post(), remove_community_tag(), replace_macros(), rmagic_post(), 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(), tag_deliver(), tagger_content(), tagrm_content(), tagrm_post(), theme_attachments(), theme_content(), thing_init(), translate_system_apps(), validate_channelname(), wfinger_init(), widget_affinity(), widget_archive(), widget_clock(), widget_item(), widget_photo(), widget_suggestions(), widget_tagcloud_wall(), xchan_mail_query(), xchan_query(), xml2array(), xrd_init(), zfinger_init(), zid(), zid_init(), zot_fetch(), zot_gethub(), zot_import(), zot_process_response(), and zot_register_hub().

@@ -146,7 +146,7 @@ Variables diff --git a/doc/html/features_8php.html b/doc/html/features_8php.html index 67f44e089..c6ae11acd 100644 --- a/doc/html/features_8php.html +++ b/doc/html/features_8php.html @@ -142,7 +142,7 @@ Functions diff --git a/doc/html/files.html b/doc/html/files.html index 6e1c62afa..a22db8174 100644 --- a/doc/html/files.html +++ b/doc/html/files.html @@ -122,85 +122,86 @@ $(document).ready(function(){initNavTree('files.html','');}); |o*acl_selectors.php |o*activities.php |o*api.php -|o*attach.phpFile/attach API with the potential for revision control -|o*auth.php -|o*BaseObject.php -|o*bb2diaspora.php -|o*bbcode.php -|o*bookmarks.php -|o*cache.php -|o*chanman.php -|o*chat.php -|o*cli_startup.php -|o*cli_suggest.php -|o*comanche.php -|o*config.php -|o*Contact.php -|o*contact_selectors.php -|o*contact_widgets.php -|o*conversation.php -|o*ConversationObject.php -|o*cronhooks.php -|o*crypto.php -|o*datetime.php -|o*deliver.php -|o*dir_fns.php -|o*directory.php -|o*enotify.php -|o*event.php -|o*expire.php -|o*externals.php -|o*features.php -|o*follow.php -|o*friendica_smarty.php -|o*gprobe.php -|o*group.php -|o*html2bbcode.php -|o*html2plain.php -|o*hubloc.php -|o*identity.php -|o*ItemObject.php -|o*ITemplateEngine.php -|o*items.php -|o*language.phpTranslation support -|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*onedirsync.php -|o*onepoll.php -|o*page_widgets.php -|o*permissions.php -|o*photos.php -|o*plugin.php -|o*poller.php -|o*probe.php -|o*profile_selectors.php -|o*ProtoDriver.php -|o*queue.php -|o*queue_fn.php -|o*reddav.php -|o*security.php -|o*session.php -|o*socgraph.php -|o*spam.php -|o*system_unavailable.php -|o*taxonomy.php -|o*template_processor.php -|o*text.php -|o*widgets.php -|\*zot.php +|o*apps.php +|o*attach.phpFile/attach API with the potential for revision control +|o*auth.php +|o*BaseObject.php +|o*bb2diaspora.php +|o*bbcode.php +|o*bookmarks.php +|o*cache.php +|o*chanman.php +|o*chat.php +|o*cli_startup.php +|o*cli_suggest.php +|o*comanche.php +|o*config.php +|o*Contact.php +|o*contact_selectors.php +|o*contact_widgets.php +|o*conversation.php +|o*ConversationObject.php +|o*cronhooks.php +|o*crypto.php +|o*datetime.php +|o*deliver.php +|o*dir_fns.php +|o*directory.php +|o*enotify.php +|o*event.php +|o*expire.php +|o*externals.php +|o*features.php +|o*follow.php +|o*friendica_smarty.php +|o*gprobe.php +|o*group.php +|o*html2bbcode.php +|o*html2plain.php +|o*hubloc.php +|o*identity.php +|o*ItemObject.php +|o*ITemplateEngine.php +|o*items.php +|o*language.phpTranslation support +|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*onedirsync.php +|o*onepoll.php +|o*page_widgets.php +|o*permissions.php +|o*photos.php +|o*plugin.php +|o*poller.php +|o*probe.php +|o*profile_selectors.php +|o*ProtoDriver.php +|o*queue.php +|o*queue_fn.php +|o*reddav.php +|o*security.php +|o*session.php +|o*socgraph.php +|o*spam.php +|o*system_unavailable.php +|o*taxonomy.php +|o*template_processor.php +|o*text.php +|o*widgets.php +|\*zot.php o+mod |o*_well_known.php |o*achievements.php |o*acl.php |o*admin.php |o*api.php -|o*apps.php +|o*apps.php |o*attach.php |o*block.php |o*blocks.php @@ -400,9 +401,10 @@ $(document).ready(function(){initNavTree('files.html','');}); |  |o*theme.php |  |\*theme_init.php |  \+schema -|   o*BS-Default.php -|   o*dark.php -|   \*notred.php +|   o*boxy.php +|   o*BS-Default.php +|   o*dark.php +|   \*notred.php \*boot.php diff --git a/doc/html/globals_0x61.html b/doc/html/globals_0x61.html index d1f166547..aff176b31 100644 --- a/doc/html/globals_0x61.html +++ b/doc/html/globals_0x61.html @@ -565,7 +565,7 @@ $(document).ready(function(){initNavTree('globals_0x61.html','');}); : boot.php
  • apps_content() -: apps.php +: apps.php
  • apw_form() : config.php diff --git a/doc/html/globals_0x67.html b/doc/html/globals_0x67.html index 5d11faf06..fd2cfb681 100644 --- a/doc/html/globals_0x67.html +++ b/doc/html/globals_0x67.html @@ -288,6 +288,9 @@ $(document).ready(function(){initNavTree('globals_0x67.html','');});
  • get_sys_channel() : identity.php
  • +
  • get_system_apps() +: apps.php +
  • get_tags() : text.php
  • diff --git a/doc/html/globals_0x70.html b/doc/html/globals_0x70.html index 330873970..b4a85d829 100644 --- a/doc/html/globals_0x70.html +++ b/doc/html/globals_0x70.html @@ -189,6 +189,9 @@ $(document).ready(function(){initNavTree('globals_0x70.html','');});
  • paginate() : text.php
  • +
  • parse_app_description() +: apps.php +
  • parse_url_content() : parse_url.php
  • @@ -357,6 +360,9 @@ $(document).ready(function(){initNavTree('globals_0x70.html','');});
  • pkcs5_unpad() : crypto.php
  • +
  • plugin_is_installed() +: plugin.php +
  • PNG_QUALITY : boot.php
  • diff --git a/doc/html/globals_0x72.html b/doc/html/globals_0x72.html index 5b121bb7d..c75ab9eec 100644 --- a/doc/html/globals_0x72.html +++ b/doc/html/globals_0x72.html @@ -198,6 +198,9 @@ $(document).ready(function(){initNavTree('globals_0x72.html','');});
  • red_zrl_callback() : items.php
  • +
  • red_zrlify_img_callback() +: items.php +
  • redbasic_form() : config.php
  • diff --git a/doc/html/globals_0x74.html b/doc/html/globals_0x74.html index 3d09783ac..cd2a6d2bf 100644 --- a/doc/html/globals_0x74.html +++ b/doc/html/globals_0x74.html @@ -250,7 +250,7 @@ $(document).ready(function(){initNavTree('globals_0x74.html','');}); : plugin.php
  • theme_post() -: config.php +: config.php
  • theme_status() : admin.php @@ -279,6 +279,9 @@ $(document).ready(function(){initNavTree('globals_0x74.html','');});
  • toggle_theme() : admin.php
  • +
  • translate_system_apps() +: apps.php +
  • tryoembed() : bbcode.php
  • diff --git a/doc/html/globals_0x77.html b/doc/html/globals_0x77.html index 4c271426d..f4c80c5be 100644 --- a/doc/html/globals_0x77.html +++ b/doc/html/globals_0x77.html @@ -174,6 +174,9 @@ $(document).ready(function(){initNavTree('globals_0x77.html','');});
  • widget_affinity() : widgets.php
  • +
  • widget_appselect() +: widgets.php +
  • widget_archive() : widgets.php
  • @@ -228,6 +231,9 @@ $(document).ready(function(){initNavTree('globals_0x77.html','');});
  • widget_notes() : widgets.php
  • +
  • widget_photo() +: widgets.php +
  • widget_photo_albums() : widgets.php
  • diff --git a/doc/html/globals_func_0x61.html b/doc/html/globals_func_0x61.html index dd973ea91..a5b25bf26 100644 --- a/doc/html/globals_func_0x61.html +++ b/doc/html/globals_func_0x61.html @@ -420,7 +420,7 @@ $(document).ready(function(){initNavTree('globals_func_0x61.html','');}); : boot.php
  • apps_content() -: apps.php +: apps.php
  • apw_form() : config.php diff --git a/doc/html/globals_func_0x67.html b/doc/html/globals_func_0x67.html index 12301d1d1..e386c3b7d 100644 --- a/doc/html/globals_func_0x67.html +++ b/doc/html/globals_func_0x67.html @@ -287,6 +287,9 @@ $(document).ready(function(){initNavTree('globals_func_0x67.html','');});
  • get_sys_channel() : identity.php
  • +
  • get_system_apps() +: apps.php +
  • get_tags() : text.php
  • diff --git a/doc/html/globals_func_0x70.html b/doc/html/globals_func_0x70.html index 54e5d1d55..95797aecc 100644 --- a/doc/html/globals_func_0x70.html +++ b/doc/html/globals_func_0x70.html @@ -155,6 +155,9 @@ $(document).ready(function(){initNavTree('globals_func_0x70.html','');});
  • paginate() : text.php
  • +
  • parse_app_description() +: apps.php +
  • parse_url_content() : parse_url.php
  • @@ -239,6 +242,9 @@ $(document).ready(function(){initNavTree('globals_func_0x70.html','');});
  • pkcs5_unpad() : crypto.php
  • +
  • plugin_is_installed() +: plugin.php +
  • po2php_run() : po2php.php
  • diff --git a/doc/html/globals_func_0x72.html b/doc/html/globals_func_0x72.html index 9b4ccda12..b1e28de44 100644 --- a/doc/html/globals_func_0x72.html +++ b/doc/html/globals_func_0x72.html @@ -185,6 +185,9 @@ $(document).ready(function(){initNavTree('globals_func_0x72.html','');});
  • red_zrl_callback() : items.php
  • +
  • red_zrlify_img_callback() +: items.php +
  • redbasic_form() : config.php
  • diff --git a/doc/html/globals_func_0x74.html b/doc/html/globals_func_0x74.html index 38a4ac232..eac17b23b 100644 --- a/doc/html/globals_func_0x74.html +++ b/doc/html/globals_func_0x74.html @@ -233,6 +233,9 @@ $(document).ready(function(){initNavTree('globals_func_0x74.html','');});
  • toggle_theme() : admin.php
  • +
  • translate_system_apps() +: apps.php +
  • tryoembed() : bbcode.php
  • diff --git a/doc/html/globals_func_0x77.html b/doc/html/globals_func_0x77.html index 42a85d382..8531e1a57 100644 --- a/doc/html/globals_func_0x77.html +++ b/doc/html/globals_func_0x77.html @@ -170,6 +170,9 @@ $(document).ready(function(){initNavTree('globals_func_0x77.html','');});
  • widget_affinity() : widgets.php
  • +
  • widget_appselect() +: widgets.php +
  • widget_archive() : widgets.php
  • @@ -224,6 +227,9 @@ $(document).ready(function(){initNavTree('globals_func_0x77.html','');});
  • widget_notes() : widgets.php
  • +
  • widget_photo() +: widgets.php +
  • widget_photo_albums() : widgets.php
  • diff --git a/doc/html/identity_8php.html b/doc/html/identity_8php.html index fc8e010ee..d37e1ad8d 100644 --- a/doc/html/identity_8php.html +++ b/doc/html/identity_8php.html @@ -304,7 +304,7 @@ Functions
    Returns
    string
    -

    Referenced by avatar_img(), import_profile_photo(), openid_content(), and photo_init().

    +

    Referenced by avatar_img(), import_profile_photo(), openid_content(), parse_app_description(), and photo_init().

    @@ -776,7 +776,7 @@ Functions
    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 chanview_content(), chatsvc_content(), conversation(), dirprofile_init(), format_categories(), format_hashtags(), get_plink(), localize_item(), match_content(), menu_render(), new_contact(), oembed_fetch_url(), tryzrlaudio(), tryzrlvideo(), widget_bookmarkedchats(), and widget_suggestedchats().

    +

    Referenced by chanview_content(), chatsvc_content(), conversation(), dirprofile_init(), format_categories(), format_hashtags(), get_plink(), localize_item(), match_content(), menu_render(), new_contact(), oembed_fetch_url(), parse_app_description(), tryzrlaudio(), tryzrlvideo(), widget_bookmarkedchats(), widget_photo(), and widget_suggestedchats().

    diff --git a/doc/html/items_8php.html b/doc/html/items_8php.html index 8683450e7..24d268052 100644 --- a/doc/html/items_8php.html +++ b/doc/html/items_8php.html @@ -126,6 +126,8 @@ Functions    red_unescape_codeblock ($m)   + red_zrlify_img_callback ($matches) +   post_activity_item ($arr)    get_public_feed ($channel, $params) @@ -1556,6 +1558,22 @@ Functions

    red_zrl_callback preg_match function when fixing 'naked' links in mod item.php Check if we've got a hubloc for the site and use a zrl if we do, a url if we don't. Remove any existing zid= param which may have been pasted by mistake - and will have the author's credentials. zid's are dynamic and can't really be passed around like that.

    +
    + + +
    +
    + + + + + + + + +
    red_zrlify_img_callback ( $matches)
    +
    +
    diff --git a/doc/html/items_8php.js b/doc/html/items_8php.js index 97d0f1f71..0a32fb916 100644 --- a/doc/html/items_8php.js +++ b/doc/html/items_8php.js @@ -53,6 +53,7 @@ var items_8php = [ "red_escape_zrl_callback", "items_8php.html#a83a349062945d585edb4b3c5d763ab6e", null ], [ "red_unescape_codeblock", "items_8php.html#ad4ee16e3ff1eaf60428c61f82ba25e6a", null ], [ "red_zrl_callback", "items_8php.html#a4e6d7639431e0dd8e9f4dba8e1ac408b", null ], + [ "red_zrlify_img_callback", "items_8php.html#a78a60e39f6991bd3324a24dcbf9dac5a", null ], [ "retain_item", "items_8php.html#af6237605c60d69abdd959ddbbee3420c", null ], [ "send_status_notifications", "items_8php.html#aab9e0c58247427126de0699c729c3b6c", null ], [ "tag_deliver", "items_8php.html#ab1bce4261bcf75ad62753b498a144d17", null ], diff --git a/doc/html/language_8php.html b/doc/html/language_8php.html index 16cb0ce99..7561f213e 100644 --- a/doc/html/language_8php.html +++ b/doc/html/language_8php.html @@ -361,7 +361,7 @@ Functions
    Returns
    translated string if exsists, otherwise s
    -

    Referenced by achievements_content(), acl_init(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), 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(), alt_pager(), api_content(), api_post(), api_statuses_public_timeline(), apps_content(), apw_form(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_init(), attach_list_files(), attach_mkdir(), attach_store(), bbcode(), block_content(), blocks_content(), blogtheme_form(), bookmark_add(), bookmarks_content(), bookmarks_init(), categories_widget(), channel_content(), channel_init(), chanview_content(), chat_content(), chat_init(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatsvc_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(), check_store(), cloud_init(), common_content(), common_friends_visitor_widget(), common_init(), connect_content(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_block(), contact_poll_interval(), contact_reputation(), conversation(), create_account(), create_identity(), datesel_format(), day_translate(), delegate_content(), design_tools(), dir_safe_mode(), dir_sort_links(), dir_tagblock(), directory_content(), dirprofile_init(), dirsearch_content(), display_content(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), fbrowser_content(), fileas_widget(), filer_content(), filestorage_content(), filestorage_post(), findpeople_widget(), follow_init(), format_categories(), format_event_diaspora(), format_event_html(), format_filer(), 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(), help_content(), home_content(), RedBrowser\htmlActionsPanel(), identity_check_service_class(), import_author_rss(), import_channel_photo(), import_content(), import_post(), import_xchan(), dba_driver\install(), invite_content(), invite_post(), item_check_service_class(), item_content(), item_photo_menu(), item_post(), item_post_type(), items_fetch(), lang_selector(), layout_select(), layouts_content(), like_content(), load_database(), localize_item(), lockview_content(), login(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), manual_config(), marital_selector(), match_content(), menu_content(), menu_post(), menu_render(), message_content(), mimetype_select(), 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(), notice(), notification(), notifications_content(), notifications_post(), notify_content(), obj_verbs(), oembed_bbcode2html(), oembed_iframe(), oexchange_content(), openid_content(), page_content(), pagelist_widget(), paginate(), pdl_selector(), pdledit_content(), pdledit_post(), photo_upload(), photos_album_widget(), photos_content(), photos_init(), photos_post(), ping_init(), poke_content(), poke_init(), populate_acl(), post_activity_item(), post_init(), probe_content(), profile_activity(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), pubsites_content(), rbmark_content(), rbmark_post(), redbasic_form(), register_content(), register_post(), regmod_content(), relative_date(), removeme_content(), rmagic_content(), rmagic_post(), rpost_content(), scale_external_images(), search(), search_content(), searchbox(), select_timezone(), send_message(), send_reg_approval_email(), send_verification_email(), settings_post(), setup_content(), sexpref_selector(), siteinfo_content(), sources_content(), sources_post(), subthread_content(), suggest_content(), tagblock(), tagger_content(), tagrm_content(), tagrm_post(), theme_attachments(), thing_content(), thing_init(), timezone_cmp(), update_channel_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(), vote_content(), wall_upload_post(), webpages_content(), what_next(), widget_affinity(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), widget_tagcloud(), writepages_widget(), xchan_content(), z_readdir(), and zfinger_init().

    +

    Referenced by achievements_content(), acl_init(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), 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(), alt_pager(), api_content(), api_post(), api_statuses_public_timeline(), apps_content(), apw_form(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_init(), attach_list_files(), attach_mkdir(), attach_store(), bbcode(), block_content(), blocks_content(), blogtheme_form(), bookmark_add(), bookmarks_content(), bookmarks_init(), categories_widget(), channel_content(), channel_init(), chanview_content(), chat_content(), chat_init(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatsvc_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(), check_store(), cloud_init(), common_content(), common_friends_visitor_widget(), common_init(), connect_content(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_block(), contact_poll_interval(), contact_reputation(), conversation(), create_account(), create_identity(), datesel_format(), day_translate(), delegate_content(), design_tools(), dir_safe_mode(), dir_sort_links(), dir_tagblock(), directory_content(), dirprofile_init(), dirsearch_content(), display_content(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), fbrowser_content(), fileas_widget(), filer_content(), filestorage_content(), filestorage_post(), findpeople_widget(), follow_init(), format_categories(), format_event_diaspora(), format_event_html(), format_filer(), 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(), help_content(), home_content(), RedBrowser\htmlActionsPanel(), identity_check_service_class(), import_author_rss(), import_channel_photo(), import_content(), import_post(), import_xchan(), dba_driver\install(), invite_content(), invite_post(), item_check_service_class(), item_content(), item_photo_menu(), item_post(), item_post_type(), items_fetch(), lang_selector(), layout_select(), layouts_content(), like_content(), load_database(), localize_item(), lockview_content(), login(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), manual_config(), marital_selector(), match_content(), menu_content(), menu_post(), menu_render(), message_content(), mimetype_select(), 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(), notice(), notification(), notifications_content(), notifications_post(), notify_content(), obj_verbs(), oembed_bbcode2html(), oembed_iframe(), oexchange_content(), openid_content(), page_content(), pagelist_widget(), paginate(), pdl_selector(), pdledit_content(), pdledit_post(), photo_upload(), photos_album_widget(), photos_content(), photos_init(), photos_post(), ping_init(), poke_content(), poke_init(), populate_acl(), post_activity_item(), post_init(), probe_content(), profile_activity(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), pubsites_content(), rbmark_content(), rbmark_post(), redbasic_form(), register_content(), register_post(), regmod_content(), relative_date(), removeme_content(), rmagic_content(), rmagic_post(), rpost_content(), scale_external_images(), search(), search_content(), searchbox(), select_timezone(), send_message(), send_reg_approval_email(), send_verification_email(), settings_post(), setup_content(), sexpref_selector(), siteinfo_content(), sources_content(), sources_post(), subthread_content(), suggest_content(), tagblock(), tagger_content(), tagrm_content(), tagrm_post(), theme_attachments(), thing_content(), thing_init(), timezone_cmp(), translate_system_apps(), update_channel_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(), vote_content(), wall_upload_post(), webpages_content(), what_next(), widget_affinity(), widget_appselect(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), widget_tagcloud(), writepages_widget(), xchan_content(), z_readdir(), and zfinger_init().

    diff --git a/doc/html/navtree.js b/doc/html/navtree.js index 9f7927e37..a332533cb 100644 --- a/doc/html/navtree.js +++ b/doc/html/navtree.js @@ -36,14 +36,14 @@ var NAVTREE = var NAVTREEINDEX = [ "BS-Default_8php.html", -"boot_8php.html#a6ee7a72d558d1851bbb9e3cdde377932", -"classApp.html#ac1a8b2cd40609b231a560201a08852ba", -"classphoto__driver.html#ab98da263bd7341fc132c4fb6fc76e8d5", -"filestorage_8php.html", -"include_2api_8php.html#ade742525b2e41c82b090799ef3c51d5e", -"minimalisticdarkness_8php.html#a04de7b747e4f0a353e0e38cf77c3404f", -"queue_8php.html", -"theme_2blogga_2view_2theme_2blog_2default_8php.html#a1230ab83d4ec9785d8f3a966f33dc5f3" +"boot_8php.html#a7176c0f9f1c98421b97735d892cf6252", +"classApp.html#ac1d80a14492acc932715d54567d8a589", +"classphoto__driver.html#abc9f73ad90923772d52b9fcc4eb117dd", +"filestorage_8php.html#a61bb1be78472555df4ce619f51014040", +"include_2api_8php.html#adfc035ee6303c1d8ba5336a4ead2bd53", +"md_config.html", +"profiles_8php.html#a46975783b8b8d70402d51487eb1f0b00", +"theme_2apw_2php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/doc/html/navtreeindex0.js b/doc/html/navtreeindex0.js index 8ed12a9c8..e12d66ea5 100644 --- a/doc/html/navtreeindex0.js +++ b/doc/html/navtreeindex0.js @@ -1,27 +1,27 @@ var NAVTREEINDEX0 = { -"BS-Default_8php.html":[5,0,3,1,3,1,0], -"BaseObject_8php.html":[5,0,0,8], -"Contact_8php.html":[5,0,0,19], -"Contact_8php.html#a024919623a830e8703ac4f23496dd66c":[5,0,0,19,2], -"Contact_8php.html#a186162051a5127069cc851d78740f205":[5,0,0,19,4], -"Contact_8php.html#a28e062c884331dbb5dfa713228c25ad6":[5,0,0,19,8], -"Contact_8php.html#a2f4f495d53f2a334ab75292af79d3c91":[5,0,0,19,10], -"Contact_8php.html#a2fc191067dd571a79603c66b04b1ca15":[5,0,0,19,13], -"Contact_8php.html#a38daa1c210b78385307123450ca9a1fc":[5,0,0,19,12], -"Contact_8php.html#a3a0844dac1e86d523de5d2f432cfeebc":[5,0,0,19,6], -"Contact_8php.html#a483cda56f9e37c3a4a8773dcdfeb0258":[5,0,0,19,5], -"Contact_8php.html#a6348a532c9d26cd1c9afbc9aa6aa8960":[5,0,0,19,14], -"Contact_8php.html#a6e64de7db60b7243dce45fb6347636ff":[5,0,0,19,3], -"Contact_8php.html#a852fa476f0c70bde10a4f2533aec5f71":[5,0,0,19,9], -"Contact_8php.html#a87e699f74a1102b25e8aa0432d86a91e":[5,0,0,19,7], -"Contact_8php.html#acc12cda999c88c4d6185cca967c15125":[5,0,0,19,11], -"Contact_8php.html#ad5b02c2a962ee55b1b7ca6c159d6e4c5":[5,0,0,19,1], -"Contact_8php.html#ae8803c330352cbf1e828eb7490edf47e":[5,0,0,19,0], -"ConversationObject_8php.html":[5,0,0,23], -"ITemplateEngine_8php.html":[5,0,0,44], -"ItemObject_8php.html":[5,0,0,43], -"ProtoDriver_8php.html":[5,0,0,64], +"BS-Default_8php.html":[5,0,3,1,3,1,1], +"BaseObject_8php.html":[5,0,0,9], +"Contact_8php.html":[5,0,0,20], +"Contact_8php.html#a024919623a830e8703ac4f23496dd66c":[5,0,0,20,2], +"Contact_8php.html#a186162051a5127069cc851d78740f205":[5,0,0,20,4], +"Contact_8php.html#a28e062c884331dbb5dfa713228c25ad6":[5,0,0,20,8], +"Contact_8php.html#a2f4f495d53f2a334ab75292af79d3c91":[5,0,0,20,10], +"Contact_8php.html#a2fc191067dd571a79603c66b04b1ca15":[5,0,0,20,13], +"Contact_8php.html#a38daa1c210b78385307123450ca9a1fc":[5,0,0,20,12], +"Contact_8php.html#a3a0844dac1e86d523de5d2f432cfeebc":[5,0,0,20,6], +"Contact_8php.html#a483cda56f9e37c3a4a8773dcdfeb0258":[5,0,0,20,5], +"Contact_8php.html#a6348a532c9d26cd1c9afbc9aa6aa8960":[5,0,0,20,14], +"Contact_8php.html#a6e64de7db60b7243dce45fb6347636ff":[5,0,0,20,3], +"Contact_8php.html#a852fa476f0c70bde10a4f2533aec5f71":[5,0,0,20,9], +"Contact_8php.html#a87e699f74a1102b25e8aa0432d86a91e":[5,0,0,20,7], +"Contact_8php.html#acc12cda999c88c4d6185cca967c15125":[5,0,0,20,11], +"Contact_8php.html#ad5b02c2a962ee55b1b7ca6c159d6e4c5":[5,0,0,20,1], +"Contact_8php.html#ae8803c330352cbf1e828eb7490edf47e":[5,0,0,20,0], +"ConversationObject_8php.html":[5,0,0,24], +"ITemplateEngine_8php.html":[5,0,0,45], +"ItemObject_8php.html":[5,0,0,44], +"ProtoDriver_8php.html":[5,0,0,65], "__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], @@ -69,8 +69,6 @@ var NAVTREEINDEX0 = "admin_8php.html#af81f081851791cd15e49e8ff6722dc27":[5,0,1,3,18], "admin_8php.html#afef415e4011607fbb665610441595015":[5,0,1,3,0], "annotated.html":[4,0], -"apps_8php.html":[5,0,1,5], -"apps_8php.html#a546016cb960d0b110ee8e489dfa6c27c":[5,0,1,5,0], "apw_2php_2style_8php.html":[5,0,3,1,0,1,2], "apw_2php_2style_8php.html#a07adb491994deb72a00a975b431d3e30":[5,0,3,1,0,1,2,2], "apw_2php_2style_8php.html#a109bbd7f4add27541707b191b73ef84a":[5,0,3,1,0,1,2,8], @@ -85,36 +83,36 @@ var NAVTREEINDEX0 = "apw_2php_2style_8php.html#af3a16c5f0dd7a74cf9acf6a49fff73a7":[5,0,3,1,0,1,2,9], "apw_2php_2theme_8php.html":[5,0,3,1,0,1,3], "apw_2php_2theme_8php.html#a42167c539043a39a6b83c252d05f1e89":[5,0,3,1,0,1,3,0], -"auth_8php.html":[5,0,0,7], -"auth_8php.html#a07bae0e623e2daa9ee2cd5a8aa294dee":[5,0,0,7,0], -"auth_8php.html#a0950af7c2888ca1d4743fe5d0bff9ae5":[5,0,0,7,3], -"auth_8php.html#a2add3a1129ffa4d5515442a9d52a9b1a":[5,0,0,7,2], -"auth_8php.html#ab7be44ee051c0aa29847807cf2c5dd38":[5,0,0,7,1], -"bb2diaspora_8php.html":[5,0,0,9], -"bb2diaspora_8php.html#a180b0e3a7d702998be19e3c3b44b0e93":[5,0,0,9,7], -"bb2diaspora_8php.html#a26c09c218413610e62e60754c579f6c6":[5,0,0,9,2], -"bb2diaspora_8php.html#a29a2ad41f5826f3975fa9a49934ff863":[5,0,0,9,5], -"bb2diaspora_8php.html#a4c2f8f11b29a06809d9b07782215b1b2":[5,0,0,9,6], -"bb2diaspora_8php.html#a4f10e0876b27373c762bc1abbe745f5c":[5,0,0,9,0], -"bb2diaspora_8php.html#a599428bceb6f6d82a6a78cb66811f747":[5,0,0,9,8], -"bb2diaspora_8php.html#a8b96bd45884fa1c40b942939354197d4":[5,0,0,9,3], -"bb2diaspora_8php.html#ad0abe1a7ee50aa0736a233df0a422eba":[5,0,0,9,1], -"bb2diaspora_8php.html#adc92ccda5f85ed27e64fcc17712c89cc":[5,0,0,9,4], -"bbcode_8php.html":[5,0,0,10], -"bbcode_8php.html#a009f61aaf78771737ed0765c8463911b":[5,0,0,10,8], -"bbcode_8php.html#a064dcfd9767df6f53be1a0e11ceeb15d":[5,0,0,10,7], -"bbcode_8php.html#a1c69e021d5e0aef97d6966bf3169c86a":[5,0,0,10,4], -"bbcode_8php.html#a2be26414a367118143cc89e2d58e7377":[5,0,0,10,5], -"bbcode_8php.html#a3435c82a6c7693557800cdeb6848d0bd":[5,0,0,10,0], -"bbcode_8php.html#a39de4de32a9456d1ca914d0dc52bd322":[5,0,0,10,12], -"bbcode_8php.html#a3a989cbf308a32468d171d83e9c51d1e":[5,0,0,10,3], -"bbcode_8php.html#a5165a5221a52cf1bc1d7812ebd2069c7":[5,0,0,10,10], -"bbcode_8php.html#a55b0cb6973f1ec731de0e726bcc0efa7":[5,0,0,10,11], -"bbcode_8php.html#a7cc811ff1939a508cfb54f39c1d584d7":[5,0,0,10,9], -"bbcode_8php.html#a851f5aafefe52474201b83f9fd65931f":[5,0,0,10,1], -"bbcode_8php.html#a8911e027907820df3db03b4f76724b50":[5,0,0,10,6], -"bbcode_8php.html#a98d0eecc620c19561639f06cfbe8e74c":[5,0,0,10,2], -"bbcode_8php.html#aa92f119341f4c69dcef2768a013079b8":[5,0,0,10,13], +"auth_8php.html":[5,0,0,8], +"auth_8php.html#a07bae0e623e2daa9ee2cd5a8aa294dee":[5,0,0,8,0], +"auth_8php.html#a0950af7c2888ca1d4743fe5d0bff9ae5":[5,0,0,8,3], +"auth_8php.html#a2add3a1129ffa4d5515442a9d52a9b1a":[5,0,0,8,2], +"auth_8php.html#ab7be44ee051c0aa29847807cf2c5dd38":[5,0,0,8,1], +"bb2diaspora_8php.html":[5,0,0,10], +"bb2diaspora_8php.html#a180b0e3a7d702998be19e3c3b44b0e93":[5,0,0,10,7], +"bb2diaspora_8php.html#a26c09c218413610e62e60754c579f6c6":[5,0,0,10,2], +"bb2diaspora_8php.html#a29a2ad41f5826f3975fa9a49934ff863":[5,0,0,10,5], +"bb2diaspora_8php.html#a4c2f8f11b29a06809d9b07782215b1b2":[5,0,0,10,6], +"bb2diaspora_8php.html#a4f10e0876b27373c762bc1abbe745f5c":[5,0,0,10,0], +"bb2diaspora_8php.html#a599428bceb6f6d82a6a78cb66811f747":[5,0,0,10,8], +"bb2diaspora_8php.html#a8b96bd45884fa1c40b942939354197d4":[5,0,0,10,3], +"bb2diaspora_8php.html#ad0abe1a7ee50aa0736a233df0a422eba":[5,0,0,10,1], +"bb2diaspora_8php.html#adc92ccda5f85ed27e64fcc17712c89cc":[5,0,0,10,4], +"bbcode_8php.html":[5,0,0,11], +"bbcode_8php.html#a009f61aaf78771737ed0765c8463911b":[5,0,0,11,8], +"bbcode_8php.html#a064dcfd9767df6f53be1a0e11ceeb15d":[5,0,0,11,7], +"bbcode_8php.html#a1c69e021d5e0aef97d6966bf3169c86a":[5,0,0,11,4], +"bbcode_8php.html#a2be26414a367118143cc89e2d58e7377":[5,0,0,11,5], +"bbcode_8php.html#a3435c82a6c7693557800cdeb6848d0bd":[5,0,0,11,0], +"bbcode_8php.html#a39de4de32a9456d1ca914d0dc52bd322":[5,0,0,11,12], +"bbcode_8php.html#a3a989cbf308a32468d171d83e9c51d1e":[5,0,0,11,3], +"bbcode_8php.html#a5165a5221a52cf1bc1d7812ebd2069c7":[5,0,0,11,10], +"bbcode_8php.html#a55b0cb6973f1ec731de0e726bcc0efa7":[5,0,0,11,11], +"bbcode_8php.html#a7cc811ff1939a508cfb54f39c1d584d7":[5,0,0,11,9], +"bbcode_8php.html#a851f5aafefe52474201b83f9fd65931f":[5,0,0,11,1], +"bbcode_8php.html#a8911e027907820df3db03b4f76724b50":[5,0,0,11,6], +"bbcode_8php.html#a98d0eecc620c19561639f06cfbe8e74c":[5,0,0,11,2], +"bbcode_8php.html#aa92f119341f4c69dcef2768a013079b8":[5,0,0,11,13], "block_8php.html":[5,0,1,7], "block_8php.html#a8a82a470acdfbc7a8e749509caeeea45":[5,0,1,7,0], "block_8php.html#a9b61c96044ed2a068f18c10370a78d5c":[5,0,1,7,1], @@ -249,5 +247,7 @@ var NAVTREEINDEX0 = "boot_8php.html#a6b9909db6a7ec80ec6fdd40ba74014dd":[5,0,4,103], "boot_8php.html#a6c5e9e293c8242dcb9bc2c3ea2fee2c9":[5,0,4,95], "boot_8php.html#a6df1102664f64b274810db85197c2755":[5,0,4,222], -"boot_8php.html#a6e57d913634d033b4d5ad72d99fd3e9d":[5,0,4,132] +"boot_8php.html#a6e57d913634d033b4d5ad72d99fd3e9d":[5,0,4,132], +"boot_8php.html#a6ee7a72d558d1851bbb9e3cdde377932":[5,0,4,216], +"boot_8php.html#a7037bcbca223395c06bc67f65024de7a":[5,0,4,104] }; diff --git a/doc/html/navtreeindex1.js b/doc/html/navtreeindex1.js index a6b100f3e..855d8d8fe 100644 --- a/doc/html/navtreeindex1.js +++ b/doc/html/navtreeindex1.js @@ -1,7 +1,5 @@ var NAVTREEINDEX1 = { -"boot_8php.html#a6ee7a72d558d1851bbb9e3cdde377932":[5,0,4,216], -"boot_8php.html#a7037bcbca223395c06bc67f65024de7a":[5,0,4,104], "boot_8php.html#a7176c0f9f1c98421b97735d892cf6252":[5,0,4,252], "boot_8php.html#a718a801b0be6cbaef5e519516da12721":[5,0,4,167], "boot_8php.html#a719c7f3972d5f9268f37a41c76cd4ef6":[5,0,4,28], @@ -166,7 +164,8 @@ var NAVTREEINDEX1 = "boot_8php.html#afe88b920aa285982edb817a0dd44eb37":[5,0,4,14], "boot_8php.html#afef254290febac854c85fc698d9483a6":[5,0,4,285], "boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7":[5,0,4,223], -"cache_8php.html":[5,0,0,12], +"boxy_8php.html":[5,0,3,1,3,1,0], +"cache_8php.html":[5,0,0,13], "channel_8php.html":[5,0,1,11], "channel_8php.html#a9c6a6179e0e626398ebecc6151905ef1":[5,0,1,11,0], "channel_8php.html#ac7c8c7845741baadf87fae6bc279f3dc":[5,0,1,11,1], @@ -249,5 +248,6 @@ var NAVTREEINDEX1 = "classApp.html#ab47de68fa39806d1fb0976407e188b77":[4,0,5,71], "classApp.html#abe0e4fa91097f7a6588e1213a834121c":[4,0,5,37], "classApp.html#abea5a4f77dcd53c928dc4eed86616637":[4,0,5,19], -"classApp.html#abf46a653d8499e7c253cc1be894a6d83":[4,0,5,17] +"classApp.html#abf46a653d8499e7c253cc1be894a6d83":[4,0,5,17], +"classApp.html#ac1a8b2cd40609b231a560201a08852ba":[4,0,5,52] }; diff --git a/doc/html/navtreeindex2.js b/doc/html/navtreeindex2.js index 92d322451..4ef5a3f93 100644 --- a/doc/html/navtreeindex2.js +++ b/doc/html/navtreeindex2.js @@ -1,6 +1,5 @@ var NAVTREEINDEX2 = { -"classApp.html#ac1a8b2cd40609b231a560201a08852ba":[4,0,5,52], "classApp.html#ac1d80a14492acc932715d54567d8a589":[4,0,5,46], "classApp.html#ac6e6b1c7d6df408580ff79977fcfa656":[4,0,5,54], "classApp.html#ac73dc90e4764497e2f1b7e6612c8fb88":[4,0,5,43], @@ -249,5 +248,6 @@ var NAVTREEINDEX2 = "classphoto__driver.html#a6eee8e36eaf9339f4faf80ddd43162da":[4,0,19,23], "classphoto__driver.html#a7c78b5a01afe61ba3895ac07f4869b55":[4,0,19,25], "classphoto__driver.html#a97289aef3be43d9435ca3717ef10b8ab":[4,0,19,12], -"classphoto__driver.html#aa2efb5b2a6af3fd67e3f1c2b9852a5ba":[4,0,19,6] +"classphoto__driver.html#aa2efb5b2a6af3fd67e3f1c2b9852a5ba":[4,0,19,6], +"classphoto__driver.html#ab98da263bd7341fc132c4fb6fc76e8d5":[4,0,19,8] }; diff --git a/doc/html/navtreeindex3.js b/doc/html/navtreeindex3.js index ba7d5173f..6d04cadf5 100644 --- a/doc/html/navtreeindex3.js +++ b/doc/html/navtreeindex3.js @@ -1,6 +1,5 @@ var NAVTREEINDEX3 = { -"classphoto__driver.html#ab98da263bd7341fc132c4fb6fc76e8d5":[4,0,19,8], "classphoto__driver.html#abc9f73ad90923772d52b9fcc4eb117dd":[4,0,19,11], "classphoto__driver.html#ac6e85f8e507cab4e755ed7acdec401ae":[4,0,19,0], "classphoto__driver.html#acc30486acee9e89e32701f44a1738117":[4,0,19,10], @@ -34,23 +33,23 @@ var NAVTREEINDEX3 = "classphoto__imagick.html#af92901d252c1e6ab5b54eebedbed23bb":[4,0,21,9], "classphoto__imagick.html#afd49d64751ee3a298eac0c0ce0ba0207":[4,0,21,1], "classphoto__imagick.html#aff6bcdbab18593a3fc5a480db8509393":[4,0,21,3], -"cli__startup_8php.html":[5,0,0,15], -"cli__startup_8php.html#adfdde63686e33ccd4851fa5edc4fc70b":[5,0,0,15,0], -"cli__suggest_8php.html":[5,0,0,16], -"cli__suggest_8php.html#a8f3a60fc96f4bec7d3837c4efc7725f2":[5,0,0,16,0], +"cli__startup_8php.html":[5,0,0,16], +"cli__startup_8php.html#adfdde63686e33ccd4851fa5edc4fc70b":[5,0,0,16,0], +"cli__suggest_8php.html":[5,0,0,17], +"cli__suggest_8php.html#a8f3a60fc96f4bec7d3837c4efc7725f2":[5,0,0,17,0], "cloud_8php.html":[5,0,1,15], "cloud_8php.html#a1b79a6fe0454bc76673ad9aef55bf02d":[5,0,1,15,0], -"comanche_8php.html":[5,0,0,17], -"comanche_8php.html#a028f004d5b8c23d6367816d899e17cfe":[5,0,0,17,5], -"comanche_8php.html#a1a208fdb40dd83d6298caec4290ee922":[5,0,0,17,3], -"comanche_8php.html#a3d11417d2d846dbe72638a556529ff8f":[5,0,0,17,9], -"comanche_8php.html#a5718daeda40bf835345fe061e8808cdf":[5,0,0,17,4], -"comanche_8php.html#a5a7ab801717d38e91ac910b933973887":[5,0,0,17,0], -"comanche_8php.html#a6b0191c1a63db1696a2eb139d90d9e7f":[5,0,0,17,7], -"comanche_8php.html#ad5a44e42231759aba1dda49e0490501e":[5,0,0,17,2], -"comanche_8php.html#ae9fe1ce574db3dd0931eada80234f82a":[5,0,0,17,6], -"comanche_8php.html#aed39ecad69234f3ddf61f0dedb49a58e":[5,0,0,17,1], -"comanche_8php.html#af7150df735e5ff9d467994cd6f769c6e":[5,0,0,17,8], +"comanche_8php.html":[5,0,0,18], +"comanche_8php.html#a028f004d5b8c23d6367816d899e17cfe":[5,0,0,18,5], +"comanche_8php.html#a1a208fdb40dd83d6298caec4290ee922":[5,0,0,18,3], +"comanche_8php.html#a3d11417d2d846dbe72638a556529ff8f":[5,0,0,18,9], +"comanche_8php.html#a5718daeda40bf835345fe061e8808cdf":[5,0,0,18,4], +"comanche_8php.html#a5a7ab801717d38e91ac910b933973887":[5,0,0,18,0], +"comanche_8php.html#a6b0191c1a63db1696a2eb139d90d9e7f":[5,0,0,18,7], +"comanche_8php.html#ad5a44e42231759aba1dda49e0490501e":[5,0,0,18,2], +"comanche_8php.html#ae9fe1ce574db3dd0931eada80234f82a":[5,0,0,18,6], +"comanche_8php.html#aed39ecad69234f3ddf61f0dedb49a58e":[5,0,0,18,1], +"comanche_8php.html#af7150df735e5ff9d467994cd6f769c6e":[5,0,0,18,8], "common_8php.html":[5,0,1,16], "common_8php.html#ab63408f39abef7a6915186e8dabc5a96":[5,0,1,16,0], "common_8php.html#aca62f113655809f41f49042ce9b123c2":[5,0,1,16,1], @@ -68,76 +67,76 @@ var NAVTREEINDEX3 = "connedit_8php.html#a4da871e075597a09a8b374b9171dd92e":[5,0,1,19,2], "connedit_8php.html#a707ea7e63cf9674025b1d6b081ae74f5":[5,0,1,19,0], "connedit_8php.html#a795acb3d9d841f55c255d7611681ab67":[5,0,1,19,1], -"contact__selectors_8php.html":[5,0,0,20], -"contact__selectors_8php.html#a2c743d2eb526eb758d943a1490162d75":[5,0,0,20,1], -"contact__selectors_8php.html#a9839e8fdaac7ffb37bf1420493f5c28f":[5,0,0,20,0], -"contact__selectors_8php.html#ad472e4716426dd1a9dd77b62962454be":[5,0,0,20,3], -"contact__selectors_8php.html#ae499960d6467bd30c78607b1018baf53":[5,0,0,20,2], -"contact__widgets_8php.html":[5,0,0,21], -"contact__widgets_8php.html#a165eb021e61c4dcab2a552f28628d353":[5,0,0,21,0], -"contact__widgets_8php.html#a1eda66319d170f60a8d07c7ece95533b":[5,0,0,21,2], -"contact__widgets_8php.html#a552f8544528cec0c995cea7287ea9d65":[5,0,0,21,1], -"contact__widgets_8php.html#a57e73ebcfd62bb5d8c7a7b9e663726d6":[5,0,0,21,3], +"contact__selectors_8php.html":[5,0,0,21], +"contact__selectors_8php.html#a2c743d2eb526eb758d943a1490162d75":[5,0,0,21,1], +"contact__selectors_8php.html#a9839e8fdaac7ffb37bf1420493f5c28f":[5,0,0,21,0], +"contact__selectors_8php.html#ad472e4716426dd1a9dd77b62962454be":[5,0,0,21,3], +"contact__selectors_8php.html#ae499960d6467bd30c78607b1018baf53":[5,0,0,21,2], +"contact__widgets_8php.html":[5,0,0,22], +"contact__widgets_8php.html#a165eb021e61c4dcab2a552f28628d353":[5,0,0,22,0], +"contact__widgets_8php.html#a1eda66319d170f60a8d07c7ece95533b":[5,0,0,22,2], +"contact__widgets_8php.html#a552f8544528cec0c995cea7287ea9d65":[5,0,0,22,1], +"contact__widgets_8php.html#a57e73ebcfd62bb5d8c7a7b9e663726d6":[5,0,0,22,3], "contactgroup_8php.html":[5,0,1,20], "contactgroup_8php.html#a18c7391b1b25debaf98c9dba639caab3":[5,0,1,20,0], -"conversation_8php.html":[5,0,0,22], -"conversation_8php.html#a0891aaa4492cba2b51eda12fe01957f3":[5,0,0,22,7], -"conversation_8php.html#a0ee05f15255fb1cc3d89f30bc378a654":[5,0,0,22,9], -"conversation_8php.html#a1dfcb5146e9d1eca4528bc580ad5d273":[5,0,0,22,16], -"conversation_8php.html#a2a7d541854bba755eb8ada59af7dcb1a":[5,0,0,22,22], -"conversation_8php.html#a3d8e30cc94f9a175054c021305d3aca3":[5,0,0,22,6], -"conversation_8php.html#a40b9b5e7825bc73932a32e667f05e6f2":[5,0,0,22,17], -"conversation_8php.html#a4b0888b0f26e1c284a4341fe5fd04f0c":[5,0,0,22,15], -"conversation_8php.html#a7eeaaf44506815576f3bd80053ef52c3":[5,0,0,22,23], -"conversation_8php.html#a7f6ef0dfa554bacf620e84c18d386e67":[5,0,0,22,8], -"conversation_8php.html#a96b34b9d64d13c543e8163e52f5ce8c4":[5,0,0,22,14], -"conversation_8php.html#a9bd7f9fb6678736c581bcba3b17f471c":[5,0,0,22,13], -"conversation_8php.html#a9cc2a679606da9e535a06433f9f553a0":[5,0,0,22,21], -"conversation_8php.html#a9f909b8885259b79c6ac8da93afd8f11":[5,0,0,22,19], -"conversation_8php.html#aacbb12d372d5e9c3ab0735b4aea48fb3":[5,0,0,22,10], -"conversation_8php.html#ab2383dff4f823e580399ff469d90ab19":[5,0,0,22,4], -"conversation_8php.html#abed85a41f1160598de880b84021c9cf7":[5,0,0,22,2], -"conversation_8php.html#ac55e070f65f46fcc8e269f7896be4c7d":[5,0,0,22,20], -"conversation_8php.html#ad3e1d4b15e7d6d026ee182edd58f692b":[5,0,0,22,0], -"conversation_8php.html#ad470fc7766f0db66d138fa1916c7a8b7":[5,0,0,22,1], -"conversation_8php.html#adda79b75bf1ccf6ce9503aa310953533":[5,0,0,22,11], -"conversation_8php.html#ae59703b07ce2ddf627b4172ff26058b6":[5,0,0,22,5], -"conversation_8php.html#ae996eb116d397a2c6396c312d7b98664":[5,0,0,22,18], -"conversation_8php.html#afe5b2f38d8b803edb0d7ec5fa2868db0":[5,0,0,22,12], -"conversation_8php.html#affea1afb3f32ca41e966c8ddb4204d81":[5,0,0,22,3], -"cronhooks_8php.html":[5,0,0,24], -"cronhooks_8php.html#a4c4c1bbec4ecc9a0efa00dd6afd2c0ca":[5,0,0,24,0], -"crypto_8php.html":[5,0,0,25], -"crypto_8php.html#a0781202b0a43b82426929cc87c2fa2b5":[5,0,0,25,5], -"crypto_8php.html#a2148d7aac7b30c720f7ebda7e9790286":[5,0,0,25,2], -"crypto_8php.html#a32fc08d57a5694f94d8543ecbb03323c":[5,0,0,25,4], -"crypto_8php.html#a5c61821d205f95f127114159cbffa764":[5,0,0,25,1], -"crypto_8php.html#a920e5f222d0020f47556033d8b2b6552":[5,0,0,25,9], -"crypto_8php.html#aae0ab70d6a199b29555b1ac3cf250d6a":[5,0,0,25,6], -"crypto_8php.html#ab4f21d8f6b8ece0915e7c8bb73379f96":[5,0,0,25,10], -"crypto_8php.html#ac852ee41392d1358c3a54d54935e0bf9":[5,0,0,25,0], -"crypto_8php.html#ac95ac3b1b23b65b04a86613d4206ae85":[5,0,0,25,8], -"crypto_8php.html#aca7c3a574bfb6c6ef1f2403a56823914":[5,0,0,25,3], -"crypto_8php.html#ad5e51fd44cff93cfaa07a37e24a5edec":[5,0,0,25,7], -"dark_8php.html":[5,0,3,1,3,1,1], +"conversation_8php.html":[5,0,0,23], +"conversation_8php.html#a0891aaa4492cba2b51eda12fe01957f3":[5,0,0,23,7], +"conversation_8php.html#a0ee05f15255fb1cc3d89f30bc378a654":[5,0,0,23,9], +"conversation_8php.html#a1dfcb5146e9d1eca4528bc580ad5d273":[5,0,0,23,16], +"conversation_8php.html#a2a7d541854bba755eb8ada59af7dcb1a":[5,0,0,23,22], +"conversation_8php.html#a3d8e30cc94f9a175054c021305d3aca3":[5,0,0,23,6], +"conversation_8php.html#a40b9b5e7825bc73932a32e667f05e6f2":[5,0,0,23,17], +"conversation_8php.html#a4b0888b0f26e1c284a4341fe5fd04f0c":[5,0,0,23,15], +"conversation_8php.html#a7eeaaf44506815576f3bd80053ef52c3":[5,0,0,23,23], +"conversation_8php.html#a7f6ef0dfa554bacf620e84c18d386e67":[5,0,0,23,8], +"conversation_8php.html#a96b34b9d64d13c543e8163e52f5ce8c4":[5,0,0,23,14], +"conversation_8php.html#a9bd7f9fb6678736c581bcba3b17f471c":[5,0,0,23,13], +"conversation_8php.html#a9cc2a679606da9e535a06433f9f553a0":[5,0,0,23,21], +"conversation_8php.html#a9f909b8885259b79c6ac8da93afd8f11":[5,0,0,23,19], +"conversation_8php.html#aacbb12d372d5e9c3ab0735b4aea48fb3":[5,0,0,23,10], +"conversation_8php.html#ab2383dff4f823e580399ff469d90ab19":[5,0,0,23,4], +"conversation_8php.html#abed85a41f1160598de880b84021c9cf7":[5,0,0,23,2], +"conversation_8php.html#ac55e070f65f46fcc8e269f7896be4c7d":[5,0,0,23,20], +"conversation_8php.html#ad3e1d4b15e7d6d026ee182edd58f692b":[5,0,0,23,0], +"conversation_8php.html#ad470fc7766f0db66d138fa1916c7a8b7":[5,0,0,23,1], +"conversation_8php.html#adda79b75bf1ccf6ce9503aa310953533":[5,0,0,23,11], +"conversation_8php.html#ae59703b07ce2ddf627b4172ff26058b6":[5,0,0,23,5], +"conversation_8php.html#ae996eb116d397a2c6396c312d7b98664":[5,0,0,23,18], +"conversation_8php.html#afe5b2f38d8b803edb0d7ec5fa2868db0":[5,0,0,23,12], +"conversation_8php.html#affea1afb3f32ca41e966c8ddb4204d81":[5,0,0,23,3], +"cronhooks_8php.html":[5,0,0,25], +"cronhooks_8php.html#a4c4c1bbec4ecc9a0efa00dd6afd2c0ca":[5,0,0,25,0], +"crypto_8php.html":[5,0,0,26], +"crypto_8php.html#a0781202b0a43b82426929cc87c2fa2b5":[5,0,0,26,5], +"crypto_8php.html#a2148d7aac7b30c720f7ebda7e9790286":[5,0,0,26,2], +"crypto_8php.html#a32fc08d57a5694f94d8543ecbb03323c":[5,0,0,26,4], +"crypto_8php.html#a5c61821d205f95f127114159cbffa764":[5,0,0,26,1], +"crypto_8php.html#a920e5f222d0020f47556033d8b2b6552":[5,0,0,26,9], +"crypto_8php.html#aae0ab70d6a199b29555b1ac3cf250d6a":[5,0,0,26,6], +"crypto_8php.html#ab4f21d8f6b8ece0915e7c8bb73379f96":[5,0,0,26,10], +"crypto_8php.html#ac852ee41392d1358c3a54d54935e0bf9":[5,0,0,26,0], +"crypto_8php.html#ac95ac3b1b23b65b04a86613d4206ae85":[5,0,0,26,8], +"crypto_8php.html#aca7c3a574bfb6c6ef1f2403a56823914":[5,0,0,26,3], +"crypto_8php.html#ad5e51fd44cff93cfaa07a37e24a5edec":[5,0,0,26,7], +"dark_8php.html":[5,0,3,1,3,1,2], "darkness_8php.html":[5,0,3,1,0,2,0], "darknessleftaside_8php.html":[5,0,3,1,0,2,1], "darknessrightaside_8php.html":[5,0,3,1,0,2,2], -"datetime_8php.html":[5,0,0,26], -"datetime_8php.html#a03900dcf0f9e3c58793a031673a70326":[5,0,0,26,6], -"datetime_8php.html#a36d3d6dff8d76b5f295bb3d9c535a5b1":[5,0,0,26,11], -"datetime_8php.html#a3f2897db32e745fe2f3e70a6b46578f8":[5,0,0,26,5], -"datetime_8php.html#a5f29553799005b1fd4e9ce9d98ce05aa":[5,0,0,26,3], -"datetime_8php.html#a633dadba426fa2f60b25fabdb19ebc1f":[5,0,0,26,10], -"datetime_8php.html#a7df24d72ea05922d3127363e2295174c":[5,0,0,26,7], -"datetime_8php.html#a8ae8dc95ace7ac27fa5a1ecf42b78c82":[5,0,0,26,9], -"datetime_8php.html#aa51b5a7ea4f931b23acbdfcea46e9865":[5,0,0,26,12], -"datetime_8php.html#ab55e545b72ec8c097e052ea7d373491f":[5,0,0,26,13], -"datetime_8php.html#aba971b67f17fecf050813f1eba72367f":[5,0,0,26,8], -"datetime_8php.html#abc1652f96799cec6fce8797ba2ebc2df":[5,0,0,26,0], -"datetime_8php.html#ac265b86f384ee094ed5479aae02aa5c8":[5,0,0,26,2], -"datetime_8php.html#ad6301e74b0f9267d52f8d432b5beb226":[5,0,0,26,4], -"datetime_8php.html#aea356409ba69f9de412298c998595dd2":[5,0,0,26,1], +"datetime_8php.html":[5,0,0,27], +"datetime_8php.html#a03900dcf0f9e3c58793a031673a70326":[5,0,0,27,6], +"datetime_8php.html#a36d3d6dff8d76b5f295bb3d9c535a5b1":[5,0,0,27,11], +"datetime_8php.html#a3f2897db32e745fe2f3e70a6b46578f8":[5,0,0,27,5], +"datetime_8php.html#a5f29553799005b1fd4e9ce9d98ce05aa":[5,0,0,27,3], +"datetime_8php.html#a633dadba426fa2f60b25fabdb19ebc1f":[5,0,0,27,10], +"datetime_8php.html#a7df24d72ea05922d3127363e2295174c":[5,0,0,27,7], +"datetime_8php.html#a8ae8dc95ace7ac27fa5a1ecf42b78c82":[5,0,0,27,9], +"datetime_8php.html#aa51b5a7ea4f931b23acbdfcea46e9865":[5,0,0,27,12], +"datetime_8php.html#ab55e545b72ec8c097e052ea7d373491f":[5,0,0,27,13], +"datetime_8php.html#aba971b67f17fecf050813f1eba72367f":[5,0,0,27,8], +"datetime_8php.html#abc1652f96799cec6fce8797ba2ebc2df":[5,0,0,27,0], +"datetime_8php.html#ac265b86f384ee094ed5479aae02aa5c8":[5,0,0,27,2], +"datetime_8php.html#ad6301e74b0f9267d52f8d432b5beb226":[5,0,0,27,4], +"datetime_8php.html#aea356409ba69f9de412298c998595dd2":[5,0,0,27,1], "db__update_8php.html":[5,0,2,2], "dba__driver_8php.html":[5,0,0,0,0], "dba__driver_8php.html#a2c09a731d3b4fef41fed0e83db01be1f":[5,0,0,0,0,8], @@ -152,8 +151,8 @@ var NAVTREEINDEX3 = "dba__mysqli_8php.html":[5,0,0,0,2], "delegate_8php.html":[5,0,1,21], "delegate_8php.html#a943eea8996ef348eb845c498f9f354dd":[5,0,1,21,0], -"deliver_8php.html":[5,0,0,27], -"deliver_8php.html#a397afcb9afecf0c1816b0951189dd346":[5,0,0,27,0], +"deliver_8php.html":[5,0,0,28], +"deliver_8php.html#a397afcb9afecf0c1816b0951189dd346":[5,0,0,28,0], "dir_032dd9e2cfe278a2cfa5eb9547448eb9.html":[5,0,3,1,3,0], "dir_05f4fba29266e8fd7869afcd6cefb5cb.html":[5,0,3,1,0,2], "dir_0eaa4a0adae8ba4811e133c6e594aeee.html":[5,0,2,0], @@ -170,13 +169,13 @@ var NAVTREEINDEX3 = "dir_8e58ba5e98ac07e59ee15ca7486c9950.html":[5,0,3,1,2], "dir_922c77e958c99a98db92d38a3a349bf2.html":[5,0,3,1,1], "dir_92d6b429199666aa3765c8a934db5e14.html":[5,0,3,1,1,1], -"dir__fns_8php.html":[5,0,0,28], -"dir__fns_8php.html#a44062d4b471d1e83f92f6c184585aa13":[5,0,0,28,5], -"dir__fns_8php.html#a8c15aa69da12f2d3476b9e93b82b337d":[5,0,0,28,2], -"dir__fns_8php.html#aa666e7df6ca8c332f4081c9b66b4bdf6":[5,0,0,28,4], -"dir__fns_8php.html#acd37b17dce3bdec6d5a6344a20598c1e":[5,0,0,28,3], -"dir__fns_8php.html#acf621621e929d49441da30aad76a58cf":[5,0,0,28,0], -"dir__fns_8php.html#ae56881d69bb6f8e828c9e35454386774":[5,0,0,28,1], +"dir__fns_8php.html":[5,0,0,29], +"dir__fns_8php.html#a44062d4b471d1e83f92f6c184585aa13":[5,0,0,29,5], +"dir__fns_8php.html#a8c15aa69da12f2d3476b9e93b82b337d":[5,0,0,29,2], +"dir__fns_8php.html#aa666e7df6ca8c332f4081c9b66b4bdf6":[5,0,0,29,4], +"dir__fns_8php.html#acd37b17dce3bdec6d5a6344a20598c1e":[5,0,0,29,3], +"dir__fns_8php.html#acf621621e929d49441da30aad76a58cf":[5,0,0,29,0], +"dir__fns_8php.html#ae56881d69bb6f8e828c9e35454386774":[5,0,0,29,1], "dir_a8a0005c2b8590c535262d232c22afab.html":[5,0,3,1,1,1,0,0], "dir_aae29906d7bfc07d076125f669c8352e.html":[5,0,0,1], "dir_b2f003339c516cc00c8cadcafbe82f13.html":[5,0,3], @@ -216,23 +215,23 @@ var NAVTREEINDEX3 = "editpost_8php.html#a34011690864d122680c802e9e748ccfb":[5,0,1,28,0], "editwebpage_8php.html":[5,0,1,29], "editwebpage_8php.html#a375e945255fad79a71036528f7480650":[5,0,1,29,0], -"enotify_8php.html":[5,0,0,30], -"enotify_8php.html#a3e9a9355b243777c488d2a9883908dfc":[5,0,0,30,1], -"event_8php.html":[5,0,0,31], -"event_8php.html#a018ea4484910a873a7c1eaa126de9b1a":[5,0,0,31,6], -"event_8php.html#a180cccd63c2a2f00ff432b03113531f3":[5,0,0,31,0], -"event_8php.html#a184d6b9690e5b6dee35a0aa9edd47279":[5,0,0,31,1], -"event_8php.html#a2ac9f1b08de03250ecd794f705781d17":[5,0,0,31,5], -"event_8php.html#a32ba1b9ddf7a744a9a1512b052e5f850":[5,0,0,31,2], -"event_8php.html#a89ef533faf345db8d64a58d4856bde3a":[5,0,0,31,3], -"event_8php.html#abb74206cf42d694307c3d7abb7af9869":[5,0,0,31,4], +"enotify_8php.html":[5,0,0,31], +"enotify_8php.html#a3e9a9355b243777c488d2a9883908dfc":[5,0,0,31,1], +"event_8php.html":[5,0,0,32], +"event_8php.html#a018ea4484910a873a7c1eaa126de9b1a":[5,0,0,32,6], +"event_8php.html#a180cccd63c2a2f00ff432b03113531f3":[5,0,0,32,0], +"event_8php.html#a184d6b9690e5b6dee35a0aa9edd47279":[5,0,0,32,1], +"event_8php.html#a2ac9f1b08de03250ecd794f705781d17":[5,0,0,32,5], +"event_8php.html#a32ba1b9ddf7a744a9a1512b052e5f850":[5,0,0,32,2], +"event_8php.html#a89ef533faf345db8d64a58d4856bde3a":[5,0,0,32,3], +"event_8php.html#abb74206cf42d694307c3d7abb7af9869":[5,0,0,32,4], "events_8php.html":[5,0,1,30], "events_8php.html#a1d293fb217ae6bc9e3858c4b32e363ec":[5,0,1,30,0], "events_8php.html#ab3e8a8f901175f8e40a8089eea45c075":[5,0,1,30,1], -"expire_8php.html":[5,0,0,32], -"expire_8php.html#a444e45c9b67727b27db4c779fd51a298":[5,0,0,32,0], -"externals_8php.html":[5,0,0,33], -"externals_8php.html#a4df44079e6f915286088b7a0d44db926":[5,0,0,33,0], +"expire_8php.html":[5,0,0,33], +"expire_8php.html#a444e45c9b67727b27db4c779fd51a298":[5,0,0,33,0], +"externals_8php.html":[5,0,0,34], +"externals_8php.html#a4df44079e6f915286088b7a0d44db926":[5,0,0,34,0], "extract_8php.html":[5,0,2,4], "extract_8php.html#a0cbe524ffc9a496114fd7ba9f423ef44":[5,0,2,4,3], "extract_8php.html#a50b05cf2e02ef0b67fcad97106dd7634":[5,0,2,4,2], @@ -240,14 +239,15 @@ var NAVTREEINDEX3 = "extract_8php.html#a9590b15215a21e9b42eb546aeef79704":[5,0,2,4,1], "fbrowser_8php.html":[5,0,1,31], "fbrowser_8php.html#aee476addcf7a3e0fe9454f7dfd5a56c4":[5,0,1,31,0], -"features_8php.html":[5,0,0,34], -"features_8php.html#a52b5bdfb61b256713efecf7a7b20b0c0":[5,0,0,34,0], -"features_8php.html#ae73c5b03b01c7284ed7e7e0e774e975c":[5,0,0,34,1], +"features_8php.html":[5,0,0,35], +"features_8php.html#a52b5bdfb61b256713efecf7a7b20b0c0":[5,0,0,35,0], +"features_8php.html#ae73c5b03b01c7284ed7e7e0e774e975c":[5,0,0,35,1], "feed_8php.html":[5,0,1,32], "feed_8php.html#af86137700b56f33d1d5f25c8dec22c04":[5,0,1,32,0], "filer_8php.html":[5,0,1,33], "filer_8php.html#a5fd5d7e61b2f9c43cb5f110c89dc4274":[5,0,1,33,0], "filerm_8php.html":[5,0,1,34], "filerm_8php.html#ae2eb28d2054fa2c37e38689882172208":[5,0,1,34,0], -"files.html":[5,0] +"files.html":[5,0], +"filestorage_8php.html":[5,0,1,35] }; diff --git a/doc/html/navtreeindex4.js b/doc/html/navtreeindex4.js index cb790c94f..85b883d39 100644 --- a/doc/html/navtreeindex4.js +++ b/doc/html/navtreeindex4.js @@ -1,6 +1,5 @@ var NAVTREEINDEX4 = { -"filestorage_8php.html":[5,0,1,35], "filestorage_8php.html#a61bb1be78472555df4ce619f51014040":[5,0,1,35,0], "filestorage_8php.html#ad3b64e3ece9831f9d3a9f00c0ae983cd":[5,0,1,35,1], "fpostit_8php.html":[5,0,2,0,0], @@ -22,7 +21,7 @@ var NAVTREEINDEX4 = "friendica-to-smarty-tpl_8py.html#ae74419b16516956c66f7db714a93a6ac":[5,0,2,5,7], "friendica-to-smarty-tpl_8py.html#aecf730e0884bb4ddc6c0deb1ef85f8eb":[5,0,2,5,4], "friendica-to-smarty-tpl_8py.html#af6b2c793958aae2aadc294577431f749":[5,0,2,5,3], -"friendica__smarty_8php.html":[5,0,0,36], +"friendica__smarty_8php.html":[5,0,0,37], "fsuggest_8php.html":[5,0,1,37], "fsuggest_8php.html#a61ecfe10ce937ed526614f8fd3de3c7d":[5,0,1,37,1], "fsuggest_8php.html#aa6c49ed4b50a387f1845f36844dd7998":[5,0,1,37,0], @@ -51,8 +50,8 @@ var NAVTREEINDEX4 = "functions_0x76.html":[4,3,0,19], "functions_8php.html":[5,0,3,1,0,1,1], "functions_8php.html#adefe514c95680928b3aae250cbc3c663":[5,0,3,1,0,1,1,0], -"functions_func.html":[4,3,1], "functions_func.html":[4,3,1,0], +"functions_func.html":[4,3,1], "functions_func_0x61.html":[4,3,1,1], "functions_func_0x62.html":[4,3,1,2], "functions_func_0x63.html":[4,3,1,3], @@ -72,8 +71,8 @@ var NAVTREEINDEX4 = "functions_func_0x74.html":[4,3,1,17], "functions_func_0x76.html":[4,3,1,18], "functions_vars.html":[4,3,2], -"globals.html":[5,1,0], "globals.html":[5,1,0,0], +"globals.html":[5,1,0], "globals_0x5f.html":[5,1,0,1], "globals_0x61.html":[5,1,0,2], "globals_0x62.html":[5,1,0,3], @@ -100,8 +99,8 @@ var NAVTREEINDEX4 = "globals_0x77.html":[5,1,0,24], "globals_0x78.html":[5,1,0,25], "globals_0x7a.html":[5,1,0,26], -"globals_func.html":[5,1,1], "globals_func.html":[5,1,1,0], +"globals_func.html":[5,1,1], "globals_func_0x61.html":[5,1,1,1], "globals_func_0x62.html":[5,1,1,2], "globals_func_0x63.html":[5,1,1,3], @@ -127,8 +126,8 @@ var NAVTREEINDEX4 = "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,0], "globals_vars.html":[5,1,2], +"globals_vars.html":[5,1,2,0], "globals_vars_0x61.html":[5,1,2,1], "globals_vars_0x63.html":[5,1,2,2], "globals_vars_0x64.html":[5,1,2,3], @@ -150,8 +149,8 @@ var NAVTREEINDEX4 = "globals_vars_0x77.html":[5,1,2,19], "globals_vars_0x78.html":[5,1,2,20], "globals_vars_0x7a.html":[5,1,2,21], -"gprobe_8php.html":[5,0,0,37], -"gprobe_8php.html#adf72cb0a70b5b9d99fdec1cc60e18ed1":[5,0,0,37,0], +"gprobe_8php.html":[5,0,0,38], +"gprobe_8php.html#adf72cb0a70b5b9d99fdec1cc60e18ed1":[5,0,0,38,0], "greenthumbnails_8php.html":[5,0,3,1,0,2,3], "help_8php.html":[5,0,1,39], "help_8php.html#a06b2a51aaabed99e53a9b639047c4ce4":[5,0,1,39,1], @@ -162,46 +161,46 @@ var NAVTREEINDEX4 = "home_8php.html#ac4642c38b6f23a8d065dd4a75c620bde":[5,0,1,40,1], "hostxrd_8php.html":[5,0,1,41], "hostxrd_8php.html#aa37ffc8e7900bc76c4828bd25916db92":[5,0,1,41,0], -"html2bbcode_8php.html":[5,0,0,39], -"html2bbcode_8php.html#a39c662b19d318990fee2ba795a55d7a7":[5,0,0,39,3], -"html2bbcode_8php.html#a5ad726995ac4070213abdb3bd09f4837":[5,0,0,39,1], -"html2bbcode_8php.html#a71a07f135d196ec5943b13f7b2e6a9b2":[5,0,0,39,0], -"html2bbcode_8php.html#ad174afe0ccbd8c475e48f8a6ee2f27d8":[5,0,0,39,2], -"html2plain_8php.html":[5,0,0,40], -"html2plain_8php.html#a3214912e3d00cf0a948072daccf16740":[5,0,0,40,0], -"html2plain_8php.html#a56d29b254333d29abb9d96a9a903a4b0":[5,0,0,40,3], -"html2plain_8php.html#ab3e121fa9f3feb16f9f942e705bc6c04":[5,0,0,40,2], -"html2plain_8php.html#ae1c203d0f089d5678d73a6c64a395201":[5,0,0,40,1], -"hubloc_8php.html":[5,0,0,41], -"hubloc_8php.html#ad3d0dcfcfcb347744f7617fe6f5de002":[5,0,0,41,0], -"identity_8php.html":[5,0,0,42], -"identity_8php.html#a1cf83ac2b645de12868edaa3a5718f05":[5,0,0,42,3], -"identity_8php.html#a2ab5172eabd375869060c9ad68323f5c":[5,0,0,42,15], -"identity_8php.html#a332df795f684788002f5a6424abacfd7":[5,0,0,42,10], -"identity_8php.html#a345f4c943d84de502ec6e72d2c813945":[5,0,0,42,2], -"identity_8php.html#a3570a4eb77332b292d394c4132cb8f03":[5,0,0,42,13], -"identity_8php.html#a432259b2cf5b6f59be53e71db9f2c7dc":[5,0,0,42,21], -"identity_8php.html#a4751b522ea913d0e7ed43e03d22e9e68":[5,0,0,42,20], -"identity_8php.html#a47d6f53216f23a3484061793bef29854":[5,0,0,42,22], -"identity_8php.html#a490972c02fdb638c52ec0e012a30bfd2":[5,0,0,42,8], -"identity_8php.html#a5b815330f3d177ab383af37a6c12e532":[5,0,0,42,25], -"identity_8php.html#a680fbafc2db023c5b1309e0180e81315":[5,0,0,42,26], -"identity_8php.html#a77d2237f1846964634b1c99089c27c7d":[5,0,0,42,1], -"identity_8php.html#a78151baf4407a8482d2681a91a9c486b":[5,0,0,42,23], -"identity_8php.html#a9637c557e13d9671f3eeb124ab98212a":[5,0,0,42,17], -"identity_8php.html#aa46321e1cd6a3b8dfde8bf9510112fec":[5,0,0,42,9], -"identity_8php.html#aa4bd4abfcba883f43919e89ec6419025":[5,0,0,42,18], -"identity_8php.html#aa870d2c1f558cfd52bef05bc124e8fa4":[5,0,0,42,0], -"identity_8php.html#aaeb666872995e3ab8da8f7bc5f3b2bd3":[5,0,0,42,12], -"identity_8php.html#aaff86ee3b5984821e7a256c2da5f1a51":[5,0,0,42,11], -"identity_8php.html#ab1485a26b032956e1496fc08c58b83ed":[5,0,0,42,6], -"identity_8php.html#ac73b3e13778c564c877554517a7f51ba":[5,0,0,42,5], -"identity_8php.html#ac9fcd5c4c371998790b5c55c3d0f4633":[5,0,0,42,14], -"identity_8php.html#ad2c97627a313d53df1a1c7b4215ddb51":[5,0,0,42,4], -"identity_8php.html#ad4a2c8caca8f6ae93633ebeca0ed6620":[5,0,0,42,19], -"identity_8php.html#ae2b140df652a55ca11bb6a99005fce35":[5,0,0,42,16], -"identity_8php.html#ae381db3d43f8e7c1da8b15d14ecf5312":[5,0,0,42,7], -"identity_8php.html#af2802bc13a00a17b867bba7978ba8f58":[5,0,0,42,24], +"html2bbcode_8php.html":[5,0,0,40], +"html2bbcode_8php.html#a39c662b19d318990fee2ba795a55d7a7":[5,0,0,40,3], +"html2bbcode_8php.html#a5ad726995ac4070213abdb3bd09f4837":[5,0,0,40,1], +"html2bbcode_8php.html#a71a07f135d196ec5943b13f7b2e6a9b2":[5,0,0,40,0], +"html2bbcode_8php.html#ad174afe0ccbd8c475e48f8a6ee2f27d8":[5,0,0,40,2], +"html2plain_8php.html":[5,0,0,41], +"html2plain_8php.html#a3214912e3d00cf0a948072daccf16740":[5,0,0,41,0], +"html2plain_8php.html#a56d29b254333d29abb9d96a9a903a4b0":[5,0,0,41,3], +"html2plain_8php.html#ab3e121fa9f3feb16f9f942e705bc6c04":[5,0,0,41,2], +"html2plain_8php.html#ae1c203d0f089d5678d73a6c64a395201":[5,0,0,41,1], +"hubloc_8php.html":[5,0,0,42], +"hubloc_8php.html#ad3d0dcfcfcb347744f7617fe6f5de002":[5,0,0,42,0], +"identity_8php.html":[5,0,0,43], +"identity_8php.html#a1cf83ac2b645de12868edaa3a5718f05":[5,0,0,43,3], +"identity_8php.html#a2ab5172eabd375869060c9ad68323f5c":[5,0,0,43,15], +"identity_8php.html#a332df795f684788002f5a6424abacfd7":[5,0,0,43,10], +"identity_8php.html#a345f4c943d84de502ec6e72d2c813945":[5,0,0,43,2], +"identity_8php.html#a3570a4eb77332b292d394c4132cb8f03":[5,0,0,43,13], +"identity_8php.html#a432259b2cf5b6f59be53e71db9f2c7dc":[5,0,0,43,21], +"identity_8php.html#a4751b522ea913d0e7ed43e03d22e9e68":[5,0,0,43,20], +"identity_8php.html#a47d6f53216f23a3484061793bef29854":[5,0,0,43,22], +"identity_8php.html#a490972c02fdb638c52ec0e012a30bfd2":[5,0,0,43,8], +"identity_8php.html#a5b815330f3d177ab383af37a6c12e532":[5,0,0,43,25], +"identity_8php.html#a680fbafc2db023c5b1309e0180e81315":[5,0,0,43,26], +"identity_8php.html#a77d2237f1846964634b1c99089c27c7d":[5,0,0,43,1], +"identity_8php.html#a78151baf4407a8482d2681a91a9c486b":[5,0,0,43,23], +"identity_8php.html#a9637c557e13d9671f3eeb124ab98212a":[5,0,0,43,17], +"identity_8php.html#aa46321e1cd6a3b8dfde8bf9510112fec":[5,0,0,43,9], +"identity_8php.html#aa4bd4abfcba883f43919e89ec6419025":[5,0,0,43,18], +"identity_8php.html#aa870d2c1f558cfd52bef05bc124e8fa4":[5,0,0,43,0], +"identity_8php.html#aaeb666872995e3ab8da8f7bc5f3b2bd3":[5,0,0,43,12], +"identity_8php.html#aaff86ee3b5984821e7a256c2da5f1a51":[5,0,0,43,11], +"identity_8php.html#ab1485a26b032956e1496fc08c58b83ed":[5,0,0,43,6], +"identity_8php.html#ac73b3e13778c564c877554517a7f51ba":[5,0,0,43,5], +"identity_8php.html#ac9fcd5c4c371998790b5c55c3d0f4633":[5,0,0,43,14], +"identity_8php.html#ad2c97627a313d53df1a1c7b4215ddb51":[5,0,0,43,4], +"identity_8php.html#ad4a2c8caca8f6ae93633ebeca0ed6620":[5,0,0,43,19], +"identity_8php.html#ae2b140df652a55ca11bb6a99005fce35":[5,0,0,43,16], +"identity_8php.html#ae381db3d43f8e7c1da8b15d14ecf5312":[5,0,0,43,7], +"identity_8php.html#af2802bc13a00a17b867bba7978ba8f58":[5,0,0,43,24], "import_8php.html":[5,0,1,42], "import_8php.html#af17fef0410518f7eac205d0ea416eaa2":[5,0,1,42,1], "import_8php.html#afdf25ed70096d5dbf4f6d0ca79fea184":[5,0,1,42,0], @@ -249,5 +248,6 @@ var NAVTREEINDEX4 = "include_2api_8php.html#ad24ce1bf20867add4c9211a8eaf93f22":[5,0,0,5,40], "include_2api_8php.html#ad2b0192f3006918bea895de8074bf8d2":[5,0,0,5,11], "include_2api_8php.html#ad4c29f43418f6110f85a6b3998239ab4":[5,0,0,5,33], -"include_2api_8php.html#ad4d1634df6b35126552324683caaffa2":[5,0,0,5,43] +"include_2api_8php.html#ad4d1634df6b35126552324683caaffa2":[5,0,0,5,43], +"include_2api_8php.html#ade742525b2e41c82b090799ef3c51d5e":[5,0,0,5,36] }; diff --git a/doc/html/navtreeindex5.js b/doc/html/navtreeindex5.js index a871f9817..6d45fd7fd 100644 --- a/doc/html/navtreeindex5.js +++ b/doc/html/navtreeindex5.js @@ -1,6 +1,5 @@ var NAVTREEINDEX5 = { -"include_2api_8php.html#ade742525b2e41c82b090799ef3c51d5e":[5,0,0,5,36], "include_2api_8php.html#adfc035ee6303c1d8ba5336a4ead2bd53":[5,0,0,5,14], "include_2api_8php.html#ae0fa388479cace9c5a7a45b571ab42f8":[5,0,0,5,41], "include_2api_8php.html#ae82608c317421f27446465aa6724733d":[5,0,0,5,20], @@ -11,131 +10,135 @@ var NAVTREEINDEX5 = "include_2api_8php.html#afb99daa6b731bf497b81f2128084852c":[5,0,0,5,47], "include_2api_8php.html#afe534f826e4282b72d66e8cadca7bb73":[5,0,0,5,26], "include_2api_8php.html#aff322705cc6084b329003fc8eab0aad0":[5,0,0,5,27], -"include_2attach_8php.html":[5,0,0,6], -"include_2attach_8php.html#a0d07c5b83d3d54e186f752e571847b36":[5,0,0,6,0], -"include_2attach_8php.html#a3634af95f11a023dd8e882c3c7a3600d":[5,0,0,6,5], -"include_2attach_8php.html#a5c0875eafb8c0f8a0620ff7a875a2221":[5,0,0,6,2], -"include_2attach_8php.html#a5d484de2d19a93071571d6499a50ae34":[5,0,0,6,9], -"include_2attach_8php.html#a6aa00ea010ea030110faefb75eafc1ce":[5,0,0,6,8], -"include_2attach_8php.html#a6fdd92775f31c07d2863e16e0026018a":[5,0,0,6,10], -"include_2attach_8php.html#a70bd666e080c2af5a91f5d14c297b8cd":[5,0,0,6,4], -"include_2attach_8php.html#a84a8a64c4805e1525b42d4add464833f":[5,0,0,6,7], -"include_2attach_8php.html#a887d2d44a3ef18dcb6624e7fb58dc8e3":[5,0,0,6,3], -"include_2attach_8php.html#ab6830b3ab74a5d284876141ac80f6cbc":[5,0,0,6,6], -"include_2attach_8php.html#ad991208ce939387e2f93a3bce7d09932":[5,0,0,6,1], -"include_2attach_8php.html#aeb07968990e66a88c95483ca09a7f909":[5,0,0,6,11], -"include_2bookmarks_8php.html":[5,0,0,11], -"include_2bookmarks_8php.html#a743763b0ce83af0bbc8a2f7ac16033aa":[5,0,0,11,1], -"include_2bookmarks_8php.html#aef1cb2968c41c759f2d106e1088ca323":[5,0,0,11,0], -"include_2chanman_8php.html":[5,0,0,13], -"include_2chanman_8php.html#a21ba9a5c961e866ff27aee3ee67bf99b":[5,0,0,13,0], -"include_2chat_8php.html":[5,0,0,14], -"include_2chat_8php.html#a1ee1360f7d2549c7549ae07cb5190f0f":[5,0,0,14,4], -"include_2chat_8php.html#a2ba3af6884ecdce95de69262fe599639":[5,0,0,14,2], -"include_2chat_8php.html#a2c95b545e46bfee64faa05ecf0afea91":[5,0,0,14,3], -"include_2chat_8php.html#acdc80dba4eb796c7472b21129b435422":[5,0,0,14,1], -"include_2chat_8php.html#acea6b176eb7aff44d9ba3ae24ce511d3":[5,0,0,14,0], -"include_2chat_8php.html#aedcb532a0627b8644001a2fadab4e87a":[5,0,0,14,5], -"include_2config_8php.html":[5,0,0,18], -"include_2config_8php.html#a27559f388c9b9af81c94e48d6889d1d1":[5,0,0,18,7], -"include_2config_8php.html#a549910227348003efc3c05c9105c42da":[5,0,0,18,0], -"include_2config_8php.html#a55bbed9a014c9109c767486834f3ca33":[5,0,0,18,9], -"include_2config_8php.html#a61591371cb18764138655d67dc817ab2":[5,0,0,18,11], -"include_2config_8php.html#a7ad2081c5f812ac4387fd76f3762d941":[5,0,0,18,1], -"include_2config_8php.html#a9c171def547deee16738dc58fdeb4b72":[5,0,0,18,2], -"include_2config_8php.html#aa3dc1d3de2d091ac702e675acd3a085e":[5,0,0,18,6], -"include_2config_8php.html#ac543813a980b3841cc5a277fcd4a24a6":[5,0,0,18,8], -"include_2config_8php.html#ad58a4913937179adb13201c2ee3261ad":[5,0,0,18,5], -"include_2config_8php.html#ad6da879e4fb5b37d1e161d4e9be5c32a":[5,0,0,18,10], -"include_2config_8php.html#af02c96e6b37335774b548914ede1d22e":[5,0,0,18,3], -"include_2config_8php.html#af08b7adb63adfb2eda7c466fba0cce74":[5,0,0,18,4], -"include_2config_8php.html#afe117b70f1bba2f6348d9300b601f86e":[5,0,0,18,12], -"include_2directory_8php.html":[5,0,0,29], -"include_2directory_8php.html#aa75d3b0697ca1456aaabdb37a74aa0f0":[5,0,0,29,0], -"include_2follow_8php.html":[5,0,0,35], -"include_2follow_8php.html#ae387d4ae097c23d69f3247e7f08140c7":[5,0,0,35,0], -"include_2group_8php.html":[5,0,0,38], -"include_2group_8php.html#a0122ef312df2c5546b1a46b3e6c7b31b":[5,0,0,38,2], -"include_2group_8php.html#a048f6892bfd28852de1b76470df411de":[5,0,0,38,10], -"include_2group_8php.html#a06ec565d2b64e79044e7c1bf91a2a4ce":[5,0,0,38,1], -"include_2group_8php.html#a22a81875259c7d3d64d4848afea6b345":[5,0,0,38,0], -"include_2group_8php.html#a4118f498bbd1530c1d0136d016d197a5":[5,0,0,38,6], -"include_2group_8php.html#a540e3ef36f47d47532646be4241f6518":[5,0,0,38,7], -"include_2group_8php.html#a5bd191d9692e6c34d48c0ede10810f09":[5,0,0,38,4], -"include_2group_8php.html#a6a69bd7be032fa8ce4e49c43a42cc6e9":[5,0,0,38,8], -"include_2group_8php.html#a90e157b3e1b99c981809cb5a2abd3245":[5,0,0,38,5], -"include_2group_8php.html#ab0e422a0f31c0c64fd9084ca03d85f32":[5,0,0,38,11], -"include_2group_8php.html#abd66a5ea34a07a3422dc2dde6c7b3ecb":[5,0,0,38,3], -"include_2group_8php.html#afb802ae2ce73aae4bc36d157f7b6a92f":[5,0,0,38,9], -"include_2menu_8php.html":[5,0,0,47], -"include_2menu_8php.html#a03a5deed3908543581c074ce333e9d6a":[5,0,0,47,10], -"include_2menu_8php.html#a08a800821721781a8dfffbe31481ff98":[5,0,0,47,1], -"include_2menu_8php.html#a32701c4245e78ba9106eef52c08bf33d":[5,0,0,47,9], -"include_2menu_8php.html#a3884bda4d85d84ec99447db9403a68d8":[5,0,0,47,3], -"include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7":[5,0,0,47,8], -"include_2menu_8php.html#a68ebbf492470c930f652013656f9071d":[5,0,0,47,7], -"include_2menu_8php.html#a6a33c6a3db2a7510b16cc656edaec571":[5,0,0,47,5], -"include_2menu_8php.html#a9aa8e0052dd47c1a93f53a983bd4620a":[5,0,0,47,2], -"include_2menu_8php.html#acb66f80ca895a6ccd562b3d9ae7b41aa":[5,0,0,47,6], -"include_2menu_8php.html#ad87f51ce85172bcc3f931aa0cd96a804":[5,0,0,47,4], -"include_2menu_8php.html#add35fae5e9695031b3d46e30ac409eb8":[5,0,0,47,0], -"include_2message_8php.html":[5,0,0,48], -"include_2message_8php.html#a254a756031e4d5e94f85e2939bdb5091":[5,0,0,48,2], -"include_2message_8php.html#a5f8de9847e203329e317ac38dc646898":[5,0,0,48,1], -"include_2message_8php.html#a652973ce47a262f2d238c2fd6233d97e":[5,0,0,48,3], -"include_2message_8php.html#a751ffd6635022b2190f56154ee745752":[5,0,0,48,4], -"include_2message_8php.html#aed272d77c06a309e2836ac79e75613f1":[5,0,0,48,0], -"include_2network_8php.html":[5,0,0,50], -"include_2network_8php.html#a1ff07d9fad93b713b93da0ab77aab7f0":[5,0,0,50,5], -"include_2network_8php.html#a27a951b59d8d622c0b3e7b0673ba74c6":[5,0,0,50,10], -"include_2network_8php.html#a469b9bd700269cd07d954f1a16c5899b":[5,0,0,50,4], -"include_2network_8php.html#a4c5d50079e089168d9248427018fffd4":[5,0,0,50,9], -"include_2network_8php.html#a4cfb2c05a1c295317283d762440ce0b2":[5,0,0,50,8], -"include_2network_8php.html#a5caa264fab6d2b2344e6bd5b298b08f2":[5,0,0,50,13], -"include_2network_8php.html#a78e89557b2fbd344ad790846d761b0c7":[5,0,0,50,7], -"include_2network_8php.html#a8122356933bcd6b0a8567e8e15ae5cc5":[5,0,0,50,14], -"include_2network_8php.html#a897e7112d86eb95526cbd0bff9375f02":[5,0,0,50,12], -"include_2network_8php.html#a8d5a3afb51cc932032b5dcc159efaae0":[5,0,0,50,6], -"include_2network_8php.html#a9129fd55e7fc175b4ea9a195cccc16bc":[5,0,0,50,19], -"include_2network_8php.html#a99353baabbc3e0584b85eb79ee802cff":[5,0,0,50,16], -"include_2network_8php.html#a9e9da2aafb806c98ecdc318604e60dc6":[5,0,0,50,17], -"include_2network_8php.html#aafd06c0a75402aefb06cfb9f9740fa37":[5,0,0,50,18], -"include_2network_8php.html#ab07ce9d75eae559865ed90aad2154bd7":[5,0,0,50,2], -"include_2network_8php.html#aba38458a2ff2d92d3536488dbb119694":[5,0,0,50,0], -"include_2network_8php.html#ad4056d3ce69988f5c1a997a79f503246":[5,0,0,50,3], -"include_2network_8php.html#adf6008b38c555e98e7ed10da9ede2335":[5,0,0,50,15], -"include_2network_8php.html#ae8d9c41a11000fb8667039fc71b4f73f":[5,0,0,50,11], -"include_2network_8php.html#aee35d9ad6b3f872bfb39ba3598936aa7":[5,0,0,50,1], -"include_2notify_8php.html":[5,0,0,52], -"include_2notify_8php.html#a0e61728e487df50c72e6434f911a57d3":[5,0,0,52,0], -"include_2oembed_8php.html":[5,0,0,54], -"include_2oembed_8php.html#a000a62b97113cf95b0e9e00412168172":[5,0,0,54,5], -"include_2oembed_8php.html#a00c4c80deffd9daf8dc97b58d4c64ed0":[5,0,0,54,7], -"include_2oembed_8php.html#a03fa3b7832c98a3d0b4630afeb73d487":[5,0,0,54,1], -"include_2oembed_8php.html#a26bb4c1e330d2f94ea7b6ce2fe970cf3":[5,0,0,54,4], -"include_2oembed_8php.html#a98549b9af8140eda3eceaeedcaabc2c2":[5,0,0,54,3], -"include_2oembed_8php.html#a9e57f3e36a0a0a47e6db79544b701d9a":[5,0,0,54,6], -"include_2oembed_8php.html#ab953a6e7c11bc6498ce01ed73e2ba319":[5,0,0,54,0], -"include_2oembed_8php.html#aba89ae64b355efcb4f706553d3edb6a2":[5,0,0,54,2], -"include_2photos_8php.html":[5,0,0,59], -"include_2photos_8php.html#a6c40ef58aefef705a5adc84a40e97109":[5,0,0,59,0], -"include_2photos_8php.html#a7e7abc69872180697c5471dc69349afe":[5,0,0,59,2], -"include_2photos_8php.html#a8e8b7be99e24c2497bc2cb3339280c35":[5,0,0,59,1], -"include_2photos_8php.html#aa27b9e435dcc34e1009f56dc02c7ca51":[5,0,0,59,7], -"include_2photos_8php.html#ab0365f25b22ccea5f085fe7c49e1f4ab":[5,0,0,59,3], -"include_2photos_8php.html#ad648c0c5544fe9263409b6f6e57c6274":[5,0,0,59,6], -"include_2photos_8php.html#aedccaf18282b26899d9549c29bd9d1b9":[5,0,0,59,5], -"include_2photos_8php.html#af24c6aeed28ecc31ec39e7d9a1804979":[5,0,0,59,4], -"include_2probe_8php.html":[5,0,0,62], -"include_2probe_8php.html#a12ea7a0def2f0e07242b5c9ac684e01a":[5,0,0,62,3], -"include_2probe_8php.html#a2b4ac769508f7cfc17fee130279b9cb7":[5,0,0,62,4], -"include_2probe_8php.html#a2daa857942aceca01f956016dbbd139c":[5,0,0,62,1], -"include_2probe_8php.html#a3c02c7a23e8335a79c3c0f5331d11a85":[5,0,0,62,8], -"include_2probe_8php.html#a471851151d8cd7fbb79703e9522eeea8":[5,0,0,62,0], -"include_2probe_8php.html#a950a200372393f706851103cd3fffcba":[5,0,0,62,6], -"include_2probe_8php.html#a9b5eca1e01e52b3e65d64db0c92181e0":[5,0,0,62,2], -"include_2probe_8php.html#aa748dc73a6686c13826b1ee9d16c800d":[5,0,0,62,7], -"include_2probe_8php.html#ab19a52326b27607a0fb8191cc75ba481":[5,0,0,62,5], +"include_2apps_8php.html":[5,0,0,6], +"include_2apps_8php.html#a32fe4ed9666228fd4b67dc487cc57a83":[5,0,0,6,1], +"include_2apps_8php.html#a48289d5cc44b7638191738106ac5d030":[5,0,0,6,2], +"include_2apps_8php.html#ae64f72eb4f126e03b4eb65ed1702a3ca":[5,0,0,6,0], +"include_2attach_8php.html":[5,0,0,7], +"include_2attach_8php.html#a0d07c5b83d3d54e186f752e571847b36":[5,0,0,7,0], +"include_2attach_8php.html#a3634af95f11a023dd8e882c3c7a3600d":[5,0,0,7,5], +"include_2attach_8php.html#a5c0875eafb8c0f8a0620ff7a875a2221":[5,0,0,7,2], +"include_2attach_8php.html#a5d484de2d19a93071571d6499a50ae34":[5,0,0,7,9], +"include_2attach_8php.html#a6aa00ea010ea030110faefb75eafc1ce":[5,0,0,7,8], +"include_2attach_8php.html#a6fdd92775f31c07d2863e16e0026018a":[5,0,0,7,10], +"include_2attach_8php.html#a70bd666e080c2af5a91f5d14c297b8cd":[5,0,0,7,4], +"include_2attach_8php.html#a84a8a64c4805e1525b42d4add464833f":[5,0,0,7,7], +"include_2attach_8php.html#a887d2d44a3ef18dcb6624e7fb58dc8e3":[5,0,0,7,3], +"include_2attach_8php.html#ab6830b3ab74a5d284876141ac80f6cbc":[5,0,0,7,6], +"include_2attach_8php.html#ad991208ce939387e2f93a3bce7d09932":[5,0,0,7,1], +"include_2attach_8php.html#aeb07968990e66a88c95483ca09a7f909":[5,0,0,7,11], +"include_2bookmarks_8php.html":[5,0,0,12], +"include_2bookmarks_8php.html#a743763b0ce83af0bbc8a2f7ac16033aa":[5,0,0,12,1], +"include_2bookmarks_8php.html#aef1cb2968c41c759f2d106e1088ca323":[5,0,0,12,0], +"include_2chanman_8php.html":[5,0,0,14], +"include_2chanman_8php.html#a21ba9a5c961e866ff27aee3ee67bf99b":[5,0,0,14,0], +"include_2chat_8php.html":[5,0,0,15], +"include_2chat_8php.html#a1ee1360f7d2549c7549ae07cb5190f0f":[5,0,0,15,4], +"include_2chat_8php.html#a2ba3af6884ecdce95de69262fe599639":[5,0,0,15,2], +"include_2chat_8php.html#a2c95b545e46bfee64faa05ecf0afea91":[5,0,0,15,3], +"include_2chat_8php.html#acdc80dba4eb796c7472b21129b435422":[5,0,0,15,1], +"include_2chat_8php.html#acea6b176eb7aff44d9ba3ae24ce511d3":[5,0,0,15,0], +"include_2chat_8php.html#aedcb532a0627b8644001a2fadab4e87a":[5,0,0,15,5], +"include_2config_8php.html":[5,0,0,19], +"include_2config_8php.html#a27559f388c9b9af81c94e48d6889d1d1":[5,0,0,19,7], +"include_2config_8php.html#a549910227348003efc3c05c9105c42da":[5,0,0,19,0], +"include_2config_8php.html#a55bbed9a014c9109c767486834f3ca33":[5,0,0,19,9], +"include_2config_8php.html#a61591371cb18764138655d67dc817ab2":[5,0,0,19,11], +"include_2config_8php.html#a7ad2081c5f812ac4387fd76f3762d941":[5,0,0,19,1], +"include_2config_8php.html#a9c171def547deee16738dc58fdeb4b72":[5,0,0,19,2], +"include_2config_8php.html#aa3dc1d3de2d091ac702e675acd3a085e":[5,0,0,19,6], +"include_2config_8php.html#ac543813a980b3841cc5a277fcd4a24a6":[5,0,0,19,8], +"include_2config_8php.html#ad58a4913937179adb13201c2ee3261ad":[5,0,0,19,5], +"include_2config_8php.html#ad6da879e4fb5b37d1e161d4e9be5c32a":[5,0,0,19,10], +"include_2config_8php.html#af02c96e6b37335774b548914ede1d22e":[5,0,0,19,3], +"include_2config_8php.html#af08b7adb63adfb2eda7c466fba0cce74":[5,0,0,19,4], +"include_2config_8php.html#afe117b70f1bba2f6348d9300b601f86e":[5,0,0,19,12], +"include_2directory_8php.html":[5,0,0,30], +"include_2directory_8php.html#aa75d3b0697ca1456aaabdb37a74aa0f0":[5,0,0,30,0], +"include_2follow_8php.html":[5,0,0,36], +"include_2follow_8php.html#ae387d4ae097c23d69f3247e7f08140c7":[5,0,0,36,0], +"include_2group_8php.html":[5,0,0,39], +"include_2group_8php.html#a0122ef312df2c5546b1a46b3e6c7b31b":[5,0,0,39,2], +"include_2group_8php.html#a048f6892bfd28852de1b76470df411de":[5,0,0,39,10], +"include_2group_8php.html#a06ec565d2b64e79044e7c1bf91a2a4ce":[5,0,0,39,1], +"include_2group_8php.html#a22a81875259c7d3d64d4848afea6b345":[5,0,0,39,0], +"include_2group_8php.html#a4118f498bbd1530c1d0136d016d197a5":[5,0,0,39,6], +"include_2group_8php.html#a540e3ef36f47d47532646be4241f6518":[5,0,0,39,7], +"include_2group_8php.html#a5bd191d9692e6c34d48c0ede10810f09":[5,0,0,39,4], +"include_2group_8php.html#a6a69bd7be032fa8ce4e49c43a42cc6e9":[5,0,0,39,8], +"include_2group_8php.html#a90e157b3e1b99c981809cb5a2abd3245":[5,0,0,39,5], +"include_2group_8php.html#ab0e422a0f31c0c64fd9084ca03d85f32":[5,0,0,39,11], +"include_2group_8php.html#abd66a5ea34a07a3422dc2dde6c7b3ecb":[5,0,0,39,3], +"include_2group_8php.html#afb802ae2ce73aae4bc36d157f7b6a92f":[5,0,0,39,9], +"include_2menu_8php.html":[5,0,0,48], +"include_2menu_8php.html#a03a5deed3908543581c074ce333e9d6a":[5,0,0,48,10], +"include_2menu_8php.html#a08a800821721781a8dfffbe31481ff98":[5,0,0,48,1], +"include_2menu_8php.html#a32701c4245e78ba9106eef52c08bf33d":[5,0,0,48,9], +"include_2menu_8php.html#a3884bda4d85d84ec99447db9403a68d8":[5,0,0,48,3], +"include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7":[5,0,0,48,8], +"include_2menu_8php.html#a68ebbf492470c930f652013656f9071d":[5,0,0,48,7], +"include_2menu_8php.html#a6a33c6a3db2a7510b16cc656edaec571":[5,0,0,48,5], +"include_2menu_8php.html#a9aa8e0052dd47c1a93f53a983bd4620a":[5,0,0,48,2], +"include_2menu_8php.html#acb66f80ca895a6ccd562b3d9ae7b41aa":[5,0,0,48,6], +"include_2menu_8php.html#ad87f51ce85172bcc3f931aa0cd96a804":[5,0,0,48,4], +"include_2menu_8php.html#add35fae5e9695031b3d46e30ac409eb8":[5,0,0,48,0], +"include_2message_8php.html":[5,0,0,49], +"include_2message_8php.html#a254a756031e4d5e94f85e2939bdb5091":[5,0,0,49,2], +"include_2message_8php.html#a5f8de9847e203329e317ac38dc646898":[5,0,0,49,1], +"include_2message_8php.html#a652973ce47a262f2d238c2fd6233d97e":[5,0,0,49,3], +"include_2message_8php.html#a751ffd6635022b2190f56154ee745752":[5,0,0,49,4], +"include_2message_8php.html#aed272d77c06a309e2836ac79e75613f1":[5,0,0,49,0], +"include_2network_8php.html":[5,0,0,51], +"include_2network_8php.html#a1ff07d9fad93b713b93da0ab77aab7f0":[5,0,0,51,5], +"include_2network_8php.html#a27a951b59d8d622c0b3e7b0673ba74c6":[5,0,0,51,10], +"include_2network_8php.html#a469b9bd700269cd07d954f1a16c5899b":[5,0,0,51,4], +"include_2network_8php.html#a4c5d50079e089168d9248427018fffd4":[5,0,0,51,9], +"include_2network_8php.html#a4cfb2c05a1c295317283d762440ce0b2":[5,0,0,51,8], +"include_2network_8php.html#a5caa264fab6d2b2344e6bd5b298b08f2":[5,0,0,51,13], +"include_2network_8php.html#a78e89557b2fbd344ad790846d761b0c7":[5,0,0,51,7], +"include_2network_8php.html#a8122356933bcd6b0a8567e8e15ae5cc5":[5,0,0,51,14], +"include_2network_8php.html#a897e7112d86eb95526cbd0bff9375f02":[5,0,0,51,12], +"include_2network_8php.html#a8d5a3afb51cc932032b5dcc159efaae0":[5,0,0,51,6], +"include_2network_8php.html#a9129fd55e7fc175b4ea9a195cccc16bc":[5,0,0,51,19], +"include_2network_8php.html#a99353baabbc3e0584b85eb79ee802cff":[5,0,0,51,16], +"include_2network_8php.html#a9e9da2aafb806c98ecdc318604e60dc6":[5,0,0,51,17], +"include_2network_8php.html#aafd06c0a75402aefb06cfb9f9740fa37":[5,0,0,51,18], +"include_2network_8php.html#ab07ce9d75eae559865ed90aad2154bd7":[5,0,0,51,2], +"include_2network_8php.html#aba38458a2ff2d92d3536488dbb119694":[5,0,0,51,0], +"include_2network_8php.html#ad4056d3ce69988f5c1a997a79f503246":[5,0,0,51,3], +"include_2network_8php.html#adf6008b38c555e98e7ed10da9ede2335":[5,0,0,51,15], +"include_2network_8php.html#ae8d9c41a11000fb8667039fc71b4f73f":[5,0,0,51,11], +"include_2network_8php.html#aee35d9ad6b3f872bfb39ba3598936aa7":[5,0,0,51,1], +"include_2notify_8php.html":[5,0,0,53], +"include_2notify_8php.html#a0e61728e487df50c72e6434f911a57d3":[5,0,0,53,0], +"include_2oembed_8php.html":[5,0,0,55], +"include_2oembed_8php.html#a000a62b97113cf95b0e9e00412168172":[5,0,0,55,5], +"include_2oembed_8php.html#a00c4c80deffd9daf8dc97b58d4c64ed0":[5,0,0,55,7], +"include_2oembed_8php.html#a03fa3b7832c98a3d0b4630afeb73d487":[5,0,0,55,1], +"include_2oembed_8php.html#a26bb4c1e330d2f94ea7b6ce2fe970cf3":[5,0,0,55,4], +"include_2oembed_8php.html#a98549b9af8140eda3eceaeedcaabc2c2":[5,0,0,55,3], +"include_2oembed_8php.html#a9e57f3e36a0a0a47e6db79544b701d9a":[5,0,0,55,6], +"include_2oembed_8php.html#ab953a6e7c11bc6498ce01ed73e2ba319":[5,0,0,55,0], +"include_2oembed_8php.html#aba89ae64b355efcb4f706553d3edb6a2":[5,0,0,55,2], +"include_2photos_8php.html":[5,0,0,60], +"include_2photos_8php.html#a6c40ef58aefef705a5adc84a40e97109":[5,0,0,60,0], +"include_2photos_8php.html#a7e7abc69872180697c5471dc69349afe":[5,0,0,60,2], +"include_2photos_8php.html#a8e8b7be99e24c2497bc2cb3339280c35":[5,0,0,60,1], +"include_2photos_8php.html#aa27b9e435dcc34e1009f56dc02c7ca51":[5,0,0,60,7], +"include_2photos_8php.html#ab0365f25b22ccea5f085fe7c49e1f4ab":[5,0,0,60,3], +"include_2photos_8php.html#ad648c0c5544fe9263409b6f6e57c6274":[5,0,0,60,6], +"include_2photos_8php.html#aedccaf18282b26899d9549c29bd9d1b9":[5,0,0,60,5], +"include_2photos_8php.html#af24c6aeed28ecc31ec39e7d9a1804979":[5,0,0,60,4], +"include_2probe_8php.html":[5,0,0,63], +"include_2probe_8php.html#a12ea7a0def2f0e07242b5c9ac684e01a":[5,0,0,63,3], +"include_2probe_8php.html#a2b4ac769508f7cfc17fee130279b9cb7":[5,0,0,63,4], +"include_2probe_8php.html#a2daa857942aceca01f956016dbbd139c":[5,0,0,63,1], +"include_2probe_8php.html#a3c02c7a23e8335a79c3c0f5331d11a85":[5,0,0,63,8], +"include_2probe_8php.html#a471851151d8cd7fbb79703e9522eeea8":[5,0,0,63,0], +"include_2probe_8php.html#a950a200372393f706851103cd3fffcba":[5,0,0,63,6], +"include_2probe_8php.html#a9b5eca1e01e52b3e65d64db0c92181e0":[5,0,0,63,2], +"include_2probe_8php.html#aa748dc73a6686c13826b1ee9d16c800d":[5,0,0,63,7], +"include_2probe_8php.html#ab19a52326b27607a0fb8191cc75ba481":[5,0,0,63,5], "index.html":[], "interfaceITemplateEngine.html":[4,0,18], "interfaceITemplateEngine.html#aaa7381c8becc3d1c1790b53988a0f243":[4,0,18,1], @@ -150,81 +153,82 @@ var NAVTREEINDEX5 = "item_8php.html#a764bbb2e9a885a86fb23d0b5e4a09221":[5,0,1,45,4], "item_8php.html#a7b63a9d0cd02096e17dcf11f4afa7c10":[5,0,1,45,1], "item_8php.html#aa22feef4de326e1d7078dedd892e615c":[5,0,1,45,2], -"items_8php.html":[5,0,0,45], -"items_8php.html#a004e89d86b0f29b2c4da20108ecc4091":[5,0,0,45,60], -"items_8php.html#a016dd86c827d08db89061ea81d15c6cb":[5,0,0,45,3], -"items_8php.html#a01e3cf44e082fa9bd06dcde5bf713d70":[5,0,0,45,7], -"items_8php.html#a04a35b610acfe54434df08adec39c0c7":[5,0,0,45,28], -"items_8php.html#a0790a4550b829e85504af548623002ca":[5,0,0,45,8], -"items_8php.html#a079e099e15d88d47aeb6ca6d60da7107":[5,0,0,45,33], -"items_8php.html#a09d425596b9f8663472cf7474ad36d96":[5,0,0,45,38], -"items_8php.html#a0cf98bb619f07dd18f602683a55a5f59":[5,0,0,45,25], -"items_8php.html#a1e75047cf175aaee8dd16aa761913ff9":[5,0,0,45,5], -"items_8php.html#a251343637ff40a50cca93452cd530c26":[5,0,0,45,32], -"items_8php.html#a2541e6861a56d145c9281877cc501615":[5,0,0,45,40], -"items_8php.html#a275108c050f7eb18bcbb5018e6b81cf6":[5,0,0,45,4], -"items_8php.html#a2baa9e05f1e8aa3dd61c85803ae39bd6":[5,0,0,45,59], -"items_8php.html#a2d840c74ed23d1b6c7daee05cf89dda7":[5,0,0,45,21], -"items_8php.html#a36e656667193c83aa2cc03a024fc131b":[5,0,0,45,0], -"items_8php.html#a410f9c743877c125ca06312373346903":[5,0,0,45,47], -"items_8php.html#a49905ea75adfe8a2d110be344d18d6a6":[5,0,0,45,49], -"items_8php.html#a4e6d7639431e0dd8e9f4dba8e1ac408b":[5,0,0,45,52], -"items_8php.html#a536d0313b6ffe33b9d2490c4e25c5361":[5,0,0,45,30], -"items_8php.html#a555762e1022a4b8e3c3abd32e7812408":[5,0,0,45,15], -"items_8php.html#a566c601726697e044e75284af7fb6f17":[5,0,0,45,20], -"items_8php.html#a56b2a4abcadfac71175cd50555528cc3":[5,0,0,45,13], -"items_8php.html#a5f690fc2484abec07840b4f9dd525bd9":[5,0,0,45,18], -"items_8php.html#a649dc3e53ed794d0ead4b5d037f8d8d7":[5,0,0,45,39], -"items_8php.html#a668ece2c37f05cc3abe538eb0dabfe55":[5,0,0,45,16], -"items_8php.html#a6bee35961f2e32905f20367a9309d627":[5,0,0,45,35], -"items_8php.html#a6f7e1334af5d684a987fa6a3eb37f4cc":[5,0,0,45,37], -"items_8php.html#a756738301f2ed96be50232500677d58a":[5,0,0,45,42], -"items_8php.html#a77051724d1784074ff187e73a4db93fe":[5,0,0,45,34], -"items_8php.html#a77da7ce9a117601d49ac4a67c71b514f":[5,0,0,45,45], -"items_8php.html#a81565acf729e629e588d823308448e3c":[5,0,0,45,1], -"items_8php.html#a82955cc578f0fa600acec84475026194":[5,0,0,45,17], -"items_8php.html#a83a349062945d585edb4b3c5d763ab6e":[5,0,0,45,50], -"items_8php.html#a8794863cdf8ce1333040933d3a3f66bd":[5,0,0,45,12], -"items_8php.html#a87ac9e359591721a824ecd23bbb56296":[5,0,0,45,6], -"items_8php.html#a88c6cf7649ac836fbbed82a7a0315110":[5,0,0,45,57], -"items_8php.html#a896c1809d58f2d7a42cfe14577958ddf":[5,0,0,45,27], -"items_8php.html#a8f3c85c584ccd2b98c3ca440e45b40f8":[5,0,0,45,11], -"items_8php.html#a94ddb1d6c8fa21dd7433677e85168037":[5,0,0,45,31], -"items_8php.html#aa2d3caa2f27720762b5c729e07df40fb":[5,0,0,45,44], -"items_8php.html#aa371905f0a211b307cb3f7188c6cba04":[5,0,0,45,58], -"items_8php.html#aa579bc4445d60098b1410961ca8e96b7":[5,0,0,45,10], -"items_8php.html#aa723c0571e314a1853a24c5854b4f54f":[5,0,0,45,22], -"items_8php.html#aa9e99613d38a97b39c8cf5449699c2ee":[5,0,0,45,9], -"items_8php.html#aab9c6bae4c40799867596bdaae9829fd":[5,0,0,45,29], -"items_8php.html#aab9e0c58247427126de0699c729c3b6c":[5,0,0,45,54], -"items_8php.html#aac8c9eb4338e2a996c43914392c6cfdb":[5,0,0,45,14], -"items_8php.html#ab1bce4261bcf75ad62753b498a144d17":[5,0,0,45,55], -"items_8php.html#aba98fcbbcd7044a7e9ea34edabc14c87":[5,0,0,45,26], -"items_8php.html#abf7a1b73eb352d79acd36309b0dababd":[5,0,0,45,2], -"items_8php.html#ac1fcf621dce7370515b420a7753f4726":[5,0,0,45,46], -"items_8php.html#ac6673627d289ee4f547de0fe3b7acd0a":[5,0,0,45,19], -"items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484":[5,0,0,45,41], -"items_8php.html#ad2abb4644ff1f20fefbc80326fe01cf0":[5,0,0,45,48], -"items_8php.html#ad34827ed330898456783fb14c7b46154":[5,0,0,45,56], -"items_8php.html#ad4ee16e3ff1eaf60428c61f82ba25e6a":[5,0,0,45,51], -"items_8php.html#adf980098b6de9c3993bc3ff26a8dd6f9":[5,0,0,45,24], -"items_8php.html#ae73794179b62d39bb597ff670ab1c1e5":[5,0,0,45,36], -"items_8php.html#af6237605c60d69abdd959ddbbee3420c":[5,0,0,45,53], -"items_8php.html#af94c281016c6c912d06e064113336c5c":[5,0,0,45,43], -"items_8php.html#afbcf26dfcf8a83fff952aa858c1b7b67":[5,0,0,45,23], +"items_8php.html":[5,0,0,46], +"items_8php.html#a004e89d86b0f29b2c4da20108ecc4091":[5,0,0,46,61], +"items_8php.html#a016dd86c827d08db89061ea81d15c6cb":[5,0,0,46,3], +"items_8php.html#a01e3cf44e082fa9bd06dcde5bf713d70":[5,0,0,46,7], +"items_8php.html#a04a35b610acfe54434df08adec39c0c7":[5,0,0,46,28], +"items_8php.html#a0790a4550b829e85504af548623002ca":[5,0,0,46,8], +"items_8php.html#a079e099e15d88d47aeb6ca6d60da7107":[5,0,0,46,33], +"items_8php.html#a09d425596b9f8663472cf7474ad36d96":[5,0,0,46,38], +"items_8php.html#a0cf98bb619f07dd18f602683a55a5f59":[5,0,0,46,25], +"items_8php.html#a1e75047cf175aaee8dd16aa761913ff9":[5,0,0,46,5], +"items_8php.html#a251343637ff40a50cca93452cd530c26":[5,0,0,46,32], +"items_8php.html#a2541e6861a56d145c9281877cc501615":[5,0,0,46,40], +"items_8php.html#a275108c050f7eb18bcbb5018e6b81cf6":[5,0,0,46,4], +"items_8php.html#a2baa9e05f1e8aa3dd61c85803ae39bd6":[5,0,0,46,60], +"items_8php.html#a2d840c74ed23d1b6c7daee05cf89dda7":[5,0,0,46,21], +"items_8php.html#a36e656667193c83aa2cc03a024fc131b":[5,0,0,46,0], +"items_8php.html#a410f9c743877c125ca06312373346903":[5,0,0,46,47], +"items_8php.html#a49905ea75adfe8a2d110be344d18d6a6":[5,0,0,46,49], +"items_8php.html#a4e6d7639431e0dd8e9f4dba8e1ac408b":[5,0,0,46,52], +"items_8php.html#a536d0313b6ffe33b9d2490c4e25c5361":[5,0,0,46,30], +"items_8php.html#a555762e1022a4b8e3c3abd32e7812408":[5,0,0,46,15], +"items_8php.html#a566c601726697e044e75284af7fb6f17":[5,0,0,46,20], +"items_8php.html#a56b2a4abcadfac71175cd50555528cc3":[5,0,0,46,13], +"items_8php.html#a5f690fc2484abec07840b4f9dd525bd9":[5,0,0,46,18], +"items_8php.html#a649dc3e53ed794d0ead4b5d037f8d8d7":[5,0,0,46,39], +"items_8php.html#a668ece2c37f05cc3abe538eb0dabfe55":[5,0,0,46,16], +"items_8php.html#a6bee35961f2e32905f20367a9309d627":[5,0,0,46,35], +"items_8php.html#a6f7e1334af5d684a987fa6a3eb37f4cc":[5,0,0,46,37], +"items_8php.html#a756738301f2ed96be50232500677d58a":[5,0,0,46,42], +"items_8php.html#a77051724d1784074ff187e73a4db93fe":[5,0,0,46,34], +"items_8php.html#a77da7ce9a117601d49ac4a67c71b514f":[5,0,0,46,45], +"items_8php.html#a78a60e39f6991bd3324a24dcbf9dac5a":[5,0,0,46,53], +"items_8php.html#a81565acf729e629e588d823308448e3c":[5,0,0,46,1], +"items_8php.html#a82955cc578f0fa600acec84475026194":[5,0,0,46,17], +"items_8php.html#a83a349062945d585edb4b3c5d763ab6e":[5,0,0,46,50], +"items_8php.html#a8794863cdf8ce1333040933d3a3f66bd":[5,0,0,46,12], +"items_8php.html#a87ac9e359591721a824ecd23bbb56296":[5,0,0,46,6], +"items_8php.html#a88c6cf7649ac836fbbed82a7a0315110":[5,0,0,46,58], +"items_8php.html#a896c1809d58f2d7a42cfe14577958ddf":[5,0,0,46,27], +"items_8php.html#a8f3c85c584ccd2b98c3ca440e45b40f8":[5,0,0,46,11], +"items_8php.html#a94ddb1d6c8fa21dd7433677e85168037":[5,0,0,46,31], +"items_8php.html#aa2d3caa2f27720762b5c729e07df40fb":[5,0,0,46,44], +"items_8php.html#aa371905f0a211b307cb3f7188c6cba04":[5,0,0,46,59], +"items_8php.html#aa579bc4445d60098b1410961ca8e96b7":[5,0,0,46,10], +"items_8php.html#aa723c0571e314a1853a24c5854b4f54f":[5,0,0,46,22], +"items_8php.html#aa9e99613d38a97b39c8cf5449699c2ee":[5,0,0,46,9], +"items_8php.html#aab9c6bae4c40799867596bdaae9829fd":[5,0,0,46,29], +"items_8php.html#aab9e0c58247427126de0699c729c3b6c":[5,0,0,46,55], +"items_8php.html#aac8c9eb4338e2a996c43914392c6cfdb":[5,0,0,46,14], +"items_8php.html#ab1bce4261bcf75ad62753b498a144d17":[5,0,0,46,56], +"items_8php.html#aba98fcbbcd7044a7e9ea34edabc14c87":[5,0,0,46,26], +"items_8php.html#abf7a1b73eb352d79acd36309b0dababd":[5,0,0,46,2], +"items_8php.html#ac1fcf621dce7370515b420a7753f4726":[5,0,0,46,46], +"items_8php.html#ac6673627d289ee4f547de0fe3b7acd0a":[5,0,0,46,19], +"items_8php.html#acf0bf7c9d21ac84f32effb754f7ad484":[5,0,0,46,41], +"items_8php.html#ad2abb4644ff1f20fefbc80326fe01cf0":[5,0,0,46,48], +"items_8php.html#ad34827ed330898456783fb14c7b46154":[5,0,0,46,57], +"items_8php.html#ad4ee16e3ff1eaf60428c61f82ba25e6a":[5,0,0,46,51], +"items_8php.html#adf980098b6de9c3993bc3ff26a8dd6f9":[5,0,0,46,24], +"items_8php.html#ae73794179b62d39bb597ff670ab1c1e5":[5,0,0,46,36], +"items_8php.html#af6237605c60d69abdd959ddbbee3420c":[5,0,0,46,54], +"items_8php.html#af94c281016c6c912d06e064113336c5c":[5,0,0,46,43], +"items_8php.html#afbcf26dfcf8a83fff952aa858c1b7b67":[5,0,0,46,23], "lang_8php.html":[5,0,1,46], "lang_8php.html#a4c5c1140f51a638f224275cd618c2f37":[5,0,1,46,0], -"language_8php.html":[5,0,0,46], -"language_8php.html#a151e5b4689aef86a12642cbb7a00bfe0":[5,0,0,46,7], -"language_8php.html#a43e6ddba9df019c9ac3ab4c94c444ae7":[5,0,0,46,3], -"language_8php.html#a632da17c7ac0d2dc1a00a4706870194b":[5,0,0,46,0], -"language_8php.html#a78bd204955ec4cc3a9ac651285a1689d":[5,0,0,46,5], -"language_8php.html#a7e9904c730bb24ddcb0ff50fc96f6b05":[5,0,0,46,4], -"language_8php.html#a980dee1d8715a98ab02e36b59facf8ed":[5,0,0,46,1], -"language_8php.html#aae0c3638fb476ae1e31f8d242f5dac04":[5,0,0,46,8], -"language_8php.html#ac9142ef1d01a235c760deb0f16643f5a":[5,0,0,46,6], -"language_8php.html#ace67d6cad57da08d030ad9dc9b8c836e":[5,0,0,46,2], -"language_8php.html#ae310fb3880484ee1cc4faefe0c63c06d":[5,0,0,46,9], +"language_8php.html":[5,0,0,47], +"language_8php.html#a151e5b4689aef86a12642cbb7a00bfe0":[5,0,0,47,7], +"language_8php.html#a43e6ddba9df019c9ac3ab4c94c444ae7":[5,0,0,47,3], +"language_8php.html#a632da17c7ac0d2dc1a00a4706870194b":[5,0,0,47,0], +"language_8php.html#a78bd204955ec4cc3a9ac651285a1689d":[5,0,0,47,5], +"language_8php.html#a7e9904c730bb24ddcb0ff50fc96f6b05":[5,0,0,47,4], +"language_8php.html#a980dee1d8715a98ab02e36b59facf8ed":[5,0,0,47,1], +"language_8php.html#aae0c3638fb476ae1e31f8d242f5dac04":[5,0,0,47,8], +"language_8php.html#ac9142ef1d01a235c760deb0f16643f5a":[5,0,0,47,6], +"language_8php.html#ace67d6cad57da08d030ad9dc9b8c836e":[5,0,0,47,2], +"language_8php.html#ae310fb3880484ee1cc4faefe0c63c06d":[5,0,0,47,9], "layouts_8php.html":[5,0,1,47], "layouts_8php.html#a6e0193759ad9eef76d3df2db24237b50":[5,0,1,47,0], "like_8php.html":[5,0,1,48], @@ -245,9 +249,5 @@ var NAVTREEINDEX5 = "manage_8php.html#a2bca247b5296827638959138367db4f5":[5,0,1,54,0], "match_8php.html":[5,0,1,55], "match_8php.html#a1dd853e959b9e70c1911bb2fb5f5130d":[5,0,1,55,0], -"md_README.html":[2], -"md_config.html":[0], -"md_fresh.html":[1], -"minimal_8php.html":[5,0,3,0,3], -"minimalisticdarkness_8php.html":[5,0,3,1,0,2,4] +"md_README.html":[2] }; diff --git a/doc/html/navtreeindex6.js b/doc/html/navtreeindex6.js index b68a6cea1..836a46aee 100644 --- a/doc/html/navtreeindex6.js +++ b/doc/html/navtreeindex6.js @@ -1,5 +1,9 @@ var NAVTREEINDEX6 = { +"md_config.html":[0], +"md_fresh.html":[1], +"minimal_8php.html":[5,0,3,0,3], +"minimalisticdarkness_8php.html":[5,0,3,1,0,2,4], "minimalisticdarkness_8php.html#a04de7b747e4f0a353e0e38cf77c3404f":[5,0,3,1,0,2,4,4], "minimalisticdarkness_8php.html#a0ac3f5b52212b0af87d513273da03ead":[5,0,3,1,0,2,4,3], "minimalisticdarkness_8php.html#a5795120b4b324bc4ca83f1e6fdce7d57":[5,0,3,1,0,2,4,5], @@ -14,6 +18,8 @@ var NAVTREEINDEX6 = "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_2apps_8php.html":[5,0,1,5], +"mod_2apps_8php.html#a546016cb960d0b110ee8e489dfa6c27c":[5,0,1,5,0], "mod_2attach_8php.html":[5,0,1,6], "mod_2attach_8php.html#aa88eb5ad87aa1036a30e70339cc6c1b1":[5,0,1,6,0], "mod_2bookmarks_8php.html":[5,0,1,9], @@ -77,9 +83,9 @@ var NAVTREEINDEX6 = "namespaceupdatetpl.html":[3,0,3], "namespaceutil.html":[4,0,4], "namespaceutil.html":[3,0,4], -"nav_8php.html":[5,0,0,49], -"nav_8php.html#a43be0df73b90647ea70947ce004e231e":[5,0,0,49,0], -"nav_8php.html#ac3c920ce3ea5b0d9e0678ee37155f06a":[5,0,0,49,1], +"nav_8php.html":[5,0,0,50], +"nav_8php.html#a43be0df73b90647ea70947ce004e231e":[5,0,0,50,0], +"nav_8php.html#ac3c920ce3ea5b0d9e0678ee37155f06a":[5,0,0,50,1], "new__channel_8php.html":[5,0,1,62], "new__channel_8php.html#a180b0646957db8290482f02454ad7f23":[5,0,1,62,2], "new__channel_8php.html#a1ad7f99e4366a32942c6b954aba3a164":[5,0,1,62,1], @@ -90,20 +96,20 @@ var NAVTREEINDEX6 = "notifications_8php.html":[5,0,1,64], "notifications_8php.html#a5baffec7b2e625c9f9cefbc097550d33":[5,0,1,64,1], "notifications_8php.html#aadd0b5525bd8c283a5d8a37982bbfe62":[5,0,1,64,0], -"notifier_8php.html":[5,0,0,51], -"notifier_8php.html#a568c502f626cff95e344c0748938b85d":[5,0,0,51,0], -"notred_8php.html":[5,0,3,1,3,1,2], -"oauth_8php.html":[5,0,0,53], -"oauth_8php.html#a7a32a5990f113ac9465b03b29175cf16":[5,0,0,53,3], -"oauth_8php.html#ad343cab37aa860d2d14dc86b7f5ca0c6":[5,0,0,53,2], +"notifier_8php.html":[5,0,0,52], +"notifier_8php.html#a568c502f626cff95e344c0748938b85d":[5,0,0,52,0], +"notred_8php.html":[5,0,3,1,3,1,3], +"oauth_8php.html":[5,0,0,54], +"oauth_8php.html#a7a32a5990f113ac9465b03b29175cf16":[5,0,0,54,3], +"oauth_8php.html#ad343cab37aa860d2d14dc86b7f5ca0c6":[5,0,0,54,2], "oexchange_8php.html":[5,0,1,67], "oexchange_8php.html#a2d8b785cd7d041a4e6274f5af370cf26":[5,0,1,67,0], "oexchange_8php.html#ac8e2e469ddc3db984b0c1b44558aca59":[5,0,1,67,1], "olddefault_8php.html":[5,0,3,1,0,2,5], -"onedirsync_8php.html":[5,0,0,55], -"onedirsync_8php.html#a411aedd47c57476099647961e6a86691":[5,0,0,55,0], -"onepoll_8php.html":[5,0,0,56], -"onepoll_8php.html#a72753b2fdec79b37c7f432035c91fb6d":[5,0,0,56,0], +"onedirsync_8php.html":[5,0,0,56], +"onedirsync_8php.html#a411aedd47c57476099647961e6a86691":[5,0,0,56,0], +"onepoll_8php.html":[5,0,0,57], +"onepoll_8php.html#a72753b2fdec79b37c7f432035c91fb6d":[5,0,0,57,0], "online_8php.html":[5,0,1,68], "online_8php.html#a80e107c84eb722b0ca11d0413b96f9f7":[5,0,1,68,0], "openid_8php.html":[5,0,1,69], @@ -113,9 +119,9 @@ var NAVTREEINDEX6 = "page_8php.html":[5,0,1,71], "page_8php.html#a4d89800c0366a239191b1692c09635cf":[5,0,1,71,1], "page_8php.html#a91a5f649f68406149108bded1dc90b22":[5,0,1,71,0], -"page__widgets_8php.html":[5,0,0,57], -"page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f":[5,0,0,57,1], -"page__widgets_8php.html#a39d547771c5f12a17c097436c82f0fa2":[5,0,0,57,0], +"page__widgets_8php.html":[5,0,0,58], +"page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f":[5,0,0,58,1], +"page__widgets_8php.html#a39d547771c5f12a17c097436c82f0fa2":[5,0,0,58,0], "pages.html":[], "parse__url_8php.html":[5,0,1,72], "parse__url_8php.html#a05a9e8944380ba3cf6bbf5893dd4b74b":[5,0,1,72,2], @@ -127,12 +133,12 @@ var NAVTREEINDEX6 = "pdledit_8php.html":[5,0,1,73], "pdledit_8php.html#a59cb550f6b7a4e7d8196fbc9de601619":[5,0,1,73,0], "pdledit_8php.html#a81da3c955d0e3db55d148a31483104c7":[5,0,1,73,1], -"permissions_8php.html":[5,0,0,58], -"permissions_8php.html#a040fd3d3b8517658b1668ae0cd093972":[5,0,0,58,2], -"permissions_8php.html#a0f5bd9f7f4c8fb7ba4b2c1ed048b4dc7":[5,0,0,58,0], -"permissions_8php.html#a67ada9ed51e77885b6b0f6a28cee1835":[5,0,0,58,3], -"permissions_8php.html#aa8b7b102c653649d7a71b5a1c044d90d":[5,0,0,58,4], -"permissions_8php.html#aeca9b280f3dc3358c89976d81d690008":[5,0,0,58,1], +"permissions_8php.html":[5,0,0,59], +"permissions_8php.html#a040fd3d3b8517658b1668ae0cd093972":[5,0,0,59,2], +"permissions_8php.html#a0f5bd9f7f4c8fb7ba4b2c1ed048b4dc7":[5,0,0,59,0], +"permissions_8php.html#a67ada9ed51e77885b6b0f6a28cee1835":[5,0,0,59,3], +"permissions_8php.html#aa8b7b102c653649d7a71b5a1c044d90d":[5,0,0,59,4], +"permissions_8php.html#aeca9b280f3dc3358c89976d81d690008":[5,0,0,59,1], "photo_8php.html":[5,0,1,74], "photo_8php.html#a582779d24882b0d31ee909a91d70a448":[5,0,1,74,0], "photo__driver_8php.html":[5,0,0,1,0], @@ -160,37 +166,38 @@ var NAVTREEINDEX6 = "pine_8php.html":[5,0,3,1,0,2,8], "ping_8php.html":[5,0,1,77], "ping_8php.html#a77217b1b190b4c5d8770867b45f0c0a1":[5,0,1,77,0], -"plugin_8php.html":[5,0,0,60], -"plugin_8php.html#a030cec6793b909c439c0336ba39b1571":[5,0,0,60,21], -"plugin_8php.html#a093a9cb98f51e3643634bd8bc6ed6e76":[5,0,0,60,24], -"plugin_8php.html#a0e8c2ea50bfdbc39e17ccccaea21ddc3":[5,0,0,60,20], -"plugin_8php.html#a23c4fccf1eb5fcd63b24783ba1f05f7a":[5,0,0,60,8], -"plugin_8php.html#a326365e48ef94f0b9a0a771b8d75e813":[5,0,0,60,16], -"plugin_8php.html#a425472c5f3afc137268b2ad45652b209":[5,0,0,60,18], -"plugin_8php.html#a48047edfbef770125a5508dcc2f9282f":[5,0,0,60,7], -"plugin_8php.html#a482131013272a1d5d5c1b1469c6c55d5":[5,0,0,60,15], -"plugin_8php.html#a4a0ae7b881e7c8af99a69e3b03f898b4":[5,0,0,60,13], -"plugin_8php.html#a4fc13e528367f510fcb6d8bbfc559040":[5,0,0,60,28], -"plugin_8php.html#a516591850f4fd49fd1425cfa54089db8":[5,0,0,60,9], -"plugin_8php.html#a56f71fe5adf9586ce950523d8180443e":[5,0,0,60,26], -"plugin_8php.html#a65ab52cb1a7030d5190e247211bef2a1":[5,0,0,60,11], -"plugin_8php.html#a65fedcffbe03562ef844cabee37d34e2":[5,0,0,60,23], -"plugin_8php.html#a754d7f53b3abc557b753c057dc4e021d":[5,0,0,60,27], -"plugin_8php.html#a75f7dfed291fd7add7fc85b5c022a1f4":[5,0,0,60,4], -"plugin_8php.html#a7f05de16c0a32602853b09b99dd85e7c":[5,0,0,60,0], -"plugin_8php.html#a901657dd078e070516cf97285e0bada7":[5,0,0,60,29], -"plugin_8php.html#a9039e15aae27676af7777dcbee5a11d6":[5,0,0,60,1], -"plugin_8php.html#a90538627db68605aeb6db17a8ead6523":[5,0,0,60,25], -"plugin_8php.html#a905b54e10704b283ac64680a8abc0971":[5,0,0,60,22], -"plugin_8php.html#a9ab6caae31935f6cf781ce7872db7cdf":[5,0,0,60,12], -"plugin_8php.html#a9ca9632b7309a65b05c03a3e2f473a3d":[5,0,0,60,17], -"plugin_8php.html#acb63c27d07f6d7dffe95f98a6cef1295":[5,0,0,60,3], -"plugin_8php.html#ad48de9c0fb7f19413a2aa49250d00405":[5,0,0,60,6], -"plugin_8php.html#ad9ff8ba554576383c5911a4bce068c1f":[5,0,0,60,2], -"plugin_8php.html#aeaebe63dcf6fa2794f363ba2bc0b2c6b":[5,0,0,60,14], -"plugin_8php.html#af92789f559b89a380e49d303218aeeca":[5,0,0,60,10], -"plugin_8php.html#af9ac19004dca49adae1ac7a0d9f3b025":[5,0,0,60,19], -"plugin_8php.html#aff0178bd8d0b34a94d5efddc883edd35":[5,0,0,60,5], +"plugin_8php.html":[5,0,0,61], +"plugin_8php.html#a030cec6793b909c439c0336ba39b1571":[5,0,0,61,22], +"plugin_8php.html#a093a9cb98f51e3643634bd8bc6ed6e76":[5,0,0,61,25], +"plugin_8php.html#a0e8c2ea50bfdbc39e17ccccaea21ddc3":[5,0,0,61,21], +"plugin_8php.html#a23c4fccf1eb5fcd63b24783ba1f05f7a":[5,0,0,61,8], +"plugin_8php.html#a326365e48ef94f0b9a0a771b8d75e813":[5,0,0,61,16], +"plugin_8php.html#a425472c5f3afc137268b2ad45652b209":[5,0,0,61,19], +"plugin_8php.html#a48047edfbef770125a5508dcc2f9282f":[5,0,0,61,7], +"plugin_8php.html#a482131013272a1d5d5c1b1469c6c55d5":[5,0,0,61,15], +"plugin_8php.html#a4a0ae7b881e7c8af99a69e3b03f898b4":[5,0,0,61,13], +"plugin_8php.html#a4fc13e528367f510fcb6d8bbfc559040":[5,0,0,61,29], +"plugin_8php.html#a516591850f4fd49fd1425cfa54089db8":[5,0,0,61,9], +"plugin_8php.html#a56f71fe5adf9586ce950523d8180443e":[5,0,0,61,27], +"plugin_8php.html#a65ab52cb1a7030d5190e247211bef2a1":[5,0,0,61,11], +"plugin_8php.html#a65fedcffbe03562ef844cabee37d34e2":[5,0,0,61,24], +"plugin_8php.html#a754d7f53b3abc557b753c057dc4e021d":[5,0,0,61,28], +"plugin_8php.html#a75f7dfed291fd7add7fc85b5c022a1f4":[5,0,0,61,4], +"plugin_8php.html#a7f05de16c0a32602853b09b99dd85e7c":[5,0,0,61,0], +"plugin_8php.html#a855c4fdb38c0fc2714d537752a4347f9":[5,0,0,61,18], +"plugin_8php.html#a901657dd078e070516cf97285e0bada7":[5,0,0,61,30], +"plugin_8php.html#a9039e15aae27676af7777dcbee5a11d6":[5,0,0,61,1], +"plugin_8php.html#a90538627db68605aeb6db17a8ead6523":[5,0,0,61,26], +"plugin_8php.html#a905b54e10704b283ac64680a8abc0971":[5,0,0,61,23], +"plugin_8php.html#a9ab6caae31935f6cf781ce7872db7cdf":[5,0,0,61,12], +"plugin_8php.html#a9ca9632b7309a65b05c03a3e2f473a3d":[5,0,0,61,17], +"plugin_8php.html#acb63c27d07f6d7dffe95f98a6cef1295":[5,0,0,61,3], +"plugin_8php.html#ad48de9c0fb7f19413a2aa49250d00405":[5,0,0,61,6], +"plugin_8php.html#ad9ff8ba554576383c5911a4bce068c1f":[5,0,0,61,2], +"plugin_8php.html#aeaebe63dcf6fa2794f363ba2bc0b2c6b":[5,0,0,61,14], +"plugin_8php.html#af92789f559b89a380e49d303218aeeca":[5,0,0,61,10], +"plugin_8php.html#af9ac19004dca49adae1ac7a0d9f3b025":[5,0,0,61,20], +"plugin_8php.html#aff0178bd8d0b34a94d5efddc883edd35":[5,0,0,61,5], "po2php_8php.html":[5,0,2,7], "po2php_8php.html#a3b75e36f913198299e99559b175cd8b4":[5,0,2,7,0], "poco_8php.html":[5,0,1,78], @@ -198,8 +205,8 @@ var NAVTREEINDEX6 = "poke_8php.html":[5,0,1,79], "poke_8php.html#a9725aab97b3983e6a98bd81c4efe7d3b":[5,0,1,79,1], "poke_8php.html#ac9190563a8da9c07a16f9dcd71cf6993":[5,0,1,79,0], -"poller_8php.html":[5,0,0,61], -"poller_8php.html#a5f12df3a4738124b6c039971e87e76da":[5,0,0,61,0], +"poller_8php.html":[5,0,0,62], +"poller_8php.html#a5f12df3a4738124b6c039971e87e76da":[5,0,0,62,0], "post_8php.html":[5,0,1,80], "post_8php.html#af4b48181ce773ef0cdfc972441445c34":[5,0,1,80,0], "post_8php.html#af59e6a1dc22d19d9257b01cd7ccedb75":[5,0,1,80,1], @@ -237,17 +244,10 @@ var NAVTREEINDEX6 = "profile__photo_8php.html#a140631c56438fbfacb61a1eb43067d02":[5,0,1,84,0], "profile__photo_8php.html#a4b80234074bd603221aa5364f330e479":[5,0,1,84,1], "profile__photo_8php.html#a561103564199da56e58061a4196eb102":[5,0,1,84,2], -"profile__selectors_8php.html":[5,0,0,63], -"profile__selectors_8php.html#a3b50b3ea4ea4bdbebebfffc5d1b157c7":[5,0,0,63,2], -"profile__selectors_8php.html#a7473dd095987e1cdcc79d4f0bb5e6798":[5,0,0,63,1], -"profile__selectors_8php.html#ae2b2c087e6530c61c0b256fd26d52355":[5,0,0,63,0], +"profile__selectors_8php.html":[5,0,0,64], +"profile__selectors_8php.html#a3b50b3ea4ea4bdbebebfffc5d1b157c7":[5,0,0,64,2], +"profile__selectors_8php.html#a7473dd095987e1cdcc79d4f0bb5e6798":[5,0,0,64,1], +"profile__selectors_8php.html#ae2b2c087e6530c61c0b256fd26d52355":[5,0,0,64,0], "profiles_8php.html":[5,0,1,85], -"profiles_8php.html#a36f71405ad536228f8bb84a551b23f7e":[5,0,1,85,1], -"profiles_8php.html#a46975783b8b8d70402d51487eb1f0b00":[5,0,1,85,0], -"profiles_8php.html#ab0362c81b1d3b0b12a772b9fac446e04":[5,0,1,85,2], -"profperm_8php.html":[5,0,1,86], -"profperm_8php.html#a17fb64ec05edee1dc94d95438807d6c6":[5,0,1,86,1], -"profperm_8php.html#aef015787de2373d9fb3fe3f814fb5023":[5,0,1,86,0], -"pubsites_8php.html":[5,0,1,87], -"pubsites_8php.html#af614e279aab54065345bda6b03eafdf0":[5,0,1,87,0] +"profiles_8php.html#a36f71405ad536228f8bb84a551b23f7e":[5,0,1,85,1] }; diff --git a/doc/html/navtreeindex7.js b/doc/html/navtreeindex7.js index f889ccb00..3711d858a 100644 --- a/doc/html/navtreeindex7.js +++ b/doc/html/navtreeindex7.js @@ -1,10 +1,17 @@ var NAVTREEINDEX7 = { -"queue_8php.html":[5,0,0,65], -"queue_8php.html#af8c93de86d866c3200174c8450a0f341":[5,0,0,65,0], -"queue__fn_8php.html":[5,0,0,66], -"queue__fn_8php.html#a4c2876181f75a4a61e85b7f00dfdbba1":[5,0,0,66,1], -"queue__fn_8php.html#a8fe71e981399bbf5d000a6ca42f57b24":[5,0,0,66,0], +"profiles_8php.html#a46975783b8b8d70402d51487eb1f0b00":[5,0,1,85,0], +"profiles_8php.html#ab0362c81b1d3b0b12a772b9fac446e04":[5,0,1,85,2], +"profperm_8php.html":[5,0,1,86], +"profperm_8php.html#a17fb64ec05edee1dc94d95438807d6c6":[5,0,1,86,1], +"profperm_8php.html#aef015787de2373d9fb3fe3f814fb5023":[5,0,1,86,0], +"pubsites_8php.html":[5,0,1,87], +"pubsites_8php.html#af614e279aab54065345bda6b03eafdf0":[5,0,1,87,0], +"queue_8php.html":[5,0,0,66], +"queue_8php.html#af8c93de86d866c3200174c8450a0f341":[5,0,0,66,0], +"queue__fn_8php.html":[5,0,0,67], +"queue__fn_8php.html#a4c2876181f75a4a61e85b7f00dfdbba1":[5,0,0,67,1], +"queue__fn_8php.html#a8fe71e981399bbf5d000a6ca42f57b24":[5,0,0,67,0], "randprof_8php.html":[5,0,1,88], "randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090":[5,0,1,88,0], "rbmark_8php.html":[5,0,1,89], @@ -16,10 +23,10 @@ var NAVTREEINDEX7 = "redbasic_2php_2theme_8php.html":[5,0,3,1,3,0,2], "redbasic_2php_2theme_8php.html#af6eb813e9fc7e2d76ac1b82bc5c0ed9b":[5,0,3,1,3,0,2,0], "redbasic_8php.html":[5,0,3,1,0,2,9], -"reddav_8php.html":[5,0,0,67], -"reddav_8php.html#a5df0d09893f2e65dc5cf6bbab6cfb266":[5,0,0,67,5], -"reddav_8php.html#a9f531641dfb4e43cd88ac1a9ae7e2088":[5,0,0,67,6], -"reddav_8php.html#ae92ea0df1993f6a7bcd1b6efa6c1fb66":[5,0,0,67,4], +"reddav_8php.html":[5,0,0,68], +"reddav_8php.html#a5df0d09893f2e65dc5cf6bbab6cfb266":[5,0,0,68,5], +"reddav_8php.html#a9f531641dfb4e43cd88ac1a9ae7e2088":[5,0,0,68,6], +"reddav_8php.html#ae92ea0df1993f6a7bcd1b6efa6c1fb66":[5,0,0,68,4], "register_8php.html":[5,0,1,90], "register_8php.html#a0e91f57f111407ea8d3223a05022bb2a":[5,0,1,90,0], "register_8php.html#a51731dcc1917c58a790eb1c0f6132271":[5,0,1,90,2], @@ -42,30 +49,30 @@ var NAVTREEINDEX7 = "search_8php.html#acf19fd30f07f495781ca0d7a0a08b435":[5,0,1,96,1], "search__ac_8php.html":[5,0,1,97], "search__ac_8php.html#a14f90c83a3f2be095e9e2992a8d66138":[5,0,1,97,0], -"security_8php.html":[5,0,0,68], -"security_8php.html#a15e0f8f511cc06192db63387f97238b3":[5,0,0,68,11], -"security_8php.html#a20f8b9851f23ee8894b8925584ef6821":[5,0,0,68,2], -"security_8php.html#a444ac867dfa8c37cf0a7a226412bee28":[5,0,0,68,4], -"security_8php.html#a77ba0d1889a39cf32434c5ce96fe1433":[5,0,0,68,5], -"security_8php.html#a8d23d2597aae380a3341872fe9513380":[5,0,0,68,1], -"security_8php.html#a9355488460ab11d6058656ff919e5cf9":[5,0,0,68,7], -"security_8php.html#a9c6180e82150a5a9af91a1255d096b5c":[5,0,0,68,3], -"security_8php.html#ab3bdd30dc60d9ee72370b866aa4a2d01":[5,0,0,68,9], -"security_8php.html#acd06ef411116115c2f0a92633700db8a":[5,0,0,68,6], -"security_8php.html#adc7bf51e3b8d67bd80e9348f9ab03733":[5,0,0,68,0], -"security_8php.html#ae92c5c1a1cbbc49ddbb8b3265d2db809":[5,0,0,68,10], -"security_8php.html#afa683bc025a1d2fe9065e2f6cd71a22f":[5,0,0,68,8], -"session_8php.html":[5,0,0,69], -"session_8php.html#a26fa1042356d555023cbf15ddd4f8507":[5,0,0,69,4], -"session_8php.html#a4c0ead624f95483e386bc80abf570a8f":[5,0,0,69,0], -"session_8php.html#a5e1c616e02b863d5450317d101366bb7":[5,0,0,69,1], -"session_8php.html#a62e4a6cb26b4bb1b8ddd8277b26090eb":[5,0,0,69,8], -"session_8php.html#a7f0f50576360d9ba52d29364e0b83a8e":[5,0,0,69,5], -"session_8php.html#a96b09cc763572f45280786a7b33feb7e":[5,0,0,69,7], -"session_8php.html#ac4461c1984543d3553e73dba2771568f":[5,0,0,69,6], -"session_8php.html#ac95373f4966862a028033dd2f94d4da1":[5,0,0,69,3], -"session_8php.html#af0100a2642a5268594bbd5742a03d885":[5,0,0,69,9], -"session_8php.html#af230b86bfff7db66c3bdd7e0bbc24052":[5,0,0,69,2], +"security_8php.html":[5,0,0,69], +"security_8php.html#a15e0f8f511cc06192db63387f97238b3":[5,0,0,69,11], +"security_8php.html#a20f8b9851f23ee8894b8925584ef6821":[5,0,0,69,2], +"security_8php.html#a444ac867dfa8c37cf0a7a226412bee28":[5,0,0,69,4], +"security_8php.html#a77ba0d1889a39cf32434c5ce96fe1433":[5,0,0,69,5], +"security_8php.html#a8d23d2597aae380a3341872fe9513380":[5,0,0,69,1], +"security_8php.html#a9355488460ab11d6058656ff919e5cf9":[5,0,0,69,7], +"security_8php.html#a9c6180e82150a5a9af91a1255d096b5c":[5,0,0,69,3], +"security_8php.html#ab3bdd30dc60d9ee72370b866aa4a2d01":[5,0,0,69,9], +"security_8php.html#acd06ef411116115c2f0a92633700db8a":[5,0,0,69,6], +"security_8php.html#adc7bf51e3b8d67bd80e9348f9ab03733":[5,0,0,69,0], +"security_8php.html#ae92c5c1a1cbbc49ddbb8b3265d2db809":[5,0,0,69,10], +"security_8php.html#afa683bc025a1d2fe9065e2f6cd71a22f":[5,0,0,69,8], +"session_8php.html":[5,0,0,70], +"session_8php.html#a26fa1042356d555023cbf15ddd4f8507":[5,0,0,70,4], +"session_8php.html#a4c0ead624f95483e386bc80abf570a8f":[5,0,0,70,0], +"session_8php.html#a5e1c616e02b863d5450317d101366bb7":[5,0,0,70,1], +"session_8php.html#a62e4a6cb26b4bb1b8ddd8277b26090eb":[5,0,0,70,8], +"session_8php.html#a7f0f50576360d9ba52d29364e0b83a8e":[5,0,0,70,5], +"session_8php.html#a96b09cc763572f45280786a7b33feb7e":[5,0,0,70,7], +"session_8php.html#ac4461c1984543d3553e73dba2771568f":[5,0,0,70,6], +"session_8php.html#ac95373f4966862a028033dd2f94d4da1":[5,0,0,70,3], +"session_8php.html#af0100a2642a5268594bbd5742a03d885":[5,0,0,70,9], +"session_8php.html#af230b86bfff7db66c3bdd7e0bbc24052":[5,0,0,70,2], "settings_8php.html":[5,0,1,98], "settings_8php.html#a39abc76ff5459c57e3b957664f273f18":[5,0,1,98,0], "settings_8php.html#a3a4cde287482fced008583f54ba2a722":[5,0,1,98,1], @@ -97,22 +104,22 @@ var NAVTREEINDEX7 = "sitelist_8php.html#a665a59bf60f780b40f32c909f4a473b1":[5,0,1,102,0], "smilies_8php.html":[5,0,1,103], "smilies_8php.html#ab43b1e9f33a700a830aff14c7b3a617f":[5,0,1,103,0], -"socgraph_8php.html":[5,0,0,70], -"socgraph_8php.html#a16ac51c505d72987ed8d6d6aed0e8586":[5,0,0,70,0], -"socgraph_8php.html#a5ef8bef37161df53718a21e93d02fbd6":[5,0,0,70,6], -"socgraph_8php.html#a76e6fca3d2bc842dcd9e710bb87c8329":[5,0,0,70,7], -"socgraph_8php.html#a790690bb1a1d02483fe31632a160144d":[5,0,0,70,8], -"socgraph_8php.html#a7d34cd58025bcd9e575282f44db75918":[5,0,0,70,1], -"socgraph_8php.html#a887d576f21fd708132a06d0f72f90f84":[5,0,0,70,4], -"socgraph_8php.html#ac343a846241d36cdf046b08f3396cfe9":[5,0,0,70,2], -"socgraph_8php.html#af175807406d94407a5e11742a3287746":[5,0,0,70,5], -"socgraph_8php.html#af29d056beec10b4e38e5209c92452894":[5,0,0,70,3], +"socgraph_8php.html":[5,0,0,71], +"socgraph_8php.html#a16ac51c505d72987ed8d6d6aed0e8586":[5,0,0,71,0], +"socgraph_8php.html#a5ef8bef37161df53718a21e93d02fbd6":[5,0,0,71,6], +"socgraph_8php.html#a76e6fca3d2bc842dcd9e710bb87c8329":[5,0,0,71,7], +"socgraph_8php.html#a790690bb1a1d02483fe31632a160144d":[5,0,0,71,8], +"socgraph_8php.html#a7d34cd58025bcd9e575282f44db75918":[5,0,0,71,1], +"socgraph_8php.html#a887d576f21fd708132a06d0f72f90f84":[5,0,0,71,4], +"socgraph_8php.html#ac343a846241d36cdf046b08f3396cfe9":[5,0,0,71,2], +"socgraph_8php.html#af175807406d94407a5e11742a3287746":[5,0,0,71,5], +"socgraph_8php.html#af29d056beec10b4e38e5209c92452894":[5,0,0,71,3], "sources_8php.html":[5,0,1,104], "sources_8php.html#ac442ccef080ab95772d8929fcafcb4b7":[5,0,1,104,0], "sources_8php.html#ac73298ff162ce7b2de8dcaf3d3305b1e":[5,0,1,104,1], -"spam_8php.html":[5,0,0,71], -"spam_8php.html#a05861201147b9a538d006f0269255cf9":[5,0,0,71,1], -"spam_8php.html#ab8fd81a82c9622cbebb8ceab6b310ca6":[5,0,0,71,0], +"spam_8php.html":[5,0,0,72], +"spam_8php.html#a05861201147b9a538d006f0269255cf9":[5,0,0,72,1], +"spam_8php.html#ab8fd81a82c9622cbebb8ceab6b310ca6":[5,0,0,72,0], "sslify_8php.html":[5,0,1,105], "sslify_8php.html#a75b11e54a3d1fc83e7d4c0e8b4dab316":[5,0,1,105,0], "starred_8php.html":[5,0,1,106], @@ -122,132 +129,125 @@ var NAVTREEINDEX7 = "suggest_8php.html":[5,0,1,108], "suggest_8php.html#a58748a8235d4523f8333847f3e42dd91":[5,0,1,108,0], "suggest_8php.html#a696acf1dd8070e479adcc80c63c6718c":[5,0,1,108,1], -"system__unavailable_8php.html":[5,0,0,72], -"system__unavailable_8php.html#a73751a6bcc17ad3ca503496e2fb020fa":[5,0,0,72,0], +"system__unavailable_8php.html":[5,0,0,73], +"system__unavailable_8php.html#a73751a6bcc17ad3ca503496e2fb020fa":[5,0,0,73,0], "tagger_8php.html":[5,0,1,109], "tagger_8php.html#a0e4a3eb177d1684553c547503d67161c":[5,0,1,109,0], "tagrm_8php.html":[5,0,1,110], "tagrm_8php.html#a1702f40aa53a2fa93deade1f609abe78":[5,0,1,110,1], "tagrm_8php.html#adfd4ea5b4d7fc6d9c9e042af5cd7d49a":[5,0,1,110,0], -"taxonomy_8php.html":[5,0,0,73], -"taxonomy_8php.html#a03f55ee46c5f496e42f3d29db8d09cce":[5,0,0,73,9], -"taxonomy_8php.html#a088371f4bc19155b2291508f5cd63332":[5,0,0,73,0], -"taxonomy_8php.html#a08df5164926d2b31b8e9fcfe919de2b6":[5,0,0,73,2], -"taxonomy_8php.html#a0fb8cf0ac7bcbc8b27d856fe9bf69cd1":[5,0,0,73,6], -"taxonomy_8php.html#a163b5131f388080b0fc82398d3a32fe1":[5,0,0,73,4], -"taxonomy_8php.html#a3299482ac20e9d79453048dd52881d37":[5,0,0,73,3], -"taxonomy_8php.html#a4ba1339b2a7054971178ce194e4440fd":[5,0,0,73,10], -"taxonomy_8php.html#a599ee71dd3194c8127b00dabec77abc1":[5,0,0,73,1], -"taxonomy_8php.html#a7747fa859ac56fbffd4f9782d85505de":[5,0,0,73,7], -"taxonomy_8php.html#a7a913d19c77610da689be48fbbf6734c":[5,0,0,73,14], -"taxonomy_8php.html#aaeded36bcc983b35d9205fe5b6c18c43":[5,0,0,73,13], -"taxonomy_8php.html#aaf90ba8b839d6459065f39a4f1109b8a":[5,0,0,73,11], -"taxonomy_8php.html#ac21d1dff16d569e7d110167aea4e63c2":[5,0,0,73,12], -"taxonomy_8php.html#adfead45e3b8a3dfb2b4a4b9281d0dbe1":[5,0,0,73,5], -"taxonomy_8php.html#af387463d42ffdf7d2ab3d5b22e40a0c7":[5,0,0,73,8], -"template__processor_8php.html":[5,0,0,74], -"template__processor_8php.html#a797745996c7839a93b2ab1af456631ab":[5,0,0,74,3], -"template__processor_8php.html#ab2bcd8738f20f293636a6ae8e1099db5":[5,0,0,74,1], -"template__processor_8php.html#ac635bb19a5f6eadd6b0cddefdd537c1e":[5,0,0,74,2], -"text_8php.html":[5,0,0,75], -"text_8php.html#a0271381208acfa2d4cff36da281e3e23":[5,0,0,75,39], -"text_8php.html#a030fa5ecc64168af0c4f44897a9bce63":[5,0,0,75,45], -"text_8php.html#a070384ec000fd65043fce11d5392d241":[5,0,0,75,6], -"text_8php.html#a0a1f7c0e97f9ecbebf3e5834582b014c":[5,0,0,75,16], -"text_8php.html#a0c65597bb4aed3a039eb795ff540e5e3":[5,0,0,75,11], -"text_8php.html#a10dde167249ed5abf190a7a0986878ea":[5,0,0,75,70], -"text_8php.html#a11255c8c4e5245b6c24f97684826aa54":[5,0,0,75,44], -"text_8php.html#a13286f8a95d2de6b102966ecc270c8d6":[5,0,0,75,5], -"text_8php.html#a1360fed7f918d859daaca1c9f384f9af":[5,0,0,75,81], -"text_8php.html#a138a3a611fa7f4f3630674145fc826bf":[5,0,0,75,32], -"text_8php.html#a1557112a774ec00fa06ed6b6f6495506":[5,0,0,75,35], -"text_8php.html#a1633412120f52bdce5f43e0a127d9293":[5,0,0,75,49], -"text_8php.html#a1af49756c8c71902a66c7e329c462beb":[5,0,0,75,52], -"text_8php.html#a1e510c53624933ce9b7d6715784894db":[5,0,0,75,46], -"text_8php.html#a24d441d30df4b8e6bf6780bf62a5e2c6":[5,0,0,75,47], -"text_8php.html#a2690ad67bb6fb97ef69de3e8d23f2728":[5,0,0,75,42], -"text_8php.html#a273156a6f5cddc6652ad656821cd5805":[5,0,0,75,71], -"text_8php.html#a27cd2c1b3bcb49a0cfb7249e851725ca":[5,0,0,75,4], -"text_8php.html#a29988052f3944111def3b6aaf2c7a8f6":[5,0,0,75,89], -"text_8php.html#a29d6b804e368d3ef359ee295e96ed4c7":[5,0,0,75,78], -"text_8php.html#a2a902f5fdba8646333e997898ac45ea3":[5,0,0,75,48], -"text_8php.html#a2e8d6c402603be3a1256a16605e09c2a":[5,0,0,75,10], -"text_8php.html#a2f2585385530cb935a6325c809d84a4d":[5,0,0,75,75], -"text_8php.html#a2ffd79c60cc87cec24ef76447b905187":[5,0,0,75,91], -"text_8php.html#a3054189cff173977f4216c9a3dd29e1b":[5,0,0,75,23], -"text_8php.html#a324c58f37f6acdf9cd1922aa76077d9f":[5,0,0,75,86], -"text_8php.html#a33bdb5d4bfff2ede7caf61a98ac0a2e9":[5,0,0,75,73], -"text_8php.html#a36a2e5d418ee81140f25c4233cfecd1f":[5,0,0,75,84], -"text_8php.html#a3972701c5c83624ec4e2d06242f614e7":[5,0,0,75,30], -"text_8php.html#a3999a0b3e22e440f280ee791ce34d384":[5,0,0,75,41], -"text_8php.html#a3a0c432a484c17d7720b8ba2d6bfdd59":[5,0,0,75,25], -"text_8php.html#a3d225b253bb9e0f2498c11647d927b0b":[5,0,0,75,72], -"text_8php.html#a3d2793d66db3345fd290b71e2eadf98e":[5,0,0,75,7], -"text_8php.html#a405afe814a23f3bd94d826101aa168ab":[5,0,0,75,87], -"text_8php.html#a436a8de00c942364c2d0fcfc7e1f4b5a":[5,0,0,75,33], -"text_8php.html#a4659fbc4e54ddc700c3aa66b9092c623":[5,0,0,75,31], -"text_8php.html#a47c1e4a5f3f53027daacd8a9db24f285":[5,0,0,75,43], -"text_8php.html#a4841df5beabdd1bdd1ed56781a915d61":[5,0,0,75,61], -"text_8php.html#a4bbb7d00c05cd20b4e043424f322388f":[5,0,0,75,50], -"text_8php.html#a4e4d42b0a805148d9f9a92bcac89bf91":[5,0,0,75,24], -"text_8php.html#a4e7698aca48982512594b274543c3b9b":[5,0,0,75,60], -"text_8php.html#a543447c5ed766535221e2d9636b379ee":[5,0,0,75,83], -"text_8php.html#a55ab893be57feda59c2a7ba1e58ff2d0":[5,0,0,75,9], -"text_8php.html#a63fb21c0bed2fc72eef2c1471ac42b63":[5,0,0,75,14], -"text_8php.html#a6a3d80a6c6fb234fd0bac44203b828eb":[5,0,0,75,82], -"text_8php.html#a71f6952243d3fe1c5a8154f78027e29c":[5,0,0,75,40], -"text_8php.html#a736db13a966b8abaf8c9198faa35911a":[5,0,0,75,27], -"text_8php.html#a740ad03e00459039a2c0992246c4e727":[5,0,0,75,79], -"text_8php.html#a75c243e06341ec16bd5a44b9b1cacd85":[5,0,0,75,1], -"text_8php.html#a75c326298519ed14ebe762194c8a3f2a":[5,0,0,75,34], -"text_8php.html#a76d1b3435c067978d7b484c45f56472b":[5,0,0,75,26], -"text_8php.html#a8264348059abd1d4d5bb521323d3b19a":[5,0,0,75,80], -"text_8php.html#a85e3a4851c16674834010d8419a5d7ca":[5,0,0,75,8], -"text_8php.html#a876e94892867019935b348b573299352":[5,0,0,75,68], -"text_8php.html#a8796f6a9ca592ecdce7b3afc3462aa13":[5,0,0,75,74], -"text_8php.html#a87a3cefc603302c78982f1d8e1245265":[5,0,0,75,15], -"text_8php.html#a89929fa6f70a8ba54d5273fcf622b665":[5,0,0,75,20], -"text_8php.html#a8b0a799341b1fc4cba2c3ede3e3fc9b6":[5,0,0,75,59], -"text_8php.html#a8d8c4a11e53461caca21181ebd72daca":[5,0,0,75,19], -"text_8php.html#a95fd2f8f23a1948414a03ebc963bac57":[5,0,0,75,3], -"text_8php.html#a98fd99dee3da8cf4c148dc04efe782ee":[5,0,0,75,54], -"text_8php.html#a9c6ce4e12a4ac883c5e3f36fed6e1e09":[5,0,0,75,65], -"text_8php.html#a9d6a5ee1290de7a8b483fe78585daade":[5,0,0,75,63], -"text_8php.html#a9fbeae13c9abd6e27cb4d8d1817f969c":[5,0,0,75,67], -"text_8php.html#aa46f941155c2ac1155f2f17ffb0adb66":[5,0,0,75,29], -"text_8php.html#aa5148a0dfea2a1ca64c3d52f10aa2d64":[5,0,0,75,17], -"text_8php.html#aa5528f41533927e1bd2da3618a74a6d7":[5,0,0,75,55], -"text_8php.html#aa6b0aa8afbeab50d1a3058ad21acb74e":[5,0,0,75,36], -"text_8php.html#aac0969ae09853205992ba06ab9f9f61a":[5,0,0,75,28], -"text_8php.html#aad557c054cf2ed915633701018fc7e3f":[5,0,0,75,90], -"text_8php.html#aae91e4d2a2c6f7a9daccd2c186ae3447":[5,0,0,75,69], -"text_8php.html#aaed4413ed8918838b517e3b2fafaea0d":[5,0,0,75,85], -"text_8php.html#ab4a4c3d4700bc219bb84f33b499314f4":[5,0,0,75,88], -"text_8php.html#ac19d2b33a58372a357a43d51eed19162":[5,0,0,75,56], -"text_8php.html#ac1dbf2e37e8069bea2c0f557fdbf203e":[5,0,0,75,37], -"text_8php.html#ac2ff88e800f74b22e9cc091c10809c54":[5,0,0,75,76], -"text_8php.html#ace3c98538c63e09b70a363210b414112":[5,0,0,75,21], -"text_8php.html#acedb584f65114a33f389efb796172a91":[5,0,0,75,2], -"text_8php.html#ad6432621d0fafcbcf3d3b9b49bef7784":[5,0,0,75,13], -"text_8php.html#ad855a32bee22c3f3b9734e3a334b96f2":[5,0,0,75,64], -"text_8php.html#adba17ec946f4285285dc100f7860bf51":[5,0,0,75,51], -"text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8":[5,0,0,75,38], -"text_8php.html#ae2126da85966da0e79c6bcbac63b0bda":[5,0,0,75,66], -"text_8php.html#ae4282a39492caa23ccbc2ce98e54f110":[5,0,0,75,18], -"text_8php.html#ae4df74296fbe55051ed3c035e55205e5":[5,0,0,75,57], -"text_8php.html#af8a3e3a66a7b862d4510f145d2e13186":[5,0,0,75,0], -"text_8php.html#af9c9ac3f74c82dc60acfa404d0e9dc53":[5,0,0,75,77], -"text_8php.html#afc998d2796a6b2a08e96f7cc061e7221":[5,0,0,75,62], -"text_8php.html#afdc69fe3f6c09e35e46304dcea63ae28":[5,0,0,75,22], -"text_8php.html#afe18627c4983ee5f7c940a0992818cd5":[5,0,0,75,12], -"text_8php.html#afe54312607d92f7ce9593f5760831f80":[5,0,0,75,58], -"text_8php.html#afe9f178d264d44a94dc1292aaf0fd585":[5,0,0,75,53], -"theme_2apw_2php_2theme__init_8php.html":[5,0,3,1,0,1,4], -"theme_2apw_2php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864":[5,0,3,1,0,1,4,0], -"theme_2blogga_2php_2default_8php.html":[5,0,3,1,1,0,1], -"theme_2blogga_2php_2default_8php.html#a1230ab83d4ec9785d8f3a966f33dc5f3":[5,0,3,1,1,0,1,2], -"theme_2blogga_2php_2default_8php.html#a720581ae288aa09511670563e4205a4a":[5,0,3,1,1,0,1,0], -"theme_2blogga_2php_2default_8php.html#ac7062908d1eb80c0735270f7997c4527":[5,0,3,1,1,0,1,1], -"theme_2blogga_2php_2theme__init_8php.html":[5,0,3,1,1,0,3], -"theme_2blogga_2view_2theme_2blog_2default_8php.html":[5,0,3,1,1,1,0,0,1] +"taxonomy_8php.html":[5,0,0,74], +"taxonomy_8php.html#a03f55ee46c5f496e42f3d29db8d09cce":[5,0,0,74,9], +"taxonomy_8php.html#a088371f4bc19155b2291508f5cd63332":[5,0,0,74,0], +"taxonomy_8php.html#a08df5164926d2b31b8e9fcfe919de2b6":[5,0,0,74,2], +"taxonomy_8php.html#a0fb8cf0ac7bcbc8b27d856fe9bf69cd1":[5,0,0,74,6], +"taxonomy_8php.html#a163b5131f388080b0fc82398d3a32fe1":[5,0,0,74,4], +"taxonomy_8php.html#a3299482ac20e9d79453048dd52881d37":[5,0,0,74,3], +"taxonomy_8php.html#a4ba1339b2a7054971178ce194e4440fd":[5,0,0,74,10], +"taxonomy_8php.html#a599ee71dd3194c8127b00dabec77abc1":[5,0,0,74,1], +"taxonomy_8php.html#a7747fa859ac56fbffd4f9782d85505de":[5,0,0,74,7], +"taxonomy_8php.html#a7a913d19c77610da689be48fbbf6734c":[5,0,0,74,14], +"taxonomy_8php.html#aaeded36bcc983b35d9205fe5b6c18c43":[5,0,0,74,13], +"taxonomy_8php.html#aaf90ba8b839d6459065f39a4f1109b8a":[5,0,0,74,11], +"taxonomy_8php.html#ac21d1dff16d569e7d110167aea4e63c2":[5,0,0,74,12], +"taxonomy_8php.html#adfead45e3b8a3dfb2b4a4b9281d0dbe1":[5,0,0,74,5], +"taxonomy_8php.html#af387463d42ffdf7d2ab3d5b22e40a0c7":[5,0,0,74,8], +"template__processor_8php.html":[5,0,0,75], +"template__processor_8php.html#a797745996c7839a93b2ab1af456631ab":[5,0,0,75,3], +"template__processor_8php.html#ab2bcd8738f20f293636a6ae8e1099db5":[5,0,0,75,1], +"template__processor_8php.html#ac635bb19a5f6eadd6b0cddefdd537c1e":[5,0,0,75,2], +"text_8php.html":[5,0,0,76], +"text_8php.html#a0271381208acfa2d4cff36da281e3e23":[5,0,0,76,39], +"text_8php.html#a030fa5ecc64168af0c4f44897a9bce63":[5,0,0,76,45], +"text_8php.html#a070384ec000fd65043fce11d5392d241":[5,0,0,76,6], +"text_8php.html#a0a1f7c0e97f9ecbebf3e5834582b014c":[5,0,0,76,16], +"text_8php.html#a0c65597bb4aed3a039eb795ff540e5e3":[5,0,0,76,11], +"text_8php.html#a10dde167249ed5abf190a7a0986878ea":[5,0,0,76,70], +"text_8php.html#a11255c8c4e5245b6c24f97684826aa54":[5,0,0,76,44], +"text_8php.html#a13286f8a95d2de6b102966ecc270c8d6":[5,0,0,76,5], +"text_8php.html#a1360fed7f918d859daaca1c9f384f9af":[5,0,0,76,81], +"text_8php.html#a138a3a611fa7f4f3630674145fc826bf":[5,0,0,76,32], +"text_8php.html#a1557112a774ec00fa06ed6b6f6495506":[5,0,0,76,35], +"text_8php.html#a1633412120f52bdce5f43e0a127d9293":[5,0,0,76,49], +"text_8php.html#a1af49756c8c71902a66c7e329c462beb":[5,0,0,76,52], +"text_8php.html#a1e510c53624933ce9b7d6715784894db":[5,0,0,76,46], +"text_8php.html#a24d441d30df4b8e6bf6780bf62a5e2c6":[5,0,0,76,47], +"text_8php.html#a2690ad67bb6fb97ef69de3e8d23f2728":[5,0,0,76,42], +"text_8php.html#a273156a6f5cddc6652ad656821cd5805":[5,0,0,76,71], +"text_8php.html#a27cd2c1b3bcb49a0cfb7249e851725ca":[5,0,0,76,4], +"text_8php.html#a29988052f3944111def3b6aaf2c7a8f6":[5,0,0,76,89], +"text_8php.html#a29d6b804e368d3ef359ee295e96ed4c7":[5,0,0,76,78], +"text_8php.html#a2a902f5fdba8646333e997898ac45ea3":[5,0,0,76,48], +"text_8php.html#a2e8d6c402603be3a1256a16605e09c2a":[5,0,0,76,10], +"text_8php.html#a2f2585385530cb935a6325c809d84a4d":[5,0,0,76,75], +"text_8php.html#a2ffd79c60cc87cec24ef76447b905187":[5,0,0,76,91], +"text_8php.html#a3054189cff173977f4216c9a3dd29e1b":[5,0,0,76,23], +"text_8php.html#a324c58f37f6acdf9cd1922aa76077d9f":[5,0,0,76,86], +"text_8php.html#a33bdb5d4bfff2ede7caf61a98ac0a2e9":[5,0,0,76,73], +"text_8php.html#a36a2e5d418ee81140f25c4233cfecd1f":[5,0,0,76,84], +"text_8php.html#a3972701c5c83624ec4e2d06242f614e7":[5,0,0,76,30], +"text_8php.html#a3999a0b3e22e440f280ee791ce34d384":[5,0,0,76,41], +"text_8php.html#a3a0c432a484c17d7720b8ba2d6bfdd59":[5,0,0,76,25], +"text_8php.html#a3d225b253bb9e0f2498c11647d927b0b":[5,0,0,76,72], +"text_8php.html#a3d2793d66db3345fd290b71e2eadf98e":[5,0,0,76,7], +"text_8php.html#a405afe814a23f3bd94d826101aa168ab":[5,0,0,76,87], +"text_8php.html#a436a8de00c942364c2d0fcfc7e1f4b5a":[5,0,0,76,33], +"text_8php.html#a4659fbc4e54ddc700c3aa66b9092c623":[5,0,0,76,31], +"text_8php.html#a47c1e4a5f3f53027daacd8a9db24f285":[5,0,0,76,43], +"text_8php.html#a4841df5beabdd1bdd1ed56781a915d61":[5,0,0,76,61], +"text_8php.html#a4bbb7d00c05cd20b4e043424f322388f":[5,0,0,76,50], +"text_8php.html#a4e4d42b0a805148d9f9a92bcac89bf91":[5,0,0,76,24], +"text_8php.html#a4e7698aca48982512594b274543c3b9b":[5,0,0,76,60], +"text_8php.html#a543447c5ed766535221e2d9636b379ee":[5,0,0,76,83], +"text_8php.html#a55ab893be57feda59c2a7ba1e58ff2d0":[5,0,0,76,9], +"text_8php.html#a63fb21c0bed2fc72eef2c1471ac42b63":[5,0,0,76,14], +"text_8php.html#a6a3d80a6c6fb234fd0bac44203b828eb":[5,0,0,76,82], +"text_8php.html#a71f6952243d3fe1c5a8154f78027e29c":[5,0,0,76,40], +"text_8php.html#a736db13a966b8abaf8c9198faa35911a":[5,0,0,76,27], +"text_8php.html#a740ad03e00459039a2c0992246c4e727":[5,0,0,76,79], +"text_8php.html#a75c243e06341ec16bd5a44b9b1cacd85":[5,0,0,76,1], +"text_8php.html#a75c326298519ed14ebe762194c8a3f2a":[5,0,0,76,34], +"text_8php.html#a76d1b3435c067978d7b484c45f56472b":[5,0,0,76,26], +"text_8php.html#a8264348059abd1d4d5bb521323d3b19a":[5,0,0,76,80], +"text_8php.html#a85e3a4851c16674834010d8419a5d7ca":[5,0,0,76,8], +"text_8php.html#a876e94892867019935b348b573299352":[5,0,0,76,68], +"text_8php.html#a8796f6a9ca592ecdce7b3afc3462aa13":[5,0,0,76,74], +"text_8php.html#a87a3cefc603302c78982f1d8e1245265":[5,0,0,76,15], +"text_8php.html#a89929fa6f70a8ba54d5273fcf622b665":[5,0,0,76,20], +"text_8php.html#a8b0a799341b1fc4cba2c3ede3e3fc9b6":[5,0,0,76,59], +"text_8php.html#a8d8c4a11e53461caca21181ebd72daca":[5,0,0,76,19], +"text_8php.html#a95fd2f8f23a1948414a03ebc963bac57":[5,0,0,76,3], +"text_8php.html#a98fd99dee3da8cf4c148dc04efe782ee":[5,0,0,76,54], +"text_8php.html#a9c6ce4e12a4ac883c5e3f36fed6e1e09":[5,0,0,76,65], +"text_8php.html#a9d6a5ee1290de7a8b483fe78585daade":[5,0,0,76,63], +"text_8php.html#a9fbeae13c9abd6e27cb4d8d1817f969c":[5,0,0,76,67], +"text_8php.html#aa46f941155c2ac1155f2f17ffb0adb66":[5,0,0,76,29], +"text_8php.html#aa5148a0dfea2a1ca64c3d52f10aa2d64":[5,0,0,76,17], +"text_8php.html#aa5528f41533927e1bd2da3618a74a6d7":[5,0,0,76,55], +"text_8php.html#aa6b0aa8afbeab50d1a3058ad21acb74e":[5,0,0,76,36], +"text_8php.html#aac0969ae09853205992ba06ab9f9f61a":[5,0,0,76,28], +"text_8php.html#aad557c054cf2ed915633701018fc7e3f":[5,0,0,76,90], +"text_8php.html#aae91e4d2a2c6f7a9daccd2c186ae3447":[5,0,0,76,69], +"text_8php.html#aaed4413ed8918838b517e3b2fafaea0d":[5,0,0,76,85], +"text_8php.html#ab4a4c3d4700bc219bb84f33b499314f4":[5,0,0,76,88], +"text_8php.html#ac19d2b33a58372a357a43d51eed19162":[5,0,0,76,56], +"text_8php.html#ac1dbf2e37e8069bea2c0f557fdbf203e":[5,0,0,76,37], +"text_8php.html#ac2ff88e800f74b22e9cc091c10809c54":[5,0,0,76,76], +"text_8php.html#ace3c98538c63e09b70a363210b414112":[5,0,0,76,21], +"text_8php.html#acedb584f65114a33f389efb796172a91":[5,0,0,76,2], +"text_8php.html#ad6432621d0fafcbcf3d3b9b49bef7784":[5,0,0,76,13], +"text_8php.html#ad855a32bee22c3f3b9734e3a334b96f2":[5,0,0,76,64], +"text_8php.html#adba17ec946f4285285dc100f7860bf51":[5,0,0,76,51], +"text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8":[5,0,0,76,38], +"text_8php.html#ae2126da85966da0e79c6bcbac63b0bda":[5,0,0,76,66], +"text_8php.html#ae4282a39492caa23ccbc2ce98e54f110":[5,0,0,76,18], +"text_8php.html#ae4df74296fbe55051ed3c035e55205e5":[5,0,0,76,57], +"text_8php.html#af8a3e3a66a7b862d4510f145d2e13186":[5,0,0,76,0], +"text_8php.html#af9c9ac3f74c82dc60acfa404d0e9dc53":[5,0,0,76,77], +"text_8php.html#afc998d2796a6b2a08e96f7cc061e7221":[5,0,0,76,62], +"text_8php.html#afdc69fe3f6c09e35e46304dcea63ae28":[5,0,0,76,22], +"text_8php.html#afe18627c4983ee5f7c940a0992818cd5":[5,0,0,76,12], +"text_8php.html#afe54312607d92f7ce9593f5760831f80":[5,0,0,76,58], +"text_8php.html#afe9f178d264d44a94dc1292aaf0fd585":[5,0,0,76,53], +"theme_2apw_2php_2theme__init_8php.html":[5,0,3,1,0,1,4] }; diff --git a/doc/html/navtreeindex8.js b/doc/html/navtreeindex8.js index a4dd43dfa..968c3a84e 100644 --- a/doc/html/navtreeindex8.js +++ b/doc/html/navtreeindex8.js @@ -1,5 +1,12 @@ var NAVTREEINDEX8 = { +"theme_2apw_2php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864":[5,0,3,1,0,1,4,0], +"theme_2blogga_2php_2default_8php.html":[5,0,3,1,1,0,1], +"theme_2blogga_2php_2default_8php.html#a1230ab83d4ec9785d8f3a966f33dc5f3":[5,0,3,1,1,0,1,2], +"theme_2blogga_2php_2default_8php.html#a720581ae288aa09511670563e4205a4a":[5,0,3,1,1,0,1,0], +"theme_2blogga_2php_2default_8php.html#ac7062908d1eb80c0735270f7997c4527":[5,0,3,1,1,0,1,1], +"theme_2blogga_2php_2theme__init_8php.html":[5,0,3,1,1,0,3], +"theme_2blogga_2view_2theme_2blog_2default_8php.html":[5,0,3,1,1,1,0,0,1], "theme_2blogga_2view_2theme_2blog_2default_8php.html#a1230ab83d4ec9785d8f3a966f33dc5f3":[5,0,3,1,1,1,0,0,1,2], "theme_2blogga_2view_2theme_2blog_2default_8php.html#a52d9dd070ed541729088395c22502539":[5,0,3,1,1,1,0,0,1,1], "theme_2blogga_2view_2theme_2blog_2default_8php.html#a720581ae288aa09511670563e4205a4a":[5,0,3,1,1,1,0,0,1,0], @@ -85,35 +92,37 @@ var NAVTREEINDEX8 = "wfinger_8php.html":[5,0,1,127], "wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3":[5,0,1,127,0], "widedarkness_8php.html":[5,0,3,1,0,2,10], -"widgets_8php.html":[5,0,0,76], -"widgets_8php.html#a08035db02ff6a23260146b4c64153422":[5,0,0,76,10], -"widgets_8php.html#a0d404276fedc59f5038cf5c085028326":[5,0,0,76,24], -"widgets_8php.html#a0e2f5179ed1a73b282dfda7270fcabb3":[5,0,0,76,2], -"widgets_8php.html#a145ff35319cfa47a9cc07f9425bd674b":[5,0,0,76,7], -"widgets_8php.html#a268b01ce1ab8fe2cb346cb769b9d1091":[5,0,0,76,8], -"widgets_8php.html#a313a8d10ab81c71357c12e67e4d7efd5":[5,0,0,76,15], -"widgets_8php.html#a3bdfb81bf9a8ddf219924fa7eaf22013":[5,0,0,76,17], -"widgets_8php.html#a45ea061dabe9a8372e4ca3b9e5714256":[5,0,0,76,18], -"widgets_8php.html#a47c72aac42058ea086c9ef8651c259da":[5,0,0,76,4], -"widgets_8php.html#a50b1410238100c8a94c06b0aa63ee3b8":[5,0,0,76,23], -"widgets_8php.html#a5ab3b64496e02cab56429978ad55f1c0":[5,0,0,76,11], -"widgets_8php.html#a6dbc227aac750774284ee39c45f0a200":[5,0,0,76,25], -"widgets_8php.html#a702e2fc0adc9b615999eca18b7311b5e":[5,0,0,76,19], -"widgets_8php.html#a70442dfa079312d9d5e5ee01be51a165":[5,0,0,76,14], -"widgets_8php.html#a7b1e357b5a2027718470b77ec921fc65":[5,0,0,76,1], -"widgets_8php.html#a94203eb9bcd63cbdecbbcb15163598d8":[5,0,0,76,21], -"widgets_8php.html#a95c06bc9be133e89768746302d2ac395":[5,0,0,76,9], -"widgets_8php.html#a9d60539db68042e63c0015abd69a6f7a":[5,0,0,76,5], -"widgets_8php.html#aa189a07241246d97efbee29f1c6a6f7f":[5,0,0,76,6], -"widgets_8php.html#aaa73bcf1702eaadd9dcd253502f55e01":[5,0,0,76,22], -"widgets_8php.html#abd2e508a2a0b911c4a838e3cb7599923":[5,0,0,76,20], -"widgets_8php.html#abe03366fd22fd27d683518fa0765da50":[5,0,0,76,27], -"widgets_8php.html#ad1bf7aa69e8d100d95faba17c7bc91cd":[5,0,0,76,13], -"widgets_8php.html#add9b24d3304e529a7975e96122315554":[5,0,0,76,0], -"widgets_8php.html#ade630b19fb4c622b7b2f6f8ef89eefa2":[5,0,0,76,12], -"widgets_8php.html#ae4ced69d83dbdd9e6b51660d9eba8653":[5,0,0,76,26], -"widgets_8php.html#af37fdad3b2e861d860a4a8c4d8a76c0b":[5,0,0,76,3], -"widgets_8php.html#afa2e55a78f95667a6da082efac7fec74":[5,0,0,76,16], +"widgets_8php.html":[5,0,0,77], +"widgets_8php.html#a08035db02ff6a23260146b4c64153422":[5,0,0,77,11], +"widgets_8php.html#a0d404276fedc59f5038cf5c085028326":[5,0,0,77,26], +"widgets_8php.html#a0e2f5179ed1a73b282dfda7270fcabb3":[5,0,0,77,3], +"widgets_8php.html#a145ff35319cfa47a9cc07f9425bd674b":[5,0,0,77,8], +"widgets_8php.html#a268b01ce1ab8fe2cb346cb769b9d1091":[5,0,0,77,9], +"widgets_8php.html#a313a8d10ab81c71357c12e67e4d7efd5":[5,0,0,77,16], +"widgets_8php.html#a3bdfb81bf9a8ddf219924fa7eaf22013":[5,0,0,77,18], +"widgets_8php.html#a45ea061dabe9a8372e4ca3b9e5714256":[5,0,0,77,19], +"widgets_8php.html#a47c72aac42058ea086c9ef8651c259da":[5,0,0,77,5], +"widgets_8php.html#a50b1410238100c8a94c06b0aa63ee3b8":[5,0,0,77,25], +"widgets_8php.html#a5ab3b64496e02cab56429978ad55f1c0":[5,0,0,77,12], +"widgets_8php.html#a6dbc227aac750774284ee39c45f0a200":[5,0,0,77,27], +"widgets_8php.html#a702e2fc0adc9b615999eca18b7311b5e":[5,0,0,77,21], +"widgets_8php.html#a70442dfa079312d9d5e5ee01be51a165":[5,0,0,77,15], +"widgets_8php.html#a7b1e357b5a2027718470b77ec921fc65":[5,0,0,77,2], +"widgets_8php.html#a94203eb9bcd63cbdecbbcb15163598d8":[5,0,0,77,23], +"widgets_8php.html#a95c06bc9be133e89768746302d2ac395":[5,0,0,77,10], +"widgets_8php.html#a999ba893cac7600d3d3b4e7e14cf8c20":[5,0,0,77,20], +"widgets_8php.html#a9d60539db68042e63c0015abd69a6f7a":[5,0,0,77,6], +"widgets_8php.html#aa189a07241246d97efbee29f1c6a6f7f":[5,0,0,77,7], +"widgets_8php.html#aaa73bcf1702eaadd9dcd253502f55e01":[5,0,0,77,24], +"widgets_8php.html#abd2e508a2a0b911c4a838e3cb7599923":[5,0,0,77,22], +"widgets_8php.html#abe03366fd22fd27d683518fa0765da50":[5,0,0,77,29], +"widgets_8php.html#aced5cb177f630b30799c5eab873ee75c":[5,0,0,77,1], +"widgets_8php.html#ad1bf7aa69e8d100d95faba17c7bc91cd":[5,0,0,77,14], +"widgets_8php.html#add9b24d3304e529a7975e96122315554":[5,0,0,77,0], +"widgets_8php.html#ade630b19fb4c622b7b2f6f8ef89eefa2":[5,0,0,77,13], +"widgets_8php.html#ae4ced69d83dbdd9e6b51660d9eba8653":[5,0,0,77,28], +"widgets_8php.html#af37fdad3b2e861d860a4a8c4d8a76c0b":[5,0,0,77,4], +"widgets_8php.html#afa2e55a78f95667a6da082efac7fec74":[5,0,0,77,17], "xchan_8php.html":[5,0,1,128], "xchan_8php.html#a9853348bf1a35c644460221ba75edc2d":[5,0,1,128,0], "xrd_8php.html":[5,0,1,129], @@ -122,35 +131,35 @@ var NAVTREEINDEX8 = "xref_8php.html#a9bee399213b8de8226b0d60834307473":[5,0,1,130,0], "zfinger_8php.html":[5,0,1,131], "zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0":[5,0,1,131,0], -"zot_8php.html":[5,0,0,77], -"zot_8php.html#a083aec6c900d244e1bfc1406f9461465":[5,0,0,77,13], -"zot_8php.html#a20750dd2c36961013fd382fb34e1366c":[5,0,0,77,6], -"zot_8php.html#a2657e141d62d5f67ad3c87651b585299":[5,0,0,77,7], -"zot_8php.html#a31aad56acf8ff8f2353e6ff8595544df":[5,0,0,77,15], -"zot_8php.html#a3862b3161b2c8557dc1a95020179bd81":[5,0,0,77,17], -"zot_8php.html#a3bf11286c2619b4ca28e49d5b5ab374a":[5,0,0,77,5], -"zot_8php.html#a4d9e6ca295e443b740d9960c304b3474":[5,0,0,77,10], -"zot_8php.html#a55056e863a7860bc0cf922e78fcce073":[5,0,0,77,21], -"zot_8php.html#a5bcdfef419b16075a0eca990956223dc":[5,0,0,77,26], -"zot_8php.html#a61cdc1ec843663c423ed2d8160ae5aea":[5,0,0,77,18], -"zot_8php.html#a703f528ade8382cf374e4119bd6f7859":[5,0,0,77,0], -"zot_8php.html#a71d82d0bec204cdf2bd56e4fd0e0ef8a":[5,0,0,77,8], -"zot_8php.html#a7ac30ff51274bf0b6d3eade37972145c":[5,0,0,77,25], -"zot_8php.html#a8e22dbc6f884be3644a892a876cbd972":[5,0,0,77,3], -"zot_8php.html#a928f5643ca66ae9635d85aeb2be62e03":[5,0,0,77,24], -"zot_8php.html#a95528377d7303131958c9f0b7158fdce":[5,0,0,77,19], -"zot_8php.html#a9a57b40669351c9791126b925cb7ef3b":[5,0,0,77,12], -"zot_8php.html#aa6ae96db8cbbdbb10e6876d206bbf7cc":[5,0,0,77,11], -"zot_8php.html#aad25a3fe0e1566121d6fb8222979bc10":[5,0,0,77,14], -"zot_8php.html#ab22d67660702056bf3f4696dcebf5ce7":[5,0,0,77,23], -"zot_8php.html#ab319d1d9fff9c7775d9daef42d1f33dd":[5,0,0,77,16], -"zot_8php.html#ab3e9b99ddb11353f37f265a05bb42142":[5,0,0,77,27], -"zot_8php.html#ac301c67864917c35922257950ae0f95c":[5,0,0,77,9], -"zot_8php.html#ac34e479d27f32b82dd6b33542f81a6a7":[5,0,0,77,1], -"zot_8php.html#ad149f1e98c0c5b88ff9147e6ee3f330d":[5,0,0,77,4], -"zot_8php.html#adfeb9400ae6b726beec89f8f1e8fde72":[5,0,0,77,2], -"zot_8php.html#ae7cec2b417b5858fd4a41070f843d1d7":[5,0,0,77,20], -"zot_8php.html#aeea071f17e306fe3d0c488551906bfab":[5,0,0,77,22], +"zot_8php.html":[5,0,0,78], +"zot_8php.html#a083aec6c900d244e1bfc1406f9461465":[5,0,0,78,13], +"zot_8php.html#a20750dd2c36961013fd382fb34e1366c":[5,0,0,78,6], +"zot_8php.html#a2657e141d62d5f67ad3c87651b585299":[5,0,0,78,7], +"zot_8php.html#a31aad56acf8ff8f2353e6ff8595544df":[5,0,0,78,15], +"zot_8php.html#a3862b3161b2c8557dc1a95020179bd81":[5,0,0,78,17], +"zot_8php.html#a3bf11286c2619b4ca28e49d5b5ab374a":[5,0,0,78,5], +"zot_8php.html#a4d9e6ca295e443b740d9960c304b3474":[5,0,0,78,10], +"zot_8php.html#a55056e863a7860bc0cf922e78fcce073":[5,0,0,78,21], +"zot_8php.html#a5bcdfef419b16075a0eca990956223dc":[5,0,0,78,26], +"zot_8php.html#a61cdc1ec843663c423ed2d8160ae5aea":[5,0,0,78,18], +"zot_8php.html#a703f528ade8382cf374e4119bd6f7859":[5,0,0,78,0], +"zot_8php.html#a71d82d0bec204cdf2bd56e4fd0e0ef8a":[5,0,0,78,8], +"zot_8php.html#a7ac30ff51274bf0b6d3eade37972145c":[5,0,0,78,25], +"zot_8php.html#a8e22dbc6f884be3644a892a876cbd972":[5,0,0,78,3], +"zot_8php.html#a928f5643ca66ae9635d85aeb2be62e03":[5,0,0,78,24], +"zot_8php.html#a95528377d7303131958c9f0b7158fdce":[5,0,0,78,19], +"zot_8php.html#a9a57b40669351c9791126b925cb7ef3b":[5,0,0,78,12], +"zot_8php.html#aa6ae96db8cbbdbb10e6876d206bbf7cc":[5,0,0,78,11], +"zot_8php.html#aad25a3fe0e1566121d6fb8222979bc10":[5,0,0,78,14], +"zot_8php.html#ab22d67660702056bf3f4696dcebf5ce7":[5,0,0,78,23], +"zot_8php.html#ab319d1d9fff9c7775d9daef42d1f33dd":[5,0,0,78,16], +"zot_8php.html#ab3e9b99ddb11353f37f265a05bb42142":[5,0,0,78,27], +"zot_8php.html#ac301c67864917c35922257950ae0f95c":[5,0,0,78,9], +"zot_8php.html#ac34e479d27f32b82dd6b33542f81a6a7":[5,0,0,78,1], +"zot_8php.html#ad149f1e98c0c5b88ff9147e6ee3f330d":[5,0,0,78,4], +"zot_8php.html#adfeb9400ae6b726beec89f8f1e8fde72":[5,0,0,78,2], +"zot_8php.html#ae7cec2b417b5858fd4a41070f843d1d7":[5,0,0,78,20], +"zot_8php.html#aeea071f17e306fe3d0c488551906bfab":[5,0,0,78,22], "zotfeed_8php.html":[5,0,1,132], "zotfeed_8php.html#a24dfc23d366e7f840cf2847d0c1c8eac":[5,0,1,132,0], "zping_8php.html":[5,0,1,133], diff --git a/doc/html/php2po_8php.html b/doc/html/php2po_8php.html index 502d24725..be585c290 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(), aes_encapsulate(), aes_unencapsulate(), bb_sanitize_style(), build_sync_packet(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_poll_interval(), contact_reputation(), dirprofile_init(), dirsearch_content(), RedBrowser\generateDirectoryIndex(), get_plugin_info(), get_theme_info(), get_things(), guess_image_type(), import_directory_profile(), item_photo_menu(), item_store_update(), load_config(), load_pconfig(), load_xconfig(), local_dir_update(), mail_post(), mood_content(), new_contact(), FKOAuthDataStore\new_request_token(), obj_verb_selector(), openid_content(), 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(), settings_post(), sslify_init(), startup(), tt(), vote_post(), x(), zfinger_init(), and zot_refresh().

    +

    Referenced by App\__construct(), Template\_get_var(), Template\_replcb_for(), activity_sanitise(), aes_encapsulate(), aes_unencapsulate(), bb_sanitize_style(), build_sync_packet(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_poll_interval(), contact_reputation(), dirprofile_init(), dirsearch_content(), RedBrowser\generateDirectoryIndex(), get_plugin_info(), get_theme_info(), get_things(), guess_image_type(), import_directory_profile(), item_photo_menu(), item_store_update(), load_config(), load_pconfig(), load_xconfig(), local_dir_update(), mail_post(), mood_content(), new_contact(), FKOAuthDataStore\new_request_token(), obj_verb_selector(), openid_content(), parse_app_description(), 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(), settings_post(), sslify_init(), startup(), tt(), vote_post(), x(), zfinger_init(), and zot_refresh().

    diff --git a/doc/html/php_2theme__init_8php.html b/doc/html/php_2theme__init_8php.html index 99bc04eb4..abbb14abc 100644 --- a/doc/html/php_2theme__init_8php.html +++ b/doc/html/php_2theme__init_8php.html @@ -127,7 +127,7 @@ Variables

    Those who require this feature will know what to do with it. Those who don't, won't. Eventually this functionality needs to be provided by a module such that permissions can be enforced. At the moment it's more of a proof of concept; but sufficient for our immediate needs.

    -

    Referenced by admin_page_channels(), api_call(), api_user(), attach_mkdir(), attach_store(), bbcode(), blocks_content(), bookmark_add(), bookmarks_content(), build_sync_packet(), channel_content(), channel_init(), channel_remove(), chat_content(), chat_init(), chat_post(), chatroom_create(), chatroom_destroy(), cloud_init(), connections_init(), connections_post(), connedit_content(), connedit_init(), connedit_post(), conversation(), design_tools(), directory_run(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), feed_init(), filestorage_content(), fix_attached_file_permissions(), fix_system_urls(), get_feed_for(), get_public_feed(), handle_tag(), home_init(), RedBrowser\htmlActionsPanel(), import_post(), importelm_post(), invite_content(), item_photo_menu(), item_post(), item_store(), item_store_update(), items_fetch(), layouts_content(), magic_init(), mail_content(), mail_post(), menu_add_item(), menu_edit_item(), message_content(), mitem_content(), mitem_post(), mood_init(), nav(), network_content(), network_init(), new_contact(), notifier_run(), photo_upload(), photos_albums_list(), photos_content(), photos_create_item(), photos_list_photos(), ping_init(), poke_init(), post_activity_item(), post_to_red_delete_comment(), post_to_red_delete_post(), post_to_red_displayAdminContent(), post_to_red_post(), probe_content(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), profile_init(), profile_photo_init(), profile_photo_post(), profiles_post(), profperm_init(), rbmark_content(), rbmark_post(), rpost_content(), send_message(), settings_post(), sources_post(), tagger_content(), thing_init(), uexport_init(), update_remote_id(), wall_attach_post(), wall_upload_post(), webpages_content(), wfinger_init(), widget_settings_menu(), zot_build_packet(), zot_finger(), and zot_refresh().

    +

    Referenced by admin_page_channels(), api_call(), api_user(), attach_mkdir(), attach_store(), bbcode(), blocks_content(), bookmark_add(), bookmarks_content(), build_sync_packet(), channel_content(), channel_init(), channel_remove(), chat_content(), chat_init(), chat_post(), chatroom_create(), chatroom_destroy(), cloud_init(), connections_init(), connections_post(), connedit_content(), connedit_init(), connedit_post(), conversation(), design_tools(), directory_run(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), feed_init(), filestorage_content(), fix_attached_file_permissions(), fix_system_urls(), get_feed_for(), get_public_feed(), handle_tag(), home_init(), RedBrowser\htmlActionsPanel(), import_post(), importelm_post(), invite_content(), item_photo_menu(), item_post(), item_store(), item_store_update(), items_fetch(), layouts_content(), magic_init(), mail_content(), mail_post(), menu_add_item(), menu_edit_item(), message_content(), mitem_content(), mitem_post(), mood_init(), nav(), network_content(), network_init(), new_contact(), notifier_run(), parse_app_description(), photo_upload(), photos_albums_list(), photos_content(), photos_create_item(), photos_list_photos(), ping_init(), poke_init(), post_activity_item(), post_to_red_delete_comment(), post_to_red_delete_post(), post_to_red_displayAdminContent(), post_to_red_post(), probe_content(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), profile_init(), profile_photo_init(), profile_photo_post(), profiles_post(), profperm_init(), rbmark_content(), rbmark_post(), rpost_content(), send_message(), settings_post(), sources_post(), tagger_content(), thing_init(), uexport_init(), update_remote_id(), wall_attach_post(), wall_upload_post(), webpages_content(), wfinger_init(), widget_settings_menu(), zot_build_packet(), zot_finger(), and zot_refresh().

    diff --git a/doc/html/plugin_8php.html b/doc/html/plugin_8php.html index 5c39ca144..4423d57f4 100644 --- a/doc/html/plugin_8php.html +++ b/doc/html/plugin_8php.html @@ -120,6 +120,8 @@ Functions    load_plugin ($plugin)   + plugin_is_installed ($name) +   reload_plugins ()    register_hook ($hook, $file, $function, $priority=0) @@ -198,7 +200,7 @@ Functions
    -

    Referenced by _well_known_init(), api_login(), atom_author(), atom_entry(), authenticate_success(), avatar_img(), bb2diaspora(), bbcode(), channel_remove(), chat_message(), chatsvc_post(), check_account_email(), check_account_invite(), check_account_password(), connect_content(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_block(), contact_select(), conversation(), create_identity(), cronhooks_run(), directory_content(), downgrade_accounts(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), event_store(), externals_run(), 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(), home_content(), home_init(), hostxrd_init(), html2bbcode(), import_author_xchan(), import_directory_profile(), import_xchan(), item_photo_menu(), item_post(), item_store(), item_store_update(), like_content(), login(), magic_init(), mail_store(), marital_selector(), mood_init(), nav(), network_content(), network_to_name(), new_contact(), notification(), notifier_run(), obj_verbs(), oembed_fetch_url(), openid_content(), parse_url_content(), pdl_selector(), perm_is_allowed(), photo_upload(), photos_content(), ping_init(), populate_acl(), post_activity_item(), post_init(), prepare_body(), probe_well_known(), proc_run(), profile_content(), profile_sidebar(), profiles_content(), profiles_post(), replace_macros(), rmagic_post(), settings_post(), sexpref_selector(), siteinfo_content(), smilies(), subthread_content(), tag_deliver(), validate_channelname(), wfinger_init(), widget_affinity(), xrd_init(), zfinger_init(), zid(), and zid_init().

    +

    Referenced by _well_known_init(), api_login(), atom_author(), atom_entry(), authenticate_success(), avatar_img(), bb2diaspora(), bbcode(), channel_remove(), chat_message(), chatsvc_post(), check_account_email(), check_account_invite(), check_account_password(), connect_content(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_block(), contact_select(), conversation(), create_identity(), cronhooks_run(), directory_content(), downgrade_accounts(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), event_store(), externals_run(), 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(), home_content(), home_init(), hostxrd_init(), html2bbcode(), import_author_xchan(), import_directory_profile(), import_xchan(), item_photo_menu(), item_post(), item_store(), item_store_update(), like_content(), login(), magic_init(), mail_store(), marital_selector(), mood_init(), nav(), network_content(), network_to_name(), new_contact(), notification(), notifier_run(), obj_verbs(), oembed_fetch_url(), openid_content(), parse_url_content(), pdl_selector(), perm_is_allowed(), photo_upload(), photos_content(), ping_init(), populate_acl(), post_activity_item(), post_init(), prepare_body(), probe_well_known(), proc_run(), process_delivery(), profile_content(), profile_sidebar(), profiles_content(), profiles_post(), replace_macros(), rmagic_post(), settings_post(), sexpref_selector(), siteinfo_content(), smilies(), subthread_content(), tag_deliver(), validate_channelname(), wfinger_init(), widget_affinity(), xrd_init(), zfinger_init(), zid(), and zid_init().

    @@ -290,7 +292,7 @@ Functions
    -

    Referenced by admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_plugins(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), alt_pager(), api_apply_template(), api_content(), apps_content(), apw_form(), blocks_content(), blogtheme_form(), App\build_pagehead(), categories_widget(), channel_content(), chanview_content(), chat_content(), check_php(), common_content(), common_friends_visitor_widget(), connect_content(), connections_content(), connedit_content(), construct_page(), contact_block(), conversation(), delegate_content(), design_tools(), dir_safe_mode(), dir_sort_links(), directory_content(), dirprofile_init(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), fbrowser_content(), field_timezone(), fileas_widget(), filer_content(), filestorage_content(), findpeople_widget(), format_categories(), format_filer(), get_birthdays(), Item\get_comment_box(), get_events(), get_feed_for(), group_content(), group_side(), help_content(), hostxrd_init(), identity_selector(), import_content(), invite_content(), lang_selector(), layouts_content(), login(), lostpass_content(), mail_content(), manage_content(), match_content(), menu_content(), menu_render(), message_content(), micropro(), mini_group_select(), mitem_content(), mood_content(), nav(), network_content(), new_channel_content(), notification(), notifications_content(), notify_content(), oembed_format_object(), oexchange_init(), opensearch_init(), pagelist_widget(), pdledit_content(), photos_album_widget(), photos_content(), poco_init(), poke_content(), populate_acl(), profile_sidebar(), profiles_content(), rbmark_content(), redbasic_form(), register_content(), removeme_content(), rmagic_content(), rpost_content(), search_content(), setup_content(), siteinfo_content(), sources_content(), suggest_content(), theme_attachments(), thing_content(), vcard_from_xchan(), viewconnections_content(), vote_content(), webpages_content(), widget_affinity(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), writepages_widget(), and xrd_init().

    +

    Referenced by admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_plugins(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), alt_pager(), api_apply_template(), api_content(), apps_content(), apw_form(), blocks_content(), blogtheme_form(), App\build_pagehead(), categories_widget(), channel_content(), chanview_content(), chat_content(), check_php(), common_content(), common_friends_visitor_widget(), connect_content(), connections_content(), connedit_content(), construct_page(), contact_block(), conversation(), delegate_content(), design_tools(), dir_safe_mode(), dir_sort_links(), directory_content(), dirprofile_init(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), fbrowser_content(), field_timezone(), fileas_widget(), filer_content(), filestorage_content(), findpeople_widget(), format_categories(), format_filer(), get_birthdays(), Item\get_comment_box(), get_events(), get_feed_for(), group_content(), group_side(), help_content(), hostxrd_init(), identity_selector(), import_content(), invite_content(), lang_selector(), layouts_content(), login(), lostpass_content(), mail_content(), manage_content(), match_content(), menu_content(), menu_render(), message_content(), micropro(), mini_group_select(), mitem_content(), mood_content(), nav(), network_content(), new_channel_content(), notification(), notifications_content(), notify_content(), oembed_format_object(), oexchange_init(), opensearch_init(), pagelist_widget(), pdledit_content(), photos_album_widget(), photos_content(), poco_init(), poke_content(), populate_acl(), profile_sidebar(), profiles_content(), rbmark_content(), redbasic_form(), register_content(), removeme_content(), rmagic_content(), rpost_content(), search_content(), setup_content(), siteinfo_content(), sources_content(), suggest_content(), theme_attachments(), thing_content(), vcard_from_xchan(), viewconnections_content(), vote_content(), webpages_content(), widget_affinity(), widget_appselect(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), writepages_widget(), and xrd_init().

    @@ -557,6 +559,24 @@ Functions

    Referenced by check_config(), and install_plugin().

    + + + +
    +
    + + + + + + + + +
    plugin_is_installed ( $name)
    +
    + +

    Referenced by get_system_apps().

    +
    diff --git a/doc/html/plugin_8php.js b/doc/html/plugin_8php.js index e338c63d6..d40c6cb73 100644 --- a/doc/html/plugin_8php.js +++ b/doc/html/plugin_8php.js @@ -18,6 +18,7 @@ var plugin_8php = [ "install_plugin", "plugin_8php.html#a482131013272a1d5d5c1b1469c6c55d5", null ], [ "load_hooks", "plugin_8php.html#a326365e48ef94f0b9a0a771b8d75e813", null ], [ "load_plugin", "plugin_8php.html#a9ca9632b7309a65b05c03a3e2f473a3d", null ], + [ "plugin_is_installed", "plugin_8php.html#a855c4fdb38c0fc2714d537752a4347f9", null ], [ "register_hook", "plugin_8php.html#a425472c5f3afc137268b2ad45652b209", null ], [ "reload_plugins", "plugin_8php.html#af9ac19004dca49adae1ac7a0d9f3b025", null ], [ "script_path", "plugin_8php.html#a0e8c2ea50bfdbc39e17ccccaea21ddc3", null ], diff --git a/doc/html/search/all_61.js b/doc/html/search/all_61.js index 01c07a3e2..5b7126181 100644 --- a/doc/html/search/all_61.js +++ b/doc/html/search/all_61.js @@ -153,8 +153,9 @@ var searchData= ['api_5fusers_5fshow',['api_users_show',['../include_2api_8php.html#abe8e929e93f7ab134b1cb1fb30f19a76',1,'api.php']]], ['app',['App',['../classApp.html',1,'']]], ['appdirpath',['appdirpath',['../boot_8php.html#a75a90b0eadd0df510f7e63210733634d',1,'boot.php']]], - ['apps_2ephp',['apps.php',['../apps_8php.html',1,'']]], - ['apps_5fcontent',['apps_content',['../apps_8php.html#a546016cb960d0b110ee8e489dfa6c27c',1,'apps.php']]], + ['apps_2ephp',['apps.php',['../mod_2apps_8php.html',1,'']]], + ['apps_2ephp',['apps.php',['../include_2apps_8php.html',1,'']]], + ['apps_5fcontent',['apps_content',['../mod_2apps_8php.html#a546016cb960d0b110ee8e489dfa6c27c',1,'apps.php']]], ['apw_5fform',['apw_form',['../view_2theme_2apw_2php_2config_8php.html#ad59fc09da66b66267f9753c8b2dd68d0',1,'config.php']]], ['apw_5finit',['apw_init',['../apw_2php_2theme_8php.html#a42167c539043a39a6b83c252d05f1e89',1,'theme.php']]], ['argc',['argc',['../boot_8php.html#abc0a90a1a77f5b668aa7e4b57d1776a7',1,'boot.php']]], diff --git a/doc/html/search/all_62.js b/doc/html/search/all_62.js index 4b51f9288..606f913d2 100644 --- a/doc/html/search/all_62.js +++ b/doc/html/search/all_62.js @@ -39,6 +39,7 @@ var searchData= ['bookmarks_5fcontent',['bookmarks_content',['../mod_2bookmarks_8php.html#a774364b1c8404529581083631703527a',1,'bookmarks.php']]], ['bookmarks_5finit',['bookmarks_init',['../mod_2bookmarks_8php.html#a6b7942f3d27e40f0f47c88704127b9b3',1,'bookmarks.php']]], ['boot_2ephp',['boot.php',['../boot_8php.html',1,'']]], + ['boxy_2ephp',['boxy.php',['../boxy_8php.html',1,'']]], ['breaklines',['breaklines',['../html2plain_8php.html#a3214912e3d00cf0a948072daccf16740',1,'html2plain.php']]], ['bs_2ddefault_2ephp',['BS-Default.php',['../BS-Default_8php.html',1,'']]], ['build_5fpagehead',['build_pagehead',['../classApp.html#a08f0537964d98958d218066364cff785',1,'App']]], diff --git a/doc/html/search/all_67.js b/doc/html/search/all_67.js index d0dd56fdb..0914ac52d 100644 --- a/doc/html/search/all_67.js +++ b/doc/html/search/all_67.js @@ -76,6 +76,7 @@ var searchData= ['get_5frel_5flink',['get_rel_link',['../text_8php.html#a3972701c5c83624ec4e2d06242f614e7',1,'text.php']]], ['get_5frpost_5fpath',['get_rpost_path',['../zot_8php.html#a8e22dbc6f884be3644a892a876cbd972',1,'zot.php']]], ['get_5fsys_5fchannel',['get_sys_channel',['../identity_8php.html#aaff86ee3b5984821e7a256c2da5f1a51',1,'identity.php']]], + ['get_5fsystem_5fapps',['get_system_apps',['../include_2apps_8php.html#ae64f72eb4f126e03b4eb65ed1702a3ca',1,'apps.php']]], ['get_5ftags',['get_tags',['../text_8php.html#a4659fbc4e54ddc700c3aa66b9092c623',1,'text.php']]], ['get_5ftemplate',['get_template',['../classItem.html#aba23a0a9d89e316d2b343cc46d695d91',1,'Item']]], ['get_5ftemplate_5fdata',['get_template_data',['../classConversation.html#a2a96b7a6573ae53db861624659e831cb',1,'Conversation\get_template_data()'],['../classItem.html#ad5dcbe0b94cb2d5719bc5b6bd8ad60c8',1,'Item\get_template_data()']]], @@ -114,8 +115,8 @@ var searchData= ['gravity_5flike',['GRAVITY_LIKE',['../boot_8php.html#a1f5906598e90b5ea2b4245f682be4348',1,'boot.php']]], ['gravity_5fparent',['GRAVITY_PARENT',['../boot_8php.html#a2af173e4e9836ee7c90757b4793a2be3',1,'boot.php']]], ['greenthumbnails_2ephp',['greenthumbnails.php',['../greenthumbnails_8php.html',1,'']]], - ['group_2ephp',['group.php',['../mod_2group_8php.html',1,'']]], ['group_2ephp',['group.php',['../include_2group_8php.html',1,'']]], + ['group_2ephp',['group.php',['../mod_2group_8php.html',1,'']]], ['group_5fadd',['group_add',['../include_2group_8php.html#a06ec565d2b64e79044e7c1bf91a2a4ce',1,'group.php']]], ['group_5fadd_5fmember',['group_add_member',['../include_2group_8php.html#a0122ef312df2c5546b1a46b3e6c7b31b',1,'group.php']]], ['group_5fbyname',['group_byname',['../include_2group_8php.html#abd66a5ea34a07a3422dc2dde6c7b3ecb',1,'group.php']]], diff --git a/doc/html/search/all_70.js b/doc/html/search/all_70.js index 0b5177db9..890d027f2 100644 --- a/doc/html/search/all_70.js +++ b/doc/html/search/all_70.js @@ -17,6 +17,7 @@ var searchData= ['page_5fwidgets_2ephp',['page_widgets.php',['../page__widgets_8php.html',1,'']]], ['pagelist_5fwidget',['pagelist_widget',['../page__widgets_8php.html#a39d547771c5f12a17c097436c82f0fa2',1,'page_widgets.php']]], ['paginate',['paginate',['../text_8php.html#afe9f178d264d44a94dc1292aaf0fd585',1,'text.php']]], + ['parse_5fapp_5fdescription',['parse_app_description',['../include_2apps_8php.html#a32fe4ed9666228fd4b67dc487cc57a83',1,'apps.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']]], ['parse_5fxml_5fstring',['parse_xml_string',['../include_2network_8php.html#a27a951b59d8d622c0b3e7b0673ba74c6',1,'network.php']]], @@ -95,6 +96,7 @@ var searchData= ['pkcs5_5fpad',['pkcs5_pad',['../crypto_8php.html#ad5e51fd44cff93cfaa07a37e24a5edec',1,'crypto.php']]], ['pkcs5_5funpad',['pkcs5_unpad',['../crypto_8php.html#ac95ac3b1b23b65b04a86613d4206ae85',1,'crypto.php']]], ['plugin_2ephp',['plugin.php',['../plugin_8php.html',1,'']]], + ['plugin_5fis_5finstalled',['plugin_is_installed',['../plugin_8php.html#a855c4fdb38c0fc2714d537752a4347f9',1,'plugin.php']]], ['png_5fquality',['PNG_QUALITY',['../boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce',1,'boot.php']]], ['po2php_2ephp',['po2php.php',['../po2php_8php.html',1,'']]], ['po2php_5frun',['po2php_run',['../po2php_8php.html#a3b75e36f913198299e99559b175cd8b4',1,'po2php.php']]], diff --git a/doc/html/search/all_72.js b/doc/html/search/all_72.js index cac353605..547948a72 100644 --- a/doc/html/search/all_72.js +++ b/doc/html/search/all_72.js @@ -23,6 +23,7 @@ var searchData= ['red_5fversion',['RED_VERSION',['../boot_8php.html#a21cc29e0025943e7c28ff58cb4856ac3',1,'boot.php']]], ['red_5fxmlrpc_5fmethods',['red_xmlrpc_methods',['../post__to__red_8php.html#a3a2af6ad845239f26e86fccabf8639e1',1,'post_to_red.php']]], ['red_5fzrl_5fcallback',['red_zrl_callback',['../items_8php.html#a4e6d7639431e0dd8e9f4dba8e1ac408b',1,'items.php']]], + ['red_5fzrlify_5fimg_5fcallback',['red_zrlify_img_callback',['../items_8php.html#a78a60e39f6991bd3324a24dcbf9dac5a',1,'items.php']]], ['redbasic_2ephp',['redbasic.php',['../redbasic_8php.html',1,'']]], ['redbasic_5fform',['redbasic_form',['../view_2theme_2redbasic_2php_2config_8php.html#a8574a41fa9735ee391ba57ab24b93793',1,'config.php']]], ['redbasic_5finit',['redbasic_init',['../redbasic_2php_2theme_8php.html#af6eb813e9fc7e2d76ac1b82bc5c0ed9b',1,'theme.php']]], diff --git a/doc/html/search/all_74.js b/doc/html/search/all_74.js index 02bdc0a10..3958c9360 100644 --- a/doc/html/search/all_74.js +++ b/doc/html/search/all_74.js @@ -47,8 +47,8 @@ var searchData= ['theme_5fattachments',['theme_attachments',['../text_8php.html#af9c9ac3f74c82dc60acfa404d0e9dc53',1,'text.php']]], ['theme_5fcontent',['theme_content',['../view_2theme_2apw_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d',1,'theme_content(&$a): config.php'],['../view_2theme_2blogga_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d',1,'theme_content(&$a): config.php'],['../view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d',1,'theme_content(&$a): config.php'],['../view_2theme_2redbasic_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d',1,'theme_content(&$a): config.php']]], ['theme_5finclude',['theme_include',['../plugin_8php.html#a65fedcffbe03562ef844cabee37d34e2',1,'plugin.php']]], - ['theme_5finit_2ephp',['theme_init.php',['../php_2theme__init_8php.html',1,'']]], ['theme_5finit_2ephp',['theme_init.php',['../theme_2redbasic_2php_2theme__init_8php.html',1,'']]], + ['theme_5finit_2ephp',['theme_init.php',['../php_2theme__init_8php.html',1,'']]], ['theme_5finit_2ephp',['theme_init.php',['../theme_2apw_2php_2theme__init_8php.html',1,'']]], ['theme_5finit_2ephp',['theme_init.php',['../theme_2blogga_2php_2theme__init_8php.html',1,'']]], ['theme_5fpost',['theme_post',['../view_2theme_2apw_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6',1,'theme_post(&$a): config.php'],['../view_2theme_2blogga_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6',1,'theme_post(&$a): config.php'],['../view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6',1,'theme_post(&$a): config.php'],['../view_2theme_2redbasic_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6',1,'theme_post(&$a): config.php']]], @@ -66,6 +66,7 @@ var searchData= ['toggle_5ftheme',['toggle_theme',['../admin_8php.html#af81f081851791cd15e49e8ff6722dc27',1,'admin.php']]], ['tpldebug_2ephp',['tpldebug.php',['../tpldebug_8php.html',1,'']]], ['tplpaths',['tplpaths',['../namespaceupdatetpl.html#a52a85ffa6b6d63d840b185a133478c12',1,'updatetpl']]], + ['translate_5fsystem_5fapps',['translate_system_apps',['../include_2apps_8php.html#a48289d5cc44b7638191738106ac5d030',1,'apps.php']]], ['tryoembed',['tryoembed',['../bbcode_8php.html#a55b0cb6973f1ec731de0e726bcc0efa7',1,'bbcode.php']]], ['tryzrlaudio',['tryzrlaudio',['../bbcode_8php.html#a39de4de32a9456d1ca914d0dc52bd322',1,'bbcode.php']]], ['tryzrlvideo',['tryzrlvideo',['../bbcode_8php.html#aa92f119341f4c69dcef2768a013079b8',1,'bbcode.php']]], diff --git a/doc/html/search/all_77.js b/doc/html/search/all_77.js index 38b80d8be..21956898a 100644 --- a/doc/html/search/all_77.js +++ b/doc/html/search/all_77.js @@ -16,6 +16,7 @@ var searchData= ['while',['while',['../docblox__errorchecker_8php.html#af4ca738a05beffe9c8c23e1f7aea3c2d',1,'docblox_errorchecker.php']]], ['widedarkness_2ephp',['widedarkness.php',['../widedarkness_8php.html',1,'']]], ['widget_5faffinity',['widget_affinity',['../widgets_8php.html#add9b24d3304e529a7975e96122315554',1,'widgets.php']]], + ['widget_5fappselect',['widget_appselect',['../widgets_8php.html#aced5cb177f630b30799c5eab873ee75c',1,'widgets.php']]], ['widget_5farchive',['widget_archive',['../widgets_8php.html#a7b1e357b5a2027718470b77ec921fc65',1,'widgets.php']]], ['widget_5fbookmarkedchats',['widget_bookmarkedchats',['../widgets_8php.html#a0e2f5179ed1a73b282dfda7270fcabb3',1,'widgets.php']]], ['widget_5fcategories',['widget_categories',['../widgets_8php.html#af37fdad3b2e861d860a4a8c4d8a76c0b',1,'widgets.php']]], @@ -34,6 +35,7 @@ var searchData= ['widget_5fmailmenu',['widget_mailmenu',['../widgets_8php.html#afa2e55a78f95667a6da082efac7fec74',1,'widgets.php']]], ['widget_5fmenu_5fpreview',['widget_menu_preview',['../widgets_8php.html#a3bdfb81bf9a8ddf219924fa7eaf22013',1,'widgets.php']]], ['widget_5fnotes',['widget_notes',['../widgets_8php.html#a45ea061dabe9a8372e4ca3b9e5714256',1,'widgets.php']]], + ['widget_5fphoto',['widget_photo',['../widgets_8php.html#a999ba893cac7600d3d3b4e7e14cf8c20',1,'widgets.php']]], ['widget_5fphoto_5falbums',['widget_photo_albums',['../widgets_8php.html#a702e2fc0adc9b615999eca18b7311b5e',1,'widgets.php']]], ['widget_5fprofile',['widget_profile',['../widgets_8php.html#abd2e508a2a0b911c4a838e3cb7599923',1,'widgets.php']]], ['widget_5fsavedsearch',['widget_savedsearch',['../widgets_8php.html#a94203eb9bcd63cbdecbbcb15163598d8',1,'widgets.php']]], diff --git a/doc/html/search/files_61.js b/doc/html/search/files_61.js index 9d8a93b78..448932f47 100644 --- a/doc/html/search/files_61.js +++ b/doc/html/search/files_61.js @@ -8,8 +8,9 @@ var searchData= ['admin_2ephp',['admin.php',['../admin_8php.html',1,'']]], ['api_2ephp',['api.php',['../mod_2api_8php.html',1,'']]], ['api_2ephp',['api.php',['../include_2api_8php.html',1,'']]], - ['apps_2ephp',['apps.php',['../apps_8php.html',1,'']]], - ['attach_2ephp',['attach.php',['../include_2attach_8php.html',1,'']]], + ['apps_2ephp',['apps.php',['../mod_2apps_8php.html',1,'']]], + ['apps_2ephp',['apps.php',['../include_2apps_8php.html',1,'']]], ['attach_2ephp',['attach.php',['../mod_2attach_8php.html',1,'']]], + ['attach_2ephp',['attach.php',['../include_2attach_8php.html',1,'']]], ['auth_2ephp',['auth.php',['../auth_8php.html',1,'']]] ]; diff --git a/doc/html/search/files_62.js b/doc/html/search/files_62.js index 33c096276..e8e37db19 100644 --- a/doc/html/search/files_62.js +++ b/doc/html/search/files_62.js @@ -5,8 +5,9 @@ var searchData= ['bbcode_2ephp',['bbcode.php',['../bbcode_8php.html',1,'']]], ['block_2ephp',['block.php',['../block_8php.html',1,'']]], ['blocks_2ephp',['blocks.php',['../blocks_8php.html',1,'']]], - ['bookmarks_2ephp',['bookmarks.php',['../mod_2bookmarks_8php.html',1,'']]], ['bookmarks_2ephp',['bookmarks.php',['../include_2bookmarks_8php.html',1,'']]], + ['bookmarks_2ephp',['bookmarks.php',['../mod_2bookmarks_8php.html',1,'']]], ['boot_2ephp',['boot.php',['../boot_8php.html',1,'']]], + ['boxy_2ephp',['boxy.php',['../boxy_8php.html',1,'']]], ['bs_2ddefault_2ephp',['BS-Default.php',['../BS-Default_8php.html',1,'']]] ]; diff --git a/doc/html/search/functions_61.js b/doc/html/search/functions_61.js index 76e2df84d..86cf33a1f 100644 --- a/doc/html/search/functions_61.js +++ b/doc/html/search/functions_61.js @@ -95,7 +95,7 @@ var searchData= ['api_5fuser',['api_user',['../include_2api_8php.html#afb99daa6b731bf497b81f2128084852c',1,'api.php']]], ['api_5fusers_5fshow',['api_users_show',['../include_2api_8php.html#abe8e929e93f7ab134b1cb1fb30f19a76',1,'api.php']]], ['appdirpath',['appdirpath',['../boot_8php.html#a75a90b0eadd0df510f7e63210733634d',1,'boot.php']]], - ['apps_5fcontent',['apps_content',['../apps_8php.html#a546016cb960d0b110ee8e489dfa6c27c',1,'apps.php']]], + ['apps_5fcontent',['apps_content',['../mod_2apps_8php.html#a546016cb960d0b110ee8e489dfa6c27c',1,'apps.php']]], ['apw_5fform',['apw_form',['../view_2theme_2apw_2php_2config_8php.html#ad59fc09da66b66267f9753c8b2dd68d0',1,'config.php']]], ['apw_5finit',['apw_init',['../apw_2php_2theme_8php.html#a42167c539043a39a6b83c252d05f1e89',1,'theme.php']]], ['argc',['argc',['../boot_8php.html#abc0a90a1a77f5b668aa7e4b57d1776a7',1,'boot.php']]], diff --git a/doc/html/search/functions_67.js b/doc/html/search/functions_67.js index 8257daf9c..65ceefc89 100644 --- a/doc/html/search/functions_67.js +++ b/doc/html/search/functions_67.js @@ -76,6 +76,7 @@ var searchData= ['get_5frel_5flink',['get_rel_link',['../text_8php.html#a3972701c5c83624ec4e2d06242f614e7',1,'text.php']]], ['get_5frpost_5fpath',['get_rpost_path',['../zot_8php.html#a8e22dbc6f884be3644a892a876cbd972',1,'zot.php']]], ['get_5fsys_5fchannel',['get_sys_channel',['../identity_8php.html#aaff86ee3b5984821e7a256c2da5f1a51',1,'identity.php']]], + ['get_5fsystem_5fapps',['get_system_apps',['../include_2apps_8php.html#ae64f72eb4f126e03b4eb65ed1702a3ca',1,'apps.php']]], ['get_5ftags',['get_tags',['../text_8php.html#a4659fbc4e54ddc700c3aa66b9092c623',1,'text.php']]], ['get_5ftemplate',['get_template',['../classItem.html#aba23a0a9d89e316d2b343cc46d695d91',1,'Item']]], ['get_5ftemplate_5fdata',['get_template_data',['../classConversation.html#a2a96b7a6573ae53db861624659e831cb',1,'Conversation\get_template_data()'],['../classItem.html#ad5dcbe0b94cb2d5719bc5b6bd8ad60c8',1,'Item\get_template_data()']]], diff --git a/doc/html/search/functions_70.js b/doc/html/search/functions_70.js index 3dd18c917..7f5cf54ce 100644 --- a/doc/html/search/functions_70.js +++ b/doc/html/search/functions_70.js @@ -4,6 +4,7 @@ var searchData= ['page_5finit',['page_init',['../page_8php.html#a4d89800c0366a239191b1692c09635cf',1,'page.php']]], ['pagelist_5fwidget',['pagelist_widget',['../page__widgets_8php.html#a39d547771c5f12a17c097436c82f0fa2',1,'page_widgets.php']]], ['paginate',['paginate',['../text_8php.html#afe9f178d264d44a94dc1292aaf0fd585',1,'text.php']]], + ['parse_5fapp_5fdescription',['parse_app_description',['../include_2apps_8php.html#a32fe4ed9666228fd4b67dc487cc57a83',1,'apps.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']]], ['parsed',['parsed',['../classFriendicaSmarty.html#a6a4d4281d6fa9be1d37a97b188ffe8c9',1,'FriendicaSmarty']]], @@ -33,6 +34,7 @@ var searchData= ['pipe_5fstreams',['pipe_streams',['../include_2attach_8php.html#a5d484de2d19a93071571d6499a50ae34',1,'attach.php']]], ['pkcs5_5fpad',['pkcs5_pad',['../crypto_8php.html#ad5e51fd44cff93cfaa07a37e24a5edec',1,'crypto.php']]], ['pkcs5_5funpad',['pkcs5_unpad',['../crypto_8php.html#ac95ac3b1b23b65b04a86613d4206ae85',1,'crypto.php']]], + ['plugin_5fis_5finstalled',['plugin_is_installed',['../plugin_8php.html#a855c4fdb38c0fc2714d537752a4347f9',1,'plugin.php']]], ['po2php_5frun',['po2php_run',['../po2php_8php.html#a3b75e36f913198299e99559b175cd8b4',1,'po2php.php']]], ['poco_5finit',['poco_init',['../poco_8php.html#a53def16f75e3d41f1d2bb7cfa4905498',1,'poco.php']]], ['poco_5fload',['poco_load',['../socgraph_8php.html#a5ef8bef37161df53718a21e93d02fbd6',1,'socgraph.php']]], diff --git a/doc/html/search/functions_72.js b/doc/html/search/functions_72.js index 277dd8c6f..17e5489fa 100644 --- a/doc/html/search/functions_72.js +++ b/doc/html/search/functions_72.js @@ -14,6 +14,7 @@ var searchData= ['red_5funescape_5fcodeblock',['red_unescape_codeblock',['../items_8php.html#ad4ee16e3ff1eaf60428c61f82ba25e6a',1,'items.php']]], ['red_5fxmlrpc_5fmethods',['red_xmlrpc_methods',['../post__to__red_8php.html#a3a2af6ad845239f26e86fccabf8639e1',1,'post_to_red.php']]], ['red_5fzrl_5fcallback',['red_zrl_callback',['../items_8php.html#a4e6d7639431e0dd8e9f4dba8e1ac408b',1,'items.php']]], + ['red_5fzrlify_5fimg_5fcallback',['red_zrlify_img_callback',['../items_8php.html#a78a60e39f6991bd3324a24dcbf9dac5a',1,'items.php']]], ['redbasic_5fform',['redbasic_form',['../view_2theme_2redbasic_2php_2config_8php.html#a8574a41fa9735ee391ba57ab24b93793',1,'config.php']]], ['redbasic_5finit',['redbasic_init',['../redbasic_2php_2theme_8php.html#af6eb813e9fc7e2d76ac1b82bc5c0ed9b',1,'theme.php']]], ['redchannellist',['RedChannelList',['../reddav_8php.html#ae92ea0df1993f6a7bcd1b6efa6c1fb66',1,'reddav.php']]], diff --git a/doc/html/search/functions_74.js b/doc/html/search/functions_74.js index ec44396e3..a5e9f0f39 100644 --- a/doc/html/search/functions_74.js +++ b/doc/html/search/functions_74.js @@ -31,6 +31,7 @@ var searchData= ['toggle_5fmobile_5finit',['toggle_mobile_init',['../toggle__mobile_8php.html#aca53ade8971802b45c31e722b22c6254',1,'toggle_mobile.php']]], ['toggle_5fsafesearch_5finit',['toggle_safesearch_init',['../toggle__safesearch_8php.html#a23d5cfb2727a266e44993ffbf5595a79',1,'toggle_safesearch.php']]], ['toggle_5ftheme',['toggle_theme',['../admin_8php.html#af81f081851791cd15e49e8ff6722dc27',1,'admin.php']]], + ['translate_5fsystem_5fapps',['translate_system_apps',['../include_2apps_8php.html#a48289d5cc44b7638191738106ac5d030',1,'apps.php']]], ['tryoembed',['tryoembed',['../bbcode_8php.html#a55b0cb6973f1ec731de0e726bcc0efa7',1,'bbcode.php']]], ['tryzrlaudio',['tryzrlaudio',['../bbcode_8php.html#a39de4de32a9456d1ca914d0dc52bd322',1,'bbcode.php']]], ['tryzrlvideo',['tryzrlvideo',['../bbcode_8php.html#aa92f119341f4c69dcef2768a013079b8',1,'bbcode.php']]], diff --git a/doc/html/search/functions_77.js b/doc/html/search/functions_77.js index bebbf9ac8..c8b0145e5 100644 --- a/doc/html/search/functions_77.js +++ b/doc/html/search/functions_77.js @@ -9,6 +9,7 @@ var searchData= ['wfinger_5finit',['wfinger_init',['../wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3',1,'wfinger.php']]], ['what_5fnext',['what_next',['../setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58',1,'setup.php']]], ['widget_5faffinity',['widget_affinity',['../widgets_8php.html#add9b24d3304e529a7975e96122315554',1,'widgets.php']]], + ['widget_5fappselect',['widget_appselect',['../widgets_8php.html#aced5cb177f630b30799c5eab873ee75c',1,'widgets.php']]], ['widget_5farchive',['widget_archive',['../widgets_8php.html#a7b1e357b5a2027718470b77ec921fc65',1,'widgets.php']]], ['widget_5fbookmarkedchats',['widget_bookmarkedchats',['../widgets_8php.html#a0e2f5179ed1a73b282dfda7270fcabb3',1,'widgets.php']]], ['widget_5fcategories',['widget_categories',['../widgets_8php.html#af37fdad3b2e861d860a4a8c4d8a76c0b',1,'widgets.php']]], @@ -27,6 +28,7 @@ var searchData= ['widget_5fmailmenu',['widget_mailmenu',['../widgets_8php.html#afa2e55a78f95667a6da082efac7fec74',1,'widgets.php']]], ['widget_5fmenu_5fpreview',['widget_menu_preview',['../widgets_8php.html#a3bdfb81bf9a8ddf219924fa7eaf22013',1,'widgets.php']]], ['widget_5fnotes',['widget_notes',['../widgets_8php.html#a45ea061dabe9a8372e4ca3b9e5714256',1,'widgets.php']]], + ['widget_5fphoto',['widget_photo',['../widgets_8php.html#a999ba893cac7600d3d3b4e7e14cf8c20',1,'widgets.php']]], ['widget_5fphoto_5falbums',['widget_photo_albums',['../widgets_8php.html#a702e2fc0adc9b615999eca18b7311b5e',1,'widgets.php']]], ['widget_5fprofile',['widget_profile',['../widgets_8php.html#abd2e508a2a0b911c4a838e3cb7599923',1,'widgets.php']]], ['widget_5fsavedsearch',['widget_savedsearch',['../widgets_8php.html#a94203eb9bcd63cbdecbbcb15163598d8',1,'widgets.php']]], diff --git a/doc/html/text_8php.html b/doc/html/text_8php.html index dd2941603..a104988d9 100644 --- a/doc/html/text_8php.html +++ b/doc/html/text_8php.html @@ -1298,7 +1298,7 @@ Variables
    -

    Referenced by RedDirectory\__construct(), RedFile\__construct(), account_remove(), account_verify_password(), Item\add_child(), Conversation\add_thread(), admin_content(), admin_page_hubloc_post(), admin_post(), advanced_profile(), aes_encapsulate(), allowed_public_recips(), api_call(), api_channel_stream(), api_export_basic(), api_favorites(), api_get_user(), api_login(), api_oauth_request_token(), api_statuses_destroy(), api_statuses_mediap(), api_statuses_repeat(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), attach_mkdir(), avatar_img(), base64url_decode(), blog_install(), blog_uninstall(), bookmark_add(), bookmarks_init(), build_sync_packet(), chanman_remove_everything_from_network(), channel_remove(), chanview_content(), chat_post(), check_config(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), RedDirectory\childExists(), cloud_init(), connedit_post(), consume_feed(), conversation(), create_account(), create_identity(), RedDirectory\createDirectory(), RedDirectory\createFile(), cronhooks_run(), datetime_convert(), delete_imported_item(), deliver_run(), detect_language(), dir_parse_query(), directory_content(), directory_run(), dirprofile_init(), downgrade_accounts(), email_send(), encode_item(), expire_run(), externals_run(), feed_init(), fetch_lrdd_template(), filer_content(), filerm_content(), fix_private_photos(), fix_system_urls(), RedFile\get(), get_atom_elements(), get_item_elements(), get_language_name(), Conversation\get_template_data(), RedDirectory\getChild(), RedDirectory\getChildren(), RedDirectory\getDir(), RedDirectory\getName(), RedFile\getName(), group_content(), guess_image_type(), head_set_icon(), http_status_exit(), import_author_rss(), import_author_zot(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), item_post(), item_store(), item_store_update(), like_content(), limit_body_size(), load_plugin(), local_dir_update(), localize_item(), RedDirectory\log(), RedBasicAuth\log(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_token(), magic_init(), mail_post(), mail_store(), menu_edit(), mini_group_select(), mood_init(), FKOAuthDataStore\new_access_token(), new_contact(), new_keypair(), FKOAuthDataStore\new_request_token(), notes_init(), notification(), notifier_run(), onedirsync_run(), onepoll_run(), openid_content(), 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(), profile_photo_set_profile_perms(), profile_sidebar(), prune_hub_reinstalls(), public_recips(), RedFile\put(), dba_mysql\q(), dba_mysqli\q(), q(), queue_run(), rbmark_post(), red_item_new(), RedChannelList(), RedCollectionData(), RedFileData(), 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(), RedFile\setName(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), sync_directories(), tag_deliver(), tagger_content(), tgroup_check(), uninstall_plugin(), unload_plugin(), update_directory_entry(), update_imported_item(), update_queue_time(), RedBasicAuth\validateUserPass(), webfinger(), webfinger_dfrn(), xml2array(), xml_status(), z_fetch_url(), z_post_url(), zfinger_init(), zid_init(), zot_build_packet(), zot_feed(), zot_fetch(), zot_finger(), zot_gethub(), zot_import(), zot_process_response(), zot_refresh(), zot_register_hub(), and zotfeed_init().

    +

    Referenced by RedDirectory\__construct(), RedFile\__construct(), account_remove(), account_verify_password(), Item\add_child(), Conversation\add_thread(), admin_content(), admin_page_hubloc_post(), admin_post(), advanced_profile(), aes_encapsulate(), allowed_public_recips(), api_call(), api_channel_stream(), api_export_basic(), api_favorites(), api_get_user(), api_login(), api_oauth_request_token(), api_statuses_destroy(), api_statuses_mediap(), api_statuses_repeat(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), attach_mkdir(), avatar_img(), base64url_decode(), blog_install(), blog_uninstall(), bookmark_add(), bookmarks_init(), build_sync_packet(), chanman_remove_everything_from_network(), channel_remove(), chanview_content(), chat_post(), check_config(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), RedDirectory\childExists(), cloud_init(), connedit_post(), consume_feed(), conversation(), create_account(), create_identity(), RedDirectory\createDirectory(), RedDirectory\createFile(), cronhooks_run(), datetime_convert(), delete_imported_item(), deliver_run(), detect_language(), dir_parse_query(), directory_content(), directory_run(), dirprofile_init(), downgrade_accounts(), email_send(), encode_item(), expire_run(), externals_run(), feed_init(), fetch_lrdd_template(), filer_content(), filerm_content(), fix_private_photos(), fix_system_urls(), RedFile\get(), get_atom_elements(), get_item_elements(), get_language_name(), Conversation\get_template_data(), RedDirectory\getChild(), RedDirectory\getChildren(), RedDirectory\getDir(), RedDirectory\getName(), RedFile\getName(), group_content(), guess_image_type(), head_set_icon(), http_status_exit(), import_author_rss(), import_author_zot(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), item_post(), item_store(), item_store_update(), like_content(), limit_body_size(), load_plugin(), local_dir_update(), localize_item(), RedDirectory\log(), RedBasicAuth\log(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_token(), magic_init(), mail_post(), mail_store(), menu_edit(), mini_group_select(), mood_init(), FKOAuthDataStore\new_access_token(), new_contact(), new_keypair(), FKOAuthDataStore\new_request_token(), notes_init(), notification(), notifier_run(), onedirsync_run(), onepoll_run(), openid_content(), parse_app_description(), 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(), profile_photo_set_profile_perms(), profile_sidebar(), prune_hub_reinstalls(), public_recips(), RedFile\put(), dba_mysql\q(), dba_mysqli\q(), q(), queue_run(), rbmark_post(), red_item_new(), RedChannelList(), RedCollectionData(), RedFileData(), 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(), RedFile\setName(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), sync_directories(), tag_deliver(), tagger_content(), tgroup_check(), uninstall_plugin(), unload_plugin(), update_directory_entry(), update_imported_item(), update_queue_time(), RedBasicAuth\validateUserPass(), webfinger(), webfinger_dfrn(), xml2array(), xml_status(), z_fetch_url(), z_post_url(), zfinger_init(), zid_init(), zot_build_packet(), zot_feed(), zot_fetch(), zot_finger(), zot_gethub(), zot_import(), zot_process_response(), zot_refresh(), zot_register_hub(), and zotfeed_init().

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

    Referenced by admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_plugins(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), alt_pager(), api_apply_template(), api_content(), apps_content(), apw_form(), blocks_content(), blogtheme_form(), App\build_pagehead(), categories_widget(), channel_content(), chanview_content(), chat_content(), check_config(), check_php(), common_content(), common_friends_visitor_widget(), connect_content(), connections_content(), connedit_content(), construct_page(), contact_block(), conversation(), delegate_content(), design_tools(), dir_safe_mode(), dir_sort_links(), directory_content(), dirprofile_init(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), fbrowser_content(), field_timezone(), fileas_widget(), filer_content(), filestorage_content(), findpeople_widget(), format_categories(), format_filer(), get_birthdays(), Item\get_comment_box(), get_events(), get_feed_for(), group_content(), group_side(), help_content(), hostxrd_init(), identity_selector(), import_content(), invite_content(), lang_selector(), layouts_content(), login(), lostpass_content(), lostpass_post(), mail_content(), manage_content(), match_content(), menu_content(), menu_render(), message_content(), micropro(), mini_group_select(), mitem_content(), mood_content(), nav(), network_content(), new_channel_content(), notification(), notifications_content(), notify_content(), oembed_format_object(), oexchange_init(), opensearch_init(), pagelist_widget(), pdledit_content(), photos_album_widget(), photos_content(), poco_init(), poke_content(), populate_acl(), profile_sidebar(), profiles_content(), rbmark_content(), redbasic_form(), register_content(), removeme_content(), rmagic_content(), rpost_content(), search_content(), send_reg_approval_email(), send_verification_email(), setup_content(), setup_post(), siteinfo_content(), sources_content(), suggest_content(), theme_attachments(), thing_content(), user_allow(), vcard_from_xchan(), viewconnections_content(), vote_content(), webpages_content(), widget_affinity(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), writepages_widget(), and xrd_init().

    +

    Referenced by admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_plugins(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), alt_pager(), api_apply_template(), api_content(), apps_content(), apw_form(), blocks_content(), blogtheme_form(), App\build_pagehead(), categories_widget(), channel_content(), chanview_content(), chat_content(), check_config(), check_php(), common_content(), common_friends_visitor_widget(), connect_content(), connections_content(), connedit_content(), construct_page(), contact_block(), conversation(), delegate_content(), design_tools(), dir_safe_mode(), dir_sort_links(), directory_content(), dirprofile_init(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), fbrowser_content(), field_timezone(), fileas_widget(), filer_content(), filestorage_content(), findpeople_widget(), format_categories(), format_filer(), get_birthdays(), Item\get_comment_box(), get_events(), get_feed_for(), group_content(), group_side(), help_content(), hostxrd_init(), identity_selector(), import_content(), invite_content(), lang_selector(), layouts_content(), login(), lostpass_content(), lostpass_post(), mail_content(), manage_content(), match_content(), menu_content(), menu_render(), message_content(), micropro(), mini_group_select(), mitem_content(), mood_content(), nav(), network_content(), new_channel_content(), notification(), notifications_content(), notify_content(), oembed_format_object(), oexchange_init(), opensearch_init(), pagelist_widget(), pdledit_content(), photos_album_widget(), photos_content(), poco_init(), poke_content(), populate_acl(), profile_sidebar(), profiles_content(), rbmark_content(), redbasic_form(), register_content(), removeme_content(), rmagic_content(), rpost_content(), search_content(), send_reg_approval_email(), send_verification_email(), setup_content(), setup_post(), siteinfo_content(), sources_content(), suggest_content(), theme_attachments(), thing_content(), user_allow(), vcard_from_xchan(), viewconnections_content(), vote_content(), webpages_content(), widget_affinity(), widget_appselect(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), writepages_widget(), and xrd_init().

    @@ -2035,7 +2035,7 @@ Variables diff --git a/doc/html/typo_8php.html b/doc/html/typo_8php.html index 51887407c..529a23a22 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(), achievements_content(), acl_init(), admin_content(), admin_page_channels(), admin_page_channels_post(), admin_page_dbsync(), admin_page_hubloc(), admin_page_hubloc_post(), 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(), 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(), apw_form(), atom_entry(), attribute_contains(), authenticate_success(), avatar_img(), bb_sanitize_style(), bbcode(), best_link_url(), block_content(), block_init(), blocks_content(), blog_init(), blogtheme_display_item(), blogtheme_form(), blogtheme_imgurl(), bookmarks_content(), bookmarks_init(), build_sync_packet(), cal(), call_hooks(), categories_widget(), channel_content(), channel_init(), channel_remove(), chanview_content(), chat_content(), chat_init(), chat_post(), chatsvc_content(), chatsvc_init(), chatsvc_post(), 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(), cloud_init(), comanche_parser(), comanche_replace_region(), comanche_widget(), common_content(), common_friends_visitor_widget(), common_init(), connect_content(), connect_init(), connect_post(), connections_clone(), connections_content(), connections_init(), connections_post(), connedit_clone(), connedit_content(), connedit_init(), connedit_post(), construct_page(), contact_block(), contact_select(), conversation(), create_identity(), current_theme(), current_theme_url(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), deliver_run(), directory_content(), directory_init(), dirsearch_init(), display_content(), dlogger(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), ev_compare(), event_store(), events_content(), events_post(), expand_acl(), expand_groups(), externals_run(), fbrowser_content(), fileas_widget(), filer_content(), filerm_content(), filestorage_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_custom_nav(), get_events(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_pconfig(), get_plink(), Item\get_template_data(), get_theme_screenshot(), get_xconfig(), gprobe_run(), group_content(), group_post(), group_select(), guess_image_type(), handle_tag(), head_get_icon(), head_remove_css(), head_remove_js(), head_set_icon(), help_content(), home_content(), home_init(), hostxrd_init(), import_channel_photo(), import_post(), import_profile_photo(), info(), insert_hook(), invite_content(), invite_post(), is_developer(), is_site_admin(), item_photo_menu(), item_post(), items_fetch(), lang_selector(), layouts_content(), like_content(), 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(), magic_init(), mail_content(), mail_post(), manual_config(), match_content(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_init(), msearch_post(), mytheme_init(), nav(), nav_set_selected(), network_content(), network_init(), new_contact(), notice(), notification(), notifications_content(), notifications_post(), notifier_run(), notify_content(), notify_init(), oembed_fetch_url(), oembed_format_object(), oembed_iframe(), oexchange_content(), oexchange_init(), onedirsync_run(), onepoll_run(), openid_content(), 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(), preg_heart(), prepare_body(), probe_content(), proc_run(), profile_activity(), profile_content(), profile_create_sidebar(), profile_init(), profile_load(), profile_photo_init(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_init(), push_lang(), queue_run(), randprof_init(), rbmark_content(), rbmark_post(), red_item_new(), redbasic_form(), register_content(), regmod_content(), relative_date(), removeme_content(), removeme_post(), replace_macros(), rmagic_post(), rpost_content(), scale_external_images(), search(), search_ac_init(), search_content(), search_init(), searchbox(), send_message(), service_class_allows(), service_class_fetch(), set_config(), Conversation\set_mode(), set_pconfig(), set_xconfig(), settings_init(), settings_post(), setup_content(), setup_post(), share_init(), siteinfo_content(), siteinfo_init(), smilies(), sources_post(), subthread_content(), suggest_content(), t(), tag_deliver(), tag_sort_length(), tagger_content(), tagrm_content(), tagrm_post(), tags_sort(), terminate_friendship(), tgroup_check(), theme_admin(), theme_content(), theme_include(), thing_init(), timezone_cmp(), toggle_mobile_init(), tt(), uexport_init(), update_channel_content(), update_display_content(), update_network_content(), update_search_content(), update_suggestions(), user_allow(), vcard_from_xchan(), viewconnections_content(), viewconnections_init(), viewsrc_content(), vote_content(), vote_init(), vote_post(), wall_upload_post(), webpages_content(), wfinger_init(), what_next(), widget_archive(), widget_categories(), widget_chatroom_list(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_item(), widget_mailmenu(), widget_photo_albums(), widget_profile(), widget_savedsearch(), widget_settings_menu(), widget_tagcloud(), widget_tagcloud_wall(), xrd_init(), z_fetch_url(), z_path(), z_root(), zfinger_init(), zid_init(), zotfeed_init(), and zping_content().

    +

    Referenced by FriendicaSmarty\__construct(), Item\__construct(), FriendicaSmartyEngine\__construct(), Template\_replcb_if(), Template\_replcb_inc(), _well_known_init(), abook_toggle_flag(), achievements_content(), acl_init(), admin_content(), admin_page_channels(), admin_page_channels_post(), admin_page_dbsync(), admin_page_hubloc(), admin_page_hubloc_post(), 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(), 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(), apw_form(), atom_entry(), attribute_contains(), authenticate_success(), avatar_img(), bb_sanitize_style(), bbcode(), best_link_url(), block_content(), block_init(), blocks_content(), blog_init(), blogtheme_display_item(), blogtheme_form(), blogtheme_imgurl(), bookmarks_content(), bookmarks_init(), build_sync_packet(), cal(), call_hooks(), categories_widget(), channel_content(), channel_init(), channel_remove(), chanview_content(), chat_content(), chat_init(), chat_post(), chatsvc_content(), chatsvc_init(), chatsvc_post(), 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(), cloud_init(), comanche_parser(), comanche_replace_region(), comanche_widget(), common_content(), common_friends_visitor_widget(), common_init(), connect_content(), connect_init(), connect_post(), connections_clone(), connections_content(), connections_init(), connections_post(), connedit_clone(), connedit_content(), connedit_init(), connedit_post(), construct_page(), contact_block(), contact_select(), conversation(), create_identity(), current_theme(), current_theme_url(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), deliver_run(), directory_content(), directory_init(), dirsearch_init(), display_content(), dlogger(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), ev_compare(), event_store(), events_content(), events_post(), expand_acl(), expand_groups(), externals_run(), fbrowser_content(), fileas_widget(), filer_content(), filerm_content(), filestorage_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_custom_nav(), get_events(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_pconfig(), get_plink(), Item\get_template_data(), get_theme_screenshot(), get_xconfig(), gprobe_run(), group_content(), group_post(), group_select(), guess_image_type(), handle_tag(), head_get_icon(), head_remove_css(), head_remove_js(), head_set_icon(), help_content(), home_content(), home_init(), hostxrd_init(), import_channel_photo(), import_post(), import_profile_photo(), info(), insert_hook(), invite_content(), invite_post(), is_developer(), is_site_admin(), item_photo_menu(), item_post(), items_fetch(), lang_selector(), layouts_content(), like_content(), 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(), magic_init(), mail_content(), mail_post(), manual_config(), match_content(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_init(), msearch_post(), mytheme_init(), nav(), nav_set_selected(), network_content(), network_init(), new_contact(), notice(), notification(), notifications_content(), notifications_post(), notifier_run(), notify_content(), notify_init(), oembed_fetch_url(), oembed_format_object(), oembed_iframe(), oexchange_content(), oexchange_init(), onedirsync_run(), onepoll_run(), openid_content(), 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(), preg_heart(), prepare_body(), probe_content(), proc_run(), profile_activity(), profile_content(), profile_create_sidebar(), profile_init(), profile_load(), profile_photo_init(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_init(), push_lang(), queue_run(), randprof_init(), rbmark_content(), rbmark_post(), red_item_new(), redbasic_form(), register_content(), regmod_content(), relative_date(), removeme_content(), removeme_post(), replace_macros(), rmagic_post(), rpost_content(), scale_external_images(), search(), search_ac_init(), search_content(), search_init(), searchbox(), send_message(), service_class_allows(), service_class_fetch(), set_config(), Conversation\set_mode(), set_pconfig(), set_xconfig(), settings_init(), settings_post(), setup_content(), setup_post(), share_init(), siteinfo_content(), siteinfo_init(), smilies(), sources_post(), subthread_content(), suggest_content(), t(), tag_deliver(), tag_sort_length(), tagger_content(), tagrm_content(), tagrm_post(), tags_sort(), terminate_friendship(), tgroup_check(), theme_admin(), theme_content(), theme_include(), thing_init(), timezone_cmp(), toggle_mobile_init(), tt(), uexport_init(), update_channel_content(), update_display_content(), update_network_content(), update_search_content(), update_suggestions(), user_allow(), vcard_from_xchan(), viewconnections_content(), viewconnections_init(), viewsrc_content(), vote_content(), vote_init(), vote_post(), wall_upload_post(), webpages_content(), wfinger_init(), what_next(), widget_archive(), widget_categories(), widget_chatroom_list(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_item(), widget_mailmenu(), widget_photo_albums(), widget_profile(), widget_savedsearch(), widget_settings_menu(), widget_tagcloud(), widget_tagcloud_wall(), xrd_init(), z_fetch_url(), z_path(), z_root(), zfinger_init(), zid_init(), zotfeed_init(), and zping_content().

    diff --git a/doc/html/widgets_8php.html b/doc/html/widgets_8php.html index 87256032c..871283917 100644 --- a/doc/html/widgets_8php.html +++ b/doc/html/widgets_8php.html @@ -118,6 +118,8 @@ Functions    widget_collections ($args)   + widget_appselect ($arr) +   widget_suggestions ($arr)    widget_follow ($args) @@ -168,6 +170,8 @@ Functions    widget_clock ($arr)   + widget_photo ($arr) + 

    Function Documentation

    @@ -184,6 +188,22 @@ Functions
    +
    + + +
    +
    + + + + + + + + +
    widget_appselect ( $arr)
    +
    +
    @@ -475,6 +495,29 @@ Functions
    +
    + + +
    +
    + + + + + + + + +
    widget_photo ( $arr)
    +
    +

    widget_photo($arr) widget to display a single photo.

    +
    Parameters
    + + +
    array$arr,;'src' => URL of photo 'zrl' => true or false, use zid in url 'style' => CSS string URL must be an http or https URL
    +
    +
    +
    diff --git a/doc/html/widgets_8php.js b/doc/html/widgets_8php.js index 557a2e5b8..69c9d267d 100644 --- a/doc/html/widgets_8php.js +++ b/doc/html/widgets_8php.js @@ -1,6 +1,7 @@ var widgets_8php = [ [ "widget_affinity", "widgets_8php.html#add9b24d3304e529a7975e96122315554", null ], + [ "widget_appselect", "widgets_8php.html#aced5cb177f630b30799c5eab873ee75c", null ], [ "widget_archive", "widgets_8php.html#a7b1e357b5a2027718470b77ec921fc65", null ], [ "widget_bookmarkedchats", "widgets_8php.html#a0e2f5179ed1a73b282dfda7270fcabb3", null ], [ "widget_categories", "widgets_8php.html#af37fdad3b2e861d860a4a8c4d8a76c0b", null ], @@ -19,6 +20,7 @@ var widgets_8php = [ "widget_mailmenu", "widgets_8php.html#afa2e55a78f95667a6da082efac7fec74", null ], [ "widget_menu_preview", "widgets_8php.html#a3bdfb81bf9a8ddf219924fa7eaf22013", null ], [ "widget_notes", "widgets_8php.html#a45ea061dabe9a8372e4ca3b9e5714256", null ], + [ "widget_photo", "widgets_8php.html#a999ba893cac7600d3d3b4e7e14cf8c20", null ], [ "widget_photo_albums", "widgets_8php.html#a702e2fc0adc9b615999eca18b7311b5e", null ], [ "widget_profile", "widgets_8php.html#abd2e508a2a0b911c4a838e3cb7599923", null ], [ "widget_savedsearch", "widgets_8php.html#a94203eb9bcd63cbdecbbcb15163598d8", null ], diff --git a/util/messages.po b/util/messages.po index b3582dcb0..c92f0e5f9 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2014-05-09.670\n" +"Project-Id-Version: 2014-05-16.677\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-09 00:03-0700\n" +"POT-Creation-Date: 2014-05-16 00:02-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,6 +29,34 @@ msgstr "" msgid "Profile Photos" msgstr "" +#: ../../include/apps.php:107 ../../include/nav.php:158 +msgid "Matrix" +msgstr "" + +#: ../../include/apps.php:107 ../../include/nav.php:161 +msgid "Channel Home" +msgstr "" + +#: ../../include/apps.php:107 ../../include/identity.php:942 +#: ../../include/identity.php:1031 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "" + +#: ../../include/apps.php:108 ../../include/conversation.php:1501 +#: ../../include/nav.php:84 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "" + +#: ../../include/apps.php:108 ../../include/conversation.php:1532 +#: ../../include/nav.php:87 ../../include/nav.php:180 ../../mod/events.php:366 +msgid "Events" +msgstr "" + +#: ../../include/apps.php:108 ../../include/nav.php:147 +#: ../../mod/directory.php:210 +msgid "Directory" +msgstr "" + #: ../../include/oembed.php:171 msgid "Embedded content" msgstr "" @@ -47,7 +75,7 @@ msgid "commented on %s's post" msgstr "" #: ../../include/Contact.php:107 ../../include/identity.php:675 -#: ../../include/widgets.php:115 ../../include/widgets.php:155 +#: ../../include/widgets.php:127 ../../include/widgets.php:167 #: ../../mod/directory.php:183 ../../mod/dirprofile.php:164 #: ../../mod/suggest.php:51 ../../mod/match.php:62 msgid "Connect" @@ -81,8 +109,8 @@ msgstr "" msgid "View" msgstr "" -#: ../../include/page_widgets.php:40 ../../include/conversation.php:1088 -#: ../../include/ItemObject.php:570 ../../mod/editblock.php:141 +#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:570 +#: ../../include/conversation.php:1088 ../../mod/editblock.php:141 #: ../../mod/editlayout.php:135 ../../mod/editpost.php:140 #: ../../mod/editwebpage.php:175 ../../mod/webpages.php:123 #: ../../mod/photos.php:994 @@ -250,7 +278,7 @@ msgstr "" #: ../../include/attach.php:243 ../../include/attach.php:283 #: ../../include/attach.php:297 ../../include/attach.php:322 #: ../../include/attach.php:513 ../../include/attach.php:585 -#: ../../include/chat.php:116 ../../include/items.php:3620 +#: ../../include/chat.php:116 ../../include/items.php:3645 #: ../../mod/mood.php:119 ../../mod/mitem.php:73 ../../mod/achievements.php:27 #: ../../mod/poke.php:128 ../../mod/api.php:26 ../../mod/api.php:31 #: ../../mod/authtest.php:13 ../../mod/profile.php:64 ../../mod/profile.php:72 @@ -273,7 +301,7 @@ msgstr "" #: ../../mod/fsuggest.php:78 ../../mod/suggest.php:26 ../../mod/group.php:9 #: ../../mod/thing.php:247 ../../mod/thing.php:263 ../../mod/thing.php:298 #: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/item.php:179 -#: ../../mod/item.php:187 ../../mod/item.php:867 ../../mod/layouts.php:27 +#: ../../mod/item.php:187 ../../mod/item.php:872 ../../mod/layouts.php:27 #: ../../mod/layouts.php:39 ../../mod/viewconnections.php:22 #: ../../mod/viewconnections.php:27 ../../mod/viewsrc.php:12 #: ../../mod/mail.php:108 ../../mod/manage.php:6 ../../mod/menu.php:44 @@ -421,11 +449,11 @@ msgstr "" msgid "Logged out." msgstr "" -#: ../../include/auth.php:197 +#: ../../include/auth.php:198 msgid "Failed authentication" msgstr "" -#: ../../include/auth.php:212 ../../mod/openid.php:188 +#: ../../include/auth.php:213 ../../mod/openid.php:188 msgid "Login failed." msgstr "" @@ -447,17 +475,17 @@ msgstr "" msgid "Location:" msgstr "" -#: ../../include/bbcode.php:128 ../../include/bbcode.php:609 -#: ../../include/bbcode.php:612 ../../include/bbcode.php:617 -#: ../../include/bbcode.php:620 ../../include/bbcode.php:623 -#: ../../include/bbcode.php:626 ../../include/bbcode.php:631 -#: ../../include/bbcode.php:634 ../../include/bbcode.php:639 -#: ../../include/bbcode.php:642 ../../include/bbcode.php:645 -#: ../../include/bbcode.php:648 +#: ../../include/bbcode.php:128 ../../include/bbcode.php:633 +#: ../../include/bbcode.php:636 ../../include/bbcode.php:641 +#: ../../include/bbcode.php:644 ../../include/bbcode.php:647 +#: ../../include/bbcode.php:650 ../../include/bbcode.php:655 +#: ../../include/bbcode.php:658 ../../include/bbcode.php:663 +#: ../../include/bbcode.php:666 ../../include/bbcode.php:669 +#: ../../include/bbcode.php:672 msgid "Image/photo" msgstr "" -#: ../../include/bbcode.php:163 ../../include/bbcode.php:659 +#: ../../include/bbcode.php:163 ../../include/bbcode.php:683 msgid "Encrypted content" msgstr "" @@ -474,10 +502,223 @@ msgstr "" msgid "post" msgstr "" -#: ../../include/bbcode.php:577 ../../include/bbcode.php:597 +#: ../../include/bbcode.php:601 ../../include/bbcode.php:621 msgid "$1 wrote:" msgstr "" +#: ../../include/ItemObject.php:89 ../../include/conversation.php:639 +#: ../../mod/photos.php:846 +msgid "Private Message" +msgstr "" + +#: ../../include/ItemObject.php:108 ../../include/conversation.php:632 +#: ../../mod/admin.php:757 ../../mod/admin.php:886 ../../mod/connedit.php:398 +#: ../../mod/settings.php:578 ../../mod/filestorage.php:175 +#: ../../mod/group.php:176 ../../mod/thing.php:236 ../../mod/photos.php:1043 +msgid "Delete" +msgstr "" + +#: ../../include/ItemObject.php:114 ../../include/conversation.php:631 +msgid "Select" +msgstr "" + +#: ../../include/ItemObject.php:118 +msgid "save to folder" +msgstr "" + +#: ../../include/ItemObject.php:128 +msgid "Like" +msgstr "" + +#: ../../include/ItemObject.php:128 ../../mod/profiles.php:302 +msgid "Likes" +msgstr "" + +#: ../../include/ItemObject.php:132 +msgid "Dislike" +msgstr "" + +#: ../../include/ItemObject.php:132 ../../mod/profiles.php:306 +msgid "Dislikes" +msgstr "" + +#: ../../include/ItemObject.php:154 +msgid "add star" +msgstr "" + +#: ../../include/ItemObject.php:155 +msgid "remove star" +msgstr "" + +#: ../../include/ItemObject.php:156 +msgid "toggle star status" +msgstr "" + +#: ../../include/ItemObject.php:160 +msgid "starred" +msgstr "" + +#: ../../include/ItemObject.php:169 ../../include/conversation.php:646 +msgid "Message is verified" +msgstr "" + +#: ../../include/ItemObject.php:177 +msgid "add tag" +msgstr "" + +#: ../../include/ItemObject.php:192 ../../mod/photos.php:971 +msgid "I like this (toggle)" +msgstr "" + +#: ../../include/ItemObject.php:192 ../../include/taxonomy.php:254 +msgid "like" +msgstr "" + +#: ../../include/ItemObject.php:193 ../../mod/photos.php:972 +msgid "I don't like this (toggle)" +msgstr "" + +#: ../../include/ItemObject.php:193 ../../include/taxonomy.php:255 +msgid "dislike" +msgstr "" + +#: ../../include/ItemObject.php:195 +msgid "Share this" +msgstr "" + +#: ../../include/ItemObject.php:195 +msgid "share" +msgstr "" + +#: ../../include/ItemObject.php:219 ../../include/ItemObject.php:220 +#, php-format +msgid "View %s's profile - %s" +msgstr "" + +#: ../../include/ItemObject.php:221 +msgid "to" +msgstr "" + +#: ../../include/ItemObject.php:222 +msgid "via" +msgstr "" + +#: ../../include/ItemObject.php:223 +msgid "Wall-to-Wall" +msgstr "" + +#: ../../include/ItemObject.php:224 +msgid "via Wall-To-Wall:" +msgstr "" + +#: ../../include/ItemObject.php:234 ../../include/conversation.php:690 +#, php-format +msgid " from %s" +msgstr "" + +#: ../../include/ItemObject.php:237 ../../include/conversation.php:693 +#, php-format +msgid "last edited: %s" +msgstr "" + +#: ../../include/ItemObject.php:238 ../../include/conversation.php:694 +#, php-format +msgid "Expires: %s" +msgstr "" + +#: ../../include/ItemObject.php:258 +msgid "Bookmark Links" +msgstr "" + +#: ../../include/ItemObject.php:272 ../../include/conversation.php:711 +#: ../../include/conversation.php:1127 ../../mod/editblock.php:120 +#: ../../mod/editlayout.php:115 ../../mod/editpost.php:121 +#: ../../mod/editwebpage.php:152 ../../mod/mail.php:222 ../../mod/mail.php:336 +#: ../../mod/photos.php:974 +msgid "Please wait" +msgstr "" + +#: ../../include/ItemObject.php:293 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/ItemObject.php:294 ../../include/contact_widgets.php:130 +#: ../../include/js_strings.php:7 +msgid "show more" +msgstr "" + +#: ../../include/ItemObject.php:558 ../../mod/photos.php:990 +#: ../../mod/photos.php:1077 +msgid "This is you" +msgstr "" + +#: ../../include/ItemObject.php:560 ../../include/js_strings.php:6 +#: ../../mod/photos.php:992 ../../mod/photos.php:1079 +msgid "Comment" +msgstr "" + +#: ../../include/ItemObject.php:561 ../../mod/mood.php:142 +#: ../../mod/admin.php:441 ../../mod/admin.php:750 ../../mod/admin.php:884 +#: ../../mod/admin.php:1017 ../../mod/admin.php:1216 ../../mod/admin.php:1303 +#: ../../mod/poke.php:166 ../../mod/profiles.php:506 ../../mod/chat.php:177 +#: ../../mod/chat.php:211 ../../mod/connect.php:92 ../../mod/connedit.php:476 +#: ../../mod/settings.php:515 ../../mod/settings.php:627 +#: ../../mod/settings.php:655 ../../mod/settings.php:679 +#: ../../mod/settings.php:751 ../../mod/settings.php:929 +#: ../../mod/setup.php:307 ../../mod/setup.php:350 ../../mod/pdledit.php:58 +#: ../../mod/events.php:481 ../../mod/sources.php:104 +#: ../../mod/sources.php:138 ../../mod/filestorage.php:135 +#: ../../mod/fsuggest.php:108 ../../mod/group.php:81 ../../mod/thing.php:283 +#: ../../mod/thing.php:326 ../../mod/import.php:387 ../../mod/invite.php:156 +#: ../../mod/mail.php:223 ../../mod/mail.php:335 ../../mod/photos.php:565 +#: ../../mod/photos.php:670 ../../mod/photos.php:953 ../../mod/photos.php:993 +#: ../../mod/photos.php:1080 ../../view/theme/apw/php/config.php:256 +#: ../../view/theme/blogga/php/config.php:67 +#: ../../view/theme/blogga/view/theme/blog/config.php:67 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "" + +#: ../../include/ItemObject.php:562 +msgid "Bold" +msgstr "" + +#: ../../include/ItemObject.php:563 +msgid "Italic" +msgstr "" + +#: ../../include/ItemObject.php:564 +msgid "Underline" +msgstr "" + +#: ../../include/ItemObject.php:565 +msgid "Quote" +msgstr "" + +#: ../../include/ItemObject.php:566 +msgid "Code" +msgstr "" + +#: ../../include/ItemObject.php:567 +msgid "Image" +msgstr "" + +#: ../../include/ItemObject.php:568 +msgid "Link" +msgstr "" + +#: ../../include/ItemObject.php:569 +msgid "Video" +msgstr "" + +#: ../../include/ItemObject.php:573 ../../include/conversation.php:1153 +#: ../../mod/editpost.php:148 ../../mod/mail.php:228 ../../mod/mail.php:341 +msgid "Encrypt text" +msgstr "" + #: ../../include/bookmarks.php:42 #, php-format msgid "%1$s's bookmarks" @@ -527,21 +768,11 @@ msgstr "" msgid "wants" msgstr "" -#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:128 -#: ../../include/ItemObject.php:192 -msgid "like" -msgstr "" - -#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:128 +#: ../../include/taxonomy.php:254 msgid "likes" msgstr "" -#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:132 -#: ../../include/ItemObject.php:193 -msgid "dislike" -msgstr "" - -#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:132 +#: ../../include/taxonomy.php:255 msgid "dislikes" msgstr "" @@ -684,7 +915,7 @@ msgid "Search" msgstr "" #: ../../include/text.php:815 ../../include/text.php:829 -#: ../../include/widgets.php:173 ../../mod/rbmark.php:28 +#: ../../include/widgets.php:185 ../../mod/rbmark.php:28 #: ../../mod/rbmark.php:98 ../../mod/filer.php:50 msgid "Save" msgstr "" @@ -1036,12 +1267,12 @@ msgid "Advanced Find" msgstr "" #: ../../include/contact_widgets.php:58 ../../include/features.php:66 -#: ../../include/widgets.php:283 +#: ../../include/widgets.php:295 msgid "Saved Folders" msgstr "" #: ../../include/contact_widgets.php:61 ../../include/contact_widgets.php:95 -#: ../../include/widgets.php:286 +#: ../../include/widgets.php:298 msgid "Everything" msgstr "" @@ -1056,11 +1287,6 @@ msgid_plural "%d connections in common" msgstr[0] "" msgstr[1] "" -#: ../../include/contact_widgets.php:130 ../../include/ItemObject.php:294 -#: ../../include/js_strings.php:7 -msgid "show more" -msgstr "" - #: ../../include/conversation.php:123 msgid "channel" msgstr "" @@ -1090,26 +1316,6 @@ msgstr "" msgid "%1$s is currently %2$s" msgstr "" -#: ../../include/conversation.php:631 ../../include/ItemObject.php:114 -msgid "Select" -msgstr "" - -#: ../../include/conversation.php:632 ../../include/ItemObject.php:108 -#: ../../mod/admin.php:757 ../../mod/admin.php:886 ../../mod/connedit.php:398 -#: ../../mod/settings.php:578 ../../mod/filestorage.php:175 -#: ../../mod/group.php:176 ../../mod/thing.php:236 ../../mod/photos.php:1043 -msgid "Delete" -msgstr "" - -#: ../../include/conversation.php:639 ../../include/ItemObject.php:89 -#: ../../mod/photos.php:846 -msgid "Private Message" -msgstr "" - -#: ../../include/conversation.php:646 ../../include/ItemObject.php:169 -msgid "Message is verified" -msgstr "" - #: ../../include/conversation.php:666 #, php-format msgid "View %s's profile @ %s" @@ -1123,33 +1329,10 @@ msgstr "" msgid "Filed under:" msgstr "" -#: ../../include/conversation.php:690 ../../include/ItemObject.php:234 -#, php-format -msgid " from %s" -msgstr "" - -#: ../../include/conversation.php:693 ../../include/ItemObject.php:237 -#, php-format -msgid "last edited: %s" -msgstr "" - -#: ../../include/conversation.php:694 ../../include/ItemObject.php:238 -#, php-format -msgid "Expires: %s" -msgstr "" - #: ../../include/conversation.php:709 msgid "View in context" msgstr "" -#: ../../include/conversation.php:711 ../../include/conversation.php:1127 -#: ../../include/ItemObject.php:272 ../../mod/editblock.php:120 -#: ../../mod/editlayout.php:115 ../../mod/editpost.php:121 -#: ../../mod/editwebpage.php:152 ../../mod/mail.php:222 ../../mod/mail.php:336 -#: ../../mod/photos.php:974 -msgid "Please wait" -msgstr "" - #: ../../include/conversation.php:838 msgid "remove" msgstr "" @@ -1397,11 +1580,6 @@ msgstr "" msgid "Set expiration date" msgstr "" -#: ../../include/conversation.php:1153 ../../include/ItemObject.php:573 -#: ../../mod/editpost.php:148 ../../mod/mail.php:228 ../../mod/mail.php:341 -msgid "Encrypt text" -msgstr "" - #: ../../include/conversation.php:1155 ../../mod/editpost.php:150 msgid "OK" msgstr "" @@ -1437,7 +1615,7 @@ msgstr "" msgid "Sort by Post Date" msgstr "" -#: ../../include/conversation.php:1415 +#: ../../include/conversation.php:1415 ../../include/widgets.php:81 msgid "Personal" msgstr "" @@ -1445,8 +1623,9 @@ msgstr "" msgid "Posts that mention or involve you" msgstr "" -#: ../../include/conversation.php:1424 ../../mod/connections.php:211 -#: ../../mod/connections.php:224 ../../mod/menu.php:61 +#: ../../include/conversation.php:1424 ../../include/widgets.php:83 +#: ../../mod/connections.php:211 ../../mod/connections.php:224 +#: ../../mod/menu.php:61 msgid "New" msgstr "" @@ -1486,11 +1665,6 @@ msgstr "" msgid "Profile Details" msgstr "" -#: ../../include/conversation.php:1501 ../../include/nav.php:84 -#: ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "" - #: ../../include/conversation.php:1510 ../../include/nav.php:85 #: ../../mod/fbrowser.php:114 msgid "Files" @@ -1504,11 +1678,6 @@ msgstr "" msgid "Chatrooms" msgstr "" -#: ../../include/conversation.php:1532 ../../include/nav.php:87 -#: ../../include/nav.php:180 ../../mod/events.php:366 -msgid "Events" -msgstr "" - #: ../../include/conversation.php:1535 msgid "Events and Calendar" msgstr "" @@ -1822,142 +1991,6 @@ msgstr "" msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: ../../include/ItemObject.php:118 -msgid "save to folder" -msgstr "" - -#: ../../include/ItemObject.php:154 -msgid "add star" -msgstr "" - -#: ../../include/ItemObject.php:155 -msgid "remove star" -msgstr "" - -#: ../../include/ItemObject.php:156 -msgid "toggle star status" -msgstr "" - -#: ../../include/ItemObject.php:160 -msgid "starred" -msgstr "" - -#: ../../include/ItemObject.php:177 -msgid "add tag" -msgstr "" - -#: ../../include/ItemObject.php:192 ../../mod/photos.php:971 -msgid "I like this (toggle)" -msgstr "" - -#: ../../include/ItemObject.php:193 ../../mod/photos.php:972 -msgid "I don't like this (toggle)" -msgstr "" - -#: ../../include/ItemObject.php:195 -msgid "Share this" -msgstr "" - -#: ../../include/ItemObject.php:195 -msgid "share" -msgstr "" - -#: ../../include/ItemObject.php:219 ../../include/ItemObject.php:220 -#, php-format -msgid "View %s's profile - %s" -msgstr "" - -#: ../../include/ItemObject.php:221 -msgid "to" -msgstr "" - -#: ../../include/ItemObject.php:222 -msgid "via" -msgstr "" - -#: ../../include/ItemObject.php:223 -msgid "Wall-to-Wall" -msgstr "" - -#: ../../include/ItemObject.php:224 -msgid "via Wall-To-Wall:" -msgstr "" - -#: ../../include/ItemObject.php:258 -msgid "Bookmark Links" -msgstr "" - -#: ../../include/ItemObject.php:293 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/ItemObject.php:558 ../../mod/photos.php:990 -#: ../../mod/photos.php:1077 -msgid "This is you" -msgstr "" - -#: ../../include/ItemObject.php:560 ../../include/js_strings.php:6 -#: ../../mod/photos.php:992 ../../mod/photos.php:1079 -msgid "Comment" -msgstr "" - -#: ../../include/ItemObject.php:561 ../../mod/mood.php:142 -#: ../../mod/admin.php:441 ../../mod/admin.php:750 ../../mod/admin.php:884 -#: ../../mod/admin.php:1017 ../../mod/admin.php:1216 ../../mod/admin.php:1303 -#: ../../mod/poke.php:166 ../../mod/profiles.php:506 ../../mod/chat.php:177 -#: ../../mod/chat.php:211 ../../mod/connect.php:92 ../../mod/connedit.php:476 -#: ../../mod/settings.php:515 ../../mod/settings.php:627 -#: ../../mod/settings.php:655 ../../mod/settings.php:679 -#: ../../mod/settings.php:751 ../../mod/settings.php:929 -#: ../../mod/setup.php:307 ../../mod/setup.php:350 ../../mod/pdledit.php:58 -#: ../../mod/events.php:481 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/filestorage.php:135 -#: ../../mod/fsuggest.php:108 ../../mod/group.php:81 ../../mod/thing.php:283 -#: ../../mod/thing.php:326 ../../mod/import.php:387 ../../mod/invite.php:156 -#: ../../mod/mail.php:223 ../../mod/mail.php:335 ../../mod/photos.php:565 -#: ../../mod/photos.php:670 ../../mod/photos.php:953 ../../mod/photos.php:993 -#: ../../mod/photos.php:1080 ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/blogga/php/config.php:67 -#: ../../view/theme/blogga/view/theme/blog/config.php:67 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "" - -#: ../../include/ItemObject.php:562 -msgid "Bold" -msgstr "" - -#: ../../include/ItemObject.php:563 -msgid "Italic" -msgstr "" - -#: ../../include/ItemObject.php:564 -msgid "Underline" -msgstr "" - -#: ../../include/ItemObject.php:565 -msgid "Quote" -msgstr "" - -#: ../../include/ItemObject.php:566 -msgid "Code" -msgstr "" - -#: ../../include/ItemObject.php:567 -msgid "Image" -msgstr "" - -#: ../../include/ItemObject.php:568 -msgid "Link" -msgstr "" - -#: ../../include/ItemObject.php:569 -msgid "Video" -msgstr "" - #: ../../include/features.php:23 msgid "General Features" msgstr "" @@ -2042,7 +2075,7 @@ msgstr "" msgid "Allow previewing posts and comments before publishing them" msgstr "" -#: ../../include/features.php:43 ../../include/widgets.php:490 +#: ../../include/features.php:43 ../../include/widgets.php:502 #: ../../mod/sources.php:88 msgid "Channel Sources" msgstr "" @@ -2080,7 +2113,7 @@ msgstr "" msgid "Enable widget to display Network posts only from selected collections" msgstr "" -#: ../../include/features.php:52 ../../include/widgets.php:252 +#: ../../include/features.php:52 ../../include/widgets.php:264 msgid "Saved Searches" msgstr "" @@ -2239,11 +2272,11 @@ msgstr "" msgid "Channels not in any collection" msgstr "" -#: ../../include/group.php:290 ../../include/widgets.php:253 +#: ../../include/group.php:290 ../../include/widgets.php:265 msgid "add" msgstr "" -#: ../../include/identity.php:30 ../../mod/item.php:1239 +#: ../../include/identity.php:30 ../../mod/item.php:1244 msgid "Unable to obtain identity information from database" msgstr "" @@ -2281,7 +2314,7 @@ msgid "Default Profile" msgstr "" #: ../../include/identity.php:342 ../../include/profile_selectors.php:42 -#: ../../include/widgets.php:387 ../../mod/connedit.php:431 +#: ../../include/widgets.php:399 ../../mod/connedit.php:431 msgid "Friends" msgstr "" @@ -2381,11 +2414,6 @@ msgstr "" msgid "Events this week:" msgstr "" -#: ../../include/identity.php:942 ../../include/identity.php:1031 -#: ../../mod/profperm.php:112 -msgid "Profile" -msgstr "" - #: ../../include/identity.php:950 ../../mod/settings.php:937 msgid "Full Name:" msgstr "" @@ -2483,42 +2511,42 @@ msgstr "" msgid "School/education:" msgstr "" -#: ../../include/items.php:281 ../../mod/profperm.php:23 +#: ../../include/items.php:306 ../../mod/profperm.php:23 #: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:63 #: ../../index.php:361 msgid "Permission denied" msgstr "" -#: ../../include/items.php:805 +#: ../../include/items.php:830 msgid "(Unknown)" msgstr "" -#: ../../include/items.php:3558 ../../mod/admin.php:159 +#: ../../include/items.php:3583 ../../mod/admin.php:159 #: ../../mod/admin.php:921 ../../mod/admin.php:1124 ../../mod/display.php:32 #: ../../mod/filestorage.php:18 ../../mod/home.php:63 ../../mod/thing.php:78 #: ../../mod/viewsrc.php:18 msgid "Item not found." msgstr "" -#: ../../include/items.php:3982 ../../mod/group.php:38 ../../mod/group.php:140 +#: ../../include/items.php:4007 ../../mod/group.php:38 ../../mod/group.php:140 msgid "Collection not found." msgstr "" -#: ../../include/items.php:3997 +#: ../../include/items.php:4022 msgid "Collection is empty." msgstr "" -#: ../../include/items.php:4004 +#: ../../include/items.php:4029 #, php-format msgid "Collection: %s" msgstr "" -#: ../../include/items.php:4015 +#: ../../include/items.php:4040 #, php-format msgid "Connection: %s" msgstr "" -#: ../../include/items.php:4018 +#: ../../include/items.php:4043 msgid "Connection not found." msgstr "" @@ -2562,76 +2590,80 @@ msgstr "" msgid "Notice: Permissions have changed but have not yet been submitted." msgstr "" -#: ../../include/js_strings.php:18 -msgid "timeago.prefixAgo" +#: ../../include/js_strings.php:17 +msgid "close all" msgstr "" #: ../../include/js_strings.php:19 -msgid "timeago.prefixFromNow" +msgid "timeago.prefixAgo" msgstr "" #: ../../include/js_strings.php:20 -msgid "ago" +msgid "timeago.prefixFromNow" msgstr "" #: ../../include/js_strings.php:21 -msgid "from now" +msgid "ago" msgstr "" #: ../../include/js_strings.php:22 -msgid "less than a minute" +msgid "from now" msgstr "" #: ../../include/js_strings.php:23 -msgid "about a minute" +msgid "less than a minute" msgstr "" #: ../../include/js_strings.php:24 +msgid "about a minute" +msgstr "" + +#: ../../include/js_strings.php:25 #, php-format msgid "%d minutes" msgstr "" -#: ../../include/js_strings.php:25 +#: ../../include/js_strings.php:26 msgid "about an hour" msgstr "" -#: ../../include/js_strings.php:26 +#: ../../include/js_strings.php:27 #, php-format msgid "about %d hours" msgstr "" -#: ../../include/js_strings.php:27 +#: ../../include/js_strings.php:28 msgid "a day" msgstr "" -#: ../../include/js_strings.php:28 +#: ../../include/js_strings.php:29 #, php-format msgid "%d days" msgstr "" -#: ../../include/js_strings.php:29 +#: ../../include/js_strings.php:30 msgid "about a month" msgstr "" -#: ../../include/js_strings.php:30 +#: ../../include/js_strings.php:31 #, php-format msgid "%d months" msgstr "" -#: ../../include/js_strings.php:31 +#: ../../include/js_strings.php:32 msgid "about a year" msgstr "" -#: ../../include/js_strings.php:32 +#: ../../include/js_strings.php:33 #, php-format msgid "%d years" msgstr "" -#: ../../include/js_strings.php:33 +#: ../../include/js_strings.php:34 msgid " " msgstr "" -#: ../../include/js_strings.php:34 +#: ../../include/js_strings.php:35 msgid "timeago.numbers" msgstr "" @@ -2744,7 +2776,7 @@ msgstr "" msgid "Help and documentation" msgstr "" -#: ../../include/nav.php:142 +#: ../../include/nav.php:142 ../../mod/apps.php:17 msgid "Apps" msgstr "" @@ -2756,18 +2788,10 @@ msgstr "" msgid "Search site content" msgstr "" -#: ../../include/nav.php:147 ../../mod/directory.php:210 -msgid "Directory" -msgstr "" - #: ../../include/nav.php:147 msgid "Channel Locator" msgstr "" -#: ../../include/nav.php:158 -msgid "Matrix" -msgstr "" - #: ../../include/nav.php:158 msgid "Your matrix" msgstr "" @@ -2776,10 +2800,6 @@ msgstr "" msgid "Mark all matrix notifications seen" msgstr "" -#: ../../include/nav.php:161 -msgid "Channel Home" -msgstr "" - #: ../../include/nav.php:161 msgid "Channel home" msgstr "" @@ -2833,7 +2853,7 @@ msgstr "" msgid "Outbox" msgstr "" -#: ../../include/nav.php:177 ../../include/widgets.php:523 +#: ../../include/nav.php:177 ../../include/widgets.php:535 msgid "New Message" msgstr "" @@ -2857,7 +2877,7 @@ msgstr "" msgid "Manage Your Channels" msgstr "" -#: ../../include/nav.php:186 ../../include/widgets.php:501 +#: ../../include/nav.php:186 ../../include/widgets.php:513 #: ../../mod/admin.php:976 ../../mod/admin.php:1181 msgid "Settings" msgstr "" @@ -2890,15 +2910,15 @@ msgstr "" msgid "view full size" msgstr "" -#: ../../include/plugin.php:475 ../../include/plugin.php:477 +#: ../../include/plugin.php:486 ../../include/plugin.php:488 msgid "Click here to upgrade." msgstr "" -#: ../../include/plugin.php:483 +#: ../../include/plugin.php:494 msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: ../../include/plugin.php:488 +#: ../../include/plugin.php:499 msgid "This action is not available under your subscription plan." msgstr "" @@ -3153,124 +3173,136 @@ msgid "" "form has been opened for too long (>3 hours) before submitting it." msgstr "" -#: ../../include/widgets.php:117 ../../mod/suggest.php:53 +#: ../../include/widgets.php:79 +msgid "App Category" +msgstr "" + +#: ../../include/widgets.php:80 +msgid "System" +msgstr "" + +#: ../../include/widgets.php:82 +msgid "Featured" +msgstr "" + +#: ../../include/widgets.php:129 ../../mod/suggest.php:53 msgid "Ignore/Hide" msgstr "" -#: ../../include/widgets.php:123 ../../mod/connections.php:266 +#: ../../include/widgets.php:135 ../../mod/connections.php:266 msgid "Suggestions" msgstr "" -#: ../../include/widgets.php:124 +#: ../../include/widgets.php:136 msgid "See more..." msgstr "" -#: ../../include/widgets.php:146 +#: ../../include/widgets.php:158 #, php-format msgid "You have %1$.0f of %2$.0f allowed connections." msgstr "" -#: ../../include/widgets.php:152 +#: ../../include/widgets.php:164 msgid "Add New Connection" msgstr "" -#: ../../include/widgets.php:153 +#: ../../include/widgets.php:165 msgid "Enter the channel address" msgstr "" -#: ../../include/widgets.php:154 +#: ../../include/widgets.php:166 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "" -#: ../../include/widgets.php:171 +#: ../../include/widgets.php:183 msgid "Notes" msgstr "" -#: ../../include/widgets.php:243 +#: ../../include/widgets.php:255 msgid "Remove term" msgstr "" -#: ../../include/widgets.php:322 +#: ../../include/widgets.php:334 msgid "Archives" msgstr "" -#: ../../include/widgets.php:384 +#: ../../include/widgets.php:396 msgid "Refresh" msgstr "" -#: ../../include/widgets.php:385 ../../mod/connedit.php:428 +#: ../../include/widgets.php:397 ../../mod/connedit.php:428 msgid "Me" msgstr "" -#: ../../include/widgets.php:386 ../../mod/connedit.php:430 +#: ../../include/widgets.php:398 ../../mod/connedit.php:430 msgid "Best Friends" msgstr "" -#: ../../include/widgets.php:388 +#: ../../include/widgets.php:400 msgid "Co-workers" msgstr "" -#: ../../include/widgets.php:389 ../../mod/connedit.php:432 +#: ../../include/widgets.php:401 ../../mod/connedit.php:432 msgid "Former Friends" msgstr "" -#: ../../include/widgets.php:390 ../../mod/connedit.php:433 +#: ../../include/widgets.php:402 ../../mod/connedit.php:433 msgid "Acquaintances" msgstr "" -#: ../../include/widgets.php:391 +#: ../../include/widgets.php:403 msgid "Everybody" msgstr "" -#: ../../include/widgets.php:423 +#: ../../include/widgets.php:435 msgid "Account settings" msgstr "" -#: ../../include/widgets.php:429 +#: ../../include/widgets.php:441 msgid "Channel settings" msgstr "" -#: ../../include/widgets.php:435 +#: ../../include/widgets.php:447 msgid "Additional features" msgstr "" -#: ../../include/widgets.php:441 +#: ../../include/widgets.php:453 msgid "Feature settings" msgstr "" -#: ../../include/widgets.php:447 +#: ../../include/widgets.php:459 msgid "Display settings" msgstr "" -#: ../../include/widgets.php:453 +#: ../../include/widgets.php:465 msgid "Connected apps" msgstr "" -#: ../../include/widgets.php:459 +#: ../../include/widgets.php:471 msgid "Export channel" msgstr "" -#: ../../include/widgets.php:471 +#: ../../include/widgets.php:483 msgid "Automatic Permissions (Advanced)" msgstr "" -#: ../../include/widgets.php:481 +#: ../../include/widgets.php:493 msgid "Premium Channel Settings" msgstr "" -#: ../../include/widgets.php:518 +#: ../../include/widgets.php:530 msgid "Check Mail" msgstr "" -#: ../../include/widgets.php:599 +#: ../../include/widgets.php:611 msgid "Chat Rooms" msgstr "" -#: ../../include/widgets.php:617 +#: ../../include/widgets.php:629 msgid "Bookmarked Chatrooms" msgstr "" -#: ../../include/widgets.php:635 +#: ../../include/widgets.php:647 msgid "Suggested Chatrooms" msgstr "" @@ -4095,14 +4127,6 @@ msgstr "" msgid "Welcome %s. Remote authentication successful." msgstr "" -#: ../../mod/apps.php:8 -msgid "No installed applications." -msgstr "" - -#: ../../mod/apps.php:13 -msgid "Applications" -msgstr "" - #: ../../mod/attach.php:9 msgid "Item not available." msgstr "" @@ -4243,14 +4267,6 @@ msgstr "" msgid "Romantic Partner" msgstr "" -#: ../../mod/profiles.php:302 -msgid "Likes" -msgstr "" - -#: ../../mod/profiles.php:306 -msgid "Dislikes" -msgstr "" - #: ../../mod/profiles.php:310 msgid "Work/Employment" msgstr "" @@ -6765,16 +6781,16 @@ msgstr "" msgid "Executable content type not permitted to this channel." msgstr "" -#: ../../mod/item.php:801 +#: ../../mod/item.php:806 msgid "System error. Post not saved." msgstr "" -#: ../../mod/item.php:1244 +#: ../../mod/item.php:1249 #, php-format msgid "You have reached your limit of %1$.0f top level posts." msgstr "" -#: ../../mod/item.php:1250 +#: ../../mod/item.php:1255 #, php-format msgid "You have reached your limit of %1$.0f webpages." msgstr "" @@ -7535,7 +7551,7 @@ msgid "Set the border colour of comments" msgstr "" #: ../../view/theme/redbasic/php/config.php:120 -msgid "Set the opacity of items" +msgid "Set the indent for comments" msgstr "" #: ../../view/theme/redbasic/php/config.php:121 diff --git a/version.inc b/version.inc index 3a42d37e3..5731b72bb 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-05-15.676 +2014-05-16.677 From b559134a14f1f63ad6be3cc2356a5caa04f554e2 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 16 May 2014 02:13:59 -0700 Subject: [PATCH 075/147] more doc updates --- doc/html/boxy_8php.html | 112 +++++++++++++++++++ doc/html/include_2apps_8php.html | 179 +++++++++++++++++++++++++++++++ doc/html/include_2apps_8php.js | 6 ++ doc/html/mod_2apps_8php.html | 137 +++++++++++++++++++++++ doc/html/mod_2apps_8php.js | 4 + 5 files changed, 438 insertions(+) create mode 100644 doc/html/boxy_8php.html create mode 100644 doc/html/include_2apps_8php.html create mode 100644 doc/html/include_2apps_8php.js create mode 100644 doc/html/mod_2apps_8php.html create mode 100644 doc/html/mod_2apps_8php.js diff --git a/doc/html/boxy_8php.html b/doc/html/boxy_8php.html new file mode 100644 index 000000000..0d83ebb53 --- /dev/null +++ b/doc/html/boxy_8php.html @@ -0,0 +1,112 @@ + + + + + + +The Red Matrix: view/theme/redbasic/schema/boxy.php File Reference + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    +
    +
    boxy.php File Reference
    +
    +
    +
    +
    + diff --git a/doc/html/include_2apps_8php.html b/doc/html/include_2apps_8php.html new file mode 100644 index 000000000..df74b3f02 --- /dev/null +++ b/doc/html/include_2apps_8php.html @@ -0,0 +1,179 @@ + + + + + + +The Red Matrix: include/apps.php File Reference + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    + +
    +
    apps.php File Reference
    +
    +
    + + + + + + + + +

    +Functions

     get_system_apps ()
     
     parse_app_description ($f)
     
     translate_system_apps (&$arr)
     
    +

    Function Documentation

    + +
    +
    + + + + + + + +
    get_system_apps ()
    +
    +

    apps

    + +

    Referenced by apps_content().

    + +
    +
    + +
    +
    + + + + + + + + +
    parse_app_description ( $f)
    +
    + +

    Referenced by get_system_apps().

    + +
    +
    + +
    +
    + + + + + + + + +
    translate_system_apps ($arr)
    +
    + +

    Referenced by parse_app_description().

    + +
    +
    +
    +
    + diff --git a/doc/html/include_2apps_8php.js b/doc/html/include_2apps_8php.js new file mode 100644 index 000000000..5586d32a8 --- /dev/null +++ b/doc/html/include_2apps_8php.js @@ -0,0 +1,6 @@ +var include_2apps_8php = +[ + [ "get_system_apps", "include_2apps_8php.html#ae64f72eb4f126e03b4eb65ed1702a3ca", null ], + [ "parse_app_description", "include_2apps_8php.html#a32fe4ed9666228fd4b67dc487cc57a83", null ], + [ "translate_system_apps", "include_2apps_8php.html#a48289d5cc44b7638191738106ac5d030", null ] +]; \ No newline at end of file diff --git a/doc/html/mod_2apps_8php.html b/doc/html/mod_2apps_8php.html new file mode 100644 index 000000000..705905828 --- /dev/null +++ b/doc/html/mod_2apps_8php.html @@ -0,0 +1,137 @@ + + + + + + +The Red Matrix: mod/apps.php File Reference + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    + +
    +
    apps.php File Reference
    +
    +
    + + + + +

    +Functions

     apps_content (&$a)
     
    +

    Function Documentation

    + +
    +
    + + + + + + + + +
    apps_content ($a)
    +
    + +
    +
    +
    +
    + diff --git a/doc/html/mod_2apps_8php.js b/doc/html/mod_2apps_8php.js new file mode 100644 index 000000000..f34d11714 --- /dev/null +++ b/doc/html/mod_2apps_8php.js @@ -0,0 +1,4 @@ +var mod_2apps_8php = +[ + [ "apps_content", "mod_2apps_8php.html#a546016cb960d0b110ee8e489dfa6c27c", null ] +]; \ No newline at end of file From 9e95458ea5fd1cc24df59c70d0bf1d315fe6a3a3 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 16 May 2014 02:54:52 -0700 Subject: [PATCH 076/147] the help app --- app/help.apd | 3 +++ app/help.png | Bin 0 -> 6889 bytes include/apps.php | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 app/help.apd create mode 100644 app/help.png diff --git a/app/help.apd b/app/help.apd new file mode 100644 index 000000000..ca7208e6a --- /dev/null +++ b/app/help.apd @@ -0,0 +1,3 @@ +url: $baseurl/help +name: Help +photo: $baseurl/app/help.png diff --git a/app/help.png b/app/help.png new file mode 100644 index 0000000000000000000000000000000000000000..e1348231c38688f9b94cf6363a619b44e02aa9ae GIT binary patch literal 6889 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 literal 0 HcmV?d00001 diff --git a/include/apps.php b/include/apps.php index 1896b938b..181079f2f 100644 --- a/include/apps.php +++ b/include/apps.php @@ -105,7 +105,7 @@ function parse_app_description($f) { function translate_system_apps(&$arr) { $apps = array( 'Matrix' => t('Matrix'), 'Channel Home' => t('Channel Home'), 'Profile' => t('Profile'), - 'Photos' => t('Photos'), 'Events' => t('Events'), 'Directory' => t('Directory') + 'Photos' => t('Photos'), 'Events' => t('Events'), 'Directory' => t('Directory'), 'Help' => t('Help') ); From 9397f2dff6d9d8ee7a2c93bb952c0c216881da3f Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Fri, 16 May 2014 21:15:42 +0100 Subject: [PATCH 077/147] Minor doco --- doc/external-resource-links.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/external-resource-links.bb b/doc/external-resource-links.bb index 09ac48a47..8e98fde44 100644 --- a/doc/external-resource-links.bb +++ b/doc/external-resource-links.bb @@ -9,7 +9,7 @@ [*][url=https://bitbucket.org/tobiasd/red-clean]Clean[/url] [b]Third-Party Addons[/b] -[*][url=https://github.com/beardy-unixer/red-addons-extra]BBCode Extensions for Webpages/Wikis[/url] +[*][url=https://github.com/beardy-unixer/red-addons-extra]Webpage/Publishing orientated addons and modules[/url] [*][url=https://abcentric.net/git/abcjsplugin.git]ABCjs integration - display scores in posts (WIP)[/url] [b]Related Projects[/b] @@ -19,4 +19,4 @@ [*][url=https://github.com/zzottel/feed2red]feed2red.pl (posts Atom/RSS feeds to channel)[/url] [b]Utilities[/b] -[*][url=https://github.com/beardy-unixer/lowendscript-ng]Debian Install Script[/url] \ No newline at end of file +[*][url=https://github.com/beardy-unixer/lowendscript-ng]Debian Install Script[/url] From 2d91268b5de40d2c2af4bac154593705e8c62bcb Mon Sep 17 00:00:00 2001 From: tuscanhobbit Date: Sat, 17 May 2014 11:25:39 +0200 Subject: [PATCH 078/147] IT: strings updated --- view/it/messages.po | 1068 ++++++++++++++++++++++--------------------- view/it/strings.php | 129 +++--- 2 files changed, 613 insertions(+), 584 deletions(-) diff --git a/view/it/messages.po b/view/it/messages.po index 5a1e6f775..d1821ee2d 100644 --- a/view/it/messages.po +++ b/view/it/messages.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: Red Matrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-02 00:03-0700\n" -"PO-Revision-Date: 2014-05-09 08:00+0000\n" +"POT-Creation-Date: 2014-05-16 00:02-0700\n" +"PO-Revision-Date: 2014-05-17 09:17+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" @@ -35,6 +35,34 @@ msgstr "Non trovo le informazioni DNS per il database server '%s'" msgid "Profile Photos" msgstr "Foto del profilo" +#: ../../include/apps.php:107 ../../include/nav.php:158 +msgid "Matrix" +msgstr "La tua rete" + +#: ../../include/apps.php:107 ../../include/nav.php:161 +msgid "Channel Home" +msgstr "Bacheca del canale" + +#: ../../include/apps.php:107 ../../include/identity.php:942 +#: ../../include/identity.php:1031 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Profilo" + +#: ../../include/apps.php:108 ../../include/conversation.php:1501 +#: ../../include/nav.php:84 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Foto" + +#: ../../include/apps.php:108 ../../include/conversation.php:1532 +#: ../../include/nav.php:87 ../../include/nav.php:180 ../../mod/events.php:366 +msgid "Events" +msgstr "Eventi" + +#: ../../include/apps.php:108 ../../include/nav.php:147 +#: ../../mod/directory.php:210 +msgid "Directory" +msgstr "Tutti i canali" + #: ../../include/oembed.php:171 msgid "Embedded content" msgstr "Contenuti incorporati" @@ -53,7 +81,7 @@ msgid "commented on %s's post" msgstr "ha commentato l'articolo di %s" #: ../../include/Contact.php:107 ../../include/identity.php:675 -#: ../../include/widgets.php:115 ../../include/widgets.php:155 +#: ../../include/widgets.php:127 ../../include/widgets.php:167 #: ../../mod/directory.php:183 ../../mod/dirprofile.php:164 #: ../../mod/suggest.php:51 ../../mod/match.php:62 msgid "Connect" @@ -73,7 +101,7 @@ msgstr "Nuova pagina web" #: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 #: ../../include/ItemObject.php:96 ../../include/menu.php:42 -#: ../../mod/blocks.php:94 ../../mod/connections.php:391 +#: ../../mod/blocks.php:94 ../../mod/connections.php:392 #: ../../mod/settings.php:577 ../../mod/editblock.php:111 #: ../../mod/editlayout.php:106 ../../mod/editpost.php:112 #: ../../mod/editwebpage.php:143 ../../mod/filestorage.php:174 @@ -87,7 +115,7 @@ msgstr "Modifica" msgid "View" msgstr "Guarda" -#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:557 +#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:570 #: ../../include/conversation.php:1088 ../../mod/editblock.php:141 #: ../../mod/editlayout.php:135 ../../mod/editpost.php:140 #: ../../mod/editwebpage.php:175 ../../mod/webpages.php:123 @@ -115,203 +143,6 @@ msgstr "Creato" msgid "Edited" msgstr "Modificato" -#: ../../include/ItemObject.php:89 ../../include/conversation.php:639 -#: ../../mod/photos.php:846 -msgid "Private Message" -msgstr "Messaggio privato" - -#: ../../include/ItemObject.php:108 ../../include/conversation.php:632 -#: ../../mod/admin.php:757 ../../mod/admin.php:886 ../../mod/connedit.php:398 -#: ../../mod/settings.php:578 ../../mod/filestorage.php:175 -#: ../../mod/group.php:176 ../../mod/thing.php:236 ../../mod/photos.php:1043 -msgid "Delete" -msgstr "Elimina" - -#: ../../include/ItemObject.php:114 ../../include/conversation.php:631 -msgid "Select" -msgstr "Seleziona" - -#: ../../include/ItemObject.php:118 -msgid "save to folder" -msgstr "salva in una cartella" - -#: ../../include/ItemObject.php:146 -msgid "add star" -msgstr "aggiungi ai preferiti" - -#: ../../include/ItemObject.php:147 -msgid "remove star" -msgstr "rimuovi dai preferiti" - -#: ../../include/ItemObject.php:148 -msgid "toggle star status" -msgstr "Attiva/disattiva preferito" - -#: ../../include/ItemObject.php:152 -msgid "starred" -msgstr "preferito" - -#: ../../include/ItemObject.php:161 ../../include/conversation.php:646 -msgid "Message is verified" -msgstr "Messaggio verificato" - -#: ../../include/ItemObject.php:169 -msgid "add tag" -msgstr "Aggiungi tag" - -#: ../../include/ItemObject.php:184 ../../mod/photos.php:971 -msgid "I like this (toggle)" -msgstr "Attiva/disattiva Mi piace" - -#: ../../include/ItemObject.php:184 ../../include/taxonomy.php:254 -msgid "like" -msgstr "mi piace" - -#: ../../include/ItemObject.php:185 ../../mod/photos.php:972 -msgid "I don't like this (toggle)" -msgstr "Attiva/disattiva Non mi piace" - -#: ../../include/ItemObject.php:185 ../../include/taxonomy.php:255 -msgid "dislike" -msgstr "non mi piace" - -#: ../../include/ItemObject.php:187 -msgid "Share this" -msgstr "Condividi" - -#: ../../include/ItemObject.php:187 -msgid "share" -msgstr "condividi" - -#: ../../include/ItemObject.php:211 ../../include/ItemObject.php:212 -#, php-format -msgid "View %s's profile - %s" -msgstr "Guarda il profilo di %s - %s" - -#: ../../include/ItemObject.php:213 -msgid "to" -msgstr "a" - -#: ../../include/ItemObject.php:214 -msgid "via" -msgstr "via" - -#: ../../include/ItemObject.php:215 -msgid "Wall-to-Wall" -msgstr "Da bacheca a bacheca" - -#: ../../include/ItemObject.php:216 -msgid "via Wall-To-Wall:" -msgstr "da bacheca a bacheca:" - -#: ../../include/ItemObject.php:226 ../../include/conversation.php:690 -#, php-format -msgid " from %s" -msgstr " da %s" - -#: ../../include/ItemObject.php:229 ../../include/conversation.php:693 -#, php-format -msgid "last edited: %s" -msgstr "ultima modifica: %s" - -#: ../../include/ItemObject.php:230 ../../include/conversation.php:694 -#, php-format -msgid "Expires: %s" -msgstr "Scadenza: %s" - -#: ../../include/ItemObject.php:250 -msgid "Bookmark Links" -msgstr "I link dei segnalibri" - -#: ../../include/ItemObject.php:259 ../../include/conversation.php:711 -#: ../../include/conversation.php:1127 ../../mod/editblock.php:120 -#: ../../mod/editlayout.php:115 ../../mod/editpost.php:121 -#: ../../mod/editwebpage.php:152 ../../mod/mail.php:222 ../../mod/mail.php:336 -#: ../../mod/photos.php:974 -msgid "Please wait" -msgstr "Attendere" - -#: ../../include/ItemObject.php:280 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commento" -msgstr[1] "%d commenti" - -#: ../../include/ItemObject.php:281 ../../include/contact_widgets.php:130 -#: ../../include/js_strings.php:7 -msgid "show more" -msgstr "mostra tutto" - -#: ../../include/ItemObject.php:545 ../../mod/photos.php:990 -#: ../../mod/photos.php:1077 -msgid "This is you" -msgstr "Questo sei tu" - -#: ../../include/ItemObject.php:547 ../../include/js_strings.php:6 -#: ../../mod/photos.php:992 ../../mod/photos.php:1079 -msgid "Comment" -msgstr "Commento" - -#: ../../include/ItemObject.php:548 ../../mod/mood.php:142 -#: ../../mod/admin.php:441 ../../mod/admin.php:750 ../../mod/admin.php:884 -#: ../../mod/admin.php:1017 ../../mod/admin.php:1216 ../../mod/admin.php:1303 -#: ../../mod/poke.php:166 ../../mod/profiles.php:506 ../../mod/chat.php:175 -#: ../../mod/chat.php:208 ../../mod/connect.php:92 ../../mod/connedit.php:476 -#: ../../mod/settings.php:515 ../../mod/settings.php:627 -#: ../../mod/settings.php:655 ../../mod/settings.php:679 -#: ../../mod/settings.php:751 ../../mod/settings.php:929 -#: ../../mod/setup.php:307 ../../mod/setup.php:350 ../../mod/pdledit.php:58 -#: ../../mod/events.php:472 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/filestorage.php:135 -#: ../../mod/fsuggest.php:108 ../../mod/group.php:81 ../../mod/thing.php:283 -#: ../../mod/thing.php:326 ../../mod/import.php:387 ../../mod/invite.php:156 -#: ../../mod/mail.php:223 ../../mod/mail.php:335 ../../mod/photos.php:565 -#: ../../mod/photos.php:670 ../../mod/photos.php:953 ../../mod/photos.php:993 -#: ../../mod/photos.php:1080 ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/blogga/php/config.php:67 -#: ../../view/theme/blogga/view/theme/blog/config.php:67 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Salva" - -#: ../../include/ItemObject.php:549 -msgid "Bold" -msgstr "Grassetto" - -#: ../../include/ItemObject.php:550 -msgid "Italic" -msgstr "Corsivo" - -#: ../../include/ItemObject.php:551 -msgid "Underline" -msgstr "Sottolineato" - -#: ../../include/ItemObject.php:552 -msgid "Quote" -msgstr "Citazione" - -#: ../../include/ItemObject.php:553 -msgid "Code" -msgstr "Codice" - -#: ../../include/ItemObject.php:554 -msgid "Image" -msgstr "Immagine" - -#: ../../include/ItemObject.php:555 -msgid "Link" -msgstr "Link" - -#: ../../include/ItemObject.php:556 -msgid "Video" -msgstr "Video" - -#: ../../include/ItemObject.php:560 ../../include/conversation.php:1153 -#: ../../mod/editpost.php:148 ../../mod/mail.php:228 ../../mod/mail.php:341 -msgid "Encrypt text" -msgstr "Crittografia del testo" - #: ../../include/permissions.php:13 msgid "Can view my \"public\" stream and posts" msgstr "Può vedere i miei contenuti \"pubblici\"" @@ -454,7 +285,7 @@ msgstr "Registrazione revocata per %s" #: ../../include/attach.php:243 ../../include/attach.php:283 #: ../../include/attach.php:297 ../../include/attach.php:322 #: ../../include/attach.php:513 ../../include/attach.php:585 -#: ../../include/chat.php:113 ../../include/items.php:3622 +#: ../../include/chat.php:116 ../../include/items.php:3645 #: ../../mod/mood.php:119 ../../mod/mitem.php:73 ../../mod/achievements.php:27 #: ../../mod/poke.php:128 ../../mod/api.php:26 ../../mod/api.php:31 #: ../../mod/authtest.php:13 ../../mod/profile.php:64 ../../mod/profile.php:72 @@ -463,7 +294,7 @@ msgstr "Registrazione revocata per %s" #: ../../mod/blocks.php:29 ../../mod/blocks.php:44 ../../mod/profiles.php:152 #: ../../mod/profiles.php:453 ../../mod/bookmarks.php:46 #: ../../mod/channel.php:89 ../../mod/channel.php:193 -#: ../../mod/channel.php:236 ../../mod/chat.php:89 ../../mod/chat.php:94 +#: ../../mod/channel.php:236 ../../mod/chat.php:90 ../../mod/chat.php:95 #: ../../mod/register.php:68 ../../mod/regmod.php:18 ../../mod/common.php:35 #: ../../mod/network.php:12 ../../mod/connections.php:169 #: ../../mod/connedit.php:221 ../../mod/delegate.php:6 ../../mod/page.php:30 @@ -477,14 +308,14 @@ msgstr "Registrazione revocata per %s" #: ../../mod/fsuggest.php:78 ../../mod/suggest.php:26 ../../mod/group.php:9 #: ../../mod/thing.php:247 ../../mod/thing.php:263 ../../mod/thing.php:298 #: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/item.php:179 -#: ../../mod/item.php:187 ../../mod/item.php:860 ../../mod/layouts.php:27 +#: ../../mod/item.php:187 ../../mod/item.php:872 ../../mod/layouts.php:27 #: ../../mod/layouts.php:39 ../../mod/viewconnections.php:22 #: ../../mod/viewconnections.php:27 ../../mod/viewsrc.php:12 #: ../../mod/mail.php:108 ../../mod/manage.php:6 ../../mod/menu.php:44 #: ../../mod/webpages.php:40 ../../mod/message.php:16 #: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97 #: ../../mod/photos.php:68 ../../mod/photos.php:526 -#: ../../mod/notifications.php:66 ../../index.php:176 ../../index.php:351 +#: ../../mod/notifications.php:66 ../../index.php:187 ../../index.php:362 msgid "Permission denied." msgstr "Permesso negato." @@ -526,7 +357,7 @@ msgstr "Mostra" msgid "Don't show" msgstr "Non mostrare" -#: ../../include/acl_selectors.php:246 ../../mod/chat.php:206 +#: ../../include/acl_selectors.php:246 ../../mod/chat.php:209 #: ../../mod/filestorage.php:126 ../../mod/photos.php:606 #: ../../mod/photos.php:949 msgid "Permissions" @@ -625,11 +456,11 @@ msgstr "scrittura su database fallita." msgid "Logged out." msgstr "Uscita effettuata." -#: ../../include/auth.php:197 +#: ../../include/auth.php:198 msgid "Failed authentication" msgstr "Autenticazione fallita" -#: ../../include/auth.php:212 ../../mod/openid.php:188 +#: ../../include/auth.php:213 ../../mod/openid.php:188 msgid "Login failed." msgstr "Accesso fallito." @@ -647,21 +478,21 @@ msgstr "Fine:" #: ../../include/bb2diaspora.php:455 ../../include/event.php:40 #: ../../include/identity.php:726 ../../mod/directory.php:156 -#: ../../mod/dirprofile.php:105 ../../mod/events.php:465 +#: ../../mod/dirprofile.php:105 ../../mod/events.php:474 msgid "Location:" msgstr "Luogo:" -#: ../../include/bbcode.php:128 ../../include/bbcode.php:603 -#: ../../include/bbcode.php:606 ../../include/bbcode.php:611 -#: ../../include/bbcode.php:614 ../../include/bbcode.php:617 -#: ../../include/bbcode.php:620 ../../include/bbcode.php:625 -#: ../../include/bbcode.php:628 ../../include/bbcode.php:633 -#: ../../include/bbcode.php:636 ../../include/bbcode.php:639 -#: ../../include/bbcode.php:642 +#: ../../include/bbcode.php:128 ../../include/bbcode.php:633 +#: ../../include/bbcode.php:636 ../../include/bbcode.php:641 +#: ../../include/bbcode.php:644 ../../include/bbcode.php:647 +#: ../../include/bbcode.php:650 ../../include/bbcode.php:655 +#: ../../include/bbcode.php:658 ../../include/bbcode.php:663 +#: ../../include/bbcode.php:666 ../../include/bbcode.php:669 +#: ../../include/bbcode.php:672 msgid "Image/photo" msgstr "Immagine" -#: ../../include/bbcode.php:163 ../../include/bbcode.php:653 +#: ../../include/bbcode.php:163 ../../include/bbcode.php:683 msgid "Encrypted content" msgstr "Contenuto crittografato" @@ -669,19 +500,232 @@ msgstr "Contenuto crittografato" msgid "QR code" msgstr "QR code" -#: ../../include/bbcode.php:213 +#: ../../include/bbcode.php:219 #, php-format msgid "%1$s wrote the following %2$s %3$s" msgstr "%1$s ha scritto %2$s %3$s" -#: ../../include/bbcode.php:215 +#: ../../include/bbcode.php:221 msgid "post" msgstr "l'articolo" -#: ../../include/bbcode.php:571 ../../include/bbcode.php:591 +#: ../../include/bbcode.php:601 ../../include/bbcode.php:621 msgid "$1 wrote:" msgstr "$1 ha scritto:" +#: ../../include/ItemObject.php:89 ../../include/conversation.php:639 +#: ../../mod/photos.php:846 +msgid "Private Message" +msgstr "Messaggio privato" + +#: ../../include/ItemObject.php:108 ../../include/conversation.php:632 +#: ../../mod/admin.php:757 ../../mod/admin.php:886 ../../mod/connedit.php:398 +#: ../../mod/settings.php:578 ../../mod/filestorage.php:175 +#: ../../mod/group.php:176 ../../mod/thing.php:236 ../../mod/photos.php:1043 +msgid "Delete" +msgstr "Elimina" + +#: ../../include/ItemObject.php:114 ../../include/conversation.php:631 +msgid "Select" +msgstr "Seleziona" + +#: ../../include/ItemObject.php:118 +msgid "save to folder" +msgstr "salva in una cartella" + +#: ../../include/ItemObject.php:128 +msgid "Like" +msgstr "Mi piace" + +#: ../../include/ItemObject.php:128 ../../mod/profiles.php:302 +msgid "Likes" +msgstr "Mi piace" + +#: ../../include/ItemObject.php:132 +msgid "Dislike" +msgstr "Non mi piace" + +#: ../../include/ItemObject.php:132 ../../mod/profiles.php:306 +msgid "Dislikes" +msgstr "Non mi piace" + +#: ../../include/ItemObject.php:154 +msgid "add star" +msgstr "aggiungi ai preferiti" + +#: ../../include/ItemObject.php:155 +msgid "remove star" +msgstr "rimuovi dai preferiti" + +#: ../../include/ItemObject.php:156 +msgid "toggle star status" +msgstr "Attiva/disattiva preferito" + +#: ../../include/ItemObject.php:160 +msgid "starred" +msgstr "preferito" + +#: ../../include/ItemObject.php:169 ../../include/conversation.php:646 +msgid "Message is verified" +msgstr "Messaggio verificato" + +#: ../../include/ItemObject.php:177 +msgid "add tag" +msgstr "Aggiungi tag" + +#: ../../include/ItemObject.php:192 ../../mod/photos.php:971 +msgid "I like this (toggle)" +msgstr "Attiva/disattiva Mi piace" + +#: ../../include/ItemObject.php:192 ../../include/taxonomy.php:254 +msgid "like" +msgstr "mi piace" + +#: ../../include/ItemObject.php:193 ../../mod/photos.php:972 +msgid "I don't like this (toggle)" +msgstr "Attiva/disattiva Non mi piace" + +#: ../../include/ItemObject.php:193 ../../include/taxonomy.php:255 +msgid "dislike" +msgstr "non mi piace" + +#: ../../include/ItemObject.php:195 +msgid "Share this" +msgstr "Condividi" + +#: ../../include/ItemObject.php:195 +msgid "share" +msgstr "condividi" + +#: ../../include/ItemObject.php:219 ../../include/ItemObject.php:220 +#, php-format +msgid "View %s's profile - %s" +msgstr "Guarda il profilo di %s - %s" + +#: ../../include/ItemObject.php:221 +msgid "to" +msgstr "a" + +#: ../../include/ItemObject.php:222 +msgid "via" +msgstr "via" + +#: ../../include/ItemObject.php:223 +msgid "Wall-to-Wall" +msgstr "Da bacheca a bacheca" + +#: ../../include/ItemObject.php:224 +msgid "via Wall-To-Wall:" +msgstr "da bacheca a bacheca:" + +#: ../../include/ItemObject.php:234 ../../include/conversation.php:690 +#, php-format +msgid " from %s" +msgstr " da %s" + +#: ../../include/ItemObject.php:237 ../../include/conversation.php:693 +#, php-format +msgid "last edited: %s" +msgstr "ultima modifica: %s" + +#: ../../include/ItemObject.php:238 ../../include/conversation.php:694 +#, php-format +msgid "Expires: %s" +msgstr "Scadenza: %s" + +#: ../../include/ItemObject.php:258 +msgid "Bookmark Links" +msgstr "I link dei segnalibri" + +#: ../../include/ItemObject.php:272 ../../include/conversation.php:711 +#: ../../include/conversation.php:1127 ../../mod/editblock.php:120 +#: ../../mod/editlayout.php:115 ../../mod/editpost.php:121 +#: ../../mod/editwebpage.php:152 ../../mod/mail.php:222 ../../mod/mail.php:336 +#: ../../mod/photos.php:974 +msgid "Please wait" +msgstr "Attendere" + +#: ../../include/ItemObject.php:293 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d commento" +msgstr[1] "%d commenti" + +#: ../../include/ItemObject.php:294 ../../include/contact_widgets.php:130 +#: ../../include/js_strings.php:7 +msgid "show more" +msgstr "mostra tutto" + +#: ../../include/ItemObject.php:558 ../../mod/photos.php:990 +#: ../../mod/photos.php:1077 +msgid "This is you" +msgstr "Questo sei tu" + +#: ../../include/ItemObject.php:560 ../../include/js_strings.php:6 +#: ../../mod/photos.php:992 ../../mod/photos.php:1079 +msgid "Comment" +msgstr "Commento" + +#: ../../include/ItemObject.php:561 ../../mod/mood.php:142 +#: ../../mod/admin.php:441 ../../mod/admin.php:750 ../../mod/admin.php:884 +#: ../../mod/admin.php:1017 ../../mod/admin.php:1216 ../../mod/admin.php:1303 +#: ../../mod/poke.php:166 ../../mod/profiles.php:506 ../../mod/chat.php:177 +#: ../../mod/chat.php:211 ../../mod/connect.php:92 ../../mod/connedit.php:476 +#: ../../mod/settings.php:515 ../../mod/settings.php:627 +#: ../../mod/settings.php:655 ../../mod/settings.php:679 +#: ../../mod/settings.php:751 ../../mod/settings.php:929 +#: ../../mod/setup.php:307 ../../mod/setup.php:350 ../../mod/pdledit.php:58 +#: ../../mod/events.php:481 ../../mod/sources.php:104 +#: ../../mod/sources.php:138 ../../mod/filestorage.php:135 +#: ../../mod/fsuggest.php:108 ../../mod/group.php:81 ../../mod/thing.php:283 +#: ../../mod/thing.php:326 ../../mod/import.php:387 ../../mod/invite.php:156 +#: ../../mod/mail.php:223 ../../mod/mail.php:335 ../../mod/photos.php:565 +#: ../../mod/photos.php:670 ../../mod/photos.php:953 ../../mod/photos.php:993 +#: ../../mod/photos.php:1080 ../../view/theme/apw/php/config.php:256 +#: ../../view/theme/blogga/php/config.php:67 +#: ../../view/theme/blogga/view/theme/blog/config.php:67 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Salva" + +#: ../../include/ItemObject.php:562 +msgid "Bold" +msgstr "Grassetto" + +#: ../../include/ItemObject.php:563 +msgid "Italic" +msgstr "Corsivo" + +#: ../../include/ItemObject.php:564 +msgid "Underline" +msgstr "Sottolineato" + +#: ../../include/ItemObject.php:565 +msgid "Quote" +msgstr "Citazione" + +#: ../../include/ItemObject.php:566 +msgid "Code" +msgstr "Codice" + +#: ../../include/ItemObject.php:567 +msgid "Image" +msgstr "Immagine" + +#: ../../include/ItemObject.php:568 +msgid "Link" +msgstr "Link" + +#: ../../include/ItemObject.php:569 +msgid "Video" +msgstr "Video" + +#: ../../include/ItemObject.php:573 ../../include/conversation.php:1153 +#: ../../mod/editpost.php:148 ../../mod/mail.php:228 ../../mod/mail.php:341 +msgid "Encrypt text" +msgstr "Crittografia del testo" + #: ../../include/bookmarks.php:42 #, php-format msgid "%1$s's bookmarks" @@ -699,11 +743,11 @@ msgstr "Il nome della chat è duplicato" msgid "Invalid room specifier." msgstr "Il nome della chat non è valido." -#: ../../include/chat.php:102 +#: ../../include/chat.php:105 msgid "Room not found." msgstr "Chat non trovata." -#: ../../include/chat.php:123 +#: ../../include/chat.php:126 msgid "Room is full" msgstr "La chat è al completo" @@ -857,323 +901,323 @@ msgstr "più recenti" msgid "newer" msgstr "più nuovi" -#: ../../include/text.php:719 +#: ../../include/text.php:729 msgid "No connections" msgstr "Nessun contatto" -#: ../../include/text.php:732 +#: ../../include/text.php:742 #, php-format msgid "%d Connection" msgid_plural "%d Connections" msgstr[0] "%d contatto" msgstr[1] "%d contatti" -#: ../../include/text.php:744 +#: ../../include/text.php:754 msgid "View Connections" msgstr "Elenco contatti" -#: ../../include/text.php:803 ../../include/text.php:817 +#: ../../include/text.php:813 ../../include/text.php:827 #: ../../include/nav.php:144 ../../mod/search.php:29 msgid "Search" msgstr "Cerca" -#: ../../include/text.php:805 ../../include/text.php:819 -#: ../../include/widgets.php:173 ../../mod/rbmark.php:28 +#: ../../include/text.php:815 ../../include/text.php:829 +#: ../../include/widgets.php:185 ../../mod/rbmark.php:28 #: ../../mod/rbmark.php:98 ../../mod/filer.php:50 msgid "Save" msgstr "Salva" -#: ../../include/text.php:885 +#: ../../include/text.php:895 msgid "poke" msgstr "poke" -#: ../../include/text.php:885 ../../include/conversation.php:240 +#: ../../include/text.php:895 ../../include/conversation.php:240 msgid "poked" msgstr "ha ricevuto un poke" -#: ../../include/text.php:886 +#: ../../include/text.php:896 msgid "ping" msgstr "ping" -#: ../../include/text.php:886 +#: ../../include/text.php:896 msgid "pinged" msgstr "ha ricevuto un ping" -#: ../../include/text.php:887 +#: ../../include/text.php:897 msgid "prod" msgstr "prod" -#: ../../include/text.php:887 +#: ../../include/text.php:897 msgid "prodded" msgstr "ha ricevuto un prod" -#: ../../include/text.php:888 +#: ../../include/text.php:898 msgid "slap" msgstr "schiaffo" -#: ../../include/text.php:888 +#: ../../include/text.php:898 msgid "slapped" msgstr "ha ricevuto uno schiaffo" -#: ../../include/text.php:889 +#: ../../include/text.php:899 msgid "finger" msgstr "finger" -#: ../../include/text.php:889 +#: ../../include/text.php:899 msgid "fingered" msgstr "ha ricevuto un finger" -#: ../../include/text.php:890 +#: ../../include/text.php:900 msgid "rebuff" msgstr "rifiuto" -#: ../../include/text.php:890 +#: ../../include/text.php:900 msgid "rebuffed" msgstr "ha ricevuto un rifiuto" -#: ../../include/text.php:899 +#: ../../include/text.php:909 msgid "happy" msgstr "allegro" -#: ../../include/text.php:900 +#: ../../include/text.php:910 msgid "sad" msgstr "triste" -#: ../../include/text.php:901 +#: ../../include/text.php:911 msgid "mellow" msgstr "calmo" -#: ../../include/text.php:902 +#: ../../include/text.php:912 msgid "tired" msgstr "stanco" -#: ../../include/text.php:903 +#: ../../include/text.php:913 msgid "perky" msgstr "vivace" -#: ../../include/text.php:904 +#: ../../include/text.php:914 msgid "angry" msgstr "arrabbiato" -#: ../../include/text.php:905 +#: ../../include/text.php:915 msgid "stupified" msgstr "stordito" -#: ../../include/text.php:906 +#: ../../include/text.php:916 msgid "puzzled" msgstr "confuso" -#: ../../include/text.php:907 +#: ../../include/text.php:917 msgid "interested" msgstr "attento" -#: ../../include/text.php:908 +#: ../../include/text.php:918 msgid "bitter" msgstr "amaro" -#: ../../include/text.php:909 +#: ../../include/text.php:919 msgid "cheerful" msgstr "allegro" -#: ../../include/text.php:910 +#: ../../include/text.php:920 msgid "alive" msgstr "vivace" -#: ../../include/text.php:911 +#: ../../include/text.php:921 msgid "annoyed" msgstr "seccato" -#: ../../include/text.php:912 +#: ../../include/text.php:922 msgid "anxious" msgstr "ansioso" -#: ../../include/text.php:913 +#: ../../include/text.php:923 msgid "cranky" msgstr "irritabile" -#: ../../include/text.php:914 +#: ../../include/text.php:924 msgid "disturbed" msgstr "turbato" -#: ../../include/text.php:915 +#: ../../include/text.php:925 msgid "frustrated" msgstr "frustrato" -#: ../../include/text.php:916 +#: ../../include/text.php:926 msgid "depressed" msgstr "in depressione" -#: ../../include/text.php:917 +#: ../../include/text.php:927 msgid "motivated" msgstr "motivato" -#: ../../include/text.php:918 +#: ../../include/text.php:928 msgid "relaxed" msgstr "rilassato" -#: ../../include/text.php:919 +#: ../../include/text.php:929 msgid "surprised" msgstr "sorpreso" -#: ../../include/text.php:1080 +#: ../../include/text.php:1090 msgid "Monday" msgstr "lunedì" -#: ../../include/text.php:1080 +#: ../../include/text.php:1090 msgid "Tuesday" msgstr "martedì" -#: ../../include/text.php:1080 +#: ../../include/text.php:1090 msgid "Wednesday" msgstr "mercoledì" -#: ../../include/text.php:1080 +#: ../../include/text.php:1090 msgid "Thursday" msgstr "giovedì" -#: ../../include/text.php:1080 +#: ../../include/text.php:1090 msgid "Friday" msgstr "venerdì" -#: ../../include/text.php:1080 +#: ../../include/text.php:1090 msgid "Saturday" msgstr "sabato" -#: ../../include/text.php:1080 +#: ../../include/text.php:1090 msgid "Sunday" msgstr "domenica" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "January" msgstr "gennaio" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "February" msgstr "febbraio" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "March" msgstr "marzo" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "April" msgstr "aprile" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "May" msgstr "maggio" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "June" msgstr "giugno" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "July" msgstr "luglio" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "August" msgstr "agosto" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "September" msgstr "settembre" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "October" msgstr "ottobre" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "November" msgstr "novembre" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "December" msgstr "dicembre" -#: ../../include/text.php:1162 +#: ../../include/text.php:1172 msgid "unknown.???" msgstr "sconosciuto???" -#: ../../include/text.php:1163 +#: ../../include/text.php:1173 msgid "bytes" msgstr "byte" -#: ../../include/text.php:1198 +#: ../../include/text.php:1208 msgid "remove category" msgstr "rimuovi la categoria" -#: ../../include/text.php:1247 +#: ../../include/text.php:1257 msgid "remove from file" msgstr "rimuovi dal file" -#: ../../include/text.php:1308 ../../include/text.php:1320 +#: ../../include/text.php:1318 ../../include/text.php:1330 msgid "Click to open/close" msgstr "Clicca per aprire/chiudere" -#: ../../include/text.php:1475 ../../mod/events.php:335 +#: ../../include/text.php:1485 ../../mod/events.php:344 msgid "link to source" msgstr "Link all'originale" -#: ../../include/text.php:1494 +#: ../../include/text.php:1504 msgid "Select a page layout: " msgstr "Scegli il layout della pagina:" -#: ../../include/text.php:1497 ../../include/text.php:1562 +#: ../../include/text.php:1507 ../../include/text.php:1572 msgid "default" msgstr "predefinito" -#: ../../include/text.php:1533 +#: ../../include/text.php:1543 msgid "Page content type: " msgstr "Contenuto della pagina:" -#: ../../include/text.php:1574 +#: ../../include/text.php:1584 msgid "Select an alternate language" msgstr "Seleziona una lingua diversa" -#: ../../include/text.php:1695 ../../include/conversation.php:117 +#: ../../include/text.php:1705 ../../include/conversation.php:117 #: ../../mod/subthread.php:72 ../../mod/subthread.php:174 #: ../../mod/tagger.php:45 ../../mod/like.php:111 msgid "photo" msgstr "la foto" -#: ../../include/text.php:1698 ../../include/conversation.php:120 +#: ../../include/text.php:1708 ../../include/conversation.php:120 #: ../../mod/tagger.php:49 msgid "event" msgstr "l'evento" -#: ../../include/text.php:1701 ../../include/conversation.php:145 +#: ../../include/text.php:1711 ../../include/conversation.php:145 #: ../../mod/subthread.php:72 ../../mod/subthread.php:174 #: ../../mod/tagger.php:53 ../../mod/like.php:111 msgid "status" msgstr "il messaggio di stato" -#: ../../include/text.php:1703 ../../include/conversation.php:147 +#: ../../include/text.php:1713 ../../include/conversation.php:147 #: ../../mod/tagger.php:55 msgid "comment" msgstr "il commento" -#: ../../include/text.php:1708 +#: ../../include/text.php:1718 msgid "activity" msgstr "l'attività" -#: ../../include/text.php:1967 +#: ../../include/text.php:1977 msgid "Design" msgstr "Design" -#: ../../include/text.php:1969 +#: ../../include/text.php:1979 msgid "Blocks" msgstr "Riquadri" -#: ../../include/text.php:1970 +#: ../../include/text.php:1980 msgid "Menus" msgstr "Menù" -#: ../../include/text.php:1971 +#: ../../include/text.php:1981 msgid "Layouts" msgstr "Layout" -#: ../../include/text.php:1972 +#: ../../include/text.php:1982 msgid "Pages" msgstr "Pagine" @@ -1204,7 +1248,7 @@ msgstr "Entra in contatto" msgid "Examples: Robert Morgenstein, Fishing" msgstr "Per esempio: Mario Rossi, Pesca" -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:390 +#: ../../include/contact_widgets.php:26 ../../mod/connections.php:391 #: ../../mod/directory.php:206 ../../mod/directory.php:211 msgid "Find" msgstr "Cerca" @@ -1230,12 +1274,12 @@ msgid "Advanced Find" msgstr "Ricerca avanzata" #: ../../include/contact_widgets.php:58 ../../include/features.php:66 -#: ../../include/widgets.php:283 +#: ../../include/widgets.php:295 msgid "Saved Folders" msgstr "Cartelle salvate" #: ../../include/contact_widgets.php:61 ../../include/contact_widgets.php:95 -#: ../../include/widgets.php:286 +#: ../../include/widgets.php:298 msgid "Everything" msgstr "Tutto" @@ -1578,7 +1622,7 @@ msgstr "Ultimi articoli" msgid "Sort by Post Date" msgstr "Per data di creazione" -#: ../../include/conversation.php:1415 +#: ../../include/conversation.php:1415 ../../include/widgets.php:81 msgid "Personal" msgstr "Personali" @@ -1586,8 +1630,9 @@ msgstr "Personali" msgid "Posts that mention or involve you" msgstr "Articoli che ti riguardano o ti menzionano" -#: ../../include/conversation.php:1424 ../../mod/connections.php:211 -#: ../../mod/connections.php:223 ../../mod/menu.php:61 +#: ../../include/conversation.php:1424 ../../include/widgets.php:83 +#: ../../mod/connections.php:211 ../../mod/connections.php:224 +#: ../../mod/menu.php:61 msgid "New" msgstr "Novità" @@ -1627,11 +1672,6 @@ msgstr "Informazioni" msgid "Profile Details" msgstr "Dettagli del profilo" -#: ../../include/conversation.php:1501 ../../include/nav.php:84 -#: ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Foto" - #: ../../include/conversation.php:1510 ../../include/nav.php:85 #: ../../mod/fbrowser.php:114 msgid "Files" @@ -1645,11 +1685,6 @@ msgstr "Archivio file" msgid "Chatrooms" msgstr "Chat" -#: ../../include/conversation.php:1532 ../../include/nav.php:87 -#: ../../include/nav.php:180 ../../mod/events.php:357 -msgid "Events" -msgstr "Eventi" - #: ../../include/conversation.php:1535 msgid "Events and Calendar" msgstr "Calendario eventi" @@ -2048,7 +2083,7 @@ msgstr "Anteprima articolo" msgid "Allow previewing posts and comments before publishing them" msgstr "Abilita l'anteprima degli articoli e dei commenti prima di pubblicarli" -#: ../../include/features.php:43 ../../include/widgets.php:490 +#: ../../include/features.php:43 ../../include/widgets.php:502 #: ../../mod/sources.php:88 msgid "Channel Sources" msgstr "Sorgenti del canale" @@ -2086,7 +2121,7 @@ msgstr "Filtra per insiemi di canali" msgid "Enable widget to display Network posts only from selected collections" msgstr "Mostra il riquadro per filtrare gli articoli di certi insiemi di canali" -#: ../../include/features.php:52 ../../include/widgets.php:252 +#: ../../include/features.php:52 ../../include/widgets.php:264 msgid "Saved Searches" msgstr "Ricerche salvate" @@ -2210,19 +2245,6 @@ msgstr "l'account locale non è stato trovato." msgid "Cannot connect to yourself." msgstr "Non puoi connetterti a te stesso." -#: ../../include/zot.php:583 -msgid "Invalid data packet" -msgstr "Dati non validi" - -#: ../../include/zot.php:593 -msgid "Unable to verify channel signature" -msgstr "Impossibile verificare la firma elettronica del canale" - -#: ../../include/zot.php:790 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Impossibile verificare la firma elettronica del sito %s" - #: ../../include/group.php:25 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -2258,11 +2280,11 @@ msgstr "Crea un nuovo insieme" msgid "Channels not in any collection" msgstr "Canali che non sono in un insieme" -#: ../../include/group.php:290 ../../include/widgets.php:253 +#: ../../include/group.php:290 ../../include/widgets.php:265 msgid "add" msgstr "aggiungi" -#: ../../include/identity.php:30 ../../mod/item.php:1232 +#: ../../include/identity.php:30 ../../mod/item.php:1244 msgid "Unable to obtain identity information from database" msgstr "Impossibile ottenere le informazioni di identificazione dal database" @@ -2300,7 +2322,7 @@ msgid "Default Profile" msgstr "Profilo predefinito" #: ../../include/identity.php:342 ../../include/profile_selectors.php:42 -#: ../../include/widgets.php:387 ../../mod/connedit.php:431 +#: ../../include/widgets.php:399 ../../mod/connedit.php:431 msgid "Friends" msgstr "Amici" @@ -2400,11 +2422,6 @@ msgstr "Promemoria" msgid "Events this week:" msgstr "Eventi di questa settimana:" -#: ../../include/identity.php:942 ../../include/identity.php:1031 -#: ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Profilo" - #: ../../include/identity.php:950 ../../mod/settings.php:937 msgid "Full Name:" msgstr "Nome completo:" @@ -2502,42 +2519,42 @@ msgstr "Lavoro:" msgid "School/education:" msgstr "Scuola:" -#: ../../include/items.php:281 ../../mod/profperm.php:23 +#: ../../include/items.php:306 ../../mod/profperm.php:23 #: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:63 -#: ../../index.php:350 +#: ../../index.php:361 msgid "Permission denied" msgstr "Permesso negato" -#: ../../include/items.php:805 +#: ../../include/items.php:830 msgid "(Unknown)" msgstr "(Sconosciuto)" -#: ../../include/items.php:3560 ../../mod/admin.php:159 +#: ../../include/items.php:3583 ../../mod/admin.php:159 #: ../../mod/admin.php:921 ../../mod/admin.php:1124 ../../mod/display.php:32 #: ../../mod/filestorage.php:18 ../../mod/home.php:63 ../../mod/thing.php:78 #: ../../mod/viewsrc.php:18 msgid "Item not found." msgstr "Elemento non trovato." -#: ../../include/items.php:3984 ../../mod/group.php:38 ../../mod/group.php:140 +#: ../../include/items.php:4007 ../../mod/group.php:38 ../../mod/group.php:140 msgid "Collection not found." msgstr "Insieme non trovato." -#: ../../include/items.php:3999 +#: ../../include/items.php:4022 msgid "Collection is empty." msgstr "L'insieme di canali è vuoto." -#: ../../include/items.php:4006 +#: ../../include/items.php:4029 #, php-format msgid "Collection: %s" msgstr "Insieme: %s" -#: ../../include/items.php:4017 +#: ../../include/items.php:4040 #, php-format msgid "Connection: %s" msgstr "Contatto: %s" -#: ../../include/items.php:4020 +#: ../../include/items.php:4043 msgid "Connection not found." msgstr "Contatto non trovato." @@ -2581,76 +2598,80 @@ msgstr "Suggerimento per la chiave segreta" msgid "Notice: Permissions have changed but have not yet been submitted." msgstr "Nota: i permessi sono stati modificati ma non ancora salvati." -#: ../../include/js_strings.php:18 +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "chiudi tutto" + +#: ../../include/js_strings.php:19 msgid "timeago.prefixAgo" msgstr "timeago.prefixAgo" -#: ../../include/js_strings.php:19 +#: ../../include/js_strings.php:20 msgid "timeago.prefixFromNow" msgstr "timeago.prefixFromNow" -#: ../../include/js_strings.php:20 +#: ../../include/js_strings.php:21 msgid "ago" msgstr "fa" -#: ../../include/js_strings.php:21 +#: ../../include/js_strings.php:22 msgid "from now" msgstr "da adesso" -#: ../../include/js_strings.php:22 +#: ../../include/js_strings.php:23 msgid "less than a minute" msgstr "meno di un minuto" -#: ../../include/js_strings.php:23 +#: ../../include/js_strings.php:24 msgid "about a minute" msgstr "circa un minuto" -#: ../../include/js_strings.php:24 +#: ../../include/js_strings.php:25 #, php-format msgid "%d minutes" msgstr "%d minuti" -#: ../../include/js_strings.php:25 +#: ../../include/js_strings.php:26 msgid "about an hour" msgstr "circa un’ora" -#: ../../include/js_strings.php:26 +#: ../../include/js_strings.php:27 #, php-format msgid "about %d hours" msgstr "circa %d ore" -#: ../../include/js_strings.php:27 +#: ../../include/js_strings.php:28 msgid "a day" msgstr "un giorno" -#: ../../include/js_strings.php:28 +#: ../../include/js_strings.php:29 #, php-format msgid "%d days" msgstr "%d giorni" -#: ../../include/js_strings.php:29 +#: ../../include/js_strings.php:30 msgid "about a month" msgstr "circa un mese" -#: ../../include/js_strings.php:30 +#: ../../include/js_strings.php:31 #, php-format msgid "%d months" msgstr "%d mesi" -#: ../../include/js_strings.php:31 +#: ../../include/js_strings.php:32 msgid "about a year" msgstr "circa un anno" -#: ../../include/js_strings.php:32 +#: ../../include/js_strings.php:33 #, php-format msgid "%d years" msgstr "%d anni" -#: ../../include/js_strings.php:33 +#: ../../include/js_strings.php:34 msgid " " msgstr " " -#: ../../include/js_strings.php:34 +#: ../../include/js_strings.php:35 msgid "timeago.numbers" msgstr "timeago.numbers" @@ -2763,7 +2784,7 @@ msgstr "Guida" msgid "Help and documentation" msgstr "Guida e documentazione" -#: ../../include/nav.php:142 +#: ../../include/nav.php:142 ../../mod/apps.php:17 msgid "Apps" msgstr "Apps" @@ -2775,18 +2796,10 @@ msgstr "App, strumenti e giochi aggiuntivi" msgid "Search site content" msgstr "Cerca nel sito" -#: ../../include/nav.php:147 ../../mod/directory.php:210 -msgid "Directory" -msgstr "Tutti i canali" - #: ../../include/nav.php:147 msgid "Channel Locator" msgstr "Ricerca canali" -#: ../../include/nav.php:158 -msgid "Matrix" -msgstr "La tua rete" - #: ../../include/nav.php:158 msgid "Your matrix" msgstr "La tua rete" @@ -2795,10 +2808,6 @@ msgstr "La tua rete" msgid "Mark all matrix notifications seen" msgstr "Segna come lette le notifiche della tua rete" -#: ../../include/nav.php:161 -msgid "Channel Home" -msgstr "Bacheca del canale" - #: ../../include/nav.php:161 msgid "Channel home" msgstr "Bacheca del canale" @@ -2808,7 +2817,7 @@ msgid "Mark all channel notifications seen" msgstr "Segna come lette le notifiche dei canali" #: ../../include/nav.php:165 ../../include/nav.php:188 -#: ../../mod/connections.php:384 +#: ../../mod/connections.php:385 msgid "Connections" msgstr "Contatti" @@ -2824,7 +2833,7 @@ msgstr "Notifiche" msgid "See all notifications" msgstr "Vedi tutte le notifiche" -#: ../../include/nav.php:170 +#: ../../include/nav.php:170 ../../mod/notifications.php:99 msgid "Mark all system notifications seen" msgstr "Segna come lette le notifiche di sistema" @@ -2852,7 +2861,7 @@ msgstr "In arrivo" msgid "Outbox" msgstr "Inviati" -#: ../../include/nav.php:177 ../../include/widgets.php:523 +#: ../../include/nav.php:177 ../../include/widgets.php:535 msgid "New Message" msgstr "Nuovo messaggio" @@ -2876,7 +2885,7 @@ msgstr "Gestisci i canali" msgid "Manage Your Channels" msgstr "Gestisci i contatti dei tuoi canali" -#: ../../include/nav.php:186 ../../include/widgets.php:501 +#: ../../include/nav.php:186 ../../include/widgets.php:513 #: ../../mod/admin.php:976 ../../mod/admin.php:1181 msgid "Settings" msgstr "Impostazioni" @@ -2909,15 +2918,15 @@ msgstr "Attendere..." msgid "view full size" msgstr "guarda nelle dimensioni reali" -#: ../../include/plugin.php:475 ../../include/plugin.php:477 +#: ../../include/plugin.php:486 ../../include/plugin.php:488 msgid "Click here to upgrade." msgstr "Clicca qui per aggiornare." -#: ../../include/plugin.php:483 +#: ../../include/plugin.php:494 msgid "This action exceeds the limits set by your subscription plan." msgstr "Questa operazione esce dai termini del tuo abbonamento." -#: ../../include/plugin.php:488 +#: ../../include/plugin.php:499 msgid "This action is not available under your subscription plan." msgstr "Questa operazione non è prevista dal tuo abbonamento." @@ -3149,134 +3158,159 @@ msgstr "Chi se ne frega" msgid "Ask me" msgstr "Chiedimelo" -#: ../../include/reddav.php:1069 +#: ../../include/reddav.php:1045 msgid "Edit File properties" msgstr "Modifica le proprietà dei file" -#: ../../include/security.php:295 +#: ../../include/zot.php:587 +msgid "Invalid data packet" +msgstr "Dati non validi" + +#: ../../include/zot.php:597 +msgid "Unable to verify channel signature" +msgstr "Impossibile verificare la firma elettronica del canale" + +#: ../../include/zot.php:794 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Impossibile verificare la firma elettronica del sito %s" + +#: ../../include/security.php:301 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." msgstr "L'identificativo di sicurezza del modulo che hai riempito non è corretto. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto." -#: ../../include/widgets.php:117 ../../mod/suggest.php:53 +#: ../../include/widgets.php:79 +msgid "App Category" +msgstr "Categorie App" + +#: ../../include/widgets.php:80 +msgid "System" +msgstr "Sistema" + +#: ../../include/widgets.php:82 +msgid "Featured" +msgstr "In evidenza" + +#: ../../include/widgets.php:129 ../../mod/suggest.php:53 msgid "Ignore/Hide" msgstr "Ignora/nascondi" -#: ../../include/widgets.php:123 ../../mod/connections.php:265 +#: ../../include/widgets.php:135 ../../mod/connections.php:266 msgid "Suggestions" msgstr "Suggerimenti" -#: ../../include/widgets.php:124 +#: ../../include/widgets.php:136 msgid "See more..." msgstr "Altro..." -#: ../../include/widgets.php:146 +#: ../../include/widgets.php:158 #, php-format msgid "You have %1$.0f of %2$.0f allowed connections." msgstr "Hai attivato %1$.0f delle %2$.0f connessioni permesse." -#: ../../include/widgets.php:152 +#: ../../include/widgets.php:164 msgid "Add New Connection" msgstr "Aggiungi un contatto" -#: ../../include/widgets.php:153 +#: ../../include/widgets.php:165 msgid "Enter the channel address" msgstr "Scrivi l'indirizzo del canale" -#: ../../include/widgets.php:154 +#: ../../include/widgets.php:166 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Per esempio: mario@pippo.it oppure http://pluto.com/barbara" -#: ../../include/widgets.php:171 +#: ../../include/widgets.php:183 msgid "Notes" msgstr "Note" -#: ../../include/widgets.php:243 +#: ../../include/widgets.php:255 msgid "Remove term" msgstr "Rimuovi termine" -#: ../../include/widgets.php:322 +#: ../../include/widgets.php:334 msgid "Archives" msgstr "Archivi" -#: ../../include/widgets.php:384 +#: ../../include/widgets.php:396 msgid "Refresh" msgstr "Aggiorna" -#: ../../include/widgets.php:385 ../../mod/connedit.php:428 +#: ../../include/widgets.php:397 ../../mod/connedit.php:428 msgid "Me" msgstr "Io" -#: ../../include/widgets.php:386 ../../mod/connedit.php:430 +#: ../../include/widgets.php:398 ../../mod/connedit.php:430 msgid "Best Friends" msgstr "Buoni amici" -#: ../../include/widgets.php:388 +#: ../../include/widgets.php:400 msgid "Co-workers" msgstr "Colleghi" -#: ../../include/widgets.php:389 ../../mod/connedit.php:432 +#: ../../include/widgets.php:401 ../../mod/connedit.php:432 msgid "Former Friends" msgstr "Ex amici" -#: ../../include/widgets.php:390 ../../mod/connedit.php:433 +#: ../../include/widgets.php:402 ../../mod/connedit.php:433 msgid "Acquaintances" msgstr "Conoscenti" -#: ../../include/widgets.php:391 +#: ../../include/widgets.php:403 msgid "Everybody" msgstr "Tutti" -#: ../../include/widgets.php:423 +#: ../../include/widgets.php:435 msgid "Account settings" msgstr "Impostazioni dell'account" -#: ../../include/widgets.php:429 +#: ../../include/widgets.php:441 msgid "Channel settings" msgstr "Impostazioni del canale" -#: ../../include/widgets.php:435 +#: ../../include/widgets.php:447 msgid "Additional features" msgstr "Funzionalità aggiuntive" -#: ../../include/widgets.php:441 +#: ../../include/widgets.php:453 msgid "Feature settings" msgstr "Impostazioni aggiuntive" -#: ../../include/widgets.php:447 +#: ../../include/widgets.php:459 msgid "Display settings" msgstr "Impostazioni grafiche" -#: ../../include/widgets.php:453 +#: ../../include/widgets.php:465 msgid "Connected apps" msgstr "App connesse" -#: ../../include/widgets.php:459 +#: ../../include/widgets.php:471 msgid "Export channel" msgstr "Esporta il canale" -#: ../../include/widgets.php:471 +#: ../../include/widgets.php:483 msgid "Automatic Permissions (Advanced)" msgstr "Permessi predefiniti (avanzato)" -#: ../../include/widgets.php:481 +#: ../../include/widgets.php:493 msgid "Premium Channel Settings" msgstr "Canale premium - impostazioni" -#: ../../include/widgets.php:518 +#: ../../include/widgets.php:530 msgid "Check Mail" msgstr "Controlla i messaggi" -#: ../../include/widgets.php:599 +#: ../../include/widgets.php:611 msgid "Chat Rooms" msgstr "Chat attive" -#: ../../include/widgets.php:617 +#: ../../include/widgets.php:629 msgid "Bookmarked Chatrooms" msgstr "Chat nei segnalibri" -#: ../../include/widgets.php:635 +#: ../../include/widgets.php:647 msgid "Suggested Chatrooms" msgstr "Chat suggerite" @@ -4101,14 +4135,6 @@ msgstr "L'autenticazione remota non è disponibile. Hai accesso solamente a ques msgid "Welcome %s. Remote authentication successful." msgstr "Ciao %s. La tua autenticazione da remoto è avvenuta con successo." -#: ../../mod/apps.php:8 -msgid "No installed applications." -msgstr "Nessuna app installata." - -#: ../../mod/apps.php:13 -msgid "Applications" -msgstr "Applicazioni" - #: ../../mod/attach.php:9 msgid "Item not available." msgstr "Elemento non disponibile." @@ -4128,7 +4154,7 @@ msgid "Channel not found." msgstr "Canale non trovato." #: ../../mod/block.php:75 ../../mod/page.php:83 ../../mod/display.php:100 -#: ../../mod/help.php:72 ../../index.php:226 +#: ../../mod/help.php:72 ../../index.php:237 msgid "Page not found." msgstr "Pagina non trovata." @@ -4249,14 +4275,6 @@ msgstr "Stato sentimentale" msgid "Romantic Partner" msgstr "Partner affettivo" -#: ../../mod/profiles.php:302 -msgid "Likes" -msgstr "Mi piace" - -#: ../../mod/profiles.php:306 -msgid "Dislikes" -msgstr "Non mi piace" - #: ../../mod/profiles.php:310 msgid "Work/Employment" msgstr "Lavoro/impiego" @@ -4493,7 +4511,7 @@ msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." msgid "Visible To" msgstr "Visibile a" -#: ../../mod/profperm.php:139 ../../mod/connections.php:277 +#: ../../mod/profperm.php:139 ../../mod/connections.php:278 msgid "All Connections" msgstr "Tutti i contatti" @@ -4554,35 +4572,39 @@ msgstr "Descrizione" msgid "Or enter new bookmark folder name" msgstr "O inserisci il nome di una nuova cartella di segnalibri" -#: ../../mod/chat.php:166 +#: ../../mod/chat.php:167 msgid "Room not found" msgstr "Chat non trovata" -#: ../../mod/chat.php:176 +#: ../../mod/chat.php:178 msgid "Leave Room" msgstr "Lascia la chat" -#: ../../mod/chat.php:177 +#: ../../mod/chat.php:179 +msgid "Delete This Room" +msgstr "Elimina questa chat" + +#: ../../mod/chat.php:180 msgid "I am away right now" msgstr "Non sono presente al momento" -#: ../../mod/chat.php:178 +#: ../../mod/chat.php:181 msgid "I am online" msgstr "Sono online" -#: ../../mod/chat.php:180 +#: ../../mod/chat.php:183 msgid "Bookmark this room" msgstr "Aggiungi chat ai segnalibri" -#: ../../mod/chat.php:204 ../../mod/chat.php:226 +#: ../../mod/chat.php:207 ../../mod/chat.php:229 msgid "New Chatroom" msgstr "Nuova chat" -#: ../../mod/chat.php:205 +#: ../../mod/chat.php:208 msgid "Chatroom Name" msgstr "Nome della chat" -#: ../../mod/chat.php:222 +#: ../../mod/chat.php:225 #, php-format msgid "%1$s's Chatrooms" msgstr "Le chat di %1$s" @@ -4827,88 +4849,88 @@ msgstr "Contatto aggiornato." msgid "Failed to update connection record." msgstr "Impossibile aggiornare le informazioni del contatto." -#: ../../mod/connections.php:191 ../../mod/connections.php:290 +#: ../../mod/connections.php:191 ../../mod/connections.php:291 msgid "Blocked" msgstr "Bloccati" -#: ../../mod/connections.php:196 ../../mod/connections.php:297 +#: ../../mod/connections.php:196 ../../mod/connections.php:298 msgid "Ignored" msgstr "Ignorati" -#: ../../mod/connections.php:201 ../../mod/connections.php:311 +#: ../../mod/connections.php:201 ../../mod/connections.php:312 msgid "Hidden" msgstr "Nascosti" -#: ../../mod/connections.php:206 ../../mod/connections.php:304 +#: ../../mod/connections.php:206 ../../mod/connections.php:305 msgid "Archived" msgstr "Archiviati" -#: ../../mod/connections.php:229 ../../mod/connections.php:243 +#: ../../mod/connections.php:230 ../../mod/connections.php:244 msgid "All" msgstr "Tutti" -#: ../../mod/connections.php:238 ../../mod/connections.php:318 +#: ../../mod/connections.php:239 ../../mod/connections.php:319 msgid "Unconnected" msgstr "Non connesso" -#: ../../mod/connections.php:268 +#: ../../mod/connections.php:269 msgid "Suggest new connections" msgstr "Suggerisci nuovi contatti" -#: ../../mod/connections.php:271 +#: ../../mod/connections.php:272 msgid "New Connections" msgstr "Nuovi contatti" -#: ../../mod/connections.php:274 +#: ../../mod/connections.php:275 msgid "Show pending (new) connections" msgstr "Richieste di contatto in attesa" -#: ../../mod/connections.php:280 +#: ../../mod/connections.php:281 msgid "Show all connections" msgstr "Mostra tutti i contatti" -#: ../../mod/connections.php:283 +#: ../../mod/connections.php:284 msgid "Unblocked" msgstr "Non bloccati" -#: ../../mod/connections.php:286 +#: ../../mod/connections.php:287 msgid "Only show unblocked connections" msgstr "Mostra solo i contatti non bloccati" -#: ../../mod/connections.php:293 +#: ../../mod/connections.php:294 msgid "Only show blocked connections" msgstr "Mostra solo i contatti bloccati" -#: ../../mod/connections.php:300 +#: ../../mod/connections.php:301 msgid "Only show ignored connections" msgstr "Mostra solo i contatti ignorati" -#: ../../mod/connections.php:307 +#: ../../mod/connections.php:308 msgid "Only show archived connections" msgstr "Mostra solo i contatti archiviati" -#: ../../mod/connections.php:314 +#: ../../mod/connections.php:315 msgid "Only show hidden connections" msgstr "Mostra solo i contatti nascosti" -#: ../../mod/connections.php:321 +#: ../../mod/connections.php:322 msgid "Only show one-way connections" msgstr "Mostra solo i contatti non ricambiati" -#: ../../mod/connections.php:366 +#: ../../mod/connections.php:367 #, php-format msgid "%1$s [%2$s]" msgstr "%1$s [%2$s]" -#: ../../mod/connections.php:367 +#: ../../mod/connections.php:368 msgid "Edit contact" msgstr "Modifica il contatto" -#: ../../mod/connections.php:388 +#: ../../mod/connections.php:389 msgid "Search your connections" msgstr "Cerca tra i contatti" -#: ../../mod/connections.php:389 +#: ../../mod/connections.php:390 msgid "Finding: " msgstr "Ricerca: " @@ -5771,7 +5793,7 @@ msgid "" "phpmyadmin or mysql." msgstr "Potresti dover importare il file 'install/database.sql' manualmente usando phpmyadmin o mysql." -#: ../../mod/setup.php:191 ../../mod/setup.php:260 ../../mod/setup.php:641 +#: ../../mod/setup.php:191 ../../mod/setup.php:260 ../../mod/setup.php:655 msgid "Please see the file \"install/INSTALL.txt\"." msgstr "Leggi il file 'install/INSTALL.txt'." @@ -5779,7 +5801,7 @@ msgstr "Leggi il file 'install/INSTALL.txt'." msgid "System check" msgstr "Verifica del sistema" -#: ../../mod/setup.php:261 ../../mod/events.php:360 +#: ../../mod/setup.php:261 ../../mod/events.php:369 msgid "Next" msgstr "Successivo" @@ -6052,71 +6074,73 @@ msgstr "Red usa un archivio per salvare i file caricati. Il server deve avere i msgid "store is writable" msgstr "l'archivio è scrivibile" -#: ../../mod/setup.php:554 +#: ../../mod/setup.php:569 msgid "" "SSL certificate cannot be validated. Fix certificate or disable https access" " to this site." msgstr "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito." -#: ../../mod/setup.php:555 +#: ../../mod/setup.php:570 msgid "" -"If you use https access, you MUST use a certification instance known by all " -"internet browsers. You MUST NOT use self-signed certificates!" -msgstr "Se abiliti https, DEVI usare un certificato riconosciuto da tutti i browser internet. NON DEVI usare certificati self-signed!" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" +msgstr "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati generati da te!" -#: ../../mod/setup.php:556 +#: ../../mod/setup.php:571 msgid "" "This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub. If your" -msgstr "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server, per esempio." +"example contain references to images on your own hub." +msgstr "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server." -#: ../../mod/setup.php:557 +#: ../../mod/setup.php:572 msgid "" -"certificate is not known by the internet browser of users they get a warning" -" message complaining about some security issues. Although" -msgstr "Se il tuo certificato non è riconosciuto dai browser, chi ti legge riceverà degli avvisi di sicurezza." +"If your certificate is not recognised, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." +msgstr "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno un avviso su possibili problemi di sicurezza." -#: ../../mod/setup.php:558 +#: ../../mod/setup.php:573 msgid "" -"these complains are not the real truth - there are no security issues with " -"your encryption! - the users may be confused, nerved or even" -msgstr "Anche se questi avvisi non indicano problemi reali - la tua crittografia non ha veramente problemi di sicurezza! - gli utenti potrebbero restarne confusi o preoccupati." +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "Ciò può creare gravi problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto." -#: ../../mod/setup.php:559 +#: ../../mod/setup.php:574 msgid "" -"worse may become scared about redmatrix having security issues. Use one of " -"the free certification instances!" -msgstr "Oppure potrebbero anche pensare che sia redmatrix in generale ad avere problemi di sicurezza. Puoi usare un certificato gratuito!" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser." -#: ../../mod/setup.php:561 +#: ../../mod/setup.php:576 msgid "SSL certificate validation" msgstr "Validazione del certificato SSL" -#: ../../mod/setup.php:568 +#: ../../mod/setup.php:582 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." -#: ../../mod/setup.php:570 +#: ../../mod/setup.php:584 msgid "Url rewrite is working" msgstr "Url rewrite funziona correttamente" -#: ../../mod/setup.php:580 +#: ../../mod/setup.php:594 msgid "" "The database configuration file \".htconfig.php\" could not be written. " "Please use the enclosed text to create a configuration file in your web " "server root." msgstr "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito." -#: ../../mod/setup.php:604 +#: ../../mod/setup.php:618 msgid "Errors encountered creating database tables." msgstr "La creazione delle tabelle del database ha generato errori." -#: ../../mod/setup.php:639 +#: ../../mod/setup.php:653 msgid "

    What next

    " msgstr "

    I prossimi passi

    " -#: ../../mod/setup.php:640 +#: ../../mod/setup.php:654 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." @@ -6258,64 +6282,64 @@ msgstr "Amministratori del sito" msgid "Event title and start time are required." msgstr "Sono necessari il titolo e l'ora d'inizio dell'evento." -#: ../../mod/events.php:290 +#: ../../mod/events.php:299 msgid "l, F j" msgstr "l j F" -#: ../../mod/events.php:312 +#: ../../mod/events.php:321 msgid "Edit event" msgstr "Modifica l'evento" -#: ../../mod/events.php:358 +#: ../../mod/events.php:367 msgid "Create New Event" msgstr "Crea un nuovo evento" -#: ../../mod/events.php:359 +#: ../../mod/events.php:368 msgid "Previous" msgstr "Precendente" -#: ../../mod/events.php:431 +#: ../../mod/events.php:439 msgid "hour:minute" msgstr "ora:minuti" -#: ../../mod/events.php:450 +#: ../../mod/events.php:459 msgid "Event details" msgstr "Dettagli evento" -#: ../../mod/events.php:451 +#: ../../mod/events.php:460 #, 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." -#: ../../mod/events.php:453 +#: ../../mod/events.php:462 msgid "Event Starts:" msgstr "Inizio:" -#: ../../mod/events.php:453 ../../mod/events.php:467 +#: ../../mod/events.php:462 ../../mod/events.php:476 msgid "Required" msgstr "Obbligatorio" -#: ../../mod/events.php:456 +#: ../../mod/events.php:465 msgid "Finish date/time is not known or not relevant" msgstr "La data/ora di fine non è rilevante" -#: ../../mod/events.php:458 +#: ../../mod/events.php:467 msgid "Event Finishes:" msgstr "Fine:" -#: ../../mod/events.php:461 +#: ../../mod/events.php:470 msgid "Adjust for viewer timezone" msgstr "Adatta al fuso orario di chi legge" -#: ../../mod/events.php:463 +#: ../../mod/events.php:472 msgid "Description:" msgstr "Descrizione:" -#: ../../mod/events.php:467 +#: ../../mod/events.php:476 msgid "Title:" msgstr "Titolo:" -#: ../../mod/events.php:469 +#: ../../mod/events.php:478 msgid "Share this event" msgstr "Condividi questo evento" @@ -6523,7 +6547,7 @@ msgstr "%1$s ha taggato %3$s di %2$s con %4$s" msgid "Help:" msgstr "Guida:" -#: ../../mod/help.php:69 ../../index.php:223 +#: ../../mod/help.php:69 ../../index.php:234 msgid "Not Found" msgstr "Non disponibile" @@ -6763,24 +6787,24 @@ msgstr "Per saperne di più sul progetto Red Matrix e sul perché potrebbe cambi msgid "Unable to locate original post." msgstr "Impossibile trovare il messaggio originale." -#: ../../mod/item.php:345 +#: ../../mod/item.php:352 msgid "Empty post discarded." msgstr "L'articolo vuoto è stato ignorato." -#: ../../mod/item.php:385 +#: ../../mod/item.php:392 msgid "Executable content type not permitted to this channel." msgstr "I contenuti eseguibili non sono permessi su questo canale." -#: ../../mod/item.php:794 +#: ../../mod/item.php:806 msgid "System error. Post not saved." msgstr "Errore di sistema. Articolo non salvato." -#: ../../mod/item.php:1237 +#: ../../mod/item.php:1249 #, php-format msgid "You have reached your limit of %1$.0f top level posts." msgstr "Hai raggiunto il limite massimo di %1$.0f articoli sulla pagina principale." -#: ../../mod/item.php:1243 +#: ../../mod/item.php:1255 #, php-format msgid "You have reached your limit of %1$.0f webpages." msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web." @@ -6806,16 +6830,16 @@ msgstr "Le informazioni remote sulla privacy non sono disponibili." msgid "Visible to:" msgstr "Visibile a:" -#: ../../mod/viewconnections.php:50 +#: ../../mod/viewconnections.php:58 msgid "No connections." msgstr "Nessun contatto." -#: ../../mod/viewconnections.php:62 +#: ../../mod/viewconnections.php:70 #, php-format msgid "Visit %s's profile [%s]" msgstr "Visita il profilo di %s [%s]" -#: ../../mod/viewconnections.php:77 +#: ../../mod/viewconnections.php:85 msgid "View Connnections" msgstr "Guarda i contatti" @@ -7289,11 +7313,11 @@ msgstr "L'identificativo della richiesta non è valido." msgid "Discard" msgstr "Rifiuta" -#: ../../mod/notifications.php:93 ../../mod/notify.php:54 +#: ../../mod/notifications.php:94 ../../mod/notify.php:54 msgid "No more system notifications." msgstr "Non ci sono nuove notifiche di sistema." -#: ../../mod/notifications.php:97 ../../mod/notify.php:58 +#: ../../mod/notifications.php:98 ../../mod/notify.php:58 msgid "System Notifications" msgstr "Notifiche di sistema" @@ -7539,8 +7563,8 @@ msgid "Set the border colour of comments" msgstr "Imposta il colore del bordo dei commenti" #: ../../view/theme/redbasic/php/config.php:120 -msgid "Set the opacity of items" -msgstr "Opacità degli oggetti" +msgid "Set the indent for comments" +msgstr "Imposta il lo spostamento a destra dei commenti" #: ../../view/theme/redbasic/php/config.php:121 msgid "Set the basic colour for item icons" diff --git a/view/it/strings.php b/view/it/strings.php index 9ce09e00a..c288b2ff1 100644 --- a/view/it/strings.php +++ b/view/it/strings.php @@ -6,6 +6,12 @@ function string_plural_select_it($n){ ; $a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; $a->strings["Profile Photos"] = "Foto del profilo"; +$a->strings["Matrix"] = "La tua rete"; +$a->strings["Channel Home"] = "Bacheca del canale"; +$a->strings["Profile"] = "Profilo"; +$a->strings["Photos"] = "Foto"; +$a->strings["Events"] = "Eventi"; +$a->strings["Directory"] = "Tutti i canali"; $a->strings["Embedded content"] = "Contenuti incorporati"; $a->strings["Embedding disabled"] = "Contenuti incorporati - funzione disabilitata"; $a->strings["created a new post"] = "Ha creato un nuovo articolo"; @@ -22,49 +28,6 @@ $a->strings["Page Link"] = "Link alla pagina"; $a->strings["Title"] = "Titolo"; $a->strings["Created"] = "Creato"; $a->strings["Edited"] = "Modificato"; -$a->strings["Private Message"] = "Messaggio privato"; -$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["Message is verified"] = "Messaggio verificato"; -$a->strings["add tag"] = "Aggiungi tag"; -$a->strings["I like this (toggle)"] = "Attiva/disattiva Mi piace"; -$a->strings["like"] = "mi piace"; -$a->strings["I don't like this (toggle)"] = "Attiva/disattiva Non mi piace"; -$a->strings["dislike"] = "non mi piace"; -$a->strings["Share this"] = "Condividi"; -$a->strings["share"] = "condividi"; -$a->strings["View %s's profile - %s"] = "Guarda il profilo di %s - %s"; -$a->strings["to"] = "a"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca"; -$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca:"; -$a->strings[" from %s"] = " da %s"; -$a->strings["last edited: %s"] = "ultima modifica: %s"; -$a->strings["Expires: %s"] = "Scadenza: %s"; -$a->strings["Bookmark Links"] = "I link dei segnalibri"; -$a->strings["Please wait"] = "Attendere"; -$a->strings["%d comment"] = array( - 0 => "%d commento", - 1 => "%d commenti", -); -$a->strings["show more"] = "mostra tutto"; -$a->strings["This is you"] = "Questo sei tu"; -$a->strings["Comment"] = "Commento"; -$a->strings["Submit"] = "Salva"; -$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["Encrypt text"] = "Crittografia del testo"; $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\""; @@ -143,6 +106,53 @@ $a->strings["QR code"] = "QR code"; $a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s"; $a->strings["post"] = "l'articolo"; $a->strings["$1 wrote:"] = "$1 ha scritto:"; +$a->strings["Private Message"] = "Messaggio privato"; +$a->strings["Delete"] = "Elimina"; +$a->strings["Select"] = "Seleziona"; +$a->strings["save to folder"] = "salva in una cartella"; +$a->strings["Like"] = "Mi piace"; +$a->strings["Likes"] = "Mi piace"; +$a->strings["Dislike"] = "Non mi piace"; +$a->strings["Dislikes"] = "Non mi piace"; +$a->strings["add star"] = "aggiungi ai preferiti"; +$a->strings["remove star"] = "rimuovi dai preferiti"; +$a->strings["toggle star status"] = "Attiva/disattiva preferito"; +$a->strings["starred"] = "preferito"; +$a->strings["Message is verified"] = "Messaggio verificato"; +$a->strings["add tag"] = "Aggiungi tag"; +$a->strings["I like this (toggle)"] = "Attiva/disattiva Mi piace"; +$a->strings["like"] = "mi piace"; +$a->strings["I don't like this (toggle)"] = "Attiva/disattiva Non mi piace"; +$a->strings["dislike"] = "non mi piace"; +$a->strings["Share this"] = "Condividi"; +$a->strings["share"] = "condividi"; +$a->strings["View %s's profile - %s"] = "Guarda il profilo di %s - %s"; +$a->strings["to"] = "a"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca"; +$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca:"; +$a->strings[" from %s"] = " da %s"; +$a->strings["last edited: %s"] = "ultima modifica: %s"; +$a->strings["Expires: %s"] = "Scadenza: %s"; +$a->strings["Bookmark Links"] = "I link dei segnalibri"; +$a->strings["Please wait"] = "Attendere"; +$a->strings["%d comment"] = array( + 0 => "%d commento", + 1 => "%d commenti", +); +$a->strings["show more"] = "mostra tutto"; +$a->strings["This is you"] = "Questo sei tu"; +$a->strings["Comment"] = "Commento"; +$a->strings["Submit"] = "Salva"; +$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["Encrypt text"] = "Crittografia del testo"; $a->strings["%1\$s's bookmarks"] = "I segnalibri di %1\$s"; $a->strings["Missing room name"] = "Chat senza nome"; $a->strings["Duplicate room name"] = "Il nome della chat è duplicato"; @@ -379,11 +389,9 @@ $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["Photos"] = "Foto"; $a->strings["Files"] = "Elenco file"; $a->strings["Files and Storage"] = "Archivio file"; $a->strings["Chatrooms"] = "Chat"; -$a->strings["Events"] = "Eventi"; $a->strings["Events and Calendar"] = "Calendario eventi"; $a->strings["Bookmarks"] = "Segnalibri"; $a->strings["Saved Bookmarks"] = "Segnalibri salvati"; @@ -513,9 +521,6 @@ $a->strings["Channel was deleted and no longer exists."] = "Il canale è stato r $a->strings["Channel discovery failed."] = "La ricerca del canale non ha avuto successo."; $a->strings["local account not found."] = "l'account locale non è stato trovato."; $a->strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso."; -$a->strings["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["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "È stato ripristinato un insieme con lo stesso nome che era stato eliminato in precedenza. I permessi già presenti potrebbero rimanere validi per i nuovi canali. Se non vuoi che ciò accada, devi creare un altro insieme con un nome diverso."; $a->strings["Default privacy group for new contacts"] = "Insieme predefinito per i canali che inizi a seguire"; $a->strings["All Channels"] = "Tutti i canali"; @@ -557,7 +562,6 @@ $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["Profile"] = "Profilo"; $a->strings["Full Name:"] = "Nome completo:"; $a->strings["j F, Y"] = "j F Y"; $a->strings["j F"] = "j F"; @@ -600,6 +604,7 @@ $a->strings["everybody"] = "tutti"; $a->strings["Secret Passphrase"] = "Chiave segreta"; $a->strings["Passphrase hint"] = "Suggerimento per la chiave segreta"; $a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Nota: i permessi sono stati modificati ma non ancora salvati."; +$a->strings["close all"] = "chiudi tutto"; $a->strings["timeago.prefixAgo"] = "timeago.prefixAgo"; $a->strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; $a->strings["ago"] = "fa"; @@ -647,12 +652,9 @@ $a->strings["Help and documentation"] = "Guida e documentazione"; $a->strings["Apps"] = "Apps"; $a->strings["Addon applications, utilities, games"] = "App, strumenti e giochi aggiuntivi"; $a->strings["Search site content"] = "Cerca nel sito"; -$a->strings["Directory"] = "Tutti i canali"; $a->strings["Channel Locator"] = "Ricerca canali"; -$a->strings["Matrix"] = "La tua rete"; $a->strings["Your matrix"] = "La tua rete"; $a->strings["Mark all matrix notifications seen"] = "Segna come lette le notifiche della tua rete"; -$a->strings["Channel Home"] = "Bacheca del canale"; $a->strings["Channel home"] = "Bacheca del canale"; $a->strings["Mark all channel notifications seen"] = "Segna come lette le notifiche dei canali"; $a->strings["Connections"] = "Contatti"; @@ -741,7 +743,13 @@ $a->strings["It's complicated"] = "Relazione complicata"; $a->strings["Don't care"] = "Chi se ne frega"; $a->strings["Ask me"] = "Chiedimelo"; $a->strings["Edit File properties"] = "Modifica le proprietà dei file"; +$a->strings["Invalid data packet"] = "Dati non validi"; +$a->strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale"; +$a->strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s"; $a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "L'identificativo di sicurezza del modulo che hai riempito non è corretto. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto."; +$a->strings["App Category"] = "Categorie App"; +$a->strings["System"] = "Sistema"; +$a->strings["Featured"] = "In evidenza"; $a->strings["Ignore/Hide"] = "Ignora/nascondi"; $a->strings["Suggestions"] = "Suggerimenti"; $a->strings["See more..."] = "Altro..."; @@ -970,8 +978,6 @@ $a->strings["Please login to continue."] = "Accedi al sito per continuare."; $a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?"; $a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "L'autenticazione remota non è disponibile. Hai accesso solamente a questo sito. Puoi provare ad uscire per tentare di nuovo."; $a->strings["Welcome %s. Remote authentication successful."] = "Ciao %s. La tua autenticazione da remoto è avvenuta con successo."; -$a->strings["No installed applications."] = "Nessuna app installata."; -$a->strings["Applications"] = "Applicazioni"; $a->strings["Item not available."] = "Elemento non disponibile."; $a->strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s"; $a->strings["Invalid item."] = "Elemento non valido."; @@ -1005,8 +1011,6 @@ $a->strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo $a->strings["Profile Name is required."] = "Il nome del profilo è obbligatorio ."; $a->strings["Marital Status"] = "Stato sentimentale"; $a->strings["Romantic Partner"] = "Partner affettivo"; -$a->strings["Likes"] = "Mi piace"; -$a->strings["Dislikes"] = "Non mi piace"; $a->strings["Work/Employment"] = "Lavoro/impiego"; $a->strings["Religion"] = "Religione"; $a->strings["Political Views"] = "Orientamento politico"; @@ -1081,6 +1085,7 @@ $a->strings["Description"] = "Descrizione"; $a->strings["Or enter new bookmark folder name"] = "O inserisci il nome di una nuova cartella di segnalibri"; $a->strings["Room not found"] = "Chat non trovata"; $a->strings["Leave Room"] = "Lascia la chat"; +$a->strings["Delete This Room"] = "Elimina questa chat"; $a->strings["I am away right now"] = "Non sono presente al momento"; $a->strings["I am online"] = "Sono online"; $a->strings["Bookmark this room"] = "Aggiungi chat ai segnalibri"; @@ -1429,11 +1434,11 @@ $a->strings["view/tpl/smarty3 is writable"] = "view/tpl/smarty3 è scrivibile"; $a->strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Red usa un archivio per salvare i file caricati. Il server deve avere i diritti di scrittura sulla cartella dell'archivio che si trova dentro la cartella principale di Red"; $a->strings["store is writable"] = "l'archivio è scrivibile"; $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["If you use https access, you MUST use a certification instance known by all internet browsers. You MUST NOT use self-signed certificates!"] = "Se abiliti https, DEVI usare un certificato riconosciuto da tutti i browser internet. NON DEVI usare certificati self-signed!"; -$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub. If your"] = "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server, per esempio."; -$a->strings["certificate is not known by the internet browser of users they get a warning message complaining about some security issues. Although"] = "Se il tuo certificato non è riconosciuto dai browser, chi ti legge riceverà degli avvisi di sicurezza."; -$a->strings["these complains are not the real truth - there are no security issues with your encryption! - the users may be confused, nerved or even"] = "Anche se questi avvisi non indicano problemi reali - la tua crittografia non ha veramente problemi di sicurezza! - gli utenti potrebbero restarne confusi o preoccupati."; -$a->strings["worse may become scared about redmatrix having security issues. Use one of the free certification instances!"] = "Oppure potrebbero anche pensare che sia redmatrix in generale ad avere problemi di sicurezza. Puoi usare un certificato gratuito!"; +$a->strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati generati da te!"; +$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server."; +$a->strings["If your certificate is not recognised, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno un avviso su possibili problemi di sicurezza."; +$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Ciò può creare gravi problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto."; +$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser."; $a->strings["SSL certificate validation"] = "Validazione del certificato SSL"; $a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server."; $a->strings["Url rewrite is working"] = "Url rewrite funziona correttamente"; @@ -1778,7 +1783,7 @@ $a->strings["Set the background image"] = "Immagine di sfondo"; $a->strings["Set the background colour of items"] = "Colore di sfondo degli elementi della pagina"; $a->strings["Set the background colour of comments"] = "Imposta il colore di sfondo dei commenti"; $a->strings["Set the border colour of comments"] = "Imposta il colore del bordo dei commenti"; -$a->strings["Set the opacity of items"] = "Opacità degli oggetti"; +$a->strings["Set the indent for comments"] = "Imposta il lo spostamento a destra dei commenti"; $a->strings["Set the basic colour for item icons"] = "Colore di base per le icone"; $a->strings["Set the hover colour for item icons"] = "Colore per le icone in evidenza"; $a->strings["Set font-size for the entire application"] = "Dimensione font per tutto il sito"; From eab440d321f3895c7972010f2f9bd07e63f1d8ba Mon Sep 17 00:00:00 2001 From: jeroenpraat Date: Sat, 17 May 2014 18:57:56 +0000 Subject: [PATCH 079/147] Dark schema: Minor minor edit --- view/theme/redbasic/schema/dark.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/view/theme/redbasic/schema/dark.php b/view/theme/redbasic/schema/dark.php index 4da020116..4bf22db78 100644 --- a/view/theme/redbasic/schema/dark.php +++ b/view/theme/redbasic/schema/dark.php @@ -71,13 +71,13 @@ if (! $code_bgcolour) $code_bgcolour = "#000"; if (! $code_txtcolour) - $code_txtcolour = "#bbb"; + $code_txtcolour = "#fff"; if (! $pre_borderc) $pre_borderc = "#090909"; if (! $pre_bgcolour) $pre_bgcolour = "#000"; if (! $pre_txtcolour) - $pre_txtcolour = "#bbb"; + $pre_txtcolour = "#fff"; if (! $item_bordercolour) $item_bordercolour = "#333"; if (! $notif_itemcolour) From 28e8a1d2d3d8929a0318ea9b6ae65437b6e3c41b Mon Sep 17 00:00:00 2001 From: friendica Date: Sat, 17 May 2014 17:18:56 -0700 Subject: [PATCH 080/147] app DB structure --- boot.php | 14 +++++++------- install/database.sql | 22 ++++++++++++++++++++++ install/update.php | 27 ++++++++++++++++++++++++++- version.inc | 2 +- 4 files changed, 56 insertions(+), 9 deletions(-) diff --git a/boot.php b/boot.php index 602012c85..f9f8ad43f 100755 --- a/boot.php +++ b/boot.php @@ -47,7 +47,7 @@ define ( 'RED_PLATFORM', 'Red Matrix' ); define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'R'); define ( 'ZOT_REVISION', 1 ); -define ( 'DB_UPDATE_VERSION', 1107 ); +define ( 'DB_UPDATE_VERSION', 1108 ); define ( 'EOL', '
    ' . "\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); @@ -397,12 +397,11 @@ define ( 'XCHAN_FLAGS_DELETED', 0x1000); * Traficlights for Administration of HubLoc * to detect problems in inter server communication */ -define ('HUBLOC_NOTUSED', 0x0000); -define ('HUBLOC_SEND_ERROR', 0x0001); -define ('HUBLOC_RECEIVE_ERROR', 0x0002); -define ('HUBLOC_WORKS', 0x0004); -define ('HUBLOC_OFFLINE', 0x0008); - +define ('HUBLOC_NOTUSED', 0x0000); +define ('HUBLOC_SEND_ERROR', 0x0001); +define ('HUBLOC_RECEIVE_ERROR', 0x0002); +define ('HUBLOC_WORKS', 0x0004); +define ('HUBLOC_OFFLINE', 0x0008); /** * Tag/term types @@ -424,6 +423,7 @@ define ( 'TERM_OBJ_PROFILE', 3 ); define ( 'TERM_OBJ_CHANNEL', 4 ); define ( 'TERM_OBJ_OBJECT', 5 ); define ( 'TERM_OBJ_THING', 6 ); +define ( 'TERM_OBJ_APP', 7 ); /** diff --git a/install/database.sql b/install/database.sql index a5094b8e1..31fa68e9d 100644 --- a/install/database.sql +++ b/install/database.sql @@ -82,6 +82,28 @@ CREATE TABLE IF NOT EXISTS `addon` ( KEY `installed` (`installed`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +CREATE TABLE IF NOT EXISTS `app` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `app_id` char(64) NOT NULL DEFAULT '', + `app_sig` char(255) NOT NULL DEFAULT '', + `app_author` char(255) NOT NULL DEFAULT '', + `app_name` char(255) NOT NULL DEFAULT '', + `app_desc` text NOT NULL, + `app_url` char(255) NOT NULL DEFAULT '', + `app_photo` char(255) NOT NULL DEFAULT '', + `app_version` char(255) NOT NULL DEFAULT '', + `app_channel` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + KEY `app_id` (`app_id`), + KEY `app_name` (`app_name`), + KEY `app_url` (`app_url`), + KEY `app_photo` (`app_photo`), + KEY `app_version` (`app_version`), + KEY `app_channel` (`app_channel`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + + CREATE TABLE IF NOT EXISTS `attach` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `aid` int(10) unsigned NOT NULL DEFAULT '0', diff --git a/install/update.php b/install/update.php index d497cda70..92a4d6ef2 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ Date: Sun, 18 May 2014 09:14:21 +0200 Subject: [PATCH 081/147] implement modal for more then 10 likes/dislikes --- boot.php | 2 +- include/ItemObject.php | 18 +++++++++++++++++ view/tpl/conv_item.tpl | 44 ++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 63 insertions(+), 1 deletion(-) diff --git a/boot.php b/boot.php index f9f8ad43f..e86e3da84 100755 --- a/boot.php +++ b/boot.php @@ -347,7 +347,7 @@ define ( 'DROPITEM_PHASE2', 2); * Maximum number of "people who like (or don't like) this" that we will list by name */ -define ( 'MAX_LIKERS', 75); +define ( 'MAX_LIKERS', 10); /** * Communication timeout diff --git a/include/ItemObject.php b/include/ItemObject.php index 475642787..cdb09ecf1 100644 --- a/include/ItemObject.php +++ b/include/ItemObject.php @@ -125,11 +125,24 @@ class Item extends BaseObject { $like_count = ((x($alike,$item['mid'])) ? $alike[$item['mid']] : ''); $like_list = ((x($alike,$item['mid'])) ? $alike[$item['mid'] . '-l'] : ''); + if (count($like_list) > MAX_LIKERS) { + $like_list_part = array_slice($like_list, 0, MAX_LIKERS); + array_push($like_list_part, '' . t('View all') . ''); + } else { + $like_list_part = ''; + } $like_button_label = ((x($alike,$item['mid'])) && ($alike[$item['mid']] < 2 ) ? t('Like') : t('Likes')); + if (feature_enabled($conv->get_profile_owner(),'dislike')) { $dislike_count = ((x($dlike,$item['mid'])) ? $dlike[$item['mid']] : ''); $dislike_list = ((x($dlike,$item['mid'])) ? $dlike[$item['mid'] . '-l'] : ''); $dislike_button_label = ((x($dlike,$item['mid'])) && ($dlike[$item['mid']] < 2) ? t('Dislike') : t('Dislikes')); + if (count($dislike_list) > MAX_LIKERS) { + $dislike_list_part = array_slice($dislike_list, 0, MAX_LIKERS); + array_push($dislike_list_part, '' . t('View all') . ''); + } else { + $dislike_list_part = ''; + } } $showlike = ((x($alike,$item['mid'])) ? format_like($alike[$item['mid']],$alike[$item['mid'] . '-l'],'like',$item['mid']) : ''); @@ -261,10 +274,15 @@ class Item extends BaseObject { // end toolbar buttons 'like_count' => $like_count, 'like_list' => $like_list, + 'like_list_part' => $like_list_part, 'like_button_label' => $like_button_label, + 'like_modal_title' => t('Likes'), + 'dislike_modal_title' => t('Dislikes'), 'dislike_count' => ((feature_enabled($conv->get_profile_owner(),'dislike')) ? $dislike_count : ''), 'dislike_list' => ((feature_enabled($conv->get_profile_owner(),'dislike')) ? $dislike_list : ''), + 'dislike_list_part' => ((feature_enabled($conv->get_profile_owner(),'dislike')) ? $dislike_list_part : ''), 'dislike_button_label' => ((feature_enabled($conv->get_profile_owner(),'dislike')) ? $dislike_button_label : ''), + 'modal_dismiss' => t('Close'), 'showlike' => $showlike, 'showdislike' => $showdislike, 'comment' => $this->get_comment_box($indent), diff --git a/view/tpl/conv_item.tpl b/view/tpl/conv_item.tpl index f9be3b077..ee10b6633 100755 --- a/view/tpl/conv_item.tpl +++ b/view/tpl/conv_item.tpl @@ -103,16 +103,60 @@ {{if $item.like_count}}
    + {{if $item.like_list_part}} + + {{else}} + {{/if}}
    {{/if}} {{if $item.dislike_count}}
    + {{if $item.dislike_list_part}} + + {{else}} + {{/if}}
    {{/if}} + {{if $item.like_list_part}} + + {{/if}} + {{if $item.dislike_list_part}} + + {{/if}} {{* we dont' use this do we? {{if $item.drop.pagedrop}} From 070e7cc376ec6465d61a63aa4954969cf9cb9e6e Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 18 May 2014 00:44:42 -0700 Subject: [PATCH 082/147] more app infrastructure --- include/apps.php | 53 ++++++++++++++++++++++++++++++++++++++++++++---- version.inc | 2 +- 2 files changed, 50 insertions(+), 5 deletions(-) diff --git a/include/apps.php b/include/apps.php index 181079f2f..58af045f1 100644 --- a/include/apps.php +++ b/include/apps.php @@ -104,12 +104,57 @@ function parse_app_description($f) { function translate_system_apps(&$arr) { - $apps = array( 'Matrix' => t('Matrix'), 'Channel Home' => t('Channel Home'), 'Profile' => t('Profile'), - 'Photos' => t('Photos'), 'Events' => t('Events'), 'Directory' => t('Directory'), 'Help' => t('Help') - + $apps = array( 'Matrix' => t('Matrix'), + 'Channel Home' => t('Channel Home'), + 'Profile' => t('Profile'), + 'Photos' => t('Photos'), + 'Events' => t('Events'), + 'Directory' => t('Directory'), + 'Help' => t('Help') ); if(array_key_exists($arr['name'],$apps)) $arr['name'] = $apps[$arr['name']]; -} \ No newline at end of file +} + +function app_render($app) { + + + + + +} + + +function app_install($uid,$app) { + + + +} + + +function app_installed($uid,$app) { + + $r = q("select id from app where app_id = '%s' and app_version = '%s' and app_channel = %d limit 1", + dbesc((array_key_exists('guid',$app)) ? $app['guid'] : ''), + dbesc((array_key_exists('version',$app)) ? $app['version'] : ''), + intval($uid) + ); + return(($r) ? true : false); + +} + + +function app_list($uid) { + $r = q("select * from app where app_channel = %d order by app_name asc", + intval($uid) + ); + return($r); +} + + +function app_decode($s) { + $x = base64_decode($s); + return json_decode($x,true); +} diff --git a/version.inc b/version.inc index 3f746cef1..934b9cd3c 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-05-17.678 +2014-05-18.679 From 2b44af445515a5e1beea14d3d47025a411d39e7b Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 18 May 2014 02:00:06 -0700 Subject: [PATCH 083/147] more app work --- include/apps.php | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/include/apps.php b/include/apps.php index 58af045f1..09aee0389 100644 --- a/include/apps.php +++ b/include/apps.php @@ -158,3 +158,47 @@ function app_decode($s) { $x = base64_decode($s); return json_decode($x,true); } + + +function app_store($arr) { + + $darray = array(); + $ret = array('success' => false); + + $darray['app_url'] = ((x($arr,'url')) ? $arr['url'] : ''); + $darray['app_channel'] = ((x($arr,'uid')) ? $arr['uid'] : 0); + if((! $darray['url']) || (! $darray['app_channel'])) + return $ret; + + $darray['app_id'] = ((x($arr,'guid')) ? $arr['guid'] : random_string()); + $darray['app_sig'] = ((x($arr,'sig')) ? $arr['sig'] : ''); + $darray['app_author'] = ((x($arr,'author')) ? $arr['author'] : get_observer_hash()); + $darray['app_name'] = ((x($arr,'name')) ? escape_tags($arr['name']) : t('Unknown')); + $darray['app_desc'] = ((x($arr,'desc')) ? escape_tags($arr['desc']) : ''); + $darray['app_photo'] = ((x($arr,'photo')) ? $arr['photo'] : z_root() . '/' . get_default_profile_photo(80)); + $darray['app_version'] = ((x($arr,'version')) ? escape_tags($arr['version']) : ''); + + $r = q("insert into app ( app_id, app_sig, app_author, app_name, app_desc, app_url, app_photo, app_version, app_channel) values ( '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d )", + dbesc($darray['app_id']), + dbesc($darray['app_sig']), + dbesc($darray['app_author']), + dbesc($darray['app_name']), + dbesc($darray['app_desc']), + dbesc($darray['app_url']), + dbesc($darray['app_photo']), + dbesc($darray['app_version']), + intval($darray['app_channel']) + ); + if($r) + $ret['success'] = true; + + return $ret; +} + + +function app_update($arr) { + + + + +} \ No newline at end of file From 68ca4ef19e0617904d8557e95ec74d09af833d00 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 18 May 2014 02:21:06 -0700 Subject: [PATCH 084/147] support commerical apps --- boot.php | 2 +- install/database.sql | 6 +++++- install/update.php | 13 ++++++++++++- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/boot.php b/boot.php index e86e3da84..24f7d5532 100755 --- a/boot.php +++ b/boot.php @@ -47,7 +47,7 @@ define ( 'RED_PLATFORM', 'Red Matrix' ); define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'R'); define ( 'ZOT_REVISION', 1 ); -define ( 'DB_UPDATE_VERSION', 1108 ); +define ( 'DB_UPDATE_VERSION', 1109 ); 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 31fa68e9d..0de5879a2 100644 --- a/install/database.sql +++ b/install/database.sql @@ -94,13 +94,17 @@ CREATE TABLE IF NOT EXISTS `app` ( `app_photo` char(255) NOT NULL DEFAULT '', `app_version` char(255) NOT NULL DEFAULT '', `app_channel` int(11) NOT NULL DEFAULT '0', + `app_addr` char(255) NOT NULL DEFAULT '', + `app_price` char(255) NOT NULL DEFAULT '', + `app_page` char(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `app_id` (`app_id`), KEY `app_name` (`app_name`), KEY `app_url` (`app_url`), KEY `app_photo` (`app_photo`), KEY `app_version` (`app_version`), - KEY `app_channel` (`app_channel`) + KEY `app_channel` (`app_channel`), + KEY `app_price` (`app_price`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; diff --git a/install/update.php b/install/update.php index 92a4d6ef2..561070ba4 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ Date: Sun, 18 May 2014 18:21:20 -0700 Subject: [PATCH 085/147] start to build out the apps --- include/apps.php | 62 +++++++++++++++++++++++++++++++++++++++++----- include/bbcode.php | 14 +++++++++++ 2 files changed, 70 insertions(+), 6 deletions(-) diff --git a/include/apps.php b/include/apps.php index 09aee0389..ac6f34ee5 100644 --- a/include/apps.php +++ b/include/apps.php @@ -119,10 +119,8 @@ function translate_system_apps(&$arr) { } function app_render($app) { - - - - +//debugging + return print_r($app,true); } @@ -177,8 +175,11 @@ function app_store($arr) { $darray['app_desc'] = ((x($arr,'desc')) ? escape_tags($arr['desc']) : ''); $darray['app_photo'] = ((x($arr,'photo')) ? $arr['photo'] : z_root() . '/' . get_default_profile_photo(80)); $darray['app_version'] = ((x($arr,'version')) ? escape_tags($arr['version']) : ''); + $darray['app_addr'] = ((x($arr,'addr')) ? escape_tags($arr['addr']) : ''); + $darray['app_price'] = ((x($arr,'price')) ? escape_tags($arr['price']) : ''); + $darray['app_page'] = ((x($arr,'page')) ? escape_tags($arr['page']) : ''); - $r = q("insert into app ( app_id, app_sig, app_author, app_name, app_desc, app_url, app_photo, app_version, app_channel) values ( '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d )", + $r = q("insert into app ( app_id, app_sig, app_author, app_name, app_desc, app_url, app_photo, app_version, app_channel, app_addr, app_price, app_page ) values ( '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, '%s', '%s', '%s' )", dbesc($darray['app_id']), dbesc($darray['app_sig']), dbesc($darray['app_author']), @@ -187,7 +188,10 @@ function app_store($arr) { dbesc($darray['app_url']), dbesc($darray['app_photo']), dbesc($darray['app_version']), - intval($darray['app_channel']) + intval($darray['app_channel']), + dbesc($darray['app_addr']), + dbesc($darray['app_price']), + dbesc($darray['app_page']) ); if($r) $ret['success'] = true; @@ -201,4 +205,50 @@ function app_update($arr) { +} + + +function app_encode($app) { + + $ret = array(); + + if($app['app_id']) + $ret['guid'] = $app['app_id']; + + if($app['app_id']) + $ret['guid'] = $app['app_id']; + + if($app['app_sig']) + $ret['sig'] = $app['app_sig']; + + if($app['app_author']) + $ret['author'] = $app['app_author']; + + if($app['app_name']) + $ret['name'] = $app['app_name']; + + if($app['app_desc']) + $ret['desc'] = $app['app_desc']; + + if($app['app_url']) + $ret['url'] = $app['app_url']; + + if($app['app_photo']) + $ret['photo'] = $app['app_photo']; + + if($app['app_version']) + $ret['version'] = $app['app_version']; + + if($app['app_addr']) + $ret['addr'] = $app['app_addr']; + + if($app['app_price']) + $ret['price'] = $app['app_price']; + + if($app['app_page']) + $ret['page'] = $app['app_page']; + + $j = json_encode($ret); + return '[app]' . base64_encode($j) . '[/app]'; + } \ No newline at end of file diff --git a/include/bbcode.php b/include/bbcode.php index a4e7560d6..674b5f45a 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -166,6 +166,15 @@ function bb_parse_crypt($match) { } +function bb_parse_app($match) { + require_once('include/apps.php'); + + $app = app_decode($match[1]); + if($app) + return app_render($app); + +} + function bb_qr($match) { return '' . t('QR code') . ''; } @@ -684,6 +693,11 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true) { $Text = preg_replace_callback("/\[crypt (.*?)\](.*?)\[\/crypt\]/ism", 'bb_parse_crypt', $Text); } + if(strpos($Text,'[/app]') !== false) { + $Text = preg_replace_callback("/\[app\](.*?)\[\/app\]/ism",'bb_parse_app', $Text); + } + + // html5 video and audio if (strpos($Text,'[/video]') !== false) { $Text = preg_replace_callback("/\[video\](.*?\.(ogg|ogv|oga|ogm|webm|mp4))\[\/video\]/ism", 'tryzrlvideo', $Text); From ea67b9bda895d30d3115b04ba78db35e6a8b0a74 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 18 May 2014 20:00:30 -0700 Subject: [PATCH 086/147] apps: fix encoding/decoding and chunk splitting --- include/apps.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/apps.php b/include/apps.php index ac6f34ee5..109da2454 100644 --- a/include/apps.php +++ b/include/apps.php @@ -153,7 +153,7 @@ function app_list($uid) { function app_decode($s) { - $x = base64_decode($s); + $x = base64_decode(str_replace(array('
    ',"\r","\n",' '),array('','','',''),$s)); return json_decode($x,true); } @@ -249,6 +249,6 @@ function app_encode($app) { $ret['page'] = $app['app_page']; $j = json_encode($ret); - return '[app]' . base64_encode($j) . '[/app]'; + return '[app]' . chunk_split(base64_encode($j),72,"\n") . '[/app]'; } \ No newline at end of file From 6d01707a724504a34b8e84e87c6601a046de9739 Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 19 May 2014 16:49:11 -0700 Subject: [PATCH 087/147] more app backend work --- boot.php | 2 +- include/apps.php | 45 ++++++++++++++++++++++++++++++++++++++++---- install/database.sql | 2 +- install/update.php | 11 +++++++++-- version.inc | 2 +- view/tpl/app.tpl | 6 ++++++ 6 files changed, 59 insertions(+), 9 deletions(-) create mode 100644 view/tpl/app.tpl diff --git a/boot.php b/boot.php index 24f7d5532..2eb55caac 100755 --- a/boot.php +++ b/boot.php @@ -47,7 +47,7 @@ define ( 'RED_PLATFORM', 'Red Matrix' ); define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'R'); define ( 'ZOT_REVISION', 1 ); -define ( 'DB_UPDATE_VERSION', 1109 ); +define ( 'DB_UPDATE_VERSION', 1110 ); define ( 'EOL', '
    ' . "\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); diff --git a/include/apps.php b/include/apps.php index 109da2454..a1469b400 100644 --- a/include/apps.php +++ b/include/apps.php @@ -126,9 +126,11 @@ function app_render($app) { function app_install($uid,$app) { - - - + $app['uid'] = $uid; + if(app_installed($uid,$app)) + app_update($app); + else + app_store($app); } @@ -168,7 +170,7 @@ function app_store($arr) { if((! $darray['url']) || (! $darray['app_channel'])) return $ret; - $darray['app_id'] = ((x($arr,'guid')) ? $arr['guid'] : random_string()); + $darray['app_id'] = ((x($arr,'guid')) ? $arr['guid'] : random_string(). '.' . get_app()->get_hostname()); $darray['app_sig'] = ((x($arr,'sig')) ? $arr['sig'] : ''); $darray['app_author'] = ((x($arr,'author')) ? $arr['author'] : get_observer_hash()); $darray['app_name'] = ((x($arr,'name')) ? escape_tags($arr['name']) : t('Unknown')); @@ -202,8 +204,43 @@ function app_store($arr) { function app_update($arr) { + $darray = array(); + $ret = array('success' => false); + $darray['app_url'] = ((x($arr,'url')) ? $arr['url'] : ''); + $darray['app_channel'] = ((x($arr,'uid')) ? $arr['uid'] : 0); + $darray['app_id'] = ((x($arr,'guid')) ? $arr['guid'] : 0); + if((! $darray['url']) || (! $darray['app_channel']) || (! $darray['app_id'])) + return $ret; + $darray['app_sig'] = ((x($arr,'sig')) ? $arr['sig'] : ''); + $darray['app_author'] = ((x($arr,'author')) ? $arr['author'] : get_observer_hash()); + $darray['app_name'] = ((x($arr,'name')) ? escape_tags($arr['name']) : t('Unknown')); + $darray['app_desc'] = ((x($arr,'desc')) ? escape_tags($arr['desc']) : ''); + $darray['app_photo'] = ((x($arr,'photo')) ? $arr['photo'] : z_root() . '/' . get_default_profile_photo(80)); + $darray['app_version'] = ((x($arr,'version')) ? escape_tags($arr['version']) : ''); + $darray['app_addr'] = ((x($arr,'addr')) ? escape_tags($arr['addr']) : ''); + $darray['app_price'] = ((x($arr,'price')) ? escape_tags($arr['price']) : ''); + $darray['app_page'] = ((x($arr,'page')) ? escape_tags($arr['page']) : ''); + + $r = q("update app set app_sig = '%s', app_author = '%s', app_name = '%s', app_desc = '%s', app_url = '%s', app_photo = '%s', app_version = '%s', app_addr = '%s', app_price = '%s', app_page = '%s' where app_id = '%s' and app_channel = %d limit 1", + dbesc($darray['app_sig']), + dbesc($darray['app_author']), + dbesc($darray['app_name']), + dbesc($darray['app_desc']), + dbesc($darray['app_url']), + dbesc($darray['app_photo']), + dbesc($darray['app_version']), + dbesc($darray['app_addr']), + dbesc($darray['app_price']), + dbesc($darray['app_page']), + dbesc($darray['app_id']), + intval($darray['app_channel']) + ); + if($r) + $ret['success'] = true; + + return $ret; } diff --git a/install/database.sql b/install/database.sql index 0de5879a2..d03cebd4b 100644 --- a/install/database.sql +++ b/install/database.sql @@ -85,7 +85,7 @@ CREATE TABLE IF NOT EXISTS `addon` ( CREATE TABLE IF NOT EXISTS `app` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `app_id` char(64) NOT NULL DEFAULT '', + `app_id` char(255) NOT NULL DEFAULT '', `app_sig` char(255) NOT NULL DEFAULT '', `app_author` char(255) NOT NULL DEFAULT '', `app_name` char(255) NOT NULL DEFAULT '', diff --git a/install/update.php b/install/update.php index 561070ba4..b91589c28 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ + +
    {{$ap.name}}
    +
    + + From c530a7a9366b1c89a63fc1782ec620db992efc3b Mon Sep 17 00:00:00 2001 From: marijus Date: Tue, 20 May 2014 17:33:06 +0200 Subject: [PATCH 088/147] some work on comment_item.tpl --- view/css/conversation.css | 59 +++----------------- view/js/main.js | 30 +++++----- view/theme/redbasic/css/style.css | 52 +++--------------- view/theme/redbasic/js/redbasic.js | 20 ------- view/tpl/comment_item.tpl | 88 ++++++++++++++---------------- view/tpl/conv_item.tpl | 4 +- 6 files changed, 77 insertions(+), 176 deletions(-) diff --git a/view/css/conversation.css b/view/css/conversation.css index 4e7b59f80..3fc82154b 100644 --- a/view/css/conversation.css +++ b/view/css/conversation.css @@ -199,60 +199,21 @@ /* comment_item */ -.comment-wwedit-wrapper.threaded > .comment-edit-form > .comment-edit-photo { - width: 40px; -} - -.comment-wwedit-wrapper.threaded > .comment-edit-form > .comment-edit-text-empty { - height: 1.5em; -} - -.comment-wwedit-wrapper.threaded > .comment-edit-form > .comment-edit-submit-wrapper > .comment-edit-submit { - margin-left: 50px; -} - -.comment-edit-photo { - margin: 10px 10px 10px 7px; - float: left; -} - -[class^="comment-edit-bb"] { - display: none; - margin: 0px 0 -5px 0px; - padding: 0px; - width: 75%; - min-width: 170px -} - -[class^="comment-edit-bb"] > li { - display: inline-block; - margin: 10px 10px 0 0; - visibility: none; -} - -[class^="comment-edit-bb-end"] { - clear: both; -} - .comment-edit-text-empty, .comment-edit-text-full { float: left; - margin-top: 10px; - padding: 3px 1px 1px 3px; + width: 100%; padding: 8px; } .comment-edit-text-empty { height: 2.8em; - width: 30%; - min-width: 170px; overflow: auto; - margin-bottom: 10px; + resize: none; + } .comment-edit-text-full { height: 150px; - width: 50%; - min-width: 170px; overflow: auto; } @@ -280,14 +241,12 @@ filter:alpha(opacity=100); } -.comment-edit-text-end { - clear: both; +.comment-tools { + display: none; + margin-top: 7px; } -.comment-edit-submit { - margin: 10px 0px 10px 52px; -} - -.comment-preview-icon { - margin-left: 15px; +.comment-edit-preview { + display: none; + margin-top: 7px; } diff --git a/view/js/main.js b/view/js/main.js index fa32df424..a4cbed064 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -6,21 +6,25 @@ $("#comment-edit-text-" + id).addClass("comment-edit-text-full"); $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty"); $("#mod-cmnt-wrap-" + id).show(); - openMenu("comment-edit-submit-wrapper-" + id); + openMenu("comment-tools-" + id); return true; } return false; } + function commentClose(obj,id) { - if(obj.value == '') { - obj.value = aStr['comment']; - $("#comment-edit-text-" + id).removeClass("comment-edit-text-full"); - $("#comment-edit-text-" + id).addClass("comment-edit-text-empty"); - $("#mod-cmnt-wrap-" + id).hide(); - closeMenu("comment-edit-submit-wrapper-" + id); - return true; - } - return false; + $(document).on('click', function() { + if(obj.value == '') { + obj.value = aStr['comment']; + $("#comment-edit-text-" + id).removeClass("comment-edit-text-full"); + $("#comment-edit-text-" + id).addClass("comment-edit-text-empty"); + $("#mod-cmnt-wrap-" + id).hide(); + closeMenu("comment-tools-" + id); + return true; + } + return false; + }); + } function showHideCommentBox(id) { @@ -32,14 +36,13 @@ } } - function commentInsert(obj,id) { var tmpStr = $("#comment-edit-text-" + id).val(); if(tmpStr == '$comment') { tmpStr = ''; $("#comment-edit-text-" + id).addClass("comment-edit-text-full"); $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty"); - openMenu("comment-edit-submit-wrapper-" + id); + openMenu("comment-tools-" + id); } var ins = $(obj).html(); ins = ins.replace('<','<'); @@ -62,7 +65,7 @@ tmpStr = ""; $("#comment-edit-text-" + id).addClass("comment-edit-text-full"); $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty"); - openMenu("comment-edit-submit-wrapper-" + id); + openMenu("comment-tools-" + id); $("#comment-edit-text-" + id).val(tmpStr); } @@ -748,6 +751,7 @@ function updateConvItems(mode,data) { $("#comment-edit-form-" + id).serialize(), function(data) { if(data.success) { + $("#comment-edit-preview-" + id).hide(); $("#comment-edit-wrapper-" + id).hide(); $("#comment-edit-text-" + id).val(''); var tarea = document.getElementById("comment-edit-text-" + id); diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index f7df3bf52..f773264cc 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1884,7 +1884,6 @@ img.mail-list-sender-photo { .wall-item-content-wrapper { background-color: $item_colour; - opacity: $item_opacity; padding: 10px; } @@ -1893,9 +1892,6 @@ img.mail-list-sender-photo { border-top-left-radius: $radiuspx; } -.wall-item-content-wrapper:hover { - z-index:99; -} .comment .wall-item-body { padding-left: $comment_padding; } @@ -1905,35 +1901,23 @@ img.mail-list-sender-photo { background-color: $comment_item_colour; border-left: $comment_border_left $comment_border_colour; border-right: $comment_border_right $comment_border_colour; - border-bottom: $comment_border_bottom $comment_border_colour; border-radius: 0px; padding: 7px 10px 7px 7px; } -/* -.thread-wrapper.toplevel_item{ - border-bottom: $comment_border_bottom $comment_border_colour; - border-right: $comment_border_right $item_colour; - border-left: $comment_border_left $item_colour; - - border-top-right-radius: $radiuspx; - border-top-left-radius: $radiuspx; - border-bottom-right-radius: $radiuspx; - border-bottom-left-radius: $radiuspx; -} - */ .wall-item-comment-wrapper { - background-color: $comment_item_colour; - /* border-top: $comment_border_top $item_colour; */ - border-right: $comment_border_right $item_colour; - border-left: $comment_border_left $item_colour; - border-bottom: $comment_border_bottom $item_colour; + padding: 7px 10px; + background-color: $item_colour; border-radius: 0px; border-bottom-right-radius: $radiuspx; border-bottom-left-radius: $radiuspx; + margin-top: 3px; } +.wall-item-comment-wrapper-wc { + margin-top: 0px; +} .wall-item-like, .wall-item-dislike { @@ -1981,37 +1965,15 @@ img.mail-list-sender-photo { color: $toolicon_colour; } -.item-tool:hover { - /*color: $toolicon_activecolour;*/ -} - .like-rotator { color: $toolicon_colour; } -.my-comment-photo { - border-radius: $radiuspx; - -moz-border-radius: $radiuspx; - box-shadow: $shadowpx $shadowpx $shadowpx 0 #444444; -} - -.comment-edit-photo img { - width: $reply_photo; -} - -[class^="comment-edit-bb"] { - list-style: none; -} - .comment-icon { - font-size: 1.2em; + font-size: 0.8em; color: $toolicon_colour; } -.comment-icon:hover { - color: $toolicon_activecolour; -} - .comment-edit-text-empty, .comment-edit-text-full { border: 1px solid #ccc; diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index 20902fe1a..d981b0c11 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -1,23 +1,3 @@ -function cmtBbOpen(comment, id) { - if($(comment).hasClass('comment-edit-text-full')) { - $(".comment-edit-bb-" + id).show(); - return true; - } - return false; -} - -function cmtBbClose(comment, id) { -// if($(comment).hasClass('comment-edit-text-empty')) { -// $(".comment-edit-bb-" + id).hide(); -// return true; -// } - return false; -} - -//document.jotpermslock = 'icon-lock'; -//document.jotpermsunlock = 'icon-unlock'; - - $(document).ready(function() { $('#expand-aside').click(function() { diff --git a/view/tpl/comment_item.tpl b/view/tpl/comment_item.tpl index 1ea619774..598c0d58e 100755 --- a/view/tpl/comment_item.tpl +++ b/view/tpl/comment_item.tpl @@ -10,44 +10,7 @@ - -
    - {{$mytitle}} -
    -
    -
      -
    • -
    • -
    • -
    • -
    • -
    • -
    • -
    • - {{if $feature_encrypt}} -
    • - {{/if}} -
    -
    - + {{if $qcomment}} {{/if}} - -
    - diff --git a/view/tpl/conv_item.tpl b/view/tpl/conv_item.tpl index ee10b6633..fe54ac377 100755 --- a/view/tpl/conv_item.tpl +++ b/view/tpl/conv_item.tpl @@ -174,9 +174,11 @@ {{/foreach}} {{/if}} {{if $item.comment}} -
    +
    {{$item.comment}}
    +
    +
    {{/if}}
    {{if $item.comment_lastcollapsed}} From 1aa7f3136f336a66220aae28f1404e2e2a4ecd39 Mon Sep 17 00:00:00 2001 From: marijus Date: Tue, 20 May 2014 19:16:05 +0200 Subject: [PATCH 089/147] the js seems to interfere with something else... comment out for now... --- view/js/main.js | 4 ++-- view/tpl/comment_item.tpl | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/view/js/main.js b/view/js/main.js index a4cbed064..b388ab940 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -13,7 +13,7 @@ } function commentClose(obj,id) { - $(document).on('click', function() { + //$(document).on('click', function() { if(obj.value == '') { obj.value = aStr['comment']; $("#comment-edit-text-" + id).removeClass("comment-edit-text-full"); @@ -23,7 +23,7 @@ return true; } return false; - }); + //}); } diff --git a/view/tpl/comment_item.tpl b/view/tpl/comment_item.tpl index 598c0d58e..121cf0995 100755 --- a/view/tpl/comment_item.tpl +++ b/view/tpl/comment_item.tpl @@ -53,12 +53,12 @@ {{/if}}
    - {{if $preview}} - - {{/if}} - + {{if $preview}} + + {{/if}} +
    From fc0967b84b5e1301c0ce3a9a41c00985ce16bc82 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 20 May 2014 18:08:49 -0700 Subject: [PATCH 090/147] most of the remaining apps basic infrastructure except a form to create the things. Don't let this fool you - there is still a lot of work, but there isn't a whole lot of work to create a demo; in fact you can demo it now. --- include/apps.php | 54 ++++++++++++++++++++++++++++++++++++++--- include/widgets.php | 6 ++--- mod/appman.php | 26 ++++++++++++++++++++ mod/apps.php | 26 +++++++++++++++++--- version.inc | 2 +- view/tpl/app.tpl | 11 +++++++-- view/tpl/app_select.tpl | 4 +-- view/tpl/myapps.tpl | 9 +++++++ 8 files changed, 121 insertions(+), 17 deletions(-) create mode 100644 mod/appman.php create mode 100755 view/tpl/myapps.tpl diff --git a/include/apps.php b/include/apps.php index a1469b400..536a40f01 100644 --- a/include/apps.php +++ b/include/apps.php @@ -118,10 +118,38 @@ function translate_system_apps(&$arr) { } -function app_render($app) { -//debugging - return print_r($app,true); +// papp is a portable app + +function app_render($papp,$mode = 'view') { + + /** + * modes: + * view: normal mode for viewing an app via bbcode from a conversation or page + * provides install/update button if you're logged in locally + * list: normal mode for viewing an app on the app page + * no buttons are shown + * edit: viewing the app page in editing mode provides a delete button + */ + + $installed = false; + + if(! $papp['photo']) + $papp['photo'] = z_root() . '/' . get_default_profile_photo(80); + + $papp['papp'] = papp_encode($papp); + + if(local_user()) { + $installed = app_installed(local_user(),$papp); + } + + $install_action = (($installed) ? t('Update') : t('Install')); + + return replace_macros(get_markup_template('app.tpl'),array( + '$app' => $papp, + '$install' => ((local_user() && $mode == 'view') ? $install_action : ''), + '$delete' => ((local_user() && $installed && $mode == 'edit') ? t('Delete') : '') + )); } @@ -133,6 +161,15 @@ function app_install($uid,$app) { app_store($app); } +function app_destroy($uid,$app) { + if($uid && $app['guid']) { + $r = q("delete from app where app_id = '%s' and app_channel = %d limit 1", + dbesc($app['guid']), + intval($uid) + ); + } +} + function app_installed($uid,$app) { @@ -245,7 +282,7 @@ function app_update($arr) { } -function app_encode($app) { +function app_encode($app,$embed = false) { $ret = array(); @@ -285,7 +322,16 @@ function app_encode($app) { if($app['app_page']) $ret['page'] = $app['app_page']; + if(! $embed) + return $ret; + $j = json_encode($ret); return '[app]' . chunk_split(base64_encode($j),72,"\n") . '[/app]'; +} + + +function papp_encode($papp) { + return chunk_split(base64_encode(json_encode($papp)),72,"\n"); + } \ No newline at end of file diff --git a/include/widgets.php b/include/widgets.php index 37a079bc7..8cd2287a7 100644 --- a/include/widgets.php +++ b/include/widgets.php @@ -78,9 +78,9 @@ function widget_appselect($arr) { return replace_macros(get_markup_template('app_select.tpl'),array( '$title' => t('App Category'), '$system' => t('System'), - '$personal' => t('Personal'), - '$featured' => t('Featured'), - '$new' => t('New') + '$personal' => t('Personal') +// '$featured' => t('Featured'), +// '$new' => t('New') )); } diff --git a/mod/appman.php b/mod/appman.php new file mode 100644 index 000000000..48389a637 --- /dev/null +++ b/mod/appman.php @@ -0,0 +1,26 @@ + t('Apps'), + '$apps' => $apps, + )); + } - return replace_macros(get_markup_template('apps.tpl'), array( + if(argc() == 3 && argv(2) == 'edit') + $mode = 'edit'; + else + $mode = 'list'; + + $apps = array(); + $list = app_list(local_user()); + if($list) { + foreach($list as $app) + $apps[] = app_render(app_encode($app),$mode); + } + + return replace_macros(get_markup_template('myapps.tpl'), array( '$title' => t('Apps'), '$apps' => $apps, )); diff --git a/version.inc b/version.inc index 396a326bd..6b7ff2f87 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-05-19.680 +2014-05-20.681 diff --git a/view/tpl/app.tpl b/view/tpl/app.tpl index 30287b044..323dfbe63 100644 --- a/view/tpl/app.tpl +++ b/view/tpl/app.tpl @@ -1,6 +1,13 @@
    - -
    {{$ap.name}}
    +
    +
    {{$app.name}}
    +{{if $install || $update || $delete }} +
    + +{{if $install}}{{/if}} +{{if $delete}}{{/if}} +
    +{{/if}}
    diff --git a/view/tpl/app_select.tpl b/view/tpl/app_select.tpl index 9613b4976..d6eb2c31a 100644 --- a/view/tpl/app_select.tpl +++ b/view/tpl/app_select.tpl @@ -1,10 +1,8 @@ diff --git a/view/tpl/myapps.tpl b/view/tpl/myapps.tpl new file mode 100755 index 000000000..1a591f9f8 --- /dev/null +++ b/view/tpl/myapps.tpl @@ -0,0 +1,9 @@ +

    {{$title}}

    + +{{foreach $apps as $ap}} +
    +{{$ap}} +
    +{{/foreach}} +
    + From 71f5908e216c71e7ab379bc15902ddf59b2884ba Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 20 May 2014 20:22:38 -0700 Subject: [PATCH 091/147] add optional context to translations --- boot.php | 1 - include/language.php | 6 +- util/messages.po | 217 +++++++++++++++++++++++-------------------- util/run_xgettext.sh | 2 +- 4 files changed, 120 insertions(+), 106 deletions(-) diff --git a/boot.php b/boot.php index 2eb55caac..71392e673 100755 --- a/boot.php +++ b/boot.php @@ -53,7 +53,6 @@ define ( 'EOL', '
    ' . "\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); - define ( 'DIRECTORY_MODE_NORMAL', 0x0000); // This is technically DIRECTORY_MODE_TERTIARY, but it's the default, hence 0x0000 define ( 'DIRECTORY_MODE_PRIMARY', 0x0001); define ( 'DIRECTORY_MODE_SECONDARY', 0x0002); diff --git a/include/language.php b/include/language.php index b43f5aacc..f4c7d1524 100644 --- a/include/language.php +++ b/include/language.php @@ -145,10 +145,12 @@ function load_translation_table($lang, $install = false) { /** * @brief translate string if translation exists. * - * @param s string that should get translated + * @param $s string that should get translated + * @param $ctx optional context to appear in po file * @return translated string if exsists, otherwise s + * */ -function t($s) { +function t($s,$ctx = '') { global $a; if(x($a->strings,$s)) { diff --git a/util/messages.po b/util/messages.po index c92f0e5f9..3b5fd6dc2 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2014-05-16.677\n" +"Project-Id-Version: 2014-05-20.681\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-16 00:02-0700\n" +"POT-Creation-Date: 2014-05-20 20:21-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -33,30 +33,57 @@ msgstr "" msgid "Matrix" msgstr "" -#: ../../include/apps.php:107 ../../include/nav.php:161 +#: ../../include/apps.php:108 ../../include/nav.php:161 msgid "Channel Home" msgstr "" -#: ../../include/apps.php:107 ../../include/identity.php:942 +#: ../../include/apps.php:109 ../../include/identity.php:942 #: ../../include/identity.php:1031 ../../mod/profperm.php:112 msgid "Profile" msgstr "" -#: ../../include/apps.php:108 ../../include/conversation.php:1501 +#: ../../include/apps.php:110 ../../include/conversation.php:1501 #: ../../include/nav.php:84 ../../mod/fbrowser.php:25 msgid "Photos" msgstr "" -#: ../../include/apps.php:108 ../../include/conversation.php:1532 +#: ../../include/apps.php:111 ../../include/conversation.php:1532 #: ../../include/nav.php:87 ../../include/nav.php:180 ../../mod/events.php:366 msgid "Events" msgstr "" -#: ../../include/apps.php:108 ../../include/nav.php:147 +#: ../../include/apps.php:112 ../../include/nav.php:147 #: ../../mod/directory.php:210 msgid "Directory" msgstr "" +#: ../../include/apps.php:113 ../../include/nav.php:139 ../../mod/help.php:60 +#: ../../mod/help.php:65 +msgid "Help" +msgstr "" + +#: ../../include/apps.php:146 ../../mod/settings.php:79 +#: ../../mod/settings.php:541 +msgid "Update" +msgstr "" + +#: ../../include/apps.php:146 +msgid "Install" +msgstr "" + +#: ../../include/apps.php:151 ../../include/ItemObject.php:108 +#: ../../include/conversation.php:632 ../../mod/admin.php:757 +#: ../../mod/admin.php:886 ../../mod/connedit.php:398 +#: ../../mod/settings.php:578 ../../mod/filestorage.php:175 +#: ../../mod/group.php:176 ../../mod/thing.php:236 ../../mod/photos.php:1043 +msgid "Delete" +msgstr "" + +#: ../../include/apps.php:213 ../../include/apps.php:255 +#: ../../mod/connedit.php:434 +msgid "Unknown" +msgstr "" + #: ../../include/oembed.php:171 msgid "Embedded content" msgstr "" @@ -109,7 +136,7 @@ msgstr "" msgid "View" msgstr "" -#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:570 +#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:588 #: ../../include/conversation.php:1088 ../../mod/editblock.php:141 #: ../../mod/editlayout.php:135 ../../mod/editpost.php:140 #: ../../mod/editwebpage.php:175 ../../mod/webpages.php:123 @@ -356,7 +383,7 @@ msgstr "" msgid "Permissions" msgstr "" -#: ../../include/acl_selectors.php:247 +#: ../../include/acl_selectors.php:247 ../../include/ItemObject.php:285 msgid "Close" msgstr "" @@ -475,34 +502,34 @@ msgstr "" msgid "Location:" msgstr "" -#: ../../include/bbcode.php:128 ../../include/bbcode.php:633 -#: ../../include/bbcode.php:636 ../../include/bbcode.php:641 -#: ../../include/bbcode.php:644 ../../include/bbcode.php:647 -#: ../../include/bbcode.php:650 ../../include/bbcode.php:655 -#: ../../include/bbcode.php:658 ../../include/bbcode.php:663 -#: ../../include/bbcode.php:666 ../../include/bbcode.php:669 -#: ../../include/bbcode.php:672 +#: ../../include/bbcode.php:128 ../../include/bbcode.php:642 +#: ../../include/bbcode.php:645 ../../include/bbcode.php:650 +#: ../../include/bbcode.php:653 ../../include/bbcode.php:656 +#: ../../include/bbcode.php:659 ../../include/bbcode.php:664 +#: ../../include/bbcode.php:667 ../../include/bbcode.php:672 +#: ../../include/bbcode.php:675 ../../include/bbcode.php:678 +#: ../../include/bbcode.php:681 msgid "Image/photo" msgstr "" -#: ../../include/bbcode.php:163 ../../include/bbcode.php:683 +#: ../../include/bbcode.php:163 ../../include/bbcode.php:692 msgid "Encrypted content" msgstr "" -#: ../../include/bbcode.php:170 +#: ../../include/bbcode.php:179 msgid "QR code" msgstr "" -#: ../../include/bbcode.php:219 +#: ../../include/bbcode.php:228 #, php-format msgid "%1$s wrote the following %2$s %3$s" msgstr "" -#: ../../include/bbcode.php:221 +#: ../../include/bbcode.php:230 msgid "post" msgstr "" -#: ../../include/bbcode.php:601 ../../include/bbcode.php:621 +#: ../../include/bbcode.php:610 ../../include/bbcode.php:630 msgid "$1 wrote:" msgstr "" @@ -511,13 +538,6 @@ msgstr "" msgid "Private Message" msgstr "" -#: ../../include/ItemObject.php:108 ../../include/conversation.php:632 -#: ../../mod/admin.php:757 ../../mod/admin.php:886 ../../mod/connedit.php:398 -#: ../../mod/settings.php:578 ../../mod/filestorage.php:175 -#: ../../mod/group.php:176 ../../mod/thing.php:236 ../../mod/photos.php:1043 -msgid "Delete" -msgstr "" - #: ../../include/ItemObject.php:114 ../../include/conversation.php:631 msgid "Select" msgstr "" @@ -526,111 +546,117 @@ msgstr "" msgid "save to folder" msgstr "" -#: ../../include/ItemObject.php:128 +#: ../../include/ItemObject.php:130 ../../include/ItemObject.php:142 +msgid "View all" +msgstr "" + +#: ../../include/ItemObject.php:134 msgid "Like" msgstr "" -#: ../../include/ItemObject.php:128 ../../mod/profiles.php:302 +#: ../../include/ItemObject.php:134 ../../include/ItemObject.php:279 +#: ../../mod/profiles.php:302 msgid "Likes" msgstr "" -#: ../../include/ItemObject.php:132 +#: ../../include/ItemObject.php:139 msgid "Dislike" msgstr "" -#: ../../include/ItemObject.php:132 ../../mod/profiles.php:306 +#: ../../include/ItemObject.php:139 ../../include/ItemObject.php:280 +#: ../../mod/profiles.php:306 msgid "Dislikes" msgstr "" -#: ../../include/ItemObject.php:154 +#: ../../include/ItemObject.php:167 msgid "add star" msgstr "" -#: ../../include/ItemObject.php:155 +#: ../../include/ItemObject.php:168 msgid "remove star" msgstr "" -#: ../../include/ItemObject.php:156 +#: ../../include/ItemObject.php:169 msgid "toggle star status" msgstr "" -#: ../../include/ItemObject.php:160 +#: ../../include/ItemObject.php:173 msgid "starred" msgstr "" -#: ../../include/ItemObject.php:169 ../../include/conversation.php:646 +#: ../../include/ItemObject.php:182 ../../include/conversation.php:646 msgid "Message is verified" msgstr "" -#: ../../include/ItemObject.php:177 +#: ../../include/ItemObject.php:190 msgid "add tag" msgstr "" -#: ../../include/ItemObject.php:192 ../../mod/photos.php:971 +#: ../../include/ItemObject.php:205 ../../mod/photos.php:971 msgid "I like this (toggle)" msgstr "" -#: ../../include/ItemObject.php:192 ../../include/taxonomy.php:254 +#: ../../include/ItemObject.php:205 ../../include/taxonomy.php:254 msgid "like" msgstr "" -#: ../../include/ItemObject.php:193 ../../mod/photos.php:972 +#: ../../include/ItemObject.php:206 ../../mod/photos.php:972 msgid "I don't like this (toggle)" msgstr "" -#: ../../include/ItemObject.php:193 ../../include/taxonomy.php:255 +#: ../../include/ItemObject.php:206 ../../include/taxonomy.php:255 msgid "dislike" msgstr "" -#: ../../include/ItemObject.php:195 +#: ../../include/ItemObject.php:208 msgid "Share this" msgstr "" -#: ../../include/ItemObject.php:195 +#: ../../include/ItemObject.php:208 msgid "share" msgstr "" -#: ../../include/ItemObject.php:219 ../../include/ItemObject.php:220 +#: ../../include/ItemObject.php:232 ../../include/ItemObject.php:233 #, php-format msgid "View %s's profile - %s" msgstr "" -#: ../../include/ItemObject.php:221 +#: ../../include/ItemObject.php:234 msgid "to" msgstr "" -#: ../../include/ItemObject.php:222 +#: ../../include/ItemObject.php:235 msgid "via" msgstr "" -#: ../../include/ItemObject.php:223 +#: ../../include/ItemObject.php:236 msgid "Wall-to-Wall" msgstr "" -#: ../../include/ItemObject.php:224 +#: ../../include/ItemObject.php:237 msgid "via Wall-To-Wall:" msgstr "" -#: ../../include/ItemObject.php:234 ../../include/conversation.php:690 +#: ../../include/ItemObject.php:247 ../../include/conversation.php:690 #, php-format msgid " from %s" msgstr "" -#: ../../include/ItemObject.php:237 ../../include/conversation.php:693 +#: ../../include/ItemObject.php:250 ../../include/conversation.php:693 #, php-format msgid "last edited: %s" msgstr "" -#: ../../include/ItemObject.php:238 ../../include/conversation.php:694 +#: ../../include/ItemObject.php:251 ../../include/conversation.php:694 #, php-format msgid "Expires: %s" msgstr "" -#: ../../include/ItemObject.php:258 +#: ../../include/ItemObject.php:271 msgid "Bookmark Links" msgstr "" -#: ../../include/ItemObject.php:272 ../../include/conversation.php:711 +#: ../../include/ItemObject.php:290 ../../include/conversation.php:711 #: ../../include/conversation.php:1127 ../../mod/editblock.php:120 #: ../../mod/editlayout.php:115 ../../mod/editpost.php:121 #: ../../mod/editwebpage.php:152 ../../mod/mail.php:222 ../../mod/mail.php:336 @@ -638,29 +664,29 @@ msgstr "" msgid "Please wait" msgstr "" -#: ../../include/ItemObject.php:293 +#: ../../include/ItemObject.php:311 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "" msgstr[1] "" -#: ../../include/ItemObject.php:294 ../../include/contact_widgets.php:130 +#: ../../include/ItemObject.php:312 ../../include/contact_widgets.php:130 #: ../../include/js_strings.php:7 msgid "show more" msgstr "" -#: ../../include/ItemObject.php:558 ../../mod/photos.php:990 +#: ../../include/ItemObject.php:576 ../../mod/photos.php:990 #: ../../mod/photos.php:1077 msgid "This is you" msgstr "" -#: ../../include/ItemObject.php:560 ../../include/js_strings.php:6 +#: ../../include/ItemObject.php:578 ../../include/js_strings.php:6 #: ../../mod/photos.php:992 ../../mod/photos.php:1079 msgid "Comment" msgstr "" -#: ../../include/ItemObject.php:561 ../../mod/mood.php:142 +#: ../../include/ItemObject.php:579 ../../mod/mood.php:142 #: ../../mod/admin.php:441 ../../mod/admin.php:750 ../../mod/admin.php:884 #: ../../mod/admin.php:1017 ../../mod/admin.php:1216 ../../mod/admin.php:1303 #: ../../mod/poke.php:166 ../../mod/profiles.php:506 ../../mod/chat.php:177 @@ -682,39 +708,39 @@ msgstr "" msgid "Submit" msgstr "" -#: ../../include/ItemObject.php:562 +#: ../../include/ItemObject.php:580 msgid "Bold" msgstr "" -#: ../../include/ItemObject.php:563 +#: ../../include/ItemObject.php:581 msgid "Italic" msgstr "" -#: ../../include/ItemObject.php:564 +#: ../../include/ItemObject.php:582 msgid "Underline" msgstr "" -#: ../../include/ItemObject.php:565 +#: ../../include/ItemObject.php:583 msgid "Quote" msgstr "" -#: ../../include/ItemObject.php:566 +#: ../../include/ItemObject.php:584 msgid "Code" msgstr "" -#: ../../include/ItemObject.php:567 +#: ../../include/ItemObject.php:585 msgid "Image" msgstr "" -#: ../../include/ItemObject.php:568 +#: ../../include/ItemObject.php:586 msgid "Link" msgstr "" -#: ../../include/ItemObject.php:569 +#: ../../include/ItemObject.php:587 msgid "Video" msgstr "" -#: ../../include/ItemObject.php:573 ../../include/conversation.php:1153 +#: ../../include/ItemObject.php:591 ../../include/conversation.php:1153 #: ../../mod/editpost.php:148 ../../mod/mail.php:228 ../../mod/mail.php:341 msgid "Encrypt text" msgstr "" @@ -842,7 +868,7 @@ msgid "RSS/Atom" msgstr "" #: ../../include/contact_selectors.php:77 ../../mod/admin.php:753 -#: ../../mod/admin.php:762 ../../boot.php:1454 +#: ../../mod/admin.php:762 ../../boot.php:1453 msgid "Email" msgstr "" @@ -1623,9 +1649,8 @@ msgstr "" msgid "Posts that mention or involve you" msgstr "" -#: ../../include/conversation.php:1424 ../../include/widgets.php:83 -#: ../../mod/connections.php:211 ../../mod/connections.php:224 -#: ../../mod/menu.php:61 +#: ../../include/conversation.php:1424 ../../mod/connections.php:211 +#: ../../mod/connections.php:224 ../../mod/menu.php:61 msgid "New" msgstr "" @@ -2683,7 +2708,7 @@ msgstr "" msgid "Stored post could not be verified." msgstr "" -#: ../../include/nav.php:77 ../../include/nav.php:96 ../../boot.php:1451 +#: ../../include/nav.php:77 ../../include/nav.php:96 ../../boot.php:1450 msgid "Logout" msgstr "" @@ -2739,7 +2764,7 @@ msgstr "" msgid "Your webpages" msgstr "" -#: ../../include/nav.php:94 ../../boot.php:1452 +#: ../../include/nav.php:94 ../../boot.php:1451 msgid "Login" msgstr "" @@ -2760,7 +2785,7 @@ msgstr "" msgid "Home Page" msgstr "" -#: ../../include/nav.php:134 ../../mod/register.php:206 ../../boot.php:1428 +#: ../../include/nav.php:134 ../../mod/register.php:206 ../../boot.php:1427 msgid "Register" msgstr "" @@ -2768,15 +2793,11 @@ msgstr "" msgid "Create an account" msgstr "" -#: ../../include/nav.php:139 ../../mod/help.php:60 ../../mod/help.php:65 -msgid "Help" -msgstr "" - #: ../../include/nav.php:139 msgid "Help and documentation" msgstr "" -#: ../../include/nav.php:142 ../../mod/apps.php:17 +#: ../../include/nav.php:142 ../../mod/apps.php:17 ../../mod/apps.php:35 msgid "Apps" msgstr "" @@ -3181,10 +3202,6 @@ msgstr "" msgid "System" msgstr "" -#: ../../include/widgets.php:82 -msgid "Featured" -msgstr "" - #: ../../include/widgets.php:129 ../../mod/suggest.php:53 msgid "Ignore/Hide" msgstr "" @@ -5053,10 +5070,6 @@ msgstr "" msgid "Delete this connection" msgstr "" -#: ../../mod/connedit.php:434 -msgid "Unknown" -msgstr "" - #: ../../mod/connedit.php:444 ../../mod/connedit.php:473 msgid "Approve this connection" msgstr "" @@ -5332,10 +5345,6 @@ msgstr "" msgid "Key and Secret are required" msgstr "" -#: ../../mod/settings.php:79 ../../mod/settings.php:541 -msgid "Update" -msgstr "" - #: ../../mod/settings.php:195 msgid "Passwords do not match. Password unchanged." msgstr "" @@ -6853,7 +6862,7 @@ msgid "" "Password reset failed." msgstr "" -#: ../../mod/lostpass.php:85 ../../boot.php:1462 +#: ../../mod/lostpass.php:85 ../../boot.php:1461 msgid "Password Reset" msgstr "" @@ -7325,6 +7334,10 @@ msgstr "" msgid "OpenID protocol error. No ID returned." msgstr "" +#: ../../mod/appman.php:13 +msgid "Malformed app." +msgstr "" + #: ../../view/theme/apw/php/config.php:202 #: ../../view/theme/apw/php/config.php:236 msgid "Schema Default" @@ -7606,41 +7619,41 @@ msgstr "" msgid "Are you a clean desk or a messy desk person?" msgstr "" -#: ../../boot.php:1260 +#: ../../boot.php:1259 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: ../../boot.php:1263 +#: ../../boot.php:1262 #, php-format msgid "Update Error at %s" msgstr "" -#: ../../boot.php:1427 +#: ../../boot.php:1426 msgid "" "Create an account to access services and applications within the Red Matrix" msgstr "" -#: ../../boot.php:1455 +#: ../../boot.php:1454 msgid "Password" msgstr "" -#: ../../boot.php:1456 +#: ../../boot.php:1455 msgid "Remember me" msgstr "" -#: ../../boot.php:1461 +#: ../../boot.php:1460 msgid "Forgot your password?" msgstr "" -#: ../../boot.php:1526 +#: ../../boot.php:1525 msgid "permission denied" msgstr "" -#: ../../boot.php:1527 +#: ../../boot.php:1526 msgid "Got Zot?" msgstr "" -#: ../../boot.php:1957 +#: ../../boot.php:1956 msgid "toggle mobile" msgstr "" diff --git a/util/run_xgettext.sh b/util/run_xgettext.sh index 3be355c44..6fef46f67 100755 --- a/util/run_xgettext.sh +++ b/util/run_xgettext.sh @@ -44,7 +44,7 @@ OPTS= # fi #fi -KEYWORDS="-k -kt -ktt:1,2" +KEYWORDS="-k -kt:1 -kt:1,2c,2t -ktt:1,2" echo "extract strings to $OUTFILE.." From cad481d94fb8cfb350e931620c788f1a2a47a994 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 20 May 2014 21:22:19 -0700 Subject: [PATCH 092/147] unfinished work for creating app --- mod/appman.php | 44 +++++++++++++++++++++++++++++++++++++++++ view/tpl/app_create.tpl | 26 ++++++++++++++++++++++++ 2 files changed, 70 insertions(+) create mode 100644 view/tpl/app_create.tpl diff --git a/mod/appman.php b/mod/appman.php index 48389a637..4fc247a42 100644 --- a/mod/appman.php +++ b/mod/appman.php @@ -22,5 +22,49 @@ function appman_post(&$a) { app_destroy(local_user(),$papp); } + if($_SESSION['return_url']) + goaway(z_root() . '/' . $_SESSION['return_url']); + goaway(z_root() . '/apps/personal'); + + +} + + +function appman_content(&$a) { + + if(! local_user()) { + notice( t('Permission denied.') . EOL); + return; + } + + $channel = $a->get_channel(); + $app = null; + + if($_REQUEST['appid']) { + $r = q("select * from app where app_id = '%s' and app_channel = %d limit 1", + dbesc($_REQUEST['appid']), + dbesc(local_user()) + ); + if($r) + $app = $r[0]; + } + + return replace_macros(get_markup_template('app_create.tpl'), array( + + '$banner' => t('Create App'), + '$app' => $app, + '$guid' => (($app) ? $app['app_id'] : ''), + '$author' => (($app) ? $app['app_author'] : $channel['channel_hash']), + '$addr' => (($app) ? $app['app_addr'] : $channel['xchan_addr']), + '$name' => array('name', t('Name of app'),(($app) ? $app['app_name'] : ''), t('Required')), + '$url' => array('url', t('Location (URL) of app'),(($app) ? $app['app_url'] : ''), t('Required')), + '$desc' => array('desc', t('Description'),(($app) ? $app['app_desc'] : ''), ''), + '$photo' => array('photo', t('Photo icon URL'),(($app) ? $app['app_url'] : ''), t('80 x 80 pixels - optional')), + '$version' => array('version', t('Version ID'),(($app) ? $app['app_version'] : ''), ''), + '$price' => array('price', t('Price of app'),(($app) ? $app['app_price'] : ''), ''), + '$page' => array('page', t('Location (URL) to purchase app'),(($app) ? $app['app_page'] : ''), ''), + '$submit' => t('Submit') + )); + } \ No newline at end of file diff --git a/view/tpl/app_create.tpl b/view/tpl/app_create.tpl new file mode 100644 index 000000000..540effe75 --- /dev/null +++ b/view/tpl/app_create.tpl @@ -0,0 +1,26 @@ +

    {{$banner}}

    + + +
    +{{if $guid}} + +{{/if}} +{{if $author}} + +{{/if}} +{{if $addr}} + +{{/if}} + +{{include file="field_input.tpl" field=$name}} +{{include file="field_input.tpl" field=$url}} +{{include file="field_input.tpl" field=$desc}} +{{include file="field_input.tpl" field=$photo}} +{{include file="field_input.tpl" field=$version}} +{{include file="field_input.tpl" field=$price}} +{{include file="field_input.tpl" field=$page}} + + + +
    + From 5d9f924642872e30c83ac0de4807e0beb2c15011 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 20 May 2014 22:25:36 -0700 Subject: [PATCH 093/147] more app work --- include/apps.php | 37 ++++++++++++++++++++------ mod/appman.php | 58 +++++++++++++++++++++++++++++------------ view/tpl/app.tpl | 4 +-- view/tpl/app_create.tpl | 6 ++++- 4 files changed, 77 insertions(+), 28 deletions(-) diff --git a/include/apps.php b/include/apps.php index 536a40f01..910d1c84d 100644 --- a/include/apps.php +++ b/include/apps.php @@ -93,7 +93,7 @@ function parse_app_description($f) { break; } - logger('require: ' . print_r($ret,true)); +// logger('require: ' . print_r($ret,true)); } if($ret) { translate_system_apps($ret); @@ -156,9 +156,14 @@ function app_render($papp,$mode = 'view') { function app_install($uid,$app) { $app['uid'] = $uid; if(app_installed($uid,$app)) - app_update($app); + $x = app_update($app); else - app_store($app); + $x = app_store($app); + + if($x['success']) + return $x['app_id']; + + return false; } function app_destroy($uid,$app) { @@ -199,14 +204,22 @@ function app_decode($s) { function app_store($arr) { + // logger('app_store: ' . print_r($arr,true)); + $darray = array(); $ret = array('success' => false); $darray['app_url'] = ((x($arr,'url')) ? $arr['url'] : ''); $darray['app_channel'] = ((x($arr,'uid')) ? $arr['uid'] : 0); - if((! $darray['url']) || (! $darray['app_channel'])) + if((! $darray['app_url']) || (! $darray['app_channel'])) return $ret; + if($arr['photo'] && ! strstr($arr['photo'],z_root())) { + $x = import_profile_photo($arr['photo'],get_observer_hash(),true); + $arr['photo'] = $x[1]; + } + + $darray['app_id'] = ((x($arr,'guid')) ? $arr['guid'] : random_string(). '.' . get_app()->get_hostname()); $darray['app_sig'] = ((x($arr,'sig')) ? $arr['sig'] : ''); $darray['app_author'] = ((x($arr,'author')) ? $arr['author'] : get_observer_hash()); @@ -232,9 +245,10 @@ function app_store($arr) { dbesc($darray['app_price']), dbesc($darray['app_page']) ); - if($r) + if($r) { $ret['success'] = true; - + $ret['app_id'] = $darray['app_id']; + } return $ret; } @@ -247,9 +261,14 @@ function app_update($arr) { $darray['app_url'] = ((x($arr,'url')) ? $arr['url'] : ''); $darray['app_channel'] = ((x($arr,'uid')) ? $arr['uid'] : 0); $darray['app_id'] = ((x($arr,'guid')) ? $arr['guid'] : 0); - if((! $darray['url']) || (! $darray['app_channel']) || (! $darray['app_id'])) + if((! $darray['app_url']) || (! $darray['app_channel']) || (! $darray['app_id'])) return $ret; + if($arr['photo'] && ! strstr($arr['photo'],z_root())) { + $x = import_profile_photo($arr['photo'],get_observer_hash(),true); + $arr['photo'] = $x[1]; + } + $darray['app_sig'] = ((x($arr,'sig')) ? $arr['sig'] : ''); $darray['app_author'] = ((x($arr,'author')) ? $arr['author'] : get_observer_hash()); $darray['app_name'] = ((x($arr,'name')) ? escape_tags($arr['name']) : t('Unknown')); @@ -274,8 +293,10 @@ function app_update($arr) { dbesc($darray['app_id']), intval($darray['app_channel']) ); - if($r) + if($r) { $ret['success'] = true; + $ret['app_id'] = $darray['app_id']; + } return $ret; diff --git a/mod/appman.php b/mod/appman.php index 4fc247a42..6570e2fd9 100644 --- a/mod/appman.php +++ b/mod/appman.php @@ -7,6 +7,28 @@ function appman_post(&$a) { if(! local_user()) return; + if($_POST['url']) { + $arr = array( + 'uid' => intval($_REQUEST['uid']), + 'url' => escape_tags($_REQUEST['url']), + 'guid' => escape_tags($_REQUEST['guid']), + 'author' => escape_tags($_REQUEST['author']), + 'addr' => escape_tags($_REQUEST['addr']), + 'name' => escape_tags($_REQUEST['name']), + 'desc' => escape_tags($_REQUEST['desc']), + 'photo' => escape_tags($_REQUEST['photo']), + 'version' => escape_tags($_REQUEST['version']), + 'price' => escape_tags($_REQUEST['price']), + 'sig' => escape_tags($_REQUEST['sig']) + ); + + $_REQUEST['appid'] = app_install(local_user(),$arr); + if(app_installed(local_user(),$app)) + info( t('App installed.') . EOL); + return; + } + + $papp = app_decode($_POST['papp']); if(! is_array($papp)) { @@ -39,7 +61,7 @@ function appman_content(&$a) { $channel = $a->get_channel(); $app = null; - + $embed = null; if($_REQUEST['appid']) { $r = q("select * from app where app_id = '%s' and app_channel = %d limit 1", dbesc($_REQUEST['appid']), @@ -47,24 +69,26 @@ function appman_content(&$a) { ); if($r) $app = $r[0]; + $embed = array('embed', t('Embed code'), app_encode($app,true),''); + } - return replace_macros(get_markup_template('app_create.tpl'), array( - - '$banner' => t('Create App'), - '$app' => $app, - '$guid' => (($app) ? $app['app_id'] : ''), - '$author' => (($app) ? $app['app_author'] : $channel['channel_hash']), - '$addr' => (($app) ? $app['app_addr'] : $channel['xchan_addr']), - '$name' => array('name', t('Name of app'),(($app) ? $app['app_name'] : ''), t('Required')), - '$url' => array('url', t('Location (URL) of app'),(($app) ? $app['app_url'] : ''), t('Required')), - '$desc' => array('desc', t('Description'),(($app) ? $app['app_desc'] : ''), ''), - '$photo' => array('photo', t('Photo icon URL'),(($app) ? $app['app_url'] : ''), t('80 x 80 pixels - optional')), - '$version' => array('version', t('Version ID'),(($app) ? $app['app_version'] : ''), ''), - '$price' => array('price', t('Price of app'),(($app) ? $app['app_price'] : ''), ''), - '$page' => array('page', t('Location (URL) to purchase app'),(($app) ? $app['app_page'] : ''), ''), - '$submit' => t('Submit') - )); + return replace_macros(get_markup_template('app_create.tpl'), array( + '$banner' => t('Create App'), + '$app' => $app, + '$guid' => (($app) ? $app['app_id'] : ''), + '$author' => (($app) ? $app['app_author'] : $channel['channel_hash']), + '$addr' => (($app) ? $app['app_addr'] : $channel['xchan_addr']), + '$name' => array('name', t('Name of app'),(($app) ? $app['app_name'] : ''), t('Required')), + '$url' => array('url', t('Location (URL) of app'),(($app) ? $app['app_url'] : ''), t('Required')), + '$desc' => array('desc', t('Description'),(($app) ? $app['app_desc'] : ''), ''), + '$photo' => array('photo', t('Photo icon URL'),(($app) ? $app['app_url'] : ''), t('80 x 80 pixels - optional')), + '$version' => array('version', t('Version ID'),(($app) ? $app['app_version'] : ''), ''), + '$price' => array('price', t('Price of app'),(($app) ? $app['app_price'] : ''), ''), + '$page' => array('page', t('Location (URL) to purchase app'),(($app) ? $app['app_page'] : ''), ''), + '$embed' => $embed, + '$submit' => t('Submit') + )); } \ No newline at end of file diff --git a/view/tpl/app.tpl b/view/tpl/app.tpl index 323dfbe63..1d39395d6 100644 --- a/view/tpl/app.tpl +++ b/view/tpl/app.tpl @@ -5,8 +5,8 @@ {{if $install || $update || $delete }}
    -{{if $install}}{{/if}} -{{if $delete}}{{/if}} +{{if $install}}{{/if}} +{{if $delete}}{{/if}}
    {{/if}} diff --git a/view/tpl/app_create.tpl b/view/tpl/app_create.tpl index 540effe75..ff28e0598 100644 --- a/view/tpl/app_create.tpl +++ b/view/tpl/app_create.tpl @@ -14,12 +14,16 @@ {{include file="field_input.tpl" field=$name}} {{include file="field_input.tpl" field=$url}} -{{include file="field_input.tpl" field=$desc}} +{{include file="field_textarea.tpl" field=$desc}} {{include file="field_input.tpl" field=$photo}} {{include file="field_input.tpl" field=$version}} {{include file="field_input.tpl" field=$price}} {{include file="field_input.tpl" field=$page}} +{{if $embed}} +{{include file="field_textarea.tpl" field=$embed}} +{{/if}} + From 696f62331d0edb541666e5ad72b69aa26940faeb Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 20 May 2014 22:38:33 -0700 Subject: [PATCH 094/147] try to recover from bad update --- boot.php | 2 +- install/update.php | 14 +++++++++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/boot.php b/boot.php index 71392e673..14a3d8770 100755 --- a/boot.php +++ b/boot.php @@ -47,7 +47,7 @@ define ( 'RED_PLATFORM', 'Red Matrix' ); define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'R'); define ( 'ZOT_REVISION', 1 ); -define ( 'DB_UPDATE_VERSION', 1110 ); +define ( 'DB_UPDATE_VERSION', 1111 ); define ( 'EOL', '
    ' . "\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); diff --git a/install/update.php b/install/update.php index b91589c28..cc755c8c2 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ Date: Tue, 20 May 2014 22:45:56 -0700 Subject: [PATCH 095/147] this is why I didn't see the "app installed" message.... --- mod/appman.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/appman.php b/mod/appman.php index 6570e2fd9..6d5127b51 100644 --- a/mod/appman.php +++ b/mod/appman.php @@ -23,7 +23,7 @@ function appman_post(&$a) { ); $_REQUEST['appid'] = app_install(local_user(),$arr); - if(app_installed(local_user(),$app)) + if(app_installed(local_user(),$arr)) info( t('App installed.') . EOL); return; } From c6de9096fabf913e5e8b4acbde75cd58bb8c9959 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 20 May 2014 22:59:58 -0700 Subject: [PATCH 096/147] add zids to all the personal app links --- include/apps.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/apps.php b/include/apps.php index 910d1c84d..2b5903329 100644 --- a/include/apps.php +++ b/include/apps.php @@ -139,6 +139,11 @@ function app_render($papp,$mode = 'view') { $papp['papp'] = papp_encode($papp); + foreach($papp as $k => $v) { + if(strpos($v,'http') === 0 && $k != 'papp') + $papp[$k] = zid($v); + } + if(local_user()) { $installed = app_installed(local_user(),$papp); } From 72a633dc51b98b25c740a9cb392acfaad77148d8 Mon Sep 17 00:00:00 2001 From: Alexandre Hannud Abdo Date: Wed, 21 May 2014 04:48:22 -0300 Subject: [PATCH 097/147] Make translation contexts effective. --- .gitignore | 1 + include/language.php | 5 +++-- util/po2php.php | 23 ++++++++++++++--------- 3 files changed, 18 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index 18543589c..80fe3ec72 100755 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,7 @@ include/jquery-1.4.2.min.js home.html addon *~ +.*.swp compiled/ custom/ /store/ diff --git a/include/language.php b/include/language.php index f4c7d1524..ba14c33be 100644 --- a/include/language.php +++ b/include/language.php @@ -153,8 +153,9 @@ function load_translation_table($lang, $install = false) { function t($s,$ctx = '') { global $a; - if(x($a->strings,$s)) { - $t = $a->strings[$s]; + $cs = $ctx?"__ctx:".$ctx."__ ".$s:$s; + if(x($a->strings,$cs)) { + $t = $a->strings[$cs]; return is_array($t) ? $t[0] : $t; } return $s; diff --git a/util/po2php.php b/util/po2php.php index edb1a35a8..d3e6d190c 100644 --- a/util/po2php.php +++ b/util/po2php.php @@ -30,6 +30,7 @@ function po2php_run($argv, $argc) { $infile = file($pofile); $k=""; $v=""; + $ctx=""; $arr = False; $ink = False; $inv = False; @@ -92,23 +93,27 @@ function po2php_run($argv, $argc) { if ($k!="") $out .= $arr?");\n":";\n"; $arr=False; $k = str_replace("msgid ","",$l); - if ($k != '""' ) { - $k = trim($k,"\"\r\n"); - } else { - $k = ""; - } - + $k = trim($k,"\"\r\n"); + $k = $ctx.$k; + // echo $ctx ? $ctx."\nX\n":""; $k = preg_replace_callback($escape_s_exp,'escape_s',$k); + $ctx = ""; $ink = True; } - if ($inv && substr($l,0,6)!="msgstr") { + if ($inv && substr($l,0,6)!="msgstr" && substr($l,0,7)!="msgctxt") { $v .= trim($l,"\"\r\n"); $v = preg_replace_callback($escape_s_exp,'escape_s',$v); //$out .= '$a->strings['.$k.'] = '; } - - + + if (substr($l,0,7)=="msgctxt") { + $ctx = str_replace("msgctxt ","",$l); + $ctx = trim($ctx,"\"\r\n"); + $ctx = "__ctx:".$ctx."__ "; + $ctx = preg_replace_callback($escape_s_exp,'escape_s',$ctx); + } + } if ($inv) { $inv = False; $out .= '"'.$v.'"'; } From ac8400ac0c0e6163b0a83283f78913a85b3c26e0 Mon Sep 17 00:00:00 2001 From: Alexandre Hannud Abdo Date: Wed, 21 May 2014 04:50:26 -0300 Subject: [PATCH 098/147] Update pt-br translation. --- view/pt-br/messages.po | 1068 +++++++++++++++--------------- view/pt-br/register_open_eml.tpl | 2 +- view/pt-br/strings.php | 129 ++-- 3 files changed, 614 insertions(+), 585 deletions(-) diff --git a/view/pt-br/messages.po b/view/pt-br/messages.po index 43c996123..fd0e0bcc0 100644 --- a/view/pt-br/messages.po +++ b/view/pt-br/messages.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: Red Matrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-02 00:03-0700\n" -"PO-Revision-Date: 2014-05-03 22:15+0000\n" +"POT-Creation-Date: 2014-05-16 00:02-0700\n" +"PO-Revision-Date: 2014-05-20 06:23+0000\n" "Last-Translator: solstag \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/red-matrix/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -37,6 +37,34 @@ msgstr "Não foi possível localizar a informação de DNS para o servidor de ba msgid "Profile Photos" msgstr "Fotos do perfil" +#: ../../include/apps.php:107 ../../include/nav.php:158 +msgid "Matrix" +msgstr "Matriz" + +#: ../../include/apps.php:107 ../../include/nav.php:161 +msgid "Channel Home" +msgstr "Página inicial do canal" + +#: ../../include/apps.php:107 ../../include/identity.php:942 +#: ../../include/identity.php:1031 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Perfil" + +#: ../../include/apps.php:108 ../../include/conversation.php:1501 +#: ../../include/nav.php:84 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Fotos" + +#: ../../include/apps.php:108 ../../include/conversation.php:1532 +#: ../../include/nav.php:87 ../../include/nav.php:180 ../../mod/events.php:366 +msgid "Events" +msgstr "Eventos" + +#: ../../include/apps.php:108 ../../include/nav.php:147 +#: ../../mod/directory.php:210 +msgid "Directory" +msgstr "Diretório" + #: ../../include/oembed.php:171 msgid "Embedded content" msgstr "Conteúdo incorporado" @@ -55,7 +83,7 @@ msgid "commented on %s's post" msgstr "comentou a publicação de %s" #: ../../include/Contact.php:107 ../../include/identity.php:675 -#: ../../include/widgets.php:115 ../../include/widgets.php:155 +#: ../../include/widgets.php:127 ../../include/widgets.php:167 #: ../../mod/directory.php:183 ../../mod/dirprofile.php:164 #: ../../mod/suggest.php:51 ../../mod/match.php:62 msgid "Connect" @@ -75,7 +103,7 @@ msgstr "Nova página" #: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 #: ../../include/ItemObject.php:96 ../../include/menu.php:42 -#: ../../mod/blocks.php:94 ../../mod/connections.php:391 +#: ../../mod/blocks.php:94 ../../mod/connections.php:392 #: ../../mod/settings.php:577 ../../mod/editblock.php:111 #: ../../mod/editlayout.php:106 ../../mod/editpost.php:112 #: ../../mod/editwebpage.php:143 ../../mod/filestorage.php:174 @@ -89,7 +117,7 @@ msgstr "Editar" msgid "View" msgstr "Ver" -#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:557 +#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:570 #: ../../include/conversation.php:1088 ../../mod/editblock.php:141 #: ../../mod/editlayout.php:135 ../../mod/editpost.php:140 #: ../../mod/editwebpage.php:175 ../../mod/webpages.php:123 @@ -117,203 +145,6 @@ msgstr "Criado" msgid "Edited" msgstr "Editado" -#: ../../include/ItemObject.php:89 ../../include/conversation.php:639 -#: ../../mod/photos.php:846 -msgid "Private Message" -msgstr "Mensagem privada" - -#: ../../include/ItemObject.php:108 ../../include/conversation.php:632 -#: ../../mod/admin.php:757 ../../mod/admin.php:886 ../../mod/connedit.php:398 -#: ../../mod/settings.php:578 ../../mod/filestorage.php:175 -#: ../../mod/group.php:176 ../../mod/thing.php:236 ../../mod/photos.php:1043 -msgid "Delete" -msgstr "Excluir" - -#: ../../include/ItemObject.php:114 ../../include/conversation.php:631 -msgid "Select" -msgstr "Selecionar" - -#: ../../include/ItemObject.php:118 -msgid "save to folder" -msgstr "salvar na pasta" - -#: ../../include/ItemObject.php:146 -msgid "add star" -msgstr "destacar" - -#: ../../include/ItemObject.php:147 -msgid "remove star" -msgstr "remover destaque" - -#: ../../include/ItemObject.php:148 -msgid "toggle star status" -msgstr "alternar destaque" - -#: ../../include/ItemObject.php:152 -msgid "starred" -msgstr "destacado" - -#: ../../include/ItemObject.php:161 ../../include/conversation.php:646 -msgid "Message is verified" -msgstr "A mensagem foi verificada" - -#: ../../include/ItemObject.php:169 -msgid "add tag" -msgstr "adicionar etiqueta" - -#: ../../include/ItemObject.php:184 ../../mod/photos.php:971 -msgid "I like this (toggle)" -msgstr "Eu gostei disso (alterna)" - -#: ../../include/ItemObject.php:184 ../../include/taxonomy.php:254 -msgid "like" -msgstr "gostei" - -#: ../../include/ItemObject.php:185 ../../mod/photos.php:972 -msgid "I don't like this (toggle)" -msgstr "Eu não gostei disso (alterna)" - -#: ../../include/ItemObject.php:185 ../../include/taxonomy.php:255 -msgid "dislike" -msgstr "não gostei" - -#: ../../include/ItemObject.php:187 -msgid "Share this" -msgstr "Compartilhar isso" - -#: ../../include/ItemObject.php:187 -msgid "share" -msgstr "compartilhar" - -#: ../../include/ItemObject.php:211 ../../include/ItemObject.php:212 -#, php-format -msgid "View %s's profile - %s" -msgstr "Ver o perfil de %s - %s" - -#: ../../include/ItemObject.php:213 -msgid "to" -msgstr "para" - -#: ../../include/ItemObject.php:214 -msgid "via" -msgstr "via" - -#: ../../include/ItemObject.php:215 -msgid "Wall-to-Wall" -msgstr "Mural-para-mural" - -#: ../../include/ItemObject.php:216 -msgid "via Wall-To-Wall:" -msgstr "via Mural-para-mural" - -#: ../../include/ItemObject.php:226 ../../include/conversation.php:690 -#, php-format -msgid " from %s" -msgstr "de %s" - -#: ../../include/ItemObject.php:229 ../../include/conversation.php:693 -#, php-format -msgid "last edited: %s" -msgstr "última edição: %s" - -#: ../../include/ItemObject.php:230 ../../include/conversation.php:694 -#, php-format -msgid "Expires: %s" -msgstr "Expira: %s" - -#: ../../include/ItemObject.php:250 -msgid "Bookmark Links" -msgstr "Guardar links" - -#: ../../include/ItemObject.php:259 ../../include/conversation.php:711 -#: ../../include/conversation.php:1127 ../../mod/editblock.php:120 -#: ../../mod/editlayout.php:115 ../../mod/editpost.php:121 -#: ../../mod/editwebpage.php:152 ../../mod/mail.php:222 ../../mod/mail.php:336 -#: ../../mod/photos.php:974 -msgid "Please wait" -msgstr "Por favor, espere" - -#: ../../include/ItemObject.php:280 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d comentário" -msgstr[1] "%d comentários" - -#: ../../include/ItemObject.php:281 ../../include/contact_widgets.php:130 -#: ../../include/js_strings.php:7 -msgid "show more" -msgstr "exibir mais" - -#: ../../include/ItemObject.php:545 ../../mod/photos.php:990 -#: ../../mod/photos.php:1077 -msgid "This is you" -msgstr "Este(a) é você" - -#: ../../include/ItemObject.php:547 ../../include/js_strings.php:6 -#: ../../mod/photos.php:992 ../../mod/photos.php:1079 -msgid "Comment" -msgstr "Comentar" - -#: ../../include/ItemObject.php:548 ../../mod/mood.php:142 -#: ../../mod/admin.php:441 ../../mod/admin.php:750 ../../mod/admin.php:884 -#: ../../mod/admin.php:1017 ../../mod/admin.php:1216 ../../mod/admin.php:1303 -#: ../../mod/poke.php:166 ../../mod/profiles.php:506 ../../mod/chat.php:175 -#: ../../mod/chat.php:208 ../../mod/connect.php:92 ../../mod/connedit.php:476 -#: ../../mod/settings.php:515 ../../mod/settings.php:627 -#: ../../mod/settings.php:655 ../../mod/settings.php:679 -#: ../../mod/settings.php:751 ../../mod/settings.php:929 -#: ../../mod/setup.php:307 ../../mod/setup.php:350 ../../mod/pdledit.php:58 -#: ../../mod/events.php:472 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/filestorage.php:135 -#: ../../mod/fsuggest.php:108 ../../mod/group.php:81 ../../mod/thing.php:283 -#: ../../mod/thing.php:326 ../../mod/import.php:387 ../../mod/invite.php:156 -#: ../../mod/mail.php:223 ../../mod/mail.php:335 ../../mod/photos.php:565 -#: ../../mod/photos.php:670 ../../mod/photos.php:953 ../../mod/photos.php:993 -#: ../../mod/photos.php:1080 ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/blogga/php/config.php:67 -#: ../../view/theme/blogga/view/theme/blog/config.php:67 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Enviar" - -#: ../../include/ItemObject.php:549 -msgid "Bold" -msgstr "Negrito" - -#: ../../include/ItemObject.php:550 -msgid "Italic" -msgstr "Itálico" - -#: ../../include/ItemObject.php:551 -msgid "Underline" -msgstr "Sublinhado" - -#: ../../include/ItemObject.php:552 -msgid "Quote" -msgstr "Citação" - -#: ../../include/ItemObject.php:553 -msgid "Code" -msgstr "Código" - -#: ../../include/ItemObject.php:554 -msgid "Image" -msgstr "Imagem" - -#: ../../include/ItemObject.php:555 -msgid "Link" -msgstr "Link" - -#: ../../include/ItemObject.php:556 -msgid "Video" -msgstr "Vídeo" - -#: ../../include/ItemObject.php:560 ../../include/conversation.php:1153 -#: ../../mod/editpost.php:148 ../../mod/mail.php:228 ../../mod/mail.php:341 -msgid "Encrypt text" -msgstr "Encriptar texto" - #: ../../include/permissions.php:13 msgid "Can view my \"public\" stream and posts" msgstr "Pode ver meus fluxo e publicações \"públicos\"" @@ -456,7 +287,7 @@ msgstr "O registro de %s foi revogado" #: ../../include/attach.php:243 ../../include/attach.php:283 #: ../../include/attach.php:297 ../../include/attach.php:322 #: ../../include/attach.php:513 ../../include/attach.php:585 -#: ../../include/chat.php:113 ../../include/items.php:3622 +#: ../../include/chat.php:116 ../../include/items.php:3645 #: ../../mod/mood.php:119 ../../mod/mitem.php:73 ../../mod/achievements.php:27 #: ../../mod/poke.php:128 ../../mod/api.php:26 ../../mod/api.php:31 #: ../../mod/authtest.php:13 ../../mod/profile.php:64 ../../mod/profile.php:72 @@ -465,7 +296,7 @@ msgstr "O registro de %s foi revogado" #: ../../mod/blocks.php:29 ../../mod/blocks.php:44 ../../mod/profiles.php:152 #: ../../mod/profiles.php:453 ../../mod/bookmarks.php:46 #: ../../mod/channel.php:89 ../../mod/channel.php:193 -#: ../../mod/channel.php:236 ../../mod/chat.php:89 ../../mod/chat.php:94 +#: ../../mod/channel.php:236 ../../mod/chat.php:90 ../../mod/chat.php:95 #: ../../mod/register.php:68 ../../mod/regmod.php:18 ../../mod/common.php:35 #: ../../mod/network.php:12 ../../mod/connections.php:169 #: ../../mod/connedit.php:221 ../../mod/delegate.php:6 ../../mod/page.php:30 @@ -479,14 +310,14 @@ msgstr "O registro de %s foi revogado" #: ../../mod/fsuggest.php:78 ../../mod/suggest.php:26 ../../mod/group.php:9 #: ../../mod/thing.php:247 ../../mod/thing.php:263 ../../mod/thing.php:298 #: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/item.php:179 -#: ../../mod/item.php:187 ../../mod/item.php:860 ../../mod/layouts.php:27 +#: ../../mod/item.php:187 ../../mod/item.php:872 ../../mod/layouts.php:27 #: ../../mod/layouts.php:39 ../../mod/viewconnections.php:22 #: ../../mod/viewconnections.php:27 ../../mod/viewsrc.php:12 #: ../../mod/mail.php:108 ../../mod/manage.php:6 ../../mod/menu.php:44 #: ../../mod/webpages.php:40 ../../mod/message.php:16 #: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97 #: ../../mod/photos.php:68 ../../mod/photos.php:526 -#: ../../mod/notifications.php:66 ../../index.php:176 ../../index.php:351 +#: ../../mod/notifications.php:66 ../../index.php:187 ../../index.php:362 msgid "Permission denied." msgstr "Permissão negada." @@ -528,7 +359,7 @@ msgstr "Exibir" msgid "Don't show" msgstr "Não exibir" -#: ../../include/acl_selectors.php:246 ../../mod/chat.php:206 +#: ../../include/acl_selectors.php:246 ../../mod/chat.php:209 #: ../../mod/filestorage.php:126 ../../mod/photos.php:606 #: ../../mod/photos.php:949 msgid "Permissions" @@ -627,11 +458,11 @@ msgstr "armazenamento de banco de dados falhou." msgid "Logged out." msgstr "Você saiu." -#: ../../include/auth.php:197 +#: ../../include/auth.php:198 msgid "Failed authentication" msgstr "Não foi possível autenticar" -#: ../../include/auth.php:212 ../../mod/openid.php:188 +#: ../../include/auth.php:213 ../../mod/openid.php:188 msgid "Login failed." msgstr "Não foi possível entrar." @@ -649,21 +480,21 @@ msgstr "Fim:" #: ../../include/bb2diaspora.php:455 ../../include/event.php:40 #: ../../include/identity.php:726 ../../mod/directory.php:156 -#: ../../mod/dirprofile.php:105 ../../mod/events.php:465 +#: ../../mod/dirprofile.php:105 ../../mod/events.php:474 msgid "Location:" msgstr "Localização:" -#: ../../include/bbcode.php:128 ../../include/bbcode.php:603 -#: ../../include/bbcode.php:606 ../../include/bbcode.php:611 -#: ../../include/bbcode.php:614 ../../include/bbcode.php:617 -#: ../../include/bbcode.php:620 ../../include/bbcode.php:625 -#: ../../include/bbcode.php:628 ../../include/bbcode.php:633 -#: ../../include/bbcode.php:636 ../../include/bbcode.php:639 -#: ../../include/bbcode.php:642 +#: ../../include/bbcode.php:128 ../../include/bbcode.php:633 +#: ../../include/bbcode.php:636 ../../include/bbcode.php:641 +#: ../../include/bbcode.php:644 ../../include/bbcode.php:647 +#: ../../include/bbcode.php:650 ../../include/bbcode.php:655 +#: ../../include/bbcode.php:658 ../../include/bbcode.php:663 +#: ../../include/bbcode.php:666 ../../include/bbcode.php:669 +#: ../../include/bbcode.php:672 msgid "Image/photo" msgstr "Imagem/foto" -#: ../../include/bbcode.php:163 ../../include/bbcode.php:653 +#: ../../include/bbcode.php:163 ../../include/bbcode.php:683 msgid "Encrypted content" msgstr "Conteúdo criptografado" @@ -671,19 +502,232 @@ msgstr "Conteúdo criptografado" msgid "QR code" msgstr "código QR" -#: ../../include/bbcode.php:213 +#: ../../include/bbcode.php:219 #, php-format msgid "%1$s wrote the following %2$s %3$s" msgstr "%1$s escreveu a seguinte %2$s %3$s" -#: ../../include/bbcode.php:215 +#: ../../include/bbcode.php:221 msgid "post" msgstr "publicação" -#: ../../include/bbcode.php:571 ../../include/bbcode.php:591 +#: ../../include/bbcode.php:601 ../../include/bbcode.php:621 msgid "$1 wrote:" msgstr "$1 escreveu:" +#: ../../include/ItemObject.php:89 ../../include/conversation.php:639 +#: ../../mod/photos.php:846 +msgid "Private Message" +msgstr "Mensagem privada" + +#: ../../include/ItemObject.php:108 ../../include/conversation.php:632 +#: ../../mod/admin.php:757 ../../mod/admin.php:886 ../../mod/connedit.php:398 +#: ../../mod/settings.php:578 ../../mod/filestorage.php:175 +#: ../../mod/group.php:176 ../../mod/thing.php:236 ../../mod/photos.php:1043 +msgid "Delete" +msgstr "Excluir" + +#: ../../include/ItemObject.php:114 ../../include/conversation.php:631 +msgid "Select" +msgstr "Selecionar" + +#: ../../include/ItemObject.php:118 +msgid "save to folder" +msgstr "salvar na pasta" + +#: ../../include/ItemObject.php:128 +msgid "Like" +msgstr "Gostou" + +#: ../../include/ItemObject.php:128 ../../mod/profiles.php:302 +msgid "Likes" +msgstr "Gosta de" + +#: ../../include/ItemObject.php:132 +msgid "Dislike" +msgstr "Desgostou" + +#: ../../include/ItemObject.php:132 ../../mod/profiles.php:306 +msgid "Dislikes" +msgstr "Não gosta de" + +#: ../../include/ItemObject.php:154 +msgid "add star" +msgstr "destacar" + +#: ../../include/ItemObject.php:155 +msgid "remove star" +msgstr "remover destaque" + +#: ../../include/ItemObject.php:156 +msgid "toggle star status" +msgstr "alternar destaque" + +#: ../../include/ItemObject.php:160 +msgid "starred" +msgstr "destacado" + +#: ../../include/ItemObject.php:169 ../../include/conversation.php:646 +msgid "Message is verified" +msgstr "A mensagem foi verificada" + +#: ../../include/ItemObject.php:177 +msgid "add tag" +msgstr "adicionar etiqueta" + +#: ../../include/ItemObject.php:192 ../../mod/photos.php:971 +msgid "I like this (toggle)" +msgstr "Eu gostei disso (alterna)" + +#: ../../include/ItemObject.php:192 ../../include/taxonomy.php:254 +msgid "like" +msgstr "gostei" + +#: ../../include/ItemObject.php:193 ../../mod/photos.php:972 +msgid "I don't like this (toggle)" +msgstr "Eu não gostei disso (alterna)" + +#: ../../include/ItemObject.php:193 ../../include/taxonomy.php:255 +msgid "dislike" +msgstr "não gostei" + +#: ../../include/ItemObject.php:195 +msgid "Share this" +msgstr "Compartilhar isso" + +#: ../../include/ItemObject.php:195 +msgid "share" +msgstr "compartilhar" + +#: ../../include/ItemObject.php:219 ../../include/ItemObject.php:220 +#, php-format +msgid "View %s's profile - %s" +msgstr "Ver o perfil de %s - %s" + +#: ../../include/ItemObject.php:221 +msgid "to" +msgstr "para" + +#: ../../include/ItemObject.php:222 +msgid "via" +msgstr "via" + +#: ../../include/ItemObject.php:223 +msgid "Wall-to-Wall" +msgstr "Mural-para-mural" + +#: ../../include/ItemObject.php:224 +msgid "via Wall-To-Wall:" +msgstr "via Mural-para-mural" + +#: ../../include/ItemObject.php:234 ../../include/conversation.php:690 +#, php-format +msgid " from %s" +msgstr "de %s" + +#: ../../include/ItemObject.php:237 ../../include/conversation.php:693 +#, php-format +msgid "last edited: %s" +msgstr "última edição: %s" + +#: ../../include/ItemObject.php:238 ../../include/conversation.php:694 +#, php-format +msgid "Expires: %s" +msgstr "Expira: %s" + +#: ../../include/ItemObject.php:258 +msgid "Bookmark Links" +msgstr "Guardar links" + +#: ../../include/ItemObject.php:272 ../../include/conversation.php:711 +#: ../../include/conversation.php:1127 ../../mod/editblock.php:120 +#: ../../mod/editlayout.php:115 ../../mod/editpost.php:121 +#: ../../mod/editwebpage.php:152 ../../mod/mail.php:222 ../../mod/mail.php:336 +#: ../../mod/photos.php:974 +msgid "Please wait" +msgstr "Por favor, espere" + +#: ../../include/ItemObject.php:293 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d comentário" +msgstr[1] "%d comentários" + +#: ../../include/ItemObject.php:294 ../../include/contact_widgets.php:130 +#: ../../include/js_strings.php:7 +msgid "show more" +msgstr "exibir mais" + +#: ../../include/ItemObject.php:558 ../../mod/photos.php:990 +#: ../../mod/photos.php:1077 +msgid "This is you" +msgstr "Este(a) é você" + +#: ../../include/ItemObject.php:560 ../../include/js_strings.php:6 +#: ../../mod/photos.php:992 ../../mod/photos.php:1079 +msgid "Comment" +msgstr "Comentar" + +#: ../../include/ItemObject.php:561 ../../mod/mood.php:142 +#: ../../mod/admin.php:441 ../../mod/admin.php:750 ../../mod/admin.php:884 +#: ../../mod/admin.php:1017 ../../mod/admin.php:1216 ../../mod/admin.php:1303 +#: ../../mod/poke.php:166 ../../mod/profiles.php:506 ../../mod/chat.php:177 +#: ../../mod/chat.php:211 ../../mod/connect.php:92 ../../mod/connedit.php:476 +#: ../../mod/settings.php:515 ../../mod/settings.php:627 +#: ../../mod/settings.php:655 ../../mod/settings.php:679 +#: ../../mod/settings.php:751 ../../mod/settings.php:929 +#: ../../mod/setup.php:307 ../../mod/setup.php:350 ../../mod/pdledit.php:58 +#: ../../mod/events.php:481 ../../mod/sources.php:104 +#: ../../mod/sources.php:138 ../../mod/filestorage.php:135 +#: ../../mod/fsuggest.php:108 ../../mod/group.php:81 ../../mod/thing.php:283 +#: ../../mod/thing.php:326 ../../mod/import.php:387 ../../mod/invite.php:156 +#: ../../mod/mail.php:223 ../../mod/mail.php:335 ../../mod/photos.php:565 +#: ../../mod/photos.php:670 ../../mod/photos.php:953 ../../mod/photos.php:993 +#: ../../mod/photos.php:1080 ../../view/theme/apw/php/config.php:256 +#: ../../view/theme/blogga/php/config.php:67 +#: ../../view/theme/blogga/view/theme/blog/config.php:67 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Enviar" + +#: ../../include/ItemObject.php:562 +msgid "Bold" +msgstr "Negrito" + +#: ../../include/ItemObject.php:563 +msgid "Italic" +msgstr "Itálico" + +#: ../../include/ItemObject.php:564 +msgid "Underline" +msgstr "Sublinhado" + +#: ../../include/ItemObject.php:565 +msgid "Quote" +msgstr "Citação" + +#: ../../include/ItemObject.php:566 +msgid "Code" +msgstr "Código" + +#: ../../include/ItemObject.php:567 +msgid "Image" +msgstr "Imagem" + +#: ../../include/ItemObject.php:568 +msgid "Link" +msgstr "Link" + +#: ../../include/ItemObject.php:569 +msgid "Video" +msgstr "Vídeo" + +#: ../../include/ItemObject.php:573 ../../include/conversation.php:1153 +#: ../../mod/editpost.php:148 ../../mod/mail.php:228 ../../mod/mail.php:341 +msgid "Encrypt text" +msgstr "Encriptar texto" + #: ../../include/bookmarks.php:42 #, php-format msgid "%1$s's bookmarks" @@ -701,11 +745,11 @@ msgstr "Nome da sala duplicado" msgid "Invalid room specifier." msgstr "Especificador de sala inválido." -#: ../../include/chat.php:102 +#: ../../include/chat.php:105 msgid "Room not found." msgstr "A sala não foi encontrada." -#: ../../include/chat.php:123 +#: ../../include/chat.php:126 msgid "Room is full" msgstr "A sala está cheia" @@ -859,323 +903,323 @@ msgstr "mais antigo" msgid "newer" msgstr "mais recente" -#: ../../include/text.php:719 +#: ../../include/text.php:729 msgid "No connections" msgstr "Nenhuma conexão" -#: ../../include/text.php:732 +#: ../../include/text.php:742 #, php-format msgid "%d Connection" msgid_plural "%d Connections" msgstr[0] "%d conexão" msgstr[1] "%d conexões" -#: ../../include/text.php:744 +#: ../../include/text.php:754 msgid "View Connections" msgstr "Ver conexões" -#: ../../include/text.php:803 ../../include/text.php:817 +#: ../../include/text.php:813 ../../include/text.php:827 #: ../../include/nav.php:144 ../../mod/search.php:29 msgid "Search" msgstr "Pesquisar" -#: ../../include/text.php:805 ../../include/text.php:819 -#: ../../include/widgets.php:173 ../../mod/rbmark.php:28 +#: ../../include/text.php:815 ../../include/text.php:829 +#: ../../include/widgets.php:185 ../../mod/rbmark.php:28 #: ../../mod/rbmark.php:98 ../../mod/filer.php:50 msgid "Save" msgstr "Salvar" -#: ../../include/text.php:885 +#: ../../include/text.php:895 msgid "poke" msgstr "cutucar" -#: ../../include/text.php:885 ../../include/conversation.php:240 +#: ../../include/text.php:895 ../../include/conversation.php:240 msgid "poked" msgstr "cutucado" -#: ../../include/text.php:886 +#: ../../include/text.php:896 msgid "ping" msgstr "pingar" -#: ../../include/text.php:886 +#: ../../include/text.php:896 msgid "pinged" msgstr "pingou" -#: ../../include/text.php:887 +#: ../../include/text.php:897 msgid "prod" msgstr "espetar" -#: ../../include/text.php:887 +#: ../../include/text.php:897 msgid "prodded" msgstr "espetou" -#: ../../include/text.php:888 +#: ../../include/text.php:898 msgid "slap" msgstr "estapear" -#: ../../include/text.php:888 +#: ../../include/text.php:898 msgid "slapped" msgstr "estapeou" -#: ../../include/text.php:889 +#: ../../include/text.php:899 msgid "finger" msgstr "dar um toque" -#: ../../include/text.php:889 +#: ../../include/text.php:899 msgid "fingered" msgstr "deu um toque" -#: ../../include/text.php:890 +#: ../../include/text.php:900 msgid "rebuff" msgstr "rebater" -#: ../../include/text.php:890 +#: ../../include/text.php:900 msgid "rebuffed" msgstr "rebateu" -#: ../../include/text.php:899 +#: ../../include/text.php:909 msgid "happy" msgstr "feliz" -#: ../../include/text.php:900 +#: ../../include/text.php:910 msgid "sad" msgstr "triste" -#: ../../include/text.php:901 +#: ../../include/text.php:911 msgid "mellow" msgstr "suave" -#: ../../include/text.php:902 +#: ../../include/text.php:912 msgid "tired" msgstr "cansado" -#: ../../include/text.php:903 +#: ../../include/text.php:913 msgid "perky" msgstr "animado/a" -#: ../../include/text.php:904 +#: ../../include/text.php:914 msgid "angry" msgstr "nervoso" -#: ../../include/text.php:905 +#: ../../include/text.php:915 msgid "stupified" msgstr "embasbacado/a" -#: ../../include/text.php:906 +#: ../../include/text.php:916 msgid "puzzled" msgstr "confuso/a" -#: ../../include/text.php:907 +#: ../../include/text.php:917 msgid "interested" msgstr "interessado" -#: ../../include/text.php:908 +#: ../../include/text.php:918 msgid "bitter" msgstr "amargo/a" -#: ../../include/text.php:909 +#: ../../include/text.php:919 msgid "cheerful" msgstr "alegre" -#: ../../include/text.php:910 +#: ../../include/text.php:920 msgid "alive" msgstr "vivo" -#: ../../include/text.php:911 +#: ../../include/text.php:921 msgid "annoyed" msgstr "aborrecido" -#: ../../include/text.php:912 +#: ../../include/text.php:922 msgid "anxious" msgstr "ansioso" -#: ../../include/text.php:913 +#: ../../include/text.php:923 msgid "cranky" msgstr "irritado/a" -#: ../../include/text.php:914 +#: ../../include/text.php:924 msgid "disturbed" msgstr "perturbado" -#: ../../include/text.php:915 +#: ../../include/text.php:925 msgid "frustrated" msgstr "frustrado" -#: ../../include/text.php:916 +#: ../../include/text.php:926 msgid "depressed" msgstr "deprimido" -#: ../../include/text.php:917 +#: ../../include/text.php:927 msgid "motivated" msgstr "motivado" -#: ../../include/text.php:918 +#: ../../include/text.php:928 msgid "relaxed" msgstr "relaxado" -#: ../../include/text.php:919 +#: ../../include/text.php:929 msgid "surprised" msgstr "surpreso" -#: ../../include/text.php:1080 +#: ../../include/text.php:1090 msgid "Monday" msgstr "Segunda" -#: ../../include/text.php:1080 +#: ../../include/text.php:1090 msgid "Tuesday" msgstr "Terça" -#: ../../include/text.php:1080 +#: ../../include/text.php:1090 msgid "Wednesday" msgstr "Quarta" -#: ../../include/text.php:1080 +#: ../../include/text.php:1090 msgid "Thursday" msgstr "Quinta" -#: ../../include/text.php:1080 +#: ../../include/text.php:1090 msgid "Friday" msgstr "Sexta" -#: ../../include/text.php:1080 +#: ../../include/text.php:1090 msgid "Saturday" msgstr "Sábado" -#: ../../include/text.php:1080 +#: ../../include/text.php:1090 msgid "Sunday" msgstr "Domingo" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "January" msgstr "Janeiro" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "February" msgstr "Fevereiro" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "March" msgstr "Março" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "April" msgstr "Abril" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "May" msgstr "Maio" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "June" msgstr "Junho" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "July" msgstr "Julho" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "August" msgstr "Agosto" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "September" msgstr "Setembro" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "October" msgstr "Outubro" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "November" msgstr "Novembro" -#: ../../include/text.php:1084 +#: ../../include/text.php:1094 msgid "December" msgstr "Dezembro" -#: ../../include/text.php:1162 +#: ../../include/text.php:1172 msgid "unknown.???" msgstr "desconhecido.???" -#: ../../include/text.php:1163 +#: ../../include/text.php:1173 msgid "bytes" msgstr "bytes" -#: ../../include/text.php:1198 +#: ../../include/text.php:1208 msgid "remove category" msgstr "remover categoria" -#: ../../include/text.php:1247 +#: ../../include/text.php:1257 msgid "remove from file" msgstr "remover do arquivo" -#: ../../include/text.php:1308 ../../include/text.php:1320 +#: ../../include/text.php:1318 ../../include/text.php:1330 msgid "Click to open/close" msgstr "Clique para abrir/fechar" -#: ../../include/text.php:1475 ../../mod/events.php:335 +#: ../../include/text.php:1485 ../../mod/events.php:344 msgid "link to source" msgstr "Link para a origem" -#: ../../include/text.php:1494 +#: ../../include/text.php:1504 msgid "Select a page layout: " msgstr "Selecione um layout de página:" -#: ../../include/text.php:1497 ../../include/text.php:1562 +#: ../../include/text.php:1507 ../../include/text.php:1572 msgid "default" msgstr "default" -#: ../../include/text.php:1533 +#: ../../include/text.php:1543 msgid "Page content type: " msgstr "Tipo de conteúdo da página: " -#: ../../include/text.php:1574 +#: ../../include/text.php:1584 msgid "Select an alternate language" msgstr "Selecione um idioma alternativo" -#: ../../include/text.php:1695 ../../include/conversation.php:117 +#: ../../include/text.php:1705 ../../include/conversation.php:117 #: ../../mod/subthread.php:72 ../../mod/subthread.php:174 #: ../../mod/tagger.php:45 ../../mod/like.php:111 msgid "photo" msgstr "foto" -#: ../../include/text.php:1698 ../../include/conversation.php:120 +#: ../../include/text.php:1708 ../../include/conversation.php:120 #: ../../mod/tagger.php:49 msgid "event" msgstr "evento" -#: ../../include/text.php:1701 ../../include/conversation.php:145 +#: ../../include/text.php:1711 ../../include/conversation.php:145 #: ../../mod/subthread.php:72 ../../mod/subthread.php:174 #: ../../mod/tagger.php:53 ../../mod/like.php:111 msgid "status" msgstr "status" -#: ../../include/text.php:1703 ../../include/conversation.php:147 +#: ../../include/text.php:1713 ../../include/conversation.php:147 #: ../../mod/tagger.php:55 msgid "comment" msgstr "comentário" -#: ../../include/text.php:1708 +#: ../../include/text.php:1718 msgid "activity" msgstr "atividade" -#: ../../include/text.php:1967 +#: ../../include/text.php:1977 msgid "Design" msgstr "Design" -#: ../../include/text.php:1969 +#: ../../include/text.php:1979 msgid "Blocks" msgstr "Blocos" -#: ../../include/text.php:1970 +#: ../../include/text.php:1980 msgid "Menus" msgstr "Menus" -#: ../../include/text.php:1971 +#: ../../include/text.php:1981 msgid "Layouts" msgstr "Layouts" -#: ../../include/text.php:1972 +#: ../../include/text.php:1982 msgid "Pages" msgstr "Páginas" @@ -1206,7 +1250,7 @@ msgstr "Conectar/Acompanhar" msgid "Examples: Robert Morgenstein, Fishing" msgstr "Por exemplo: José da Silva, Pescaria" -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:390 +#: ../../include/contact_widgets.php:26 ../../mod/connections.php:391 #: ../../mod/directory.php:206 ../../mod/directory.php:211 msgid "Find" msgstr "Pesquisar" @@ -1232,12 +1276,12 @@ msgid "Advanced Find" msgstr "Busca avançada" #: ../../include/contact_widgets.php:58 ../../include/features.php:66 -#: ../../include/widgets.php:283 +#: ../../include/widgets.php:295 msgid "Saved Folders" msgstr "Pastas salvas" #: ../../include/contact_widgets.php:61 ../../include/contact_widgets.php:95 -#: ../../include/widgets.php:286 +#: ../../include/widgets.php:298 msgid "Everything" msgstr "Tudo" @@ -1580,7 +1624,7 @@ msgstr "Recentemente publicados" msgid "Sort by Post Date" msgstr "Ordenar pela data da publicação" -#: ../../include/conversation.php:1415 +#: ../../include/conversation.php:1415 ../../include/widgets.php:81 msgid "Personal" msgstr "Pessoal" @@ -1588,8 +1632,9 @@ msgstr "Pessoal" msgid "Posts that mention or involve you" msgstr "Publicações que mencionam ou envolvem você" -#: ../../include/conversation.php:1424 ../../mod/connections.php:211 -#: ../../mod/connections.php:223 ../../mod/menu.php:61 +#: ../../include/conversation.php:1424 ../../include/widgets.php:83 +#: ../../mod/connections.php:211 ../../mod/connections.php:224 +#: ../../mod/menu.php:61 msgid "New" msgstr "Novo" @@ -1629,11 +1674,6 @@ msgstr "Sobre" msgid "Profile Details" msgstr "Detalhes do perfil" -#: ../../include/conversation.php:1501 ../../include/nav.php:84 -#: ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Fotos" - #: ../../include/conversation.php:1510 ../../include/nav.php:85 #: ../../mod/fbrowser.php:114 msgid "Files" @@ -1647,11 +1687,6 @@ msgstr "Arquivos e armazenamento" msgid "Chatrooms" msgstr "Salas de bate-papo" -#: ../../include/conversation.php:1532 ../../include/nav.php:87 -#: ../../include/nav.php:180 ../../mod/events.php:357 -msgid "Events" -msgstr "Eventos" - #: ../../include/conversation.php:1535 msgid "Events and Calendar" msgstr "Eventos e calendário" @@ -2050,7 +2085,7 @@ msgstr "Pré-visualizar a publicação" msgid "Allow previewing posts and comments before publishing them" msgstr "Permite visualizar publicações e comentários antes de publicá-los" -#: ../../include/features.php:43 ../../include/widgets.php:490 +#: ../../include/features.php:43 ../../include/widgets.php:502 #: ../../mod/sources.php:88 msgid "Channel Sources" msgstr "Fontes do canal" @@ -2088,7 +2123,7 @@ msgstr "Filtros de coleções" msgid "Enable widget to display Network posts only from selected collections" msgstr "Habilita widget para exibir publicações da rede apenas para determinadas coleções" -#: ../../include/features.php:52 ../../include/widgets.php:252 +#: ../../include/features.php:52 ../../include/widgets.php:264 msgid "Saved Searches" msgstr "Pesquisas salvas" @@ -2212,19 +2247,6 @@ msgstr "a conta local não foi encontrada." msgid "Cannot connect to yourself." msgstr "Não é possível conectar-se consigo mesmo." -#: ../../include/zot.php:583 -msgid "Invalid data packet" -msgstr "Pacote de dados inválido" - -#: ../../include/zot.php:593 -msgid "Unable to verify channel signature" -msgstr "Não foi possível verificar a assinatura do canal" - -#: ../../include/zot.php:790 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Não foi possível verificar a assinatura do site para %s" - #: ../../include/group.php:25 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -2260,11 +2282,11 @@ msgstr "Criar uma nova coleção" msgid "Channels not in any collection" msgstr "Canais que não estão em nenhuma coleção" -#: ../../include/group.php:290 ../../include/widgets.php:253 +#: ../../include/group.php:290 ../../include/widgets.php:265 msgid "add" msgstr "adicionar" -#: ../../include/identity.php:30 ../../mod/item.php:1232 +#: ../../include/identity.php:30 ../../mod/item.php:1244 msgid "Unable to obtain identity information from database" msgstr "Não foi possível obter a informação da identidade a partir do banco de dados" @@ -2302,7 +2324,7 @@ msgid "Default Profile" msgstr "Perfil padrão" #: ../../include/identity.php:342 ../../include/profile_selectors.php:42 -#: ../../include/widgets.php:387 ../../mod/connedit.php:431 +#: ../../include/widgets.php:399 ../../mod/connedit.php:431 msgid "Friends" msgstr "Amigos" @@ -2402,11 +2424,6 @@ msgstr "Lembretes de eventos" msgid "Events this week:" msgstr "Eventos nesta semana:" -#: ../../include/identity.php:942 ../../include/identity.php:1031 -#: ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Perfil" - #: ../../include/identity.php:950 ../../mod/settings.php:937 msgid "Full Name:" msgstr "Nome completo:" @@ -2504,42 +2521,42 @@ msgstr "Trabalho/emprego:" msgid "School/education:" msgstr "Escola/educação:" -#: ../../include/items.php:281 ../../mod/profperm.php:23 +#: ../../include/items.php:306 ../../mod/profperm.php:23 #: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:63 -#: ../../index.php:350 +#: ../../index.php:361 msgid "Permission denied" msgstr "Permissão negada" -#: ../../include/items.php:805 +#: ../../include/items.php:830 msgid "(Unknown)" msgstr "(Desconhecido)" -#: ../../include/items.php:3560 ../../mod/admin.php:159 +#: ../../include/items.php:3583 ../../mod/admin.php:159 #: ../../mod/admin.php:921 ../../mod/admin.php:1124 ../../mod/display.php:32 #: ../../mod/filestorage.php:18 ../../mod/home.php:63 ../../mod/thing.php:78 #: ../../mod/viewsrc.php:18 msgid "Item not found." msgstr "O item não foi encontrado." -#: ../../include/items.php:3984 ../../mod/group.php:38 ../../mod/group.php:140 +#: ../../include/items.php:4007 ../../mod/group.php:38 ../../mod/group.php:140 msgid "Collection not found." msgstr "A coleção não foi encontrada." -#: ../../include/items.php:3999 +#: ../../include/items.php:4022 msgid "Collection is empty." msgstr "A coleção está vazia." -#: ../../include/items.php:4006 +#: ../../include/items.php:4029 #, php-format msgid "Collection: %s" msgstr "Coleção: %s" -#: ../../include/items.php:4017 +#: ../../include/items.php:4040 #, php-format msgid "Connection: %s" msgstr "Conexão: %s" -#: ../../include/items.php:4020 +#: ../../include/items.php:4043 msgid "Connection not found." msgstr "A conexão não foi encontrada." @@ -2583,76 +2600,80 @@ msgstr "Dica da frase secreta" msgid "Notice: Permissions have changed but have not yet been submitted." msgstr "Atenção: permissões foram modificadas mas ainda não foram enviadas." -#: ../../include/js_strings.php:18 +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "fechar tudo" + +#: ../../include/js_strings.php:19 msgid "timeago.prefixAgo" msgstr "timeago.prefixAgo" -#: ../../include/js_strings.php:19 +#: ../../include/js_strings.php:20 msgid "timeago.prefixFromNow" msgstr "timeago.prefixFromNow" -#: ../../include/js_strings.php:20 +#: ../../include/js_strings.php:21 msgid "ago" msgstr "atrás" -#: ../../include/js_strings.php:21 +#: ../../include/js_strings.php:22 msgid "from now" msgstr "de agora" -#: ../../include/js_strings.php:22 +#: ../../include/js_strings.php:23 msgid "less than a minute" msgstr "menos de um minuto" -#: ../../include/js_strings.php:23 +#: ../../include/js_strings.php:24 msgid "about a minute" msgstr "aproximadamente um minuto" -#: ../../include/js_strings.php:24 +#: ../../include/js_strings.php:25 #, php-format msgid "%d minutes" msgstr "%d minutos" -#: ../../include/js_strings.php:25 +#: ../../include/js_strings.php:26 msgid "about an hour" msgstr "aproximadamente uma hora" -#: ../../include/js_strings.php:26 +#: ../../include/js_strings.php:27 #, php-format msgid "about %d hours" msgstr "aproximadamente %d horas" -#: ../../include/js_strings.php:27 +#: ../../include/js_strings.php:28 msgid "a day" msgstr "um dia" -#: ../../include/js_strings.php:28 +#: ../../include/js_strings.php:29 #, php-format msgid "%d days" msgstr "%d dias" -#: ../../include/js_strings.php:29 +#: ../../include/js_strings.php:30 msgid "about a month" msgstr "aproximadamente um mês" -#: ../../include/js_strings.php:30 +#: ../../include/js_strings.php:31 #, php-format msgid "%d months" msgstr "%d meses" -#: ../../include/js_strings.php:31 +#: ../../include/js_strings.php:32 msgid "about a year" msgstr "aproximadamente um ano" -#: ../../include/js_strings.php:32 +#: ../../include/js_strings.php:33 #, php-format msgid "%d years" msgstr "%d anos" -#: ../../include/js_strings.php:33 +#: ../../include/js_strings.php:34 msgid " " msgstr " " -#: ../../include/js_strings.php:34 +#: ../../include/js_strings.php:35 msgid "timeago.numbers" msgstr "timeago.numbers" @@ -2765,7 +2786,7 @@ msgstr "Ajuda" msgid "Help and documentation" msgstr "Ajuda e documentação" -#: ../../include/nav.php:142 +#: ../../include/nav.php:142 ../../mod/apps.php:17 msgid "Apps" msgstr "Aplicações" @@ -2777,18 +2798,10 @@ msgstr "Aplicações adicionais, utilitários, jogos" msgid "Search site content" msgstr "Pesquisar o conteúdo do site" -#: ../../include/nav.php:147 ../../mod/directory.php:210 -msgid "Directory" -msgstr "Diretório" - #: ../../include/nav.php:147 msgid "Channel Locator" msgstr "Localizador de canais" -#: ../../include/nav.php:158 -msgid "Matrix" -msgstr "Matriz" - #: ../../include/nav.php:158 msgid "Your matrix" msgstr "Sua matriz" @@ -2797,10 +2810,6 @@ msgstr "Sua matriz" msgid "Mark all matrix notifications seen" msgstr "Marcar todas as notificações da matriz como vistas" -#: ../../include/nav.php:161 -msgid "Channel Home" -msgstr "Página inicial do canal" - #: ../../include/nav.php:161 msgid "Channel home" msgstr "Página inicial do canal" @@ -2810,7 +2819,7 @@ msgid "Mark all channel notifications seen" msgstr "Marcar todas as notificações de canais como vistas" #: ../../include/nav.php:165 ../../include/nav.php:188 -#: ../../mod/connections.php:384 +#: ../../mod/connections.php:385 msgid "Connections" msgstr "Conexões" @@ -2826,7 +2835,7 @@ msgstr "Notificações" msgid "See all notifications" msgstr "Ver todas as notificações" -#: ../../include/nav.php:170 +#: ../../include/nav.php:170 ../../mod/notifications.php:99 msgid "Mark all system notifications seen" msgstr "Marcar todas as notificações de sistema como vistas" @@ -2854,7 +2863,7 @@ msgstr "Recebidas" msgid "Outbox" msgstr "Enviadas" -#: ../../include/nav.php:177 ../../include/widgets.php:523 +#: ../../include/nav.php:177 ../../include/widgets.php:535 msgid "New Message" msgstr "Nova mensagem" @@ -2878,7 +2887,7 @@ msgstr "Seleção de canal" msgid "Manage Your Channels" msgstr "Gerencie os seus canais" -#: ../../include/nav.php:186 ../../include/widgets.php:501 +#: ../../include/nav.php:186 ../../include/widgets.php:513 #: ../../mod/admin.php:976 ../../mod/admin.php:1181 msgid "Settings" msgstr "Configurações" @@ -2911,15 +2920,15 @@ msgstr "Por favor, aguarde..." msgid "view full size" msgstr "ver na tela inteira" -#: ../../include/plugin.php:475 ../../include/plugin.php:477 +#: ../../include/plugin.php:486 ../../include/plugin.php:488 msgid "Click here to upgrade." msgstr "Clique aqui para atualizar." -#: ../../include/plugin.php:483 +#: ../../include/plugin.php:494 msgid "This action exceeds the limits set by your subscription plan." msgstr "Essa ação excede o limite definido para o seu plano de assinatura." -#: ../../include/plugin.php:488 +#: ../../include/plugin.php:499 msgid "This action is not available under your subscription plan." msgstr "Essa ação não está disponível para o seu plano de assinatura." @@ -3151,134 +3160,159 @@ msgstr "Não importa" msgid "Ask me" msgstr "Pergunte-me" -#: ../../include/reddav.php:1069 +#: ../../include/reddav.php:1045 msgid "Edit File properties" msgstr "Editar propriedades do arquivo" -#: ../../include/security.php:295 +#: ../../include/zot.php:587 +msgid "Invalid data packet" +msgstr "Pacote de dados inválido" + +#: ../../include/zot.php:597 +msgid "Unable to verify channel signature" +msgstr "Não foi possível verificar a assinatura do canal" + +#: ../../include/zot.php:794 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Não foi possível verificar a assinatura do site para %s" + +#: ../../include/security.php:301 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." msgstr "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão." -#: ../../include/widgets.php:117 ../../mod/suggest.php:53 +#: ../../include/widgets.php:79 +msgid "App Category" +msgstr "Categoria de aplicativos" + +#: ../../include/widgets.php:80 +msgid "System" +msgstr "Sistema" + +#: ../../include/widgets.php:82 +msgid "Featured" +msgstr "Destacado" + +#: ../../include/widgets.php:129 ../../mod/suggest.php:53 msgid "Ignore/Hide" msgstr "Ignorar/Ocultar" -#: ../../include/widgets.php:123 ../../mod/connections.php:265 +#: ../../include/widgets.php:135 ../../mod/connections.php:266 msgid "Suggestions" msgstr "Sugestões" -#: ../../include/widgets.php:124 +#: ../../include/widgets.php:136 msgid "See more..." msgstr "Veja mais..." -#: ../../include/widgets.php:146 +#: ../../include/widgets.php:158 #, php-format msgid "You have %1$.0f of %2$.0f allowed connections." msgstr "Você tem %1$.0f de %2$.0f conexões permitidas." -#: ../../include/widgets.php:152 +#: ../../include/widgets.php:164 msgid "Add New Connection" msgstr "Adicionar nova conexão" -#: ../../include/widgets.php:153 +#: ../../include/widgets.php:165 msgid "Enter the channel address" msgstr "Digite o endereço do canal" -#: ../../include/widgets.php:154 +#: ../../include/widgets.php:166 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Por exemplo: joao@exemplo.com, http://exemplo.com/maria" -#: ../../include/widgets.php:171 +#: ../../include/widgets.php:183 msgid "Notes" msgstr "Notas" -#: ../../include/widgets.php:243 +#: ../../include/widgets.php:255 msgid "Remove term" msgstr "Remover termo" -#: ../../include/widgets.php:322 +#: ../../include/widgets.php:334 msgid "Archives" msgstr "Arquivos" -#: ../../include/widgets.php:384 +#: ../../include/widgets.php:396 msgid "Refresh" msgstr "Atualizar" -#: ../../include/widgets.php:385 ../../mod/connedit.php:428 +#: ../../include/widgets.php:397 ../../mod/connedit.php:428 msgid "Me" msgstr "Eu" -#: ../../include/widgets.php:386 ../../mod/connedit.php:430 +#: ../../include/widgets.php:398 ../../mod/connedit.php:430 msgid "Best Friends" msgstr "Melhores amigos" -#: ../../include/widgets.php:388 +#: ../../include/widgets.php:400 msgid "Co-workers" msgstr "Colegas de trabalho" -#: ../../include/widgets.php:389 ../../mod/connedit.php:432 +#: ../../include/widgets.php:401 ../../mod/connedit.php:432 msgid "Former Friends" msgstr "Amigos afastados" -#: ../../include/widgets.php:390 ../../mod/connedit.php:433 +#: ../../include/widgets.php:402 ../../mod/connedit.php:433 msgid "Acquaintances" msgstr "Conhecidos" -#: ../../include/widgets.php:391 +#: ../../include/widgets.php:403 msgid "Everybody" msgstr "Todos" -#: ../../include/widgets.php:423 +#: ../../include/widgets.php:435 msgid "Account settings" msgstr "Configurações da conta" -#: ../../include/widgets.php:429 +#: ../../include/widgets.php:441 msgid "Channel settings" msgstr "Configurações do canal" -#: ../../include/widgets.php:435 +#: ../../include/widgets.php:447 msgid "Additional features" msgstr "Recursos adicionais" -#: ../../include/widgets.php:441 +#: ../../include/widgets.php:453 msgid "Feature settings" msgstr "Configurações dos recursos" -#: ../../include/widgets.php:447 +#: ../../include/widgets.php:459 msgid "Display settings" msgstr "Configurações de exibição" -#: ../../include/widgets.php:453 +#: ../../include/widgets.php:465 msgid "Connected apps" msgstr "Aplicações conectadas" -#: ../../include/widgets.php:459 +#: ../../include/widgets.php:471 msgid "Export channel" msgstr "Exportar o canal" -#: ../../include/widgets.php:471 +#: ../../include/widgets.php:483 msgid "Automatic Permissions (Advanced)" msgstr "Permissões automáticas (avançado)" -#: ../../include/widgets.php:481 +#: ../../include/widgets.php:493 msgid "Premium Channel Settings" msgstr "Configurações de canal premium" -#: ../../include/widgets.php:518 +#: ../../include/widgets.php:530 msgid "Check Mail" msgstr "Checar mensagens" -#: ../../include/widgets.php:599 +#: ../../include/widgets.php:611 msgid "Chat Rooms" msgstr "Salas de bate-papo" -#: ../../include/widgets.php:617 +#: ../../include/widgets.php:629 msgid "Bookmarked Chatrooms" msgstr "Salas de bate-papo guardadas" -#: ../../include/widgets.php:635 +#: ../../include/widgets.php:647 msgid "Suggested Chatrooms" msgstr "Salas de bate-papo sugeridas" @@ -4103,14 +4137,6 @@ msgstr "Autenticação remota bloqueada. Você está autenticado neste site loca msgid "Welcome %s. Remote authentication successful." msgstr "Bem vindo %s. Autenticação remota realizada com sucesso." -#: ../../mod/apps.php:8 -msgid "No installed applications." -msgstr "Não existe nenhuma aplicação instalada." - -#: ../../mod/apps.php:13 -msgid "Applications" -msgstr "Aplicações" - #: ../../mod/attach.php:9 msgid "Item not available." msgstr "O item não está disponível." @@ -4130,7 +4156,7 @@ msgid "Channel not found." msgstr "O canal não foi encontrado." #: ../../mod/block.php:75 ../../mod/page.php:83 ../../mod/display.php:100 -#: ../../mod/help.php:72 ../../index.php:226 +#: ../../mod/help.php:72 ../../index.php:237 msgid "Page not found." msgstr "Página não encontrada." @@ -4251,14 +4277,6 @@ msgstr "Estado civil" msgid "Romantic Partner" msgstr "Parceiro/a romântico/a" -#: ../../mod/profiles.php:302 -msgid "Likes" -msgstr "Gosta de" - -#: ../../mod/profiles.php:306 -msgid "Dislikes" -msgstr "Não gosta de" - #: ../../mod/profiles.php:310 msgid "Work/Employment" msgstr "Trabalho/Emprego" @@ -4495,7 +4513,7 @@ msgstr "Clique em um contato para adicionar ou remover." msgid "Visible To" msgstr "Visível para" -#: ../../mod/profperm.php:139 ../../mod/connections.php:277 +#: ../../mod/profperm.php:139 ../../mod/connections.php:278 msgid "All Connections" msgstr "Todas as conexões" @@ -4556,35 +4574,39 @@ msgstr "Descrição" msgid "Or enter new bookmark folder name" msgstr "Ou digite o nome para uma nova pasta de links" -#: ../../mod/chat.php:166 +#: ../../mod/chat.php:167 msgid "Room not found" msgstr "Sala não encontrada" -#: ../../mod/chat.php:176 +#: ../../mod/chat.php:178 msgid "Leave Room" msgstr "Sair da sala" -#: ../../mod/chat.php:177 +#: ../../mod/chat.php:179 +msgid "Delete This Room" +msgstr "Deletar esta sala" + +#: ../../mod/chat.php:180 msgid "I am away right now" msgstr "Eu estou ausente no momento" -#: ../../mod/chat.php:178 +#: ../../mod/chat.php:181 msgid "I am online" msgstr "Eu estou online" -#: ../../mod/chat.php:180 +#: ../../mod/chat.php:183 msgid "Bookmark this room" msgstr "Guarde esta sala" -#: ../../mod/chat.php:204 ../../mod/chat.php:226 +#: ../../mod/chat.php:207 ../../mod/chat.php:229 msgid "New Chatroom" msgstr "Nova sala de bate-papo" -#: ../../mod/chat.php:205 +#: ../../mod/chat.php:208 msgid "Chatroom Name" msgstr "Nome da sala de bate-papo" -#: ../../mod/chat.php:222 +#: ../../mod/chat.php:225 #, php-format msgid "%1$s's Chatrooms" msgstr "Salas de bate-papo de %1$s" @@ -4829,88 +4851,88 @@ msgstr "A conexão foi atualizada." msgid "Failed to update connection record." msgstr "Não foi possível atualizar o registro da conexão." -#: ../../mod/connections.php:191 ../../mod/connections.php:290 +#: ../../mod/connections.php:191 ../../mod/connections.php:291 msgid "Blocked" msgstr "Bloqueado" -#: ../../mod/connections.php:196 ../../mod/connections.php:297 +#: ../../mod/connections.php:196 ../../mod/connections.php:298 msgid "Ignored" msgstr "Ignorado" -#: ../../mod/connections.php:201 ../../mod/connections.php:311 +#: ../../mod/connections.php:201 ../../mod/connections.php:312 msgid "Hidden" msgstr "Oculto" -#: ../../mod/connections.php:206 ../../mod/connections.php:304 +#: ../../mod/connections.php:206 ../../mod/connections.php:305 msgid "Archived" msgstr "Arquivado" -#: ../../mod/connections.php:229 ../../mod/connections.php:243 +#: ../../mod/connections.php:230 ../../mod/connections.php:244 msgid "All" msgstr "Todos" -#: ../../mod/connections.php:238 ../../mod/connections.php:318 +#: ../../mod/connections.php:239 ../../mod/connections.php:319 msgid "Unconnected" msgstr "Não conectado" -#: ../../mod/connections.php:268 +#: ../../mod/connections.php:269 msgid "Suggest new connections" msgstr "Sugerir novas conexões" -#: ../../mod/connections.php:271 +#: ../../mod/connections.php:272 msgid "New Connections" msgstr "Novas conexões" -#: ../../mod/connections.php:274 +#: ../../mod/connections.php:275 msgid "Show pending (new) connections" msgstr "Exibir conexões pendentes (novas)" -#: ../../mod/connections.php:280 +#: ../../mod/connections.php:281 msgid "Show all connections" msgstr "Exibir todas as conexões" -#: ../../mod/connections.php:283 +#: ../../mod/connections.php:284 msgid "Unblocked" msgstr "Não bloqueado" -#: ../../mod/connections.php:286 +#: ../../mod/connections.php:287 msgid "Only show unblocked connections" msgstr "Exibir apenas conexões não bloqueadas" -#: ../../mod/connections.php:293 +#: ../../mod/connections.php:294 msgid "Only show blocked connections" msgstr "Exibir apenas conexões bloqueadas" -#: ../../mod/connections.php:300 +#: ../../mod/connections.php:301 msgid "Only show ignored connections" msgstr "Exibir apenas conexões ignoradas" -#: ../../mod/connections.php:307 +#: ../../mod/connections.php:308 msgid "Only show archived connections" msgstr "Exibir apenas conexões arquivadas" -#: ../../mod/connections.php:314 +#: ../../mod/connections.php:315 msgid "Only show hidden connections" msgstr "Exibir apenas conexões ocultas" -#: ../../mod/connections.php:321 +#: ../../mod/connections.php:322 msgid "Only show one-way connections" msgstr "Exibir apenas conexões de mão única" -#: ../../mod/connections.php:366 +#: ../../mod/connections.php:367 #, php-format msgid "%1$s [%2$s]" msgstr "%1$s [%2$s]" -#: ../../mod/connections.php:367 +#: ../../mod/connections.php:368 msgid "Edit contact" msgstr "Editar o contato" -#: ../../mod/connections.php:388 +#: ../../mod/connections.php:389 msgid "Search your connections" msgstr "Pesquisar em suas conexões" -#: ../../mod/connections.php:389 +#: ../../mod/connections.php:390 msgid "Finding: " msgstr "Pesquisando: " @@ -5773,7 +5795,7 @@ msgid "" "phpmyadmin or mysql." msgstr "Pode ser que você precise importar o arquivo \"install/database.sql\" manualmente, usando o phpmyadmin or mysql." -#: ../../mod/setup.php:191 ../../mod/setup.php:260 ../../mod/setup.php:641 +#: ../../mod/setup.php:191 ../../mod/setup.php:260 ../../mod/setup.php:655 msgid "Please see the file \"install/INSTALL.txt\"." msgstr "Por favor, veja o arquivo \"install/INSTALL.txt\"." @@ -5781,7 +5803,7 @@ msgstr "Por favor, veja o arquivo \"install/INSTALL.txt\"." msgid "System check" msgstr "Checagem do sistema" -#: ../../mod/setup.php:261 ../../mod/events.php:360 +#: ../../mod/setup.php:261 ../../mod/events.php:369 msgid "Next" msgstr "Próximo" @@ -6054,71 +6076,73 @@ msgstr "A Red usa o diretório store para salvar arquivos carregados. O servidor msgid "store is writable" msgstr "store tem permissão de escrita" -#: ../../mod/setup.php:554 +#: ../../mod/setup.php:569 msgid "" "SSL certificate cannot be validated. Fix certificate or disable https access" " to this site." msgstr "Não foi possível validar o certificado SSL. Corrija o certificado ou desabilite o acesso via https ao site." -#: ../../mod/setup.php:555 +#: ../../mod/setup.php:570 msgid "" -"If you use https access, you MUST use a certification instance known by all " -"internet browsers. You MUST NOT use self-signed certificates!" -msgstr "Se você utiliza acesso https, você DEVE usar uma instância de certificação reconhecida por todos os navegadores de internet. Você NÃO DEVE usar certificados assinados por você mesmo!" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" +msgstr "Se você oferece acesso https ao seu website ou permite conexões na porta TCP 443 (a porta https:), você DEVE usar um certificado reconhecido pelos navegadores. Você NÃO DEVE usar certificados assinados por você mesmo!" -#: ../../mod/setup.php:556 +#: ../../mod/setup.php:571 msgid "" "This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub. If your" -msgstr "Essa restrição é incorporada porque publicações públicas de você podem por exemplo conter referências a imagens no seu próprio hub. Se seu" +"example contain references to images on your own hub." +msgstr "Essa restrição é incorporada porque publicações públicas suas podem, por exemplo, conter referências a imagens no seu próprio hub." -#: ../../mod/setup.php:557 +#: ../../mod/setup.php:572 msgid "" -"certificate is not known by the internet browser of users they get a warning" -" message complaining about some security issues. Although" -msgstr "certificado não é conhecido pelo navegador de internet do usuário eles receberão um alerta reclamando de alguns problemas de segurança. Apesar" +"If your certificate is not recognised, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." +msgstr "Se seu certificado não for reconhecido, membros de outros sites (que podem ter certificados válidos) receberão uma mensagem de aviso nos seus próprios sites reclamando de problemas de segurança." -#: ../../mod/setup.php:558 +#: ../../mod/setup.php:573 msgid "" -"these complains are not the real truth - there are no security issues with " -"your encryption! - the users may be confused, nerved or even" -msgstr "dessas reclamações não serem a real verdade - não há problemas de segurança com sua encriptação! - os usuários podem ser confundidos, enervados ou pior" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "Isso pode causar problemas de usabilidade (não só no seu site) então nós precisamos insistir nesse requisito." -#: ../../mod/setup.php:559 +#: ../../mod/setup.php:574 msgid "" -"worse may become scared about redmatrix having security issues. Use one of " -"the free certification instances!" -msgstr "ainda podem ficar com medo da redmatrix ter problemas de segurança. Use uma das instâncias certificadoras gratuitas!" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Existem provedores que disponibilizam gratuitamente certificados reconhecidos por navegadores." -#: ../../mod/setup.php:561 +#: ../../mod/setup.php:576 msgid "SSL certificate validation" msgstr "Validação do certificado SSL" -#: ../../mod/setup.php:568 +#: ../../mod/setup.php:582 msgid "" "Url rewrite in .htaccess is not working. Check your server configuration." msgstr "A reescrita de URLs não está funcionando no .htaccess. Verifique as configurações do servidor." -#: ../../mod/setup.php:570 +#: ../../mod/setup.php:584 msgid "Url rewrite is working" msgstr "A reescrita de URLs está funcionando" -#: ../../mod/setup.php:580 +#: ../../mod/setup.php:594 msgid "" "The database configuration file \".htconfig.php\" could not be written. " "Please use the enclosed text to create a configuration file in your web " "server root." msgstr "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web." -#: ../../mod/setup.php:604 +#: ../../mod/setup.php:618 msgid "Errors encountered creating database tables." msgstr "Foram encontrados erros durante a criação das tabelas do banco de dados." -#: ../../mod/setup.php:639 +#: ../../mod/setup.php:653 msgid "

    What next

    " msgstr "

    Próximos passos

    " -#: ../../mod/setup.php:640 +#: ../../mod/setup.php:654 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." @@ -6260,64 +6284,64 @@ msgstr "Administradores do site" msgid "Event title and start time are required." msgstr "O título do evento e a hora de início são obrigatórios." -#: ../../mod/events.php:290 +#: ../../mod/events.php:299 msgid "l, F j" msgstr "l, F j" -#: ../../mod/events.php:312 +#: ../../mod/events.php:321 msgid "Edit event" msgstr "Editar o evento" -#: ../../mod/events.php:358 +#: ../../mod/events.php:367 msgid "Create New Event" msgstr "Criar um novo evento" -#: ../../mod/events.php:359 +#: ../../mod/events.php:368 msgid "Previous" msgstr "Anterior" -#: ../../mod/events.php:431 +#: ../../mod/events.php:439 msgid "hour:minute" msgstr "hora:minuto" -#: ../../mod/events.php:450 +#: ../../mod/events.php:459 msgid "Event details" msgstr "Detalhes do evento" -#: ../../mod/events.php:451 +#: ../../mod/events.php:460 #, php-format msgid "Format is %s %s. Starting date and Title are required." msgstr "O formato é %s %s. A data de início e o título são obrigatórios." -#: ../../mod/events.php:453 +#: ../../mod/events.php:462 msgid "Event Starts:" msgstr "Início do evento:" -#: ../../mod/events.php:453 ../../mod/events.php:467 +#: ../../mod/events.php:462 ../../mod/events.php:476 msgid "Required" msgstr "Obrigatório" -#: ../../mod/events.php:456 +#: ../../mod/events.php:465 msgid "Finish date/time is not known or not relevant" msgstr "A data/hora de término não é conhecida ou não é relevante" -#: ../../mod/events.php:458 +#: ../../mod/events.php:467 msgid "Event Finishes:" msgstr "Término do evento:" -#: ../../mod/events.php:461 +#: ../../mod/events.php:470 msgid "Adjust for viewer timezone" msgstr "Ajustar para o fuso horário do visualizador" -#: ../../mod/events.php:463 +#: ../../mod/events.php:472 msgid "Description:" msgstr "Descrição:" -#: ../../mod/events.php:467 +#: ../../mod/events.php:476 msgid "Title:" msgstr "Título:" -#: ../../mod/events.php:469 +#: ../../mod/events.php:478 msgid "Share this event" msgstr "Compartilhar este evento" @@ -6525,7 +6549,7 @@ msgstr "%1$s etiquetou %3$s de %2$s com %4$s" msgid "Help:" msgstr "Ajuda:" -#: ../../mod/help.php:69 ../../index.php:223 +#: ../../mod/help.php:69 ../../index.php:234 msgid "Not Found" msgstr "Não encontrada" @@ -6765,24 +6789,24 @@ msgstr "Para maiores informações sobre o Projeto Red Matrix e porque ele tem p msgid "Unable to locate original post." msgstr "Não foi possível localizar a publicação original." -#: ../../mod/item.php:345 +#: ../../mod/item.php:352 msgid "Empty post discarded." msgstr "A publicação em branco foi descartada." -#: ../../mod/item.php:385 +#: ../../mod/item.php:392 msgid "Executable content type not permitted to this channel." msgstr "Conteúdo de tipo executável não permitido para este canal." -#: ../../mod/item.php:794 +#: ../../mod/item.php:806 msgid "System error. Post not saved." msgstr "Erro no sistema. A publicação não foi salva." -#: ../../mod/item.php:1237 +#: ../../mod/item.php:1249 #, php-format msgid "You have reached your limit of %1$.0f top level posts." msgstr "Você atingiu o seu limite de %1$.0f publicações de novos tópicos." -#: ../../mod/item.php:1243 +#: ../../mod/item.php:1255 #, php-format msgid "You have reached your limit of %1$.0f webpages." msgstr "Você atingiu o seu limite de %1$.0f páginas web." @@ -6808,16 +6832,16 @@ msgstr "Não existe informação disponível sobre a privacidade remota." msgid "Visible to:" msgstr "Visível para:" -#: ../../mod/viewconnections.php:50 +#: ../../mod/viewconnections.php:58 msgid "No connections." msgstr "Nenhuma conexão." -#: ../../mod/viewconnections.php:62 +#: ../../mod/viewconnections.php:70 #, php-format msgid "Visit %s's profile [%s]" msgstr "Ver o perfil de %s [%s]" -#: ../../mod/viewconnections.php:77 +#: ../../mod/viewconnections.php:85 msgid "View Connnections" msgstr "Ver conexões" @@ -7291,11 +7315,11 @@ msgstr "Identificador de solicitação inválido" msgid "Discard" msgstr "Descartar" -#: ../../mod/notifications.php:93 ../../mod/notify.php:54 +#: ../../mod/notifications.php:94 ../../mod/notify.php:54 msgid "No more system notifications." msgstr "Sem novas notificações do sistema." -#: ../../mod/notifications.php:97 ../../mod/notify.php:58 +#: ../../mod/notifications.php:98 ../../mod/notify.php:58 msgid "System Notifications" msgstr "Notificações do sistema" @@ -7541,8 +7565,8 @@ msgid "Set the border colour of comments" msgstr "Definir a cor da borda dos comentários" #: ../../view/theme/redbasic/php/config.php:120 -msgid "Set the opacity of items" -msgstr "Definir a opacidade de items" +msgid "Set the indent for comments" +msgstr "Definir a indentação de comentários" #: ../../view/theme/redbasic/php/config.php:121 msgid "Set the basic colour for item icons" diff --git a/view/pt-br/register_open_eml.tpl b/view/pt-br/register_open_eml.tpl index 6dd4b714b..f25b8b4dd 100644 --- a/view/pt-br/register_open_eml.tpl +++ b/view/pt-br/register_open_eml.tpl @@ -4,7 +4,7 @@ Os detalhes de autenticação são os seguintes: Localização do site: {{$siteurl}} Nome: {{$email}} -Senha: (the password which was provided during registration) +Senha: (a senha escolhida ao registrar a conta) Se esta conta foi criada sem seu conhecimento e não é desejada, você pode visitar o site e reiniciar a senha. Isso permitirá que você a remova a partir diff --git a/view/pt-br/strings.php b/view/pt-br/strings.php index 053059a66..7ee579fae 100644 --- a/view/pt-br/strings.php +++ b/view/pt-br/strings.php @@ -7,6 +7,12 @@ function string_plural_select_pt_br($n){ ; $a->strings["Cannot locate DNS info for database server '%s'"] = "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'"; $a->strings["Profile Photos"] = "Fotos do perfil"; +$a->strings["Matrix"] = "Matriz"; +$a->strings["Channel Home"] = "Página inicial do canal"; +$a->strings["Profile"] = "Perfil"; +$a->strings["Photos"] = "Fotos"; +$a->strings["Events"] = "Eventos"; +$a->strings["Directory"] = "Diretório"; $a->strings["Embedded content"] = "Conteúdo incorporado"; $a->strings["Embedding disabled"] = "A incorporação está desabilitada"; $a->strings["created a new post"] = "criou uma nova publicação"; @@ -23,49 +29,6 @@ $a->strings["Page Link"] = "Link da página"; $a->strings["Title"] = "Título"; $a->strings["Created"] = "Criado"; $a->strings["Edited"] = "Editado"; -$a->strings["Private Message"] = "Mensagem privada"; -$a->strings["Delete"] = "Excluir"; -$a->strings["Select"] = "Selecionar"; -$a->strings["save to folder"] = "salvar na pasta"; -$a->strings["add star"] = "destacar"; -$a->strings["remove star"] = "remover destaque"; -$a->strings["toggle star status"] = "alternar destaque"; -$a->strings["starred"] = "destacado"; -$a->strings["Message is verified"] = "A mensagem foi verificada"; -$a->strings["add tag"] = "adicionar etiqueta"; -$a->strings["I like this (toggle)"] = "Eu gostei disso (alterna)"; -$a->strings["like"] = "gostei"; -$a->strings["I don't like this (toggle)"] = "Eu não gostei disso (alterna)"; -$a->strings["dislike"] = "não gostei"; -$a->strings["Share this"] = "Compartilhar isso"; -$a->strings["share"] = "compartilhar"; -$a->strings["View %s's profile - %s"] = "Ver o perfil de %s - %s"; -$a->strings["to"] = "para"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "Mural-para-mural"; -$a->strings["via Wall-To-Wall:"] = "via Mural-para-mural"; -$a->strings[" from %s"] = "de %s"; -$a->strings["last edited: %s"] = "última edição: %s"; -$a->strings["Expires: %s"] = "Expira: %s"; -$a->strings["Bookmark Links"] = "Guardar links"; -$a->strings["Please wait"] = "Por favor, espere"; -$a->strings["%d comment"] = array( - 0 => "%d comentário", - 1 => "%d comentários", -); -$a->strings["show more"] = "exibir mais"; -$a->strings["This is you"] = "Este(a) é você"; -$a->strings["Comment"] = "Comentar"; -$a->strings["Submit"] = "Enviar"; -$a->strings["Bold"] = "Negrito"; -$a->strings["Italic"] = "Itálico"; -$a->strings["Underline"] = "Sublinhado"; -$a->strings["Quote"] = "Citação"; -$a->strings["Code"] = "Código"; -$a->strings["Image"] = "Imagem"; -$a->strings["Link"] = "Link"; -$a->strings["Video"] = "Vídeo"; -$a->strings["Encrypt text"] = "Encriptar texto"; $a->strings["Can view my \"public\" stream and posts"] = "Pode ver meus fluxo e publicações \"públicos\""; $a->strings["Can view my \"public\" channel profile"] = "Pode ver o perfil \"público\" do meu canal"; $a->strings["Can view my \"public\" photo albums"] = "Pode ver meus álbuns de fotos \"públicos\""; @@ -144,6 +107,53 @@ $a->strings["QR code"] = "código QR"; $a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s escreveu a seguinte %2\$s %3\$s"; $a->strings["post"] = "publicação"; $a->strings["$1 wrote:"] = "$1 escreveu:"; +$a->strings["Private Message"] = "Mensagem privada"; +$a->strings["Delete"] = "Excluir"; +$a->strings["Select"] = "Selecionar"; +$a->strings["save to folder"] = "salvar na pasta"; +$a->strings["Like"] = "Gostou"; +$a->strings["Likes"] = "Gosta de"; +$a->strings["Dislike"] = "Desgostou"; +$a->strings["Dislikes"] = "Não gosta de"; +$a->strings["add star"] = "destacar"; +$a->strings["remove star"] = "remover destaque"; +$a->strings["toggle star status"] = "alternar destaque"; +$a->strings["starred"] = "destacado"; +$a->strings["Message is verified"] = "A mensagem foi verificada"; +$a->strings["add tag"] = "adicionar etiqueta"; +$a->strings["I like this (toggle)"] = "Eu gostei disso (alterna)"; +$a->strings["like"] = "gostei"; +$a->strings["I don't like this (toggle)"] = "Eu não gostei disso (alterna)"; +$a->strings["dislike"] = "não gostei"; +$a->strings["Share this"] = "Compartilhar isso"; +$a->strings["share"] = "compartilhar"; +$a->strings["View %s's profile - %s"] = "Ver o perfil de %s - %s"; +$a->strings["to"] = "para"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "Mural-para-mural"; +$a->strings["via Wall-To-Wall:"] = "via Mural-para-mural"; +$a->strings[" from %s"] = "de %s"; +$a->strings["last edited: %s"] = "última edição: %s"; +$a->strings["Expires: %s"] = "Expira: %s"; +$a->strings["Bookmark Links"] = "Guardar links"; +$a->strings["Please wait"] = "Por favor, espere"; +$a->strings["%d comment"] = array( + 0 => "%d comentário", + 1 => "%d comentários", +); +$a->strings["show more"] = "exibir mais"; +$a->strings["This is you"] = "Este(a) é você"; +$a->strings["Comment"] = "Comentar"; +$a->strings["Submit"] = "Enviar"; +$a->strings["Bold"] = "Negrito"; +$a->strings["Italic"] = "Itálico"; +$a->strings["Underline"] = "Sublinhado"; +$a->strings["Quote"] = "Citação"; +$a->strings["Code"] = "Código"; +$a->strings["Image"] = "Imagem"; +$a->strings["Link"] = "Link"; +$a->strings["Video"] = "Vídeo"; +$a->strings["Encrypt text"] = "Encriptar texto"; $a->strings["%1\$s's bookmarks"] = "Links guardados de %1\$s"; $a->strings["Missing room name"] = "Nome da sala vazio"; $a->strings["Duplicate room name"] = "Nome da sala duplicado"; @@ -380,11 +390,9 @@ $a->strings["Channel"] = "Canal"; $a->strings["Status Messages and Posts"] = "Mensagens de status e publicações"; $a->strings["About"] = "Sobre"; $a->strings["Profile Details"] = "Detalhes do perfil"; -$a->strings["Photos"] = "Fotos"; $a->strings["Files"] = "Arquivos"; $a->strings["Files and Storage"] = "Arquivos e armazenamento"; $a->strings["Chatrooms"] = "Salas de bate-papo"; -$a->strings["Events"] = "Eventos"; $a->strings["Events and Calendar"] = "Eventos e calendário"; $a->strings["Bookmarks"] = "Links guardados"; $a->strings["Saved Bookmarks"] = "Links guardados"; @@ -514,9 +522,6 @@ $a->strings["Channel was deleted and no longer exists."] = "O canal foi deletado $a->strings["Channel discovery failed."] = "A descoberta de canais falhou."; $a->strings["local account not found."] = "a conta local não foi encontrada."; $a->strings["Cannot connect to yourself."] = "Não é possível conectar-se consigo mesmo."; -$a->strings["Invalid data packet"] = "Pacote de dados inválido"; -$a->strings["Unable to verify channel signature"] = "Não foi possível verificar a assinatura do canal"; -$a->strings["Unable to verify site signature for %s"] = "Não foi possível verificar a assinatura do site para %s"; $a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes poderão ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente."; $a->strings["Default privacy group for new contacts"] = "Grupo de privacidade padrão para novos contatos"; $a->strings["All Channels"] = "Todos os canais"; @@ -558,7 +563,6 @@ $a->strings["Birthdays this week:"] = "Aniversários nesta semana:"; $a->strings["[No description]"] = "[Sem descrição]"; $a->strings["Event Reminders"] = "Lembretes de eventos"; $a->strings["Events this week:"] = "Eventos nesta semana:"; -$a->strings["Profile"] = "Perfil"; $a->strings["Full Name:"] = "Nome completo:"; $a->strings["j F, Y"] = "j \\d\\e F, Y"; $a->strings["j F"] = "j \\d\\e F"; @@ -601,6 +605,7 @@ $a->strings["everybody"] = "todos"; $a->strings["Secret Passphrase"] = "Frase secreta"; $a->strings["Passphrase hint"] = "Dica da frase secreta"; $a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Atenção: permissões foram modificadas mas ainda não foram enviadas."; +$a->strings["close all"] = "fechar tudo"; $a->strings["timeago.prefixAgo"] = "timeago.prefixAgo"; $a->strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; $a->strings["ago"] = "atrás"; @@ -648,12 +653,9 @@ $a->strings["Help and documentation"] = "Ajuda e documentação"; $a->strings["Apps"] = "Aplicações"; $a->strings["Addon applications, utilities, games"] = "Aplicações adicionais, utilitários, jogos"; $a->strings["Search site content"] = "Pesquisar o conteúdo do site"; -$a->strings["Directory"] = "Diretório"; $a->strings["Channel Locator"] = "Localizador de canais"; -$a->strings["Matrix"] = "Matriz"; $a->strings["Your matrix"] = "Sua matriz"; $a->strings["Mark all matrix notifications seen"] = "Marcar todas as notificações da matriz como vistas"; -$a->strings["Channel Home"] = "Página inicial do canal"; $a->strings["Channel home"] = "Página inicial do canal"; $a->strings["Mark all channel notifications seen"] = "Marcar todas as notificações de canais como vistas"; $a->strings["Connections"] = "Conexões"; @@ -742,7 +744,13 @@ $a->strings["It's complicated"] = "É complicado"; $a->strings["Don't care"] = "Não importa"; $a->strings["Ask me"] = "Pergunte-me"; $a->strings["Edit File properties"] = "Editar propriedades do arquivo"; +$a->strings["Invalid data packet"] = "Pacote de dados inválido"; +$a->strings["Unable to verify channel signature"] = "Não foi possível verificar a assinatura do canal"; +$a->strings["Unable to verify site signature for %s"] = "Não foi possível verificar a assinatura do site para %s"; $a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão."; +$a->strings["App Category"] = "Categoria de aplicativos"; +$a->strings["System"] = "Sistema"; +$a->strings["Featured"] = "Destacado"; $a->strings["Ignore/Hide"] = "Ignorar/Ocultar"; $a->strings["Suggestions"] = "Sugestões"; $a->strings["See more..."] = "Veja mais..."; @@ -971,8 +979,6 @@ $a->strings["Please login to continue."] = "Por favor, autentique-se para contin $a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?"; $a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Autenticação remota bloqueada. Você está autenticado neste site localmente. Por favor, saia e tente novamente."; $a->strings["Welcome %s. Remote authentication successful."] = "Bem vindo %s. Autenticação remota realizada com sucesso."; -$a->strings["No installed applications."] = "Não existe nenhuma aplicação instalada."; -$a->strings["Applications"] = "Aplicações"; $a->strings["Item not available."] = "O item não está disponível."; $a->strings["Fetching URL returns error: %1\$s"] = "Carregar o URL retorna o erro: %1\$s"; $a->strings["Invalid item."] = "Item inválido."; @@ -1006,8 +1012,6 @@ $a->strings["Profile unavailable to clone."] = "O perfil não está disponível $a->strings["Profile Name is required."] = "É obrigatório informar o nome do perfil."; $a->strings["Marital Status"] = "Estado civil"; $a->strings["Romantic Partner"] = "Parceiro/a romântico/a"; -$a->strings["Likes"] = "Gosta de"; -$a->strings["Dislikes"] = "Não gosta de"; $a->strings["Work/Employment"] = "Trabalho/Emprego"; $a->strings["Religion"] = "Religião"; $a->strings["Political Views"] = "Posição política"; @@ -1082,6 +1086,7 @@ $a->strings["Description"] = "Descrição"; $a->strings["Or enter new bookmark folder name"] = "Ou digite o nome para uma nova pasta de links"; $a->strings["Room not found"] = "Sala não encontrada"; $a->strings["Leave Room"] = "Sair da sala"; +$a->strings["Delete This Room"] = "Deletar esta sala"; $a->strings["I am away right now"] = "Eu estou ausente no momento"; $a->strings["I am online"] = "Eu estou online"; $a->strings["Bookmark this room"] = "Guarde esta sala"; @@ -1430,11 +1435,11 @@ $a->strings["view/tpl/smarty3 is writable"] = "view/tpl/smarty3 tem permissão d $a->strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "A Red usa o diretório store para salvar arquivos carregados. O servidor web necessita de permissão de escrita no diretório store dentro do diretório raiz da Red"; $a->strings["store is writable"] = "store tem permissão de escrita"; $a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Não foi possível validar o certificado SSL. Corrija o certificado ou desabilite o acesso via https ao site."; -$a->strings["If you use https access, you MUST use a certification instance known by all internet browsers. You MUST NOT use self-signed certificates!"] = "Se você utiliza acesso https, você DEVE usar uma instância de certificação reconhecida por todos os navegadores de internet. Você NÃO DEVE usar certificados assinados por você mesmo!"; -$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub. If your"] = "Essa restrição é incorporada porque publicações públicas de você podem por exemplo conter referências a imagens no seu próprio hub. Se seu"; -$a->strings["certificate is not known by the internet browser of users they get a warning message complaining about some security issues. Although"] = "certificado não é conhecido pelo navegador de internet do usuário eles receberão um alerta reclamando de alguns problemas de segurança. Apesar"; -$a->strings["these complains are not the real truth - there are no security issues with your encryption! - the users may be confused, nerved or even"] = "dessas reclamações não serem a real verdade - não há problemas de segurança com sua encriptação! - os usuários podem ser confundidos, enervados ou pior"; -$a->strings["worse may become scared about redmatrix having security issues. Use one of the free certification instances!"] = "ainda podem ficar com medo da redmatrix ter problemas de segurança. Use uma das instâncias certificadoras gratuitas!"; +$a->strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Se você oferece acesso https ao seu website ou permite conexões na porta TCP 443 (a porta https:), você DEVE usar um certificado reconhecido pelos navegadores. Você NÃO DEVE usar certificados assinados por você mesmo!"; +$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Essa restrição é incorporada porque publicações públicas suas podem, por exemplo, conter referências a imagens no seu próprio hub."; +$a->strings["If your certificate is not recognised, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Se seu certificado não for reconhecido, membros de outros sites (que podem ter certificados válidos) receberão uma mensagem de aviso nos seus próprios sites reclamando de problemas de segurança."; +$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Isso pode causar problemas de usabilidade (não só no seu site) então nós precisamos insistir nesse requisito."; +$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Existem provedores que disponibilizam gratuitamente certificados reconhecidos por navegadores."; $a->strings["SSL certificate validation"] = "Validação do certificado SSL"; $a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "A reescrita de URLs não está funcionando no .htaccess. Verifique as configurações do servidor."; $a->strings["Url rewrite is working"] = "A reescrita de URLs está funcionando"; @@ -1779,7 +1784,7 @@ $a->strings["Set the background image"] = "Definir a imagem do pano de fundo"; $a->strings["Set the background colour of items"] = "Definir a cor de fundo dos items"; $a->strings["Set the background colour of comments"] = "Definir a cor de fundo dos comentários"; $a->strings["Set the border colour of comments"] = "Definir a cor da borda dos comentários"; -$a->strings["Set the opacity of items"] = "Definir a opacidade de items"; +$a->strings["Set the indent for comments"] = "Definir a indentação de comentários"; $a->strings["Set the basic colour for item icons"] = "Definir a cor básica para ícones de itens"; $a->strings["Set the hover colour for item icons"] = "Definir a cor para ícones de itens quando que o mouse está sobre eles"; $a->strings["Set font-size for the entire application"] = "Definir o tamanho da fonte para a aplicação como um todo"; From d15e3776f3ec5476b1614f0488e8e81e0f0ebb70 Mon Sep 17 00:00:00 2001 From: Alexandre Hannud Abdo Date: Wed, 21 May 2014 05:32:46 -0300 Subject: [PATCH 099/147] Allow translation context with plural. Use that in Likes/Dislikes. --- include/ItemObject.php | 8 +- include/language.php | 7 +- util/messages.po | 8804 ++++++++++++++++++++-------------------- util/run_xgettext.sh | 2 +- util/strings.php | 2399 ++++++----- 5 files changed, 5707 insertions(+), 5513 deletions(-) diff --git a/include/ItemObject.php b/include/ItemObject.php index cdb09ecf1..19283c317 100644 --- a/include/ItemObject.php +++ b/include/ItemObject.php @@ -131,12 +131,12 @@ class Item extends BaseObject { } else { $like_list_part = ''; } - $like_button_label = ((x($alike,$item['mid'])) && ($alike[$item['mid']] < 2 ) ? t('Like') : t('Likes')); + $like_button_label = tt('Like','Likes',$like_count,'noun'); if (feature_enabled($conv->get_profile_owner(),'dislike')) { $dislike_count = ((x($dlike,$item['mid'])) ? $dlike[$item['mid']] : ''); $dislike_list = ((x($dlike,$item['mid'])) ? $dlike[$item['mid'] . '-l'] : ''); - $dislike_button_label = ((x($dlike,$item['mid'])) && ($dlike[$item['mid']] < 2) ? t('Dislike') : t('Dislikes')); + $dislike_button_label = tt('Dislike','Dislikes',$dislike_count,'noun'); if (count($dislike_list) > MAX_LIKERS) { $dislike_list_part = array_slice($dislike_list, 0, MAX_LIKERS); array_push($dislike_list_part, '' . t('View all') . ''); @@ -276,8 +276,8 @@ class Item extends BaseObject { 'like_list' => $like_list, 'like_list_part' => $like_list_part, 'like_button_label' => $like_button_label, - 'like_modal_title' => t('Likes'), - 'dislike_modal_title' => t('Dislikes'), + 'like_modal_title' => t('Likes','noun'), + 'dislike_modal_title' => t('Dislikes','noun'), 'dislike_count' => ((feature_enabled($conv->get_profile_owner(),'dislike')) ? $dislike_count : ''), 'dislike_list' => ((feature_enabled($conv->get_profile_owner(),'dislike')) ? $dislike_list : ''), 'dislike_list_part' => ((feature_enabled($conv->get_profile_owner(),'dislike')) ? $dislike_list_part : ''), diff --git a/include/language.php b/include/language.php index ba14c33be..780dfadba 100644 --- a/include/language.php +++ b/include/language.php @@ -162,11 +162,12 @@ function t($s,$ctx = '') { } -function tt($singular, $plural, $count){ +function tt($singular, $plural, $count, $ctx = ''){ $a = get_app(); - if(x($a->strings,$singular)) { - $t = $a->strings[$singular]; + $cs = $ctx?"__ctx:".$ctx."__ ".$singular:$singular; + if(x($a->strings,$cs)) { + $t = $a->strings[$cs]; $f = 'string_plural_select_' . str_replace('-', '_', $a->language); if(! function_exists($f)) $f = 'string_plural_select_default'; diff --git a/util/messages.po b/util/messages.po index 3b5fd6dc2..fd710f9fa 100644 --- a/util/messages.po +++ b/util/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 2014-05-20.681\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-20 20:21-0700\n" +"POT-Creation-Date: 2014-05-21 05:30-0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,71 +17,508 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../include/dba/dba_driver.php:50 +#: ../../include/follow.php:23 +msgid "Channel is blocked on this site." +msgstr "" + +#: ../../include/follow.php:28 +msgid "Channel location missing." +msgstr "" + +#: ../../include/follow.php:54 +msgid "Response from remote channel was incomplete." +msgstr "" + +#: ../../include/follow.php:85 +msgid "Channel was deleted and no longer exists." +msgstr "" + +#: ../../include/follow.php:132 +msgid "Channel discovery failed." +msgstr "" + +#: ../../include/follow.php:149 +msgid "local account not found." +msgstr "" + +#: ../../include/follow.php:158 +msgid "Cannot connect to yourself." +msgstr "" + +#: ../../include/reddav.php:1045 +msgid "Edit File properties" +msgstr "" + +#: ../../include/event.php:11 ../../include/bb2diaspora.php:433 +msgid "l F d, Y \\@ g:i A" +msgstr "" + +#: ../../include/event.php:20 ../../include/bb2diaspora.php:439 +msgid "Starts:" +msgstr "" + +#: ../../include/event.php:30 ../../include/bb2diaspora.php:447 +msgid "Finishes:" +msgstr "" + +#: ../../include/event.php:40 ../../include/bb2diaspora.php:455 +#: ../../include/identity.php:726 ../../mod/dirprofile.php:105 +#: ../../mod/directory.php:156 ../../mod/events.php:474 +msgid "Location:" +msgstr "" + +#: ../../include/widgets.php:29 ../../include/contact_widgets.php:92 +msgid "Categories" +msgstr "" + +#: ../../include/widgets.php:79 +msgid "App Category" +msgstr "" + +#: ../../include/widgets.php:80 +msgid "System" +msgstr "" + +#: ../../include/widgets.php:81 ../../include/conversation.php:1415 +msgid "Personal" +msgstr "" + +#: ../../include/widgets.php:127 ../../include/widgets.php:167 +#: ../../include/Contact.php:107 ../../include/identity.php:675 +#: ../../mod/dirprofile.php:164 ../../mod/directory.php:183 +#: ../../mod/suggest.php:51 ../../mod/match.php:62 +msgid "Connect" +msgstr "" + +#: ../../include/widgets.php:129 ../../mod/suggest.php:53 +msgid "Ignore/Hide" +msgstr "" + +#: ../../include/widgets.php:135 ../../mod/connections.php:266 +msgid "Suggestions" +msgstr "" + +#: ../../include/widgets.php:136 +msgid "See more..." +msgstr "" + +#: ../../include/widgets.php:158 #, php-format -msgid "Cannot locate DNS info for database server '%s'" +msgid "You have %1$.0f of %2$.0f allowed connections." msgstr "" -#: ../../include/photo/photo_driver.php:643 ../../include/photos.php:51 -#: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 -#: ../../mod/profile_photo.php:421 ../../mod/photos.php:91 -#: ../../mod/photos.php:655 ../../mod/photos.php:677 -msgid "Profile Photos" +#: ../../include/widgets.php:164 +msgid "Add New Connection" msgstr "" -#: ../../include/apps.php:107 ../../include/nav.php:158 -msgid "Matrix" +#: ../../include/widgets.php:165 +msgid "Enter the channel address" msgstr "" -#: ../../include/apps.php:108 ../../include/nav.php:161 -msgid "Channel Home" +#: ../../include/widgets.php:166 +msgid "Example: bob@example.com, http://example.com/barbara" msgstr "" -#: ../../include/apps.php:109 ../../include/identity.php:942 -#: ../../include/identity.php:1031 ../../mod/profperm.php:112 -msgid "Profile" +#: ../../include/widgets.php:183 +msgid "Notes" msgstr "" -#: ../../include/apps.php:110 ../../include/conversation.php:1501 -#: ../../include/nav.php:84 ../../mod/fbrowser.php:25 +#: ../../include/widgets.php:185 ../../include/text.php:815 +#: ../../include/text.php:829 ../../mod/filer.php:50 ../../mod/rbmark.php:28 +#: ../../mod/rbmark.php:98 +msgid "Save" +msgstr "" + +#: ../../include/widgets.php:255 +msgid "Remove term" +msgstr "" + +#: ../../include/widgets.php:264 ../../include/features.php:52 +msgid "Saved Searches" +msgstr "" + +#: ../../include/widgets.php:265 ../../include/group.php:290 +msgid "add" +msgstr "" + +#: ../../include/widgets.php:295 ../../include/features.php:66 +#: ../../include/contact_widgets.php:58 +msgid "Saved Folders" +msgstr "" + +#: ../../include/widgets.php:298 ../../include/contact_widgets.php:61 +#: ../../include/contact_widgets.php:95 +msgid "Everything" +msgstr "" + +#: ../../include/widgets.php:334 +msgid "Archives" +msgstr "" + +#: ../../include/widgets.php:396 +msgid "Refresh" +msgstr "" + +#: ../../include/widgets.php:397 ../../mod/connedit.php:428 +msgid "Me" +msgstr "" + +#: ../../include/widgets.php:398 ../../mod/connedit.php:430 +msgid "Best Friends" +msgstr "" + +#: ../../include/widgets.php:399 ../../include/profile_selectors.php:42 +#: ../../include/identity.php:342 ../../mod/connedit.php:431 +msgid "Friends" +msgstr "" + +#: ../../include/widgets.php:400 +msgid "Co-workers" +msgstr "" + +#: ../../include/widgets.php:401 ../../mod/connedit.php:432 +msgid "Former Friends" +msgstr "" + +#: ../../include/widgets.php:402 ../../mod/connedit.php:433 +msgid "Acquaintances" +msgstr "" + +#: ../../include/widgets.php:403 +msgid "Everybody" +msgstr "" + +#: ../../include/widgets.php:435 +msgid "Account settings" +msgstr "" + +#: ../../include/widgets.php:441 +msgid "Channel settings" +msgstr "" + +#: ../../include/widgets.php:447 +msgid "Additional features" +msgstr "" + +#: ../../include/widgets.php:453 +msgid "Feature settings" +msgstr "" + +#: ../../include/widgets.php:459 +msgid "Display settings" +msgstr "" + +#: ../../include/widgets.php:465 +msgid "Connected apps" +msgstr "" + +#: ../../include/widgets.php:471 +msgid "Export channel" +msgstr "" + +#: ../../include/widgets.php:483 +msgid "Automatic Permissions (Advanced)" +msgstr "" + +#: ../../include/widgets.php:493 +msgid "Premium Channel Settings" +msgstr "" + +#: ../../include/widgets.php:502 ../../include/features.php:43 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "" + +#: ../../include/widgets.php:513 ../../include/nav.php:186 +#: ../../mod/admin.php:976 ../../mod/admin.php:1181 +msgid "Settings" +msgstr "" + +#: ../../include/widgets.php:530 +msgid "Check Mail" +msgstr "" + +#: ../../include/widgets.php:535 ../../include/nav.php:177 +msgid "New Message" +msgstr "" + +#: ../../include/widgets.php:611 +msgid "Chat Rooms" +msgstr "" + +#: ../../include/widgets.php:629 +msgid "Bookmarked Chatrooms" +msgstr "" + +#: ../../include/widgets.php:647 +msgid "Suggested Chatrooms" +msgstr "" + +#: ../../include/api.php:1016 +msgid "Public Timeline" +msgstr "" + +#: ../../include/nav.php:77 ../../include/nav.php:96 ../../boot.php:1450 +msgid "Logout" +msgstr "" + +#: ../../include/nav.php:77 ../../include/nav.php:96 +msgid "End this session" +msgstr "" + +#: ../../include/nav.php:80 ../../include/nav.php:130 +msgid "Home" +msgstr "" + +#: ../../include/nav.php:80 +msgid "Your posts and conversations" +msgstr "" + +#: ../../include/nav.php:81 ../../include/conversation.php:937 +#: ../../mod/connedit.php:351 ../../mod/connedit.php:465 +msgid "View Profile" +msgstr "" + +#: ../../include/nav.php:81 +msgid "Your profile page" +msgstr "" + +#: ../../include/nav.php:83 +msgid "Edit Profiles" +msgstr "" + +#: ../../include/nav.php:83 +msgid "Manage/Edit profiles" +msgstr "" + +#: ../../include/nav.php:84 ../../include/conversation.php:1501 +#: ../../include/apps.php:110 ../../mod/fbrowser.php:25 msgid "Photos" msgstr "" -#: ../../include/apps.php:111 ../../include/conversation.php:1532 -#: ../../include/nav.php:87 ../../include/nav.php:180 ../../mod/events.php:366 +#: ../../include/nav.php:84 +msgid "Your photos" +msgstr "" + +#: ../../include/nav.php:85 ../../include/conversation.php:1510 +#: ../../mod/fbrowser.php:114 +msgid "Files" +msgstr "" + +#: ../../include/nav.php:85 +msgid "Your files" +msgstr "" + +#: ../../include/nav.php:86 +msgid "Chat" +msgstr "" + +#: ../../include/nav.php:86 +msgid "Your chatrooms" +msgstr "" + +#: ../../include/nav.php:87 ../../include/nav.php:180 +#: ../../include/conversation.php:1532 ../../include/apps.php:111 +#: ../../mod/events.php:366 msgid "Events" msgstr "" -#: ../../include/apps.php:112 ../../include/nav.php:147 -#: ../../mod/directory.php:210 -msgid "Directory" +#: ../../include/nav.php:87 +msgid "Your events" msgstr "" -#: ../../include/apps.php:113 ../../include/nav.php:139 ../../mod/help.php:60 +#: ../../include/nav.php:88 ../../include/conversation.php:1540 +msgid "Bookmarks" +msgstr "" + +#: ../../include/nav.php:88 +msgid "Your bookmarks" +msgstr "" + +#: ../../include/nav.php:90 ../../include/conversation.php:1551 +#: ../../mod/webpages.php:79 +msgid "Webpages" +msgstr "" + +#: ../../include/nav.php:90 +msgid "Your webpages" +msgstr "" + +#: ../../include/nav.php:94 ../../boot.php:1451 +msgid "Login" +msgstr "" + +#: ../../include/nav.php:94 +msgid "Sign in" +msgstr "" + +#: ../../include/nav.php:111 +#, php-format +msgid "%s - click to logout" +msgstr "" + +#: ../../include/nav.php:116 +msgid "Click to authenticate to your home hub" +msgstr "" + +#: ../../include/nav.php:130 +msgid "Home Page" +msgstr "" + +#: ../../include/nav.php:134 ../../mod/register.php:206 ../../boot.php:1427 +msgid "Register" +msgstr "" + +#: ../../include/nav.php:134 +msgid "Create an account" +msgstr "" + +#: ../../include/nav.php:139 ../../include/apps.php:113 ../../mod/help.php:60 #: ../../mod/help.php:65 msgid "Help" msgstr "" -#: ../../include/apps.php:146 ../../mod/settings.php:79 -#: ../../mod/settings.php:541 -msgid "Update" +#: ../../include/nav.php:139 +msgid "Help and documentation" msgstr "" -#: ../../include/apps.php:146 -msgid "Install" +#: ../../include/nav.php:142 ../../mod/apps.php:17 ../../mod/apps.php:35 +msgid "Apps" msgstr "" -#: ../../include/apps.php:151 ../../include/ItemObject.php:108 -#: ../../include/conversation.php:632 ../../mod/admin.php:757 -#: ../../mod/admin.php:886 ../../mod/connedit.php:398 -#: ../../mod/settings.php:578 ../../mod/filestorage.php:175 -#: ../../mod/group.php:176 ../../mod/thing.php:236 ../../mod/photos.php:1043 -msgid "Delete" +#: ../../include/nav.php:142 +msgid "Addon applications, utilities, games" msgstr "" -#: ../../include/apps.php:213 ../../include/apps.php:255 -#: ../../mod/connedit.php:434 -msgid "Unknown" +#: ../../include/nav.php:144 ../../include/text.php:813 +#: ../../include/text.php:827 ../../mod/search.php:29 +msgid "Search" +msgstr "" + +#: ../../include/nav.php:144 +msgid "Search site content" +msgstr "" + +#: ../../include/nav.php:147 ../../include/apps.php:112 +#: ../../mod/directory.php:210 +msgid "Directory" +msgstr "" + +#: ../../include/nav.php:147 +msgid "Channel Locator" +msgstr "" + +#: ../../include/nav.php:158 ../../include/apps.php:107 +msgid "Matrix" +msgstr "" + +#: ../../include/nav.php:158 +msgid "Your matrix" +msgstr "" + +#: ../../include/nav.php:159 +msgid "Mark all matrix notifications seen" +msgstr "" + +#: ../../include/nav.php:161 ../../include/apps.php:108 +msgid "Channel Home" +msgstr "" + +#: ../../include/nav.php:161 +msgid "Channel home" +msgstr "" + +#: ../../include/nav.php:162 +msgid "Mark all channel notifications seen" +msgstr "" + +#: ../../include/nav.php:165 ../../include/nav.php:188 +#: ../../mod/connections.php:385 +msgid "Connections" +msgstr "" + +#: ../../include/nav.php:168 +msgid "Notices" +msgstr "" + +#: ../../include/nav.php:168 +msgid "Notifications" +msgstr "" + +#: ../../include/nav.php:169 +msgid "See all notifications" +msgstr "" + +#: ../../include/nav.php:170 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "" + +#: ../../include/nav.php:172 +msgid "Mail" +msgstr "" + +#: ../../include/nav.php:172 +msgid "Private mail" +msgstr "" + +#: ../../include/nav.php:173 +msgid "See all private messages" +msgstr "" + +#: ../../include/nav.php:174 +msgid "Mark all private messages seen" +msgstr "" + +#: ../../include/nav.php:175 +msgid "Inbox" +msgstr "" + +#: ../../include/nav.php:176 +msgid "Outbox" +msgstr "" + +#: ../../include/nav.php:180 +msgid "Event Calendar" +msgstr "" + +#: ../../include/nav.php:181 +msgid "See all events" +msgstr "" + +#: ../../include/nav.php:182 +msgid "Mark all events seen" +msgstr "" + +#: ../../include/nav.php:184 +msgid "Channel Select" +msgstr "" + +#: ../../include/nav.php:184 +msgid "Manage Your Channels" +msgstr "" + +#: ../../include/nav.php:186 +msgid "Account/Channel Settings" +msgstr "" + +#: ../../include/nav.php:188 +msgid "Manage/Edit Friends and Connections" +msgstr "" + +#: ../../include/nav.php:195 ../../mod/admin.php:117 +msgid "Admin" +msgstr "" + +#: ../../include/nav.php:195 +msgid "Site Setup and Configuration" +msgstr "" + +#: ../../include/nav.php:220 +msgid "Nothing new here" +msgstr "" + +#: ../../include/nav.php:225 +msgid "Please wait..." msgstr "" #: ../../include/oembed.php:171 @@ -92,299 +529,565 @@ msgstr "" msgid "Embedding disabled" msgstr "" -#: ../../include/notify.php:23 -msgid "created a new post" +#: ../../include/bbcode.php:128 ../../include/bbcode.php:642 +#: ../../include/bbcode.php:645 ../../include/bbcode.php:650 +#: ../../include/bbcode.php:653 ../../include/bbcode.php:656 +#: ../../include/bbcode.php:659 ../../include/bbcode.php:664 +#: ../../include/bbcode.php:667 ../../include/bbcode.php:672 +#: ../../include/bbcode.php:675 ../../include/bbcode.php:678 +#: ../../include/bbcode.php:681 +msgid "Image/photo" msgstr "" -#: ../../include/notify.php:24 +#: ../../include/bbcode.php:163 ../../include/bbcode.php:692 +msgid "Encrypted content" +msgstr "" + +#: ../../include/bbcode.php:179 +msgid "QR code" +msgstr "" + +#: ../../include/bbcode.php:228 #, php-format -msgid "commented on %s's post" +msgid "%1$s wrote the following %2$s %3$s" msgstr "" -#: ../../include/Contact.php:107 ../../include/identity.php:675 -#: ../../include/widgets.php:127 ../../include/widgets.php:167 -#: ../../mod/directory.php:183 ../../mod/dirprofile.php:164 -#: ../../mod/suggest.php:51 ../../mod/match.php:62 -msgid "Connect" +#: ../../include/bbcode.php:230 +msgid "post" msgstr "" -#: ../../include/Contact.php:123 -msgid "New window" +#: ../../include/bbcode.php:610 ../../include/bbcode.php:630 +msgid "$1 wrote:" msgstr "" -#: ../../include/Contact.php:124 -msgid "Open the selected location in a different window or browser tab" +#: ../../include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." msgstr "" -#: ../../include/page_widgets.php:6 -msgid "New Page" +#: ../../include/group.php:223 +msgid "Default privacy group for new contacts" msgstr "" -#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../include/ItemObject.php:96 ../../include/menu.php:42 -#: ../../mod/blocks.php:94 ../../mod/connections.php:392 -#: ../../mod/settings.php:577 ../../mod/editblock.php:111 -#: ../../mod/editlayout.php:106 ../../mod/editpost.php:112 -#: ../../mod/editwebpage.php:143 ../../mod/filestorage.php:174 -#: ../../mod/thing.php:235 ../../mod/layouts.php:112 ../../mod/menu.php:59 -#: ../../mod/webpages.php:119 -msgid "Edit" +#: ../../include/group.php:242 ../../mod/admin.php:762 +msgid "All Channels" msgstr "" -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:97 -#: ../../mod/layouts.php:116 ../../mod/webpages.php:122 -msgid "View" +#: ../../include/group.php:264 +msgid "edit" msgstr "" -#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:588 -#: ../../include/conversation.php:1088 ../../mod/editblock.php:141 -#: ../../mod/editlayout.php:135 ../../mod/editpost.php:140 -#: ../../mod/editwebpage.php:175 ../../mod/webpages.php:123 -#: ../../mod/photos.php:994 +#: ../../include/group.php:285 +msgid "Collections" +msgstr "" + +#: ../../include/group.php:286 +msgid "Edit collection" +msgstr "" + +#: ../../include/group.php:287 +msgid "Create a new collection" +msgstr "" + +#: ../../include/group.php:288 +msgid "Channels not in any collection" +msgstr "" + +#: ../../include/conversation.php:117 ../../include/text.php:1705 +#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 +#: ../../mod/tagger.php:45 ../../mod/like.php:111 +msgid "photo" +msgstr "" + +#: ../../include/conversation.php:120 ../../include/text.php:1708 +#: ../../mod/tagger.php:49 +msgid "event" +msgstr "" + +#: ../../include/conversation.php:123 +msgid "channel" +msgstr "" + +#: ../../include/conversation.php:145 ../../include/text.php:1711 +#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 +#: ../../mod/tagger.php:53 ../../mod/like.php:111 +msgid "status" +msgstr "" + +#: ../../include/conversation.php:147 ../../include/text.php:1713 +#: ../../mod/tagger.php:55 +msgid "comment" +msgstr "" + +#: ../../include/conversation.php:161 ../../mod/like.php:142 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "" + +#: ../../include/conversation.php:164 ../../mod/like.php:144 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "" + +#: ../../include/conversation.php:201 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "" + +#: ../../include/conversation.php:236 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: ../../include/conversation.php:240 ../../include/text.php:895 +msgid "poked" +msgstr "" + +#: ../../include/conversation.php:258 ../../mod/mood.php:63 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "" + +#: ../../include/conversation.php:631 ../../include/ItemObject.php:114 +msgid "Select" +msgstr "" + +#: ../../include/conversation.php:632 ../../include/ItemObject.php:108 +#: ../../include/apps.php:156 ../../mod/group.php:176 ../../mod/thing.php:236 +#: ../../mod/filestorage.php:175 ../../mod/connedit.php:398 +#: ../../mod/settings.php:578 ../../mod/photos.php:1043 +#: ../../mod/admin.php:757 ../../mod/admin.php:886 +msgid "Delete" +msgstr "" + +#: ../../include/conversation.php:639 ../../include/ItemObject.php:89 +#: ../../mod/photos.php:846 +msgid "Private Message" +msgstr "" + +#: ../../include/conversation.php:646 ../../include/ItemObject.php:182 +msgid "Message is verified" +msgstr "" + +#: ../../include/conversation.php:666 +#, php-format +msgid "View %s's profile @ %s" +msgstr "" + +#: ../../include/conversation.php:680 +msgid "Categories:" +msgstr "" + +#: ../../include/conversation.php:681 +msgid "Filed under:" +msgstr "" + +#: ../../include/conversation.php:690 ../../include/ItemObject.php:247 +#, php-format +msgid " from %s" +msgstr "" + +#: ../../include/conversation.php:693 ../../include/ItemObject.php:250 +#, php-format +msgid "last edited: %s" +msgstr "" + +#: ../../include/conversation.php:694 ../../include/ItemObject.php:251 +#, php-format +msgid "Expires: %s" +msgstr "" + +#: ../../include/conversation.php:709 +msgid "View in context" +msgstr "" + +#: ../../include/conversation.php:711 ../../include/conversation.php:1127 +#: ../../include/ItemObject.php:290 ../../mod/editlayout.php:115 +#: ../../mod/editpost.php:121 ../../mod/photos.php:974 +#: ../../mod/editblock.php:120 ../../mod/editwebpage.php:152 +#: ../../mod/mail.php:222 ../../mod/mail.php:336 +msgid "Please wait" +msgstr "" + +#: ../../include/conversation.php:838 +msgid "remove" +msgstr "" + +#: ../../include/conversation.php:842 +msgid "Loading..." +msgstr "" + +#: ../../include/conversation.php:843 +msgid "Delete Selected Items" +msgstr "" + +#: ../../include/conversation.php:934 +msgid "View Source" +msgstr "" + +#: ../../include/conversation.php:935 +msgid "Follow Thread" +msgstr "" + +#: ../../include/conversation.php:936 +msgid "View Status" +msgstr "" + +#: ../../include/conversation.php:938 +msgid "View Photos" +msgstr "" + +#: ../../include/conversation.php:939 +msgid "Matrix Activity" +msgstr "" + +#: ../../include/conversation.php:940 +msgid "Edit Contact" +msgstr "" + +#: ../../include/conversation.php:941 +msgid "Send PM" +msgstr "" + +#: ../../include/conversation.php:942 +msgid "Poke" +msgstr "" + +#: ../../include/conversation.php:998 +#, php-format +msgid "%s likes this." +msgstr "" + +#: ../../include/conversation.php:998 +#, php-format +msgid "%s doesn't like this." +msgstr "" + +#: ../../include/conversation.php:1002 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1004 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1010 +msgid "and" +msgstr "" + +#: ../../include/conversation.php:1013 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1014 +#, php-format +msgid "%s like this." +msgstr "" + +#: ../../include/conversation.php:1014 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: ../../include/conversation.php:1071 +msgid "Visible to everybody" +msgstr "" + +#: ../../include/conversation.php:1072 ../../mod/mail.php:171 +#: ../../mod/mail.php:269 +msgid "Please enter a link URL:" +msgstr "" + +#: ../../include/conversation.php:1073 +msgid "Please enter a video link/URL:" +msgstr "" + +#: ../../include/conversation.php:1074 +msgid "Please enter an audio link/URL:" +msgstr "" + +#: ../../include/conversation.php:1075 +msgid "Tag term:" +msgstr "" + +#: ../../include/conversation.php:1076 ../../mod/filer.php:49 +msgid "Save to Folder:" +msgstr "" + +#: ../../include/conversation.php:1077 +msgid "Where are you right now?" +msgstr "" + +#: ../../include/conversation.php:1078 ../../mod/editpost.php:52 +#: ../../mod/mail.php:172 ../../mod/mail.php:270 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "" + +#: ../../include/conversation.php:1088 ../../include/ItemObject.php:588 +#: ../../include/page_widgets.php:40 ../../mod/editlayout.php:135 +#: ../../mod/webpages.php:123 ../../mod/editpost.php:140 +#: ../../mod/photos.php:994 ../../mod/editblock.php:141 +#: ../../mod/editwebpage.php:175 msgid "Preview" msgstr "" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:124 -msgid "Actions" +#: ../../include/conversation.php:1102 ../../mod/photos.php:973 +#: ../../mod/layouts.php:113 +msgid "Share" msgstr "" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:125 -msgid "Page Link" +#: ../../include/conversation.php:1104 ../../mod/editwebpage.php:139 +msgid "Page link title" msgstr "" -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:126 -msgid "Title" +#: ../../include/conversation.php:1107 +msgid "Post as" msgstr "" -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:127 -msgid "Created" +#: ../../include/conversation.php:1108 ../../mod/editlayout.php:107 +#: ../../mod/editpost.php:113 ../../mod/editblock.php:112 +#: ../../mod/editwebpage.php:144 ../../mod/mail.php:219 ../../mod/mail.php:332 +msgid "Upload photo" msgstr "" -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:128 -msgid "Edited" +#: ../../include/conversation.php:1109 +msgid "upload photo" msgstr "" -#: ../../include/permissions.php:13 -msgid "Can view my \"public\" stream and posts" +#: ../../include/conversation.php:1110 ../../mod/editlayout.php:108 +#: ../../mod/editpost.php:114 ../../mod/editblock.php:113 +#: ../../mod/editwebpage.php:145 ../../mod/mail.php:220 ../../mod/mail.php:333 +msgid "Attach file" msgstr "" -#: ../../include/permissions.php:14 -msgid "Can view my \"public\" channel profile" +#: ../../include/conversation.php:1111 +msgid "attach file" msgstr "" -#: ../../include/permissions.php:15 -msgid "Can view my \"public\" photo albums" +#: ../../include/conversation.php:1112 ../../mod/editlayout.php:109 +#: ../../mod/editpost.php:115 ../../mod/editblock.php:114 +#: ../../mod/editwebpage.php:146 ../../mod/mail.php:221 ../../mod/mail.php:334 +msgid "Insert web link" msgstr "" -#: ../../include/permissions.php:16 -msgid "Can view my \"public\" address book" +#: ../../include/conversation.php:1113 +msgid "web link" msgstr "" -#: ../../include/permissions.php:17 -msgid "Can view my \"public\" file storage" +#: ../../include/conversation.php:1114 +msgid "Insert video link" msgstr "" -#: ../../include/permissions.php:18 -msgid "Can view my \"public\" pages" +#: ../../include/conversation.php:1115 +msgid "video link" msgstr "" -#: ../../include/permissions.php:21 -msgid "Can send me their channel stream and posts" +#: ../../include/conversation.php:1116 +msgid "Insert audio link" msgstr "" -#: ../../include/permissions.php:22 -msgid "Can post on my channel page (\"wall\")" +#: ../../include/conversation.php:1117 +msgid "audio link" msgstr "" -#: ../../include/permissions.php:23 -msgid "Can comment on my posts" +#: ../../include/conversation.php:1118 ../../mod/editlayout.php:113 +#: ../../mod/editpost.php:119 ../../mod/editblock.php:118 +#: ../../mod/editwebpage.php:150 +msgid "Set your location" msgstr "" -#: ../../include/permissions.php:24 -msgid "Can send me private mail messages" +#: ../../include/conversation.php:1119 +msgid "set location" msgstr "" -#: ../../include/permissions.php:25 -msgid "Can post photos to my photo albums" +#: ../../include/conversation.php:1120 ../../mod/editlayout.php:114 +#: ../../mod/editpost.php:120 ../../mod/editblock.php:119 +#: ../../mod/editwebpage.php:151 +msgid "Clear browser location" msgstr "" -#: ../../include/permissions.php:26 -msgid "Can forward to all my channel contacts via post @mentions" +#: ../../include/conversation.php:1121 +msgid "clear location" msgstr "" -#: ../../include/permissions.php:26 -msgid "Advanced - useful for creating group forum channels" +#: ../../include/conversation.php:1123 ../../mod/editlayout.php:126 +#: ../../mod/editpost.php:132 ../../mod/editblock.php:132 +#: ../../mod/editwebpage.php:167 +msgid "Set title" msgstr "" -#: ../../include/permissions.php:27 -msgid "Can chat with me (when available)" +#: ../../include/conversation.php:1126 ../../mod/editlayout.php:129 +#: ../../mod/editpost.php:134 ../../mod/editblock.php:135 +#: ../../mod/editwebpage.php:169 +msgid "Categories (comma-separated list)" msgstr "" -#: ../../include/permissions.php:28 -msgid "Can write to my \"public\" file storage" +#: ../../include/conversation.php:1128 ../../mod/editlayout.php:116 +#: ../../mod/editpost.php:122 ../../mod/editblock.php:121 +#: ../../mod/editwebpage.php:153 +msgid "Permission settings" msgstr "" -#: ../../include/permissions.php:29 -msgid "Can edit my \"public\" pages" +#: ../../include/conversation.php:1129 +msgid "permissions" msgstr "" -#: ../../include/permissions.php:31 -msgid "Can source my \"public\" posts in derived channels" +#: ../../include/conversation.php:1136 ../../mod/editlayout.php:123 +#: ../../mod/editpost.php:129 ../../mod/editblock.php:129 +#: ../../mod/editwebpage.php:162 +msgid "Public post" msgstr "" -#: ../../include/permissions.php:31 -msgid "Somewhat advanced - very useful in open communities" +#: ../../include/conversation.php:1138 ../../mod/editlayout.php:130 +#: ../../mod/editpost.php:135 ../../mod/editblock.php:136 +#: ../../mod/editwebpage.php:170 +msgid "Example: bob@example.com, mary@example.com" msgstr "" -#: ../../include/permissions.php:33 -msgid "Can administer my channel resources" +#: ../../include/conversation.php:1151 ../../mod/editlayout.php:140 +#: ../../mod/editpost.php:146 ../../mod/editblock.php:146 +#: ../../mod/editwebpage.php:180 ../../mod/mail.php:226 ../../mod/mail.php:339 +msgid "Set expiration date" msgstr "" -#: ../../include/permissions.php:33 -msgid "Extremely advanced. Leave this alone unless you know what you are doing" +#: ../../include/conversation.php:1153 ../../include/ItemObject.php:591 +#: ../../mod/editpost.php:148 ../../mod/mail.php:228 ../../mod/mail.php:341 +msgid "Encrypt text" msgstr "" -#: ../../include/account.php:23 -msgid "Not a valid email address" +#: ../../include/conversation.php:1155 ../../mod/editpost.php:150 +msgid "OK" msgstr "" -#: ../../include/account.php:25 -msgid "Your email domain is not among those allowed on this site" +#: ../../include/conversation.php:1156 ../../mod/tagrm.php:11 +#: ../../mod/tagrm.php:94 ../../mod/editpost.php:151 +#: ../../mod/settings.php:516 ../../mod/settings.php:542 +#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117 +msgid "Cancel" msgstr "" -#: ../../include/account.php:31 -msgid "Your email address is already registered at this site." +#: ../../include/conversation.php:1392 +msgid "Discover" msgstr "" -#: ../../include/account.php:64 -msgid "An invitation is required." +#: ../../include/conversation.php:1395 +msgid "Imported public streams" msgstr "" -#: ../../include/account.php:68 -msgid "Invitation could not be verified." +#: ../../include/conversation.php:1400 +msgid "Commented Order" msgstr "" -#: ../../include/account.php:119 -msgid "Please enter the required information." +#: ../../include/conversation.php:1403 +msgid "Sort by Comment Date" msgstr "" -#: ../../include/account.php:187 -msgid "Failed to store account information." +#: ../../include/conversation.php:1407 +msgid "Posted Order" msgstr "" -#: ../../include/account.php:273 -#, php-format -msgid "Registration request at %s" +#: ../../include/conversation.php:1410 +msgid "Sort by Post Date" msgstr "" -#: ../../include/account.php:275 ../../include/account.php:302 -#: ../../include/account.php:359 -msgid "Administrator" +#: ../../include/conversation.php:1418 +msgid "Posts that mention or involve you" msgstr "" -#: ../../include/account.php:297 -msgid "your registration password" +#: ../../include/conversation.php:1424 ../../mod/connections.php:211 +#: ../../mod/connections.php:224 ../../mod/menu.php:61 +msgid "New" msgstr "" -#: ../../include/account.php:300 ../../include/account.php:357 -#, php-format -msgid "Registration details for %s" +#: ../../include/conversation.php:1427 +msgid "Activity Stream - by date" msgstr "" -#: ../../include/account.php:366 -msgid "Account approved." +#: ../../include/conversation.php:1433 +msgid "Starred" msgstr "" -#: ../../include/account.php:400 -#, php-format -msgid "Registration revoked for %s" +#: ../../include/conversation.php:1436 +msgid "Favourite Posts" msgstr "" -#: ../../include/photos.php:15 ../../include/attach.php:119 -#: ../../include/attach.php:166 ../../include/attach.php:229 -#: ../../include/attach.php:243 ../../include/attach.php:283 -#: ../../include/attach.php:297 ../../include/attach.php:322 -#: ../../include/attach.php:513 ../../include/attach.php:585 -#: ../../include/chat.php:116 ../../include/items.php:3645 -#: ../../mod/mood.php:119 ../../mod/mitem.php:73 ../../mod/achievements.php:27 -#: ../../mod/poke.php:128 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/authtest.php:13 ../../mod/profile.php:64 ../../mod/profile.php:72 -#: ../../mod/block.php:22 ../../mod/block.php:72 -#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 -#: ../../mod/blocks.php:29 ../../mod/blocks.php:44 ../../mod/profiles.php:152 -#: ../../mod/profiles.php:453 ../../mod/bookmarks.php:46 -#: ../../mod/channel.php:89 ../../mod/channel.php:193 -#: ../../mod/channel.php:236 ../../mod/chat.php:90 ../../mod/chat.php:95 -#: ../../mod/register.php:68 ../../mod/regmod.php:18 ../../mod/common.php:35 -#: ../../mod/network.php:12 ../../mod/connections.php:169 -#: ../../mod/connedit.php:221 ../../mod/delegate.php:6 ../../mod/page.php:30 -#: ../../mod/page.php:80 ../../mod/settings.php:492 ../../mod/setup.php:203 -#: ../../mod/editblock.php:34 ../../mod/pdledit.php:21 -#: ../../mod/editlayout.php:48 ../../mod/editpost.php:13 -#: ../../mod/editwebpage.php:44 ../../mod/editwebpage.php:83 -#: ../../mod/events.php:140 ../../mod/sources.php:66 -#: ../../mod/filestorage.php:10 ../../mod/filestorage.php:59 -#: ../../mod/filestorage.php:75 ../../mod/filestorage.php:98 -#: ../../mod/fsuggest.php:78 ../../mod/suggest.php:26 ../../mod/group.php:9 -#: ../../mod/thing.php:247 ../../mod/thing.php:263 ../../mod/thing.php:298 -#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/item.php:179 -#: ../../mod/item.php:187 ../../mod/item.php:872 ../../mod/layouts.php:27 -#: ../../mod/layouts.php:39 ../../mod/viewconnections.php:22 -#: ../../mod/viewconnections.php:27 ../../mod/viewsrc.php:12 -#: ../../mod/mail.php:108 ../../mod/manage.php:6 ../../mod/menu.php:44 -#: ../../mod/webpages.php:40 ../../mod/message.php:16 -#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97 -#: ../../mod/photos.php:68 ../../mod/photos.php:526 -#: ../../mod/notifications.php:66 ../../index.php:187 ../../index.php:362 -msgid "Permission denied." +#: ../../include/conversation.php:1443 +msgid "Spam" msgstr "" -#: ../../include/photos.php:89 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" +#: ../../include/conversation.php:1446 +msgid "Posts flagged as SPAM" msgstr "" -#: ../../include/photos.php:96 -msgid "Image file is empty." +#: ../../include/conversation.php:1480 ../../mod/admin.php:890 +msgid "Channel" msgstr "" -#: ../../include/photos.php:123 ../../mod/profile_photo.php:216 -msgid "Unable to process image" +#: ../../include/conversation.php:1483 +msgid "Status Messages and Posts" msgstr "" -#: ../../include/photos.php:186 -msgid "Photo storage failed." +#: ../../include/conversation.php:1492 +msgid "About" msgstr "" -#: ../../include/photos.php:311 ../../include/conversation.php:1504 +#: ../../include/conversation.php:1495 +msgid "Profile Details" +msgstr "" + +#: ../../include/conversation.php:1504 ../../include/photos.php:311 msgid "Photo Albums" msgstr "" -#: ../../include/photos.php:315 ../../mod/photos.php:693 -#: ../../mod/photos.php:1190 -msgid "Upload New Photos" +#: ../../include/conversation.php:1513 +msgid "Files and Storage" msgstr "" -#: ../../include/acl_selectors.php:238 -msgid "Visible to everybody" +#: ../../include/conversation.php:1522 ../../include/conversation.php:1525 +msgid "Chatrooms" msgstr "" -#: ../../include/acl_selectors.php:239 -msgid "Show" +#: ../../include/conversation.php:1535 +msgid "Events and Calendar" msgstr "" -#: ../../include/acl_selectors.php:240 -msgid "Don't show" +#: ../../include/conversation.php:1543 +msgid "Saved Bookmarks" msgstr "" -#: ../../include/acl_selectors.php:246 ../../mod/chat.php:209 -#: ../../mod/filestorage.php:126 ../../mod/photos.php:606 -#: ../../mod/photos.php:949 -msgid "Permissions" +#: ../../include/conversation.php:1554 +msgid "Manage Webpages" msgstr "" -#: ../../include/acl_selectors.php:247 ../../include/ItemObject.php:285 -msgid "Close" +#: ../../include/comanche.php:35 ../../view/theme/redbasic/php/config.php:84 +msgid "Default" +msgstr "" + +#: ../../include/message.php:18 +msgid "No recipient provided." +msgstr "" + +#: ../../include/message.php:23 +msgid "[no subject]" +msgstr "" + +#: ../../include/message.php:42 +msgid "Unable to determine sender." +msgstr "" + +#: ../../include/message.php:143 +msgid "Stored post could not be verified." msgstr "" #: ../../include/activities.php:39 @@ -410,8 +1113,548 @@ msgstr "" msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" -#: ../../include/api.php:1016 -msgid "Public Timeline" +#: ../../include/network.php:652 +msgid "view full size" +msgstr "" + +#: ../../include/bookmarks.php:42 +#, php-format +msgid "%1$s's bookmarks" +msgstr "" + +#: ../../include/taxonomy.php:210 +msgid "Tags" +msgstr "" + +#: ../../include/taxonomy.php:227 +msgid "Keywords" +msgstr "" + +#: ../../include/taxonomy.php:252 +msgid "have" +msgstr "" + +#: ../../include/taxonomy.php:252 +msgid "has" +msgstr "" + +#: ../../include/taxonomy.php:253 +msgid "want" +msgstr "" + +#: ../../include/taxonomy.php:253 +msgid "wants" +msgstr "" + +#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:205 +msgid "like" +msgstr "" + +#: ../../include/taxonomy.php:254 +msgid "likes" +msgstr "" + +#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:206 +msgid "dislike" +msgstr "" + +#: ../../include/taxonomy.php:255 +msgid "dislikes" +msgstr "" + +#: ../../include/ItemObject.php:96 ../../include/page_widgets.php:8 +#: ../../include/page_widgets.php:36 ../../include/menu.php:42 +#: ../../mod/editlayout.php:106 ../../mod/webpages.php:119 +#: ../../mod/thing.php:235 ../../mod/blocks.php:94 +#: ../../mod/filestorage.php:174 ../../mod/editpost.php:112 +#: ../../mod/settings.php:577 ../../mod/layouts.php:112 +#: ../../mod/connections.php:392 ../../mod/editblock.php:111 +#: ../../mod/editwebpage.php:143 ../../mod/menu.php:59 +msgid "Edit" +msgstr "" + +#: ../../include/ItemObject.php:118 +msgid "save to folder" +msgstr "" + +#: ../../include/ItemObject.php:130 ../../include/ItemObject.php:142 +msgid "View all" +msgstr "" + +#: ../../include/ItemObject.php:134 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/ItemObject.php:139 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/ItemObject.php:167 +msgid "add star" +msgstr "" + +#: ../../include/ItemObject.php:168 +msgid "remove star" +msgstr "" + +#: ../../include/ItemObject.php:169 +msgid "toggle star status" +msgstr "" + +#: ../../include/ItemObject.php:173 +msgid "starred" +msgstr "" + +#: ../../include/ItemObject.php:190 +msgid "add tag" +msgstr "" + +#: ../../include/ItemObject.php:205 ../../mod/photos.php:971 +msgid "I like this (toggle)" +msgstr "" + +#: ../../include/ItemObject.php:206 ../../mod/photos.php:972 +msgid "I don't like this (toggle)" +msgstr "" + +#: ../../include/ItemObject.php:208 +msgid "Share this" +msgstr "" + +#: ../../include/ItemObject.php:208 +msgid "share" +msgstr "" + +#: ../../include/ItemObject.php:232 ../../include/ItemObject.php:233 +#, php-format +msgid "View %s's profile - %s" +msgstr "" + +#: ../../include/ItemObject.php:234 +msgid "to" +msgstr "" + +#: ../../include/ItemObject.php:235 +msgid "via" +msgstr "" + +#: ../../include/ItemObject.php:236 +msgid "Wall-to-Wall" +msgstr "" + +#: ../../include/ItemObject.php:237 +msgid "via Wall-To-Wall:" +msgstr "" + +#: ../../include/ItemObject.php:271 +msgid "Bookmark Links" +msgstr "" + +#: ../../include/ItemObject.php:279 +msgctxt "noun" +msgid "Likes" +msgstr "" + +#: ../../include/ItemObject.php:280 +msgctxt "noun" +msgid "Dislikes" +msgstr "" + +#: ../../include/ItemObject.php:285 ../../include/acl_selectors.php:247 +msgid "Close" +msgstr "" + +#: ../../include/ItemObject.php:311 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/ItemObject.php:312 ../../include/contact_widgets.php:130 +#: ../../include/js_strings.php:7 +msgid "show more" +msgstr "" + +#: ../../include/ItemObject.php:576 ../../mod/photos.php:990 +#: ../../mod/photos.php:1077 +msgid "This is you" +msgstr "" + +#: ../../include/ItemObject.php:578 ../../include/js_strings.php:6 +#: ../../mod/photos.php:992 ../../mod/photos.php:1079 +msgid "Comment" +msgstr "" + +#: ../../include/ItemObject.php:579 ../../mod/group.php:81 +#: ../../mod/thing.php:283 ../../mod/thing.php:326 ../../mod/connect.php:92 +#: ../../mod/pdledit.php:58 ../../mod/sources.php:104 +#: ../../mod/sources.php:138 ../../mod/filestorage.php:135 +#: ../../mod/fsuggest.php:108 ../../mod/connedit.php:476 +#: ../../mod/settings.php:515 ../../mod/settings.php:627 +#: ../../mod/settings.php:655 ../../mod/settings.php:679 +#: ../../mod/settings.php:751 ../../mod/settings.php:929 +#: ../../mod/setup.php:307 ../../mod/setup.php:350 ../../mod/events.php:481 +#: ../../mod/photos.php:565 ../../mod/photos.php:670 ../../mod/photos.php:953 +#: ../../mod/photos.php:993 ../../mod/photos.php:1080 ../../mod/import.php:387 +#: ../../mod/mood.php:142 ../../mod/chat.php:177 ../../mod/chat.php:211 +#: ../../mod/profiles.php:506 ../../mod/mail.php:223 ../../mod/mail.php:335 +#: ../../mod/appman.php:91 ../../mod/poke.php:166 ../../mod/admin.php:441 +#: ../../mod/admin.php:750 ../../mod/admin.php:884 ../../mod/admin.php:1017 +#: ../../mod/admin.php:1216 ../../mod/admin.php:1303 ../../mod/invite.php:156 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "" + +#: ../../include/ItemObject.php:580 +msgid "Bold" +msgstr "" + +#: ../../include/ItemObject.php:581 +msgid "Italic" +msgstr "" + +#: ../../include/ItemObject.php:582 +msgid "Underline" +msgstr "" + +#: ../../include/ItemObject.php:583 +msgid "Quote" +msgstr "" + +#: ../../include/ItemObject.php:584 +msgid "Code" +msgstr "" + +#: ../../include/ItemObject.php:585 +msgid "Image" +msgstr "" + +#: ../../include/ItemObject.php:586 +msgid "Link" +msgstr "" + +#: ../../include/ItemObject.php:587 +msgid "Video" +msgstr "" + +#: ../../include/items.php:306 ../../mod/group.php:68 +#: ../../mod/subthread.php:49 ../../mod/profperm.php:23 ../../mod/like.php:63 +#: ../../index.php:361 +msgid "Permission denied" +msgstr "" + +#: ../../include/items.php:830 +msgid "(Unknown)" +msgstr "" + +#: ../../include/items.php:3583 ../../mod/home.php:63 ../../mod/thing.php:78 +#: ../../mod/filestorage.php:18 ../../mod/viewsrc.php:18 +#: ../../mod/display.php:32 ../../mod/admin.php:159 ../../mod/admin.php:921 +#: ../../mod/admin.php:1124 +msgid "Item not found." +msgstr "" + +#: ../../include/items.php:3645 ../../include/attach.php:119 +#: ../../include/attach.php:166 ../../include/attach.php:229 +#: ../../include/attach.php:243 ../../include/attach.php:283 +#: ../../include/attach.php:297 ../../include/attach.php:322 +#: ../../include/attach.php:513 ../../include/attach.php:585 +#: ../../include/photos.php:15 ../../include/chat.php:116 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/editlayout.php:48 ../../mod/webpages.php:40 +#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97 +#: ../../mod/group.php:9 ../../mod/thing.php:247 ../../mod/thing.php:263 +#: ../../mod/thing.php:298 ../../mod/notifications.php:66 +#: ../../mod/block.php:22 ../../mod/block.php:72 ../../mod/message.php:16 +#: ../../mod/mitem.php:73 ../../mod/item.php:179 ../../mod/item.php:187 +#: ../../mod/item.php:872 ../../mod/suggest.php:26 ../../mod/network.php:12 +#: ../../mod/bookmarks.php:46 ../../mod/channel.php:89 +#: ../../mod/channel.php:193 ../../mod/channel.php:236 +#: ../../mod/pdledit.php:21 ../../mod/sources.php:66 +#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 +#: ../../mod/blocks.php:29 ../../mod/blocks.php:44 +#: ../../mod/filestorage.php:10 ../../mod/filestorage.php:59 +#: ../../mod/filestorage.php:75 ../../mod/filestorage.php:98 +#: ../../mod/authtest.php:13 ../../mod/fsuggest.php:78 +#: ../../mod/connedit.php:221 ../../mod/viewsrc.php:12 +#: ../../mod/achievements.php:27 ../../mod/editpost.php:13 +#: ../../mod/settings.php:492 ../../mod/setup.php:203 ../../mod/events.php:140 +#: ../../mod/photos.php:68 ../../mod/photos.php:526 ../../mod/delegate.php:6 +#: ../../mod/layouts.php:27 ../../mod/layouts.php:39 +#: ../../mod/connections.php:169 ../../mod/page.php:30 ../../mod/page.php:80 +#: ../../mod/mood.php:119 ../../mod/chat.php:90 ../../mod/chat.php:95 +#: ../../mod/editblock.php:34 ../../mod/editwebpage.php:44 +#: ../../mod/editwebpage.php:83 ../../mod/profiles.php:152 +#: ../../mod/profiles.php:453 ../../mod/menu.php:44 ../../mod/mail.php:108 +#: ../../mod/appman.php:58 ../../mod/poke.php:128 +#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 +#: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/register.php:68 +#: ../../mod/manage.php:6 ../../mod/invite.php:13 ../../mod/invite.php:104 +#: ../../mod/common.php:35 ../../mod/regmod.php:18 ../../index.php:187 +#: ../../index.php:362 +msgid "Permission denied." +msgstr "" + +#: ../../include/items.php:4007 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." +msgstr "" + +#: ../../include/items.php:4022 +msgid "Collection is empty." +msgstr "" + +#: ../../include/items.php:4029 +#, php-format +msgid "Collection: %s" +msgstr "" + +#: ../../include/items.php:4040 +#, php-format +msgid "Connection: %s" +msgstr "" + +#: ../../include/items.php:4043 +msgid "Connection not found." +msgstr "" + +#: ../../include/dir_fns.php:36 +msgid "Sort Options" +msgstr "" + +#: ../../include/dir_fns.php:37 +msgid "Alphabetic" +msgstr "" + +#: ../../include/dir_fns.php:38 +msgid "Reverse Alphabetic" +msgstr "" + +#: ../../include/dir_fns.php:39 +msgid "Newest to Oldest" +msgstr "" + +#: ../../include/dir_fns.php:51 +msgid "Enable Safe Search" +msgstr "" + +#: ../../include/dir_fns.php:53 +msgid "Disable Safe Search" +msgstr "" + +#: ../../include/dir_fns.php:55 +msgid "Safe Mode" +msgstr "" + +#: ../../include/security.php:301 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "" + +#: ../../include/notify.php:23 +msgid "created a new post" +msgstr "" + +#: ../../include/notify.php:24 +#, php-format +msgid "commented on %s's post" +msgstr "" + +#: ../../include/enotify.php:41 +msgid "Red Matrix Notification" +msgstr "" + +#: ../../include/enotify.php:42 +msgid "redmatrix" +msgstr "" + +#: ../../include/enotify.php:44 +msgid "Thank You," +msgstr "" + +#: ../../include/enotify.php:46 +#, php-format +msgid "%s Administrator" +msgstr "" + +#: ../../include/enotify.php:81 +#, php-format +msgid "%s " +msgstr "" + +#: ../../include/enotify.php:85 +#, php-format +msgid "[Red:Notify] New mail received at %s" +msgstr "" + +#: ../../include/enotify.php:87 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "" + +#: ../../include/enotify.php:88 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "" + +#: ../../include/enotify.php:88 +msgid "a private message" +msgstr "" + +#: ../../include/enotify.php:89 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "" + +#: ../../include/enotify.php:144 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +msgstr "" + +#: ../../include/enotify.php:152 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "" + +#: ../../include/enotify.php:161 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "" + +#: ../../include/enotify.php:172 +#, php-format +msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" +msgstr "" + +#: ../../include/enotify.php:173 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." +msgstr "" + +#: ../../include/enotify.php:176 ../../include/enotify.php:191 +#: ../../include/enotify.php:217 ../../include/enotify.php:236 +#: ../../include/enotify.php:250 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "" + +#: ../../include/enotify.php:182 +#, php-format +msgid "[Red:Notify] %s posted to your profile wall" +msgstr "" + +#: ../../include/enotify.php:184 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "" + +#: ../../include/enotify.php:186 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "" + +#: ../../include/enotify.php:210 +#, php-format +msgid "[Red:Notify] %s tagged you" +msgstr "" + +#: ../../include/enotify.php:211 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "" + +#: ../../include/enotify.php:212 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgstr "" + +#: ../../include/enotify.php:225 +#, php-format +msgid "[Red:Notify] %1$s poked you" +msgstr "" + +#: ../../include/enotify.php:226 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "" + +#: ../../include/enotify.php:227 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +msgstr "" + +#: ../../include/enotify.php:243 +#, php-format +msgid "[Red:Notify] %s tagged your post" +msgstr "" + +#: ../../include/enotify.php:244 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "" + +#: ../../include/enotify.php:245 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "" + +#: ../../include/enotify.php:257 +msgid "[Red:Notify] Introduction received" +msgstr "" + +#: ../../include/enotify.php:258 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgstr "" + +#: ../../include/enotify.php:259 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "" + +#: ../../include/enotify.php:263 ../../include/enotify.php:282 +#, php-format +msgid "You may visit their profile at %s" +msgstr "" + +#: ../../include/enotify.php:265 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "" + +#: ../../include/enotify.php:272 +msgid "[Red:Notify] Friend suggestion received" +msgstr "" + +#: ../../include/enotify.php:273 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "" + +#: ../../include/enotify.php:274 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s." +msgstr "" + +#: ../../include/enotify.php:280 +msgid "Name:" +msgstr "" + +#: ../../include/enotify.php:281 +msgid "Photo:" +msgstr "" + +#: ../../include/enotify.php:284 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." msgstr "" #: ../../include/attach.php:224 ../../include/attach.php:278 @@ -472,339 +1715,388 @@ msgstr "" msgid "database storage failed." msgstr "" -#: ../../include/auth.php:79 -msgid "Logged out." +#: ../../include/page_widgets.php:6 +msgid "New Page" msgstr "" -#: ../../include/auth.php:198 -msgid "Failed authentication" +#: ../../include/page_widgets.php:39 ../../mod/webpages.php:122 +#: ../../mod/blocks.php:97 ../../mod/layouts.php:116 +msgid "View" msgstr "" -#: ../../include/auth.php:213 ../../mod/openid.php:188 -msgid "Login failed." +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:124 +msgid "Actions" msgstr "" -#: ../../include/bb2diaspora.php:433 ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:125 +msgid "Page Link" msgstr "" -#: ../../include/bb2diaspora.php:439 ../../include/event.php:20 -msgid "Starts:" +#: ../../include/page_widgets.php:43 ../../mod/webpages.php:126 +msgid "Title" msgstr "" -#: ../../include/bb2diaspora.php:447 ../../include/event.php:30 -msgid "Finishes:" +#: ../../include/page_widgets.php:44 ../../mod/webpages.php:127 +msgid "Created" msgstr "" -#: ../../include/bb2diaspora.php:455 ../../include/event.php:40 -#: ../../include/identity.php:726 ../../mod/directory.php:156 -#: ../../mod/dirprofile.php:105 ../../mod/events.php:474 -msgid "Location:" +#: ../../include/page_widgets.php:45 ../../mod/webpages.php:128 +msgid "Edited" msgstr "" -#: ../../include/bbcode.php:128 ../../include/bbcode.php:642 -#: ../../include/bbcode.php:645 ../../include/bbcode.php:650 -#: ../../include/bbcode.php:653 ../../include/bbcode.php:656 -#: ../../include/bbcode.php:659 ../../include/bbcode.php:664 -#: ../../include/bbcode.php:667 ../../include/bbcode.php:672 -#: ../../include/bbcode.php:675 ../../include/bbcode.php:678 -#: ../../include/bbcode.php:681 -msgid "Image/photo" +#: ../../include/photos.php:51 ../../include/photo/photo_driver.php:643 +#: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 +#: ../../mod/profile_photo.php:421 ../../mod/photos.php:91 +#: ../../mod/photos.php:655 ../../mod/photos.php:677 +msgid "Profile Photos" msgstr "" -#: ../../include/bbcode.php:163 ../../include/bbcode.php:692 -msgid "Encrypted content" -msgstr "" - -#: ../../include/bbcode.php:179 -msgid "QR code" -msgstr "" - -#: ../../include/bbcode.php:228 +#: ../../include/photos.php:89 #, php-format -msgid "%1$s wrote the following %2$s %3$s" +msgid "Image exceeds website size limit of %lu bytes" msgstr "" -#: ../../include/bbcode.php:230 -msgid "post" +#: ../../include/photos.php:96 +msgid "Image file is empty." msgstr "" -#: ../../include/bbcode.php:610 ../../include/bbcode.php:630 -msgid "$1 wrote:" +#: ../../include/photos.php:123 ../../mod/profile_photo.php:216 +msgid "Unable to process image" msgstr "" -#: ../../include/ItemObject.php:89 ../../include/conversation.php:639 -#: ../../mod/photos.php:846 -msgid "Private Message" +#: ../../include/photos.php:186 +msgid "Photo storage failed." msgstr "" -#: ../../include/ItemObject.php:114 ../../include/conversation.php:631 -msgid "Select" +#: ../../include/photos.php:315 ../../mod/photos.php:693 +#: ../../mod/photos.php:1190 +msgid "Upload New Photos" msgstr "" -#: ../../include/ItemObject.php:118 -msgid "save to folder" -msgstr "" - -#: ../../include/ItemObject.php:130 ../../include/ItemObject.php:142 -msgid "View all" -msgstr "" - -#: ../../include/ItemObject.php:134 -msgid "Like" -msgstr "" - -#: ../../include/ItemObject.php:134 ../../include/ItemObject.php:279 -#: ../../mod/profiles.php:302 -msgid "Likes" -msgstr "" - -#: ../../include/ItemObject.php:139 -msgid "Dislike" -msgstr "" - -#: ../../include/ItemObject.php:139 ../../include/ItemObject.php:280 -#: ../../mod/profiles.php:306 -msgid "Dislikes" -msgstr "" - -#: ../../include/ItemObject.php:167 -msgid "add star" -msgstr "" - -#: ../../include/ItemObject.php:168 -msgid "remove star" -msgstr "" - -#: ../../include/ItemObject.php:169 -msgid "toggle star status" -msgstr "" - -#: ../../include/ItemObject.php:173 -msgid "starred" -msgstr "" - -#: ../../include/ItemObject.php:182 ../../include/conversation.php:646 -msgid "Message is verified" -msgstr "" - -#: ../../include/ItemObject.php:190 -msgid "add tag" -msgstr "" - -#: ../../include/ItemObject.php:205 ../../mod/photos.php:971 -msgid "I like this (toggle)" -msgstr "" - -#: ../../include/ItemObject.php:205 ../../include/taxonomy.php:254 -msgid "like" -msgstr "" - -#: ../../include/ItemObject.php:206 ../../mod/photos.php:972 -msgid "I don't like this (toggle)" -msgstr "" - -#: ../../include/ItemObject.php:206 ../../include/taxonomy.php:255 -msgid "dislike" -msgstr "" - -#: ../../include/ItemObject.php:208 -msgid "Share this" -msgstr "" - -#: ../../include/ItemObject.php:208 -msgid "share" -msgstr "" - -#: ../../include/ItemObject.php:232 ../../include/ItemObject.php:233 +#: ../../include/dba/dba_driver.php:50 #, php-format -msgid "View %s's profile - %s" +msgid "Cannot locate DNS info for database server '%s'" msgstr "" -#: ../../include/ItemObject.php:234 -msgid "to" +#: ../../include/profile_selectors.php:6 +msgid "Male" msgstr "" -#: ../../include/ItemObject.php:235 -msgid "via" +#: ../../include/profile_selectors.php:6 +msgid "Female" msgstr "" -#: ../../include/ItemObject.php:236 -msgid "Wall-to-Wall" +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" msgstr "" -#: ../../include/ItemObject.php:237 -msgid "via Wall-To-Wall:" +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" msgstr "" -#: ../../include/ItemObject.php:247 ../../include/conversation.php:690 +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Males" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Females" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Gay" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "No Preference" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Virgin" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Deviant" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Fetish" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Oodles" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Single" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Lonely" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Available" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Dating" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Casual" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Engaged" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Married" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Partners" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Happy" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Not looking" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Swinger" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Separated" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Unstable" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Divorced" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Widowed" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Don't care" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Ask me" +msgstr "" + +#: ../../include/plugin.php:486 ../../include/plugin.php:488 +msgid "Click here to upgrade." +msgstr "" + +#: ../../include/plugin.php:494 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: ../../include/plugin.php:499 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: ../../include/acl_selectors.php:238 +msgid "Visible to everybody" +msgstr "" + +#: ../../include/acl_selectors.php:239 +msgid "Show" +msgstr "" + +#: ../../include/acl_selectors.php:240 +msgid "Don't show" +msgstr "" + +#: ../../include/acl_selectors.php:246 ../../mod/filestorage.php:126 +#: ../../mod/photos.php:606 ../../mod/photos.php:949 ../../mod/chat.php:209 +msgid "Permissions" +msgstr "" + +#: ../../include/account.php:23 +msgid "Not a valid email address" +msgstr "" + +#: ../../include/account.php:25 +msgid "Your email domain is not among those allowed on this site" +msgstr "" + +#: ../../include/account.php:31 +msgid "Your email address is already registered at this site." +msgstr "" + +#: ../../include/account.php:64 +msgid "An invitation is required." +msgstr "" + +#: ../../include/account.php:68 +msgid "Invitation could not be verified." +msgstr "" + +#: ../../include/account.php:119 +msgid "Please enter the required information." +msgstr "" + +#: ../../include/account.php:187 +msgid "Failed to store account information." +msgstr "" + +#: ../../include/account.php:273 #, php-format -msgid " from %s" +msgid "Registration request at %s" msgstr "" -#: ../../include/ItemObject.php:250 ../../include/conversation.php:693 +#: ../../include/account.php:275 ../../include/account.php:302 +#: ../../include/account.php:359 +msgid "Administrator" +msgstr "" + +#: ../../include/account.php:297 +msgid "your registration password" +msgstr "" + +#: ../../include/account.php:300 ../../include/account.php:357 #, php-format -msgid "last edited: %s" +msgid "Registration details for %s" msgstr "" -#: ../../include/ItemObject.php:251 ../../include/conversation.php:694 +#: ../../include/account.php:366 +msgid "Account approved." +msgstr "" + +#: ../../include/account.php:400 #, php-format -msgid "Expires: %s" +msgid "Registration revoked for %s" msgstr "" -#: ../../include/ItemObject.php:271 -msgid "Bookmark Links" +#: ../../include/Contact.php:123 +msgid "New window" msgstr "" -#: ../../include/ItemObject.php:290 ../../include/conversation.php:711 -#: ../../include/conversation.php:1127 ../../mod/editblock.php:120 -#: ../../mod/editlayout.php:115 ../../mod/editpost.php:121 -#: ../../mod/editwebpage.php:152 ../../mod/mail.php:222 ../../mod/mail.php:336 -#: ../../mod/photos.php:974 -msgid "Please wait" -msgstr "" - -#: ../../include/ItemObject.php:311 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/ItemObject.php:312 ../../include/contact_widgets.php:130 -#: ../../include/js_strings.php:7 -msgid "show more" -msgstr "" - -#: ../../include/ItemObject.php:576 ../../mod/photos.php:990 -#: ../../mod/photos.php:1077 -msgid "This is you" -msgstr "" - -#: ../../include/ItemObject.php:578 ../../include/js_strings.php:6 -#: ../../mod/photos.php:992 ../../mod/photos.php:1079 -msgid "Comment" -msgstr "" - -#: ../../include/ItemObject.php:579 ../../mod/mood.php:142 -#: ../../mod/admin.php:441 ../../mod/admin.php:750 ../../mod/admin.php:884 -#: ../../mod/admin.php:1017 ../../mod/admin.php:1216 ../../mod/admin.php:1303 -#: ../../mod/poke.php:166 ../../mod/profiles.php:506 ../../mod/chat.php:177 -#: ../../mod/chat.php:211 ../../mod/connect.php:92 ../../mod/connedit.php:476 -#: ../../mod/settings.php:515 ../../mod/settings.php:627 -#: ../../mod/settings.php:655 ../../mod/settings.php:679 -#: ../../mod/settings.php:751 ../../mod/settings.php:929 -#: ../../mod/setup.php:307 ../../mod/setup.php:350 ../../mod/pdledit.php:58 -#: ../../mod/events.php:481 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/filestorage.php:135 -#: ../../mod/fsuggest.php:108 ../../mod/group.php:81 ../../mod/thing.php:283 -#: ../../mod/thing.php:326 ../../mod/import.php:387 ../../mod/invite.php:156 -#: ../../mod/mail.php:223 ../../mod/mail.php:335 ../../mod/photos.php:565 -#: ../../mod/photos.php:670 ../../mod/photos.php:953 ../../mod/photos.php:993 -#: ../../mod/photos.php:1080 ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/blogga/php/config.php:67 -#: ../../view/theme/blogga/view/theme/blog/config.php:67 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "" - -#: ../../include/ItemObject.php:580 -msgid "Bold" -msgstr "" - -#: ../../include/ItemObject.php:581 -msgid "Italic" -msgstr "" - -#: ../../include/ItemObject.php:582 -msgid "Underline" -msgstr "" - -#: ../../include/ItemObject.php:583 -msgid "Quote" -msgstr "" - -#: ../../include/ItemObject.php:584 -msgid "Code" -msgstr "" - -#: ../../include/ItemObject.php:585 -msgid "Image" -msgstr "" - -#: ../../include/ItemObject.php:586 -msgid "Link" -msgstr "" - -#: ../../include/ItemObject.php:587 -msgid "Video" -msgstr "" - -#: ../../include/ItemObject.php:591 ../../include/conversation.php:1153 -#: ../../mod/editpost.php:148 ../../mod/mail.php:228 ../../mod/mail.php:341 -msgid "Encrypt text" -msgstr "" - -#: ../../include/bookmarks.php:42 -#, php-format -msgid "%1$s's bookmarks" -msgstr "" - -#: ../../include/chat.php:10 -msgid "Missing room name" -msgstr "" - -#: ../../include/chat.php:19 -msgid "Duplicate room name" -msgstr "" - -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." -msgstr "" - -#: ../../include/chat.php:105 -msgid "Room not found." -msgstr "" - -#: ../../include/chat.php:126 -msgid "Room is full" -msgstr "" - -#: ../../include/taxonomy.php:210 -msgid "Tags" -msgstr "" - -#: ../../include/taxonomy.php:227 -msgid "Keywords" -msgstr "" - -#: ../../include/taxonomy.php:252 -msgid "have" -msgstr "" - -#: ../../include/taxonomy.php:252 -msgid "has" -msgstr "" - -#: ../../include/taxonomy.php:253 -msgid "want" -msgstr "" - -#: ../../include/taxonomy.php:253 -msgid "wants" -msgstr "" - -#: ../../include/taxonomy.php:254 -msgid "likes" -msgstr "" - -#: ../../include/taxonomy.php:255 -msgid "dislikes" -msgstr "" - -#: ../../include/comanche.php:35 ../../view/theme/apw/php/config.php:185 -#: ../../view/theme/redbasic/php/config.php:84 -msgid "Default" +#: ../../include/Contact.php:124 +msgid "Open the selected location in a different window or browser tab" msgstr "" #: ../../include/contact_selectors.php:30 @@ -896,6 +2188,37 @@ msgstr "" msgid "MySpace" msgstr "" +#: ../../include/apps.php:109 ../../include/identity.php:942 +#: ../../include/identity.php:1031 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "" + +#: ../../include/apps.php:151 ../../mod/settings.php:79 +#: ../../mod/settings.php:541 +msgid "Update" +msgstr "" + +#: ../../include/apps.php:151 +msgid "Install" +msgstr "" + +#: ../../include/apps.php:231 ../../include/apps.php:279 +#: ../../mod/connedit.php:434 +msgid "Unknown" +msgstr "" + +#: ../../include/auth.php:79 +msgid "Logged out." +msgstr "" + +#: ../../include/auth.php:198 +msgid "Failed authentication" +msgstr "" + +#: ../../include/auth.php:213 ../../mod/openid.php:188 +msgid "Login failed." +msgstr "" + #: ../../include/text.php:320 msgid "prev" msgstr "" @@ -935,25 +2258,10 @@ msgstr[1] "" msgid "View Connections" msgstr "" -#: ../../include/text.php:813 ../../include/text.php:827 -#: ../../include/nav.php:144 ../../mod/search.php:29 -msgid "Search" -msgstr "" - -#: ../../include/text.php:815 ../../include/text.php:829 -#: ../../include/widgets.php:185 ../../mod/rbmark.php:28 -#: ../../mod/rbmark.php:98 ../../mod/filer.php:50 -msgid "Save" -msgstr "" - #: ../../include/text.php:895 msgid "poke" msgstr "" -#: ../../include/text.php:895 ../../include/conversation.php:240 -msgid "poked" -msgstr "" - #: ../../include/text.php:896 msgid "ping" msgstr "" @@ -1194,28 +2502,6 @@ msgstr "" msgid "Select an alternate language" msgstr "" -#: ../../include/text.php:1705 ../../include/conversation.php:117 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:45 ../../mod/like.php:111 -msgid "photo" -msgstr "" - -#: ../../include/text.php:1708 ../../include/conversation.php:120 -#: ../../mod/tagger.php:49 -msgid "event" -msgstr "" - -#: ../../include/text.php:1711 ../../include/conversation.php:145 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:53 ../../mod/like.php:111 -msgid "status" -msgstr "" - -#: ../../include/text.php:1713 ../../include/conversation.php:147 -#: ../../mod/tagger.php:55 -msgid "comment" -msgstr "" - #: ../../include/text.php:1718 msgid "activity" msgstr "" @@ -1240,780 +2526,24 @@ msgstr "" msgid "Pages" msgstr "" -#: ../../include/contact_widgets.php:14 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:445 -msgid "Advanced" -msgstr "" - -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "" - -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "" - -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "" - -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "" - -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:391 -#: ../../mod/directory.php:206 ../../mod/directory.php:211 -msgid "Find" -msgstr "" - -#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 -msgid "Channel Suggestions" -msgstr "" - -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "" - -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "" - -#: ../../include/contact_widgets.php:32 -msgid "Exammple: name=fred and country=iceland" -msgstr "" - -#: ../../include/contact_widgets.php:33 -msgid "Advanced Find" -msgstr "" - -#: ../../include/contact_widgets.php:58 ../../include/features.php:66 -#: ../../include/widgets.php:295 -msgid "Saved Folders" -msgstr "" - -#: ../../include/contact_widgets.php:61 ../../include/contact_widgets.php:95 -#: ../../include/widgets.php:298 -msgid "Everything" -msgstr "" - -#: ../../include/contact_widgets.php:92 ../../include/widgets.php:29 -msgid "Categories" -msgstr "" - -#: ../../include/contact_widgets.php:125 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:123 -msgid "channel" -msgstr "" - -#: ../../include/conversation.php:161 ../../mod/like.php:142 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "" - -#: ../../include/conversation.php:164 ../../mod/like.php:144 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "" - -#: ../../include/conversation.php:201 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "" - -#: ../../include/conversation.php:236 -#, php-format -msgid "%1$s poked %2$s" -msgstr "" - -#: ../../include/conversation.php:258 ../../mod/mood.php:63 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "" - -#: ../../include/conversation.php:666 -#, php-format -msgid "View %s's profile @ %s" -msgstr "" - -#: ../../include/conversation.php:680 -msgid "Categories:" -msgstr "" - -#: ../../include/conversation.php:681 -msgid "Filed under:" -msgstr "" - -#: ../../include/conversation.php:709 -msgid "View in context" -msgstr "" - -#: ../../include/conversation.php:838 -msgid "remove" -msgstr "" - -#: ../../include/conversation.php:842 -msgid "Loading..." -msgstr "" - -#: ../../include/conversation.php:843 -msgid "Delete Selected Items" -msgstr "" - -#: ../../include/conversation.php:934 -msgid "View Source" -msgstr "" - -#: ../../include/conversation.php:935 -msgid "Follow Thread" -msgstr "" - -#: ../../include/conversation.php:936 -msgid "View Status" -msgstr "" - -#: ../../include/conversation.php:937 ../../include/nav.php:81 -#: ../../mod/connedit.php:351 ../../mod/connedit.php:465 -msgid "View Profile" -msgstr "" - -#: ../../include/conversation.php:938 -msgid "View Photos" -msgstr "" - -#: ../../include/conversation.php:939 -msgid "Matrix Activity" -msgstr "" - -#: ../../include/conversation.php:940 -msgid "Edit Contact" -msgstr "" - -#: ../../include/conversation.php:941 -msgid "Send PM" -msgstr "" - -#: ../../include/conversation.php:942 -msgid "Poke" -msgstr "" - -#: ../../include/conversation.php:998 -#, php-format -msgid "%s likes this." -msgstr "" - -#: ../../include/conversation.php:998 -#, php-format -msgid "%s doesn't like this." -msgstr "" - -#: ../../include/conversation.php:1002 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1004 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1010 -msgid "and" -msgstr "" - -#: ../../include/conversation.php:1013 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1014 -#, php-format -msgid "%s like this." -msgstr "" - -#: ../../include/conversation.php:1014 -#, php-format -msgid "%s don't like this." -msgstr "" - -#: ../../include/conversation.php:1071 -msgid "Visible to everybody" -msgstr "" - -#: ../../include/conversation.php:1072 ../../mod/mail.php:171 -#: ../../mod/mail.php:269 -msgid "Please enter a link URL:" -msgstr "" - -#: ../../include/conversation.php:1073 -msgid "Please enter a video link/URL:" -msgstr "" - -#: ../../include/conversation.php:1074 -msgid "Please enter an audio link/URL:" -msgstr "" - -#: ../../include/conversation.php:1075 -msgid "Tag term:" -msgstr "" - -#: ../../include/conversation.php:1076 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "" - -#: ../../include/conversation.php:1077 -msgid "Where are you right now?" -msgstr "" - -#: ../../include/conversation.php:1078 ../../mod/editpost.php:52 -#: ../../mod/mail.php:172 ../../mod/mail.php:270 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "" - -#: ../../include/conversation.php:1102 ../../mod/layouts.php:113 -#: ../../mod/photos.php:973 -msgid "Share" -msgstr "" - -#: ../../include/conversation.php:1104 ../../mod/editwebpage.php:139 -msgid "Page link title" -msgstr "" - -#: ../../include/conversation.php:1107 -msgid "Post as" -msgstr "" - -#: ../../include/conversation.php:1108 ../../mod/editblock.php:112 -#: ../../mod/editlayout.php:107 ../../mod/editpost.php:113 -#: ../../mod/editwebpage.php:144 ../../mod/mail.php:219 ../../mod/mail.php:332 -msgid "Upload photo" -msgstr "" - -#: ../../include/conversation.php:1109 -msgid "upload photo" -msgstr "" - -#: ../../include/conversation.php:1110 ../../mod/editblock.php:113 -#: ../../mod/editlayout.php:108 ../../mod/editpost.php:114 -#: ../../mod/editwebpage.php:145 ../../mod/mail.php:220 ../../mod/mail.php:333 -msgid "Attach file" -msgstr "" - -#: ../../include/conversation.php:1111 -msgid "attach file" -msgstr "" - -#: ../../include/conversation.php:1112 ../../mod/editblock.php:114 -#: ../../mod/editlayout.php:109 ../../mod/editpost.php:115 -#: ../../mod/editwebpage.php:146 ../../mod/mail.php:221 ../../mod/mail.php:334 -msgid "Insert web link" -msgstr "" - -#: ../../include/conversation.php:1113 -msgid "web link" -msgstr "" - -#: ../../include/conversation.php:1114 -msgid "Insert video link" -msgstr "" - -#: ../../include/conversation.php:1115 -msgid "video link" -msgstr "" - -#: ../../include/conversation.php:1116 -msgid "Insert audio link" -msgstr "" - -#: ../../include/conversation.php:1117 -msgid "audio link" -msgstr "" - -#: ../../include/conversation.php:1118 ../../mod/editblock.php:118 -#: ../../mod/editlayout.php:113 ../../mod/editpost.php:119 -#: ../../mod/editwebpage.php:150 -msgid "Set your location" -msgstr "" - -#: ../../include/conversation.php:1119 -msgid "set location" -msgstr "" - -#: ../../include/conversation.php:1120 ../../mod/editblock.php:119 -#: ../../mod/editlayout.php:114 ../../mod/editpost.php:120 -#: ../../mod/editwebpage.php:151 -msgid "Clear browser location" -msgstr "" - -#: ../../include/conversation.php:1121 -msgid "clear location" -msgstr "" - -#: ../../include/conversation.php:1123 ../../mod/editblock.php:132 -#: ../../mod/editlayout.php:126 ../../mod/editpost.php:132 -#: ../../mod/editwebpage.php:167 -msgid "Set title" -msgstr "" - -#: ../../include/conversation.php:1126 ../../mod/editblock.php:135 -#: ../../mod/editlayout.php:129 ../../mod/editpost.php:134 -#: ../../mod/editwebpage.php:169 -msgid "Categories (comma-separated list)" -msgstr "" - -#: ../../include/conversation.php:1128 ../../mod/editblock.php:121 -#: ../../mod/editlayout.php:116 ../../mod/editpost.php:122 -#: ../../mod/editwebpage.php:153 -msgid "Permission settings" -msgstr "" - -#: ../../include/conversation.php:1129 -msgid "permissions" -msgstr "" - -#: ../../include/conversation.php:1136 ../../mod/editblock.php:129 -#: ../../mod/editlayout.php:123 ../../mod/editpost.php:129 -#: ../../mod/editwebpage.php:162 -msgid "Public post" -msgstr "" - -#: ../../include/conversation.php:1138 ../../mod/editblock.php:136 -#: ../../mod/editlayout.php:130 ../../mod/editpost.php:135 -#: ../../mod/editwebpage.php:170 -msgid "Example: bob@example.com, mary@example.com" -msgstr "" - -#: ../../include/conversation.php:1151 ../../mod/editblock.php:146 -#: ../../mod/editlayout.php:140 ../../mod/editpost.php:146 -#: ../../mod/editwebpage.php:180 ../../mod/mail.php:226 ../../mod/mail.php:339 -msgid "Set expiration date" -msgstr "" - -#: ../../include/conversation.php:1155 ../../mod/editpost.php:150 -msgid "OK" -msgstr "" - -#: ../../include/conversation.php:1156 ../../mod/settings.php:516 -#: ../../mod/settings.php:542 ../../mod/editpost.php:151 -#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117 ../../mod/tagrm.php:11 -#: ../../mod/tagrm.php:94 -msgid "Cancel" -msgstr "" - -#: ../../include/conversation.php:1392 -msgid "Discover" -msgstr "" - -#: ../../include/conversation.php:1395 -msgid "Imported public streams" -msgstr "" - -#: ../../include/conversation.php:1400 -msgid "Commented Order" -msgstr "" - -#: ../../include/conversation.php:1403 -msgid "Sort by Comment Date" -msgstr "" - -#: ../../include/conversation.php:1407 -msgid "Posted Order" -msgstr "" - -#: ../../include/conversation.php:1410 -msgid "Sort by Post Date" -msgstr "" - -#: ../../include/conversation.php:1415 ../../include/widgets.php:81 -msgid "Personal" -msgstr "" - -#: ../../include/conversation.php:1418 -msgid "Posts that mention or involve you" -msgstr "" - -#: ../../include/conversation.php:1424 ../../mod/connections.php:211 -#: ../../mod/connections.php:224 ../../mod/menu.php:61 -msgid "New" -msgstr "" - -#: ../../include/conversation.php:1427 -msgid "Activity Stream - by date" -msgstr "" - -#: ../../include/conversation.php:1433 -msgid "Starred" -msgstr "" - -#: ../../include/conversation.php:1436 -msgid "Favourite Posts" -msgstr "" - -#: ../../include/conversation.php:1443 -msgid "Spam" -msgstr "" - -#: ../../include/conversation.php:1446 -msgid "Posts flagged as SPAM" -msgstr "" - -#: ../../include/conversation.php:1480 ../../mod/admin.php:890 -msgid "Channel" -msgstr "" - -#: ../../include/conversation.php:1483 -msgid "Status Messages and Posts" -msgstr "" - -#: ../../include/conversation.php:1492 -msgid "About" -msgstr "" - -#: ../../include/conversation.php:1495 -msgid "Profile Details" -msgstr "" - -#: ../../include/conversation.php:1510 ../../include/nav.php:85 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "" - -#: ../../include/conversation.php:1513 -msgid "Files and Storage" -msgstr "" - -#: ../../include/conversation.php:1522 ../../include/conversation.php:1525 -msgid "Chatrooms" -msgstr "" - -#: ../../include/conversation.php:1535 -msgid "Events and Calendar" -msgstr "" - -#: ../../include/conversation.php:1540 ../../include/nav.php:88 -msgid "Bookmarks" -msgstr "" - -#: ../../include/conversation.php:1543 -msgid "Saved Bookmarks" -msgstr "" - -#: ../../include/conversation.php:1551 ../../include/nav.php:90 -#: ../../mod/webpages.php:79 -msgid "Webpages" -msgstr "" - -#: ../../include/conversation.php:1554 -msgid "Manage Webpages" -msgstr "" - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "" - -#: ../../include/datetime.php:152 ../../include/datetime.php:284 -msgid "year" -msgstr "" - -#: ../../include/datetime.php:157 ../../include/datetime.php:285 -msgid "month" -msgstr "" - -#: ../../include/datetime.php:162 ../../include/datetime.php:287 -msgid "day" -msgstr "" - -#: ../../include/datetime.php:275 -msgid "never" -msgstr "" - -#: ../../include/datetime.php:281 -msgid "less than a second ago" -msgstr "" - -#: ../../include/datetime.php:284 -msgid "years" -msgstr "" - -#: ../../include/datetime.php:285 -msgid "months" -msgstr "" - -#: ../../include/datetime.php:286 -msgid "week" -msgstr "" - -#: ../../include/datetime.php:286 -msgid "weeks" -msgstr "" - -#: ../../include/datetime.php:287 -msgid "days" -msgstr "" - -#: ../../include/datetime.php:288 -msgid "hour" -msgstr "" - -#: ../../include/datetime.php:288 -msgid "hours" -msgstr "" - -#: ../../include/datetime.php:289 -msgid "minute" -msgstr "" - -#: ../../include/datetime.php:289 -msgid "minutes" -msgstr "" - -#: ../../include/datetime.php:290 -msgid "second" -msgstr "" - -#: ../../include/datetime.php:290 -msgid "seconds" -msgstr "" - -#: ../../include/datetime.php:299 -#, php-format -msgid "%1$d %2$s ago" -msgstr "" - -#: ../../include/dir_fns.php:36 -msgid "Sort Options" -msgstr "" - -#: ../../include/dir_fns.php:37 -msgid "Alphabetic" -msgstr "" - -#: ../../include/dir_fns.php:38 -msgid "Reverse Alphabetic" -msgstr "" - -#: ../../include/dir_fns.php:39 -msgid "Newest to Oldest" -msgstr "" - -#: ../../include/dir_fns.php:51 -msgid "Enable Safe Search" -msgstr "" - -#: ../../include/dir_fns.php:53 -msgid "Disable Safe Search" -msgstr "" - -#: ../../include/dir_fns.php:55 -msgid "Safe Mode" -msgstr "" - -#: ../../include/enotify.php:41 -msgid "Red Matrix Notification" -msgstr "" - -#: ../../include/enotify.php:42 -msgid "redmatrix" -msgstr "" - -#: ../../include/enotify.php:44 -msgid "Thank You," -msgstr "" - -#: ../../include/enotify.php:46 -#, php-format -msgid "%s Administrator" -msgstr "" - -#: ../../include/enotify.php:81 -#, php-format -msgid "%s " -msgstr "" - -#: ../../include/enotify.php:85 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "" - -#: ../../include/enotify.php:87 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "" - -#: ../../include/enotify.php:88 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "" - -#: ../../include/enotify.php:88 -msgid "a private message" -msgstr "" - -#: ../../include/enotify.php:89 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "" - -#: ../../include/enotify.php:144 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "" - -#: ../../include/enotify.php:152 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "" - -#: ../../include/enotify.php:161 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "" - -#: ../../include/enotify.php:172 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "" - -#: ../../include/enotify.php:173 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "" - -#: ../../include/enotify.php:176 ../../include/enotify.php:191 -#: ../../include/enotify.php:217 ../../include/enotify.php:236 -#: ../../include/enotify.php:250 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "" - -#: ../../include/enotify.php:182 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "" - -#: ../../include/enotify.php:184 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "" - -#: ../../include/enotify.php:186 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "" - -#: ../../include/enotify.php:210 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "" - -#: ../../include/enotify.php:211 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "" - -#: ../../include/enotify.php:212 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "" - -#: ../../include/enotify.php:225 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "" - -#: ../../include/enotify.php:226 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "" - -#: ../../include/enotify.php:227 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "" - -#: ../../include/enotify.php:243 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "" - -#: ../../include/enotify.php:244 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "" - -#: ../../include/enotify.php:245 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "" - -#: ../../include/enotify.php:257 -msgid "[Red:Notify] Introduction received" -msgstr "" - -#: ../../include/enotify.php:258 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "" - -#: ../../include/enotify.php:259 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "" - -#: ../../include/enotify.php:263 ../../include/enotify.php:282 -#, php-format -msgid "You may visit their profile at %s" -msgstr "" - -#: ../../include/enotify.php:265 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "" - -#: ../../include/enotify.php:272 -msgid "[Red:Notify] Friend suggestion received" -msgstr "" - -#: ../../include/enotify.php:273 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +#: ../../include/chat.php:10 +msgid "Missing room name" msgstr "" -#: ../../include/enotify.php:274 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s." +#: ../../include/chat.php:19 +msgid "Duplicate room name" msgstr "" -#: ../../include/enotify.php:280 -msgid "Name:" +#: ../../include/chat.php:68 ../../include/chat.php:76 +msgid "Invalid room specifier." msgstr "" -#: ../../include/enotify.php:281 -msgid "Photo:" +#: ../../include/chat.php:105 +msgid "Room not found." msgstr "" -#: ../../include/enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." +#: ../../include/chat.php:126 +msgid "Room is full" msgstr "" #: ../../include/features.php:23 @@ -2100,11 +2630,6 @@ msgstr "" msgid "Allow previewing posts and comments before publishing them" msgstr "" -#: ../../include/features.php:43 ../../include/widgets.php:502 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "" - #: ../../include/features.php:43 msgid "Automatically import channel content from other channels or feeds" msgstr "" @@ -2138,10 +2663,6 @@ msgstr "" msgid "Enable widget to display Network posts only from selected collections" msgstr "" -#: ../../include/features.php:52 ../../include/widgets.php:264 -msgid "Saved Searches" -msgstr "" - #: ../../include/features.php:52 msgid "Save search terms for re-use" msgstr "" @@ -2234,71 +2755,229 @@ msgstr "" msgid "Provide a personal tag cloud on your channel page" msgstr "" -#: ../../include/follow.php:23 -msgid "Channel is blocked on this site." +#: ../../include/permissions.php:13 +msgid "Can view my \"public\" stream and posts" msgstr "" -#: ../../include/follow.php:28 -msgid "Channel location missing." +#: ../../include/permissions.php:14 +msgid "Can view my \"public\" channel profile" msgstr "" -#: ../../include/follow.php:54 -msgid "Response from remote channel was incomplete." +#: ../../include/permissions.php:15 +msgid "Can view my \"public\" photo albums" msgstr "" -#: ../../include/follow.php:85 -msgid "Channel was deleted and no longer exists." +#: ../../include/permissions.php:16 +msgid "Can view my \"public\" address book" msgstr "" -#: ../../include/follow.php:132 -msgid "Channel discovery failed." +#: ../../include/permissions.php:17 +msgid "Can view my \"public\" file storage" msgstr "" -#: ../../include/follow.php:149 -msgid "local account not found." +#: ../../include/permissions.php:18 +msgid "Can view my \"public\" pages" msgstr "" -#: ../../include/follow.php:158 -msgid "Cannot connect to yourself." +#: ../../include/permissions.php:21 +msgid "Can send me their channel stream and posts" msgstr "" -#: ../../include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." +#: ../../include/permissions.php:22 +msgid "Can post on my channel page (\"wall\")" msgstr "" -#: ../../include/group.php:223 -msgid "Default privacy group for new contacts" +#: ../../include/permissions.php:23 +msgid "Can comment on my posts" msgstr "" -#: ../../include/group.php:242 ../../mod/admin.php:762 -msgid "All Channels" +#: ../../include/permissions.php:24 +msgid "Can send me private mail messages" msgstr "" -#: ../../include/group.php:264 -msgid "edit" +#: ../../include/permissions.php:25 +msgid "Can post photos to my photo albums" msgstr "" -#: ../../include/group.php:285 -msgid "Collections" +#: ../../include/permissions.php:26 +msgid "Can forward to all my channel contacts via post @mentions" msgstr "" -#: ../../include/group.php:286 -msgid "Edit collection" +#: ../../include/permissions.php:26 +msgid "Advanced - useful for creating group forum channels" msgstr "" -#: ../../include/group.php:287 -msgid "Create a new collection" +#: ../../include/permissions.php:27 +msgid "Can chat with me (when available)" msgstr "" -#: ../../include/group.php:288 -msgid "Channels not in any collection" +#: ../../include/permissions.php:28 +msgid "Can write to my \"public\" file storage" msgstr "" -#: ../../include/group.php:290 ../../include/widgets.php:265 -msgid "add" +#: ../../include/permissions.php:29 +msgid "Can edit my \"public\" pages" +msgstr "" + +#: ../../include/permissions.php:31 +msgid "Can source my \"public\" posts in derived channels" +msgstr "" + +#: ../../include/permissions.php:31 +msgid "Somewhat advanced - very useful in open communities" +msgstr "" + +#: ../../include/permissions.php:33 +msgid "Can administer my channel resources" +msgstr "" + +#: ../../include/permissions.php:33 +msgid "Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "" + +#: ../../include/zot.php:587 +msgid "Invalid data packet" +msgstr "" + +#: ../../include/zot.php:597 +msgid "Unable to verify channel signature" +msgstr "" + +#: ../../include/zot.php:794 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "" + +#: ../../include/contact_widgets.php:14 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:445 +msgid "Advanced" +msgstr "" + +#: ../../include/contact_widgets.php:22 +msgid "Find Channels" +msgstr "" + +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" +msgstr "" + +#: ../../include/contact_widgets.php:24 +msgid "Connect/Follow" +msgstr "" + +#: ../../include/contact_widgets.php:25 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "" + +#: ../../include/contact_widgets.php:26 ../../mod/directory.php:206 +#: ../../mod/directory.php:211 ../../mod/connections.php:391 +msgid "Find" +msgstr "" + +#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 +msgid "Channel Suggestions" +msgstr "" + +#: ../../include/contact_widgets.php:29 +msgid "Random Profile" +msgstr "" + +#: ../../include/contact_widgets.php:30 +msgid "Invite Friends" +msgstr "" + +#: ../../include/contact_widgets.php:32 +msgid "Exammple: name=fred and country=iceland" +msgstr "" + +#: ../../include/contact_widgets.php:33 +msgid "Advanced Find" +msgstr "" + +#: ../../include/contact_widgets.php:125 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "" + +#: ../../include/datetime.php:152 ../../include/datetime.php:284 +msgid "year" +msgstr "" + +#: ../../include/datetime.php:157 ../../include/datetime.php:285 +msgid "month" +msgstr "" + +#: ../../include/datetime.php:162 ../../include/datetime.php:287 +msgid "day" +msgstr "" + +#: ../../include/datetime.php:275 +msgid "never" +msgstr "" + +#: ../../include/datetime.php:281 +msgid "less than a second ago" +msgstr "" + +#: ../../include/datetime.php:284 +msgid "years" +msgstr "" + +#: ../../include/datetime.php:285 +msgid "months" +msgstr "" + +#: ../../include/datetime.php:286 +msgid "week" +msgstr "" + +#: ../../include/datetime.php:286 +msgid "weeks" +msgstr "" + +#: ../../include/datetime.php:287 +msgid "days" +msgstr "" + +#: ../../include/datetime.php:288 +msgid "hour" +msgstr "" + +#: ../../include/datetime.php:288 +msgid "hours" +msgstr "" + +#: ../../include/datetime.php:289 +msgid "minute" +msgstr "" + +#: ../../include/datetime.php:289 +msgid "minutes" +msgstr "" + +#: ../../include/datetime.php:290 +msgid "second" +msgstr "" + +#: ../../include/datetime.php:290 +msgid "seconds" +msgstr "" + +#: ../../include/datetime.php:299 +#, php-format +msgid "%1$d %2$s ago" msgstr "" #: ../../include/identity.php:30 ../../mod/item.php:1244 @@ -2338,19 +3017,14 @@ msgstr "" msgid "Default Profile" msgstr "" -#: ../../include/identity.php:342 ../../include/profile_selectors.php:42 -#: ../../include/widgets.php:399 ../../mod/connedit.php:431 -msgid "Friends" -msgstr "" - #: ../../include/identity.php:509 msgid "Requested channel is not available." msgstr "" -#: ../../include/identity.php:557 ../../mod/achievements.php:8 -#: ../../mod/profile.php:16 ../../mod/blocks.php:10 ../../mod/connect.php:13 -#: ../../mod/filestorage.php:40 ../../mod/layouts.php:8 -#: ../../mod/webpages.php:8 +#: ../../include/identity.php:557 ../../mod/webpages.php:8 +#: ../../mod/connect.php:13 ../../mod/blocks.php:10 +#: ../../mod/filestorage.php:40 ../../mod/achievements.php:8 +#: ../../mod/layouts.php:8 ../../mod/profile.php:16 msgid "Requested profile is not available." msgstr "" @@ -2536,45 +3210,6 @@ msgstr "" msgid "School/education:" msgstr "" -#: ../../include/items.php:306 ../../mod/profperm.php:23 -#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:63 -#: ../../index.php:361 -msgid "Permission denied" -msgstr "" - -#: ../../include/items.php:830 -msgid "(Unknown)" -msgstr "" - -#: ../../include/items.php:3583 ../../mod/admin.php:159 -#: ../../mod/admin.php:921 ../../mod/admin.php:1124 ../../mod/display.php:32 -#: ../../mod/filestorage.php:18 ../../mod/home.php:63 ../../mod/thing.php:78 -#: ../../mod/viewsrc.php:18 -msgid "Item not found." -msgstr "" - -#: ../../include/items.php:4007 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "" - -#: ../../include/items.php:4022 -msgid "Collection is empty." -msgstr "" - -#: ../../include/items.php:4029 -#, php-format -msgid "Collection: %s" -msgstr "" - -#: ../../include/items.php:4040 -#, php-format -msgid "Connection: %s" -msgstr "" - -#: ../../include/items.php:4043 -msgid "Connection not found." -msgstr "" - #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "" @@ -2692,643 +3327,409 @@ msgstr "" msgid "timeago.numbers" msgstr "" -#: ../../include/message.php:18 -msgid "No recipient provided." +#: ../../mod/home.php:50 ../../mod/block.php:39 ../../mod/chanview.php:77 +#: ../../mod/page.php:47 ../../mod/wall_upload.php:28 +msgid "Channel not found." msgstr "" -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "" - -#: ../../include/message.php:42 -msgid "Unable to determine sender." -msgstr "" - -#: ../../include/message.php:143 -msgid "Stored post could not be verified." -msgstr "" - -#: ../../include/nav.php:77 ../../include/nav.php:96 ../../boot.php:1450 -msgid "Logout" -msgstr "" - -#: ../../include/nav.php:77 ../../include/nav.php:96 -msgid "End this session" -msgstr "" - -#: ../../include/nav.php:80 ../../include/nav.php:130 -msgid "Home" -msgstr "" - -#: ../../include/nav.php:80 -msgid "Your posts and conversations" -msgstr "" - -#: ../../include/nav.php:81 -msgid "Your profile page" -msgstr "" - -#: ../../include/nav.php:83 -msgid "Edit Profiles" -msgstr "" - -#: ../../include/nav.php:83 -msgid "Manage/Edit profiles" -msgstr "" - -#: ../../include/nav.php:84 -msgid "Your photos" -msgstr "" - -#: ../../include/nav.php:85 -msgid "Your files" -msgstr "" - -#: ../../include/nav.php:86 -msgid "Chat" -msgstr "" - -#: ../../include/nav.php:86 -msgid "Your chatrooms" -msgstr "" - -#: ../../include/nav.php:87 -msgid "Your events" -msgstr "" - -#: ../../include/nav.php:88 -msgid "Your bookmarks" -msgstr "" - -#: ../../include/nav.php:90 -msgid "Your webpages" -msgstr "" - -#: ../../include/nav.php:94 ../../boot.php:1451 -msgid "Login" -msgstr "" - -#: ../../include/nav.php:94 -msgid "Sign in" -msgstr "" - -#: ../../include/nav.php:111 +#: ../../mod/home.php:89 #, php-format -msgid "%s - click to logout" +msgid "Welcome to %s" msgstr "" -#: ../../include/nav.php:116 -msgid "Click to authenticate to your home hub" +#: ../../mod/follow.php:25 +msgid "Channel added." msgstr "" -#: ../../include/nav.php:130 -msgid "Home Page" +#: ../../mod/dirprofile.php:9 ../../mod/search.php:13 +#: ../../mod/directory.php:15 ../../mod/photos.php:443 ../../mod/display.php:9 +#: ../../mod/viewconnections.php:17 +msgid "Public access denied." msgstr "" -#: ../../include/nav.php:134 ../../mod/register.php:206 ../../boot.php:1427 -msgid "Register" +#: ../../mod/dirprofile.php:92 ../../mod/directory.php:143 +#: ../../mod/profiles.php:561 +msgid "Age: " msgstr "" -#: ../../include/nav.php:134 -msgid "Create an account" +#: ../../mod/dirprofile.php:95 ../../mod/directory.php:146 +msgid "Gender: " msgstr "" -#: ../../include/nav.php:139 -msgid "Help and documentation" +#: ../../mod/dirprofile.php:108 +msgid "Status: " msgstr "" -#: ../../include/nav.php:142 ../../mod/apps.php:17 ../../mod/apps.php:35 -msgid "Apps" +#: ../../mod/dirprofile.php:109 +msgid "Sexual Preference: " msgstr "" -#: ../../include/nav.php:142 -msgid "Addon applications, utilities, games" +#: ../../mod/dirprofile.php:111 +msgid "Homepage: " msgstr "" -#: ../../include/nav.php:144 -msgid "Search site content" +#: ../../mod/dirprofile.php:112 +msgid "Hometown: " msgstr "" -#: ../../include/nav.php:147 -msgid "Channel Locator" +#: ../../mod/dirprofile.php:114 +msgid "About: " msgstr "" -#: ../../include/nav.php:158 -msgid "Your matrix" +#: ../../mod/dirprofile.php:162 +msgid "Keywords: " msgstr "" -#: ../../include/nav.php:159 -msgid "Mark all matrix notifications seen" +#: ../../mod/dirprofile.php:175 ../../mod/mitem.php:78 ../../mod/xchan.php:27 +#: ../../mod/menu.php:120 +msgid "Not found." msgstr "" -#: ../../include/nav.php:161 -msgid "Channel home" +#: ../../mod/acl.php:239 +msgid "network" msgstr "" -#: ../../include/nav.php:162 -msgid "Mark all channel notifications seen" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" msgstr "" -#: ../../include/nav.php:165 ../../include/nav.php:188 -#: ../../mod/connections.php:385 -msgid "Connections" +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" msgstr "" -#: ../../include/nav.php:168 -msgid "Notices" +#: ../../mod/api.php:89 +msgid "Please login to continue." msgstr "" -#: ../../include/nav.php:168 -msgid "Notifications" -msgstr "" - -#: ../../include/nav.php:169 -msgid "See all notifications" -msgstr "" - -#: ../../include/nav.php:170 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "" - -#: ../../include/nav.php:172 -msgid "Mail" -msgstr "" - -#: ../../include/nav.php:172 -msgid "Private mail" -msgstr "" - -#: ../../include/nav.php:173 -msgid "See all private messages" -msgstr "" - -#: ../../include/nav.php:174 -msgid "Mark all private messages seen" -msgstr "" - -#: ../../include/nav.php:175 -msgid "Inbox" -msgstr "" - -#: ../../include/nav.php:176 -msgid "Outbox" -msgstr "" - -#: ../../include/nav.php:177 ../../include/widgets.php:535 -msgid "New Message" -msgstr "" - -#: ../../include/nav.php:180 -msgid "Event Calendar" -msgstr "" - -#: ../../include/nav.php:181 -msgid "See all events" -msgstr "" - -#: ../../include/nav.php:182 -msgid "Mark all events seen" -msgstr "" - -#: ../../include/nav.php:184 -msgid "Channel Select" -msgstr "" - -#: ../../include/nav.php:184 -msgid "Manage Your Channels" -msgstr "" - -#: ../../include/nav.php:186 ../../include/widgets.php:513 -#: ../../mod/admin.php:976 ../../mod/admin.php:1181 -msgid "Settings" -msgstr "" - -#: ../../include/nav.php:186 -msgid "Account/Channel Settings" -msgstr "" - -#: ../../include/nav.php:188 -msgid "Manage/Edit Friends and Connections" -msgstr "" - -#: ../../include/nav.php:195 ../../mod/admin.php:117 -msgid "Admin" -msgstr "" - -#: ../../include/nav.php:195 -msgid "Site Setup and Configuration" -msgstr "" - -#: ../../include/nav.php:220 -msgid "Nothing new here" -msgstr "" - -#: ../../include/nav.php:225 -msgid "Please wait..." -msgstr "" - -#: ../../include/network.php:652 -msgid "view full size" -msgstr "" - -#: ../../include/plugin.php:486 ../../include/plugin.php:488 -msgid "Click here to upgrade." -msgstr "" - -#: ../../include/plugin.php:494 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" - -#: ../../include/plugin.php:499 -msgid "This action is not available under your subscription plan." -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "" - -#: ../../include/reddav.php:1045 -msgid "Edit File properties" -msgstr "" - -#: ../../include/zot.php:587 -msgid "Invalid data packet" -msgstr "" - -#: ../../include/zot.php:597 -msgid "Unable to verify channel signature" -msgstr "" - -#: ../../include/zot.php:794 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "" - -#: ../../include/security.php:301 +#: ../../mod/api.php:104 msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" msgstr "" -#: ../../include/widgets.php:79 -msgid "App Category" +#: ../../mod/api.php:105 ../../mod/settings.php:879 ../../mod/settings.php:884 +#: ../../mod/settings.php:955 ../../mod/profiles.php:483 +#: ../../mod/admin.php:421 +msgid "Yes" msgstr "" -#: ../../include/widgets.php:80 -msgid "System" +#: ../../mod/api.php:106 ../../mod/settings.php:879 ../../mod/settings.php:884 +#: ../../mod/settings.php:955 ../../mod/profiles.php:484 +#: ../../mod/admin.php:419 +msgid "No" msgstr "" -#: ../../include/widgets.php:129 ../../mod/suggest.php:53 -msgid "Ignore/Hide" +#: ../../mod/editlayout.php:36 ../../mod/editpost.php:20 +#: ../../mod/editblock.php:8 ../../mod/editblock.php:27 +#: ../../mod/editblock.php:53 ../../mod/editwebpage.php:32 +msgid "Item not found" msgstr "" -#: ../../include/widgets.php:135 ../../mod/connections.php:266 -msgid "Suggestions" +#: ../../mod/editlayout.php:72 +msgid "Edit Layout" msgstr "" -#: ../../include/widgets.php:136 -msgid "See more..." +#: ../../mod/editlayout.php:82 +msgid "Delete layout?" msgstr "" -#: ../../include/widgets.php:158 +#: ../../mod/editlayout.php:110 ../../mod/editpost.php:116 +#: ../../mod/editblock.php:115 ../../mod/editwebpage.php:147 +msgid "Insert YouTube video" +msgstr "" + +#: ../../mod/editlayout.php:111 ../../mod/editpost.php:117 +#: ../../mod/editblock.php:116 ../../mod/editwebpage.php:148 +msgid "Insert Vorbis [.ogg] video" +msgstr "" + +#: ../../mod/editlayout.php:112 ../../mod/editpost.php:118 +#: ../../mod/editblock.php:117 ../../mod/editwebpage.php:149 +msgid "Insert Vorbis [.ogg] audio" +msgstr "" + +#: ../../mod/editlayout.php:146 +msgid "Delete Layout" +msgstr "" + +#: ../../mod/magic.php:70 +msgid "Hub not found." +msgstr "" + +#: ../../mod/probe.php:23 ../../mod/probe.php:29 #, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." +msgid "Fetching URL returns error: %1$s" msgstr "" -#: ../../include/widgets.php:164 -msgid "Add New Connection" +#: ../../mod/tagrm.php:41 +msgid "Tag removed" msgstr "" -#: ../../include/widgets.php:165 -msgid "Enter the channel address" +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" msgstr "" -#: ../../include/widgets.php:166 -msgid "Example: bob@example.com, http://example.com/barbara" +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " msgstr "" -#: ../../include/widgets.php:183 -msgid "Notes" +#: ../../mod/tagrm.php:93 ../../mod/photos.php:908 ../../mod/delegate.php:130 +msgid "Remove" msgstr "" -#: ../../include/widgets.php:255 -msgid "Remove term" +#: ../../mod/new_channel.php:107 +msgid "Add a Channel" msgstr "" -#: ../../include/widgets.php:334 -msgid "Archives" +#: ../../mod/new_channel.php:108 +msgid "" +"A channel is your own collection of related web pages. A channel can be used " +"to hold social network profiles, blogs, conversation groups and forums, " +"celebrity pages, and much more. You may create as many channels as your " +"service provider allows." msgstr "" -#: ../../include/widgets.php:396 -msgid "Refresh" +#: ../../mod/new_channel.php:110 ../../mod/sources.php:103 +#: ../../mod/sources.php:137 +msgid "Channel Name" msgstr "" -#: ../../include/widgets.php:397 ../../mod/connedit.php:428 -msgid "Me" +#: ../../mod/new_channel.php:111 +msgid "" +"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " +"Group\" " msgstr "" -#: ../../include/widgets.php:398 ../../mod/connedit.php:430 -msgid "Best Friends" +#: ../../mod/new_channel.php:112 +msgid "Choose a short nickname" msgstr "" -#: ../../include/widgets.php:400 -msgid "Co-workers" +#: ../../mod/new_channel.php:113 +msgid "" +"Your nickname will be used to create an easily remembered channel address " +"(like an email address) which you can share with others." msgstr "" -#: ../../include/widgets.php:401 ../../mod/connedit.php:432 -msgid "Former Friends" +#: ../../mod/new_channel.php:114 +msgid "" +"Or import an existing channel from another location" msgstr "" -#: ../../include/widgets.php:402 ../../mod/connedit.php:433 -msgid "Acquaintances" +#: ../../mod/new_channel.php:117 ../../mod/mitem.php:142 ../../mod/menu.php:84 +msgid "Create" msgstr "" -#: ../../include/widgets.php:403 -msgid "Everybody" +#: ../../mod/pubsites.php:16 +msgid "Public Sites" msgstr "" -#: ../../include/widgets.php:435 -msgid "Account settings" +#: ../../mod/pubsites.php:19 +msgid "" +"The listed sites allow public registration into the Red Matrix. All sites in " +"the matrix are interlinked so membership on any of them conveys membership " +"in the matrix as a whole. Some sites may require subscription or provide " +"tiered service plans. The provider links may provide " +"additional details." msgstr "" -#: ../../include/widgets.php:441 -msgid "Channel settings" +#: ../../mod/pubsites.php:25 +msgid "Site URL" msgstr "" -#: ../../include/widgets.php:447 -msgid "Additional features" +#: ../../mod/pubsites.php:25 +msgid "Access Type" msgstr "" -#: ../../include/widgets.php:453 -msgid "Feature settings" +#: ../../mod/pubsites.php:25 +msgid "Registration Policy" msgstr "" -#: ../../include/widgets.php:459 -msgid "Display settings" +#: ../../mod/pubsites.php:25 ../../mod/profiles.php:344 +msgid "Location" msgstr "" -#: ../../include/widgets.php:465 -msgid "Connected apps" +#: ../../mod/update_search.php:46 ../../mod/update_network.php:23 +#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 +msgid "[Embedded content - reload page to view]" msgstr "" -#: ../../include/widgets.php:471 -msgid "Export channel" +#: ../../mod/group.php:20 +msgid "Collection created." msgstr "" -#: ../../include/widgets.php:483 -msgid "Automatic Permissions (Advanced)" +#: ../../mod/group.php:26 +msgid "Could not create collection." msgstr "" -#: ../../include/widgets.php:493 -msgid "Premium Channel Settings" +#: ../../mod/group.php:54 +msgid "Collection updated." msgstr "" -#: ../../include/widgets.php:530 -msgid "Check Mail" +#: ../../mod/group.php:86 +msgid "Create a collection of channels." msgstr "" -#: ../../include/widgets.php:611 -msgid "Chat Rooms" +#: ../../mod/group.php:87 ../../mod/group.php:183 +msgid "Collection Name: " msgstr "" -#: ../../include/widgets.php:629 -msgid "Bookmarked Chatrooms" +#: ../../mod/group.php:89 ../../mod/group.php:186 +msgid "Members are visible to other channels" msgstr "" -#: ../../include/widgets.php:647 -msgid "Suggested Chatrooms" +#: ../../mod/group.php:107 +msgid "Collection removed." msgstr "" -#: ../../mod/mood.php:138 -msgid "Mood" +#: ../../mod/group.php:109 +msgid "Unable to remove collection." msgstr "" -#: ../../mod/mood.php:139 -msgid "Set your current mood and tell your friends" +#: ../../mod/group.php:182 +msgid "Collection Editor" +msgstr "" + +#: ../../mod/group.php:196 +msgid "Members" +msgstr "" + +#: ../../mod/group.php:198 +msgid "All Connected Channels" +msgstr "" + +#: ../../mod/group.php:231 +msgid "Click on a channel to add or remove." +msgstr "" + +#: ../../mod/thing.php:98 +msgid "Thing updated" +msgstr "" + +#: ../../mod/thing.php:158 +msgid "Object store: failed" +msgstr "" + +#: ../../mod/thing.php:162 +msgid "Thing added" +msgstr "" + +#: ../../mod/thing.php:182 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "" + +#: ../../mod/thing.php:234 +msgid "Show Thing" +msgstr "" + +#: ../../mod/thing.php:241 +msgid "item not found." +msgstr "" + +#: ../../mod/thing.php:269 +msgid "Edit Thing" +msgstr "" + +#: ../../mod/thing.php:271 ../../mod/thing.php:318 +msgid "Select a profile" +msgstr "" + +#: ../../mod/thing.php:273 ../../mod/thing.php:320 +msgid "Select a category of stuff. e.g. I ______ something" +msgstr "" + +#: ../../mod/thing.php:275 ../../mod/thing.php:321 +msgid "Post an activity" +msgstr "" + +#: ../../mod/thing.php:275 ../../mod/thing.php:321 +msgid "Only sends to viewers of the applicable profile" +msgstr "" + +#: ../../mod/thing.php:277 ../../mod/thing.php:323 +msgid "Name of thing e.g. something" +msgstr "" + +#: ../../mod/thing.php:279 ../../mod/thing.php:324 +msgid "URL of thing (optional)" +msgstr "" + +#: ../../mod/thing.php:281 ../../mod/thing.php:325 +msgid "URL for photo of thing (optional)" +msgstr "" + +#: ../../mod/thing.php:316 +msgid "Add Thing to your Profile" +msgstr "" + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "" + +#: ../../mod/notifications.php:35 +msgid "Discard" +msgstr "" + +#: ../../mod/notifications.php:51 ../../mod/connedit.php:379 +#: ../../mod/connedit.php:516 +msgid "Ignore" +msgstr "" + +#: ../../mod/notifications.php:94 ../../mod/notify.php:54 +msgid "No more system notifications." +msgstr "" + +#: ../../mod/notifications.php:98 ../../mod/notify.php:58 +msgid "System Notifications" +msgstr "" + +#: ../../mod/block.php:27 ../../mod/page.php:35 +msgid "Invalid item." +msgstr "" + +#: ../../mod/block.php:75 ../../mod/help.php:72 ../../mod/page.php:83 +#: ../../mod/display.php:100 ../../index.php:237 +msgid "Page not found." +msgstr "" + +#: ../../mod/message.php:31 ../../mod/mail.php:121 +msgid "Messages" +msgstr "" + +#: ../../mod/message.php:41 +msgid "Conversation removed." +msgstr "" + +#: ../../mod/message.php:56 +msgid "No messages." +msgstr "" + +#: ../../mod/message.php:72 ../../mod/mail.php:292 +msgid "Delete message" +msgstr "" + +#: ../../mod/message.php:74 +msgid "D, d M Y - g:i A" +msgstr "" + +#: ../../mod/rpost.php:86 ../../mod/editpost.php:42 +msgid "Edit post" +msgstr "" + +#: ../../mod/directory.php:207 +msgid "Finding:" +msgstr "" + +#: ../../mod/directory.php:215 +msgid "next page" +msgstr "" + +#: ../../mod/directory.php:215 +msgid "previous page" +msgstr "" + +#: ../../mod/directory.php:222 +msgid "No entries (some entries may be hidden)." msgstr "" #: ../../mod/mitem.php:14 ../../mod/menu.php:92 @@ -3351,11 +3752,6 @@ msgstr "" msgid "Unable to add menu element." msgstr "" -#: ../../mod/mitem.php:78 ../../mod/dirprofile.php:175 ../../mod/menu.php:120 -#: ../../mod/xchan.php:27 -msgid "Not found." -msgstr "" - #: ../../mod/mitem.php:96 msgid "Manage Menu Elements" msgstr "" @@ -3428,10 +3824,6 @@ msgstr "" msgid "Higher numbers will sink to bottom of listing" msgstr "" -#: ../../mod/mitem.php:142 ../../mod/menu.php:84 ../../mod/new_channel.php:117 -msgid "Create" -msgstr "" - #: ../../mod/mitem.php:154 msgid "Menu item not found." msgstr "" @@ -3452,719 +3844,288 @@ msgstr "" msgid "Modify" msgstr "" -#: ../../mod/ping.php:192 -msgid "sent you a private message" +#: ../../mod/connect.php:55 ../../mod/connect.php:103 +msgid "Continue" msgstr "" -#: ../../mod/ping.php:250 -msgid "added your channel" +#: ../../mod/connect.php:84 +msgid "Premium Channel Setup" msgstr "" -#: ../../mod/ping.php:294 -msgid "posted an event" +#: ../../mod/connect.php:86 +msgid "Enable premium channel connection restrictions" msgstr "" -#: ../../mod/acl.php:239 -msgid "network" -msgstr "" - -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "" - -#: ../../mod/admin.php:92 ../../mod/admin.php:440 -msgid "Site" -msgstr "" - -#: ../../mod/admin.php:93 -msgid "Accounts" -msgstr "" - -#: ../../mod/admin.php:94 ../../mod/admin.php:883 -msgid "Channels" -msgstr "" - -#: ../../mod/admin.php:95 ../../mod/admin.php:974 ../../mod/admin.php:1016 -msgid "Plugins" -msgstr "" - -#: ../../mod/admin.php:96 ../../mod/admin.php:1179 ../../mod/admin.php:1215 -msgid "Themes" -msgstr "" - -#: ../../mod/admin.php:97 ../../mod/admin.php:540 -msgid "Server" -msgstr "" - -#: ../../mod/admin.php:98 -msgid "DB updates" -msgstr "" - -#: ../../mod/admin.php:112 ../../mod/admin.php:119 ../../mod/admin.php:1302 -msgid "Logs" -msgstr "" - -#: ../../mod/admin.php:118 -msgid "Plugin Features" -msgstr "" - -#: ../../mod/admin.php:120 -msgid "User registrations waiting for confirmation" -msgstr "" - -#: ../../mod/admin.php:197 -msgid "Message queues" -msgstr "" - -#: ../../mod/admin.php:202 ../../mod/admin.php:439 ../../mod/admin.php:539 -#: ../../mod/admin.php:748 ../../mod/admin.php:882 ../../mod/admin.php:973 -#: ../../mod/admin.php:1015 ../../mod/admin.php:1178 ../../mod/admin.php:1214 -#: ../../mod/admin.php:1301 -msgid "Administration" -msgstr "" - -#: ../../mod/admin.php:203 -msgid "Summary" -msgstr "" - -#: ../../mod/admin.php:205 -msgid "Registered users" -msgstr "" - -#: ../../mod/admin.php:207 ../../mod/admin.php:543 -msgid "Pending registrations" -msgstr "" - -#: ../../mod/admin.php:208 -msgid "Version" -msgstr "" - -#: ../../mod/admin.php:210 ../../mod/admin.php:544 -msgid "Active plugins" -msgstr "" - -#: ../../mod/admin.php:360 -msgid "Site settings updated." -msgstr "" - -#: ../../mod/admin.php:389 ../../mod/settings.php:708 -msgid "No special theme for mobile devices" -msgstr "" - -#: ../../mod/admin.php:391 -msgid "No special theme for accessibility" -msgstr "" - -#: ../../mod/admin.php:419 ../../mod/api.php:106 ../../mod/profiles.php:484 -#: ../../mod/settings.php:879 ../../mod/settings.php:884 -#: ../../mod/settings.php:955 -msgid "No" -msgstr "" - -#: ../../mod/admin.php:420 -msgid "Yes - with approval" -msgstr "" - -#: ../../mod/admin.php:421 ../../mod/api.php:105 ../../mod/profiles.php:483 -#: ../../mod/settings.php:879 ../../mod/settings.php:884 -#: ../../mod/settings.php:955 -msgid "Yes" -msgstr "" - -#: ../../mod/admin.php:426 -msgid "My site is not a public server" -msgstr "" - -#: ../../mod/admin.php:427 -msgid "My site has paid access only" -msgstr "" - -#: ../../mod/admin.php:428 -msgid "My site has free access only" -msgstr "" - -#: ../../mod/admin.php:429 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "" - -#: ../../mod/admin.php:442 ../../mod/register.php:189 -msgid "Registration" -msgstr "" - -#: ../../mod/admin.php:443 -msgid "File upload" -msgstr "" - -#: ../../mod/admin.php:444 -msgid "Policies" -msgstr "" - -#: ../../mod/admin.php:449 -msgid "Site name" -msgstr "" - -#: ../../mod/admin.php:450 -msgid "Banner/Logo" -msgstr "" - -#: ../../mod/admin.php:451 -msgid "Administrator Information" -msgstr "" - -#: ../../mod/admin.php:451 +#: ../../mod/connect.php:87 msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." msgstr "" -#: ../../mod/admin.php:452 -msgid "System language" -msgstr "" - -#: ../../mod/admin.php:453 -msgid "System theme" -msgstr "" - -#: ../../mod/admin.php:453 +#: ../../mod/connect.php:89 ../../mod/connect.php:109 msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" msgstr "" -#: ../../mod/admin.php:454 -msgid "Mobile system theme" -msgstr "" - -#: ../../mod/admin.php:454 -msgid "Theme for mobile devices" -msgstr "" - -#: ../../mod/admin.php:455 -msgid "Accessibility system theme" -msgstr "" - -#: ../../mod/admin.php:455 -msgid "Accessibility theme" -msgstr "" - -#: ../../mod/admin.php:456 -msgid "Channel to use for this website's static pages" -msgstr "" - -#: ../../mod/admin.php:456 -msgid "Site Channel" -msgstr "" - -#: ../../mod/admin.php:458 -msgid "Maximum image size" -msgstr "" - -#: ../../mod/admin.php:458 +#: ../../mod/connect.php:90 msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." +"Potential connections will then see the following text before proceeding:" msgstr "" -#: ../../mod/admin.php:459 -msgid "Does this site allow new member registration?" -msgstr "" - -#: ../../mod/admin.php:460 -msgid "Which best describes the types of account offered by this hub?" -msgstr "" - -#: ../../mod/admin.php:461 -msgid "Register text" -msgstr "" - -#: ../../mod/admin.php:461 -msgid "Will be displayed prominently on the registration page." -msgstr "" - -#: ../../mod/admin.php:462 -msgid "Accounts abandoned after x days" -msgstr "" - -#: ../../mod/admin.php:462 +#: ../../mod/connect.php:91 ../../mod/connect.php:112 msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." +"By continuing, I certify that I have complied with any instructions provided " +"on this page." msgstr "" -#: ../../mod/admin.php:463 -msgid "Allowed friend domains" +#: ../../mod/connect.php:100 +msgid "(No specific instructions have been provided by the channel owner.)" msgstr "" -#: ../../mod/admin.php:463 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" +#: ../../mod/connect.php:108 +msgid "Restricted or Premium Channel" msgstr "" -#: ../../mod/admin.php:464 -msgid "Allowed email domains" +#: ../../mod/item.php:147 +msgid "Unable to locate original post." msgstr "" -#: ../../mod/admin.php:464 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" +#: ../../mod/item.php:352 +msgid "Empty post discarded." msgstr "" -#: ../../mod/admin.php:465 -msgid "Block public" +#: ../../mod/item.php:392 +msgid "Executable content type not permitted to this channel." msgstr "" -#: ../../mod/admin.php:465 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." +#: ../../mod/item.php:806 +msgid "System error. Post not saved." msgstr "" -#: ../../mod/admin.php:466 -msgid "Force publish" -msgstr "" - -#: ../../mod/admin.php:466 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "" - -#: ../../mod/admin.php:467 -msgid "Disable discovery tab" -msgstr "" - -#: ../../mod/admin.php:467 -msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." -msgstr "" - -#: ../../mod/admin.php:468 -msgid "No login on Homepage" -msgstr "" - -#: ../../mod/admin.php:468 -msgid "" -"Check to hide the login form from your sites homepage when visitors arrive " -"who are not logged in (e.g. when you put the content of the homepage in via " -"the site channel)." -msgstr "" - -#: ../../mod/admin.php:470 -msgid "Proxy user" -msgstr "" - -#: ../../mod/admin.php:471 -msgid "Proxy URL" -msgstr "" - -#: ../../mod/admin.php:472 -msgid "Network timeout" -msgstr "" - -#: ../../mod/admin.php:472 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" - -#: ../../mod/admin.php:473 -msgid "Delivery interval" -msgstr "" - -#: ../../mod/admin.php:473 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "" - -#: ../../mod/admin.php:474 -msgid "Poll interval" -msgstr "" - -#: ../../mod/admin.php:474 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "" - -#: ../../mod/admin.php:475 -msgid "Maximum Load Average" -msgstr "" - -#: ../../mod/admin.php:475 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "" - -#: ../../mod/admin.php:531 -msgid "No server found" -msgstr "" - -#: ../../mod/admin.php:538 ../../mod/admin.php:762 -msgid "ID" -msgstr "" - -#: ../../mod/admin.php:538 -msgid "for channel" -msgstr "" - -#: ../../mod/admin.php:538 -msgid "on server" -msgstr "" - -#: ../../mod/admin.php:538 -msgid "Status" -msgstr "" - -#: ../../mod/admin.php:559 -msgid "Update has been marked successful" -msgstr "" - -#: ../../mod/admin.php:569 +#: ../../mod/item.php:1249 #, php-format -msgid "Executing %s failed. Check system logs." +msgid "You have reached your limit of %1$.0f top level posts." msgstr "" -#: ../../mod/admin.php:572 +#: ../../mod/item.php:1255 #, php-format -msgid "Update %s was successfully applied." +msgid "You have reached your limit of %1$.0f webpages." msgstr "" -#: ../../mod/admin.php:576 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "" - -#: ../../mod/admin.php:579 -#, php-format -msgid "Update function %s could not be found." -msgstr "" - -#: ../../mod/admin.php:594 -msgid "No failed updates." -msgstr "" - -#: ../../mod/admin.php:598 -msgid "Failed Updates" -msgstr "" - -#: ../../mod/admin.php:600 -msgid "Mark success (if update was manually applied)" -msgstr "" - -#: ../../mod/admin.php:601 -msgid "Attempt to execute this update step automatically" -msgstr "" - -#: ../../mod/admin.php:627 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:634 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:665 -msgid "Account not found" -msgstr "" - -#: ../../mod/admin.php:676 -#, php-format -msgid "User '%s' deleted" -msgstr "" - -#: ../../mod/admin.php:685 -#, php-format -msgid "User '%s' unblocked" -msgstr "" - -#: ../../mod/admin.php:685 -#, php-format -msgid "User '%s' blocked" -msgstr "" - -#: ../../mod/admin.php:749 ../../mod/admin.php:761 -msgid "Users" -msgstr "" - -#: ../../mod/admin.php:751 ../../mod/admin.php:885 -msgid "select all" -msgstr "" - -#: ../../mod/admin.php:752 -msgid "User registrations waiting for confirm" -msgstr "" - -#: ../../mod/admin.php:753 -msgid "Request date" -msgstr "" - -#: ../../mod/admin.php:754 -msgid "No registrations." -msgstr "" - -#: ../../mod/admin.php:755 -msgid "Approve" -msgstr "" - -#: ../../mod/admin.php:756 -msgid "Deny" -msgstr "" - -#: ../../mod/admin.php:758 ../../mod/connedit.php:372 -#: ../../mod/connedit.php:515 -msgid "Block" -msgstr "" - -#: ../../mod/admin.php:759 ../../mod/connedit.php:372 -#: ../../mod/connedit.php:515 -msgid "Unblock" -msgstr "" - -#: ../../mod/admin.php:762 -msgid "Register date" -msgstr "" - -#: ../../mod/admin.php:762 -msgid "Last login" -msgstr "" - -#: ../../mod/admin.php:762 -msgid "Expires" -msgstr "" - -#: ../../mod/admin.php:762 -msgid "Service Class" -msgstr "" - -#: ../../mod/admin.php:764 +#: ../../mod/suggest.php:35 msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." msgstr "" -#: ../../mod/admin.php:765 +#: ../../mod/network.php:79 +msgid "No such group" +msgstr "" + +#: ../../mod/network.php:119 +msgid "Search Results For:" +msgstr "" + +#: ../../mod/network.php:173 +msgid "Collection is empty" +msgstr "" + +#: ../../mod/network.php:181 +msgid "Collection: " +msgstr "" + +#: ../../mod/network.php:194 +msgid "Connection: " +msgstr "" + +#: ../../mod/network.php:197 +msgid "Invalid connection." +msgstr "" + +#: ../../mod/siteinfo.php:57 +#, php-format +msgid "Version %s" +msgstr "" + +#: ../../mod/siteinfo.php:76 +msgid "Installed plugins/addons/apps:" +msgstr "" + +#: ../../mod/siteinfo.php:89 +msgid "No installed plugins/addons/apps" +msgstr "" + +#: ../../mod/siteinfo.php:97 +msgid "Red" +msgstr "" + +#: ../../mod/siteinfo.php:98 msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" +"This is a hub of the Red Matrix - a global cooperative network of " +"decentralised privacy enhanced websites." msgstr "" -#: ../../mod/admin.php:797 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channelss censored/uncensored" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:804 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:823 -msgid "Channel not found" +#: ../../mod/siteinfo.php:101 +msgid "Running at web location" msgstr "" -#: ../../mod/admin.php:834 -#, php-format -msgid "Channel '%s' deleted" -msgstr "" - -#: ../../mod/admin.php:844 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "" - -#: ../../mod/admin.php:844 -#, php-format -msgid "Channel '%s' censored" -msgstr "" - -#: ../../mod/admin.php:887 -msgid "Censor" -msgstr "" - -#: ../../mod/admin.php:888 -msgid "Uncensor" -msgstr "" - -#: ../../mod/admin.php:891 -msgid "UID" -msgstr "" - -#: ../../mod/admin.php:891 ../../mod/settings.php:517 -#: ../../mod/settings.php:543 -msgid "Name" -msgstr "" - -#: ../../mod/admin.php:891 ../../mod/profiles.php:337 -msgid "Address" -msgstr "" - -#: ../../mod/admin.php:893 +#: ../../mod/siteinfo.php:102 msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" +"Please visit GetZot.com to learn more " +"about the Red Matrix." msgstr "" -#: ../../mod/admin.php:894 +#: ../../mod/siteinfo.php:103 +msgid "Bug reports and issues: please visit" +msgstr "" + +#: ../../mod/siteinfo.php:106 msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" msgstr "" -#: ../../mod/admin.php:933 +#: ../../mod/siteinfo.php:108 +msgid "Site Administrators" +msgstr "" + +#: ../../mod/bookmarks.php:38 +msgid "Bookmark added" +msgstr "" + +#: ../../mod/bookmarks.php:58 +msgid "My Bookmarks" +msgstr "" + +#: ../../mod/bookmarks.php:69 +msgid "My Connections Bookmarks" +msgstr "" + +#: ../../mod/channel.php:25 ../../mod/chat.php:19 +msgid "You must be logged in to see this page." +msgstr "" + +#: ../../mod/channel.php:86 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "" + +#: ../../mod/pdledit.php:13 +msgid "Layout updated." +msgstr "" + +#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +msgid "Edit System Page Description" +msgstr "" + +#: ../../mod/pdledit.php:48 +msgid "Layout not found." +msgstr "" + +#: ../../mod/pdledit.php:54 +msgid "Module Name:" +msgstr "" + +#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59 +msgid "Layout Help" +msgstr "" + +#: ../../mod/oexchange.php:23 +msgid "Unable to find your hub." +msgstr "" + +#: ../../mod/oexchange.php:37 +msgid "Post successful." +msgstr "" + +#: ../../mod/subthread.php:103 #, php-format -msgid "Plugin %s disabled." +msgid "%1$s is following %2$s's %3$s" msgstr "" -#: ../../mod/admin.php:937 -#, php-format -msgid "Plugin %s enabled." +#: ../../mod/chanview.php:93 +msgid "toggle full screen mode" msgstr "" -#: ../../mod/admin.php:947 ../../mod/admin.php:1149 -msgid "Disable" +#: ../../mod/zfinger.php:23 +msgid "invalid target signature" msgstr "" -#: ../../mod/admin.php:949 ../../mod/admin.php:1151 -msgid "Enable" +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." msgstr "" -#: ../../mod/admin.php:975 ../../mod/admin.php:1180 -msgid "Toggle" +#: ../../mod/sources.php:45 +msgid "Source created." msgstr "" -#: ../../mod/admin.php:983 ../../mod/admin.php:1190 -msgid "Author: " +#: ../../mod/sources.php:57 +msgid "Source updated." msgstr "" -#: ../../mod/admin.php:984 ../../mod/admin.php:1191 -msgid "Maintainer: " +#: ../../mod/sources.php:82 +msgid "*" msgstr "" -#: ../../mod/admin.php:1113 -msgid "No themes found." +#: ../../mod/sources.php:89 +msgid "Manage remote sources of content for your channel." msgstr "" -#: ../../mod/admin.php:1172 -msgid "Screenshot" +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" msgstr "" -#: ../../mod/admin.php:1220 -msgid "[Experimental]" -msgstr "" - -#: ../../mod/admin.php:1221 -msgid "[Unsupported]" -msgstr "" - -#: ../../mod/admin.php:1248 -msgid "Log settings updated." -msgstr "" - -#: ../../mod/admin.php:1304 -msgid "Clear" -msgstr "" - -#: ../../mod/admin.php:1310 -msgid "Debugging" -msgstr "" - -#: ../../mod/admin.php:1311 -msgid "Log file" -msgstr "" - -#: ../../mod/admin.php:1311 +#: ../../mod/sources.php:101 ../../mod/sources.php:133 msgid "" -"Must be writable by web server. Relative to your Red top-level directory." +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." msgstr "" -#: ../../mod/admin.php:1312 -msgid "Log level" +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Only import content with these words (one per line)" msgstr "" -#: ../../mod/poke.php:159 -msgid "Poke/Prod" +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Leave blank to import all public content" msgstr "" -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" +#: ../../mod/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." msgstr "" -#: ../../mod/poke.php:161 -msgid "Recipient" +#: ../../mod/sources.php:130 +msgid "Edit Source" msgstr "" -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" +#: ../../mod/sources.php:131 +msgid "Delete Source" msgstr "" -#: ../../mod/poke.php:165 -msgid "Make this post private" +#: ../../mod/sources.php:158 +msgid "Source removed" msgstr "" -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" +#: ../../mod/sources.php:160 +msgid "Unable to remove source." msgstr "" -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." msgstr "" -#: ../../mod/api.php:89 -msgid "Please login to continue." +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" msgstr "" -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." msgstr "" -#: ../../mod/post.php:226 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please " -"logout and retry." +#: ../../mod/profperm.php:123 +msgid "Visible To" msgstr "" -#: ../../mod/post.php:257 ../../mod/openid.php:72 ../../mod/openid.php:178 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "" - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "" - -#: ../../mod/probe.php:23 ../../mod/probe.php:29 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "" - -#: ../../mod/block.php:27 ../../mod/page.php:35 -msgid "Invalid item." -msgstr "" - -#: ../../mod/block.php:39 ../../mod/chanview.php:77 ../../mod/page.php:47 -#: ../../mod/home.php:50 ../../mod/wall_upload.php:28 -msgid "Channel not found." -msgstr "" - -#: ../../mod/block.php:75 ../../mod/page.php:83 ../../mod/display.php:100 -#: ../../mod/help.php:72 ../../index.php:237 -msgid "Page not found." +#: ../../mod/profperm.php:139 ../../mod/connections.php:278 +msgid "All Connections" msgstr "" #: ../../mod/profile_photo.php:108 @@ -4251,701 +4212,111 @@ msgstr "" msgid "Block Name" msgstr "" -#: ../../mod/profiles.php:18 ../../mod/profiles.php:138 -#: ../../mod/profiles.php:168 ../../mod/profiles.php:463 -msgid "Profile not found." +#: ../../mod/post.php:226 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please " +"logout and retry." msgstr "" -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "" - -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "" - -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "" - -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "" - -#: ../../mod/profiles.php:178 -msgid "Profile Name is required." -msgstr "" - -#: ../../mod/profiles.php:294 -msgid "Marital Status" -msgstr "" - -#: ../../mod/profiles.php:298 -msgid "Romantic Partner" -msgstr "" - -#: ../../mod/profiles.php:310 -msgid "Work/Employment" -msgstr "" - -#: ../../mod/profiles.php:313 -msgid "Religion" -msgstr "" - -#: ../../mod/profiles.php:317 -msgid "Political Views" -msgstr "" - -#: ../../mod/profiles.php:321 -msgid "Gender" -msgstr "" - -#: ../../mod/profiles.php:325 -msgid "Sexual Preference" -msgstr "" - -#: ../../mod/profiles.php:329 -msgid "Homepage" -msgstr "" - -#: ../../mod/profiles.php:333 -msgid "Interests" -msgstr "" - -#: ../../mod/profiles.php:344 ../../mod/pubsites.php:25 -msgid "Location" -msgstr "" - -#: ../../mod/profiles.php:427 -msgid "Profile updated." -msgstr "" - -#: ../../mod/profiles.php:482 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "" - -#: ../../mod/profiles.php:505 -msgid "Edit Profile Details" -msgstr "" - -#: ../../mod/profiles.php:507 -msgid "View this profile" -msgstr "" - -#: ../../mod/profiles.php:508 -msgid "Change Profile Photo" -msgstr "" - -#: ../../mod/profiles.php:509 -msgid "Create a new profile using these settings" -msgstr "" - -#: ../../mod/profiles.php:510 -msgid "Clone this profile" -msgstr "" - -#: ../../mod/profiles.php:511 -msgid "Delete this profile" -msgstr "" - -#: ../../mod/profiles.php:512 -msgid "Profile Name:" -msgstr "" - -#: ../../mod/profiles.php:513 -msgid "Your Full Name:" -msgstr "" - -#: ../../mod/profiles.php:514 -msgid "Title/Description:" -msgstr "" - -#: ../../mod/profiles.php:515 -msgid "Your Gender:" -msgstr "" - -#: ../../mod/profiles.php:516 +#: ../../mod/post.php:257 ../../mod/openid.php:72 ../../mod/openid.php:178 #, php-format -msgid "Birthday (%s):" +msgid "Welcome %s. Remote authentication successful." msgstr "" -#: ../../mod/profiles.php:517 -msgid "Street Address:" +#: ../../mod/filestorage.php:68 +msgid "Permission Denied." msgstr "" -#: ../../mod/profiles.php:518 -msgid "Locality/City:" +#: ../../mod/filestorage.php:85 +msgid "File not found." msgstr "" -#: ../../mod/profiles.php:519 -msgid "Postal/Zip Code:" +#: ../../mod/filestorage.php:121 +msgid "Edit file permissions" msgstr "" -#: ../../mod/profiles.php:520 -msgid "Country:" +#: ../../mod/filestorage.php:129 +msgid "Set/edit permissions" msgstr "" -#: ../../mod/profiles.php:521 -msgid "Region/State:" +#: ../../mod/filestorage.php:130 +msgid "Include all files and sub folders" msgstr "" -#: ../../mod/profiles.php:522 -msgid " Marital Status:" +#: ../../mod/filestorage.php:131 +msgid "Return to file list" msgstr "" -#: ../../mod/profiles.php:523 -msgid "Who: (if applicable)" +#: ../../mod/filestorage.php:133 +msgid "Copy/paste this code to attach file to a post" msgstr "" -#: ../../mod/profiles.php:524 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +#: ../../mod/filestorage.php:134 +msgid "Copy/paste this URL to link file from a web page" msgstr "" -#: ../../mod/profiles.php:525 -msgid "Since [date]:" +#: ../../mod/filestorage.php:171 +msgid "Download" msgstr "" -#: ../../mod/profiles.php:527 -msgid "Homepage URL:" +#: ../../mod/filestorage.php:177 +msgid "Used: " msgstr "" -#: ../../mod/profiles.php:530 -msgid "Religious Views:" +#: ../../mod/filestorage.php:178 +msgid "[directory]" msgstr "" -#: ../../mod/profiles.php:531 -msgid "Keywords:" +#: ../../mod/filestorage.php:180 +msgid "Limit: " msgstr "" -#: ../../mod/profiles.php:534 -msgid "Example: fishing photography software" +#: ../../mod/lockview.php:30 ../../mod/lockview.php:36 +msgid "Remote privacy information not available." msgstr "" -#: ../../mod/profiles.php:535 -msgid "Used in directory listings" +#: ../../mod/lockview.php:45 +msgid "Visible to:" msgstr "" -#: ../../mod/profiles.php:536 -msgid "Tell us about yourself..." +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." msgstr "" -#: ../../mod/profiles.php:537 -msgid "Hobbies/Interests" +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." msgstr "" -#: ../../mod/profiles.php:538 -msgid "Contact information and Social Networks" +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" msgstr "" -#: ../../mod/profiles.php:539 -msgid "My other channels" -msgstr "" - -#: ../../mod/profiles.php:540 -msgid "Musical interests" -msgstr "" - -#: ../../mod/profiles.php:541 -msgid "Books, literature" -msgstr "" - -#: ../../mod/profiles.php:542 -msgid "Television" -msgstr "" - -#: ../../mod/profiles.php:543 -msgid "Film/dance/culture/entertainment" -msgstr "" - -#: ../../mod/profiles.php:544 -msgid "Love/romance" -msgstr "" - -#: ../../mod/profiles.php:545 -msgid "Work/employment" -msgstr "" - -#: ../../mod/profiles.php:546 -msgid "School/education" -msgstr "" - -#: ../../mod/profiles.php:551 -msgid "" -"This is your public profile.
    It may " -"be visible to anybody using the internet." -msgstr "" - -#: ../../mod/profiles.php:561 ../../mod/directory.php:143 -#: ../../mod/dirprofile.php:92 -msgid "Age: " -msgstr "" - -#: ../../mod/profiles.php:600 -msgid "Edit/Manage Profiles" -msgstr "" - -#: ../../mod/profiles.php:601 -msgid "Add profile things" -msgstr "" - -#: ../../mod/profiles.php:602 -msgid "Include desirable objects in your profile" -msgstr "" - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "" - -#: ../../mod/bookmarks.php:58 -msgid "My Bookmarks" -msgstr "" - -#: ../../mod/bookmarks.php:69 -msgid "My Connections Bookmarks" -msgstr "" - -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "" - -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "" - -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "" - -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "" - -#: ../../mod/profperm.php:139 ../../mod/connections.php:278 -msgid "All Connections" -msgstr "" - -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "" - -#: ../../mod/pubsites.php:19 -msgid "" -"The listed sites allow public registration into the Red Matrix. All sites in " -"the matrix are interlinked so membership on any of them conveys membership " -"in the matrix as a whole. Some sites may require subscription or provide " -"tiered service plans. The provider links may provide " -"additional details." -msgstr "" - -#: ../../mod/pubsites.php:25 -msgid "Site URL" -msgstr "" - -#: ../../mod/pubsites.php:25 -msgid "Access Type" -msgstr "" - -#: ../../mod/pubsites.php:25 -msgid "Registration Policy" -msgstr "" - -#: ../../mod/channel.php:25 ../../mod/chat.php:19 -msgid "You must be logged in to see this page." -msgstr "" - -#: ../../mod/channel.php:86 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "" - -#: ../../mod/chanview.php:93 -msgid "toggle full screen mode" -msgstr "" - -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "" - -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "" - -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "" - -#: ../../mod/rbmark.php:95 -msgid "Description" -msgstr "" - -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "" - -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "" - -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "" - -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "" - -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "" - -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "" - -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "" - -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "" - -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "" - -#: ../../mod/chat.php:225 +#: ../../mod/fsuggest.php:99 #, php-format -msgid "%1$s's Chatrooms" +msgid "Suggest a friend for %s" msgstr "" -#: ../../mod/register.php:43 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "" - -#: ../../mod/register.php:49 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "" - -#: ../../mod/register.php:77 -msgid "Passwords do not match." -msgstr "" - -#: ../../mod/register.php:105 -msgid "" -"Registration successful. Please check your email for validation instructions." -msgstr "" - -#: ../../mod/register.php:111 -msgid "Your registration is pending approval by the site owner." -msgstr "" - -#: ../../mod/register.php:114 -msgid "Your registration can not be processed." -msgstr "" - -#: ../../mod/register.php:147 -msgid "Registration on this site/hub is by approval only." -msgstr "" - -#: ../../mod/register.php:148 -msgid "Register at another affiliated site/hub" -msgstr "" - -#: ../../mod/register.php:156 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "" - -#: ../../mod/register.php:167 -msgid "Terms of Service" -msgstr "" - -#: ../../mod/register.php:173 +#: ../../mod/tagger.php:98 #, php-format -msgid "I accept the %s for this website" +msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" -#: ../../mod/register.php:175 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "" - -#: ../../mod/register.php:194 -msgid "Membership on this site is by invitation only." -msgstr "" - -#: ../../mod/register.php:195 -msgid "Please enter your invitation code" -msgstr "" - -#: ../../mod/register.php:198 -msgid "Your email address" -msgstr "" - -#: ../../mod/register.php:199 -msgid "Choose a password" -msgstr "" - -#: ../../mod/register.php:200 -msgid "Please re-enter your password" -msgstr "" - -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "" - -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "" - -#: ../../mod/regmod.php:12 -msgid "Please login." -msgstr "" - -#: ../../mod/cloud.php:112 -msgid "Red Matrix - Guests: Username: {your email address}, Password: +++" -msgstr "" - -#: ../../mod/removeme.php:49 -msgid "Remove This Channel" -msgstr "" - -#: ../../mod/removeme.php:50 -msgid "" -"This will completely remove this channel from the network. Once this has " -"been done it is not recoverable." -msgstr "" - -#: ../../mod/removeme.php:51 -msgid "Please enter your password for verification:" -msgstr "" - -#: ../../mod/removeme.php:52 -msgid "Remove this channel and all its clones from the network" -msgstr "" - -#: ../../mod/removeme.php:52 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "" - -#: ../../mod/removeme.php:53 -msgid "Remove Channel" -msgstr "" - -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "" - -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "" - -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "" - -#: ../../mod/rmagic.php:38 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "" - -#: ../../mod/rmagic.php:38 -msgid "The error message was:" -msgstr "" - -#: ../../mod/rmagic.php:42 -msgid "Authentication failed." -msgstr "" - -#: ../../mod/rmagic.php:78 -msgid "Remote Authentication" -msgstr "" - -#: ../../mod/rmagic.php:79 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "" - -#: ../../mod/rmagic.php:80 -msgid "Authenticate" -msgstr "" - -#: ../../mod/connect.php:55 ../../mod/connect.php:103 -msgid "Continue" -msgstr "" - -#: ../../mod/connect.php:84 -msgid "Premium Channel Setup" -msgstr "" - -#: ../../mod/connect.php:86 -msgid "Enable premium channel connection restrictions" -msgstr "" - -#: ../../mod/connect.php:87 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "" - -#: ../../mod/connect.php:89 ../../mod/connect.php:109 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "" - -#: ../../mod/connect.php:90 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "" - -#: ../../mod/connect.php:91 ../../mod/connect.php:112 -msgid "" -"By continuing, I certify that I have complied with any instructions provided " -"on this page." -msgstr "" - -#: ../../mod/connect.php:100 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "" - -#: ../../mod/connect.php:108 -msgid "Restricted or Premium Channel" -msgstr "" - -#: ../../mod/network.php:79 -msgid "No such group" -msgstr "" - -#: ../../mod/network.php:119 -msgid "Search Results For:" -msgstr "" - -#: ../../mod/network.php:173 -msgid "Collection is empty" -msgstr "" - -#: ../../mod/network.php:181 -msgid "Collection: " -msgstr "" - -#: ../../mod/network.php:194 -msgid "Connection: " -msgstr "" - -#: ../../mod/network.php:197 -msgid "Invalid connection." -msgstr "" - -#: ../../mod/connections.php:37 ../../mod/connedit.php:64 +#: ../../mod/connedit.php:64 ../../mod/connections.php:37 msgid "Could not access contact record." msgstr "" -#: ../../mod/connections.php:51 ../../mod/connedit.php:78 +#: ../../mod/connedit.php:78 ../../mod/connections.php:51 msgid "Could not locate selected profile." msgstr "" -#: ../../mod/connections.php:94 ../../mod/connedit.php:131 +#: ../../mod/connedit.php:131 ../../mod/connections.php:94 msgid "Connection updated." msgstr "" -#: ../../mod/connections.php:96 ../../mod/connedit.php:133 +#: ../../mod/connedit.php:133 ../../mod/connections.php:96 msgid "Failed to update connection record." msgstr "" -#: ../../mod/connections.php:191 ../../mod/connections.php:291 -msgid "Blocked" -msgstr "" - -#: ../../mod/connections.php:196 ../../mod/connections.php:298 -msgid "Ignored" -msgstr "" - -#: ../../mod/connections.php:201 ../../mod/connections.php:312 -msgid "Hidden" -msgstr "" - -#: ../../mod/connections.php:206 ../../mod/connections.php:305 -msgid "Archived" -msgstr "" - -#: ../../mod/connections.php:230 ../../mod/connections.php:244 -msgid "All" -msgstr "" - -#: ../../mod/connections.php:239 ../../mod/connections.php:319 -msgid "Unconnected" -msgstr "" - -#: ../../mod/connections.php:269 -msgid "Suggest new connections" -msgstr "" - -#: ../../mod/connections.php:272 -msgid "New Connections" -msgstr "" - -#: ../../mod/connections.php:275 -msgid "Show pending (new) connections" -msgstr "" - -#: ../../mod/connections.php:281 -msgid "Show all connections" -msgstr "" - -#: ../../mod/connections.php:284 -msgid "Unblocked" -msgstr "" - -#: ../../mod/connections.php:287 -msgid "Only show unblocked connections" -msgstr "" - -#: ../../mod/connections.php:294 -msgid "Only show blocked connections" -msgstr "" - -#: ../../mod/connections.php:301 -msgid "Only show ignored connections" -msgstr "" - -#: ../../mod/connections.php:308 -msgid "Only show archived connections" -msgstr "" - -#: ../../mod/connections.php:315 -msgid "Only show hidden connections" -msgstr "" - -#: ../../mod/connections.php:322 -msgid "Only show one-way connections" -msgstr "" - -#: ../../mod/connections.php:367 -#, php-format -msgid "%1$s [%2$s]" -msgstr "" - -#: ../../mod/connections.php:368 -msgid "Edit contact" -msgstr "" - -#: ../../mod/connections.php:389 -msgid "Search your connections" -msgstr "" - -#: ../../mod/connections.php:390 -msgid "Finding: " -msgstr "" - -#: ../../mod/rpost.php:86 ../../mod/editpost.php:42 -msgid "Edit post" -msgstr "" - #: ../../mod/connedit.php:243 msgid "Could not access address book record." msgstr "" @@ -5025,6 +4396,16 @@ msgstr "" msgid "View recent posts and comments" msgstr "" +#: ../../mod/connedit.php:372 ../../mod/connedit.php:515 +#: ../../mod/admin.php:759 +msgid "Unblock" +msgstr "" + +#: ../../mod/connedit.php:372 ../../mod/connedit.php:515 +#: ../../mod/admin.php:758 +msgid "Block" +msgstr "" + #: ../../mod/connedit.php:375 msgid "Block or Unblock this connection" msgstr "" @@ -5033,11 +4414,6 @@ msgstr "" msgid "Unignore" msgstr "" -#: ../../mod/connedit.php:379 ../../mod/connedit.php:516 -#: ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "" - #: ../../mod/connedit.php:382 msgid "Ignore or Unignore this connection" msgstr "" @@ -5244,99 +4620,48 @@ msgid "" "Replies/likes to your public posts may still be visible" msgstr "" -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "" - -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "" - -#: ../../mod/delegate.php:123 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "" - -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "" - -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "" - -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "" - -#: ../../mod/delegate.php:130 ../../mod/tagrm.php:93 ../../mod/photos.php:908 -msgid "Remove" -msgstr "" - -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "" - -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "" - -#: ../../mod/search.php:13 ../../mod/directory.php:15 -#: ../../mod/dirprofile.php:9 ../../mod/display.php:9 -#: ../../mod/viewconnections.php:17 ../../mod/photos.php:443 -msgid "Public access denied." -msgstr "" - -#: ../../mod/directory.php:146 ../../mod/dirprofile.php:95 -msgid "Gender: " -msgstr "" - -#: ../../mod/directory.php:207 -msgid "Finding:" -msgstr "" - -#: ../../mod/directory.php:215 -msgid "next page" -msgstr "" - -#: ../../mod/directory.php:215 -msgid "previous page" -msgstr "" - -#: ../../mod/directory.php:222 -msgid "No entries (some entries may be hidden)." -msgstr "" - -#: ../../mod/dirprofile.php:108 -msgid "Status: " -msgstr "" - -#: ../../mod/dirprofile.php:109 -msgid "Sexual Preference: " -msgstr "" - -#: ../../mod/dirprofile.php:111 -msgid "Homepage: " -msgstr "" - -#: ../../mod/dirprofile.php:112 -msgid "Hometown: " -msgstr "" - -#: ../../mod/dirprofile.php:114 -msgid "About: " -msgstr "" - -#: ../../mod/dirprofile.php:162 -msgid "Keywords: " -msgstr "" - #: ../../mod/dirsearch.php:21 msgid "This site is not a directory server" msgstr "" +#: ../../mod/rmagic.php:38 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "" + +#: ../../mod/rmagic.php:38 +msgid "The error message was:" +msgstr "" + +#: ../../mod/rmagic.php:42 +msgid "Authentication failed." +msgstr "" + +#: ../../mod/rmagic.php:78 +msgid "Remote Authentication" +msgstr "" + +#: ../../mod/rmagic.php:79 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "" + +#: ../../mod/rmagic.php:80 +msgid "Authenticate" +msgstr "" + +#: ../../mod/attach.php:9 +msgid "Item not available." +msgstr "" + +#: ../../mod/editpost.php:31 +msgid "Item is not editable" +msgstr "" + +#: ../../mod/editpost.php:53 +msgid "Delete item?" +msgstr "" + #: ../../mod/settings.php:71 msgid "Name is required" msgstr "" @@ -5382,6 +4707,11 @@ msgstr "" msgid "Add application" msgstr "" +#: ../../mod/settings.php:517 ../../mod/settings.php:543 +#: ../../mod/admin.php:891 +msgid "Name" +msgstr "" + #: ../../mod/settings.php:517 msgid "Name of application" msgstr "" @@ -5491,6 +4821,10 @@ msgstr "" msgid "Connector Settings" msgstr "" +#: ../../mod/settings.php:708 ../../mod/admin.php:389 +msgid "No special theme for mobile devices" +msgstr "" + #: ../../mod/settings.php:749 msgid "Display Settings" msgstr "" @@ -6142,137 +5476,6 @@ msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" -#: ../../mod/editblock.php:8 ../../mod/editblock.php:27 -#: ../../mod/editblock.php:53 ../../mod/editlayout.php:36 -#: ../../mod/editpost.php:20 ../../mod/editwebpage.php:32 -msgid "Item not found" -msgstr "" - -#: ../../mod/editblock.php:77 -msgid "Edit Block" -msgstr "" - -#: ../../mod/editblock.php:87 -msgid "Delete block?" -msgstr "" - -#: ../../mod/editblock.php:115 ../../mod/editlayout.php:110 -#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:147 -msgid "Insert YouTube video" -msgstr "" - -#: ../../mod/editblock.php:116 ../../mod/editlayout.php:111 -#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:148 -msgid "Insert Vorbis [.ogg] video" -msgstr "" - -#: ../../mod/editblock.php:117 ../../mod/editlayout.php:112 -#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:149 -msgid "Insert Vorbis [.ogg] audio" -msgstr "" - -#: ../../mod/editblock.php:153 -msgid "Delete Block" -msgstr "" - -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "" - -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "" - -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "" - -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "" - -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59 -msgid "Layout Help" -msgstr "" - -#: ../../mod/editlayout.php:72 -msgid "Edit Layout" -msgstr "" - -#: ../../mod/editlayout.php:82 -msgid "Delete layout?" -msgstr "" - -#: ../../mod/editlayout.php:146 -msgid "Delete Layout" -msgstr "" - -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "" - -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "" - -#: ../../mod/editwebpage.php:106 -msgid "Edit Webpage" -msgstr "" - -#: ../../mod/editwebpage.php:116 -msgid "Delete webpage?" -msgstr "" - -#: ../../mod/editwebpage.php:187 -msgid "Delete Webpage" -msgstr "" - -#: ../../mod/siteinfo.php:57 -#, php-format -msgid "Version %s" -msgstr "" - -#: ../../mod/siteinfo.php:76 -msgid "Installed plugins/addons/apps:" -msgstr "" - -#: ../../mod/siteinfo.php:89 -msgid "No installed plugins/addons/apps" -msgstr "" - -#: ../../mod/siteinfo.php:97 -msgid "Red" -msgstr "" - -#: ../../mod/siteinfo.php:98 -msgid "" -"This is a hub of the Red Matrix - a global cooperative network of " -"decentralised privacy enhanced websites." -msgstr "" - -#: ../../mod/siteinfo.php:101 -msgid "Running at web location" -msgstr "" - -#: ../../mod/siteinfo.php:102 -msgid "" -"Please visit GetZot.com to learn more " -"about the Red Matrix." -msgstr "" - -#: ../../mod/siteinfo.php:103 -msgid "Bug reports and issues: please visit" -msgstr "" - -#: ../../mod/siteinfo.php:106 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" -msgstr "" - -#: ../../mod/siteinfo.php:108 -msgid "Site Administrators" -msgstr "" - #: ../../mod/events.php:72 msgid "Event title and start time are required." msgstr "" @@ -6310,7 +5513,8 @@ msgstr "" msgid "Event Starts:" msgstr "" -#: ../../mod/events.php:462 ../../mod/events.php:476 +#: ../../mod/events.php:462 ../../mod/events.php:476 ../../mod/appman.php:83 +#: ../../mod/appman.php:84 msgid "Required" msgstr "" @@ -6338,843 +5542,6 @@ msgstr "" msgid "Share this event" msgstr "" -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "" - -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "" - -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "" - -#: ../../mod/sources.php:82 -msgid "*" -msgstr "" - -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "" - -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "" - -#: ../../mod/sources.php:101 ../../mod/sources.php:133 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "" - -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:110 -msgid "Channel Name" -msgstr "" - -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "" - -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "" - -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "" - -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "" - -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "" - -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "" - -#: ../../mod/filestorage.php:68 -msgid "Permission Denied." -msgstr "" - -#: ../../mod/filestorage.php:85 -msgid "File not found." -msgstr "" - -#: ../../mod/filestorage.php:121 -msgid "Edit file permissions" -msgstr "" - -#: ../../mod/filestorage.php:129 -msgid "Set/edit permissions" -msgstr "" - -#: ../../mod/filestorage.php:130 -msgid "Include all files and sub folders" -msgstr "" - -#: ../../mod/filestorage.php:131 -msgid "Return to file list" -msgstr "" - -#: ../../mod/filestorage.php:133 -msgid "Copy/paste this code to attach file to a post" -msgstr "" - -#: ../../mod/filestorage.php:134 -msgid "Copy/paste this URL to link file from a web page" -msgstr "" - -#: ../../mod/filestorage.php:171 -msgid "Download" -msgstr "" - -#: ../../mod/filestorage.php:177 -msgid "Used: " -msgstr "" - -#: ../../mod/filestorage.php:178 -msgid "[directory]" -msgstr "" - -#: ../../mod/filestorage.php:180 -msgid "Limit: " -msgstr "" - -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "" - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "" - -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "" - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "" - -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "" - -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "" - -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "" - -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "" - -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "" - -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "" - -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "" - -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "" - -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "" - -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "" - -#: ../../mod/group.php:196 -msgid "Members" -msgstr "" - -#: ../../mod/group.php:198 -msgid "All Connected Channels" -msgstr "" - -#: ../../mod/group.php:231 -msgid "Click on a channel to add or remove." -msgstr "" - -#: ../../mod/tagger.php:98 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "" - -#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55 -msgid "Help:" -msgstr "" - -#: ../../mod/help.php:69 ../../index.php:234 -msgid "Not Found" -msgstr "" - -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "" - -#: ../../mod/home.php:89 -#, php-format -msgid "Welcome to %s" -msgstr "" - -#: ../../mod/thing.php:98 -msgid "Thing updated" -msgstr "" - -#: ../../mod/thing.php:158 -msgid "Object store: failed" -msgstr "" - -#: ../../mod/thing.php:162 -msgid "Thing added" -msgstr "" - -#: ../../mod/thing.php:182 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "" - -#: ../../mod/thing.php:234 -msgid "Show Thing" -msgstr "" - -#: ../../mod/thing.php:241 -msgid "item not found." -msgstr "" - -#: ../../mod/thing.php:269 -msgid "Edit Thing" -msgstr "" - -#: ../../mod/thing.php:271 ../../mod/thing.php:318 -msgid "Select a profile" -msgstr "" - -#: ../../mod/thing.php:273 ../../mod/thing.php:320 -msgid "Select a category of stuff. e.g. I ______ something" -msgstr "" - -#: ../../mod/thing.php:275 ../../mod/thing.php:321 -msgid "Post an activity" -msgstr "" - -#: ../../mod/thing.php:275 ../../mod/thing.php:321 -msgid "Only sends to viewers of the applicable profile" -msgstr "" - -#: ../../mod/thing.php:277 ../../mod/thing.php:323 -msgid "Name of thing e.g. something" -msgstr "" - -#: ../../mod/thing.php:279 ../../mod/thing.php:324 -msgid "URL of thing (optional)" -msgstr "" - -#: ../../mod/thing.php:281 ../../mod/thing.php:325 -msgid "URL for photo of thing (optional)" -msgstr "" - -#: ../../mod/thing.php:316 -msgid "Add Thing to your Profile" -msgstr "" - -#: ../../mod/import.php:36 -msgid "Nothing to import." -msgstr "" - -#: ../../mod/import.php:58 -msgid "Unable to download data from old server" -msgstr "" - -#: ../../mod/import.php:64 -msgid "Imported file is empty." -msgstr "" - -#: ../../mod/import.php:88 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "" - -#: ../../mod/import.php:106 -msgid "Channel clone failed. Import failed." -msgstr "" - -#: ../../mod/import.php:116 -msgid "Cloned channel not found. Import failed." -msgstr "" - -#: ../../mod/import.php:358 -msgid "Import completed." -msgstr "" - -#: ../../mod/import.php:371 -msgid "You must be logged in to use this feature." -msgstr "" - -#: ../../mod/import.php:376 -msgid "Import Channel" -msgstr "" - -#: ../../mod/import.php:377 -msgid "" -"Use this form to import an existing channel from a different server/hub. You " -"may retrieve the channel identity from the old server/hub via the network or " -"provide an export file. Only identity and connections/relationships will be " -"imported. Importation of content is not yet available." -msgstr "" - -#: ../../mod/import.php:378 -msgid "File to Upload" -msgstr "" - -#: ../../mod/import.php:379 -msgid "Or provide the old server/hub details" -msgstr "" - -#: ../../mod/import.php:380 -msgid "Your old identity address (xyz@example.com)" -msgstr "" - -#: ../../mod/import.php:381 -msgid "Your old login email address" -msgstr "" - -#: ../../mod/import.php:382 -msgid "Your old login password" -msgstr "" - -#: ../../mod/import.php:383 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be " -"able to post from either location, but only one can be marked as the primary " -"location for files, photos, and media." -msgstr "" - -#: ../../mod/import.php:384 -msgid "Make this hub my primary location" -msgstr "" - -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "" - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "" - -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "" - -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "" - -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "" - -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "" - -#: ../../mod/invite.php:141 -msgid "Send invitations" -msgstr "" - -#: ../../mod/invite.php:142 -msgid "Enter email addresses, one per line:" -msgstr "" - -#: ../../mod/invite.php:143 ../../mod/mail.php:216 ../../mod/mail.php:328 -msgid "Your message:" -msgstr "" - -#: ../../mod/invite.php:144 -msgid "" -"You are cordially invited to join me and some other close friends on the Red " -"Matrix - a revolutionary new decentralised communication and information " -"tool." -msgstr "" - -#: ../../mod/invite.php:146 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "" - -#: ../../mod/invite.php:147 -msgid "Please visit my channel at" -msgstr "" - -#: ../../mod/invite.php:151 -msgid "" -"Once you have registered (on ANY Red Matrix site - they are all inter-" -"connected), please connect with my Red Matrix channel address:" -msgstr "" - -#: ../../mod/invite.php:153 -msgid "Click the [Register] link on the following page to join." -msgstr "" - -#: ../../mod/invite.php:155 -msgid "" -"For more information about the Red Matrix Project and why it has the " -"potential to change the internet as we know it, please visit http://getzot." -"com" -msgstr "" - -#: ../../mod/item.php:147 -msgid "Unable to locate original post." -msgstr "" - -#: ../../mod/item.php:352 -msgid "Empty post discarded." -msgstr "" - -#: ../../mod/item.php:392 -msgid "Executable content type not permitted to this channel." -msgstr "" - -#: ../../mod/item.php:806 -msgid "System error. Post not saved." -msgstr "" - -#: ../../mod/item.php:1249 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "" - -#: ../../mod/item.php:1255 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "" - -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 -msgid "[Embedded content - reload page to view]" -msgstr "" - -#: ../../mod/layouts.php:62 -msgid "Help with this feature" -msgstr "" - -#: ../../mod/layouts.php:84 -msgid "Layout Name" -msgstr "" - -#: ../../mod/lockview.php:30 ../../mod/lockview.php:36 -msgid "Remote privacy information not available." -msgstr "" - -#: ../../mod/lockview.php:45 -msgid "Visible to:" -msgstr "" - -#: ../../mod/viewconnections.php:58 -msgid "No connections." -msgstr "" - -#: ../../mod/viewconnections.php:70 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "" - -#: ../../mod/viewconnections.php:85 -msgid "View Connnections" -msgstr "" - -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "" - -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "" - -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 -#, php-format -msgid "Site Member (%s)" -msgstr "" - -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "" - -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "" - -#: ../../mod/lostpass.php:85 ../../boot.php:1461 -msgid "Password Reset" -msgstr "" - -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." -msgstr "" - -#: ../../mod/lostpass.php:87 -msgid "Your new password is" -msgstr "" - -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" -msgstr "" - -#: ../../mod/lostpass.php:89 -msgid "click here to login" -msgstr "" - -#: ../../mod/lostpass.php:90 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "" - -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has changed at %s" -msgstr "" - -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "" - -#: ../../mod/lostpass.php:123 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "" - -#: ../../mod/lostpass.php:124 -msgid "Email Address" -msgstr "" - -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "" - -#: ../../mod/magic.php:70 -msgid "Hub not found." -msgstr "" - -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "" - -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "" - -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "" - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "" - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "" - -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "" - -#: ../../mod/mail.php:121 ../../mod/message.php:31 -msgid "Messages" -msgstr "" - -#: ../../mod/mail.php:132 -msgid "Message deleted." -msgstr "" - -#: ../../mod/mail.php:149 -msgid "Message recalled." -msgstr "" - -#: ../../mod/mail.php:206 -msgid "Send Private Message" -msgstr "" - -#: ../../mod/mail.php:207 ../../mod/mail.php:323 -msgid "To:" -msgstr "" - -#: ../../mod/mail.php:212 ../../mod/mail.php:325 -msgid "Subject:" -msgstr "" - -#: ../../mod/mail.php:249 -msgid "Message not found." -msgstr "" - -#: ../../mod/mail.php:292 ../../mod/message.php:72 -msgid "Delete message" -msgstr "" - -#: ../../mod/mail.php:293 -msgid "Recall message" -msgstr "" - -#: ../../mod/mail.php:295 -msgid "Message has been recalled." -msgstr "" - -#: ../../mod/mail.php:312 -msgid "Private Conversation" -msgstr "" - -#: ../../mod/mail.php:316 -msgid "Delete conversation" -msgstr "" - -#: ../../mod/mail.php:318 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "" - -#: ../../mod/mail.php:322 -msgid "Send Reply" -msgstr "" - -#: ../../mod/manage.php:64 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "" - -#: ../../mod/manage.php:72 -msgid "Create a new channel" -msgstr "" - -#: ../../mod/manage.php:77 -msgid "Channel Manager" -msgstr "" - -#: ../../mod/manage.php:78 -msgid "Current Channel" -msgstr "" - -#: ../../mod/manage.php:80 -msgid "Attach to one of your channels by selecting it." -msgstr "" - -#: ../../mod/manage.php:81 -msgid "Default Channel" -msgstr "" - -#: ../../mod/manage.php:82 -msgid "Make Default" -msgstr "" - -#: ../../mod/wall_upload.php:34 -msgid "Wall Photos" -msgstr "" - -#: ../../mod/match.php:16 -msgid "Profile Match" -msgstr "" - -#: ../../mod/match.php:24 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "" - -#: ../../mod/match.php:61 -msgid "is interested in:" -msgstr "" - -#: ../../mod/match.php:69 -msgid "No matches" -msgstr "" - -#: ../../mod/menu.php:21 -msgid "Menu updated." -msgstr "" - -#: ../../mod/menu.php:25 -msgid "Unable to update menu." -msgstr "" - -#: ../../mod/menu.php:30 -msgid "Menu created." -msgstr "" - -#: ../../mod/menu.php:34 -msgid "Unable to create menu." -msgstr "" - -#: ../../mod/menu.php:57 -msgid "Manage Menus" -msgstr "" - -#: ../../mod/menu.php:60 -msgid "Drop" -msgstr "" - -#: ../../mod/menu.php:62 -msgid "Create a new menu" -msgstr "" - -#: ../../mod/menu.php:63 -msgid "Delete this menu" -msgstr "" - -#: ../../mod/menu.php:64 ../../mod/menu.php:109 -msgid "Edit menu contents" -msgstr "" - -#: ../../mod/menu.php:65 -msgid "Edit this menu" -msgstr "" - -#: ../../mod/menu.php:80 -msgid "New Menu" -msgstr "" - -#: ../../mod/menu.php:81 ../../mod/menu.php:110 -msgid "Menu name" -msgstr "" - -#: ../../mod/menu.php:81 ../../mod/menu.php:110 -msgid "Must be unique, only seen by you" -msgstr "" - -#: ../../mod/menu.php:82 ../../mod/menu.php:111 -msgid "Menu title" -msgstr "" - -#: ../../mod/menu.php:82 ../../mod/menu.php:111 -msgid "Menu title as seen by others" -msgstr "" - -#: ../../mod/menu.php:83 ../../mod/menu.php:112 -msgid "Allow bookmarks" -msgstr "" - -#: ../../mod/menu.php:83 ../../mod/menu.php:112 -msgid "Menu may be used to store saved bookmarks" -msgstr "" - -#: ../../mod/menu.php:98 -msgid "Menu deleted." -msgstr "" - -#: ../../mod/menu.php:100 -msgid "Menu could not be deleted." -msgstr "" - -#: ../../mod/menu.php:106 -msgid "Edit Menu" -msgstr "" - -#: ../../mod/menu.php:108 -msgid "Add or remove entries to this menu" -msgstr "" - -#: ../../mod/message.php:41 -msgid "Conversation removed." -msgstr "" - -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "" - -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "" - -#: ../../mod/new_channel.php:107 -msgid "Add a Channel" -msgstr "" - -#: ../../mod/new_channel.php:108 -msgid "" -"A channel is your own collection of related web pages. A channel can be used " -"to hold social network profiles, blogs, conversation groups and forums, " -"celebrity pages, and much more. You may create as many channels as your " -"service provider allows." -msgstr "" - -#: ../../mod/new_channel.php:111 -msgid "" -"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " -"Group\" " -msgstr "" - -#: ../../mod/new_channel.php:112 -msgid "Choose a short nickname" -msgstr "" - -#: ../../mod/new_channel.php:113 -msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." -msgstr "" - -#: ../../mod/new_channel.php:114 -msgid "" -"Or import an existing channel from another location" -msgstr "" - #: ../../mod/photos.php:77 msgid "Page owner information could not be retrieved." msgstr "" @@ -7302,203 +5669,1767 @@ msgstr "" msgid "Recent Photos" msgstr "" -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." +#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55 +msgid "Help:" msgstr "" -#: ../../mod/notifications.php:35 -msgid "Discard" +#: ../../mod/help.php:69 ../../index.php:234 +msgid "Not Found" msgstr "" -#: ../../mod/notifications.php:94 ../../mod/notify.php:54 -msgid "No more system notifications." +#: ../../mod/ping.php:192 +msgid "sent you a private message" msgstr "" -#: ../../mod/notifications.php:98 ../../mod/notify.php:58 -msgid "System Notifications" +#: ../../mod/ping.php:250 +msgid "added your channel" msgstr "" -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." +#: ../../mod/ping.php:294 +msgid "posted an event" msgstr "" -#: ../../mod/oexchange.php:37 -msgid "Post successful." +#: ../../mod/lostpass.php:15 +msgid "No valid account found." msgstr "" -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" +#: ../../mod/lostpass.php:29 +msgid "Password reset request issued. Check your email." +msgstr "" + +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#, php-format +msgid "Site Member (%s)" +msgstr "" + +#: ../../mod/lostpass.php:40 +#, php-format +msgid "Password reset requested at %s" +msgstr "" + +#: ../../mod/lostpass.php:63 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "" + +#: ../../mod/lostpass.php:85 ../../boot.php:1461 +msgid "Password Reset" +msgstr "" + +#: ../../mod/lostpass.php:86 +msgid "Your password has been reset as requested." +msgstr "" + +#: ../../mod/lostpass.php:87 +msgid "Your new password is" +msgstr "" + +#: ../../mod/lostpass.php:88 +msgid "Save or copy your new password - and then" +msgstr "" + +#: ../../mod/lostpass.php:89 +msgid "click here to login" +msgstr "" + +#: ../../mod/lostpass.php:90 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "" + +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has changed at %s" +msgstr "" + +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "" + +#: ../../mod/lostpass.php:123 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "" + +#: ../../mod/lostpass.php:124 +msgid "Email Address" +msgstr "" + +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "" + +#: ../../mod/removeme.php:49 +msgid "Remove This Channel" +msgstr "" + +#: ../../mod/removeme.php:50 +msgid "" +"This will completely remove this channel from the network. Once this has " +"been done it is not recoverable." +msgstr "" + +#: ../../mod/removeme.php:51 +msgid "Please enter your password for verification:" +msgstr "" + +#: ../../mod/removeme.php:52 +msgid "Remove this channel and all its clones from the network" +msgstr "" + +#: ../../mod/removeme.php:52 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "" + +#: ../../mod/removeme.php:53 +msgid "Remove Channel" +msgstr "" + +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "" + +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" +msgstr "" + +#: ../../mod/delegate.php:123 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "" + +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" +msgstr "" + +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "" + +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "" + +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "" + +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "" + +#: ../../mod/layouts.php:62 +msgid "Help with this feature" +msgstr "" + +#: ../../mod/layouts.php:84 +msgid "Layout Name" +msgstr "" + +#: ../../mod/connections.php:191 ../../mod/connections.php:291 +msgid "Blocked" +msgstr "" + +#: ../../mod/connections.php:196 ../../mod/connections.php:298 +msgid "Ignored" +msgstr "" + +#: ../../mod/connections.php:201 ../../mod/connections.php:312 +msgid "Hidden" +msgstr "" + +#: ../../mod/connections.php:206 ../../mod/connections.php:305 +msgid "Archived" +msgstr "" + +#: ../../mod/connections.php:230 ../../mod/connections.php:244 +msgid "All" +msgstr "" + +#: ../../mod/connections.php:239 ../../mod/connections.php:319 +msgid "Unconnected" +msgstr "" + +#: ../../mod/connections.php:269 +msgid "Suggest new connections" +msgstr "" + +#: ../../mod/connections.php:272 +msgid "New Connections" +msgstr "" + +#: ../../mod/connections.php:275 +msgid "Show pending (new) connections" +msgstr "" + +#: ../../mod/connections.php:281 +msgid "Show all connections" +msgstr "" + +#: ../../mod/connections.php:284 +msgid "Unblocked" +msgstr "" + +#: ../../mod/connections.php:287 +msgid "Only show unblocked connections" +msgstr "" + +#: ../../mod/connections.php:294 +msgid "Only show blocked connections" +msgstr "" + +#: ../../mod/connections.php:301 +msgid "Only show ignored connections" +msgstr "" + +#: ../../mod/connections.php:308 +msgid "Only show archived connections" +msgstr "" + +#: ../../mod/connections.php:315 +msgid "Only show hidden connections" +msgstr "" + +#: ../../mod/connections.php:322 +msgid "Only show one-way connections" +msgstr "" + +#: ../../mod/connections.php:367 +#, php-format +msgid "%1$s [%2$s]" +msgstr "" + +#: ../../mod/connections.php:368 +msgid "Edit contact" +msgstr "" + +#: ../../mod/connections.php:389 +msgid "Search your connections" +msgstr "" + +#: ../../mod/connections.php:390 +msgid "Finding: " +msgstr "" + +#: ../../mod/import.php:36 +msgid "Nothing to import." +msgstr "" + +#: ../../mod/import.php:58 +msgid "Unable to download data from old server" +msgstr "" + +#: ../../mod/import.php:64 +msgid "Imported file is empty." +msgstr "" + +#: ../../mod/import.php:88 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "" + +#: ../../mod/import.php:106 +msgid "Channel clone failed. Import failed." +msgstr "" + +#: ../../mod/import.php:116 +msgid "Cloned channel not found. Import failed." +msgstr "" + +#: ../../mod/import.php:358 +msgid "Import completed." +msgstr "" + +#: ../../mod/import.php:371 +msgid "You must be logged in to use this feature." +msgstr "" + +#: ../../mod/import.php:376 +msgid "Import Channel" +msgstr "" + +#: ../../mod/import.php:377 +msgid "" +"Use this form to import an existing channel from a different server/hub. You " +"may retrieve the channel identity from the old server/hub via the network or " +"provide an export file. Only identity and connections/relationships will be " +"imported. Importation of content is not yet available." +msgstr "" + +#: ../../mod/import.php:378 +msgid "File to Upload" +msgstr "" + +#: ../../mod/import.php:379 +msgid "Or provide the old server/hub details" +msgstr "" + +#: ../../mod/import.php:380 +msgid "Your old identity address (xyz@example.com)" +msgstr "" + +#: ../../mod/import.php:381 +msgid "Your old login email address" +msgstr "" + +#: ../../mod/import.php:382 +msgid "Your old login password" +msgstr "" + +#: ../../mod/import.php:383 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be " +"able to post from either location, but only one can be marked as the primary " +"location for files, photos, and media." +msgstr "" + +#: ../../mod/import.php:384 +msgid "Make this hub my primary location" +msgstr "" + +#: ../../mod/mood.php:138 +msgid "Mood" +msgstr "" + +#: ../../mod/mood.php:139 +msgid "Set your current mood and tell your friends" +msgstr "" + +#: ../../mod/chat.php:167 +msgid "Room not found" +msgstr "" + +#: ../../mod/chat.php:178 +msgid "Leave Room" +msgstr "" + +#: ../../mod/chat.php:179 +msgid "Delete This Room" +msgstr "" + +#: ../../mod/chat.php:180 +msgid "I am away right now" +msgstr "" + +#: ../../mod/chat.php:181 +msgid "I am online" +msgstr "" + +#: ../../mod/chat.php:183 +msgid "Bookmark this room" +msgstr "" + +#: ../../mod/chat.php:207 ../../mod/chat.php:229 +msgid "New Chatroom" +msgstr "" + +#: ../../mod/chat.php:208 +msgid "Chatroom Name" +msgstr "" + +#: ../../mod/chat.php:225 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "" + +#: ../../mod/editblock.php:77 +msgid "Edit Block" +msgstr "" + +#: ../../mod/editblock.php:87 +msgid "Delete block?" +msgstr "" + +#: ../../mod/editblock.php:153 +msgid "Delete Block" +msgstr "" + +#: ../../mod/match.php:16 +msgid "Profile Match" +msgstr "" + +#: ../../mod/match.php:24 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "" + +#: ../../mod/match.php:61 +msgid "is interested in:" +msgstr "" + +#: ../../mod/match.php:69 +msgid "No matches" +msgstr "" + +#: ../../mod/chatsvc.php:111 +msgid "Away" +msgstr "" + +#: ../../mod/chatsvc.php:115 +msgid "Online" +msgstr "" + +#: ../../mod/editwebpage.php:106 +msgid "Edit Webpage" +msgstr "" + +#: ../../mod/editwebpage.php:116 +msgid "Delete webpage?" +msgstr "" + +#: ../../mod/editwebpage.php:187 +msgid "Delete Webpage" +msgstr "" + +#: ../../mod/profiles.php:18 ../../mod/profiles.php:138 +#: ../../mod/profiles.php:168 ../../mod/profiles.php:463 +msgid "Profile not found." +msgstr "" + +#: ../../mod/profiles.php:38 +msgid "Profile deleted." +msgstr "" + +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" +msgstr "" + +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." +msgstr "" + +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." +msgstr "" + +#: ../../mod/profiles.php:178 +msgid "Profile Name is required." +msgstr "" + +#: ../../mod/profiles.php:294 +msgid "Marital Status" +msgstr "" + +#: ../../mod/profiles.php:298 +msgid "Romantic Partner" +msgstr "" + +#: ../../mod/profiles.php:302 +msgid "Likes" +msgstr "" + +#: ../../mod/profiles.php:306 +msgid "Dislikes" +msgstr "" + +#: ../../mod/profiles.php:310 +msgid "Work/Employment" +msgstr "" + +#: ../../mod/profiles.php:313 +msgid "Religion" +msgstr "" + +#: ../../mod/profiles.php:317 +msgid "Political Views" +msgstr "" + +#: ../../mod/profiles.php:321 +msgid "Gender" +msgstr "" + +#: ../../mod/profiles.php:325 +msgid "Sexual Preference" +msgstr "" + +#: ../../mod/profiles.php:329 +msgid "Homepage" +msgstr "" + +#: ../../mod/profiles.php:333 +msgid "Interests" +msgstr "" + +#: ../../mod/profiles.php:337 ../../mod/admin.php:891 +msgid "Address" +msgstr "" + +#: ../../mod/profiles.php:427 +msgid "Profile updated." +msgstr "" + +#: ../../mod/profiles.php:482 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "" + +#: ../../mod/profiles.php:505 +msgid "Edit Profile Details" +msgstr "" + +#: ../../mod/profiles.php:507 +msgid "View this profile" +msgstr "" + +#: ../../mod/profiles.php:508 +msgid "Change Profile Photo" +msgstr "" + +#: ../../mod/profiles.php:509 +msgid "Create a new profile using these settings" +msgstr "" + +#: ../../mod/profiles.php:510 +msgid "Clone this profile" +msgstr "" + +#: ../../mod/profiles.php:511 +msgid "Delete this profile" +msgstr "" + +#: ../../mod/profiles.php:512 +msgid "Profile Name:" +msgstr "" + +#: ../../mod/profiles.php:513 +msgid "Your Full Name:" +msgstr "" + +#: ../../mod/profiles.php:514 +msgid "Title/Description:" +msgstr "" + +#: ../../mod/profiles.php:515 +msgid "Your Gender:" +msgstr "" + +#: ../../mod/profiles.php:516 +#, php-format +msgid "Birthday (%s):" +msgstr "" + +#: ../../mod/profiles.php:517 +msgid "Street Address:" +msgstr "" + +#: ../../mod/profiles.php:518 +msgid "Locality/City:" +msgstr "" + +#: ../../mod/profiles.php:519 +msgid "Postal/Zip Code:" +msgstr "" + +#: ../../mod/profiles.php:520 +msgid "Country:" +msgstr "" + +#: ../../mod/profiles.php:521 +msgid "Region/State:" +msgstr "" + +#: ../../mod/profiles.php:522 +msgid " Marital Status:" +msgstr "" + +#: ../../mod/profiles.php:523 +msgid "Who: (if applicable)" +msgstr "" + +#: ../../mod/profiles.php:524 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "" + +#: ../../mod/profiles.php:525 +msgid "Since [date]:" +msgstr "" + +#: ../../mod/profiles.php:527 +msgid "Homepage URL:" +msgstr "" + +#: ../../mod/profiles.php:530 +msgid "Religious Views:" +msgstr "" + +#: ../../mod/profiles.php:531 +msgid "Keywords:" +msgstr "" + +#: ../../mod/profiles.php:534 +msgid "Example: fishing photography software" +msgstr "" + +#: ../../mod/profiles.php:535 +msgid "Used in directory listings" +msgstr "" + +#: ../../mod/profiles.php:536 +msgid "Tell us about yourself..." +msgstr "" + +#: ../../mod/profiles.php:537 +msgid "Hobbies/Interests" +msgstr "" + +#: ../../mod/profiles.php:538 +msgid "Contact information and Social Networks" +msgstr "" + +#: ../../mod/profiles.php:539 +msgid "My other channels" +msgstr "" + +#: ../../mod/profiles.php:540 +msgid "Musical interests" +msgstr "" + +#: ../../mod/profiles.php:541 +msgid "Books, literature" +msgstr "" + +#: ../../mod/profiles.php:542 +msgid "Television" +msgstr "" + +#: ../../mod/profiles.php:543 +msgid "Film/dance/culture/entertainment" +msgstr "" + +#: ../../mod/profiles.php:544 +msgid "Love/romance" +msgstr "" + +#: ../../mod/profiles.php:545 +msgid "Work/employment" +msgstr "" + +#: ../../mod/profiles.php:546 +msgid "School/education" +msgstr "" + +#: ../../mod/profiles.php:551 +msgid "" +"This is your public profile.
    It may " +"be visible to anybody using the internet." +msgstr "" + +#: ../../mod/profiles.php:600 +msgid "Edit/Manage Profiles" +msgstr "" + +#: ../../mod/profiles.php:601 +msgid "Add profile things" +msgstr "" + +#: ../../mod/profiles.php:602 +msgid "Include desirable objects in your profile" +msgstr "" + +#: ../../mod/menu.php:21 +msgid "Menu updated." +msgstr "" + +#: ../../mod/menu.php:25 +msgid "Unable to update menu." +msgstr "" + +#: ../../mod/menu.php:30 +msgid "Menu created." +msgstr "" + +#: ../../mod/menu.php:34 +msgid "Unable to create menu." +msgstr "" + +#: ../../mod/menu.php:57 +msgid "Manage Menus" +msgstr "" + +#: ../../mod/menu.php:60 +msgid "Drop" +msgstr "" + +#: ../../mod/menu.php:62 +msgid "Create a new menu" +msgstr "" + +#: ../../mod/menu.php:63 +msgid "Delete this menu" +msgstr "" + +#: ../../mod/menu.php:64 ../../mod/menu.php:109 +msgid "Edit menu contents" +msgstr "" + +#: ../../mod/menu.php:65 +msgid "Edit this menu" +msgstr "" + +#: ../../mod/menu.php:80 +msgid "New Menu" +msgstr "" + +#: ../../mod/menu.php:81 ../../mod/menu.php:110 +msgid "Menu name" +msgstr "" + +#: ../../mod/menu.php:81 ../../mod/menu.php:110 +msgid "Must be unique, only seen by you" +msgstr "" + +#: ../../mod/menu.php:82 ../../mod/menu.php:111 +msgid "Menu title" +msgstr "" + +#: ../../mod/menu.php:82 ../../mod/menu.php:111 +msgid "Menu title as seen by others" +msgstr "" + +#: ../../mod/menu.php:83 ../../mod/menu.php:112 +msgid "Allow bookmarks" +msgstr "" + +#: ../../mod/menu.php:83 ../../mod/menu.php:112 +msgid "Menu may be used to store saved bookmarks" +msgstr "" + +#: ../../mod/menu.php:98 +msgid "Menu deleted." +msgstr "" + +#: ../../mod/menu.php:100 +msgid "Menu could not be deleted." +msgstr "" + +#: ../../mod/menu.php:106 +msgid "Edit Menu" +msgstr "" + +#: ../../mod/menu.php:108 +msgid "Add or remove entries to this menu" msgstr "" #: ../../mod/openid.php:26 msgid "OpenID protocol error. No ID returned." msgstr "" -#: ../../mod/appman.php:13 +#: ../../mod/cloud.php:112 +msgid "Red Matrix - Guests: Username: {your email address}, Password: +++" +msgstr "" + +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." +msgstr "" + +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." +msgstr "" + +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." +msgstr "" + +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "" + +#: ../../mod/mail.php:132 +msgid "Message deleted." +msgstr "" + +#: ../../mod/mail.php:149 +msgid "Message recalled." +msgstr "" + +#: ../../mod/mail.php:206 +msgid "Send Private Message" +msgstr "" + +#: ../../mod/mail.php:207 ../../mod/mail.php:323 +msgid "To:" +msgstr "" + +#: ../../mod/mail.php:212 ../../mod/mail.php:325 +msgid "Subject:" +msgstr "" + +#: ../../mod/mail.php:216 ../../mod/mail.php:328 ../../mod/invite.php:143 +msgid "Your message:" +msgstr "" + +#: ../../mod/mail.php:249 +msgid "Message not found." +msgstr "" + +#: ../../mod/mail.php:293 +msgid "Recall message" +msgstr "" + +#: ../../mod/mail.php:295 +msgid "Message has been recalled." +msgstr "" + +#: ../../mod/mail.php:312 +msgid "Private Conversation" +msgstr "" + +#: ../../mod/mail.php:316 +msgid "Delete conversation" +msgstr "" + +#: ../../mod/mail.php:318 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "" + +#: ../../mod/mail.php:322 +msgid "Send Reply" +msgstr "" + +#: ../../mod/appman.php:27 +msgid "App installed." +msgstr "" + +#: ../../mod/appman.php:35 msgid "Malformed app." msgstr "" -#: ../../view/theme/apw/php/config.php:202 -#: ../../view/theme/apw/php/config.php:236 -msgid "Schema Default" +#: ../../mod/appman.php:72 +msgid "Embed code" msgstr "" -#: ../../view/theme/apw/php/config.php:203 -msgid "Sans-Serif" +#: ../../mod/appman.php:78 +msgid "Create App" msgstr "" -#: ../../view/theme/apw/php/config.php:204 -msgid "Monospace" +#: ../../mod/appman.php:83 +msgid "Name of app" +msgstr "" + +#: ../../mod/appman.php:84 +msgid "Location (URL) of app" +msgstr "" + +#: ../../mod/appman.php:85 ../../mod/rbmark.php:95 +msgid "Description" +msgstr "" + +#: ../../mod/appman.php:86 +msgid "Photo icon URL" +msgstr "" + +#: ../../mod/appman.php:86 +msgid "80 x 80 pixels - optional" +msgstr "" + +#: ../../mod/appman.php:87 +msgid "Version ID" +msgstr "" + +#: ../../mod/appman.php:88 +msgid "Price of app" +msgstr "" + +#: ../../mod/appman.php:89 +msgid "Location (URL) to purchase app" +msgstr "" + +#: ../../mod/poke.php:159 +msgid "Poke/Prod" +msgstr "" + +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" +msgstr "" + +#: ../../mod/poke.php:161 +msgid "Recipient" +msgstr "" + +#: ../../mod/poke.php:162 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: ../../mod/poke.php:165 +msgid "Make this post private" +msgstr "" + +#: ../../mod/viewconnections.php:58 +msgid "No connections." +msgstr "" + +#: ../../mod/viewconnections.php:70 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "" + +#: ../../mod/viewconnections.php:85 +msgid "View Connnections" +msgstr "" + +#: ../../mod/admin.php:52 +msgid "Theme settings updated." +msgstr "" + +#: ../../mod/admin.php:92 ../../mod/admin.php:440 +msgid "Site" +msgstr "" + +#: ../../mod/admin.php:93 +msgid "Accounts" +msgstr "" + +#: ../../mod/admin.php:94 ../../mod/admin.php:883 +msgid "Channels" +msgstr "" + +#: ../../mod/admin.php:95 ../../mod/admin.php:974 ../../mod/admin.php:1016 +msgid "Plugins" +msgstr "" + +#: ../../mod/admin.php:96 ../../mod/admin.php:1179 ../../mod/admin.php:1215 +msgid "Themes" +msgstr "" + +#: ../../mod/admin.php:97 ../../mod/admin.php:540 +msgid "Server" +msgstr "" + +#: ../../mod/admin.php:98 +msgid "DB updates" +msgstr "" + +#: ../../mod/admin.php:112 ../../mod/admin.php:119 ../../mod/admin.php:1302 +msgid "Logs" +msgstr "" + +#: ../../mod/admin.php:118 +msgid "Plugin Features" +msgstr "" + +#: ../../mod/admin.php:120 +msgid "User registrations waiting for confirmation" +msgstr "" + +#: ../../mod/admin.php:197 +msgid "Message queues" +msgstr "" + +#: ../../mod/admin.php:202 ../../mod/admin.php:439 ../../mod/admin.php:539 +#: ../../mod/admin.php:748 ../../mod/admin.php:882 ../../mod/admin.php:973 +#: ../../mod/admin.php:1015 ../../mod/admin.php:1178 ../../mod/admin.php:1214 +#: ../../mod/admin.php:1301 +msgid "Administration" +msgstr "" + +#: ../../mod/admin.php:203 +msgid "Summary" +msgstr "" + +#: ../../mod/admin.php:205 +msgid "Registered users" +msgstr "" + +#: ../../mod/admin.php:207 ../../mod/admin.php:543 +msgid "Pending registrations" +msgstr "" + +#: ../../mod/admin.php:208 +msgid "Version" +msgstr "" + +#: ../../mod/admin.php:210 ../../mod/admin.php:544 +msgid "Active plugins" +msgstr "" + +#: ../../mod/admin.php:360 +msgid "Site settings updated." +msgstr "" + +#: ../../mod/admin.php:391 +msgid "No special theme for accessibility" +msgstr "" + +#: ../../mod/admin.php:420 +msgid "Yes - with approval" +msgstr "" + +#: ../../mod/admin.php:426 +msgid "My site is not a public server" +msgstr "" + +#: ../../mod/admin.php:427 +msgid "My site has paid access only" +msgstr "" + +#: ../../mod/admin.php:428 +msgid "My site has free access only" +msgstr "" + +#: ../../mod/admin.php:429 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "" + +#: ../../mod/admin.php:442 ../../mod/register.php:189 +msgid "Registration" +msgstr "" + +#: ../../mod/admin.php:443 +msgid "File upload" +msgstr "" + +#: ../../mod/admin.php:444 +msgid "Policies" +msgstr "" + +#: ../../mod/admin.php:449 +msgid "Site name" +msgstr "" + +#: ../../mod/admin.php:450 +msgid "Banner/Logo" +msgstr "" + +#: ../../mod/admin.php:451 +msgid "Administrator Information" +msgstr "" + +#: ../../mod/admin.php:451 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "" + +#: ../../mod/admin.php:452 +msgid "System language" +msgstr "" + +#: ../../mod/admin.php:453 +msgid "System theme" +msgstr "" + +#: ../../mod/admin.php:453 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "" + +#: ../../mod/admin.php:454 +msgid "Mobile system theme" +msgstr "" + +#: ../../mod/admin.php:454 +msgid "Theme for mobile devices" +msgstr "" + +#: ../../mod/admin.php:455 +msgid "Accessibility system theme" +msgstr "" + +#: ../../mod/admin.php:455 +msgid "Accessibility theme" +msgstr "" + +#: ../../mod/admin.php:456 +msgid "Channel to use for this website's static pages" +msgstr "" + +#: ../../mod/admin.php:456 +msgid "Site Channel" +msgstr "" + +#: ../../mod/admin.php:458 +msgid "Maximum image size" +msgstr "" + +#: ../../mod/admin.php:458 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "" + +#: ../../mod/admin.php:459 +msgid "Does this site allow new member registration?" +msgstr "" + +#: ../../mod/admin.php:460 +msgid "Which best describes the types of account offered by this hub?" +msgstr "" + +#: ../../mod/admin.php:461 +msgid "Register text" +msgstr "" + +#: ../../mod/admin.php:461 +msgid "Will be displayed prominently on the registration page." +msgstr "" + +#: ../../mod/admin.php:462 +msgid "Accounts abandoned after x days" +msgstr "" + +#: ../../mod/admin.php:462 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "" + +#: ../../mod/admin.php:463 +msgid "Allowed friend domains" +msgstr "" + +#: ../../mod/admin.php:463 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "" + +#: ../../mod/admin.php:464 +msgid "Allowed email domains" +msgstr "" + +#: ../../mod/admin.php:464 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "" + +#: ../../mod/admin.php:465 +msgid "Block public" +msgstr "" + +#: ../../mod/admin.php:465 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "" + +#: ../../mod/admin.php:466 +msgid "Force publish" +msgstr "" + +#: ../../mod/admin.php:466 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" + +#: ../../mod/admin.php:467 +msgid "Disable discovery tab" +msgstr "" + +#: ../../mod/admin.php:467 +msgid "" +"Remove the tab in the network view with public content pulled from sources " +"chosen for this site." +msgstr "" + +#: ../../mod/admin.php:468 +msgid "No login on Homepage" +msgstr "" + +#: ../../mod/admin.php:468 +msgid "" +"Check to hide the login form from your sites homepage when visitors arrive " +"who are not logged in (e.g. when you put the content of the homepage in via " +"the site channel)." +msgstr "" + +#: ../../mod/admin.php:470 +msgid "Proxy user" +msgstr "" + +#: ../../mod/admin.php:471 +msgid "Proxy URL" +msgstr "" + +#: ../../mod/admin.php:472 +msgid "Network timeout" +msgstr "" + +#: ../../mod/admin.php:472 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: ../../mod/admin.php:473 +msgid "Delivery interval" +msgstr "" + +#: ../../mod/admin.php:473 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "" + +#: ../../mod/admin.php:474 +msgid "Poll interval" +msgstr "" + +#: ../../mod/admin.php:474 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "" + +#: ../../mod/admin.php:475 +msgid "Maximum Load Average" +msgstr "" + +#: ../../mod/admin.php:475 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "" + +#: ../../mod/admin.php:531 +msgid "No server found" +msgstr "" + +#: ../../mod/admin.php:538 ../../mod/admin.php:762 +msgid "ID" +msgstr "" + +#: ../../mod/admin.php:538 +msgid "for channel" +msgstr "" + +#: ../../mod/admin.php:538 +msgid "on server" +msgstr "" + +#: ../../mod/admin.php:538 +msgid "Status" +msgstr "" + +#: ../../mod/admin.php:559 +msgid "Update has been marked successful" +msgstr "" + +#: ../../mod/admin.php:569 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "" + +#: ../../mod/admin.php:572 +#, php-format +msgid "Update %s was successfully applied." +msgstr "" + +#: ../../mod/admin.php:576 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "" + +#: ../../mod/admin.php:579 +#, php-format +msgid "Update function %s could not be found." +msgstr "" + +#: ../../mod/admin.php:594 +msgid "No failed updates." +msgstr "" + +#: ../../mod/admin.php:598 +msgid "Failed Updates" +msgstr "" + +#: ../../mod/admin.php:600 +msgid "Mark success (if update was manually applied)" +msgstr "" + +#: ../../mod/admin.php:601 +msgid "Attempt to execute this update step automatically" +msgstr "" + +#: ../../mod/admin.php:627 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:634 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:665 +msgid "Account not found" +msgstr "" + +#: ../../mod/admin.php:676 +#, php-format +msgid "User '%s' deleted" +msgstr "" + +#: ../../mod/admin.php:685 +#, php-format +msgid "User '%s' unblocked" +msgstr "" + +#: ../../mod/admin.php:685 +#, php-format +msgid "User '%s' blocked" +msgstr "" + +#: ../../mod/admin.php:749 ../../mod/admin.php:761 +msgid "Users" +msgstr "" + +#: ../../mod/admin.php:751 ../../mod/admin.php:885 +msgid "select all" +msgstr "" + +#: ../../mod/admin.php:752 +msgid "User registrations waiting for confirm" +msgstr "" + +#: ../../mod/admin.php:753 +msgid "Request date" +msgstr "" + +#: ../../mod/admin.php:754 +msgid "No registrations." +msgstr "" + +#: ../../mod/admin.php:755 +msgid "Approve" +msgstr "" + +#: ../../mod/admin.php:756 +msgid "Deny" +msgstr "" + +#: ../../mod/admin.php:762 +msgid "Register date" +msgstr "" + +#: ../../mod/admin.php:762 +msgid "Last login" +msgstr "" + +#: ../../mod/admin.php:762 +msgid "Expires" +msgstr "" + +#: ../../mod/admin.php:762 +msgid "Service Class" +msgstr "" + +#: ../../mod/admin.php:764 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../mod/admin.php:765 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../mod/admin.php:797 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channelss censored/uncensored" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:804 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:823 +msgid "Channel not found" +msgstr "" + +#: ../../mod/admin.php:834 +#, php-format +msgid "Channel '%s' deleted" +msgstr "" + +#: ../../mod/admin.php:844 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "" + +#: ../../mod/admin.php:844 +#, php-format +msgid "Channel '%s' censored" +msgstr "" + +#: ../../mod/admin.php:887 +msgid "Censor" +msgstr "" + +#: ../../mod/admin.php:888 +msgid "Uncensor" +msgstr "" + +#: ../../mod/admin.php:891 +msgid "UID" +msgstr "" + +#: ../../mod/admin.php:893 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../mod/admin.php:894 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../mod/admin.php:933 +#, php-format +msgid "Plugin %s disabled." +msgstr "" + +#: ../../mod/admin.php:937 +#, php-format +msgid "Plugin %s enabled." +msgstr "" + +#: ../../mod/admin.php:947 ../../mod/admin.php:1149 +msgid "Disable" +msgstr "" + +#: ../../mod/admin.php:949 ../../mod/admin.php:1151 +msgid "Enable" +msgstr "" + +#: ../../mod/admin.php:975 ../../mod/admin.php:1180 +msgid "Toggle" +msgstr "" + +#: ../../mod/admin.php:983 ../../mod/admin.php:1190 +msgid "Author: " +msgstr "" + +#: ../../mod/admin.php:984 ../../mod/admin.php:1191 +msgid "Maintainer: " +msgstr "" + +#: ../../mod/admin.php:1113 +msgid "No themes found." +msgstr "" + +#: ../../mod/admin.php:1172 +msgid "Screenshot" +msgstr "" + +#: ../../mod/admin.php:1220 +msgid "[Experimental]" +msgstr "" + +#: ../../mod/admin.php:1221 +msgid "[Unsupported]" +msgstr "" + +#: ../../mod/admin.php:1248 +msgid "Log settings updated." +msgstr "" + +#: ../../mod/admin.php:1304 +msgid "Clear" +msgstr "" + +#: ../../mod/admin.php:1310 +msgid "Debugging" +msgstr "" + +#: ../../mod/admin.php:1311 +msgid "Log file" +msgstr "" + +#: ../../mod/admin.php:1311 +msgid "" +"Must be writable by web server. Relative to your Red top-level directory." +msgstr "" + +#: ../../mod/admin.php:1312 +msgid "Log level" +msgstr "" + +#: ../../mod/register.php:43 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "" + +#: ../../mod/register.php:49 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "" + +#: ../../mod/register.php:77 +msgid "Passwords do not match." +msgstr "" + +#: ../../mod/register.php:105 +msgid "" +"Registration successful. Please check your email for validation instructions." +msgstr "" + +#: ../../mod/register.php:111 +msgid "Your registration is pending approval by the site owner." +msgstr "" + +#: ../../mod/register.php:114 +msgid "Your registration can not be processed." +msgstr "" + +#: ../../mod/register.php:147 +msgid "Registration on this site/hub is by approval only." +msgstr "" + +#: ../../mod/register.php:148 +msgid "Register at another affiliated site/hub" +msgstr "" + +#: ../../mod/register.php:156 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "" + +#: ../../mod/register.php:167 +msgid "Terms of Service" +msgstr "" + +#: ../../mod/register.php:173 +#, php-format +msgid "I accept the %s for this website" +msgstr "" + +#: ../../mod/register.php:175 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "" + +#: ../../mod/register.php:194 +msgid "Membership on this site is by invitation only." +msgstr "" + +#: ../../mod/register.php:195 +msgid "Please enter your invitation code" +msgstr "" + +#: ../../mod/register.php:198 +msgid "Your email address" +msgstr "" + +#: ../../mod/register.php:199 +msgid "Choose a password" +msgstr "" + +#: ../../mod/register.php:200 +msgid "Please re-enter your password" +msgstr "" + +#: ../../mod/filer.php:49 +msgid "- select -" +msgstr "" + +#: ../../mod/manage.php:64 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "" + +#: ../../mod/manage.php:72 +msgid "Create a new channel" +msgstr "" + +#: ../../mod/manage.php:77 +msgid "Channel Manager" +msgstr "" + +#: ../../mod/manage.php:78 +msgid "Current Channel" +msgstr "" + +#: ../../mod/manage.php:80 +msgid "Attach to one of your channels by selecting it." +msgstr "" + +#: ../../mod/manage.php:81 +msgid "Default Channel" +msgstr "" + +#: ../../mod/manage.php:82 +msgid "Make Default" +msgstr "" + +#: ../../mod/invite.php:25 +msgid "Total invitation limit exceeded." +msgstr "" + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "" + +#: ../../mod/invite.php:76 +msgid "Please join us on Red" +msgstr "" + +#: ../../mod/invite.php:87 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "" + +#: ../../mod/invite.php:92 +#, php-format +msgid "%s : Message delivery failed." +msgstr "" + +#: ../../mod/invite.php:96 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/invite.php:115 +msgid "You have no more invitations available" +msgstr "" + +#: ../../mod/invite.php:141 +msgid "Send invitations" +msgstr "" + +#: ../../mod/invite.php:142 +msgid "Enter email addresses, one per line:" +msgstr "" + +#: ../../mod/invite.php:144 +msgid "" +"You are cordially invited to join me and some other close friends on the Red " +"Matrix - a revolutionary new decentralised communication and information " +"tool." +msgstr "" + +#: ../../mod/invite.php:146 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "" + +#: ../../mod/invite.php:147 +msgid "Please visit my channel at" +msgstr "" + +#: ../../mod/invite.php:151 +msgid "" +"Once you have registered (on ANY Red Matrix site - they are all inter-" +"connected), please connect with my Red Matrix channel address:" +msgstr "" + +#: ../../mod/invite.php:153 +msgid "Click the [Register] link on the following page to join." +msgstr "" + +#: ../../mod/invite.php:155 +msgid "" +"For more information about the Red Matrix Project and why it has the " +"potential to change the internet as we know it, please visit http://getzot." +"com" +msgstr "" + +#: ../../mod/wall_upload.php:34 +msgid "Wall Photos" +msgstr "" + +#: ../../mod/common.php:10 +msgid "No channel." +msgstr "" + +#: ../../mod/common.php:39 +msgid "Common connections" +msgstr "" + +#: ../../mod/common.php:44 +msgid "No connections in common." +msgstr "" + +#: ../../mod/regmod.php:12 +msgid "Please login." +msgstr "" + +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" +msgstr "" + +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" +msgstr "" + +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" +msgstr "" + +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "" + +#: ../../boot.php:1259 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "" + +#: ../../boot.php:1262 +#, php-format +msgid "Update Error at %s" +msgstr "" + +#: ../../boot.php:1426 +msgid "" +"Create an account to access services and applications within the Red Matrix" +msgstr "" + +#: ../../boot.php:1454 +msgid "Password" +msgstr "" + +#: ../../boot.php:1455 +msgid "Remember me" +msgstr "" + +#: ../../boot.php:1460 +msgid "Forgot your password?" +msgstr "" + +#: ../../boot.php:1525 +msgid "permission denied" +msgstr "" + +#: ../../boot.php:1526 +msgid "Got Zot?" +msgstr "" + +#: ../../boot.php:1956 +msgid "toggle mobile" msgstr "" -#: ../../view/theme/apw/php/config.php:259 -#: ../../view/theme/blogga/php/config.php:69 -#: ../../view/theme/blogga/view/theme/blog/config.php:69 #: ../../view/theme/redbasic/php/config.php:102 msgid "Theme settings" msgstr "" -#: ../../view/theme/apw/php/config.php:260 #: ../../view/theme/redbasic/php/config.php:103 msgid "Set scheme" msgstr "" -#: ../../view/theme/apw/php/config.php:261 -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set font-size for posts and comments" -msgstr "" - -#: ../../view/theme/apw/php/config.php:262 -msgid "Set font face" -msgstr "" - -#: ../../view/theme/apw/php/config.php:263 -msgid "Set iconset" -msgstr "" - -#: ../../view/theme/apw/php/config.php:264 -msgid "Set big shadow size, default 15px 15px 15px" -msgstr "" - -#: ../../view/theme/apw/php/config.php:265 -msgid "Set small shadow size, default 5px 5px 5px" -msgstr "" - -#: ../../view/theme/apw/php/config.php:266 -msgid "Set shadow colour, default #000" -msgstr "" - -#: ../../view/theme/apw/php/config.php:267 -msgid "Set radius size, default 5px" -msgstr "" - -#: ../../view/theme/apw/php/config.php:268 -msgid "Set line-height for posts and comments" -msgstr "" - -#: ../../view/theme/apw/php/config.php:269 -msgid "Set background image" -msgstr "" - -#: ../../view/theme/apw/php/config.php:270 -msgid "Set background attachment" -msgstr "" - -#: ../../view/theme/apw/php/config.php:271 -msgid "Set background colour" -msgstr "" - -#: ../../view/theme/apw/php/config.php:272 -msgid "Set section background image" -msgstr "" - -#: ../../view/theme/apw/php/config.php:273 -msgid "Set section background colour" -msgstr "" - -#: ../../view/theme/apw/php/config.php:274 -msgid "Set colour of items - use hex" -msgstr "" - -#: ../../view/theme/apw/php/config.php:275 -msgid "Set colour of links - use hex" -msgstr "" - -#: ../../view/theme/apw/php/config.php:276 -msgid "Set max-width for items. Default 400px" -msgstr "" - -#: ../../view/theme/apw/php/config.php:277 -msgid "Set min-width for items. Default 240px" -msgstr "" - -#: ../../view/theme/apw/php/config.php:278 -msgid "Set the generic content wrapper width. Default 48%" -msgstr "" - -#: ../../view/theme/apw/php/config.php:279 -msgid "Set colour of fonts - use hex" -msgstr "" - -#: ../../view/theme/apw/php/config.php:280 -msgid "Set background-size element" -msgstr "" - -#: ../../view/theme/apw/php/config.php:281 -msgid "Item opacity" -msgstr "" - -#: ../../view/theme/apw/php/config.php:282 -msgid "Display post previews only" -msgstr "" - -#: ../../view/theme/apw/php/config.php:283 -msgid "Display side bar on channel page" -msgstr "" - -#: ../../view/theme/apw/php/config.php:284 -msgid "Colour of the navigation bar" -msgstr "" - -#: ../../view/theme/apw/php/config.php:285 -msgid "Item float" -msgstr "" - -#: ../../view/theme/apw/php/config.php:286 -msgid "Left offset of the section element" -msgstr "" - -#: ../../view/theme/apw/php/config.php:287 -msgid "Right offset of the section element" -msgstr "" - -#: ../../view/theme/apw/php/config.php:288 -msgid "Section width" -msgstr "" - -#: ../../view/theme/apw/php/config.php:289 -msgid "Left offset of the aside" -msgstr "" - -#: ../../view/theme/apw/php/config.php:290 -msgid "Right offset of the aside element" -msgstr "" - -#: ../../view/theme/blogga/php/config.php:47 -#: ../../view/theme/blogga/view/theme/blog/config.php:47 -msgid "None" -msgstr "" - -#: ../../view/theme/blogga/php/config.php:70 -#: ../../view/theme/blogga/view/theme/blog/config.php:70 -msgid "Header image" -msgstr "" - -#: ../../view/theme/blogga/php/config.php:71 -#: ../../view/theme/blogga/view/theme/blog/config.php:71 -msgid "Header image only on profile pages" -msgstr "" - #: ../../view/theme/redbasic/php/config.php:104 msgid "Narrow navbar" msgstr "" @@ -7579,6 +7510,10 @@ msgstr "" msgid "Set font-size for the entire application" msgstr "" +#: ../../view/theme/redbasic/php/config.php:124 +msgid "Set font-size for posts and comments" +msgstr "" + #: ../../view/theme/redbasic/php/config.php:125 msgid "Set font-colour for posts and comments" msgstr "" @@ -7618,42 +7553,3 @@ msgstr "" #: ../../view/theme/redbasic/php/config.php:133 msgid "Are you a clean desk or a messy desk person?" msgstr "" - -#: ../../boot.php:1259 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "" - -#: ../../boot.php:1262 -#, php-format -msgid "Update Error at %s" -msgstr "" - -#: ../../boot.php:1426 -msgid "" -"Create an account to access services and applications within the Red Matrix" -msgstr "" - -#: ../../boot.php:1454 -msgid "Password" -msgstr "" - -#: ../../boot.php:1455 -msgid "Remember me" -msgstr "" - -#: ../../boot.php:1460 -msgid "Forgot your password?" -msgstr "" - -#: ../../boot.php:1525 -msgid "permission denied" -msgstr "" - -#: ../../boot.php:1526 -msgid "Got Zot?" -msgstr "" - -#: ../../boot.php:1956 -msgid "toggle mobile" -msgstr "" diff --git a/util/run_xgettext.sh b/util/run_xgettext.sh index 6fef46f67..3eca8a8b3 100755 --- a/util/run_xgettext.sh +++ b/util/run_xgettext.sh @@ -44,7 +44,7 @@ OPTS= # fi #fi -KEYWORDS="-k -kt:1 -kt:1,2c,2t -ktt:1,2" +KEYWORDS="-k -kt:1 -kt:1,2c,2t -ktt:1,2 -ktt:1,2,4c,4t" echo "extract strings to $OUTFILE.." diff --git a/util/strings.php b/util/strings.php index 2614d7fc2..ef15500f1 100644 --- a/util/strings.php +++ b/util/strings.php @@ -1,256 +1,83 @@ strings["Visible to everybody"] = ""; -$a->strings["show"] = ""; -$a->strings["don't show"] = ""; -$a->strings[" and "] = ""; -$a->strings["public profile"] = ""; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = ""; -$a->strings["Visit %1\$s's %2\$s"] = ""; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; -$a->strings["Public Timeline"] = ""; -$a->strings["Red Matrix Notification"] = ""; -$a->strings["Thank You,"] = ""; -$a->strings["%s Administrator"] = ""; -$a->strings["%s "] = ""; -$a->strings["[Red:Notify] New mail received at %s"] = ""; -$a->strings["%1\$s sent you a new private message at %2\$s."] = ""; -$a->strings["%1\$s sent you %2\$s."] = ""; -$a->strings["a private message"] = ""; -$a->strings["Please visit %s to view and/or reply to your private messages."] = ""; -$a->strings["%1\$s commented on [zrl=%2\$s]a %3\$s[/zrl]"] = ""; -$a->strings["%1\$s commented on [zrl=%2\$s]%3\$s's %4\$s[/zrl]"] = ""; -$a->strings["%1\$s commented on [zrl=%2\$s]your %3\$s[/zrl]"] = ""; -$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = ""; -$a->strings["%s commented on an item/conversation you have been following."] = ""; -$a->strings["Please visit %s to view and/or reply to the conversation."] = ""; -$a->strings["[Red:Notify] %s posted to your profile wall"] = ""; -$a->strings["%1\$s posted to your profile wall at %2\$s"] = ""; -$a->strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = ""; -$a->strings["[Red:Notify] %s tagged you"] = ""; -$a->strings["%1\$s tagged you at %2\$s"] = ""; -$a->strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = ""; -$a->strings["[Red:Notify] %1\$s poked you"] = ""; -$a->strings["%1\$s poked you at %2\$s"] = ""; -$a->strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = ""; -$a->strings["[Red:Notify] %s tagged your post"] = ""; -$a->strings["%1\$s tagged your post at %2\$s"] = ""; -$a->strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = ""; -$a->strings["[Red:Notify] Introduction received"] = ""; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = ""; -$a->strings["You've received [zrl=%1\$s]an introduction[/zrl] from %2\$s."] = ""; -$a->strings["You may visit their profile at %s"] = ""; -$a->strings["Please visit %s to approve or reject the introduction."] = ""; -$a->strings["[Red:Notify] Friend suggestion received"] = ""; -$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = ""; -$a->strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = ""; -$a->strings["Name:"] = ""; -$a->strings["Photo:"] = ""; -$a->strings["Please visit %s to approve or reject the suggestion."] = ""; -$a->strings["Connect"] = ""; -$a->strings["New window"] = ""; -$a->strings["Open the selected location in a different window or browser tab"] = ""; -$a->strings["Poke"] = ""; -$a->strings["View Status"] = ""; -$a->strings["View Profile"] = ""; -$a->strings["View Photos"] = ""; -$a->strings["Network Posts"] = ""; -$a->strings["Edit Contact"] = ""; -$a->strings["Send PM"] = ""; -$a->strings["Unknown | Not categorised"] = ""; -$a->strings["Block immediately"] = ""; -$a->strings["Shady, spammer, self-marketer"] = ""; -$a->strings["Known to me, but no opinion"] = ""; -$a->strings["OK, probably harmless"] = ""; -$a->strings["Reputable, has my trust"] = ""; -$a->strings["Frequently"] = ""; -$a->strings["Hourly"] = ""; -$a->strings["Twice daily"] = ""; -$a->strings["Daily"] = ""; -$a->strings["Weekly"] = ""; -$a->strings["Monthly"] = ""; -$a->strings["Friendica"] = ""; -$a->strings["OStatus"] = ""; -$a->strings["RSS/Atom"] = ""; -$a->strings["Email"] = ""; -$a->strings["Diaspora"] = ""; -$a->strings["Facebook"] = ""; -$a->strings["Zot!"] = ""; -$a->strings["LinkedIn"] = ""; -$a->strings["XMPP/IM"] = ""; -$a->strings["MySpace"] = ""; -$a->strings["Add New Connection"] = ""; -$a->strings["Enter the channel address"] = ""; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = ""; -$a->strings["%d invitation available"] = array( - 0 => "", - 1 => "", -); -$a->strings["Find Channels"] = ""; -$a->strings["Enter name or interest"] = ""; -$a->strings["Connect/Follow"] = ""; -$a->strings["Examples: Robert Morgenstein, Fishing"] = ""; -$a->strings["Find"] = ""; -$a->strings["Channel Suggestions"] = ""; -$a->strings["Similar Interests"] = ""; -$a->strings["Random Profile"] = ""; -$a->strings["Invite Friends"] = ""; -$a->strings["Saved Folders"] = ""; -$a->strings["Everything"] = ""; -$a->strings["Categories"] = ""; -$a->strings["%d connection in common"] = array( - 0 => "", - 1 => "", -); -$a->strings["show more"] = ""; -$a->strings["Miscellaneous"] = ""; -$a->strings["year"] = ""; -$a->strings["month"] = ""; -$a->strings["day"] = ""; -$a->strings["never"] = ""; -$a->strings["less than a second ago"] = ""; -$a->strings["years"] = ""; -$a->strings["months"] = ""; -$a->strings["week"] = ""; -$a->strings["weeks"] = ""; -$a->strings["days"] = ""; -$a->strings["hour"] = ""; -$a->strings["hours"] = ""; -$a->strings["minute"] = ""; -$a->strings["minutes"] = ""; -$a->strings["second"] = ""; -$a->strings["seconds"] = ""; -$a->strings["%1\$d %2\$s ago"] = ""; -$a->strings["Cannot locate DNS info for database server '%s'"] = ""; +$a->strings["Channel is blocked on this site."] = ""; +$a->strings["Channel location missing."] = ""; +$a->strings["Response from remote channel was incomplete."] = ""; +$a->strings["Channel was deleted and no longer exists."] = ""; +$a->strings["Channel discovery failed."] = ""; +$a->strings["local account not found."] = ""; +$a->strings["Cannot connect to yourself."] = ""; +$a->strings["Edit File properties"] = ""; $a->strings["l F d, Y \\@ g:i A"] = ""; $a->strings["Starts:"] = ""; $a->strings["Finishes:"] = ""; $a->strings["Location:"] = ""; -$a->strings["General Features"] = ""; -$a->strings["Content Expiration"] = ""; -$a->strings["Remove old posts/comments after a period of time"] = ""; -$a->strings["Multiple Profiles"] = ""; -$a->strings["Ability to create multiple profiles"] = ""; -$a->strings["Web Pages"] = ""; -$a->strings["Provide managed web pages on your channel"] = ""; -$a->strings["Enhanced Photo Albums"] = ""; -$a->strings["Enable photo album with enhanced features"] = ""; -$a->strings["Extended Identity Sharing"] = ""; -$a->strings[" "] = ""; -$a->strings["Expert Mode"] = ""; -$a->strings["Enable Expert Mode to provide advanced configuration options"] = ""; -$a->strings["Post Composition Features"] = ""; -$a->strings["Richtext Editor"] = ""; -$a->strings["Enable richtext editor"] = ""; -$a->strings["Post Preview"] = ""; -$a->strings["Allow previewing posts and comments before publishing them"] = ""; -$a->strings["Network and Stream Filtering"] = ""; -$a->strings["Search by Date"] = ""; -$a->strings["Ability to select posts by date ranges"] = ""; -$a->strings["Collections Filter"] = ""; -$a->strings["Enable widget to display Network posts only from selected collections"] = ""; +$a->strings["Categories"] = ""; +$a->strings["App Category"] = ""; +$a->strings["System"] = ""; +$a->strings["Personal"] = ""; +$a->strings["Connect"] = ""; +$a->strings["Ignore/Hide"] = ""; +$a->strings["Suggestions"] = ""; +$a->strings["See more..."] = ""; +$a->strings["You have %1$.0f of %2$.0f allowed connections."] = ""; +$a->strings["Add New Connection"] = ""; +$a->strings["Enter the channel address"] = ""; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = ""; +$a->strings["Notes"] = ""; +$a->strings["Save"] = ""; +$a->strings["Remove term"] = ""; $a->strings["Saved Searches"] = ""; -$a->strings["Save search terms for re-use"] = ""; -$a->strings["Network Personal Tab"] = ""; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = ""; -$a->strings["Network New Tab"] = ""; -$a->strings["Enable tab to display all new Network activity"] = ""; -$a->strings["Affinity Tool"] = ""; -$a->strings["Filter stream activity by depth of relationships"] = ""; -$a->strings["Post/Comment Tools"] = ""; -$a->strings["Multiple Deletion"] = ""; -$a->strings["Select and delete multiple posts/comments at once"] = ""; -$a->strings["Edit Sent Posts"] = ""; -$a->strings["Edit and correct posts and comments after sending"] = ""; -$a->strings["Tagging"] = ""; -$a->strings["Ability to tag existing posts"] = ""; -$a->strings["Post Categories"] = ""; -$a->strings["Add categories to your posts"] = ""; -$a->strings["Ability to file posts under folders"] = ""; -$a->strings["Dislike Posts"] = ""; -$a->strings["Ability to dislike posts/comments"] = ""; -$a->strings["Star Posts"] = ""; -$a->strings["Ability to mark special posts with a star indicator"] = ""; -$a->strings["Tag Cloud"] = ""; -$a->strings["Provide a personal tag cloud on your channel page"] = ""; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = ""; -$a->strings["Default privacy group for new contacts"] = ""; -$a->strings["All Channels"] = ""; -$a->strings["edit"] = ""; -$a->strings["Collections"] = ""; -$a->strings["Edit collection"] = ""; -$a->strings["Create a new collection"] = ""; -$a->strings["Channels not in any collection"] = ""; $a->strings["add"] = ""; -$a->strings["Delete this item?"] = ""; -$a->strings["Comment"] = ""; -$a->strings["show fewer"] = ""; -$a->strings["Password too short"] = ""; -$a->strings["Passwords do not match"] = ""; -$a->strings["everybody"] = ""; -$a->strings["timeago.prefixAgo"] = ""; -$a->strings["timeago.suffixAgo"] = ""; -$a->strings["ago"] = ""; -$a->strings["from now"] = ""; -$a->strings["less than a minute"] = ""; -$a->strings["about a minute"] = ""; -$a->strings["%d minutes"] = ""; -$a->strings["about an hour"] = ""; -$a->strings["about %d hours"] = ""; -$a->strings["a day"] = ""; -$a->strings["%d days"] = ""; -$a->strings["about a month"] = ""; -$a->strings["%d months"] = ""; -$a->strings["about a year"] = ""; -$a->strings["%d years"] = ""; -$a->strings["timeago.numbers"] = ""; -$a->strings["No recipient provided."] = ""; -$a->strings["[no subject]"] = ""; -$a->strings["Unable to determine sender."] = ""; -$a->strings["Stored post could not be verified."] = ""; -$a->strings["view full size"] = ""; -$a->strings["Profile Photos"] = ""; -$a->strings["Profile"] = ""; -$a->strings["Full Name:"] = ""; -$a->strings["Gender:"] = ""; -$a->strings["j F, Y"] = ""; -$a->strings["j F"] = ""; -$a->strings["Birthday:"] = ""; -$a->strings["Age:"] = ""; -$a->strings["Status:"] = ""; -$a->strings["for %1\$d %2\$s"] = ""; -$a->strings["Sexual Preference:"] = ""; -$a->strings["Homepage:"] = ""; -$a->strings["Hometown:"] = ""; -$a->strings["Tags:"] = ""; -$a->strings["Political Views:"] = ""; -$a->strings["Religion:"] = ""; -$a->strings["About:"] = ""; -$a->strings["Hobbies/Interests:"] = ""; -$a->strings["Likes:"] = ""; -$a->strings["Dislikes:"] = ""; -$a->strings["Contact information and Social Networks:"] = ""; -$a->strings["Musical interests:"] = ""; -$a->strings["Books, literature:"] = ""; -$a->strings["Television:"] = ""; -$a->strings["Film/dance/culture/entertainment:"] = ""; -$a->strings["Love/Romance:"] = ""; -$a->strings["Work/employment:"] = ""; -$a->strings["School/education:"] = ""; -$a->strings["Welcome "] = ""; -$a->strings["Please upload a profile photo."] = ""; -$a->strings["Welcome back "] = ""; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = ""; +$a->strings["Saved Folders"] = ""; +$a->strings["Everything"] = ""; +$a->strings["Archives"] = ""; +$a->strings["Refresh"] = ""; +$a->strings["Me"] = ""; +$a->strings["Best Friends"] = ""; +$a->strings["Friends"] = ""; +$a->strings["Co-workers"] = ""; +$a->strings["Former Friends"] = ""; +$a->strings["Acquaintances"] = ""; +$a->strings["Everybody"] = ""; +$a->strings["Account settings"] = ""; +$a->strings["Channel settings"] = ""; +$a->strings["Additional features"] = ""; +$a->strings["Feature settings"] = ""; +$a->strings["Display settings"] = ""; +$a->strings["Connected apps"] = ""; +$a->strings["Export channel"] = ""; +$a->strings["Automatic Permissions (Advanced)"] = ""; +$a->strings["Premium Channel Settings"] = ""; +$a->strings["Channel Sources"] = ""; +$a->strings["Settings"] = ""; +$a->strings["Check Mail"] = ""; +$a->strings["New Message"] = ""; +$a->strings["Chat Rooms"] = ""; +$a->strings["Bookmarked Chatrooms"] = ""; +$a->strings["Suggested Chatrooms"] = ""; +$a->strings["Public Timeline"] = ""; $a->strings["Logout"] = ""; $a->strings["End this session"] = ""; $a->strings["Home"] = ""; $a->strings["Your posts and conversations"] = ""; +$a->strings["View Profile"] = ""; $a->strings["Your profile page"] = ""; $a->strings["Edit Profiles"] = ""; -$a->strings["Manage/Edit Profiles"] = ""; +$a->strings["Manage/Edit profiles"] = ""; $a->strings["Photos"] = ""; $a->strings["Your photos"] = ""; +$a->strings["Files"] = ""; +$a->strings["Your files"] = ""; +$a->strings["Chat"] = ""; +$a->strings["Your chatrooms"] = ""; +$a->strings["Events"] = ""; +$a->strings["Your events"] = ""; +$a->strings["Bookmarks"] = ""; +$a->strings["Your bookmarks"] = ""; +$a->strings["Webpages"] = ""; +$a->strings["Your webpages"] = ""; $a->strings["Login"] = ""; $a->strings["Sign in"] = ""; $a->strings["%s - click to logout"] = ""; @@ -267,14 +94,12 @@ $a->strings["Search site content"] = ""; $a->strings["Directory"] = ""; $a->strings["Channel Locator"] = ""; $a->strings["Matrix"] = ""; -$a->strings["Conversations from your grid"] = ""; -$a->strings["See all matrix notifications"] = ""; +$a->strings["Your matrix"] = ""; $a->strings["Mark all matrix notifications seen"] = ""; -$a->strings["See all channel notifications"] = ""; +$a->strings["Channel Home"] = ""; +$a->strings["Channel home"] = ""; $a->strings["Mark all channel notifications seen"] = ""; -$a->strings["Intros"] = ""; -$a->strings["New Connections"] = ""; -$a->strings["See all channel introductions"] = ""; +$a->strings["Connections"] = ""; $a->strings["Notices"] = ""; $a->strings["Notifications"] = ""; $a->strings["See all notifications"] = ""; @@ -285,32 +110,296 @@ $a->strings["See all private messages"] = ""; $a->strings["Mark all private messages seen"] = ""; $a->strings["Inbox"] = ""; $a->strings["Outbox"] = ""; -$a->strings["New Message"] = ""; -$a->strings["Events"] = ""; $a->strings["Event Calendar"] = ""; $a->strings["See all events"] = ""; $a->strings["Mark all events seen"] = ""; $a->strings["Channel Select"] = ""; $a->strings["Manage Your Channels"] = ""; -$a->strings["Settings"] = ""; $a->strings["Account/Channel Settings"] = ""; -$a->strings["Connections"] = ""; $a->strings["Manage/Edit Friends and Connections"] = ""; $a->strings["Admin"] = ""; $a->strings["Site Setup and Configuration"] = ""; $a->strings["Nothing new here"] = ""; $a->strings["Please wait..."] = ""; -$a->strings["created a new post"] = ""; -$a->strings["commented on %s's post"] = ""; $a->strings["Embedded content"] = ""; $a->strings["Embedding disabled"] = ""; +$a->strings["Image/photo"] = ""; +$a->strings["Encrypted content"] = ""; +$a->strings["QR code"] = ""; +$a->strings["%1\$s wrote the following %2\$s %3\$s"] = ""; +$a->strings["post"] = ""; +$a->strings["$1 wrote:"] = ""; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = ""; +$a->strings["Default privacy group for new contacts"] = ""; +$a->strings["All Channels"] = ""; +$a->strings["edit"] = ""; +$a->strings["Collections"] = ""; +$a->strings["Edit collection"] = ""; +$a->strings["Create a new collection"] = ""; +$a->strings["Channels not in any collection"] = ""; +$a->strings["photo"] = ""; +$a->strings["event"] = ""; +$a->strings["channel"] = ""; +$a->strings["status"] = ""; +$a->strings["comment"] = ""; +$a->strings["%1\$s likes %2\$s's %3\$s"] = ""; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = ""; +$a->strings["%1\$s is now connected with %2\$s"] = ""; +$a->strings["%1\$s poked %2\$s"] = ""; +$a->strings["poked"] = ""; +$a->strings["%1\$s is currently %2\$s"] = ""; +$a->strings["Select"] = ""; +$a->strings["Delete"] = ""; +$a->strings["Private Message"] = ""; +$a->strings["Message is verified"] = ""; +$a->strings["View %s's profile @ %s"] = ""; +$a->strings["Categories:"] = ""; +$a->strings["Filed under:"] = ""; +$a->strings[" from %s"] = ""; +$a->strings["last edited: %s"] = ""; +$a->strings["Expires: %s"] = ""; +$a->strings["View in context"] = ""; +$a->strings["Please wait"] = ""; +$a->strings["remove"] = ""; +$a->strings["Loading..."] = ""; +$a->strings["Delete Selected Items"] = ""; +$a->strings["View Source"] = ""; +$a->strings["Follow Thread"] = ""; +$a->strings["View Status"] = ""; +$a->strings["View Photos"] = ""; +$a->strings["Matrix Activity"] = ""; +$a->strings["Edit Contact"] = ""; +$a->strings["Send PM"] = ""; +$a->strings["Poke"] = ""; +$a->strings["%s likes this."] = ""; +$a->strings["%s doesn't like this."] = ""; +$a->strings["%2\$d people like this."] = array( + 0 => "", + 1 => "", +); +$a->strings["%2\$d people don't like this."] = array( + 0 => "", + 1 => "", +); +$a->strings["and"] = ""; +$a->strings[", and %d other people"] = array( + 0 => "", + 1 => "", +); +$a->strings["%s like this."] = ""; +$a->strings["%s don't like this."] = ""; +$a->strings["Visible to everybody"] = ""; +$a->strings["Please enter a link URL:"] = ""; +$a->strings["Please enter a video link/URL:"] = ""; +$a->strings["Please enter an audio link/URL:"] = ""; +$a->strings["Tag term:"] = ""; +$a->strings["Save to Folder:"] = ""; +$a->strings["Where are you right now?"] = ""; +$a->strings["Expires YYYY-MM-DD HH:MM"] = ""; +$a->strings["Preview"] = ""; +$a->strings["Share"] = ""; +$a->strings["Page link title"] = ""; +$a->strings["Post as"] = ""; +$a->strings["Upload photo"] = ""; +$a->strings["upload photo"] = ""; +$a->strings["Attach file"] = ""; +$a->strings["attach file"] = ""; +$a->strings["Insert web link"] = ""; +$a->strings["web link"] = ""; +$a->strings["Insert video link"] = ""; +$a->strings["video link"] = ""; +$a->strings["Insert audio link"] = ""; +$a->strings["audio link"] = ""; +$a->strings["Set your location"] = ""; +$a->strings["set location"] = ""; +$a->strings["Clear browser location"] = ""; +$a->strings["clear location"] = ""; +$a->strings["Set title"] = ""; +$a->strings["Categories (comma-separated list)"] = ""; +$a->strings["Permission settings"] = ""; +$a->strings["permissions"] = ""; +$a->strings["Public post"] = ""; +$a->strings["Example: bob@example.com, mary@example.com"] = ""; +$a->strings["Set expiration date"] = ""; +$a->strings["Encrypt text"] = ""; +$a->strings["OK"] = ""; +$a->strings["Cancel"] = ""; +$a->strings["Discover"] = ""; +$a->strings["Imported public streams"] = ""; +$a->strings["Commented Order"] = ""; +$a->strings["Sort by Comment Date"] = ""; +$a->strings["Posted Order"] = ""; +$a->strings["Sort by Post Date"] = ""; +$a->strings["Posts that mention or involve you"] = ""; +$a->strings["New"] = ""; +$a->strings["Activity Stream - by date"] = ""; +$a->strings["Starred"] = ""; +$a->strings["Favourite Posts"] = ""; +$a->strings["Spam"] = ""; +$a->strings["Posts flagged as SPAM"] = ""; +$a->strings["Channel"] = ""; +$a->strings["Status Messages and Posts"] = ""; +$a->strings["About"] = ""; +$a->strings["Profile Details"] = ""; +$a->strings["Photo Albums"] = ""; +$a->strings["Files and Storage"] = ""; +$a->strings["Chatrooms"] = ""; +$a->strings["Events and Calendar"] = ""; +$a->strings["Saved Bookmarks"] = ""; +$a->strings["Manage Webpages"] = ""; +$a->strings["Default"] = ""; +$a->strings["No recipient provided."] = ""; +$a->strings["[no subject]"] = ""; +$a->strings["Unable to determine sender."] = ""; +$a->strings["Stored post could not be verified."] = ""; +$a->strings[" and "] = ""; +$a->strings["public profile"] = ""; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = ""; +$a->strings["Visit %1\$s's %2\$s"] = ""; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; +$a->strings["view full size"] = ""; +$a->strings["%1\$s's bookmarks"] = ""; +$a->strings["Tags"] = ""; +$a->strings["Keywords"] = ""; +$a->strings["have"] = ""; +$a->strings["has"] = ""; +$a->strings["want"] = ""; +$a->strings["wants"] = ""; +$a->strings["like"] = ""; +$a->strings["likes"] = ""; +$a->strings["dislike"] = ""; +$a->strings["dislikes"] = ""; +$a->strings["Edit"] = ""; +$a->strings["save to folder"] = ""; +$a->strings["View all"] = ""; +$a->strings["__ctx:noun__ Like"] = array( + 0 => "", + 1 => "", +); +$a->strings["__ctx:noun__ Dislike"] = array( + 0 => "", + 1 => "", +); +$a->strings["add star"] = ""; +$a->strings["remove star"] = ""; +$a->strings["toggle star status"] = ""; +$a->strings["starred"] = ""; +$a->strings["add tag"] = ""; +$a->strings["I like this (toggle)"] = ""; +$a->strings["I don't like this (toggle)"] = ""; +$a->strings["Share this"] = ""; +$a->strings["share"] = ""; +$a->strings["View %s's profile - %s"] = ""; +$a->strings["to"] = ""; +$a->strings["via"] = ""; +$a->strings["Wall-to-Wall"] = ""; +$a->strings["via Wall-To-Wall:"] = ""; +$a->strings["Bookmark Links"] = ""; +$a->strings["__ctx:noun__ Likes"] = ""; +$a->strings["__ctx:noun__ Dislikes"] = ""; +$a->strings["Close"] = ""; +$a->strings["%d comment"] = array( + 0 => "", + 1 => "", +); +$a->strings["show more"] = ""; +$a->strings["This is you"] = ""; +$a->strings["Comment"] = ""; +$a->strings["Submit"] = ""; +$a->strings["Bold"] = ""; +$a->strings["Italic"] = ""; +$a->strings["Underline"] = ""; +$a->strings["Quote"] = ""; +$a->strings["Code"] = ""; +$a->strings["Image"] = ""; +$a->strings["Link"] = ""; +$a->strings["Video"] = ""; +$a->strings["Permission denied"] = ""; +$a->strings["(Unknown)"] = ""; +$a->strings["Item not found."] = ""; $a->strings["Permission denied."] = ""; +$a->strings["Collection not found."] = ""; +$a->strings["Collection is empty."] = ""; +$a->strings["Collection: %s"] = ""; +$a->strings["Connection: %s"] = ""; +$a->strings["Connection not found."] = ""; +$a->strings["Sort Options"] = ""; +$a->strings["Alphabetic"] = ""; +$a->strings["Reverse Alphabetic"] = ""; +$a->strings["Newest to Oldest"] = ""; +$a->strings["Enable Safe Search"] = ""; +$a->strings["Disable Safe Search"] = ""; +$a->strings["Safe Mode"] = ""; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = ""; +$a->strings["created a new post"] = ""; +$a->strings["commented on %s's post"] = ""; +$a->strings["Red Matrix Notification"] = ""; +$a->strings["redmatrix"] = ""; +$a->strings["Thank You,"] = ""; +$a->strings["%s Administrator"] = ""; +$a->strings["%s "] = ""; +$a->strings["[Red:Notify] New mail received at %s"] = ""; +$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = ""; +$a->strings["%1\$s sent you %2\$s."] = ""; +$a->strings["a private message"] = ""; +$a->strings["Please visit %s to view and/or reply to your private messages."] = ""; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = ""; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = ""; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = ""; +$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = ""; +$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = ""; +$a->strings["Please visit %s to view and/or reply to the conversation."] = ""; +$a->strings["[Red:Notify] %s posted to your profile wall"] = ""; +$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = ""; +$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = ""; +$a->strings["[Red:Notify] %s tagged you"] = ""; +$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = ""; +$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = ""; +$a->strings["[Red:Notify] %1\$s poked you"] = ""; +$a->strings["%1\$s, %2\$s poked you at %3\$s"] = ""; +$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = ""; +$a->strings["[Red:Notify] %s tagged your post"] = ""; +$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = ""; +$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = ""; +$a->strings["[Red:Notify] Introduction received"] = ""; +$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = ""; +$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = ""; +$a->strings["You may visit their profile at %s"] = ""; +$a->strings["Please visit %s to approve or reject the connection request."] = ""; +$a->strings["[Red:Notify] Friend suggestion received"] = ""; +$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = ""; +$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = ""; +$a->strings["Name:"] = ""; +$a->strings["Photo:"] = ""; +$a->strings["Please visit %s to approve or reject the suggestion."] = ""; +$a->strings["Item was not found."] = ""; +$a->strings["No source file."] = ""; +$a->strings["Cannot locate file to replace"] = ""; +$a->strings["Cannot locate file to revise/update"] = ""; +$a->strings["File exceeds size limit of %d"] = ""; +$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = ""; +$a->strings["File upload failed. Possible system limit or action terminated."] = ""; +$a->strings["Stored file could not be verified. Upload failed."] = ""; +$a->strings["Path not available."] = ""; +$a->strings["Empty pathname"] = ""; +$a->strings["duplicate filename or path"] = ""; +$a->strings["Path not found."] = ""; +$a->strings["mkdir failed."] = ""; +$a->strings["database storage failed."] = ""; +$a->strings["New Page"] = ""; +$a->strings["View"] = ""; +$a->strings["Actions"] = ""; +$a->strings["Page Link"] = ""; +$a->strings["Title"] = ""; +$a->strings["Created"] = ""; +$a->strings["Edited"] = ""; +$a->strings["Profile Photos"] = ""; $a->strings["Image exceeds website size limit of %lu bytes"] = ""; $a->strings["Image file is empty."] = ""; $a->strings["Unable to process image"] = ""; $a->strings["Photo storage failed."] = ""; -$a->strings["Photo Albums"] = ""; $a->strings["Upload New Photos"] = ""; +$a->strings["Cannot locate DNS info for database server '%s'"] = ""; $a->strings["Male"] = ""; $a->strings["Female"] = ""; $a->strings["Currently Male"] = ""; @@ -347,7 +436,6 @@ $a->strings["Infatuated"] = ""; $a->strings["Dating"] = ""; $a->strings["Unfaithful"] = ""; $a->strings["Sex Addict"] = ""; -$a->strings["Friends"] = ""; $a->strings["Friends/Benefits"] = ""; $a->strings["Casual"] = ""; $a->strings["Engaged"] = ""; @@ -369,6 +457,13 @@ $a->strings["Uncertain"] = ""; $a->strings["It's complicated"] = ""; $a->strings["Don't care"] = ""; $a->strings["Ask me"] = ""; +$a->strings["Click here to upgrade."] = ""; +$a->strings["This action exceeds the limits set by your subscription plan."] = ""; +$a->strings["This action is not available under your subscription plan."] = ""; +$a->strings["Visible to everybody"] = ""; +$a->strings["Show"] = ""; +$a->strings["Don't show"] = ""; +$a->strings["Permissions"] = ""; $a->strings["Not a valid email address"] = ""; $a->strings["Your email domain is not among those allowed on this site"] = ""; $a->strings["Your email address is already registered at this site."] = ""; @@ -382,19 +477,37 @@ $a->strings["your registration password"] = ""; $a->strings["Registration details for %s"] = ""; $a->strings["Account approved."] = ""; $a->strings["Registration revoked for %s"] = ""; -$a->strings["Unable to obtain identity information from database"] = ""; -$a->strings["Empty name"] = ""; -$a->strings["Name too long"] = ""; -$a->strings["No account identifier"] = ""; -$a->strings["Nickname has unsupported characters or is already being used on this site."] = ""; -$a->strings["Unable to retrieve created identity"] = ""; -$a->strings["Default Profile"] = ""; -$a->strings["Click here to upgrade."] = ""; -$a->strings["This action exceeds the limits set by your subscription plan."] = ""; -$a->strings["This action is not available under your subscription plan."] = ""; -$a->strings["Invalid data packet"] = ""; -$a->strings["Unable to verify channel signature"] = ""; -$a->strings["Unable to verify site signature for %s"] = ""; +$a->strings["New window"] = ""; +$a->strings["Open the selected location in a different window or browser tab"] = ""; +$a->strings["Unknown | Not categorised"] = ""; +$a->strings["Block immediately"] = ""; +$a->strings["Shady, spammer, self-marketer"] = ""; +$a->strings["Known to me, but no opinion"] = ""; +$a->strings["OK, probably harmless"] = ""; +$a->strings["Reputable, has my trust"] = ""; +$a->strings["Frequently"] = ""; +$a->strings["Hourly"] = ""; +$a->strings["Twice daily"] = ""; +$a->strings["Daily"] = ""; +$a->strings["Weekly"] = ""; +$a->strings["Monthly"] = ""; +$a->strings["Friendica"] = ""; +$a->strings["OStatus"] = ""; +$a->strings["RSS/Atom"] = ""; +$a->strings["Email"] = ""; +$a->strings["Diaspora"] = ""; +$a->strings["Facebook"] = ""; +$a->strings["Zot!"] = ""; +$a->strings["LinkedIn"] = ""; +$a->strings["XMPP/IM"] = ""; +$a->strings["MySpace"] = ""; +$a->strings["Profile"] = ""; +$a->strings["Update"] = ""; +$a->strings["Install"] = ""; +$a->strings["Unknown"] = ""; +$a->strings["Logged out."] = ""; +$a->strings["Failed authentication"] = ""; +$a->strings["Login failed."] = ""; $a->strings["prev"] = ""; $a->strings["first"] = ""; $a->strings["last"] = ""; @@ -407,9 +520,7 @@ $a->strings["%d Connection"] = array( 1 => "", ); $a->strings["View Connections"] = ""; -$a->strings["Save"] = ""; $a->strings["poke"] = ""; -$a->strings["poked"] = ""; $a->strings["ping"] = ""; $a->strings["pinged"] = ""; $a->strings["prod"] = ""; @@ -437,6 +548,7 @@ $a->strings["anxious"] = ""; $a->strings["cranky"] = ""; $a->strings["disturbed"] = ""; $a->strings["frustrated"] = ""; +$a->strings["depressed"] = ""; $a->strings["motivated"] = ""; $a->strings["relaxed"] = ""; $a->strings["surprised"] = ""; @@ -461,29 +573,76 @@ $a->strings["November"] = ""; $a->strings["December"] = ""; $a->strings["unknown.???"] = ""; $a->strings["bytes"] = ""; -$a->strings["remove"] = ""; -$a->strings["[remove]"] = ""; -$a->strings["Categories:"] = ""; -$a->strings["Filed under:"] = ""; +$a->strings["remove category"] = ""; +$a->strings["remove from file"] = ""; $a->strings["Click to open/close"] = ""; $a->strings["link to source"] = ""; +$a->strings["Select a page layout: "] = ""; $a->strings["default"] = ""; +$a->strings["Page content type: "] = ""; $a->strings["Select an alternate language"] = ""; -$a->strings["photo"] = ""; -$a->strings["event"] = ""; -$a->strings["status"] = ""; -$a->strings["comment"] = ""; $a->strings["activity"] = ""; -$a->strings["Logged out."] = ""; -$a->strings["Failed authentication"] = ""; -$a->strings["Login failed."] = ""; -$a->strings["Channel is blocked on this site."] = ""; -$a->strings["Channel location missing."] = ""; -$a->strings["Channel discovery failed. Website may be down or misconfigured."] = ""; -$a->strings["Response from remote channel was not understood."] = ""; -$a->strings["Response from remote channel was incomplete."] = ""; -$a->strings["local account not found."] = ""; -$a->strings["Cannot connect to yourself."] = ""; +$a->strings["Design"] = ""; +$a->strings["Blocks"] = ""; +$a->strings["Menus"] = ""; +$a->strings["Layouts"] = ""; +$a->strings["Pages"] = ""; +$a->strings["Missing room name"] = ""; +$a->strings["Duplicate room name"] = ""; +$a->strings["Invalid room specifier."] = ""; +$a->strings["Room not found."] = ""; +$a->strings["Room is full"] = ""; +$a->strings["General Features"] = ""; +$a->strings["Content Expiration"] = ""; +$a->strings["Remove posts/comments and/or private messages at a future time"] = ""; +$a->strings["Multiple Profiles"] = ""; +$a->strings["Ability to create multiple profiles"] = ""; +$a->strings["Web Pages"] = ""; +$a->strings["Provide managed web pages on your channel"] = ""; +$a->strings["Private Notes"] = ""; +$a->strings["Enables a tool to store notes and reminders"] = ""; +$a->strings["Extended Identity Sharing"] = ""; +$a->strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = ""; +$a->strings["Expert Mode"] = ""; +$a->strings["Enable Expert Mode to provide advanced configuration options"] = ""; +$a->strings["Premium Channel"] = ""; +$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = ""; +$a->strings["Post Composition Features"] = ""; +$a->strings["Richtext Editor"] = ""; +$a->strings["Enable richtext editor"] = ""; +$a->strings["Post Preview"] = ""; +$a->strings["Allow previewing posts and comments before publishing them"] = ""; +$a->strings["Automatically import channel content from other channels or feeds"] = ""; +$a->strings["Even More Encryption"] = ""; +$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = ""; +$a->strings["Network and Stream Filtering"] = ""; +$a->strings["Search by Date"] = ""; +$a->strings["Ability to select posts by date ranges"] = ""; +$a->strings["Collections Filter"] = ""; +$a->strings["Enable widget to display Network posts only from selected collections"] = ""; +$a->strings["Save search terms for re-use"] = ""; +$a->strings["Network Personal Tab"] = ""; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = ""; +$a->strings["Network New Tab"] = ""; +$a->strings["Enable tab to display all new Network activity"] = ""; +$a->strings["Affinity Tool"] = ""; +$a->strings["Filter stream activity by depth of relationships"] = ""; +$a->strings["Suggest Channels"] = ""; +$a->strings["Show channel suggestions"] = ""; +$a->strings["Post/Comment Tools"] = ""; +$a->strings["Edit Sent Posts"] = ""; +$a->strings["Edit and correct posts and comments after sending"] = ""; +$a->strings["Tagging"] = ""; +$a->strings["Ability to tag existing posts"] = ""; +$a->strings["Post Categories"] = ""; +$a->strings["Add categories to your posts"] = ""; +$a->strings["Ability to file posts under folders"] = ""; +$a->strings["Dislike Posts"] = ""; +$a->strings["Ability to dislike posts/comments"] = ""; +$a->strings["Star Posts"] = ""; +$a->strings["Ability to mark special posts with a star indicator"] = ""; +$a->strings["Tag Cloud"] = ""; +$a->strings["Provide a personal tag cloud on your channel page"] = ""; $a->strings["Can view my \"public\" stream and posts"] = ""; $a->strings["Can view my \"public\" channel profile"] = ""; $a->strings["Can view my \"public\" photo albums"] = ""; @@ -498,186 +657,553 @@ $a->strings["Can post photos to my photo albums"] = ""; $a->strings["Can forward to all my channel contacts via post @mentions"] = ""; $a->strings["Advanced - useful for creating group forum channels"] = ""; $a->strings["Can chat with me (when available)"] = ""; -$a->strings["Requires compatible chat plugin"] = ""; $a->strings["Can write to my \"public\" file storage"] = ""; $a->strings["Can edit my \"public\" pages"] = ""; +$a->strings["Can source my \"public\" posts in derived channels"] = ""; +$a->strings["Somewhat advanced - very useful in open communities"] = ""; $a->strings["Can administer my channel resources"] = ""; $a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = ""; -$a->strings["Tags"] = ""; -$a->strings["have"] = ""; -$a->strings["has"] = ""; -$a->strings["want"] = ""; -$a->strings["wants"] = ""; -$a->strings["like"] = ""; -$a->strings["likes"] = ""; -$a->strings["dislike"] = ""; -$a->strings["dislikes"] = ""; -$a->strings["Item was not found."] = ""; -$a->strings["No source file."] = ""; -$a->strings["Cannot locate file to replace"] = ""; -$a->strings["Cannot locate file to revise/update"] = ""; -$a->strings["File exceeds size limit of %d"] = ""; -$a->strings["File upload failed. Possible system limit or action terminated."] = ""; -$a->strings["Stored file could not be verified. Upload failed."] = ""; -$a->strings["Path not available."] = ""; -$a->strings["Private Message"] = ""; -$a->strings["Edit"] = ""; -$a->strings["Delete"] = ""; -$a->strings["Select"] = ""; -$a->strings["save to folder"] = ""; -$a->strings["add star"] = ""; -$a->strings["remove star"] = ""; -$a->strings["toggle star status"] = ""; -$a->strings["starred"] = ""; -$a->strings["add tag"] = ""; -$a->strings["I like this (toggle)"] = ""; -$a->strings["I don't like this (toggle)"] = ""; -$a->strings["Share this"] = ""; -$a->strings["share"] = ""; -$a->strings["View %s's profile - %s"] = ""; -$a->strings["to"] = ""; -$a->strings["Wall-to-Wall"] = ""; -$a->strings["via Wall-To-Wall:"] = ""; -$a->strings[" from %s"] = ""; -$a->strings["Please wait"] = ""; -$a->strings["%d comment"] = array( +$a->strings["Invalid data packet"] = ""; +$a->strings["Unable to verify channel signature"] = ""; +$a->strings["Unable to verify site signature for %s"] = ""; +$a->strings["%d invitation available"] = array( 0 => "", 1 => "", ); -$a->strings["This is you"] = ""; -$a->strings["Submit"] = ""; -$a->strings["Bold"] = ""; -$a->strings["Italic"] = ""; -$a->strings["Underline"] = ""; -$a->strings["Quote"] = ""; -$a->strings["Code"] = ""; -$a->strings["Image"] = ""; -$a->strings["Link"] = ""; -$a->strings["Video"] = ""; -$a->strings["Preview"] = ""; -$a->strings["channel"] = ""; -$a->strings["%1\$s likes %2\$s's %3\$s"] = ""; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = ""; -$a->strings["%1\$s is now connected with %2\$s"] = ""; -$a->strings["%1\$s poked %2\$s"] = ""; -$a->strings["%1\$s is currently %2\$s"] = ""; -$a->strings["View %s's profile @ %s"] = ""; -$a->strings["View in context"] = ""; -$a->strings["Loading..."] = ""; -$a->strings["Delete Selected Items"] = ""; -$a->strings["Follow Thread"] = ""; -$a->strings["%s likes this."] = ""; -$a->strings["%s doesn't like this."] = ""; -$a->strings["%2\$d people like this."] = ""; -$a->strings["%2\$d people don't like this."] = ""; -$a->strings["and"] = ""; -$a->strings[", and %d other people"] = ""; -$a->strings["%s like this."] = ""; -$a->strings["%s don't like this."] = ""; -$a->strings["Visible to everybody"] = ""; -$a->strings["Please enter a link URL:"] = ""; -$a->strings["Please enter a video link/URL:"] = ""; -$a->strings["Please enter an audio link/URL:"] = ""; -$a->strings["Tag term:"] = ""; -$a->strings["Save to Folder:"] = ""; -$a->strings["Where are you right now?"] = ""; -$a->strings["Share"] = ""; -$a->strings["Page link title"] = ""; -$a->strings["Upload photo"] = ""; -$a->strings["upload photo"] = ""; -$a->strings["Attach file"] = ""; -$a->strings["attach file"] = ""; -$a->strings["Insert web link"] = ""; -$a->strings["web link"] = ""; -$a->strings["Insert video link"] = ""; -$a->strings["video link"] = ""; -$a->strings["Insert audio link"] = ""; -$a->strings["audio link"] = ""; -$a->strings["Set your location"] = ""; -$a->strings["set location"] = ""; -$a->strings["Clear browser location"] = ""; -$a->strings["clear location"] = ""; -$a->strings["Set title"] = ""; -$a->strings["Categories (comma-separated list)"] = ""; -$a->strings["Permission settings"] = ""; -$a->strings["permissions"] = ""; -$a->strings["Public post"] = ""; -$a->strings["Example: bob@example.com, mary@example.com"] = ""; -$a->strings["Permission denied"] = ""; -$a->strings["Item not found."] = ""; -$a->strings["Archives"] = ""; -$a->strings["Collection not found."] = ""; -$a->strings["Collection has no members."] = ""; -$a->strings["Connection not found."] = ""; -$a->strings["Image/photo"] = ""; -$a->strings["%1\$s wrote the following %2\$s %3\$s"] = ""; -$a->strings["post"] = ""; -$a->strings["$1 wrote:"] = ""; -$a->strings["Encrypted content"] = ""; -$a->strings["No channel."] = ""; -$a->strings["Common connections"] = ""; -$a->strings["No connections in common."] = ""; -$a->strings["Event title and start time are required."] = ""; -$a->strings["l, F j"] = ""; -$a->strings["Edit event"] = ""; -$a->strings["Create New Event"] = ""; -$a->strings["Previous"] = ""; -$a->strings["Next"] = ""; -$a->strings["hour:minute"] = ""; -$a->strings["Event details"] = ""; -$a->strings["Format is %s %s. Starting date and Title are required."] = ""; -$a->strings["Event Starts:"] = ""; -$a->strings["Required"] = ""; -$a->strings["Finish date/time is not known or not relevant"] = ""; -$a->strings["Event Finishes:"] = ""; -$a->strings["Adjust for viewer timezone"] = ""; -$a->strings["Description:"] = ""; -$a->strings["Title:"] = ""; -$a->strings["Share this event"] = ""; -$a->strings["Object store: failed"] = ""; -$a->strings["thing/stuff added"] = ""; -$a->strings["OBJ: %1\$s %2\$s %3\$s"] = ""; -$a->strings["not yet implemented."] = ""; -$a->strings["Add Stuff to your Profile"] = ""; -$a->strings["Select a profile"] = ""; -$a->strings["Select a category of stuff. e.g. I ______ something"] = ""; -$a->strings["Name of thing or stuff e.g. something"] = ""; -$a->strings["URL of thing or stuff (optional)"] = ""; -$a->strings["URL for photo of thing or stuff (optional)"] = ""; -$a->strings["Total invitation limit exceeded."] = ""; -$a->strings["%s : Not a valid email address."] = ""; -$a->strings["Please join us on Red"] = ""; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = ""; -$a->strings["%s : Message delivery failed."] = ""; -$a->strings["%d message sent."] = array( +$a->strings["Advanced"] = ""; +$a->strings["Find Channels"] = ""; +$a->strings["Enter name or interest"] = ""; +$a->strings["Connect/Follow"] = ""; +$a->strings["Examples: Robert Morgenstein, Fishing"] = ""; +$a->strings["Find"] = ""; +$a->strings["Channel Suggestions"] = ""; +$a->strings["Random Profile"] = ""; +$a->strings["Invite Friends"] = ""; +$a->strings["Exammple: name=fred and country=iceland"] = ""; +$a->strings["Advanced Find"] = ""; +$a->strings["%d connection in common"] = array( 0 => "", 1 => "", ); -$a->strings["You have no more invitations available"] = ""; -$a->strings["Send invitations"] = ""; -$a->strings["Enter email addresses, one per line:"] = ""; -$a->strings["Your message:"] = ""; -$a->strings["You are cordially invited to join me and some other close friends on the Red Matrix - a revolutionary new decentralised social and information tool."] = ""; -$a->strings["You will need to supply this invitation code: \$invite_code"] = ""; -$a->strings["Please visit my channel at"] = ""; -$a->strings["Once you have registered, please connect with my Red Matrix channel address:"] = ""; -$a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = ""; -$a->strings["Friends of %s"] = ""; -$a->strings["No friends to display."] = ""; +$a->strings["Miscellaneous"] = ""; +$a->strings["year"] = ""; +$a->strings["month"] = ""; +$a->strings["day"] = ""; +$a->strings["never"] = ""; +$a->strings["less than a second ago"] = ""; +$a->strings["years"] = ""; +$a->strings["months"] = ""; +$a->strings["week"] = ""; +$a->strings["weeks"] = ""; +$a->strings["days"] = ""; +$a->strings["hour"] = ""; +$a->strings["hours"] = ""; +$a->strings["minute"] = ""; +$a->strings["minutes"] = ""; +$a->strings["second"] = ""; +$a->strings["seconds"] = ""; +$a->strings["%1\$d %2\$s ago"] = ""; +$a->strings["Unable to obtain identity information from database"] = ""; +$a->strings["Empty name"] = ""; +$a->strings["Name too long"] = ""; +$a->strings["No account identifier"] = ""; +$a->strings["Nickname is required."] = ""; +$a->strings["Reserved nickname. Please choose another."] = ""; +$a->strings["Nickname has unsupported characters or is already being used on this site."] = ""; +$a->strings["Unable to retrieve created identity"] = ""; +$a->strings["Default Profile"] = ""; +$a->strings["Requested channel is not available."] = ""; $a->strings["Requested profile is not available."] = ""; -$a->strings["View"] = ""; +$a->strings["Change profile photo"] = ""; +$a->strings["Profiles"] = ""; +$a->strings["Manage/edit profiles"] = ""; +$a->strings["Create New Profile"] = ""; +$a->strings["Edit Profile"] = ""; +$a->strings["Profile Image"] = ""; +$a->strings["visible to everybody"] = ""; +$a->strings["Edit visibility"] = ""; +$a->strings["Gender:"] = ""; +$a->strings["Status:"] = ""; +$a->strings["Homepage:"] = ""; +$a->strings["Online Now"] = ""; +$a->strings["g A l F d"] = ""; +$a->strings["F d"] = ""; +$a->strings["[today]"] = ""; +$a->strings["Birthday Reminders"] = ""; +$a->strings["Birthdays this week:"] = ""; +$a->strings["[No description]"] = ""; +$a->strings["Event Reminders"] = ""; +$a->strings["Events this week:"] = ""; +$a->strings["Full Name:"] = ""; +$a->strings["j F, Y"] = ""; +$a->strings["j F"] = ""; +$a->strings["Birthday:"] = ""; +$a->strings["Age:"] = ""; +$a->strings["for %1\$d %2\$s"] = ""; +$a->strings["Sexual Preference:"] = ""; +$a->strings["Hometown:"] = ""; +$a->strings["Tags:"] = ""; +$a->strings["Political Views:"] = ""; +$a->strings["Religion:"] = ""; +$a->strings["About:"] = ""; +$a->strings["Hobbies/Interests:"] = ""; +$a->strings["Likes:"] = ""; +$a->strings["Dislikes:"] = ""; +$a->strings["Contact information and Social Networks:"] = ""; +$a->strings["My other channels:"] = ""; +$a->strings["Musical interests:"] = ""; +$a->strings["Books, literature:"] = ""; +$a->strings["Television:"] = ""; +$a->strings["Film/dance/culture/entertainment:"] = ""; +$a->strings["Love/Romance:"] = ""; +$a->strings["Work/employment:"] = ""; +$a->strings["School/education:"] = ""; +$a->strings["Delete this item?"] = ""; +$a->strings["show fewer"] = ""; +$a->strings["+ Show More"] = ""; +$a->strings["- Show Less"] = ""; +$a->strings["Password too short"] = ""; +$a->strings["Passwords do not match"] = ""; +$a->strings["everybody"] = ""; +$a->strings["Secret Passphrase"] = ""; +$a->strings["Passphrase hint"] = ""; +$a->strings["Notice: Permissions have changed but have not yet been submitted."] = ""; +$a->strings["close all"] = ""; +$a->strings["timeago.prefixAgo"] = ""; +$a->strings["timeago.prefixFromNow"] = ""; +$a->strings["ago"] = ""; +$a->strings["from now"] = ""; +$a->strings["less than a minute"] = ""; +$a->strings["about a minute"] = ""; +$a->strings["%d minutes"] = ""; +$a->strings["about an hour"] = ""; +$a->strings["about %d hours"] = ""; +$a->strings["a day"] = ""; +$a->strings["%d days"] = ""; +$a->strings["about a month"] = ""; +$a->strings["%d months"] = ""; +$a->strings["about a year"] = ""; +$a->strings["%d years"] = ""; +$a->strings[" "] = ""; +$a->strings["timeago.numbers"] = ""; +$a->strings["Channel not found."] = ""; +$a->strings["Welcome to %s"] = ""; +$a->strings["Channel added."] = ""; +$a->strings["Public access denied."] = ""; +$a->strings["Age: "] = ""; +$a->strings["Gender: "] = ""; +$a->strings["Status: "] = ""; +$a->strings["Sexual Preference: "] = ""; +$a->strings["Homepage: "] = ""; +$a->strings["Hometown: "] = ""; +$a->strings["About: "] = ""; +$a->strings["Keywords: "] = ""; +$a->strings["Not found."] = ""; +$a->strings["network"] = ""; $a->strings["Authorize application connection"] = ""; $a->strings["Return to your app and insert this Securty Code:"] = ""; $a->strings["Please login to continue."] = ""; $a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = ""; $a->strings["Yes"] = ""; $a->strings["No"] = ""; -$a->strings["You must be logged in to see this page."] = ""; -$a->strings["No installed applications."] = ""; -$a->strings["Applications"] = ""; +$a->strings["Item not found"] = ""; +$a->strings["Edit Layout"] = ""; +$a->strings["Delete layout?"] = ""; +$a->strings["Insert YouTube video"] = ""; +$a->strings["Insert Vorbis [.ogg] video"] = ""; +$a->strings["Insert Vorbis [.ogg] audio"] = ""; +$a->strings["Delete Layout"] = ""; +$a->strings["Hub not found."] = ""; +$a->strings["Fetching URL returns error: %1\$s"] = ""; +$a->strings["Tag removed"] = ""; +$a->strings["Remove Item Tag"] = ""; +$a->strings["Select a tag to remove: "] = ""; +$a->strings["Remove"] = ""; +$a->strings["Add a Channel"] = ""; +$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = ""; +$a->strings["Channel Name"] = ""; +$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = ""; +$a->strings["Choose a short nickname"] = ""; +$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = ""; +$a->strings["Or import an existing channel from another location"] = ""; +$a->strings["Create"] = ""; +$a->strings["Public Sites"] = ""; +$a->strings["The listed sites allow public registration into the Red Matrix. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = ""; +$a->strings["Site URL"] = ""; +$a->strings["Access Type"] = ""; +$a->strings["Registration Policy"] = ""; +$a->strings["Location"] = ""; +$a->strings["[Embedded content - reload page to view]"] = ""; +$a->strings["Collection created."] = ""; +$a->strings["Could not create collection."] = ""; +$a->strings["Collection updated."] = ""; +$a->strings["Create a collection of channels."] = ""; +$a->strings["Collection Name: "] = ""; +$a->strings["Members are visible to other channels"] = ""; +$a->strings["Collection removed."] = ""; +$a->strings["Unable to remove collection."] = ""; +$a->strings["Collection Editor"] = ""; +$a->strings["Members"] = ""; +$a->strings["All Connected Channels"] = ""; +$a->strings["Click on a channel to add or remove."] = ""; +$a->strings["Thing updated"] = ""; +$a->strings["Object store: failed"] = ""; +$a->strings["Thing added"] = ""; +$a->strings["OBJ: %1\$s %2\$s %3\$s"] = ""; +$a->strings["Show Thing"] = ""; +$a->strings["item not found."] = ""; +$a->strings["Edit Thing"] = ""; +$a->strings["Select a profile"] = ""; +$a->strings["Select a category of stuff. e.g. I ______ something"] = ""; +$a->strings["Post an activity"] = ""; +$a->strings["Only sends to viewers of the applicable profile"] = ""; +$a->strings["Name of thing e.g. something"] = ""; +$a->strings["URL of thing (optional)"] = ""; +$a->strings["URL for photo of thing (optional)"] = ""; +$a->strings["Add Thing to your Profile"] = ""; +$a->strings["Invalid request identifier."] = ""; +$a->strings["Discard"] = ""; +$a->strings["Ignore"] = ""; +$a->strings["No more system notifications."] = ""; +$a->strings["System Notifications"] = ""; $a->strings["Invalid item."] = ""; -$a->strings["Channel not found."] = ""; +$a->strings["Page not found."] = ""; +$a->strings["Messages"] = ""; +$a->strings["Conversation removed."] = ""; +$a->strings["No messages."] = ""; +$a->strings["Delete message"] = ""; +$a->strings["D, d M Y - g:i A"] = ""; +$a->strings["Edit post"] = ""; +$a->strings["Finding:"] = ""; +$a->strings["next page"] = ""; +$a->strings["previous page"] = ""; +$a->strings["No entries (some entries may be hidden)."] = ""; +$a->strings["Menu not found."] = ""; +$a->strings["Menu element updated."] = ""; +$a->strings["Unable to update menu element."] = ""; +$a->strings["Menu element added."] = ""; +$a->strings["Unable to add menu element."] = ""; +$a->strings["Manage Menu Elements"] = ""; +$a->strings["Edit menu"] = ""; +$a->strings["Edit element"] = ""; +$a->strings["Drop element"] = ""; +$a->strings["New element"] = ""; +$a->strings["Edit this menu container"] = ""; +$a->strings["Add menu element"] = ""; +$a->strings["Delete this menu item"] = ""; +$a->strings["Edit this menu item"] = ""; +$a->strings["New Menu Element"] = ""; +$a->strings["Menu Item Permissions"] = ""; +$a->strings["(click to open/close)"] = ""; +$a->strings["Link text"] = ""; +$a->strings["URL of link"] = ""; +$a->strings["Use Red magic-auth if available"] = ""; +$a->strings["Open link in new window"] = ""; +$a->strings["Order in list"] = ""; +$a->strings["Higher numbers will sink to bottom of listing"] = ""; +$a->strings["Menu item not found."] = ""; +$a->strings["Menu item deleted."] = ""; +$a->strings["Menu item could not be deleted."] = ""; +$a->strings["Edit Menu Element"] = ""; +$a->strings["Modify"] = ""; +$a->strings["Continue"] = ""; +$a->strings["Premium Channel Setup"] = ""; +$a->strings["Enable premium channel connection restrictions"] = ""; +$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = ""; +$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = ""; +$a->strings["Potential connections will then see the following text before proceeding:"] = ""; +$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = ""; +$a->strings["(No specific instructions have been provided by the channel owner.)"] = ""; +$a->strings["Restricted or Premium Channel"] = ""; +$a->strings["Unable to locate original post."] = ""; +$a->strings["Empty post discarded."] = ""; +$a->strings["Executable content type not permitted to this channel."] = ""; +$a->strings["System error. Post not saved."] = ""; +$a->strings["You have reached your limit of %1$.0f top level posts."] = ""; +$a->strings["You have reached your limit of %1$.0f webpages."] = ""; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = ""; +$a->strings["No such group"] = ""; +$a->strings["Search Results For:"] = ""; +$a->strings["Collection is empty"] = ""; +$a->strings["Collection: "] = ""; +$a->strings["Connection: "] = ""; +$a->strings["Invalid connection."] = ""; +$a->strings["Version %s"] = ""; +$a->strings["Installed plugins/addons/apps:"] = ""; +$a->strings["No installed plugins/addons/apps"] = ""; +$a->strings["Red"] = ""; +$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralised privacy enhanced websites."] = ""; +$a->strings["Running at web location"] = ""; +$a->strings["Please visit GetZot.com to learn more about the Red Matrix."] = ""; +$a->strings["Bug reports and issues: please visit"] = ""; +$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = ""; +$a->strings["Site Administrators"] = ""; +$a->strings["Bookmark added"] = ""; +$a->strings["My Bookmarks"] = ""; +$a->strings["My Connections Bookmarks"] = ""; +$a->strings["You must be logged in to see this page."] = ""; +$a->strings["Insufficient permissions. Request redirected to profile page."] = ""; +$a->strings["Layout updated."] = ""; +$a->strings["Edit System Page Description"] = ""; +$a->strings["Layout not found."] = ""; +$a->strings["Module Name:"] = ""; +$a->strings["Layout Help"] = ""; +$a->strings["Unable to find your hub."] = ""; +$a->strings["Post successful."] = ""; +$a->strings["%1\$s is following %2\$s's %3\$s"] = ""; +$a->strings["toggle full screen mode"] = ""; +$a->strings["invalid target signature"] = ""; +$a->strings["Failed to create source. No channel selected."] = ""; +$a->strings["Source created."] = ""; +$a->strings["Source updated."] = ""; +$a->strings["*"] = ""; +$a->strings["Manage remote sources of content for your channel."] = ""; +$a->strings["New Source"] = ""; +$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = ""; +$a->strings["Only import content with these words (one per line)"] = ""; +$a->strings["Leave blank to import all public content"] = ""; +$a->strings["Source not found."] = ""; +$a->strings["Edit Source"] = ""; +$a->strings["Delete Source"] = ""; +$a->strings["Source removed"] = ""; +$a->strings["Unable to remove source."] = ""; +$a->strings["Invalid profile identifier."] = ""; +$a->strings["Profile Visibility Editor"] = ""; +$a->strings["Click on a contact to add or remove."] = ""; +$a->strings["Visible To"] = ""; +$a->strings["All Connections"] = ""; +$a->strings["Image uploaded but image cropping failed."] = ""; +$a->strings["Image resize failed."] = ""; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = ""; +$a->strings["Image exceeds size limit of %d"] = ""; +$a->strings["Unable to process image."] = ""; +$a->strings["Photo not available."] = ""; +$a->strings["Upload File:"] = ""; +$a->strings["Select a profile:"] = ""; +$a->strings["Upload Profile Photo"] = ""; +$a->strings["Upload"] = ""; +$a->strings["or"] = ""; +$a->strings["skip this step"] = ""; +$a->strings["select a photo from your photo albums"] = ""; +$a->strings["Crop Image"] = ""; +$a->strings["Please adjust the image cropping for optimum viewing."] = ""; +$a->strings["Done Editing"] = ""; +$a->strings["Image uploaded successfully."] = ""; +$a->strings["Image upload failed."] = ""; +$a->strings["Image size reduction [%s] failed."] = ""; +$a->strings["Block Name"] = ""; +$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = ""; +$a->strings["Welcome %s. Remote authentication successful."] = ""; +$a->strings["Permission Denied."] = ""; +$a->strings["File not found."] = ""; +$a->strings["Edit file permissions"] = ""; +$a->strings["Set/edit permissions"] = ""; +$a->strings["Include all files and sub folders"] = ""; +$a->strings["Return to file list"] = ""; +$a->strings["Copy/paste this code to attach file to a post"] = ""; +$a->strings["Copy/paste this URL to link file from a web page"] = ""; +$a->strings["Download"] = ""; +$a->strings["Used: "] = ""; +$a->strings["[directory]"] = ""; +$a->strings["Limit: "] = ""; +$a->strings["Remote privacy information not available."] = ""; +$a->strings["Visible to:"] = ""; +$a->strings["Contact not found."] = ""; +$a->strings["Friend suggestion sent."] = ""; +$a->strings["Suggest Friends"] = ""; +$a->strings["Suggest a friend for %s"] = ""; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = ""; +$a->strings["Could not access contact record."] = ""; +$a->strings["Could not locate selected profile."] = ""; +$a->strings["Connection updated."] = ""; +$a->strings["Failed to update connection record."] = ""; +$a->strings["Could not access address book record."] = ""; +$a->strings["Refresh failed - channel is currently unavailable."] = ""; +$a->strings["Channel has been unblocked"] = ""; +$a->strings["Channel has been blocked"] = ""; +$a->strings["Unable to set address book parameters."] = ""; +$a->strings["Channel has been unignored"] = ""; +$a->strings["Channel has been ignored"] = ""; +$a->strings["Channel has been unarchived"] = ""; +$a->strings["Channel has been archived"] = ""; +$a->strings["Channel has been unhidden"] = ""; +$a->strings["Channel has been hidden"] = ""; +$a->strings["Channel has been approved"] = ""; +$a->strings["Channel has been unapproved"] = ""; +$a->strings["Connection has been removed."] = ""; +$a->strings["View %s's profile"] = ""; +$a->strings["Refresh Permissions"] = ""; +$a->strings["Fetch updated permissions"] = ""; +$a->strings["Recent Activity"] = ""; +$a->strings["View recent posts and comments"] = ""; +$a->strings["Unblock"] = ""; +$a->strings["Block"] = ""; +$a->strings["Block or Unblock this connection"] = ""; +$a->strings["Unignore"] = ""; +$a->strings["Ignore or Unignore this connection"] = ""; +$a->strings["Unarchive"] = ""; +$a->strings["Archive"] = ""; +$a->strings["Archive or Unarchive this connection"] = ""; +$a->strings["Unhide"] = ""; +$a->strings["Hide"] = ""; +$a->strings["Hide or Unhide this connection"] = ""; +$a->strings["Delete this connection"] = ""; +$a->strings["Approve this connection"] = ""; +$a->strings["Accept connection to allow communication"] = ""; +$a->strings["Automatic Permissions Settings"] = ""; +$a->strings["Connections: settings for %s"] = ""; +$a->strings["When receiving a channel introduction, any permissions provided here will be applied to the new connection automatically and the introduction approved. Leave this page if you do not wish to use this feature."] = ""; +$a->strings["Slide to adjust your degree of friendship"] = ""; +$a->strings["inherited"] = ""; +$a->strings["Connection has no individual permissions!"] = ""; +$a->strings["This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"."] = ""; +$a->strings["Profile Visibility"] = ""; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = ""; +$a->strings["Contact Information / Notes"] = ""; +$a->strings["Edit contact notes"] = ""; +$a->strings["Their Settings"] = ""; +$a->strings["My Settings"] = ""; +$a->strings["Clear/Disable Automatic Permissions"] = ""; +$a->strings["Forum Members"] = ""; +$a->strings["Soapbox"] = ""; +$a->strings["Full Sharing (typical social network permissions)"] = ""; +$a->strings["Cautious Sharing "] = ""; +$a->strings["Follow Only"] = ""; +$a->strings["Individual Permissions"] = ""; +$a->strings["Some permissions may be inherited from your channel privacy settings, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = ""; +$a->strings["Advanced Permissions"] = ""; +$a->strings["Simple Permissions (select one and submit)"] = ""; +$a->strings["Visit %s's profile - %s"] = ""; +$a->strings["Block/Unblock contact"] = ""; +$a->strings["Ignore contact"] = ""; +$a->strings["Repair URL settings"] = ""; +$a->strings["View conversations"] = ""; +$a->strings["Delete contact"] = ""; +$a->strings["Last update:"] = ""; +$a->strings["Update public posts"] = ""; +$a->strings["Update now"] = ""; +$a->strings["Currently blocked"] = ""; +$a->strings["Currently ignored"] = ""; +$a->strings["Currently archived"] = ""; +$a->strings["Currently pending"] = ""; +$a->strings["Hide this contact from others"] = ""; +$a->strings["Replies/likes to your public posts may still be visible"] = ""; +$a->strings["This site is not a directory server"] = ""; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = ""; +$a->strings["The error message was:"] = ""; +$a->strings["Authentication failed."] = ""; +$a->strings["Remote Authentication"] = ""; +$a->strings["Enter your channel address (e.g. channel@example.com)"] = ""; +$a->strings["Authenticate"] = ""; $a->strings["Item not available."] = ""; +$a->strings["Item is not editable"] = ""; +$a->strings["Delete item?"] = ""; +$a->strings["Name is required"] = ""; +$a->strings["Key and Secret are required"] = ""; +$a->strings["Passwords do not match. Password unchanged."] = ""; +$a->strings["Empty passwords are not allowed. Password unchanged."] = ""; +$a->strings["Password changed."] = ""; +$a->strings["Password update failed. Please try again."] = ""; +$a->strings["Not valid email."] = ""; +$a->strings["Protected email address. Cannot change to that email."] = ""; +$a->strings["System failure storing new email. Please try again."] = ""; +$a->strings["Settings updated."] = ""; +$a->strings["Add application"] = ""; +$a->strings["Name"] = ""; +$a->strings["Name of application"] = ""; +$a->strings["Consumer Key"] = ""; +$a->strings["Automatically generated - change if desired. Max length 20"] = ""; +$a->strings["Consumer Secret"] = ""; +$a->strings["Redirect"] = ""; +$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = ""; +$a->strings["Icon url"] = ""; +$a->strings["Optional"] = ""; +$a->strings["You can't edit this application."] = ""; +$a->strings["Connected Apps"] = ""; +$a->strings["Client key starts with"] = ""; +$a->strings["No name"] = ""; +$a->strings["Remove authorization"] = ""; +$a->strings["No feature settings configured"] = ""; +$a->strings["Feature Settings"] = ""; +$a->strings["Account Settings"] = ""; +$a->strings["Password Settings"] = ""; +$a->strings["New Password:"] = ""; +$a->strings["Confirm:"] = ""; +$a->strings["Leave password fields blank unless changing"] = ""; +$a->strings["Email Address:"] = ""; +$a->strings["Remove Account"] = ""; +$a->strings["Warning: This action is permanent and cannot be reversed."] = ""; +$a->strings["Off"] = ""; +$a->strings["On"] = ""; +$a->strings["Additional Features"] = ""; +$a->strings["Connector Settings"] = ""; +$a->strings["No special theme for mobile devices"] = ""; +$a->strings["Display Settings"] = ""; +$a->strings["Display Theme:"] = ""; +$a->strings["Mobile Theme:"] = ""; +$a->strings["Update browser every xx seconds"] = ""; +$a->strings["Minimum of 10 seconds, no maximum"] = ""; +$a->strings["Maximum number of conversations to load at any time:"] = ""; +$a->strings["Maximum of 100 items"] = ""; +$a->strings["Don't show emoticons"] = ""; +$a->strings["Do not view remote profiles in frames"] = ""; +$a->strings["By default open in a sub-window of your own site"] = ""; +$a->strings["System Page Layout Editor - (advanced)"] = ""; +$a->strings["Nobody except yourself"] = ""; +$a->strings["Only those you specifically allow"] = ""; +$a->strings["Anybody in your address book"] = ""; +$a->strings["Anybody on this website"] = ""; +$a->strings["Anybody in this network"] = ""; +$a->strings["Anybody authenticated"] = ""; +$a->strings["Anybody on the internet"] = ""; +$a->strings["Publish your default profile in the network directory"] = ""; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = ""; +$a->strings["Your channel address is"] = ""; +$a->strings["Channel Settings"] = ""; +$a->strings["Basic Settings"] = ""; +$a->strings["Your Timezone:"] = ""; +$a->strings["Default Post Location:"] = ""; +$a->strings["Geographical location to display on your posts"] = ""; +$a->strings["Use Browser Location:"] = ""; +$a->strings["Adult Content"] = ""; +$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = ""; +$a->strings["Security and Privacy Settings"] = ""; +$a->strings["Hide my online presence"] = ""; +$a->strings["Prevents displaying in your profile that you are online"] = ""; +$a->strings["Simple Privacy Settings:"] = ""; +$a->strings["Very Public - extremely permissive (should be used with caution)"] = ""; +$a->strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = ""; +$a->strings["Private - default private, never open or public"] = ""; +$a->strings["Blocked - default blocked to/from everybody"] = ""; +$a->strings["Allow others to tag your posts"] = ""; +$a->strings["Often used by the community to retro-actively flag inappropriate content"] = ""; +$a->strings["Advanced Privacy Settings"] = ""; +$a->strings["Expire other channel content after this many days"] = ""; +$a->strings["0 or blank prevents expiration"] = ""; +$a->strings["Maximum Friend Requests/Day:"] = ""; +$a->strings["May reduce spam activity"] = ""; +$a->strings["Default Post Permissions"] = ""; +$a->strings["Maximum private messages per day from unknown people:"] = ""; +$a->strings["Useful to reduce spamming"] = ""; +$a->strings["Notification Settings"] = ""; +$a->strings["By default post a status message when:"] = ""; +$a->strings["accepting a friend request"] = ""; +$a->strings["joining a forum/community"] = ""; +$a->strings["making an interesting profile change"] = ""; +$a->strings["Send a notification email when:"] = ""; +$a->strings["You receive a connection request"] = ""; +$a->strings["Your connections are confirmed"] = ""; +$a->strings["Someone writes on your profile wall"] = ""; +$a->strings["Someone writes a followup comment"] = ""; +$a->strings["You receive a private message"] = ""; +$a->strings["You receive a friend suggestion"] = ""; +$a->strings["You are tagged in a post"] = ""; +$a->strings["You are poked/prodded/etc. in a post"] = ""; +$a->strings["Advanced Account/Page Type Settings"] = ""; +$a->strings["Change the behaviour of this account for special situations"] = ""; +$a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = ""; +$a->strings["Miscellaneous Settings"] = ""; +$a->strings["Personal menu to display in your channel pages"] = ""; $a->strings["Red Matrix Server - Setup"] = ""; $a->strings["Could not connect to database."] = ""; $a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = ""; @@ -686,6 +1212,7 @@ $a->strings["Your site database has been installed."] = ""; $a->strings["You may need to import the file \"install/database.sql\" manually using phpmyadmin or mysql."] = ""; $a->strings["Please see the file \"install/INSTALL.txt\"."] = ""; $a->strings["System check"] = ""; +$a->strings["Next"] = ""; $a->strings["Check again"] = ""; $a->strings["Database connection"] = ""; $a->strings["In order to install Red Matrix we need to know how to connect to your database."] = ""; @@ -741,164 +1268,41 @@ $a->strings["In order to store these compiled templates, the web server needs to $a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = ""; $a->strings["Note: as a security measure, you should give the web server write access to view/tpl/smarty3/ only--not the template files (.tpl) that it contains."] = ""; $a->strings["view/tpl/smarty3 is writable"] = ""; -$a->strings["SSL certificate validation"] = ""; +$a->strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = ""; +$a->strings["store is writable"] = ""; $a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = ""; +$a->strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = ""; +$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = ""; +$a->strings["If your certificate is not recognised, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = ""; +$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = ""; +$a->strings["Providers are available that issue free certificates which are browser-valid."] = ""; +$a->strings["SSL certificate validation"] = ""; $a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = ""; $a->strings["Url rewrite is working"] = ""; $a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = ""; $a->strings["Errors encountered creating database tables."] = ""; $a->strings["

    What next

    "] = ""; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = ""; -$a->strings["%1\$s is following %2\$s's %3\$s"] = ""; -$a->strings["[Embedded content - reload page to view]"] = ""; -$a->strings["toggle full screen mode"] = ""; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = ""; -$a->strings["Account settings"] = ""; -$a->strings["Channel settings"] = ""; -$a->strings["Additional features"] = ""; -$a->strings["Feature settings"] = ""; -$a->strings["Display settings"] = ""; -$a->strings["Connected apps"] = ""; -$a->strings["Export channel"] = ""; -$a->strings["Automatic Permissions (Advanced)"] = ""; -$a->strings["Missing some important data!"] = ""; -$a->strings["Update"] = ""; -$a->strings["Passwords do not match. Password unchanged."] = ""; -$a->strings["Empty passwords are not allowed. Password unchanged."] = ""; -$a->strings["Password changed."] = ""; -$a->strings["Password update failed. Please try again."] = ""; -$a->strings["Not valid email."] = ""; -$a->strings["Protected email address. Cannot change to that email."] = ""; -$a->strings["System failure storing new email. Please try again."] = ""; -$a->strings["Settings updated."] = ""; -$a->strings["Add application"] = ""; -$a->strings["Cancel"] = ""; -$a->strings["Name"] = ""; -$a->strings["Consumer Key"] = ""; -$a->strings["Consumer Secret"] = ""; -$a->strings["Redirect"] = ""; -$a->strings["Icon url"] = ""; -$a->strings["You can't edit this application."] = ""; -$a->strings["Connected Apps"] = ""; -$a->strings["Client key starts with"] = ""; -$a->strings["No name"] = ""; -$a->strings["Remove authorization"] = ""; -$a->strings["No feature settings configured"] = ""; -$a->strings["Feature Settings"] = ""; -$a->strings["Account Settings"] = ""; -$a->strings["Password Settings"] = ""; -$a->strings["New Password:"] = ""; -$a->strings["Confirm:"] = ""; -$a->strings["Leave password fields blank unless changing"] = ""; -$a->strings["Email Address:"] = ""; -$a->strings["Remove Account"] = ""; -$a->strings["Warning: This action is permanent and cannot be reversed."] = ""; -$a->strings["Off"] = ""; -$a->strings["On"] = ""; -$a->strings["Additional Features"] = ""; -$a->strings["Connector Settings"] = ""; -$a->strings["No special theme for mobile devices"] = ""; -$a->strings["Display Settings"] = ""; -$a->strings["Display Theme:"] = ""; -$a->strings["Mobile Theme:"] = ""; -$a->strings["Update browser every xx seconds"] = ""; -$a->strings["Minimum of 10 seconds, no maximum"] = ""; -$a->strings["Maximum number of conversations to load at any time:"] = ""; -$a->strings["Maximum of 100 items"] = ""; -$a->strings["Don't show emoticons"] = ""; -$a->strings["Nobody except yourself"] = ""; -$a->strings["Only those you specifically allow"] = ""; -$a->strings["Anybody in your address book"] = ""; -$a->strings["Anybody on this website"] = ""; -$a->strings["Anybody in this network"] = ""; -$a->strings["Anybody on the internet"] = ""; -$a->strings["Publish your default profile in the network directory"] = ""; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = ""; -$a->strings["or"] = ""; -$a->strings["Your channel address is"] = ""; -$a->strings["Automatically expire posts after this many days:"] = ""; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = ""; -$a->strings["Advanced expiration settings"] = ""; -$a->strings["Advanced Expiration"] = ""; -$a->strings["Expire posts:"] = ""; -$a->strings["Expire starred posts:"] = ""; -$a->strings["Expire photos:"] = ""; -$a->strings["Only expire posts by others:"] = ""; -$a->strings["Channel Settings"] = ""; -$a->strings["Basic Settings"] = ""; -$a->strings["Your Timezone:"] = ""; -$a->strings["Default Post Location:"] = ""; -$a->strings["Use Browser Location:"] = ""; -$a->strings["Security and Privacy Settings"] = ""; -$a->strings["Quick Privacy Settings:"] = ""; -$a->strings["Very Public - extremely permissive"] = ""; -$a->strings["Typical - default public, privacy when desired"] = ""; -$a->strings["Private - default private, rarely open or public"] = ""; -$a->strings["Blocked - default blocked to/from everybody"] = ""; -$a->strings["Maximum Friend Requests/Day:"] = ""; -$a->strings["May reduce spam activity"] = ""; -$a->strings["Default Post Permissions"] = ""; -$a->strings["(click to open/close)"] = ""; -$a->strings["Maximum private messages per day from unknown people:"] = ""; -$a->strings["Useful to reduce spamming"] = ""; -$a->strings["Notification Settings"] = ""; -$a->strings["By default post a status message when:"] = ""; -$a->strings["accepting a friend request"] = ""; -$a->strings["joining a forum/community"] = ""; -$a->strings["making an interesting profile change"] = ""; -$a->strings["Send a notification email when:"] = ""; -$a->strings["You receive an introduction"] = ""; -$a->strings["Your introductions are confirmed"] = ""; -$a->strings["Someone writes on your profile wall"] = ""; -$a->strings["Someone writes a followup comment"] = ""; -$a->strings["You receive a private message"] = ""; -$a->strings["You receive a friend suggestion"] = ""; -$a->strings["You are tagged in a post"] = ""; -$a->strings["You are poked/prodded/etc. in a post"] = ""; -$a->strings["Advanced Account/Page Type Settings"] = ""; -$a->strings["Change the behaviour of this account for special situations"] = ""; -$a->strings["Public access denied."] = ""; -$a->strings["No connections."] = ""; -$a->strings["Visit %s's profile [%s]"] = ""; -$a->strings["View Connnections"] = ""; -$a->strings["Tag removed"] = ""; -$a->strings["Remove Item Tag"] = ""; -$a->strings["Select a tag to remove: "] = ""; -$a->strings["Remove"] = ""; -$a->strings["No potential page delegates located."] = ""; -$a->strings["Delegate Page Management"] = ""; -$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = ""; -$a->strings["Existing Page Managers"] = ""; -$a->strings["Existing Page Delegates"] = ""; -$a->strings["Potential Delegates"] = ""; -$a->strings["Add"] = ""; -$a->strings["No entries."] = ""; -$a->strings["Age: "] = ""; -$a->strings["Gender: "] = ""; -$a->strings["Finding:"] = ""; -$a->strings["next page"] = ""; -$a->strings["previous page"] = ""; -$a->strings["No entries (some entries may be hidden)."] = ""; -$a->strings["People Search"] = ""; -$a->strings["No matches"] = ""; -$a->strings["Collection created."] = ""; -$a->strings["Could not create collection."] = ""; -$a->strings["Collection name changed."] = ""; -$a->strings["Create a collection of channels."] = ""; -$a->strings["Collection Name: "] = ""; -$a->strings["Members are visible to other channels"] = ""; -$a->strings["Collection removed."] = ""; -$a->strings["Unable to remove collection."] = ""; -$a->strings["Collection Editor"] = ""; -$a->strings["Members"] = ""; -$a->strings["All Connected Channels"] = ""; -$a->strings["Click on a channel to add or remove."] = ""; +$a->strings["Event title and start time are required."] = ""; +$a->strings["l, F j"] = ""; +$a->strings["Edit event"] = ""; +$a->strings["Create New Event"] = ""; +$a->strings["Previous"] = ""; +$a->strings["hour:minute"] = ""; +$a->strings["Event details"] = ""; +$a->strings["Format is %s %s. Starting date and Title are required."] = ""; +$a->strings["Event Starts:"] = ""; +$a->strings["Required"] = ""; +$a->strings["Finish date/time is not known or not relevant"] = ""; +$a->strings["Event Finishes:"] = ""; +$a->strings["Adjust for viewer timezone"] = ""; +$a->strings["Description:"] = ""; +$a->strings["Title:"] = ""; +$a->strings["Share this event"] = ""; $a->strings["Page owner information could not be retrieved."] = ""; $a->strings["Album not found."] = ""; $a->strings["Delete Album"] = ""; $a->strings["Delete Photo"] = ""; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = ""; -$a->strings["a photo"] = ""; $a->strings["No photos selected"] = ""; $a->strings["Access to this item is restricted."] = ""; $a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = ""; @@ -907,7 +1311,6 @@ $a->strings["Upload Photos"] = ""; $a->strings["New album name: "] = ""; $a->strings["or existing album name: "] = ""; $a->strings["Do not show a status post for this upload"] = ""; -$a->strings["Permissions"] = ""; $a->strings["Contact Photos"] = ""; $a->strings["Edit Album"] = ""; $a->strings["Show Newest First"] = ""; @@ -924,281 +1327,55 @@ $a->strings["New album name"] = ""; $a->strings["Caption"] = ""; $a->strings["Add a Tag"] = ""; $a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = ""; +$a->strings["In This Photo:"] = ""; $a->strings["View Album"] = ""; $a->strings["Recent Photos"] = ""; -$a->strings["sent you a private message"] = ""; -$a->strings["added your channel"] = ""; -$a->strings["g A l F d"] = ""; -$a->strings["[today]"] = ""; -$a->strings["posted an event"] = ""; -$a->strings["Not found."] = ""; -$a->strings["- select -"] = ""; -$a->strings["Welcome to %s"] = ""; -$a->strings["Check Mail"] = ""; -$a->strings["Unable to lookup recipient."] = ""; -$a->strings["Unable to communicate with requested channel."] = ""; -$a->strings["Cannot verify requested channel."] = ""; -$a->strings["Selected channel has private message restrictions. Send failed."] = ""; -$a->strings["Messages"] = ""; -$a->strings["Message deleted."] = ""; -$a->strings["Conversation removed."] = ""; -$a->strings["Send Private Message"] = ""; -$a->strings["To:"] = ""; -$a->strings["Subject:"] = ""; -$a->strings["No messages."] = ""; -$a->strings["Delete message"] = ""; -$a->strings["D, d M Y - g:i A"] = ""; -$a->strings["Message not found."] = ""; -$a->strings["Delete conversation"] = ""; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; -$a->strings["Send Reply"] = ""; -$a->strings["No profile"] = ""; $a->strings["Help:"] = ""; $a->strings["Not Found"] = ""; -$a->strings["Page not found."] = ""; -$a->strings["Remote Authentication"] = ""; -$a->strings["Enter your channel address (e.g. channel@example.com)"] = ""; -$a->strings["Authenticate"] = ""; -$a->strings["Unable to locate original post."] = ""; -$a->strings["Empty post discarded."] = ""; -$a->strings["System error. Post not saved."] = ""; -$a->strings["Wall Photos"] = ""; -$a->strings["Remove term"] = ""; -$a->strings["Commented Order"] = ""; -$a->strings["Sort by Comment Date"] = ""; -$a->strings["Posted Order"] = ""; -$a->strings["Sort by Post Date"] = ""; -$a->strings["Personal"] = ""; -$a->strings["Posts that mention or involve you"] = ""; -$a->strings["New"] = ""; -$a->strings["Activity Stream - by date"] = ""; -$a->strings["Starred"] = ""; -$a->strings["Favourite Posts"] = ""; -$a->strings["Spam"] = ""; -$a->strings["Posts flagged as SPAM"] = ""; -$a->strings["Refresh"] = ""; -$a->strings["Me"] = ""; -$a->strings["Best Friends"] = ""; -$a->strings["Co-workers"] = ""; -$a->strings["Former Friends"] = ""; -$a->strings["Acquaintances"] = ""; -$a->strings["Everybody"] = ""; -$a->strings["Search Results For:"] = ""; -$a->strings["No such group"] = ""; -$a->strings["Group is empty"] = ""; -$a->strings["Contact: "] = ""; -$a->strings["Invalid contact."] = ""; -$a->strings["Theme settings updated."] = ""; -$a->strings["Site"] = ""; -$a->strings["Users"] = ""; -$a->strings["Plugins"] = ""; -$a->strings["Themes"] = ""; -$a->strings["DB updates"] = ""; -$a->strings["Logs"] = ""; -$a->strings["Plugin Features"] = ""; -$a->strings["User registrations waiting for confirmation"] = ""; -$a->strings["Message queues"] = ""; -$a->strings["Administration"] = ""; -$a->strings["Summary"] = ""; -$a->strings["Registered users"] = ""; -$a->strings["Pending registrations"] = ""; -$a->strings["Version"] = ""; -$a->strings["Active plugins"] = ""; -$a->strings["Site settings updated."] = ""; -$a->strings["No special theme for accessibility"] = ""; -$a->strings["Closed"] = ""; -$a->strings["Requires approval"] = ""; -$a->strings["Open"] = ""; -$a->strings["Private"] = ""; -$a->strings["Paid Access"] = ""; -$a->strings["Free Access"] = ""; -$a->strings["No SSL policy, links will track page SSL state"] = ""; -$a->strings["Force all links to use SSL"] = ""; -$a->strings["Registration"] = ""; -$a->strings["File upload"] = ""; -$a->strings["Policies"] = ""; -$a->strings["Advanced"] = ""; -$a->strings["Site name"] = ""; -$a->strings["Banner/Logo"] = ""; -$a->strings["System language"] = ""; -$a->strings["System theme"] = ""; -$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = ""; -$a->strings["Mobile system theme"] = ""; -$a->strings["Theme for mobile devices"] = ""; -$a->strings["Accessibility system theme"] = ""; -$a->strings["Accessibility theme"] = ""; -$a->strings["Channel to use for this website's static pages"] = ""; -$a->strings["Site Channel"] = ""; -$a->strings["SSL link policy"] = ""; -$a->strings["Determines whether generated links should be forced to use SSL"] = ""; -$a->strings["Maximum image size"] = ""; -$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = ""; -$a->strings["Register policy"] = ""; -$a->strings["Access policy"] = ""; -$a->strings["Register text"] = ""; -$a->strings["Will be displayed prominently on the registration page."] = ""; -$a->strings["Accounts abandoned after x days"] = ""; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = ""; -$a->strings["Allowed friend domains"] = ""; -$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = ""; -$a->strings["Allowed email domains"] = ""; -$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = ""; -$a->strings["Block public"] = ""; -$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = ""; -$a->strings["Force publish"] = ""; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = ""; -$a->strings["Proxy user"] = ""; -$a->strings["Proxy URL"] = ""; -$a->strings["Network timeout"] = ""; -$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = ""; -$a->strings["Delivery interval"] = ""; -$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = ""; -$a->strings["Poll interval"] = ""; -$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = ""; -$a->strings["Maximum Load Average"] = ""; -$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = ""; -$a->strings["Update has been marked successful"] = ""; -$a->strings["Executing %s failed. Check system logs."] = ""; -$a->strings["Update %s was successfully applied."] = ""; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = ""; -$a->strings["Update function %s could not be found."] = ""; -$a->strings["No failed updates."] = ""; -$a->strings["Failed Updates"] = ""; -$a->strings["Mark success (if update was manually applied)"] = ""; -$a->strings["Attempt to execute this update step automatically"] = ""; -$a->strings["%s user blocked/unblocked"] = array( - 0 => "", - 1 => "", -); -$a->strings["%s user deleted"] = array( - 0 => "", - 1 => "", -); -$a->strings["Account not found"] = ""; -$a->strings["User '%s' deleted"] = ""; -$a->strings["User '%s' unblocked"] = ""; -$a->strings["User '%s' blocked"] = ""; -$a->strings["Normal Account"] = ""; -$a->strings["Soapbox Account"] = ""; -$a->strings["Community/Celebrity Account"] = ""; -$a->strings["Automatic Friend Account"] = ""; -$a->strings["select all"] = ""; -$a->strings["User registrations waiting for confirm"] = ""; -$a->strings["Request date"] = ""; -$a->strings["No registrations."] = ""; -$a->strings["Approve"] = ""; -$a->strings["Deny"] = ""; -$a->strings["Block"] = ""; -$a->strings["Unblock"] = ""; -$a->strings["Register date"] = ""; -$a->strings["Last login"] = ""; -$a->strings["Service Class"] = ""; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; -$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; -$a->strings["Plugin %s disabled."] = ""; -$a->strings["Plugin %s enabled."] = ""; -$a->strings["Disable"] = ""; -$a->strings["Enable"] = ""; -$a->strings["Toggle"] = ""; -$a->strings["Author: "] = ""; -$a->strings["Maintainer: "] = ""; -$a->strings["No themes found."] = ""; -$a->strings["Screenshot"] = ""; -$a->strings["[Experimental]"] = ""; -$a->strings["[Unsupported]"] = ""; -$a->strings["Log settings updated."] = ""; -$a->strings["Clear"] = ""; -$a->strings["Debugging"] = ""; -$a->strings["Log file"] = ""; -$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = ""; -$a->strings["Log level"] = ""; -$a->strings["Ignore"] = ""; -$a->strings["Connection updated."] = ""; -$a->strings["Connection update failed."] = ""; -$a->strings["Introductions and Connection Requests"] = ""; -$a->strings["No pending introductions."] = ""; -$a->strings["System error. Please try again later."] = ""; -$a->strings["Hide this contact from others"] = ""; -$a->strings["Post a new friend activity"] = ""; -$a->strings["if applicable"] = ""; -$a->strings["Discard"] = ""; -$a->strings["Could not access contact record."] = ""; -$a->strings["Could not locate selected profile."] = ""; -$a->strings["Failed to update connection record."] = ""; -$a->strings["Could not access address book record."] = ""; -$a->strings["Refresh failed - channel is currently unavailable."] = ""; -$a->strings["Channel has been unblocked"] = ""; -$a->strings["Channel has been blocked"] = ""; -$a->strings["Unable to set address book parameters."] = ""; -$a->strings["Channel has been unignored"] = ""; -$a->strings["Channel has been ignored"] = ""; -$a->strings["Channel has been unarchived"] = ""; -$a->strings["Channel has been archived"] = ""; -$a->strings["Channel has been unhidden"] = ""; -$a->strings["Channel has been hidden"] = ""; -$a->strings["Channel has been approved"] = ""; -$a->strings["Channel has been unapproved"] = ""; -$a->strings["Contact has been removed."] = ""; -$a->strings["View %s's profile"] = ""; -$a->strings["Refresh Permissions"] = ""; -$a->strings["Fetch updated permissions"] = ""; -$a->strings["Block or Unblock this connection"] = ""; -$a->strings["Unignore"] = ""; -$a->strings["Ignore or Unignore this connection"] = ""; -$a->strings["Unarchive"] = ""; -$a->strings["Archive"] = ""; -$a->strings["Archive or Unarchive this connection"] = ""; -$a->strings["Unhide"] = ""; -$a->strings["Hide"] = ""; -$a->strings["Hide or Unhide this connection"] = ""; -$a->strings["Delete this connection"] = ""; -$a->strings["Unknown"] = ""; -$a->strings["Approve this connection"] = ""; -$a->strings["Accept connection to allow communication"] = ""; -$a->strings["Automatic Permissions Settings"] = ""; -$a->strings["Connections: settings for %s"] = ""; -$a->strings["When receiving a channel introduction, any permissions provided here will be applied to the new connection automatically and the introduction approved. Leave this page if you do not wish to use this feature."] = ""; -$a->strings["Slide to adjust your degree of friendship"] = ""; -$a->strings["Connection has no individual permissions!"] = ""; -$a->strings["This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"."] = ""; -$a->strings["Profile Visibility"] = ""; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = ""; -$a->strings["Contact Information / Notes"] = ""; -$a->strings["Edit contact notes"] = ""; -$a->strings["Their Settings"] = ""; -$a->strings["My Settings"] = ""; -$a->strings["Forum Members"] = ""; -$a->strings["Soapbox"] = ""; -$a->strings["Full Sharing"] = ""; -$a->strings["Cautious Sharing"] = ""; -$a->strings["Follow Only"] = ""; -$a->strings["Individual Permissions"] = ""; -$a->strings["Individual permissions are only enabled for privacy settings which are set to \"Only those you specifically allow\". Otherwise they are controlled by your privacy settings."] = ""; -$a->strings["Advanced Permissions"] = ""; -$a->strings["Quick Links"] = ""; -$a->strings["Visit %s's profile - %s"] = ""; -$a->strings["Block/Unblock contact"] = ""; -$a->strings["Ignore contact"] = ""; -$a->strings["Repair URL settings"] = ""; -$a->strings["View conversations"] = ""; -$a->strings["Delete contact"] = ""; -$a->strings["Last update:"] = ""; -$a->strings["Update public posts"] = ""; -$a->strings["Update now"] = ""; -$a->strings["Currently blocked"] = ""; -$a->strings["Currently ignored"] = ""; -$a->strings["Currently archived"] = ""; -$a->strings["Currently pending"] = ""; -$a->strings["Replies/likes to your public posts may still be visible"] = ""; +$a->strings["sent you a private message"] = ""; +$a->strings["added your channel"] = ""; +$a->strings["posted an event"] = ""; +$a->strings["No valid account found."] = ""; +$a->strings["Password reset request issued. Check your email."] = ""; +$a->strings["Site Member (%s)"] = ""; +$a->strings["Password reset requested at %s"] = ""; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = ""; +$a->strings["Password Reset"] = ""; +$a->strings["Your password has been reset as requested."] = ""; +$a->strings["Your new password is"] = ""; +$a->strings["Save or copy your new password - and then"] = ""; +$a->strings["click here to login"] = ""; +$a->strings["Your password may be changed from the Settings page after successful login."] = ""; +$a->strings["Your password has changed at %s"] = ""; +$a->strings["Forgot your Password?"] = ""; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = ""; +$a->strings["Email Address"] = ""; +$a->strings["Reset"] = ""; +$a->strings["Remove This Channel"] = ""; +$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = ""; +$a->strings["Please enter your password for verification:"] = ""; +$a->strings["Remove this channel and all its clones from the network"] = ""; +$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = ""; +$a->strings["Remove Channel"] = ""; +$a->strings["No potential page delegates located."] = ""; +$a->strings["Delegate Page Management"] = ""; +$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = ""; +$a->strings["Existing Page Managers"] = ""; +$a->strings["Existing Page Delegates"] = ""; +$a->strings["Potential Delegates"] = ""; +$a->strings["Add"] = ""; +$a->strings["No entries."] = ""; +$a->strings["Help with this feature"] = ""; +$a->strings["Layout Name"] = ""; $a->strings["Blocked"] = ""; $a->strings["Ignored"] = ""; $a->strings["Hidden"] = ""; $a->strings["Archived"] = ""; $a->strings["All"] = ""; -$a->strings["Suggestions"] = ""; +$a->strings["Unconnected"] = ""; $a->strings["Suggest new connections"] = ""; +$a->strings["New Connections"] = ""; $a->strings["Show pending (new) connections"] = ""; -$a->strings["All Connections"] = ""; $a->strings["Show all connections"] = ""; $a->strings["Unblocked"] = ""; $a->strings["Only show unblocked connections"] = ""; @@ -1206,15 +1383,51 @@ $a->strings["Only show blocked connections"] = ""; $a->strings["Only show ignored connections"] = ""; $a->strings["Only show archived connections"] = ""; $a->strings["Only show hidden connections"] = ""; +$a->strings["Only show one-way connections"] = ""; $a->strings["%1\$s [%2\$s]"] = ""; $a->strings["Edit contact"] = ""; $a->strings["Search your connections"] = ""; $a->strings["Finding: "] = ""; -$a->strings["This site is not a directory server"] = ""; -$a->strings["Remote privacy information not available."] = ""; -$a->strings["Visible to:"] = ""; -$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = ""; -$a->strings["Welcome %s. Remote authentication successful."] = ""; +$a->strings["Nothing to import."] = ""; +$a->strings["Unable to download data from old server"] = ""; +$a->strings["Imported file is empty."] = ""; +$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = ""; +$a->strings["Channel clone failed. Import failed."] = ""; +$a->strings["Cloned channel not found. Import failed."] = ""; +$a->strings["Import completed."] = ""; +$a->strings["You must be logged in to use this feature."] = ""; +$a->strings["Import Channel"] = ""; +$a->strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = ""; +$a->strings["File to Upload"] = ""; +$a->strings["Or provide the old server/hub details"] = ""; +$a->strings["Your old identity address (xyz@example.com)"] = ""; +$a->strings["Your old login email address"] = ""; +$a->strings["Your old login password"] = ""; +$a->strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = ""; +$a->strings["Make this hub my primary location"] = ""; +$a->strings["Mood"] = ""; +$a->strings["Set your current mood and tell your friends"] = ""; +$a->strings["Room not found"] = ""; +$a->strings["Leave Room"] = ""; +$a->strings["Delete This Room"] = ""; +$a->strings["I am away right now"] = ""; +$a->strings["I am online"] = ""; +$a->strings["Bookmark this room"] = ""; +$a->strings["New Chatroom"] = ""; +$a->strings["Chatroom Name"] = ""; +$a->strings["%1\$s's Chatrooms"] = ""; +$a->strings["Edit Block"] = ""; +$a->strings["Delete block?"] = ""; +$a->strings["Delete Block"] = ""; +$a->strings["Profile Match"] = ""; +$a->strings["No keywords to match. Please add keywords to your default profile."] = ""; +$a->strings["is interested in:"] = ""; +$a->strings["No matches"] = ""; +$a->strings["Away"] = ""; +$a->strings["Online"] = ""; +$a->strings["Edit Webpage"] = ""; +$a->strings["Delete webpage?"] = ""; +$a->strings["Delete Webpage"] = ""; $a->strings["Profile not found."] = ""; $a->strings["Profile deleted."] = ""; $a->strings["Profile-"] = ""; @@ -1233,7 +1446,6 @@ $a->strings["Sexual Preference"] = ""; $a->strings["Homepage"] = ""; $a->strings["Interests"] = ""; $a->strings["Address"] = ""; -$a->strings["Location"] = ""; $a->strings["Profile updated."] = ""; $a->strings["Hide your contact/friend list from viewers of this profile?"] = ""; $a->strings["Edit Profile Details"] = ""; @@ -1274,169 +1486,220 @@ $a->strings["Work/employment"] = ""; $a->strings["School/education"] = ""; $a->strings["This is your public profile.
    It may be visible to anybody using the internet."] = ""; $a->strings["Edit/Manage Profiles"] = ""; -$a->strings["Change profile photo"] = ""; -$a->strings["Create New Profile"] = ""; -$a->strings["Profile Image"] = ""; -$a->strings["visible to everybody"] = ""; -$a->strings["Edit visibility"] = ""; -$a->strings["Add a Channel"] = ""; -$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = ""; -$a->strings["Channel Name"] = ""; -$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = ""; -$a->strings["Choose a short nickname"] = ""; -$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = ""; -$a->strings["Or import an existing channel from another location"] = ""; -$a->strings["Create"] = ""; -$a->strings["No valid account found."] = ""; -$a->strings["Password reset request issued. Check your email."] = ""; -$a->strings["Site Member (%s)"] = ""; -$a->strings["Password reset requested at %s"] = ""; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = ""; -$a->strings["Password Reset"] = ""; -$a->strings["Your password has been reset as requested."] = ""; -$a->strings["Your new password is"] = ""; -$a->strings["Save or copy your new password - and then"] = ""; -$a->strings["click here to login"] = ""; -$a->strings["Your password may be changed from the Settings page after successful login."] = ""; -$a->strings["Your password has changed at %s"] = ""; -$a->strings["Forgot your Password?"] = ""; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = ""; -$a->strings["Email Address"] = ""; -$a->strings["Reset"] = ""; -$a->strings["Nothing to import."] = ""; -$a->strings["Unable to download data from old server"] = ""; -$a->strings["Imported file is empty."] = ""; -$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = ""; -$a->strings["Channel clone failed. Import failed."] = ""; -$a->strings["Cloned channel not found. Import failed."] = ""; -$a->strings["Import completed."] = ""; -$a->strings["You must be logged in to use this feature."] = ""; -$a->strings["Import Channel"] = ""; -$a->strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = ""; -$a->strings["File to Upload"] = ""; -$a->strings["Or provide the old server/hub details"] = ""; -$a->strings["Your old identity address (xyz@example.com)"] = ""; -$a->strings["Your old login email address"] = ""; -$a->strings["Your old login password"] = ""; -$a->strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = ""; -$a->strings["Make this hub my primary location"] = ""; -$a->strings["Create a new channel"] = ""; -$a->strings["Channel Manager"] = ""; -$a->strings["Current Channel"] = ""; -$a->strings["Attach to one of your channels by selecting it."] = ""; -$a->strings["Default Channel"] = ""; -$a->strings["Make Default"] = ""; -$a->strings["Profile Match"] = ""; -$a->strings["No keywords to match. Please add keywords to your default profile."] = ""; -$a->strings["is interested in:"] = ""; -$a->strings["Contact settings applied."] = ""; -$a->strings["Contact update failed."] = ""; -$a->strings["Contact not found."] = ""; -$a->strings["Repair Contact Settings"] = ""; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = ""; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = ""; -$a->strings["Return to contact editor"] = ""; -$a->strings["Account Nickname"] = ""; -$a->strings["@Tagname - overrides Name/Nickname"] = ""; -$a->strings["Account URL"] = ""; -$a->strings["Friend Request URL"] = ""; -$a->strings["Friend Confirm URL"] = ""; -$a->strings["Notification Endpoint URL"] = ""; -$a->strings["Poll/Feed URL"] = ""; -$a->strings["New photo from this URL"] = ""; -$a->strings["invalid target signature"] = ""; -$a->strings["Channel added."] = ""; -$a->strings["Contacts who are not members of a group"] = ""; -$a->strings["Image uploaded but image cropping failed."] = ""; -$a->strings["Image resize failed."] = ""; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = ""; -$a->strings["Image exceeds size limit of %d"] = ""; -$a->strings["Unable to process image."] = ""; -$a->strings["Photo not available."] = ""; -$a->strings["Upload File:"] = ""; -$a->strings["Select a profile:"] = ""; -$a->strings["Upload Profile Photo"] = ""; -$a->strings["Upload"] = ""; -$a->strings["skip this step"] = ""; -$a->strings["select a photo from your photo albums"] = ""; -$a->strings["Crop Image"] = ""; -$a->strings["Please adjust the image cropping for optimum viewing."] = ""; -$a->strings["Done Editing"] = ""; -$a->strings["Image uploaded successfully."] = ""; -$a->strings["Image upload failed."] = ""; -$a->strings["Image size reduction [%s] failed."] = ""; -$a->strings["Item not found"] = ""; -$a->strings["Edit post"] = ""; -$a->strings["Insert YouTube video"] = ""; -$a->strings["Insert Vorbis [.ogg] video"] = ""; -$a->strings["Insert Vorbis [.ogg] audio"] = ""; -$a->strings["Invalid request identifier."] = ""; -$a->strings["System"] = ""; -$a->strings["Introductions"] = ""; -$a->strings["Show Ignored Requests"] = ""; -$a->strings["Hide Ignored Requests"] = ""; -$a->strings["Notification type: "] = ""; -$a->strings["Friend Suggestion"] = ""; -$a->strings["suggested by %s"] = ""; -$a->strings["Claims to be known to you: "] = ""; -$a->strings["yes"] = ""; -$a->strings["no"] = ""; -$a->strings["Approve as: "] = ""; -$a->strings["Friend"] = ""; -$a->strings["Sharer"] = ""; -$a->strings["Fan/Admirer"] = ""; -$a->strings["Friend/Connect Request"] = ""; -$a->strings["New Follower"] = ""; -$a->strings["No introductions."] = ""; -$a->strings["%s liked %s's post"] = ""; -$a->strings["%s disliked %s's post"] = ""; -$a->strings["%s is now friends with %s"] = ""; -$a->strings["%s created a new post"] = ""; -$a->strings["%s commented on %s's post"] = ""; -$a->strings["No more network notifications."] = ""; -$a->strings["Network Notifications"] = ""; -$a->strings["No more system notifications."] = ""; -$a->strings["System Notifications"] = ""; -$a->strings["No more personal notifications."] = ""; -$a->strings["Personal Notifications"] = ""; -$a->strings["No more home notifications."] = ""; -$a->strings["Home Notifications"] = ""; -$a->strings["Post successful."] = ""; -$a->strings["Item is not editable"] = ""; -$a->strings["Access to this profile has been restricted."] = ""; +$a->strings["Add profile things"] = ""; +$a->strings["Include desirable objects in your profile"] = ""; +$a->strings["Menu updated."] = ""; +$a->strings["Unable to update menu."] = ""; +$a->strings["Menu created."] = ""; +$a->strings["Unable to create menu."] = ""; +$a->strings["Manage Menus"] = ""; +$a->strings["Drop"] = ""; +$a->strings["Create a new menu"] = ""; +$a->strings["Delete this menu"] = ""; +$a->strings["Edit menu contents"] = ""; +$a->strings["Edit this menu"] = ""; +$a->strings["New Menu"] = ""; +$a->strings["Menu name"] = ""; +$a->strings["Must be unique, only seen by you"] = ""; +$a->strings["Menu title"] = ""; +$a->strings["Menu title as seen by others"] = ""; +$a->strings["Allow bookmarks"] = ""; +$a->strings["Menu may be used to store saved bookmarks"] = ""; +$a->strings["Menu deleted."] = ""; +$a->strings["Menu could not be deleted."] = ""; +$a->strings["Edit Menu"] = ""; +$a->strings["Add or remove entries to this menu"] = ""; +$a->strings["OpenID protocol error. No ID returned."] = ""; +$a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"] = ""; +$a->strings["Unable to lookup recipient."] = ""; +$a->strings["Unable to communicate with requested channel."] = ""; +$a->strings["Cannot verify requested channel."] = ""; +$a->strings["Selected channel has private message restrictions. Send failed."] = ""; +$a->strings["Message deleted."] = ""; +$a->strings["Message recalled."] = ""; +$a->strings["Send Private Message"] = ""; +$a->strings["To:"] = ""; +$a->strings["Subject:"] = ""; +$a->strings["Your message:"] = ""; +$a->strings["Message not found."] = ""; +$a->strings["Recall message"] = ""; +$a->strings["Message has been recalled."] = ""; +$a->strings["Private Conversation"] = ""; +$a->strings["Delete conversation"] = ""; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; +$a->strings["Send Reply"] = ""; +$a->strings["App installed."] = ""; +$a->strings["Malformed app."] = ""; +$a->strings["Embed code"] = ""; +$a->strings["Create App"] = ""; +$a->strings["Name of app"] = ""; +$a->strings["Location (URL) of app"] = ""; +$a->strings["Description"] = ""; +$a->strings["Photo icon URL"] = ""; +$a->strings["80 x 80 pixels - optional"] = ""; +$a->strings["Version ID"] = ""; +$a->strings["Price of app"] = ""; +$a->strings["Location (URL) to purchase app"] = ""; $a->strings["Poke/Prod"] = ""; $a->strings["poke, prod or do other things to somebody"] = ""; $a->strings["Recipient"] = ""; $a->strings["Choose what you wish to do to recipient"] = ""; $a->strings["Make this post private"] = ""; -$a->strings["Not available."] = ""; -$a->strings["Community"] = ""; -$a->strings["No results."] = ""; -$a->strings["Files"] = ""; -$a->strings["Friend suggestion sent."] = ""; -$a->strings["Suggest Friends"] = ""; -$a->strings["Suggest a friend for %s"] = ""; -$a->strings["Invalid profile identifier."] = ""; -$a->strings["Profile Visibility Editor"] = ""; -$a->strings["Click on a contact to add or remove."] = ""; -$a->strings["Visible To"] = ""; -$a->strings["All Contacts (with secure profile access)"] = ""; -$a->strings["Version %s"] = ""; -$a->strings["Installed plugins/addons/apps:"] = ""; -$a->strings["No installed plugins/addons/apps"] = ""; -$a->strings["Red"] = ""; -$a->strings["This is Red - another decentralized, distributed communications project by the folks at Friendica."] = ""; -$a->strings["Running at web location"] = ""; -$a->strings["Please visit Friendica.com to learn more about the Friendica and/or Red project."] = ""; -$a->strings["Bug reports and issues: please visit"] = ""; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = ""; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = ""; -$a->strings["Ignore/Hide"] = ""; +$a->strings["No connections."] = ""; +$a->strings["Visit %s's profile [%s]"] = ""; +$a->strings["View Connnections"] = ""; +$a->strings["Theme settings updated."] = ""; +$a->strings["Site"] = ""; +$a->strings["Accounts"] = ""; +$a->strings["Channels"] = ""; +$a->strings["Plugins"] = ""; +$a->strings["Themes"] = ""; +$a->strings["Server"] = ""; +$a->strings["DB updates"] = ""; +$a->strings["Logs"] = ""; +$a->strings["Plugin Features"] = ""; +$a->strings["User registrations waiting for confirmation"] = ""; +$a->strings["Message queues"] = ""; +$a->strings["Administration"] = ""; +$a->strings["Summary"] = ""; +$a->strings["Registered users"] = ""; +$a->strings["Pending registrations"] = ""; +$a->strings["Version"] = ""; +$a->strings["Active plugins"] = ""; +$a->strings["Site settings updated."] = ""; +$a->strings["No special theme for accessibility"] = ""; +$a->strings["Yes - with approval"] = ""; +$a->strings["My site is not a public server"] = ""; +$a->strings["My site has paid access only"] = ""; +$a->strings["My site has free access only"] = ""; +$a->strings["My site offers free accounts with optional paid upgrades"] = ""; +$a->strings["Registration"] = ""; +$a->strings["File upload"] = ""; +$a->strings["Policies"] = ""; +$a->strings["Site name"] = ""; +$a->strings["Banner/Logo"] = ""; +$a->strings["Administrator Information"] = ""; +$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = ""; +$a->strings["System language"] = ""; +$a->strings["System theme"] = ""; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = ""; +$a->strings["Mobile system theme"] = ""; +$a->strings["Theme for mobile devices"] = ""; +$a->strings["Accessibility system theme"] = ""; +$a->strings["Accessibility theme"] = ""; +$a->strings["Channel to use for this website's static pages"] = ""; +$a->strings["Site Channel"] = ""; +$a->strings["Maximum image size"] = ""; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = ""; +$a->strings["Does this site allow new member registration?"] = ""; +$a->strings["Which best describes the types of account offered by this hub?"] = ""; +$a->strings["Register text"] = ""; +$a->strings["Will be displayed prominently on the registration page."] = ""; +$a->strings["Accounts abandoned after x days"] = ""; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = ""; +$a->strings["Allowed friend domains"] = ""; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = ""; +$a->strings["Allowed email domains"] = ""; +$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = ""; +$a->strings["Block public"] = ""; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = ""; +$a->strings["Force publish"] = ""; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = ""; +$a->strings["Disable discovery tab"] = ""; +$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = ""; +$a->strings["No login on Homepage"] = ""; +$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = ""; +$a->strings["Proxy user"] = ""; +$a->strings["Proxy URL"] = ""; +$a->strings["Network timeout"] = ""; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = ""; +$a->strings["Delivery interval"] = ""; +$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = ""; +$a->strings["Poll interval"] = ""; +$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = ""; +$a->strings["Maximum Load Average"] = ""; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = ""; +$a->strings["No server found"] = ""; +$a->strings["ID"] = ""; +$a->strings["for channel"] = ""; +$a->strings["on server"] = ""; +$a->strings["Status"] = ""; +$a->strings["Update has been marked successful"] = ""; +$a->strings["Executing %s failed. Check system logs."] = ""; +$a->strings["Update %s was successfully applied."] = ""; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = ""; +$a->strings["Update function %s could not be found."] = ""; +$a->strings["No failed updates."] = ""; +$a->strings["Failed Updates"] = ""; +$a->strings["Mark success (if update was manually applied)"] = ""; +$a->strings["Attempt to execute this update step automatically"] = ""; +$a->strings["%s user blocked/unblocked"] = array( + 0 => "", + 1 => "", +); +$a->strings["%s user deleted"] = array( + 0 => "", + 1 => "", +); +$a->strings["Account not found"] = ""; +$a->strings["User '%s' deleted"] = ""; +$a->strings["User '%s' unblocked"] = ""; +$a->strings["User '%s' blocked"] = ""; +$a->strings["Users"] = ""; +$a->strings["select all"] = ""; +$a->strings["User registrations waiting for confirm"] = ""; +$a->strings["Request date"] = ""; +$a->strings["No registrations."] = ""; +$a->strings["Approve"] = ""; +$a->strings["Deny"] = ""; +$a->strings["Register date"] = ""; +$a->strings["Last login"] = ""; +$a->strings["Expires"] = ""; +$a->strings["Service Class"] = ""; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; +$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; +$a->strings["%s channel censored/uncensored"] = array( + 0 => "", + 1 => "", +); +$a->strings["%s channel deleted"] = array( + 0 => "", + 1 => "", +); +$a->strings["Channel not found"] = ""; +$a->strings["Channel '%s' deleted"] = ""; +$a->strings["Channel '%s' uncensored"] = ""; +$a->strings["Channel '%s' censored"] = ""; +$a->strings["Censor"] = ""; +$a->strings["Uncensor"] = ""; +$a->strings["UID"] = ""; +$a->strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; +$a->strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; +$a->strings["Plugin %s disabled."] = ""; +$a->strings["Plugin %s enabled."] = ""; +$a->strings["Disable"] = ""; +$a->strings["Enable"] = ""; +$a->strings["Toggle"] = ""; +$a->strings["Author: "] = ""; +$a->strings["Maintainer: "] = ""; +$a->strings["No themes found."] = ""; +$a->strings["Screenshot"] = ""; +$a->strings["[Experimental]"] = ""; +$a->strings["[Unsupported]"] = ""; +$a->strings["Log settings updated."] = ""; +$a->strings["Clear"] = ""; +$a->strings["Debugging"] = ""; +$a->strings["Log file"] = ""; +$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = ""; +$a->strings["Log level"] = ""; $a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = ""; $a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = ""; +$a->strings["Passwords do not match."] = ""; $a->strings["Registration successful. Please check your email for validation instructions."] = ""; $a->strings["Your registration is pending approval by the site owner."] = ""; $a->strings["Your registration can not be processed."] = ""; +$a->strings["Registration on this site/hub is by approval only."] = ""; +$a->strings["Register at another affiliated site/hub"] = ""; $a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = ""; $a->strings["Terms of Service"] = ""; $a->strings["I accept the %s for this website"] = ""; @@ -1446,46 +1709,80 @@ $a->strings["Please enter your invitation code"] = ""; $a->strings["Your email address"] = ""; $a->strings["Choose a password"] = ""; $a->strings["Please re-enter your password"] = ""; +$a->strings["- select -"] = ""; +$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = ""; +$a->strings["Create a new channel"] = ""; +$a->strings["Channel Manager"] = ""; +$a->strings["Current Channel"] = ""; +$a->strings["Attach to one of your channels by selecting it."] = ""; +$a->strings["Default Channel"] = ""; +$a->strings["Make Default"] = ""; +$a->strings["Total invitation limit exceeded."] = ""; +$a->strings["%s : Not a valid email address."] = ""; +$a->strings["Please join us on Red"] = ""; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = ""; +$a->strings["%s : Message delivery failed."] = ""; +$a->strings["%d message sent."] = array( + 0 => "", + 1 => "", +); +$a->strings["You have no more invitations available"] = ""; +$a->strings["Send invitations"] = ""; +$a->strings["Enter email addresses, one per line:"] = ""; +$a->strings["You are cordially invited to join me and some other close friends on the Red Matrix - a revolutionary new decentralised communication and information tool."] = ""; +$a->strings["You will need to supply this invitation code: \$invite_code"] = ""; +$a->strings["Please visit my channel at"] = ""; +$a->strings["Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:"] = ""; +$a->strings["Click the [Register] link on the following page to join."] = ""; +$a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = ""; +$a->strings["Wall Photos"] = ""; +$a->strings["No channel."] = ""; +$a->strings["Common connections"] = ""; +$a->strings["No connections in common."] = ""; $a->strings["Please login."] = ""; -$a->strings["Remove My Account"] = ""; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = ""; -$a->strings["Please enter your password for verification:"] = ""; -$a->strings["Mood"] = ""; -$a->strings["Set your current mood and tell your friends"] = ""; -$a->strings["Theme settings"] = ""; -$a->strings["Set font-size for posts and comments"] = ""; -$a->strings["Set line-height for posts and comments"] = ""; -$a->strings["Set colour scheme"] = ""; -$a->strings["Draw shadows"] = ""; -$a->strings["Navigation bar colour"] = ""; -$a->strings["Display style"] = ""; -$a->strings["Display colour of links - hex value, do not include the #"] = ""; -$a->strings["Icons"] = ""; -$a->strings["Shiny style"] = ""; -$a->strings["Corner radius"] = ""; -$a->strings["0-99 default: 5"] = ""; +$a->strings["Select a bookmark folder"] = ""; +$a->strings["Save Bookmark"] = ""; +$a->strings["URL of bookmark"] = ""; +$a->strings["Or enter new bookmark folder name"] = ""; $a->strings["Update %s failed. See error logs."] = ""; $a->strings["Update Error at %s"] = ""; -$a->strings["Create a New Account"] = ""; +$a->strings["Create an account to access services and applications within the Red Matrix"] = ""; $a->strings["Password"] = ""; $a->strings["Remember me"] = ""; $a->strings["Forgot your password?"] = ""; -$a->strings["Requested channel is not available."] = ""; -$a->strings[" Sorry, you don't have the permission to view this profile. "] = ""; -$a->strings["Profiles"] = ""; -$a->strings["Manage/edit profiles"] = ""; -$a->strings["Edit Profile"] = ""; -$a->strings["F d"] = ""; -$a->strings["Birthday Reminders"] = ""; -$a->strings["Birthdays this week:"] = ""; -$a->strings["[No description]"] = ""; -$a->strings["Event Reminders"] = ""; -$a->strings["Events this week:"] = ""; -$a->strings["Channel"] = ""; -$a->strings["Status Messages and Posts"] = ""; -$a->strings["About"] = ""; -$a->strings["Profile Details"] = ""; -$a->strings["Events and Calendar"] = ""; -$a->strings["Webpages"] = ""; -$a->strings["Manage Webpages"] = ""; +$a->strings["permission denied"] = ""; +$a->strings["Got Zot?"] = ""; $a->strings["toggle mobile"] = ""; +$a->strings["Theme settings"] = ""; +$a->strings["Set scheme"] = ""; +$a->strings["Narrow navbar"] = ""; +$a->strings["Navigation bar background colour"] = ""; +$a->strings["Navigation bar gradient top colour"] = ""; +$a->strings["Navigation bar gradient bottom colour"] = ""; +$a->strings["Navigation active button gradient top colour"] = ""; +$a->strings["Navigation active button gradient bottom colour"] = ""; +$a->strings["Navigation bar border colour "] = ""; +$a->strings["Navigation bar icon colour "] = ""; +$a->strings["Navigation bar active icon colour "] = ""; +$a->strings["link colour"] = ""; +$a->strings["Set font-colour for banner"] = ""; +$a->strings["Set the background colour"] = ""; +$a->strings["Set the background image"] = ""; +$a->strings["Set the background colour of items"] = ""; +$a->strings["Set the background colour of comments"] = ""; +$a->strings["Set the border colour of comments"] = ""; +$a->strings["Set the indent for comments"] = ""; +$a->strings["Set the basic colour for item icons"] = ""; +$a->strings["Set the hover colour for item icons"] = ""; +$a->strings["Set font-size for the entire application"] = ""; +$a->strings["Set font-size for posts and comments"] = ""; +$a->strings["Set font-colour for posts and comments"] = ""; +$a->strings["Set radius of corners"] = ""; +$a->strings["Set shadow depth of photos"] = ""; +$a->strings["Set maximum width of conversation regions"] = ""; +$a->strings["Center conversation regions"] = ""; +$a->strings["Set minimum opacity of nav bar - to hide it"] = ""; +$a->strings["Set size of conversation author photo"] = ""; +$a->strings["Set size of followup author photos"] = ""; +$a->strings["Sloppy photo albums"] = ""; +$a->strings["Are you a clean desk or a messy desk person?"] = ""; From 77ca117218382b57e2d0590466d9fc38dc016e80 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 21 May 2014 01:55:32 -0700 Subject: [PATCH 100/147] make it possible to edit/delete apps via /apps/personal/edit --- include/apps.php | 3 +++ mod/apps.php | 5 ++++- version.inc | 2 +- view/tpl/app.tpl | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/include/apps.php b/include/apps.php index 2b5903329..b5aad2456 100644 --- a/include/apps.php +++ b/include/apps.php @@ -348,6 +348,9 @@ function app_encode($app,$embed = false) { if($app['app_page']) $ret['page'] = $app['app_page']; + if($app['alt_url']) + $ret['alt_url'] = $app['alt_url']; + if(! $embed) return $ret; diff --git a/mod/apps.php b/mod/apps.php index aeedb5cda..34bbc7142 100644 --- a/mod/apps.php +++ b/mod/apps.php @@ -27,8 +27,11 @@ function apps_content(&$a) { $apps = array(); $list = app_list(local_user()); if($list) { - foreach($list as $app) + foreach($list as $app) { + if($mode == 'edit') + $app['alt_url'] = z_root() . '/appman/?f=&appid=' . $app['app_id']; $apps[] = app_render(app_encode($app),$mode); + } } return replace_macros(get_markup_template('myapps.tpl'), array( diff --git a/version.inc b/version.inc index 6b7ff2f87..859a49ba3 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-05-20.681 +2014-05-21.682 diff --git a/view/tpl/app.tpl b/view/tpl/app.tpl index 1d39395d6..e375bd013 100644 --- a/view/tpl/app.tpl +++ b/view/tpl/app.tpl @@ -1,5 +1,5 @@
    - +
    {{$app.name}}
    {{if $install || $update || $delete }} From 6fb8cd4d24902af1c861c1ee242ea2e86b1eee68 Mon Sep 17 00:00:00 2001 From: Alexandre Hannud Abdo Date: Wed, 21 May 2014 17:23:18 -0300 Subject: [PATCH 101/147] Make tag delivery work when channel name differs from profile name --- include/items.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/items.php b/include/items.php index 5aaeb55c0..1c44b7df5 100755 --- a/include/items.php +++ b/include/items.php @@ -2438,7 +2438,7 @@ function tag_deliver($uid,$item_id) { if($terms) { foreach($terms as $term) { - if((strcasecmp($term['term'],$u[0]['channel_name']) == 0) && link_compare($term['url'],$link)) { + if(link_compare($term['url'],$link)) { $mention = true; break; } @@ -2474,11 +2474,11 @@ function tag_deliver($uid,$item_id) { $tagged = false; $plustagged = false; - $pattern = '/@\!?\[zrl\=' . preg_quote($term['url'],'/') . '\]' . preg_quote($u[0]['channel_name'],'/') . '\[\/zrl\]/'; + $pattern = '/@\!?\[zrl\=' . preg_quote($term['url'],'/') . '\]' . preg_quote($term['term'],'/') . '\[\/zrl\]/'; if(preg_match($pattern,$body,$matches)) $tagged = true; - $pattern = '/@\!?\[zrl\=' . preg_quote($term['url'],'/') . '\]' . preg_quote($u[0]['channel_name'] . '+','/') . '\[\/zrl\]/'; + $pattern = '/@\!?\[zrl\=' . preg_quote($term['url'],'/') . '\]' . preg_quote($term['term'] . '+','/') . '\[\/zrl\]/'; if(preg_match($pattern,$body,$matches)) $plustagged = true; @@ -2607,7 +2607,7 @@ function tgroup_check($uid,$item) { if($terms) { foreach($terms as $term) { - if(($term['term'] == $u[0]['channel_name']) && link_compare($term['url'],$link)) { + if(link_compare($term['url'],$link)) { $mention = true; break; } @@ -2625,7 +2625,7 @@ function tgroup_check($uid,$item) { $body = preg_replace('/\[share(.*?)\[\/share\]/','',$item['body']); - $pattern = '/@\!?\[zrl\=' . preg_quote($term['url'],'/') . '\]' . preg_quote($u[0]['channel_name'] . '+','/') . '\[\/zrl\]/'; + $pattern = '/@\!?\[zrl\=' . preg_quote($term['url'],'/') . '\]' . preg_quote($term['term'] . '+','/') . '\[\/zrl\]/'; if(! preg_match($pattern,$body,$matches)) { logger('tgroup_check: mention was in a reshare - ignoring'); From d17768d4e7b7f07dfd2f4326f79fa8b1f9a74582 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 21 May 2014 17:23:34 -0700 Subject: [PATCH 102/147] change app dropdown to point to apps module (changes nav template). Important: Plugins using the app-menu hook will no longer be accessible from there and may require re-writing to plug into the system apps page. Also filter apps in items from the language detector to avoid false triggers from the base64 content. --- include/language.php | 4 +++- include/nav.php | 5 ++--- view/tpl/nav.tpl | 9 ++------- 3 files changed, 7 insertions(+), 11 deletions(-) diff --git a/include/language.php b/include/language.php index 780dfadba..cfaa855dd 100644 --- a/include/language.php +++ b/include/language.php @@ -214,8 +214,10 @@ function detect_language($s) { if($min_confidence === false) $min_confidence = LANGUAGE_DETECT_MIN_CONFIDENCE; + // embedded apps have long base64 strings which will trip up the detector. + $naked_body = preg_replace('/\[app\](.*?)\[\/app\]/','',$s); // strip off bbcode - $naked_body = preg_replace('/\[(.+?)\]/', '', $s); + $naked_body = preg_replace('/\[(.+?)\]/', '', $naked_body); if(mb_strlen($naked_body) < intval($min_length)) { logger('detect language: string length less than ' . intval($min_length), LOGGER_DATA); return ''; diff --git a/include/nav.php b/include/nav.php index a97b434bc..2d0d43d5a 100644 --- a/include/nav.php +++ b/include/nav.php @@ -138,8 +138,8 @@ EOT; if(! get_config('system','hide_help')) $nav['help'] = array($help_url, t('Help'), "", t('Help and documentation')); - if(count($a->get_apps()) > 0) - $nav['apps'] = array('apps', t('Apps'), "", t('Addon applications, utilities, games')); + + $nav['apps'] = array('apps', t('Apps'), "", t('Applications, utilities, links, games')); $nav['search'] = array('search', t('Search'), "", t('Search site content')); @@ -221,7 +221,6 @@ EOT; '$userinfo' => $x['usermenu'], '$localuser' => local_user(), '$sel' => $a->nav_sel, - '$apps' => $a->get_apps(), '$pleasewait' => t('Please wait...') )); diff --git a/view/tpl/nav.tpl b/view/tpl/nav.tpl index 5aa3b0f01..6b76ff5b6 100755 --- a/view/tpl/nav.tpl +++ b/view/tpl/nav.tpl @@ -157,13 +157,8 @@ {{/if}} {{if $nav.apps}} -
  • +
  • {{/if}} From 8fa3cc2f5219cc9519420c002a07ef1b05e916ed Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 21 May 2014 18:13:13 -0700 Subject: [PATCH 103/147] system app updates --- app/storage.apd | 4 ++++ app/storage.png | Bin 0 -> 5191 bytes app/webpages.apd | 4 ++++ app/webpages.png | Bin 0 -> 8678 bytes 4 files changed, 8 insertions(+) create mode 100644 app/storage.apd create mode 100644 app/storage.png create mode 100644 app/webpages.apd create mode 100644 app/webpages.png diff --git a/app/storage.apd b/app/storage.apd new file mode 100644 index 000000000..7d5172af4 --- /dev/null +++ b/app/storage.apd @@ -0,0 +1,4 @@ +url: $baseurl/store/$nick +requires: local_user +name: Files +photo: $baseurl/app/storage.png diff --git a/app/storage.png b/app/storage.png new file mode 100644 index 0000000000000000000000000000000000000000..c1f2df801e6012b1e1e1180e117d1b2cf7521c56 GIT binary patch literal 5191 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 B5@-Mb literal 0 HcmV?d00001 diff --git a/app/webpages.apd b/app/webpages.apd new file mode 100644 index 000000000..4241dbb8e --- /dev/null +++ b/app/webpages.apd @@ -0,0 +1,4 @@ +url: $baseurl/webpages/$nick +requires: local_user +name: Webpages +photo: $baseurl/app/webpages.png diff --git a/app/webpages.png b/app/webpages.png new file mode 100644 index 0000000000000000000000000000000000000000..460117bae57a50313da11b32b019cf2a3dcd42ff GIT binary patch literal 8678 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 IzcmT{4>K_TB>(^b literal 0 HcmV?d00001 From f03e711d669dfcdb6e46d44e71fd56a6e4361eef Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 21 May 2014 18:18:09 -0700 Subject: [PATCH 104/147] bookmarks app --- app/bookmarks.apd | 4 ++++ app/bookmarks.png | Bin 0 -> 5716 bytes 2 files changed, 4 insertions(+) create mode 100644 app/bookmarks.apd create mode 100644 app/bookmarks.png diff --git a/app/bookmarks.apd b/app/bookmarks.apd new file mode 100644 index 000000000..f126a35c5 --- /dev/null +++ b/app/bookmarks.apd @@ -0,0 +1,4 @@ +url: $baseurl/bookmarks +requires: local_user +name: Bookmarks +photo: $baseurl/app/bookmarks.png diff --git a/app/bookmarks.png b/app/bookmarks.png new file mode 100644 index 0000000000000000000000000000000000000000..fffad3329a8aafb8ffd879b0b13b2255bf7cb422 GIT binary patch literal 5716 zcmV-a7OUxrP)Pbvom{{-Syho#%s(?a@RNTLWV+n6{8o5ZlJy_fOM-o|t9neMJS=g-4Ar|MKs&!xxHBO9f)y;D_vtN!Z0 zeE;|Vr-A>!y>V}|AA0;v@t&{eM*RZr@^>E%_hSHRm(QkMwp*9K`)Iq{`~OM-7=F3g z4?X@qW904Hm}vl|;4`V?^Qp^r0YoBNSBjrv!oObn&ZCVt3W(GX@Xr3`<1iYJwUYFa zY9&5(WOxutasFXMJDdO&4%$sYW3!E=l}3|@ejmUSZxjoR`thb(g=e0>Sb2Hw_HUIU^*sQ$e&qnX{M|<}`=Q52wKgA}otdaU z{EpLDxOolD%}t!T<30ca*{7QfRAY<|4??cqItrlvMgfrb`ozb+`1w6Oua)9{ZOrt^ znK9hHy@mi<>NgJD zg&!fJFC95DhFWb90K5s2}{fTdU zYcJsS1mI&|{Cqu4(|1lz9>phq_meU-G^_#WovgaqSi*1o;nzy@ODQ#5DcS@isp&n= z5J54JBpS6^P2P6@88cRo24(E-(Jnoge{FT5D2KR2di;7%|4IEiNvgohIiYvymK`4};0tpASmq0|ej008&cj0m=hF4B}n@v>BL~ zUBKXGTrS_JR!lm5Y-X)mt;+63Bp_m4tJPK^5;+z_E+rB=uoU5bB$0r|xKt}y)^*@f z4jw=*N!kaQ9Ehq{7bdU+&*mlw5vR;($8ot?DwVfQ!BPxChDnK7Zvll*$+DWIXugI& za2FQoI3=&<a{s3m7*S8`1niX zV-q)wG3-hL>d4xCK2z~j#aw*l!n7({Aca;JWDPO@)hd3|gdIOL$7tXGmNF)%WwGJXaZCgP&Fj>Ub>Mr+*QwFz`fLg2m0T_TtzQirW z!t8${0k~j+#I6$Q(E^yEdquu=%ga91L2DT85V<7kW*Rtr+B z>#RU2>IZ;8(Ew4%ydjVwpv){859Ivbn+vlm

    ZRZ!}gX*FgI6)mO&-`|p-Xm5S1d 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 Date: Wed, 21 May 2014 19:30:06 -0700 Subject: [PATCH 105/147] a couple more system apps --- app/manage.apd | 4 ++++ app/manage.png | Bin 0 -> 9585 bytes app/settings.apd | 4 ++++ app/settings.png | Bin 0 -> 7626 bytes 4 files changed, 8 insertions(+) create mode 100644 app/manage.apd create mode 100644 app/manage.png create mode 100644 app/settings.apd create mode 100644 app/settings.png diff --git a/app/manage.apd b/app/manage.apd new file mode 100644 index 000000000..ed6cb9f0a --- /dev/null +++ b/app/manage.apd @@ -0,0 +1,4 @@ +url: $baseurl/manage +requires: local_user +name: Channel Select +photo: $baseurl/app/manage.png diff --git a/app/manage.png b/app/manage.png new file mode 100644 index 0000000000000000000000000000000000000000..4c4d1316235a91dcb213cfe06326b7d7c9825daa GIT binary patch literal 9585 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 bkEr;+!=hMD9Q&Ly00000NkvXXu0mjfu3<~- literal 0 HcmV?d00001 diff --git a/app/settings.apd b/app/settings.apd new file mode 100644 index 000000000..311f793ff --- /dev/null +++ b/app/settings.apd @@ -0,0 +1,4 @@ +url: $baseurl/settings +requires: local_user +name: Settings +photo: $baseurl/app/settings.png diff --git a/app/settings.png b/app/settings.png new file mode 100644 index 0000000000000000000000000000000000000000..ff5d8e5d2aad65dcd725107e4fa2abd6a5ea4995 GIT binary patch literal 7626 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 Date: Wed, 21 May 2014 20:54:09 -0700 Subject: [PATCH 106/147] more app work --- include/apps.php | 19 ++++++++++++++++--- include/widgets.php | 8 ++++---- mod/appman.php | 8 ++++++-- mod/apps.php | 2 -- view/tpl/app.tpl | 6 +++++- view/tpl/app_select.tpl | 3 +++ 6 files changed, 34 insertions(+), 12 deletions(-) diff --git a/include/apps.php b/include/apps.php index b5aad2456..e632ae3d6 100644 --- a/include/apps.php +++ b/include/apps.php @@ -104,7 +104,15 @@ function parse_app_description($f) { function translate_system_apps(&$arr) { - $apps = array( 'Matrix' => t('Matrix'), + $apps = array( + 'Bookmarks' => t('Bookmarks'), + 'Address Book' => t('Address Book'), + 'Login' => t('Login'), + 'Channel Select' => t('Channel Select'), + 'Matrix' => t('Matrix'), + 'Settings' => t('Settings'), + 'Files' => t('Files'), + 'Webpages' => t('Webpages'), 'Channel Home' => t('Channel Home'), 'Profile' => t('Profile'), 'Photos' => t('Photos'), @@ -142,6 +150,9 @@ function app_render($papp,$mode = 'view') { foreach($papp as $k => $v) { if(strpos($v,'http') === 0 && $k != 'papp') $papp[$k] = zid($v); + if($k === 'desc') + $papp['desc'] = str_replace(array('\'','"'),array(''','&dquot;'),$papp['desc']); + } if(local_user()) { @@ -152,7 +163,9 @@ function app_render($papp,$mode = 'view') { return replace_macros(get_markup_template('app.tpl'),array( '$app' => $papp, + '$purchase' => (($papp['page'] && (! $installed)) ? t('Purchase') : ''), '$install' => ((local_user() && $mode == 'view') ? $install_action : ''), + '$edit' => ((local_user() && $installed && $mode == 'edit') ? t('Edit') : ''), '$delete' => ((local_user() && $installed && $mode == 'edit') ? t('Delete') : '') )); } @@ -348,8 +361,8 @@ function app_encode($app,$embed = false) { if($app['app_page']) $ret['page'] = $app['app_page']; - if($app['alt_url']) - $ret['alt_url'] = $app['alt_url']; +// if($app['alt_url']) +// $ret['alt_url'] = $app['alt_url']; if(! $embed) return $ret; diff --git a/include/widgets.php b/include/widgets.php index 8cd2287a7..1043acce0 100644 --- a/include/widgets.php +++ b/include/widgets.php @@ -76,11 +76,11 @@ function widget_collections($args) { function widget_appselect($arr) { return replace_macros(get_markup_template('app_select.tpl'),array( - '$title' => t('App Category'), + '$title' => t('Apps'), '$system' => t('System'), - '$personal' => t('Personal') -// '$featured' => t('Featured'), -// '$new' => t('New') + '$personal' => t('Personal'), + '$new' => t('Create Personal App'), + '$edit' => t('Edit Personal App') )); } diff --git a/mod/appman.php b/mod/appman.php index 6d5127b51..15f27676c 100644 --- a/mod/appman.php +++ b/mod/appman.php @@ -44,6 +44,10 @@ function appman_post(&$a) { app_destroy(local_user(),$papp); } + if($_POST['edit']) { + return; + } + if($_SESSION['return_url']) goaway(z_root() . '/' . $_SESSION['return_url']); goaway(z_root() . '/apps/personal'); @@ -58,7 +62,7 @@ function appman_content(&$a) { notice( t('Permission denied.') . EOL); return; } - +logger('content'); $channel = $a->get_channel(); $app = null; $embed = null; @@ -75,7 +79,7 @@ function appman_content(&$a) { return replace_macros(get_markup_template('app_create.tpl'), array( - '$banner' => t('Create App'), + '$banner' => (($app) ? t('Edit App') : t('Create App')), '$app' => $app, '$guid' => (($app) ? $app['app_id'] : ''), '$author' => (($app) ? $app['app_author'] : $channel['channel_hash']), diff --git a/mod/apps.php b/mod/apps.php index 34bbc7142..e88c54c66 100644 --- a/mod/apps.php +++ b/mod/apps.php @@ -28,8 +28,6 @@ function apps_content(&$a) { $list = app_list(local_user()); if($list) { foreach($list as $app) { - if($mode == 'edit') - $app['alt_url'] = z_root() . '/appman/?f=&appid=' . $app['app_id']; $apps[] = app_render(app_encode($app),$mode); } } diff --git a/view/tpl/app.tpl b/view/tpl/app.tpl index e375bd013..967ccc67c 100644 --- a/view/tpl/app.tpl +++ b/view/tpl/app.tpl @@ -1,11 +1,15 @@

    From 71a4abe293c12bed82f18a8118c7d0530009d369 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 21 May 2014 21:33:31 -0700 Subject: [PATCH 107/147] Time to flip the switch. --- mod/home.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/mod/home.php b/mod/home.php index 05626dcb5..862f6303c 100644 --- a/mod/home.php +++ b/mod/home.php @@ -12,9 +12,11 @@ function home_init(&$a) { $channel = $a->get_channel(); if(local_user() && $channel && $channel['xchan_url']) { - $dest = get_pconfig(local_user(),'system','startpage'); + $dest = $channel['channel_startpage']; if(! $dest) - $dest = z_root() . '/network'; + $dest = get_pconfig(local_user(),'system','startpage'); + if(! $dest) + $dest = z_root() . '/apps'; goaway($dest); } From 4d7fc304ea9dd9b756aba406601739652c54f72d Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 21 May 2014 21:47:09 -0700 Subject: [PATCH 108/147] Add the admin app --- app/admin.apd | 4 ++++ app/admin.png | Bin 0 -> 8449 bytes include/apps.php | 5 +++++ 3 files changed, 9 insertions(+) create mode 100644 app/admin.apd create mode 100644 app/admin.png diff --git a/app/admin.apd b/app/admin.apd new file mode 100644 index 000000000..dbd2f6971 --- /dev/null +++ b/app/admin.apd @@ -0,0 +1,4 @@ +url: $baseurl/admin +requires: admin +name: Site Admin +photo: $baseurl/app/admin.png diff --git a/app/admin.png b/app/admin.png new file mode 100644 index 0000000000000000000000000000000000000000..f1954e52a99bc55e6160818d24c24845ef72cc83 GIT binary patch literal 8449 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 literal 0 HcmV?d00001 diff --git a/include/apps.php b/include/apps.php index e632ae3d6..bf5b292d0 100644 --- a/include/apps.php +++ b/include/apps.php @@ -79,6 +79,10 @@ function parse_app_description($f) { if(local_user()) unset($ret); break; + case 'admin': + if(! is_site_admin()) + unset($ret); + break; case 'local_user': if(! local_user()) unset($ret); @@ -105,6 +109,7 @@ function parse_app_description($f) { function translate_system_apps(&$arr) { $apps = array( + 'Site Admin' => t('Site Admin'), 'Bookmarks' => t('Bookmarks'), 'Address Book' => t('Address Book'), 'Login' => t('Login'), From ae1acf17260ee6d93dac5f54176ffa378e32b100 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 21 May 2014 22:04:03 -0700 Subject: [PATCH 109/147] fix cloud path --- app/storage.apd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/storage.apd b/app/storage.apd index 7d5172af4..5900faae8 100644 --- a/app/storage.apd +++ b/app/storage.apd @@ -1,4 +1,4 @@ -url: $baseurl/store/$nick +url: $baseurl/cloud/$nick requires: local_user name: Files photo: $baseurl/app/storage.png From 6f7fb7a2ac3a8462b8f642436d191ccca720cd9e Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 22 May 2014 02:13:33 -0700 Subject: [PATCH 110/147] sort by app name and not by apd filename --- include/apps.php | 5 ++++- version.inc | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/include/apps.php b/include/apps.php index bf5b292d0..9eb54af00 100644 --- a/include/apps.php +++ b/include/apps.php @@ -31,11 +31,14 @@ function get_system_apps() { } } } - + usort($ret,'app_name_compare'); return $ret; } +function app_name_compare($a,$b) { + return strcmp($a['name'],$b['name']); +} function parse_app_description($f) { $ret = array(); diff --git a/version.inc b/version.inc index 859a49ba3..21f2b8fa8 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-05-21.682 +2014-05-22.683 From bc31e89eb03e3bf2c5bce197626dd7b21261ebf7 Mon Sep 17 00:00:00 2001 From: Paolo Tacconi Date: Thu, 22 May 2014 14:00:10 +0200 Subject: [PATCH 111/147] IT: updated strings --- view/it/messages.po | 10192 ++++++++++++++++++++++++------------------ view/it/strings.php | 1627 +++++-- 2 files changed, 7074 insertions(+), 4745 deletions(-) diff --git a/view/it/messages.po b/view/it/messages.po index d1821ee2d..ccc8d7d1e 100644 --- a/view/it/messages.po +++ b/view/it/messages.po @@ -13,8 +13,13 @@ msgid "" msgstr "" "Project-Id-Version: Red Matrix\n" "Report-Msgid-Bugs-To: \n" +<<<<<<< HEAD +"POT-Creation-Date: 2014-05-21 05:30-0300\n" +"PO-Revision-Date: 2014-05-22 10:56+0000\n" +======= "POT-Creation-Date: 2014-05-16 00:02-0700\n" "PO-Revision-Date: 2014-05-17 09:17+0000\n" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb "Last-Translator: tuscanhobbit Pa \n" "Language-Team: Italian (http://www.transifex.com/projects/p/red-matrix/language/it/)\n" "MIME-Version: 1.0\n" @@ -23,18 +28,15 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../include/dba/dba_driver.php:50 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Non trovo le informazioni DNS per il database server '%s'" - -#: ../../include/photo/photo_driver.php:643 ../../include/photos.php:51 -#: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 -#: ../../mod/profile_photo.php:421 ../../mod/photos.php:91 -#: ../../mod/photos.php:655 ../../mod/photos.php:677 -msgid "Profile Photos" -msgstr "Foto del profilo" +#: ../../include/follow.php:23 +msgid "Channel is blocked on this site." +msgstr "Il canale è bloccato per questo sito." +<<<<<<< HEAD +#: ../../include/follow.php:28 +msgid "Channel location missing." +msgstr "Manca l'indirizzo del canale." +======= #: ../../include/apps.php:107 ../../include/nav.php:158 msgid "Matrix" msgstr "La tua rete" @@ -66,39 +68,50 @@ msgstr "Tutti i canali" #: ../../include/oembed.php:171 msgid "Embedded content" msgstr "Contenuti incorporati" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb -#: ../../include/oembed.php:180 -msgid "Embedding disabled" -msgstr "Contenuti incorporati - funzione disabilitata" +#: ../../include/follow.php:54 +msgid "Response from remote channel was incomplete." +msgstr "La risposta dal canale non è completa." -#: ../../include/notify.php:23 -msgid "created a new post" -msgstr "Ha creato un nuovo articolo" +#: ../../include/follow.php:85 +msgid "Channel was deleted and no longer exists." +msgstr "Il canale è stato rimosso e non esiste più." -#: ../../include/notify.php:24 -#, php-format -msgid "commented on %s's post" -msgstr "ha commentato l'articolo di %s" +#: ../../include/follow.php:132 +msgid "Channel discovery failed." +msgstr "La ricerca del canale non ha avuto successo." +<<<<<<< HEAD +#: ../../include/follow.php:149 +msgid "local account not found." +msgstr "l'account locale non è stato trovato." +======= #: ../../include/Contact.php:107 ../../include/identity.php:675 #: ../../include/widgets.php:127 ../../include/widgets.php:167 #: ../../mod/directory.php:183 ../../mod/dirprofile.php:164 #: ../../mod/suggest.php:51 ../../mod/match.php:62 msgid "Connect" msgstr "Entra in contatto" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb -#: ../../include/Contact.php:123 -msgid "New window" -msgstr "Nuova finestra" +#: ../../include/follow.php:158 +msgid "Cannot connect to yourself." +msgstr "Non puoi connetterti a te stesso." -#: ../../include/Contact.php:124 -msgid "Open the selected location in a different window or browser tab" -msgstr "Apri l'indirizzo selezionato in una nuova scheda o finestra" +#: ../../include/reddav.php:1045 +msgid "Edit File properties" +msgstr "Modifica le proprietà dei file" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Nuova pagina web" +#: ../../include/event.php:11 ../../include/bb2diaspora.php:433 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" +<<<<<<< HEAD +#: ../../include/event.php:20 ../../include/bb2diaspora.php:439 +msgid "Starts:" +msgstr "Inizio:" +======= #: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 #: ../../include/ItemObject.php:96 ../../include/menu.php:42 #: ../../mod/blocks.php:94 ../../mod/connections.php:392 @@ -109,12 +122,19 @@ msgstr "Nuova pagina web" #: ../../mod/webpages.php:119 msgid "Edit" msgstr "Modifica" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:97 -#: ../../mod/layouts.php:116 ../../mod/webpages.php:122 -msgid "View" -msgstr "Guarda" +#: ../../include/event.php:30 ../../include/bb2diaspora.php:447 +msgid "Finishes:" +msgstr "Fine:" +<<<<<<< HEAD +#: ../../include/event.php:40 ../../include/bb2diaspora.php:455 +#: ../../include/identity.php:726 ../../mod/dirprofile.php:105 +#: ../../mod/directory.php:156 ../../mod/events.php:474 +msgid "Location:" +msgstr "Luogo:" +======= #: ../../include/page_widgets.php:40 ../../include/ItemObject.php:570 #: ../../include/conversation.php:1088 ../../mod/editblock.php:141 #: ../../mod/editlayout.php:135 ../../mod/editpost.php:140 @@ -122,164 +142,352 @@ msgstr "Guarda" #: ../../mod/photos.php:994 msgid "Preview" msgstr "Anteprima" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:124 -msgid "Actions" -msgstr "Azioni" +#: ../../include/widgets.php:29 ../../include/contact_widgets.php:92 +msgid "Categories" +msgstr "Categorie" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:125 -msgid "Page Link" -msgstr "Link alla pagina" +#: ../../include/widgets.php:79 +msgid "App Category" +msgstr "Categoria app" -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:126 -msgid "Title" -msgstr "Titolo" +#: ../../include/widgets.php:80 +msgid "System" +msgstr "Sistema" -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:127 -msgid "Created" -msgstr "Creato" +#: ../../include/widgets.php:81 ../../include/conversation.php:1415 +msgid "Personal" +msgstr "Personali" -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:128 -msgid "Edited" -msgstr "Modificato" +#: ../../include/widgets.php:127 ../../include/widgets.php:167 +#: ../../include/Contact.php:107 ../../include/identity.php:675 +#: ../../mod/dirprofile.php:164 ../../mod/directory.php:183 +#: ../../mod/suggest.php:51 ../../mod/match.php:62 +msgid "Connect" +msgstr "Entra in contatto" +<<<<<<< HEAD +#: ../../include/widgets.php:129 ../../mod/suggest.php:53 +msgid "Ignore/Hide" +msgstr "Ignora/nascondi" + +#: ../../include/widgets.php:135 ../../mod/connections.php:266 +msgid "Suggestions" +msgstr "Suggerimenti" + +#: ../../include/widgets.php:136 +msgid "See more..." +msgstr "Altro..." + +#: ../../include/widgets.php:158 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Hai attivato %1$.0f delle %2$.0f connessioni permesse." + +#: ../../include/widgets.php:164 +msgid "Add New Connection" +msgstr "Aggiungi un contatto" + +#: ../../include/widgets.php:165 +msgid "Enter the channel address" +msgstr "Scrivi l'indirizzo del canale" + +#: ../../include/widgets.php:166 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Per esempio: mario@pippo.it oppure http://pluto.com/barbara" + +#: ../../include/widgets.php:183 +msgid "Notes" +msgstr "Note" + +#: ../../include/widgets.php:185 ../../include/text.php:815 +#: ../../include/text.php:829 ../../mod/filer.php:50 ../../mod/rbmark.php:28 +#: ../../mod/rbmark.php:98 +msgid "Save" +msgstr "Salva" + +#: ../../include/widgets.php:255 +msgid "Remove term" +msgstr "Rimuovi termine" + +#: ../../include/widgets.php:264 ../../include/features.php:52 +msgid "Saved Searches" +msgstr "Ricerche salvate" + +#: ../../include/widgets.php:265 ../../include/group.php:290 +msgid "add" +msgstr "aggiungi" + +#: ../../include/widgets.php:295 ../../include/features.php:66 +#: ../../include/contact_widgets.php:58 +msgid "Saved Folders" +msgstr "Cartelle salvate" + +#: ../../include/widgets.php:298 ../../include/contact_widgets.php:61 +#: ../../include/contact_widgets.php:95 +msgid "Everything" +msgstr "Tutto" + +#: ../../include/widgets.php:334 +msgid "Archives" +msgstr "Archivi" + +#: ../../include/widgets.php:396 +msgid "Refresh" +msgstr "Aggiorna" + +#: ../../include/widgets.php:397 ../../mod/connedit.php:428 +msgid "Me" +msgstr "Io" + +#: ../../include/widgets.php:398 ../../mod/connedit.php:430 +msgid "Best Friends" +msgstr "Buoni amici" + +#: ../../include/widgets.php:399 ../../include/profile_selectors.php:42 +#: ../../include/identity.php:342 ../../mod/connedit.php:431 +msgid "Friends" +msgstr "Amici" + +#: ../../include/widgets.php:400 +msgid "Co-workers" +msgstr "Colleghi" + +#: ../../include/widgets.php:401 ../../mod/connedit.php:432 +msgid "Former Friends" +msgstr "Ex amici" + +#: ../../include/widgets.php:402 ../../mod/connedit.php:433 +msgid "Acquaintances" +msgstr "Conoscenti" + +#: ../../include/widgets.php:403 +msgid "Everybody" +msgstr "Tutti" + +#: ../../include/widgets.php:435 +msgid "Account settings" +msgstr "Impostazioni dell'account" + +#: ../../include/widgets.php:441 +msgid "Channel settings" +msgstr "Impostazioni del canale" + +#: ../../include/widgets.php:447 +msgid "Additional features" +msgstr "Funzionalità aggiuntive" + +#: ../../include/widgets.php:453 +msgid "Feature settings" +msgstr "Impostazioni aggiuntive" + +#: ../../include/widgets.php:459 +msgid "Display settings" +msgstr "Impostazioni grafiche" + +#: ../../include/widgets.php:465 +msgid "Connected apps" +msgstr "App connesse" + +#: ../../include/widgets.php:471 +msgid "Export channel" +msgstr "Esporta il canale" + +#: ../../include/widgets.php:483 +msgid "Automatic Permissions (Advanced)" +msgstr "Permessi predefiniti (avanzato)" + +#: ../../include/widgets.php:493 +msgid "Premium Channel Settings" +msgstr "Canale premium - impostazioni" + +#: ../../include/widgets.php:502 ../../include/features.php:43 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "Sorgenti del canale" + +#: ../../include/widgets.php:513 ../../include/nav.php:186 +#: ../../mod/admin.php:976 ../../mod/admin.php:1181 +msgid "Settings" +msgstr "Impostazioni" + +#: ../../include/widgets.php:530 +msgid "Check Mail" +msgstr "Controlla i messaggi" + +#: ../../include/widgets.php:535 ../../include/nav.php:177 +msgid "New Message" +msgstr "Nuovo messaggio" + +#: ../../include/widgets.php:611 +msgid "Chat Rooms" +msgstr "Chat attive" + +#: ../../include/widgets.php:629 +msgid "Bookmarked Chatrooms" +msgstr "Chat nei segnalibri" + +#: ../../include/widgets.php:647 +msgid "Suggested Chatrooms" +msgstr "Chat suggerite" + +#: ../../include/api.php:1016 +msgid "Public Timeline" +msgstr "Diario pubblico" + +#: ../../include/nav.php:77 ../../include/nav.php:96 ../../boot.php:1450 +msgid "Logout" +msgstr "Esci" +======= #: ../../include/permissions.php:13 msgid "Can view my \"public\" stream and posts" msgstr "Può vedere i miei contenuti \"pubblici\"" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb -#: ../../include/permissions.php:14 -msgid "Can view my \"public\" channel profile" -msgstr "Può vedere il profilo del mio canale \"pubblico\"" +#: ../../include/nav.php:77 ../../include/nav.php:96 +msgid "End this session" +msgstr "Chiudi questa sessione" -#: ../../include/permissions.php:15 -msgid "Can view my \"public\" photo albums" -msgstr "Può vedere il mio album fotografico \"pubblico\"" +#: ../../include/nav.php:80 ../../include/nav.php:130 +msgid "Home" +msgstr "Bacheca" -#: ../../include/permissions.php:16 -msgid "Can view my \"public\" address book" -msgstr "Può vedere il mio elenco contatti \"pubblico\"" +#: ../../include/nav.php:80 +msgid "Your posts and conversations" +msgstr "I tuoi articoli e conversazioni" -#: ../../include/permissions.php:17 -msgid "Can view my \"public\" file storage" -msgstr "Può vedere il mio archivio file \"pubblico\"" +#: ../../include/nav.php:81 ../../include/conversation.php:937 +#: ../../mod/connedit.php:351 ../../mod/connedit.php:465 +msgid "View Profile" +msgstr "Profilo" -#: ../../include/permissions.php:18 -msgid "Can view my \"public\" pages" -msgstr "Può vedere le mie pagine web \"pubbliche\"" +#: ../../include/nav.php:81 +msgid "Your profile page" +msgstr "Il tuo profilo" -#: ../../include/permissions.php:21 -msgid "Can send me their channel stream and posts" -msgstr "È tra i canali che seguo" +#: ../../include/nav.php:83 +msgid "Edit Profiles" +msgstr "Modifica i profili" -#: ../../include/permissions.php:22 -msgid "Can post on my channel page (\"wall\")" -msgstr "Può scrivere sulla bacheca del mio canale" +#: ../../include/nav.php:83 +msgid "Manage/Edit profiles" +msgstr "Gestisci/modifica i profili" -#: ../../include/permissions.php:23 -msgid "Can comment on my posts" -msgstr "Può commentare i miei articoli" +#: ../../include/nav.php:84 ../../include/conversation.php:1501 +#: ../../include/apps.php:110 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Foto" -#: ../../include/permissions.php:24 -msgid "Can send me private mail messages" -msgstr "Può inviarmi messaggi privati" +#: ../../include/nav.php:84 +msgid "Your photos" +msgstr "Le tue foto" -#: ../../include/permissions.php:25 -msgid "Can post photos to my photo albums" -msgstr "Può aggiungere foto ai miei album" +#: ../../include/nav.php:85 ../../include/conversation.php:1510 +#: ../../mod/fbrowser.php:114 +msgid "Files" +msgstr "Elenco file" -#: ../../include/permissions.php:26 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Può inoltrare articoli a tutti i contatti del canale tramite una @menzione" +#: ../../include/nav.php:85 +msgid "Your files" +msgstr "I tuoi file" -#: ../../include/permissions.php:26 -msgid "Advanced - useful for creating group forum channels" -msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione" +#: ../../include/nav.php:86 +msgid "Chat" +msgstr "Chat" -#: ../../include/permissions.php:27 -msgid "Can chat with me (when available)" -msgstr "Può aprire una chat con me (se disponibile)" +#: ../../include/nav.php:86 +msgid "Your chatrooms" +msgstr "Le tue chat" -#: ../../include/permissions.php:28 -msgid "Can write to my \"public\" file storage" -msgstr "Può scrivere sul mio archivio di file \"pubblico\"" +#: ../../include/nav.php:87 ../../include/nav.php:180 +#: ../../include/conversation.php:1532 ../../include/apps.php:111 +#: ../../mod/events.php:366 +msgid "Events" +msgstr "Eventi" -#: ../../include/permissions.php:29 -msgid "Can edit my \"public\" pages" -msgstr "Può modificare le mie pagine web \"pubbliche\"" +#: ../../include/nav.php:87 +msgid "Your events" +msgstr "I tuoi eventi" -#: ../../include/permissions.php:31 -msgid "Can source my \"public\" posts in derived channels" -msgstr "Può aggiungere i miei post \"pubblici\" a un suo canale derivato" +#: ../../include/nav.php:88 ../../include/conversation.php:1540 +msgid "Bookmarks" +msgstr "Segnalibri" -#: ../../include/permissions.php:31 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Piuttosto avanzato - molto utile nelle comunità aperte" +#: ../../include/nav.php:88 +msgid "Your bookmarks" +msgstr "I tuoi segnalibri" -#: ../../include/permissions.php:33 -msgid "Can administer my channel resources" -msgstr "Può amministrare i contenuti del mio canale" +#: ../../include/nav.php:90 ../../include/conversation.php:1551 +#: ../../mod/webpages.php:79 +msgid "Webpages" +msgstr "Pagine web" -#: ../../include/permissions.php:33 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri" +#: ../../include/nav.php:90 +msgid "Your webpages" +msgstr "Le tue pagine web" -#: ../../include/account.php:23 -msgid "Not a valid email address" -msgstr "Email non valida" +#: ../../include/nav.php:94 ../../boot.php:1451 +msgid "Login" +msgstr "Accedi" -#: ../../include/account.php:25 -msgid "Your email domain is not among those allowed on this site" -msgstr "Il dominio della tua email attualmente non è permesso su questo sito" +#: ../../include/nav.php:94 +msgid "Sign in" +msgstr "Entra" -#: ../../include/account.php:31 -msgid "Your email address is already registered at this site." -msgstr "La tua email è già registrata su questo sito." - -#: ../../include/account.php:64 -msgid "An invitation is required." -msgstr "È necessario un invito." - -#: ../../include/account.php:68 -msgid "Invitation could not be verified." -msgstr "L'invito non può essere verificato." - -#: ../../include/account.php:119 -msgid "Please enter the required information." -msgstr "Inserisci le informazioni richieste." - -#: ../../include/account.php:187 -msgid "Failed to store account information." -msgstr "Non è stato possibile salvare le informazioni del tuo account." - -#: ../../include/account.php:273 +#: ../../include/nav.php:111 #, php-format -msgid "Registration request at %s" -msgstr "Richiesta di registrazione su %s" +msgid "%s - click to logout" +msgstr "%s - clicca per uscire" -#: ../../include/account.php:275 ../../include/account.php:302 -#: ../../include/account.php:359 -msgid "Administrator" -msgstr "Amministratore" +#: ../../include/nav.php:116 +msgid "Click to authenticate to your home hub" +msgstr "Clicca per autenticarti sul tuo server principale" -#: ../../include/account.php:297 -msgid "your registration password" -msgstr "la password di registrazione" +#: ../../include/nav.php:130 +msgid "Home Page" +msgstr "Bacheca" -#: ../../include/account.php:300 ../../include/account.php:357 -#, php-format -msgid "Registration details for %s" -msgstr "Dettagli della registrazione di %s" +#: ../../include/nav.php:134 ../../mod/register.php:206 ../../boot.php:1427 +msgid "Register" +msgstr "Iscriviti" -#: ../../include/account.php:366 -msgid "Account approved." -msgstr "Account approvato." +#: ../../include/nav.php:134 +msgid "Create an account" +msgstr "Crea un account" -#: ../../include/account.php:400 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrazione revocata per %s" +#: ../../include/nav.php:139 ../../include/apps.php:113 ../../mod/help.php:60 +#: ../../mod/help.php:65 +msgid "Help" +msgstr "Guida" +#: ../../include/nav.php:139 +msgid "Help and documentation" +msgstr "Guida e documentazione" + +#: ../../include/nav.php:142 ../../mod/apps.php:17 ../../mod/apps.php:35 +msgid "Apps" +msgstr "Apps" + +#: ../../include/nav.php:142 +msgid "Addon applications, utilities, games" +msgstr "App, strumenti e giochi aggiuntivi" + +#: ../../include/nav.php:144 ../../include/text.php:813 +#: ../../include/text.php:827 ../../mod/search.php:29 +msgid "Search" +msgstr "Cerca" + +#: ../../include/nav.php:144 +msgid "Search site content" +msgstr "Cerca nel sito" + +<<<<<<< HEAD +#: ../../include/nav.php:147 ../../include/apps.php:112 +#: ../../mod/directory.php:210 +msgid "Directory" +msgstr "Tutti i canali" +======= #: ../../include/photos.php:15 ../../include/attach.php:119 #: ../../include/attach.php:166 ../../include/attach.php:229 #: ../../include/attach.php:243 ../../include/attach.php:283 @@ -318,20 +526,25 @@ msgstr "Registrazione revocata per %s" #: ../../mod/notifications.php:66 ../../index.php:187 ../../index.php:362 msgid "Permission denied." msgstr "Permesso negato." +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb -#: ../../include/photos.php:89 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "L'immagine supera il limite massimo di %lu bytes" +#: ../../include/nav.php:147 +msgid "Channel Locator" +msgstr "Ricerca canali" -#: ../../include/photos.php:96 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." +#: ../../include/nav.php:158 ../../include/apps.php:107 +msgid "Matrix" +msgstr "La tua rete" -#: ../../include/photos.php:123 ../../mod/profile_photo.php:216 -msgid "Unable to process image" -msgstr "Impossibile elaborare l'immagine" +#: ../../include/nav.php:158 +msgid "Your matrix" +msgstr "La tua rete" +<<<<<<< HEAD +#: ../../include/nav.php:159 +msgid "Mark all matrix notifications seen" +msgstr "Segna come lette le notifiche della tua rete" +======= #: ../../include/photos.php:186 msgid "Photo storage failed." msgstr "Impossibile caricare la foto." @@ -366,96 +579,102 @@ msgstr "Permessi" #: ../../include/acl_selectors.php:247 msgid "Close" msgstr "Chiudi" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb -#: ../../include/activities.php:39 -msgid " and " -msgstr "e" +#: ../../include/nav.php:161 ../../include/apps.php:108 +msgid "Channel Home" +msgstr "Bacheca del canale" -#: ../../include/activities.php:47 -msgid "public profile" -msgstr "profilo pubblico" +#: ../../include/nav.php:161 +msgid "Channel home" +msgstr "Bacheca del canale" -#: ../../include/activities.php:52 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s ha cambiato %2$s in “%3$s”" +#: ../../include/nav.php:162 +msgid "Mark all channel notifications seen" +msgstr "Segna come lette le notifiche dei canali" -#: ../../include/activities.php:53 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Guarda %2$s di %1$s " +#: ../../include/nav.php:165 ../../include/nav.php:188 +#: ../../mod/connections.php:385 +msgid "Connections" +msgstr "Contatti" -#: ../../include/activities.php:56 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s ha aggiornato %2$s cambiando %3$s." +#: ../../include/nav.php:168 +msgid "Notices" +msgstr "Notifiche" -#: ../../include/api.php:1016 -msgid "Public Timeline" -msgstr "Diario pubblico" +#: ../../include/nav.php:168 +msgid "Notifications" +msgstr "Notifiche" -#: ../../include/attach.php:224 ../../include/attach.php:278 -msgid "Item was not found." -msgstr "Elemento non trovato." +#: ../../include/nav.php:169 +msgid "See all notifications" +msgstr "Vedi tutte le notifiche" -#: ../../include/attach.php:335 -msgid "No source file." -msgstr "Nessun file di origine." +#: ../../include/nav.php:170 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "Segna come lette le notifiche di sistema" -#: ../../include/attach.php:352 -msgid "Cannot locate file to replace" -msgstr "Il file da sostituire non è stato trovato" +#: ../../include/nav.php:172 +msgid "Mail" +msgstr "Messaggi" -#: ../../include/attach.php:370 -msgid "Cannot locate file to revise/update" -msgstr "Il file da aggiornare non è stato trovato" +#: ../../include/nav.php:172 +msgid "Private mail" +msgstr "Messaggi privati" -#: ../../include/attach.php:381 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Il file supera la dimensione massima di %d" +#: ../../include/nav.php:173 +msgid "See all private messages" +msgstr "Guarda tutti i messaggi privati" -#: ../../include/attach.php:393 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati." +#: ../../include/nav.php:174 +msgid "Mark all private messages seen" +msgstr "Segna come letti tutti i messaggi privati" -#: ../../include/attach.php:475 -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." +#: ../../include/nav.php:175 +msgid "Inbox" +msgstr "In arrivo" -#: ../../include/attach.php:487 -msgid "Stored file could not be verified. Upload failed." -msgstr "Il file non può essere verificato. Caricamento fallito." +#: ../../include/nav.php:176 +msgid "Outbox" +msgstr "Inviati" -#: ../../include/attach.php:528 ../../include/attach.php:545 -msgid "Path not available." -msgstr "Percorso non disponibile." +#: ../../include/nav.php:180 +msgid "Event Calendar" +msgstr "Calendario" -#: ../../include/attach.php:590 -msgid "Empty pathname" -msgstr "Il percorso del file è vuoto" +#: ../../include/nav.php:181 +msgid "See all events" +msgstr "Guarda tutti gli eventi" -#: ../../include/attach.php:606 -msgid "duplicate filename or path" -msgstr "il file o percorso del file è duplicato" +#: ../../include/nav.php:182 +msgid "Mark all events seen" +msgstr "Marca come letti tutti gli eventi" -#: ../../include/attach.php:630 -msgid "Path not found." -msgstr "Percorso del file non trovato." +#: ../../include/nav.php:184 +msgid "Channel Select" +msgstr "Gestisci i canali" -#: ../../include/attach.php:674 -msgid "mkdir failed." -msgstr "mkdir fallito." +#: ../../include/nav.php:184 +msgid "Manage Your Channels" +msgstr "Gestisci i contatti dei tuoi canali" -#: ../../include/attach.php:678 -msgid "database storage failed." -msgstr "scrittura su database fallita." +#: ../../include/nav.php:186 +msgid "Account/Channel Settings" +msgstr "Impostazioni account e canali" -#: ../../include/auth.php:79 -msgid "Logged out." -msgstr "Uscita effettuata." +#: ../../include/nav.php:188 +msgid "Manage/Edit Friends and Connections" +msgstr "Modifica amici e contatti" +<<<<<<< HEAD +#: ../../include/nav.php:195 ../../mod/admin.php:117 +msgid "Admin" +msgstr "Amministrazione" + +#: ../../include/nav.php:195 +msgid "Site Setup and Configuration" +msgstr "Configurazione del sito" +======= #: ../../include/auth.php:198 msgid "Failed authentication" msgstr "Autenticazione fallita" @@ -463,19 +682,37 @@ msgstr "Autenticazione fallita" #: ../../include/auth.php:213 ../../mod/openid.php:188 msgid "Login failed." msgstr "Accesso fallito." +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb -#: ../../include/bb2diaspora.php:433 ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" +#: ../../include/nav.php:220 +msgid "Nothing new here" +msgstr "Niente di nuovo qui" -#: ../../include/bb2diaspora.php:439 ../../include/event.php:20 -msgid "Starts:" -msgstr "Inizio:" +#: ../../include/nav.php:225 +msgid "Please wait..." +msgstr "Attendere..." -#: ../../include/bb2diaspora.php:447 ../../include/event.php:30 -msgid "Finishes:" -msgstr "Fine:" +#: ../../include/oembed.php:171 +msgid "Embedded content" +msgstr "Contenuti incorporati" +<<<<<<< HEAD +#: ../../include/oembed.php:180 +msgid "Embedding disabled" +msgstr "Contenuti incorporati - funzione disabilitata" + +#: ../../include/bbcode.php:128 ../../include/bbcode.php:642 +#: ../../include/bbcode.php:645 ../../include/bbcode.php:650 +#: ../../include/bbcode.php:653 ../../include/bbcode.php:656 +#: ../../include/bbcode.php:659 ../../include/bbcode.php:664 +#: ../../include/bbcode.php:667 ../../include/bbcode.php:672 +#: ../../include/bbcode.php:675 ../../include/bbcode.php:678 +#: ../../include/bbcode.php:681 +msgid "Image/photo" +msgstr "Immagine" + +#: ../../include/bbcode.php:163 ../../include/bbcode.php:692 +======= #: ../../include/bb2diaspora.php:455 ../../include/event.php:40 #: ../../include/identity.php:726 ../../mod/directory.php:156 #: ../../mod/dirprofile.php:105 ../../mod/events.php:474 @@ -493,18 +730,39 @@ msgid "Image/photo" msgstr "Immagine" #: ../../include/bbcode.php:163 ../../include/bbcode.php:683 +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb msgid "Encrypted content" msgstr "Contenuto crittografato" -#: ../../include/bbcode.php:170 +#: ../../include/bbcode.php:179 msgid "QR code" msgstr "QR code" +<<<<<<< HEAD +#: ../../include/bbcode.php:228 +======= #: ../../include/bbcode.php:219 +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #, php-format msgid "%1$s wrote the following %2$s %3$s" msgstr "%1$s ha scritto %2$s %3$s" +<<<<<<< HEAD +#: ../../include/bbcode.php:230 +msgid "post" +msgstr "l'articolo" + +#: ../../include/bbcode.php:610 ../../include/bbcode.php:630 +msgid "$1 wrote:" +msgstr "$1 ha scritto:" + +#: ../../include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "È stato ripristinato un insieme con lo stesso nome che era stato eliminato in precedenza. I permessi già presenti potrebbero rimanere validi per i nuovi canali. Se non vuoi che ciò accada, devi creare un altro insieme con un nome diverso." +======= #: ../../include/bbcode.php:221 msgid "post" msgstr "l'articolo" @@ -730,19 +988,29 @@ msgstr "Crittografia del testo" #, php-format msgid "%1$s's bookmarks" msgstr "I segnalibri di %1$s" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb -#: ../../include/chat.php:10 -msgid "Missing room name" -msgstr "Chat senza nome" +#: ../../include/group.php:223 +msgid "Default privacy group for new contacts" +msgstr "Insieme predefinito per i canali che inizi a seguire" -#: ../../include/chat.php:19 -msgid "Duplicate room name" -msgstr "Il nome della chat è duplicato" +#: ../../include/group.php:242 ../../mod/admin.php:762 +msgid "All Channels" +msgstr "Tutti i canali" -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." -msgstr "Il nome della chat non è valido." +#: ../../include/group.php:264 +msgid "edit" +msgstr "modifica" +<<<<<<< HEAD +#: ../../include/group.php:285 +msgid "Collections" +msgstr "Insiemi di canali" + +#: ../../include/group.php:286 +msgid "Edit collection" +msgstr "Modifica l'insieme di canali" +======= #: ../../include/chat.php:105 msgid "Room not found." msgstr "Chat non trovata." @@ -750,168 +1018,547 @@ msgstr "Chat non trovata." #: ../../include/chat.php:126 msgid "Room is full" msgstr "La chat è al completo" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb -#: ../../include/taxonomy.php:210 -msgid "Tags" -msgstr "Tag" +#: ../../include/group.php:287 +msgid "Create a new collection" +msgstr "Crea un nuovo insieme" -#: ../../include/taxonomy.php:227 -msgid "Keywords" -msgstr "Parole chiave" +#: ../../include/group.php:288 +msgid "Channels not in any collection" +msgstr "Canali che non sono in un insieme" -#: ../../include/taxonomy.php:252 -msgid "have" -msgstr "ho" +#: ../../include/conversation.php:117 ../../include/text.php:1705 +#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 +#: ../../mod/tagger.php:45 ../../mod/like.php:111 +msgid "photo" +msgstr "la foto" -#: ../../include/taxonomy.php:252 -msgid "has" -msgstr "ha" +#: ../../include/conversation.php:120 ../../include/text.php:1708 +#: ../../mod/tagger.php:49 +msgid "event" +msgstr "l'evento" -#: ../../include/taxonomy.php:253 -msgid "want" -msgstr "voglio" +#: ../../include/conversation.php:123 +msgid "channel" +msgstr "canale" -#: ../../include/taxonomy.php:253 -msgid "wants" -msgstr "vuole" +#: ../../include/conversation.php:145 ../../include/text.php:1711 +#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 +#: ../../mod/tagger.php:53 ../../mod/like.php:111 +msgid "status" +msgstr "il messaggio di stato" -#: ../../include/taxonomy.php:254 -msgid "likes" -msgstr "mi piace" +#: ../../include/conversation.php:147 ../../include/text.php:1713 +#: ../../mod/tagger.php:55 +msgid "comment" +msgstr "il commento" -#: ../../include/taxonomy.php:255 -msgid "dislikes" -msgstr "non mi piace" +#: ../../include/conversation.php:161 ../../mod/like.php:142 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s piace %3$s di %2$s" -#: ../../include/comanche.php:35 ../../view/theme/apw/php/config.php:185 -#: ../../view/theme/redbasic/php/config.php:84 -msgid "Default" -msgstr "Predefinito" +#: ../../include/conversation.php:164 ../../mod/like.php:144 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "A %1$s non piace %3$s di %2$s" -#: ../../include/contact_selectors.php:30 -msgid "Unknown | Not categorised" -msgstr "Sconosciuto | Senza categoria" +#: ../../include/conversation.php:201 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s adesso è connesso con %2$s" -#: ../../include/contact_selectors.php:31 -msgid "Block immediately" -msgstr "Blocca subito" +#: ../../include/conversation.php:236 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ha mandato un poke a %2$s" -#: ../../include/contact_selectors.php:32 -msgid "Shady, spammer, self-marketer" -msgstr "Spammer o dedito al marketing" +#: ../../include/conversation.php:240 ../../include/text.php:895 +msgid "poked" +msgstr "ha ricevuto un poke" -#: ../../include/contact_selectors.php:33 -msgid "Known to me, but no opinion" -msgstr "Lo conosco, ma non ho un'opinione particolare" +#: ../../include/conversation.php:258 ../../mod/mood.php:63 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s al momento è %2$s" -#: ../../include/contact_selectors.php:34 -msgid "OK, probably harmless" -msgstr "È ok, probabilmente innocuo" +#: ../../include/conversation.php:631 ../../include/ItemObject.php:114 +msgid "Select" +msgstr "Seleziona" -#: ../../include/contact_selectors.php:35 -msgid "Reputable, has my trust" -msgstr "Affidabile, ha la mia fiducia" +#: ../../include/conversation.php:632 ../../include/ItemObject.php:108 +#: ../../include/apps.php:156 ../../mod/group.php:176 ../../mod/thing.php:236 +#: ../../mod/filestorage.php:175 ../../mod/connedit.php:398 +#: ../../mod/settings.php:578 ../../mod/photos.php:1043 +#: ../../mod/admin.php:757 ../../mod/admin.php:886 +msgid "Delete" +msgstr "Elimina" -#: ../../include/contact_selectors.php:54 -msgid "Frequently" -msgstr "Frequentemente" +#: ../../include/conversation.php:639 ../../include/ItemObject.php:89 +#: ../../mod/photos.php:846 +msgid "Private Message" +msgstr "Messaggio privato" -#: ../../include/contact_selectors.php:55 -msgid "Hourly" -msgstr "Ogni ora" +#: ../../include/conversation.php:646 ../../include/ItemObject.php:182 +msgid "Message is verified" +msgstr "Messaggio verificato" -#: ../../include/contact_selectors.php:56 -msgid "Twice daily" -msgstr "Due volte al giorno" +#: ../../include/conversation.php:666 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Vedi il profilo di %s @ %s" -#: ../../include/contact_selectors.php:57 -msgid "Daily" -msgstr "Ogni giorno" +#: ../../include/conversation.php:680 +msgid "Categories:" +msgstr "Categorie:" -#: ../../include/contact_selectors.php:58 -msgid "Weekly" -msgstr "Ogni settimana" +#: ../../include/conversation.php:681 +msgid "Filed under:" +msgstr "Classificato come:" -#: ../../include/contact_selectors.php:59 -msgid "Monthly" -msgstr "Ogni mese" +#: ../../include/conversation.php:690 ../../include/ItemObject.php:247 +#, php-format +msgid " from %s" +msgstr " da %s" -#: ../../include/contact_selectors.php:74 -msgid "Friendica" -msgstr "Friendica" +#: ../../include/conversation.php:693 ../../include/ItemObject.php:250 +#, php-format +msgid "last edited: %s" +msgstr "ultima modifica: %s" -#: ../../include/contact_selectors.php:75 -msgid "OStatus" -msgstr "OStatus" +#: ../../include/conversation.php:694 ../../include/ItemObject.php:251 +#, php-format +msgid "Expires: %s" +msgstr "Scadenza: %s" -#: ../../include/contact_selectors.php:76 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../include/conversation.php:709 +msgid "View in context" +msgstr "Vedi nel contesto" -#: ../../include/contact_selectors.php:77 ../../mod/admin.php:753 -#: ../../mod/admin.php:762 ../../boot.php:1454 -msgid "Email" -msgstr "Email" +#: ../../include/conversation.php:711 ../../include/conversation.php:1127 +#: ../../include/ItemObject.php:290 ../../mod/editlayout.php:115 +#: ../../mod/editpost.php:121 ../../mod/photos.php:974 +#: ../../mod/editblock.php:120 ../../mod/editwebpage.php:152 +#: ../../mod/mail.php:222 ../../mod/mail.php:336 +msgid "Please wait" +msgstr "Attendere" -#: ../../include/contact_selectors.php:78 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../include/conversation.php:838 +msgid "remove" +msgstr "rimuovi" -#: ../../include/contact_selectors.php:79 -msgid "Facebook" -msgstr "Facebook" +#: ../../include/conversation.php:842 +msgid "Loading..." +msgstr "Caricamento in corso..." -#: ../../include/contact_selectors.php:80 -msgid "Zot!" -msgstr "Zot!" +#: ../../include/conversation.php:843 +msgid "Delete Selected Items" +msgstr "Elimina gli oggetti selezionati" -#: ../../include/contact_selectors.php:81 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../include/conversation.php:934 +msgid "View Source" +msgstr "Vedi il sorgente" -#: ../../include/contact_selectors.php:82 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../include/conversation.php:935 +msgid "Follow Thread" +msgstr "Segui la discussione" -#: ../../include/contact_selectors.php:83 -msgid "MySpace" -msgstr "MySpace" +#: ../../include/conversation.php:936 +msgid "View Status" +msgstr "Guarda il messaggio di stato" -#: ../../include/text.php:320 -msgid "prev" -msgstr "prec" +#: ../../include/conversation.php:938 +msgid "View Photos" +msgstr "Guarda le foto" -#: ../../include/text.php:322 -msgid "first" -msgstr "inizio" +#: ../../include/conversation.php:939 +msgid "Matrix Activity" +msgstr "Attività nella tua rete" -#: ../../include/text.php:351 -msgid "last" -msgstr "fine" +#: ../../include/conversation.php:940 +msgid "Edit Contact" +msgstr "Modifica il contatto" -#: ../../include/text.php:354 -msgid "next" -msgstr "succ" +#: ../../include/conversation.php:941 +msgid "Send PM" +msgstr "Invia messaggio privato" -#: ../../include/text.php:366 -msgid "older" -msgstr "più recenti" +#: ../../include/conversation.php:942 +msgid "Poke" +msgstr "Poke" -#: ../../include/text.php:368 -msgid "newer" -msgstr "più nuovi" +#: ../../include/conversation.php:998 +#, php-format +msgid "%s likes this." +msgstr "Piace a %s." +<<<<<<< HEAD +#: ../../include/conversation.php:998 +#, php-format +msgid "%s doesn't like this." +msgstr "Non piace a %s." + +#: ../../include/conversation.php:1002 +======= #: ../../include/text.php:729 msgid "No connections" msgstr "Nessun contatto" #: ../../include/text.php:742 +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d contatto" -msgstr[1] "%d contatti" +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "" +msgstr[1] "Piace a %2$d persone." +<<<<<<< HEAD +#: ../../include/conversation.php:1004 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "" +msgstr[1] "Non piace a %2$d persone." + +#: ../../include/conversation.php:1010 +msgid "and" +msgstr "e" + +#: ../../include/conversation.php:1013 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "e altre %d persone" + +#: ../../include/conversation.php:1014 +#, php-format +msgid "%s like this." +msgstr "Piace a %s." + +#: ../../include/conversation.php:1014 +#, php-format +msgid "%s don't like this." +msgstr "Non piace a %s." + +#: ../../include/conversation.php:1071 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: ../../include/conversation.php:1072 ../../mod/mail.php:171 +#: ../../mod/mail.php:269 +msgid "Please enter a link URL:" +msgstr "Inserisci l'indirizzo del link:" + +#: ../../include/conversation.php:1073 +msgid "Please enter a video link/URL:" +msgstr "Inserisci l'indirizzo del video:" + +#: ../../include/conversation.php:1074 +msgid "Please enter an audio link/URL:" +msgstr "Inserisci l'indirizzo dell'audio:" + +#: ../../include/conversation.php:1075 +msgid "Tag term:" +msgstr "Tag:" + +#: ../../include/conversation.php:1076 ../../mod/filer.php:49 +msgid "Save to Folder:" +msgstr "Salva nella cartella:" + +#: ../../include/conversation.php:1077 +msgid "Where are you right now?" +msgstr "Dove sei ora?" + +#: ../../include/conversation.php:1078 ../../mod/editpost.php:52 +#: ../../mod/mail.php:172 ../../mod/mail.php:270 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Scade il YYYY-MM-DD HH:MM" + +#: ../../include/conversation.php:1088 ../../include/ItemObject.php:588 +#: ../../include/page_widgets.php:40 ../../mod/editlayout.php:135 +#: ../../mod/webpages.php:123 ../../mod/editpost.php:140 +#: ../../mod/photos.php:994 ../../mod/editblock.php:141 +#: ../../mod/editwebpage.php:175 +msgid "Preview" +msgstr "Anteprima" + +#: ../../include/conversation.php:1102 ../../mod/photos.php:973 +#: ../../mod/layouts.php:113 +msgid "Share" +msgstr "Condividi" + +#: ../../include/conversation.php:1104 ../../mod/editwebpage.php:139 +msgid "Page link title" +msgstr "Link del titolo" + +#: ../../include/conversation.php:1107 +msgid "Post as" +msgstr "Pubblica come " + +#: ../../include/conversation.php:1108 ../../mod/editlayout.php:107 +#: ../../mod/editpost.php:113 ../../mod/editblock.php:112 +#: ../../mod/editwebpage.php:144 ../../mod/mail.php:219 ../../mod/mail.php:332 +msgid "Upload photo" +msgstr "Carica foto" + +#: ../../include/conversation.php:1109 +msgid "upload photo" +msgstr "carica foto" + +#: ../../include/conversation.php:1110 ../../mod/editlayout.php:108 +#: ../../mod/editpost.php:114 ../../mod/editblock.php:113 +#: ../../mod/editwebpage.php:145 ../../mod/mail.php:220 ../../mod/mail.php:333 +msgid "Attach file" +msgstr "Allega file" + +#: ../../include/conversation.php:1111 +msgid "attach file" +msgstr "allega file" + +#: ../../include/conversation.php:1112 ../../mod/editlayout.php:109 +#: ../../mod/editpost.php:115 ../../mod/editblock.php:114 +#: ../../mod/editwebpage.php:146 ../../mod/mail.php:221 ../../mod/mail.php:334 +msgid "Insert web link" +msgstr "Inserisci un indirizzo web" + +#: ../../include/conversation.php:1113 +msgid "web link" +msgstr "link web" + +#: ../../include/conversation.php:1114 +msgid "Insert video link" +msgstr "Inserisci l'indirizzo di un video" + +#: ../../include/conversation.php:1115 +msgid "video link" +msgstr "link video" + +#: ../../include/conversation.php:1116 +msgid "Insert audio link" +msgstr "Inserisci l'indirizzo di un audio" + +#: ../../include/conversation.php:1117 +msgid "audio link" +msgstr "link audio" + +#: ../../include/conversation.php:1118 ../../mod/editlayout.php:113 +#: ../../mod/editpost.php:119 ../../mod/editblock.php:118 +#: ../../mod/editwebpage.php:150 +msgid "Set your location" +msgstr "La tua località" + +#: ../../include/conversation.php:1119 +msgid "set location" +msgstr "la tua località" + +#: ../../include/conversation.php:1120 ../../mod/editlayout.php:114 +#: ../../mod/editpost.php:120 ../../mod/editblock.php:119 +#: ../../mod/editwebpage.php:151 +msgid "Clear browser location" +msgstr "Rimuovi la località data dal browser" + +#: ../../include/conversation.php:1121 +msgid "clear location" +msgstr "rimuovi la località" + +#: ../../include/conversation.php:1123 ../../mod/editlayout.php:126 +#: ../../mod/editpost.php:132 ../../mod/editblock.php:132 +#: ../../mod/editwebpage.php:167 +msgid "Set title" +msgstr "Scegli un titolo" + +#: ../../include/conversation.php:1126 ../../mod/editlayout.php:129 +#: ../../mod/editpost.php:134 ../../mod/editblock.php:135 +#: ../../mod/editwebpage.php:169 +msgid "Categories (comma-separated list)" +msgstr "Categorie (separate da virgola)" + +#: ../../include/conversation.php:1128 ../../mod/editlayout.php:116 +#: ../../mod/editpost.php:122 ../../mod/editblock.php:121 +#: ../../mod/editwebpage.php:153 +msgid "Permission settings" +msgstr "Impostazioni permessi" + +#: ../../include/conversation.php:1129 +msgid "permissions" +msgstr "permessi" + +#: ../../include/conversation.php:1136 ../../mod/editlayout.php:123 +#: ../../mod/editpost.php:129 ../../mod/editblock.php:129 +#: ../../mod/editwebpage.php:162 +msgid "Public post" +msgstr "Articolo pubblico" + +#: ../../include/conversation.php:1138 ../../mod/editlayout.php:130 +#: ../../mod/editpost.php:135 ../../mod/editblock.php:136 +#: ../../mod/editwebpage.php:170 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Per esempio: mario@esempio.com, simona@esempio.com" + +#: ../../include/conversation.php:1151 ../../mod/editlayout.php:140 +#: ../../mod/editpost.php:146 ../../mod/editblock.php:146 +#: ../../mod/editwebpage.php:180 ../../mod/mail.php:226 ../../mod/mail.php:339 +msgid "Set expiration date" +msgstr "Data di scadenza" + +#: ../../include/conversation.php:1153 ../../include/ItemObject.php:591 +#: ../../mod/editpost.php:148 ../../mod/mail.php:228 ../../mod/mail.php:341 +msgid "Encrypt text" +msgstr "Crittografia del testo" + +#: ../../include/conversation.php:1155 ../../mod/editpost.php:150 +msgid "OK" +msgstr "OK" + +#: ../../include/conversation.php:1156 ../../mod/tagrm.php:11 +#: ../../mod/tagrm.php:94 ../../mod/editpost.php:151 +#: ../../mod/settings.php:516 ../../mod/settings.php:542 +#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117 +msgid "Cancel" +msgstr "Annulla" + +#: ../../include/conversation.php:1392 +msgid "Discover" +msgstr "Scopri" + +#: ../../include/conversation.php:1395 +msgid "Imported public streams" +msgstr "Contenuti pubblici importati" + +#: ../../include/conversation.php:1400 +msgid "Commented Order" +msgstr "Ultimi commenti" + +#: ../../include/conversation.php:1403 +msgid "Sort by Comment Date" +msgstr "Per data del commento" + +#: ../../include/conversation.php:1407 +msgid "Posted Order" +msgstr "Ultimi articoli" + +#: ../../include/conversation.php:1410 +msgid "Sort by Post Date" +msgstr "Per data di creazione" + +#: ../../include/conversation.php:1418 +msgid "Posts that mention or involve you" +msgstr "Articoli che ti riguardano o ti menzionano" + +#: ../../include/conversation.php:1424 ../../mod/connections.php:211 +#: ../../mod/connections.php:224 ../../mod/menu.php:61 +msgid "New" +msgstr "Novità" + +#: ../../include/conversation.php:1427 +msgid "Activity Stream - by date" +msgstr "Elenco attività - per data" + +#: ../../include/conversation.php:1433 +msgid "Starred" +msgstr "Preferiti" + +#: ../../include/conversation.php:1436 +msgid "Favourite Posts" +msgstr "Articoli preferiti" + +#: ../../include/conversation.php:1443 +msgid "Spam" +msgstr "Spam" + +#: ../../include/conversation.php:1446 +msgid "Posts flagged as SPAM" +msgstr "Articoli marcati come spam" + +#: ../../include/conversation.php:1480 ../../mod/admin.php:890 +msgid "Channel" +msgstr "Canale" + +#: ../../include/conversation.php:1483 +msgid "Status Messages and Posts" +msgstr "Articoli e messaggi di stato" + +#: ../../include/conversation.php:1492 +msgid "About" +msgstr "Informazioni" + +#: ../../include/conversation.php:1495 +msgid "Profile Details" +msgstr "Dettagli del profilo" + +#: ../../include/conversation.php:1504 ../../include/photos.php:311 +msgid "Photo Albums" +msgstr "Album foto" + +#: ../../include/conversation.php:1513 +msgid "Files and Storage" +msgstr "Archivio file" + +#: ../../include/conversation.php:1522 ../../include/conversation.php:1525 +msgid "Chatrooms" +msgstr "Chat" + +#: ../../include/conversation.php:1535 +msgid "Events and Calendar" +msgstr "Calendario eventi" + +#: ../../include/conversation.php:1543 +msgid "Saved Bookmarks" +msgstr "Segnalibri salvati" + +#: ../../include/conversation.php:1554 +msgid "Manage Webpages" +msgstr "Gestisci le pagine web" + +#: ../../include/comanche.php:35 ../../view/theme/redbasic/php/config.php:84 +msgid "Default" +msgstr "Predefinito" + +#: ../../include/message.php:18 +msgid "No recipient provided." +msgstr "Devi scegliere un destinatario." + +#: ../../include/message.php:23 +msgid "[no subject]" +msgstr "[nessun titolo]" + +#: ../../include/message.php:42 +msgid "Unable to determine sender." +msgstr "Impossibile determinare il mittente." + +#: ../../include/message.php:143 +msgid "Stored post could not be verified." +msgstr "Non è stato possibile verificare l'articolo inserito." + +#: ../../include/activities.php:39 +msgid " and " +msgstr "e" + +#: ../../include/activities.php:47 +msgid "public profile" +msgstr "profilo pubblico" + +#: ../../include/activities.php:52 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s ha cambiato %2$s in “%3$s”" + +#: ../../include/activities.php:53 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Guarda %2$s di %1$s " + +#: ../../include/activities.php:56 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s ha aggiornato %2$s cambiando %3$s." + +#: ../../include/network.php:652 +msgid "view full size" +msgstr "guarda nelle dimensioni reali" +======= #: ../../include/text.php:754 msgid "View Connections" msgstr "Elenco contatti" @@ -1220,59 +1867,98 @@ msgstr "Layout" #: ../../include/text.php:1982 msgid "Pages" msgstr "Pagine" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb -#: ../../include/contact_widgets.php:14 +#: ../../include/bookmarks.php:42 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invito disponibile" -msgstr[1] "%d inviti disponibili" +msgid "%1$s's bookmarks" +msgstr "I segnalibri di %1$s" -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:445 -msgid "Advanced" -msgstr "Avanzate" +#: ../../include/taxonomy.php:210 +msgid "Tags" +msgstr "Tag" -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "Ricerca canali" +#: ../../include/taxonomy.php:227 +msgid "Keywords" +msgstr "Parole chiave" -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "Scrivi un nome o un interesse" +#: ../../include/taxonomy.php:252 +msgid "have" +msgstr "ho" -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "Entra in contatto" +#: ../../include/taxonomy.php:252 +msgid "has" +msgstr "ha" -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Per esempio: Mario Rossi, Pesca" +#: ../../include/taxonomy.php:253 +msgid "want" +msgstr "voglio" +<<<<<<< HEAD +#: ../../include/taxonomy.php:253 +msgid "wants" +msgstr "vuole" +======= #: ../../include/contact_widgets.php:26 ../../mod/connections.php:391 #: ../../mod/directory.php:206 ../../mod/directory.php:211 msgid "Find" msgstr "Cerca" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb -#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 -msgid "Channel Suggestions" -msgstr "Canali suggeriti" +#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:205 +msgid "like" +msgstr "mi piace" -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "Profilo casuale" +#: ../../include/taxonomy.php:254 +msgid "likes" +msgstr "mi piace" -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "Invita amici" +#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:206 +msgid "dislike" +msgstr "non mi piace" -#: ../../include/contact_widgets.php:32 -msgid "Exammple: name=fred and country=iceland" -msgstr "Per esempio: name=mario e country=italy" +#: ../../include/taxonomy.php:255 +msgid "dislikes" +msgstr "non mi piace" -#: ../../include/contact_widgets.php:33 -msgid "Advanced Find" -msgstr "Ricerca avanzata" +#: ../../include/ItemObject.php:96 ../../include/page_widgets.php:8 +#: ../../include/page_widgets.php:36 ../../include/menu.php:42 +#: ../../mod/editlayout.php:106 ../../mod/webpages.php:119 +#: ../../mod/thing.php:235 ../../mod/blocks.php:94 +#: ../../mod/filestorage.php:174 ../../mod/editpost.php:112 +#: ../../mod/settings.php:577 ../../mod/layouts.php:112 +#: ../../mod/connections.php:392 ../../mod/editblock.php:111 +#: ../../mod/editwebpage.php:143 ../../mod/menu.php:59 +msgid "Edit" +msgstr "Modifica" +<<<<<<< HEAD +#: ../../include/ItemObject.php:118 +msgid "save to folder" +msgstr "salva in una cartella" + +#: ../../include/ItemObject.php:130 ../../include/ItemObject.php:142 +msgid "View all" +msgstr "Vedi tutto" + +#: ../../include/ItemObject.php:134 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Mi piace" +msgstr[1] "Mi piace" + +#: ../../include/ItemObject.php:139 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Non mi piace" +msgstr[1] "Non mi piace" + +#: ../../include/ItemObject.php:167 +msgid "add star" +msgstr "aggiungi ai preferiti" +======= #: ../../include/contact_widgets.php:58 ../../include/features.php:66 #: ../../include/widgets.php:295 msgid "Saved Folders" @@ -1282,502 +1968,231 @@ msgstr "Cartelle salvate" #: ../../include/widgets.php:298 msgid "Everything" msgstr "Tutto" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb -#: ../../include/contact_widgets.php:92 ../../include/widgets.php:29 -msgid "Categories" -msgstr "Categorie" +#: ../../include/ItemObject.php:168 +msgid "remove star" +msgstr "rimuovi dai preferiti" -#: ../../include/contact_widgets.php:125 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d contatto in comune" -msgstr[1] "%d contatti in comune" +#: ../../include/ItemObject.php:169 +msgid "toggle star status" +msgstr "Attiva/disattiva preferito" -#: ../../include/conversation.php:123 -msgid "channel" -msgstr "canale" +#: ../../include/ItemObject.php:173 +msgid "starred" +msgstr "preferito" -#: ../../include/conversation.php:161 ../../mod/like.php:142 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s piace %3$s di %2$s" +#: ../../include/ItemObject.php:190 +msgid "add tag" +msgstr "Aggiungi tag" -#: ../../include/conversation.php:164 ../../mod/like.php:144 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "A %1$s non piace %3$s di %2$s" +#: ../../include/ItemObject.php:205 ../../mod/photos.php:971 +msgid "I like this (toggle)" +msgstr "Attiva/disattiva Mi piace" -#: ../../include/conversation.php:201 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s adesso è connesso con %2$s" +#: ../../include/ItemObject.php:206 ../../mod/photos.php:972 +msgid "I don't like this (toggle)" +msgstr "Attiva/disattiva Non mi piace" -#: ../../include/conversation.php:236 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha mandato un poke a %2$s" - -#: ../../include/conversation.php:258 ../../mod/mood.php:63 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s al momento è %2$s" - -#: ../../include/conversation.php:666 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Vedi il profilo di %s @ %s" - -#: ../../include/conversation.php:680 -msgid "Categories:" -msgstr "Categorie:" - -#: ../../include/conversation.php:681 -msgid "Filed under:" -msgstr "Classificato come:" - -#: ../../include/conversation.php:709 -msgid "View in context" -msgstr "Vedi nel contesto" - -#: ../../include/conversation.php:838 -msgid "remove" -msgstr "rimuovi" - -#: ../../include/conversation.php:842 -msgid "Loading..." -msgstr "Caricamento in corso..." - -#: ../../include/conversation.php:843 -msgid "Delete Selected Items" -msgstr "Elimina gli oggetti selezionati" - -#: ../../include/conversation.php:934 -msgid "View Source" -msgstr "Vedi il sorgente" - -#: ../../include/conversation.php:935 -msgid "Follow Thread" -msgstr "Segui la discussione" - -#: ../../include/conversation.php:936 -msgid "View Status" -msgstr "Guarda il messaggio di stato" - -#: ../../include/conversation.php:937 ../../include/nav.php:81 -#: ../../mod/connedit.php:351 ../../mod/connedit.php:465 -msgid "View Profile" -msgstr "Profilo" - -#: ../../include/conversation.php:938 -msgid "View Photos" -msgstr "Guarda le foto" - -#: ../../include/conversation.php:939 -msgid "Matrix Activity" -msgstr "Attività nella tua rete" - -#: ../../include/conversation.php:940 -msgid "Edit Contact" -msgstr "Modifica il contatto" - -#: ../../include/conversation.php:941 -msgid "Send PM" -msgstr "Invia messaggio privato" - -#: ../../include/conversation.php:942 -msgid "Poke" -msgstr "Poke" - -#: ../../include/conversation.php:998 -#, php-format -msgid "%s likes this." -msgstr "Piace a %s." - -#: ../../include/conversation.php:998 -#, php-format -msgid "%s doesn't like this." -msgstr "Non piace a %s." - -#: ../../include/conversation.php:1002 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "Piace a %2$d persone." - -#: ../../include/conversation.php:1004 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "" -msgstr[1] "Non piace a %2$d persone." - -#: ../../include/conversation.php:1010 -msgid "and" -msgstr "e" - -#: ../../include/conversation.php:1013 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "e altre %d persone" - -#: ../../include/conversation.php:1014 -#, php-format -msgid "%s like this." -msgstr "Piace a %s." - -#: ../../include/conversation.php:1014 -#, php-format -msgid "%s don't like this." -msgstr "Non piace a %s." - -#: ../../include/conversation.php:1071 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: ../../include/conversation.php:1072 ../../mod/mail.php:171 -#: ../../mod/mail.php:269 -msgid "Please enter a link URL:" -msgstr "Inserisci l'indirizzo del link:" - -#: ../../include/conversation.php:1073 -msgid "Please enter a video link/URL:" -msgstr "Inserisci l'indirizzo del video:" - -#: ../../include/conversation.php:1074 -msgid "Please enter an audio link/URL:" -msgstr "Inserisci l'indirizzo dell'audio:" - -#: ../../include/conversation.php:1075 -msgid "Tag term:" -msgstr "Tag:" - -#: ../../include/conversation.php:1076 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Salva nella cartella:" - -#: ../../include/conversation.php:1077 -msgid "Where are you right now?" -msgstr "Dove sei ora?" - -#: ../../include/conversation.php:1078 ../../mod/editpost.php:52 -#: ../../mod/mail.php:172 ../../mod/mail.php:270 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Scade il YYYY-MM-DD HH:MM" - -#: ../../include/conversation.php:1102 ../../mod/layouts.php:113 -#: ../../mod/photos.php:973 -msgid "Share" +#: ../../include/ItemObject.php:208 +msgid "Share this" msgstr "Condividi" -#: ../../include/conversation.php:1104 ../../mod/editwebpage.php:139 -msgid "Page link title" -msgstr "Link del titolo" +#: ../../include/ItemObject.php:208 +msgid "share" +msgstr "condividi" -#: ../../include/conversation.php:1107 -msgid "Post as" -msgstr "Pubblica come " - -#: ../../include/conversation.php:1108 ../../mod/editblock.php:112 -#: ../../mod/editlayout.php:107 ../../mod/editpost.php:113 -#: ../../mod/editwebpage.php:144 ../../mod/mail.php:219 ../../mod/mail.php:332 -msgid "Upload photo" -msgstr "Carica foto" - -#: ../../include/conversation.php:1109 -msgid "upload photo" -msgstr "carica foto" - -#: ../../include/conversation.php:1110 ../../mod/editblock.php:113 -#: ../../mod/editlayout.php:108 ../../mod/editpost.php:114 -#: ../../mod/editwebpage.php:145 ../../mod/mail.php:220 ../../mod/mail.php:333 -msgid "Attach file" -msgstr "Allega file" - -#: ../../include/conversation.php:1111 -msgid "attach file" -msgstr "allega file" - -#: ../../include/conversation.php:1112 ../../mod/editblock.php:114 -#: ../../mod/editlayout.php:109 ../../mod/editpost.php:115 -#: ../../mod/editwebpage.php:146 ../../mod/mail.php:221 ../../mod/mail.php:334 -msgid "Insert web link" -msgstr "Inserisci un indirizzo web" - -#: ../../include/conversation.php:1113 -msgid "web link" -msgstr "link web" - -#: ../../include/conversation.php:1114 -msgid "Insert video link" -msgstr "Inserisci l'indirizzo di un video" - -#: ../../include/conversation.php:1115 -msgid "video link" -msgstr "link video" - -#: ../../include/conversation.php:1116 -msgid "Insert audio link" -msgstr "Inserisci l'indirizzo di un audio" - -#: ../../include/conversation.php:1117 -msgid "audio link" -msgstr "link audio" - -#: ../../include/conversation.php:1118 ../../mod/editblock.php:118 -#: ../../mod/editlayout.php:113 ../../mod/editpost.php:119 -#: ../../mod/editwebpage.php:150 -msgid "Set your location" -msgstr "La tua località" - -#: ../../include/conversation.php:1119 -msgid "set location" -msgstr "la tua località" - -#: ../../include/conversation.php:1120 ../../mod/editblock.php:119 -#: ../../mod/editlayout.php:114 ../../mod/editpost.php:120 -#: ../../mod/editwebpage.php:151 -msgid "Clear browser location" -msgstr "Rimuovi la località data dal browser" - -#: ../../include/conversation.php:1121 -msgid "clear location" -msgstr "rimuovi la località" - -#: ../../include/conversation.php:1123 ../../mod/editblock.php:132 -#: ../../mod/editlayout.php:126 ../../mod/editpost.php:132 -#: ../../mod/editwebpage.php:167 -msgid "Set title" -msgstr "Scegli un titolo" - -#: ../../include/conversation.php:1126 ../../mod/editblock.php:135 -#: ../../mod/editlayout.php:129 ../../mod/editpost.php:134 -#: ../../mod/editwebpage.php:169 -msgid "Categories (comma-separated list)" -msgstr "Categorie (separate da virgola)" - -#: ../../include/conversation.php:1128 ../../mod/editblock.php:121 -#: ../../mod/editlayout.php:116 ../../mod/editpost.php:122 -#: ../../mod/editwebpage.php:153 -msgid "Permission settings" -msgstr "Impostazioni permessi" - -#: ../../include/conversation.php:1129 -msgid "permissions" -msgstr "permessi" - -#: ../../include/conversation.php:1136 ../../mod/editblock.php:129 -#: ../../mod/editlayout.php:123 ../../mod/editpost.php:129 -#: ../../mod/editwebpage.php:162 -msgid "Public post" -msgstr "Articolo pubblico" - -#: ../../include/conversation.php:1138 ../../mod/editblock.php:136 -#: ../../mod/editlayout.php:130 ../../mod/editpost.php:135 -#: ../../mod/editwebpage.php:170 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Per esempio: mario@esempio.com, simona@esempio.com" - -#: ../../include/conversation.php:1151 ../../mod/editblock.php:146 -#: ../../mod/editlayout.php:140 ../../mod/editpost.php:146 -#: ../../mod/editwebpage.php:180 ../../mod/mail.php:226 ../../mod/mail.php:339 -msgid "Set expiration date" -msgstr "Data di scadenza" - -#: ../../include/conversation.php:1155 ../../mod/editpost.php:150 -msgid "OK" -msgstr "OK" - -#: ../../include/conversation.php:1156 ../../mod/settings.php:516 -#: ../../mod/settings.php:542 ../../mod/editpost.php:151 -#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117 ../../mod/tagrm.php:11 -#: ../../mod/tagrm.php:94 -msgid "Cancel" -msgstr "Annulla" - -#: ../../include/conversation.php:1392 -msgid "Discover" -msgstr "Scopri" - -#: ../../include/conversation.php:1395 -msgid "Imported public streams" -msgstr "Contenuti pubblici importati" - -#: ../../include/conversation.php:1400 -msgid "Commented Order" -msgstr "Ultimi commenti" - -#: ../../include/conversation.php:1403 -msgid "Sort by Comment Date" -msgstr "Per data del commento" - -#: ../../include/conversation.php:1407 -msgid "Posted Order" -msgstr "Ultimi articoli" - -#: ../../include/conversation.php:1410 -msgid "Sort by Post Date" -msgstr "Per data di creazione" - -#: ../../include/conversation.php:1415 ../../include/widgets.php:81 -msgid "Personal" -msgstr "Personali" - -#: ../../include/conversation.php:1418 -msgid "Posts that mention or involve you" -msgstr "Articoli che ti riguardano o ti menzionano" - -#: ../../include/conversation.php:1424 ../../include/widgets.php:83 -#: ../../mod/connections.php:211 ../../mod/connections.php:224 -#: ../../mod/menu.php:61 -msgid "New" -msgstr "Novità" - -#: ../../include/conversation.php:1427 -msgid "Activity Stream - by date" -msgstr "Elenco attività - per data" - -#: ../../include/conversation.php:1433 -msgid "Starred" -msgstr "Preferiti" - -#: ../../include/conversation.php:1436 -msgid "Favourite Posts" -msgstr "Articoli preferiti" - -#: ../../include/conversation.php:1443 -msgid "Spam" -msgstr "Spam" - -#: ../../include/conversation.php:1446 -msgid "Posts flagged as SPAM" -msgstr "Articoli marcati come spam" - -#: ../../include/conversation.php:1480 ../../mod/admin.php:890 -msgid "Channel" -msgstr "Canale" - -#: ../../include/conversation.php:1483 -msgid "Status Messages and Posts" -msgstr "Articoli e messaggi di stato" - -#: ../../include/conversation.php:1492 -msgid "About" -msgstr "Informazioni" - -#: ../../include/conversation.php:1495 -msgid "Profile Details" -msgstr "Dettagli del profilo" - -#: ../../include/conversation.php:1510 ../../include/nav.php:85 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "Elenco file" - -#: ../../include/conversation.php:1513 -msgid "Files and Storage" -msgstr "Archivio file" - -#: ../../include/conversation.php:1522 ../../include/conversation.php:1525 -msgid "Chatrooms" -msgstr "Chat" - -#: ../../include/conversation.php:1535 -msgid "Events and Calendar" -msgstr "Calendario eventi" - -#: ../../include/conversation.php:1540 ../../include/nav.php:88 -msgid "Bookmarks" -msgstr "Segnalibri" - -#: ../../include/conversation.php:1543 -msgid "Saved Bookmarks" -msgstr "Segnalibri salvati" - -#: ../../include/conversation.php:1551 ../../include/nav.php:90 -#: ../../mod/webpages.php:79 -msgid "Webpages" -msgstr "Pagine web" - -#: ../../include/conversation.php:1554 -msgid "Manage Webpages" -msgstr "Gestisci le pagine web" - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Altro" - -#: ../../include/datetime.php:152 ../../include/datetime.php:284 -msgid "year" -msgstr "anno" - -#: ../../include/datetime.php:157 ../../include/datetime.php:285 -msgid "month" -msgstr "mese" - -#: ../../include/datetime.php:162 ../../include/datetime.php:287 -msgid "day" -msgstr "giorno" - -#: ../../include/datetime.php:275 -msgid "never" -msgstr "mai" - -#: ../../include/datetime.php:281 -msgid "less than a second ago" -msgstr "meno di un secondo fa" - -#: ../../include/datetime.php:284 -msgid "years" -msgstr "anni" - -#: ../../include/datetime.php:285 -msgid "months" -msgstr "mesi" - -#: ../../include/datetime.php:286 -msgid "week" -msgstr "settimana" - -#: ../../include/datetime.php:286 -msgid "weeks" -msgstr "settimane" - -#: ../../include/datetime.php:287 -msgid "days" -msgstr "giorni" - -#: ../../include/datetime.php:288 -msgid "hour" -msgstr "ora" - -#: ../../include/datetime.php:288 -msgid "hours" -msgstr "ore" - -#: ../../include/datetime.php:289 -msgid "minute" -msgstr "minuto" - -#: ../../include/datetime.php:289 -msgid "minutes" -msgstr "minuti" - -#: ../../include/datetime.php:290 -msgid "second" -msgstr "secondo" - -#: ../../include/datetime.php:290 -msgid "seconds" -msgstr "secondi" - -#: ../../include/datetime.php:299 +#: ../../include/ItemObject.php:232 ../../include/ItemObject.php:233 #, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s fa" +msgid "View %s's profile - %s" +msgstr "Guarda il profilo di %s - %s" + +#: ../../include/ItemObject.php:234 +msgid "to" +msgstr "a" + +#: ../../include/ItemObject.php:235 +msgid "via" +msgstr "via" + +#: ../../include/ItemObject.php:236 +msgid "Wall-to-Wall" +msgstr "Da bacheca a bacheca" + +#: ../../include/ItemObject.php:237 +msgid "via Wall-To-Wall:" +msgstr "da bacheca a bacheca:" + +#: ../../include/ItemObject.php:271 +msgid "Bookmark Links" +msgstr "I link dei segnalibri" + +#: ../../include/ItemObject.php:279 +msgctxt "noun" +msgid "Likes" +msgstr "Mi piace" + +#: ../../include/ItemObject.php:280 +msgctxt "noun" +msgid "Dislikes" +msgstr "Non mi piace" + +#: ../../include/ItemObject.php:285 ../../include/acl_selectors.php:247 +msgid "Close" +msgstr "Chiudi" + +#: ../../include/ItemObject.php:311 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d commento" +msgstr[1] "%d commenti" + +#: ../../include/ItemObject.php:312 ../../include/contact_widgets.php:130 +#: ../../include/js_strings.php:7 +msgid "show more" +msgstr "mostra tutto" + +#: ../../include/ItemObject.php:576 ../../mod/photos.php:990 +#: ../../mod/photos.php:1077 +msgid "This is you" +msgstr "Questo sei tu" + +#: ../../include/ItemObject.php:578 ../../include/js_strings.php:6 +#: ../../mod/photos.php:992 ../../mod/photos.php:1079 +msgid "Comment" +msgstr "Commento" + +#: ../../include/ItemObject.php:579 ../../mod/group.php:81 +#: ../../mod/thing.php:283 ../../mod/thing.php:326 ../../mod/connect.php:92 +#: ../../mod/pdledit.php:58 ../../mod/sources.php:104 +#: ../../mod/sources.php:138 ../../mod/filestorage.php:135 +#: ../../mod/fsuggest.php:108 ../../mod/connedit.php:476 +#: ../../mod/settings.php:515 ../../mod/settings.php:627 +#: ../../mod/settings.php:655 ../../mod/settings.php:679 +#: ../../mod/settings.php:751 ../../mod/settings.php:929 +#: ../../mod/setup.php:307 ../../mod/setup.php:350 ../../mod/events.php:481 +#: ../../mod/photos.php:565 ../../mod/photos.php:670 ../../mod/photos.php:953 +#: ../../mod/photos.php:993 ../../mod/photos.php:1080 ../../mod/import.php:387 +#: ../../mod/mood.php:142 ../../mod/chat.php:177 ../../mod/chat.php:211 +#: ../../mod/profiles.php:506 ../../mod/mail.php:223 ../../mod/mail.php:335 +#: ../../mod/appman.php:91 ../../mod/poke.php:166 ../../mod/admin.php:441 +#: ../../mod/admin.php:750 ../../mod/admin.php:884 ../../mod/admin.php:1017 +#: ../../mod/admin.php:1216 ../../mod/admin.php:1303 ../../mod/invite.php:156 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Salva" + +#: ../../include/ItemObject.php:580 +msgid "Bold" +msgstr "Grassetto" + +#: ../../include/ItemObject.php:581 +msgid "Italic" +msgstr "Corsivo" + +#: ../../include/ItemObject.php:582 +msgid "Underline" +msgstr "Sottolineato" + +#: ../../include/ItemObject.php:583 +msgid "Quote" +msgstr "Citazione" + +#: ../../include/ItemObject.php:584 +msgid "Code" +msgstr "Codice" + +#: ../../include/ItemObject.php:585 +msgid "Image" +msgstr "Immagine" + +#: ../../include/ItemObject.php:586 +msgid "Link" +msgstr "Link" + +#: ../../include/ItemObject.php:587 +msgid "Video" +msgstr "Video" + +#: ../../include/items.php:306 ../../mod/group.php:68 +#: ../../mod/subthread.php:49 ../../mod/profperm.php:23 ../../mod/like.php:63 +#: ../../index.php:361 +msgid "Permission denied" +msgstr "Permesso negato" + +#: ../../include/items.php:830 +msgid "(Unknown)" +msgstr "(Sconosciuto)" + +#: ../../include/items.php:3583 ../../mod/home.php:63 ../../mod/thing.php:78 +#: ../../mod/filestorage.php:18 ../../mod/viewsrc.php:18 +#: ../../mod/display.php:32 ../../mod/admin.php:159 ../../mod/admin.php:921 +#: ../../mod/admin.php:1124 +msgid "Item not found." +msgstr "Elemento non trovato." + +#: ../../include/items.php:3645 ../../include/attach.php:119 +#: ../../include/attach.php:166 ../../include/attach.php:229 +#: ../../include/attach.php:243 ../../include/attach.php:283 +#: ../../include/attach.php:297 ../../include/attach.php:322 +#: ../../include/attach.php:513 ../../include/attach.php:585 +#: ../../include/photos.php:15 ../../include/chat.php:116 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/editlayout.php:48 ../../mod/webpages.php:40 +#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97 +#: ../../mod/group.php:9 ../../mod/thing.php:247 ../../mod/thing.php:263 +#: ../../mod/thing.php:298 ../../mod/notifications.php:66 +#: ../../mod/block.php:22 ../../mod/block.php:72 ../../mod/message.php:16 +#: ../../mod/mitem.php:73 ../../mod/item.php:179 ../../mod/item.php:187 +#: ../../mod/item.php:872 ../../mod/suggest.php:26 ../../mod/network.php:12 +#: ../../mod/bookmarks.php:46 ../../mod/channel.php:89 +#: ../../mod/channel.php:193 ../../mod/channel.php:236 +#: ../../mod/pdledit.php:21 ../../mod/sources.php:66 +#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 +#: ../../mod/blocks.php:29 ../../mod/blocks.php:44 +#: ../../mod/filestorage.php:10 ../../mod/filestorage.php:59 +#: ../../mod/filestorage.php:75 ../../mod/filestorage.php:98 +#: ../../mod/authtest.php:13 ../../mod/fsuggest.php:78 +#: ../../mod/connedit.php:221 ../../mod/viewsrc.php:12 +#: ../../mod/achievements.php:27 ../../mod/editpost.php:13 +#: ../../mod/settings.php:492 ../../mod/setup.php:203 ../../mod/events.php:140 +#: ../../mod/photos.php:68 ../../mod/photos.php:526 ../../mod/delegate.php:6 +#: ../../mod/layouts.php:27 ../../mod/layouts.php:39 +#: ../../mod/connections.php:169 ../../mod/page.php:30 ../../mod/page.php:80 +#: ../../mod/mood.php:119 ../../mod/chat.php:90 ../../mod/chat.php:95 +#: ../../mod/editblock.php:34 ../../mod/editwebpage.php:44 +#: ../../mod/editwebpage.php:83 ../../mod/profiles.php:152 +#: ../../mod/profiles.php:453 ../../mod/menu.php:44 ../../mod/mail.php:108 +#: ../../mod/appman.php:58 ../../mod/poke.php:128 +#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 +#: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/register.php:68 +#: ../../mod/manage.php:6 ../../mod/invite.php:13 ../../mod/invite.php:104 +#: ../../mod/common.php:35 ../../mod/regmod.php:18 ../../index.php:187 +#: ../../index.php:362 +msgid "Permission denied." +msgstr "Permesso negato." + +#: ../../include/items.php:4007 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." +msgstr "Insieme non trovato." + +#: ../../include/items.php:4022 +msgid "Collection is empty." +msgstr "L'insieme di canali è vuoto." + +#: ../../include/items.php:4029 +#, php-format +msgid "Collection: %s" +msgstr "Insieme: %s" + +#: ../../include/items.php:4040 +#, php-format +msgid "Connection: %s" +msgstr "Contatto: %s" + +#: ../../include/items.php:4043 +msgid "Connection not found." +msgstr "Contatto non trovato." #: ../../include/dir_fns.php:36 msgid "Sort Options" @@ -1807,6 +2222,21 @@ msgstr "Disabilita SafeSearch" msgid "Safe Mode" msgstr "Modalità SafeSearch" +#: ../../include/security.php:301 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "L'identificativo di sicurezza del modulo che hai riempito non è corretto. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto." + +#: ../../include/notify.php:23 +msgid "created a new post" +msgstr "Ha creato un nuovo articolo" + +#: ../../include/notify.php:24 +#, php-format +msgid "commented on %s's post" +msgstr "ha commentato l'articolo di %s" + #: ../../include/enotify.php:41 msgid "Red Matrix Notification" msgstr "Notifica di Red Matrix" @@ -1915,20 +2345,34 @@ msgstr "%1$s, %2$s ti ha taggato su %3$s" msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." msgstr "%1$s, %2$s [zrl=%3$s]ti ha taggato[/zrl]." +<<<<<<< HEAD #: ../../include/enotify.php:225 #, php-format msgid "[Red:Notify] %1$s poked you" msgstr "[Red:Notifica] %1$s ti ha mandato un poke" +======= +#: ../../include/conversation.php:1415 ../../include/widgets.php:81 +msgid "Personal" +msgstr "Personali" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/enotify.php:226 #, php-format msgid "%1$s, %2$s poked you at %3$s" msgstr "%1$s, %2$s ti ha mandato un poke su %3$s" +<<<<<<< HEAD #: ../../include/enotify.php:227 #, php-format msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." msgstr "%1$s, %2$s [zrl=%2$s]ti ha mandato un poke[/zrl]." +======= +#: ../../include/conversation.php:1424 ../../include/widgets.php:83 +#: ../../mod/connections.php:211 ../../mod/connections.php:224 +#: ../../mod/menu.php:61 +msgid "New" +msgstr "Novità" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/enotify.php:243 #, php-format @@ -1974,6 +2418,7 @@ msgstr "Visita %s per approvare o rifiutare la richiesta di entrare in contatto. msgid "[Red:Notify] Friend suggestion received" msgstr "[Red:Notifica] Ti è stato suggerito un amico" +<<<<<<< HEAD #: ../../include/enotify.php:273 #, php-format msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" @@ -1985,6 +2430,12 @@ msgid "" "%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " "%4$s." msgstr "%1$s, %4$s ti [zrl=%2$s]ha suggerito %3$s[/zrl] come amico." +======= +#: ../../include/conversation.php:1510 ../../include/nav.php:85 +#: ../../mod/fbrowser.php:114 +msgid "Files" +msgstr "Elenco file" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/enotify.php:280 msgid "Name:" @@ -1994,941 +2445,137 @@ msgstr "Nome:" msgid "Photo:" msgstr "Foto:" +<<<<<<< HEAD #: ../../include/enotify.php:284 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Visita %s per approvare o rifiutare il suggerimento." -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Funzionalità generali" - -#: ../../include/features.php:25 -msgid "Content Expiration" -msgstr "Scadenza" - -#: ../../include/features.php:25 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Elimina gli articoli, i commenti o i messaggi privati dopo che è trascorso del tempo" - -#: ../../include/features.php:26 -msgid "Multiple Profiles" -msgstr "Profili multipli" - -#: ../../include/features.php:26 -msgid "Ability to create multiple profiles" -msgstr "Abilitazione a creare profili multipli" - -#: ../../include/features.php:27 -msgid "Web Pages" -msgstr "Pagine web" - -#: ../../include/features.php:27 -msgid "Provide managed web pages on your channel" -msgstr "Attiva la creazione di pagine web sul tuo canale" - -#: ../../include/features.php:28 -msgid "Private Notes" -msgstr "Note private" - -#: ../../include/features.php:28 -msgid "Enables a tool to store notes and reminders" -msgstr "Abilita il riquadro per scrivere annotazioni" - -#: ../../include/features.php:33 -msgid "Extended Identity Sharing" -msgstr "Condivisione avanzata dell'identità" - -#: ../../include/features.php:33 -msgid "" -"Share your identity with all websites on the internet. When disabled, " -"identity is only shared with sites in the matrix." -msgstr "Rendi nota la tua identità a tutti i siti internet. Se disabilitato, la tua identità sarà comunicata solo ai siti red matrix." - -#: ../../include/features.php:34 -msgid "Expert Mode" -msgstr "Modalità esperto" - -#: ../../include/features.php:34 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Abilita la modalità esperto per vedere le opzioni di configurazione avanzate" - -#: ../../include/features.php:35 -msgid "Premium Channel" -msgstr "Canale premium" - -#: ../../include/features.php:35 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Ti permette di imporre delle restrizioni e dei termini d'uso a chi segue il canale" - -#: ../../include/features.php:40 -msgid "Post Composition Features" -msgstr "Modalità di scrittura articoli" - -#: ../../include/features.php:41 -msgid "Richtext Editor" -msgstr "Editor grafico" - -#: ../../include/features.php:41 -msgid "Enable richtext editor" -msgstr "Abilita l'editor grafico" - -#: ../../include/features.php:42 -msgid "Post Preview" -msgstr "Anteprima articolo" - -#: ../../include/features.php:42 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Abilita l'anteprima degli articoli e dei commenti prima di pubblicarli" - -#: ../../include/features.php:43 ../../include/widgets.php:502 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Sorgenti del canale" - -#: ../../include/features.php:43 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importa automaticamente il contenuto del canale da altri canali o feed" - -#: ../../include/features.php:44 -msgid "Even More Encryption" -msgstr "Crittografia addizionale" - -#: ../../include/features.php:44 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Rendi possibile la crittografia dei contenuti tra mittente e destinatari con una chiave segreta" - -#: ../../include/features.php:49 -msgid "Network and Stream Filtering" -msgstr "Filtraggio dei contenuti" - -#: ../../include/features.php:50 -msgid "Search by Date" -msgstr "Ricerca per data" - -#: ../../include/features.php:50 -msgid "Ability to select posts by date ranges" -msgstr "Per selezionare gli articoli in un intervallo tra date" - -#: ../../include/features.php:51 -msgid "Collections Filter" -msgstr "Filtra per insiemi di canali" - -#: ../../include/features.php:51 -msgid "Enable widget to display Network posts only from selected collections" -msgstr "Mostra il riquadro per filtrare gli articoli di certi insiemi di canali" - -#: ../../include/features.php:52 ../../include/widgets.php:264 -msgid "Saved Searches" -msgstr "Ricerche salvate" - -#: ../../include/features.php:52 -msgid "Save search terms for re-use" -msgstr "Salva i termini delle ricerche per poterle ripetere" - -#: ../../include/features.php:53 -msgid "Network Personal Tab" -msgstr "Attività personale" - -#: ../../include/features.php:53 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Abilita il link per mostrare solamente i contenuti con cui hai interagito" - -#: ../../include/features.php:54 -msgid "Network New Tab" -msgstr "Contenuti nuovi" - -#: ../../include/features.php:54 -msgid "Enable tab to display all new Network activity" -msgstr "Abilita il link per visualizzare solo i nuovi contenuti" - -#: ../../include/features.php:55 -msgid "Affinity Tool" -msgstr "Filtro per affinità" - -#: ../../include/features.php:55 -msgid "Filter stream activity by depth of relationships" -msgstr "Permette di selezionare i contenuti in base al livello di amicizia" - -#: ../../include/features.php:56 -msgid "Suggest Channels" -msgstr "Suggerisci canali" - -#: ../../include/features.php:56 -msgid "Show channel suggestions" -msgstr "Mostra alcuni canali che potrebbero interessarti" - -#: ../../include/features.php:61 -msgid "Post/Comment Tools" -msgstr "Gestione articoli e commenti" - -#: ../../include/features.php:63 -msgid "Edit Sent Posts" -msgstr "Modifica gli articoli già inviati" - -#: ../../include/features.php:63 -msgid "Edit and correct posts and comments after sending" -msgstr "Modifica e correggi gli articoli o i commenti anche dopo l'invio" - -#: ../../include/features.php:64 -msgid "Tagging" -msgstr "Tag" - -#: ../../include/features.php:64 -msgid "Ability to tag existing posts" -msgstr "Permetti l'aggiunta di tag su articoli già esistenti" - -#: ../../include/features.php:65 -msgid "Post Categories" -msgstr "Categorie degli articoli" - -#: ../../include/features.php:65 -msgid "Add categories to your posts" -msgstr "Abilita le categorie per i tuoi articoli" - -#: ../../include/features.php:66 -msgid "Ability to file posts under folders" -msgstr "Abilita la raccolta dei tuoi articoli in cartelle" - -#: ../../include/features.php:67 -msgid "Dislike Posts" -msgstr "Non mi piace" - -#: ../../include/features.php:67 -msgid "Ability to dislike posts/comments" -msgstr "Abilità la funzionalità \"non mi piace\" per i tuoi articoli" - -#: ../../include/features.php:68 -msgid "Star Posts" -msgstr "Articoli stella (preferiti)" - -#: ../../include/features.php:68 -msgid "Ability to mark special posts with a star indicator" -msgstr "Mostra la stella per scegliere gli articoli preferiti" - -#: ../../include/features.php:69 -msgid "Tag Cloud" -msgstr "Nuvola di tag" - -#: ../../include/features.php:69 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale" - -#: ../../include/follow.php:23 -msgid "Channel is blocked on this site." -msgstr "Il canale è bloccato per questo sito." - -#: ../../include/follow.php:28 -msgid "Channel location missing." -msgstr "Manca l'indirizzo del canale." - -#: ../../include/follow.php:54 -msgid "Response from remote channel was incomplete." -msgstr "La risposta dal canale non è completa." - -#: ../../include/follow.php:85 -msgid "Channel was deleted and no longer exists." -msgstr "Il canale è stato rimosso e non esiste più." - -#: ../../include/follow.php:132 -msgid "Channel discovery failed." -msgstr "La ricerca del canale non ha avuto successo." - -#: ../../include/follow.php:149 -msgid "local account not found." -msgstr "l'account locale non è stato trovato." - -#: ../../include/follow.php:158 -msgid "Cannot connect to yourself." -msgstr "Non puoi connetterti a te stesso." - -#: ../../include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "È stato ripristinato un insieme con lo stesso nome che era stato eliminato in precedenza. I permessi già presenti potrebbero rimanere validi per i nuovi canali. Se non vuoi che ciò accada, devi creare un altro insieme con un nome diverso." - -#: ../../include/group.php:223 -msgid "Default privacy group for new contacts" -msgstr "Insieme predefinito per i canali che inizi a seguire" - -#: ../../include/group.php:242 ../../mod/admin.php:762 -msgid "All Channels" -msgstr "Tutti i canali" - -#: ../../include/group.php:264 -msgid "edit" -msgstr "modifica" - -#: ../../include/group.php:285 -msgid "Collections" -msgstr "Insiemi di canali" - -#: ../../include/group.php:286 -msgid "Edit collection" -msgstr "Modifica l'insieme di canali" - -#: ../../include/group.php:287 -msgid "Create a new collection" -msgstr "Crea un nuovo insieme" - -#: ../../include/group.php:288 -msgid "Channels not in any collection" -msgstr "Canali che non sono in un insieme" - -#: ../../include/group.php:290 ../../include/widgets.php:265 -msgid "add" -msgstr "aggiungi" - -#: ../../include/identity.php:30 ../../mod/item.php:1244 -msgid "Unable to obtain identity information from database" -msgstr "Impossibile ottenere le informazioni di identificazione dal database" - -#: ../../include/identity.php:63 -msgid "Empty name" -msgstr "Nome vuoto" - -#: ../../include/identity.php:65 -msgid "Name too long" -msgstr "Nome troppo lungo" - -#: ../../include/identity.php:166 -msgid "No account identifier" -msgstr "Account senza identificativo" - -#: ../../include/identity.php:176 -msgid "Nickname is required." -msgstr "Il nome dell'account è obbligatorio." - -#: ../../include/identity.php:190 -msgid "Reserved nickname. Please choose another." -msgstr "Nome utente riservato. Per favore scegline un altro." - -#: ../../include/identity.php:195 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Il nome dell'account è già in uso oppure ha dei caratteri non supportati." - -#: ../../include/identity.php:258 -msgid "Unable to retrieve created identity" -msgstr "Impossibile caricare l'identità creata" - -#: ../../include/identity.php:317 -msgid "Default Profile" -msgstr "Profilo predefinito" - -#: ../../include/identity.php:342 ../../include/profile_selectors.php:42 -#: ../../include/widgets.php:399 ../../mod/connedit.php:431 -msgid "Friends" -msgstr "Amici" - -#: ../../include/identity.php:509 -msgid "Requested channel is not available." -msgstr "Il canale che cerchi non è disponibile." - -#: ../../include/identity.php:557 ../../mod/achievements.php:8 -#: ../../mod/profile.php:16 ../../mod/blocks.php:10 ../../mod/connect.php:13 -#: ../../mod/filestorage.php:40 ../../mod/layouts.php:8 -#: ../../mod/webpages.php:8 -msgid "Requested profile is not available." -msgstr "Il profilo richiesto non è disponibile." - -#: ../../include/identity.php:689 ../../mod/profiles.php:603 -msgid "Change profile photo" -msgstr "Cambia la foto del profilo" - -#: ../../include/identity.php:695 -msgid "Profiles" -msgstr "Profili" - -#: ../../include/identity.php:695 -msgid "Manage/edit profiles" -msgstr "Gestisci/modifica i profili" - -#: ../../include/identity.php:696 ../../mod/profiles.php:604 -msgid "Create New Profile" -msgstr "Crea un nuovo profilo" - -#: ../../include/identity.php:699 -msgid "Edit Profile" -msgstr "Modifica il profilo" - -#: ../../include/identity.php:710 ../../mod/profiles.php:615 -msgid "Profile Image" -msgstr "Immagine del profilo" - -#: ../../include/identity.php:713 ../../mod/profiles.php:618 -msgid "visible to everybody" -msgstr "visibile a tutti" - -#: ../../include/identity.php:714 ../../mod/profiles.php:619 -msgid "Edit visibility" -msgstr "Cambia la visibilità" - -#: ../../include/identity.php:728 ../../include/identity.php:952 -#: ../../mod/directory.php:158 -msgid "Gender:" -msgstr "Sesso:" - -#: ../../include/identity.php:729 ../../include/identity.php:977 -#: ../../mod/directory.php:160 -msgid "Status:" -msgstr "Stato:" - -#: ../../include/identity.php:730 ../../include/identity.php:988 -#: ../../mod/directory.php:162 -msgid "Homepage:" -msgstr "Home page:" - -#: ../../include/identity.php:731 ../../mod/dirprofile.php:151 -msgid "Online Now" -msgstr "Online adesso" - -#: ../../include/identity.php:796 ../../include/identity.php:876 -#: ../../mod/ping.php:262 -msgid "g A l F d" -msgstr "g A l d F" - -#: ../../include/identity.php:797 ../../include/identity.php:877 -msgid "F d" -msgstr "d F" - -#: ../../include/identity.php:842 ../../include/identity.php:917 -#: ../../mod/ping.php:284 -msgid "[today]" -msgstr "[oggi]" - -#: ../../include/identity.php:854 -msgid "Birthday Reminders" -msgstr "Promemoria compleanni" - -#: ../../include/identity.php:855 -msgid "Birthdays this week:" -msgstr "Compleanni questa settimana:" - -#: ../../include/identity.php:910 -msgid "[No description]" -msgstr "[Nessuna descrizione]" - -#: ../../include/identity.php:928 -msgid "Event Reminders" -msgstr "Promemoria" - -#: ../../include/identity.php:929 -msgid "Events this week:" -msgstr "Eventi di questa settimana:" - -#: ../../include/identity.php:950 ../../mod/settings.php:937 -msgid "Full Name:" -msgstr "Nome completo:" - -#: ../../include/identity.php:962 -msgid "j F, Y" -msgstr "j F Y" - -#: ../../include/identity.php:963 -msgid "j F" -msgstr "j F" - -#: ../../include/identity.php:970 -msgid "Birthday:" -msgstr "Compleanno:" - -#: ../../include/identity.php:974 -msgid "Age:" -msgstr "Età:" - -#: ../../include/identity.php:983 -#, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" - -#: ../../include/identity.php:986 ../../mod/profiles.php:526 -msgid "Sexual Preference:" -msgstr "Preferenze sessuali:" - -#: ../../include/identity.php:990 ../../mod/profiles.php:528 -msgid "Hometown:" -msgstr "Città dove vivo:" - -#: ../../include/identity.php:992 -msgid "Tags:" -msgstr "Tag:" - -#: ../../include/identity.php:994 ../../mod/profiles.php:529 -msgid "Political Views:" -msgstr "Orientamento politico:" - -#: ../../include/identity.php:996 -msgid "Religion:" -msgstr "Religione:" - -#: ../../include/identity.php:998 ../../mod/directory.php:164 -msgid "About:" -msgstr "Informazioni:" - -#: ../../include/identity.php:1000 -msgid "Hobbies/Interests:" -msgstr "Interessi e hobby:" - -#: ../../include/identity.php:1002 ../../mod/profiles.php:532 -msgid "Likes:" -msgstr "Mi piace:" - -#: ../../include/identity.php:1004 ../../mod/profiles.php:533 -msgid "Dislikes:" -msgstr "Non mi piace:" - -#: ../../include/identity.php:1007 -msgid "Contact information and Social Networks:" -msgstr "Contatti e social network:" - -#: ../../include/identity.php:1009 -msgid "My other channels:" -msgstr "I miei altri canali:" - -#: ../../include/identity.php:1011 -msgid "Musical interests:" -msgstr "Gusti musicali:" - -#: ../../include/identity.php:1013 -msgid "Books, literature:" -msgstr "Libri, letteratura:" - -#: ../../include/identity.php:1015 -msgid "Television:" -msgstr "Televisione:" - -#: ../../include/identity.php:1017 -msgid "Film/dance/culture/entertainment:" -msgstr "Film, danza, cultura, intrattenimento:" - -#: ../../include/identity.php:1019 -msgid "Love/Romance:" -msgstr "Amore:" - -#: ../../include/identity.php:1021 -msgid "Work/employment:" -msgstr "Lavoro:" - -#: ../../include/identity.php:1023 -msgid "School/education:" -msgstr "Scuola:" - -#: ../../include/items.php:306 ../../mod/profperm.php:23 -#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:63 -#: ../../index.php:361 -msgid "Permission denied" -msgstr "Permesso negato" - -#: ../../include/items.php:830 -msgid "(Unknown)" -msgstr "(Sconosciuto)" - -#: ../../include/items.php:3583 ../../mod/admin.php:159 -#: ../../mod/admin.php:921 ../../mod/admin.php:1124 ../../mod/display.php:32 -#: ../../mod/filestorage.php:18 ../../mod/home.php:63 ../../mod/thing.php:78 -#: ../../mod/viewsrc.php:18 -msgid "Item not found." +#: ../../include/attach.php:224 ../../include/attach.php:278 +msgid "Item was not found." msgstr "Elemento non trovato." +======= +#: ../../include/conversation.php:1535 +msgid "Events and Calendar" +msgstr "Calendario eventi" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb -#: ../../include/items.php:4007 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "Insieme non trovato." +#: ../../include/attach.php:335 +msgid "No source file." +msgstr "Nessun file di origine." -#: ../../include/items.php:4022 -msgid "Collection is empty." -msgstr "L'insieme di canali è vuoto." +#: ../../include/attach.php:352 +msgid "Cannot locate file to replace" +msgstr "Il file da sostituire non è stato trovato" -#: ../../include/items.php:4029 +#: ../../include/attach.php:370 +msgid "Cannot locate file to revise/update" +msgstr "Il file da aggiornare non è stato trovato" + +#: ../../include/attach.php:381 #, php-format -msgid "Collection: %s" -msgstr "Insieme: %s" +msgid "File exceeds size limit of %d" +msgstr "Il file supera la dimensione massima di %d" -#: ../../include/items.php:4040 +#: ../../include/attach.php:393 #, php-format -msgid "Connection: %s" -msgstr "Contatto: %s" +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati." -#: ../../include/items.php:4043 -msgid "Connection not found." -msgstr "Contatto non trovato." +#: ../../include/attach.php:475 +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." -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "Eliminare questo elemento?" +#: ../../include/attach.php:487 +msgid "Stored file could not be verified. Upload failed." +msgstr "Il file non può essere verificato. Caricamento fallito." -#: ../../include/js_strings.php:8 -msgid "show fewer" -msgstr "riduci" +#: ../../include/attach.php:528 ../../include/attach.php:545 +msgid "Path not available." +msgstr "Percorso non disponibile." -#: ../../include/js_strings.php:9 -msgid "+ Show More" -msgstr "+ Mostra tutto" +#: ../../include/attach.php:590 +msgid "Empty pathname" +msgstr "Il percorso del file è vuoto" -#: ../../include/js_strings.php:10 -msgid "- Show Less" -msgstr "- Mostra ridotto" +#: ../../include/attach.php:606 +msgid "duplicate filename or path" +msgstr "il file o percorso del file è duplicato" -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Password troppo corta" +#: ../../include/attach.php:630 +msgid "Path not found." +msgstr "Percorso del file non trovato." -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Le password non corrispondono" +#: ../../include/attach.php:674 +msgid "mkdir failed." +msgstr "mkdir fallito." -#: ../../include/js_strings.php:13 ../../mod/photos.php:39 -msgid "everybody" -msgstr "tutti" +#: ../../include/attach.php:678 +msgid "database storage failed." +msgstr "scrittura su database fallita." -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Chiave segreta" +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Nuova pagina web" -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Suggerimento per la chiave segreta" +#: ../../include/page_widgets.php:39 ../../mod/webpages.php:122 +#: ../../mod/blocks.php:97 ../../mod/layouts.php:116 +msgid "View" +msgstr "Guarda" -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Nota: i permessi sono stati modificati ma non ancora salvati." +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:124 +msgid "Actions" +msgstr "Azioni" -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "chiudi tutto" +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:125 +msgid "Page Link" +msgstr "Link alla pagina" -#: ../../include/js_strings.php:19 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" +#: ../../include/page_widgets.php:43 ../../mod/webpages.php:126 +msgid "Title" +msgstr "Titolo" -#: ../../include/js_strings.php:20 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" +#: ../../include/page_widgets.php:44 ../../mod/webpages.php:127 +msgid "Created" +msgstr "Creato" -#: ../../include/js_strings.php:21 -msgid "ago" -msgstr "fa" +#: ../../include/page_widgets.php:45 ../../mod/webpages.php:128 +msgid "Edited" +msgstr "Modificato" -#: ../../include/js_strings.php:22 -msgid "from now" -msgstr "da adesso" +#: ../../include/photos.php:51 ../../include/photo/photo_driver.php:643 +#: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 +#: ../../mod/profile_photo.php:421 ../../mod/photos.php:91 +#: ../../mod/photos.php:655 ../../mod/photos.php:677 +msgid "Profile Photos" +msgstr "Foto del profilo" -#: ../../include/js_strings.php:23 -msgid "less than a minute" -msgstr "meno di un minuto" - -#: ../../include/js_strings.php:24 -msgid "about a minute" -msgstr "circa un minuto" - -#: ../../include/js_strings.php:25 +#: ../../include/photos.php:89 #, php-format -msgid "%d minutes" -msgstr "%d minuti" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "L'immagine supera il limite massimo di %lu bytes" -#: ../../include/js_strings.php:26 -msgid "about an hour" -msgstr "circa un’ora" +#: ../../include/photos.php:96 +msgid "Image file is empty." +msgstr "Il file dell'immagine è vuoto." -#: ../../include/js_strings.php:27 +#: ../../include/photos.php:123 ../../mod/profile_photo.php:216 +msgid "Unable to process image" +msgstr "Impossibile elaborare l'immagine" + +#: ../../include/photos.php:186 +msgid "Photo storage failed." +msgstr "Impossibile caricare la foto." + +#: ../../include/photos.php:315 ../../mod/photos.php:693 +#: ../../mod/photos.php:1190 +msgid "Upload New Photos" +msgstr "Carica nuove foto" + +#: ../../include/dba/dba_driver.php:50 #, php-format -msgid "about %d hours" -msgstr "circa %d ore" - -#: ../../include/js_strings.php:28 -msgid "a day" -msgstr "un giorno" - -#: ../../include/js_strings.php:29 -#, php-format -msgid "%d days" -msgstr "%d giorni" - -#: ../../include/js_strings.php:30 -msgid "about a month" -msgstr "circa un mese" - -#: ../../include/js_strings.php:31 -#, php-format -msgid "%d months" -msgstr "%d mesi" - -#: ../../include/js_strings.php:32 -msgid "about a year" -msgstr "circa un anno" - -#: ../../include/js_strings.php:33 -#, php-format -msgid "%d years" -msgstr "%d anni" - -#: ../../include/js_strings.php:34 -msgid " " -msgstr " " - -#: ../../include/js_strings.php:35 -msgid "timeago.numbers" -msgstr "timeago.numbers" - -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "Devi scegliere un destinatario." - -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "[nessun titolo]" - -#: ../../include/message.php:42 -msgid "Unable to determine sender." -msgstr "Impossibile determinare il mittente." - -#: ../../include/message.php:143 -msgid "Stored post could not be verified." -msgstr "Non è stato possibile verificare l'articolo inserito." - -#: ../../include/nav.php:77 ../../include/nav.php:96 ../../boot.php:1451 -msgid "Logout" -msgstr "Esci" - -#: ../../include/nav.php:77 ../../include/nav.php:96 -msgid "End this session" -msgstr "Chiudi questa sessione" - -#: ../../include/nav.php:80 ../../include/nav.php:130 -msgid "Home" -msgstr "Bacheca" - -#: ../../include/nav.php:80 -msgid "Your posts and conversations" -msgstr "I tuoi articoli e conversazioni" - -#: ../../include/nav.php:81 -msgid "Your profile page" -msgstr "Il tuo profilo" - -#: ../../include/nav.php:83 -msgid "Edit Profiles" -msgstr "Modifica i profili" - -#: ../../include/nav.php:83 -msgid "Manage/Edit profiles" -msgstr "Gestisci/modifica i profili" - -#: ../../include/nav.php:84 -msgid "Your photos" -msgstr "Le tue foto" - -#: ../../include/nav.php:85 -msgid "Your files" -msgstr "I tuoi file" - -#: ../../include/nav.php:86 -msgid "Chat" -msgstr "Chat" - -#: ../../include/nav.php:86 -msgid "Your chatrooms" -msgstr "Le tue chat" - -#: ../../include/nav.php:87 -msgid "Your events" -msgstr "I tuoi eventi" - -#: ../../include/nav.php:88 -msgid "Your bookmarks" -msgstr "I tuoi segnalibri" - -#: ../../include/nav.php:90 -msgid "Your webpages" -msgstr "Le tue pagine web" - -#: ../../include/nav.php:94 ../../boot.php:1452 -msgid "Login" -msgstr "Accedi" - -#: ../../include/nav.php:94 -msgid "Sign in" -msgstr "Entra" - -#: ../../include/nav.php:111 -#, php-format -msgid "%s - click to logout" -msgstr "%s - clicca per uscire" - -#: ../../include/nav.php:116 -msgid "Click to authenticate to your home hub" -msgstr "Clicca per autenticarti sul tuo server principale" - -#: ../../include/nav.php:130 -msgid "Home Page" -msgstr "Bacheca" - -#: ../../include/nav.php:134 ../../mod/register.php:206 ../../boot.php:1428 -msgid "Register" -msgstr "Iscriviti" - -#: ../../include/nav.php:134 -msgid "Create an account" -msgstr "Crea un account" - -#: ../../include/nav.php:139 ../../mod/help.php:60 ../../mod/help.php:65 -msgid "Help" -msgstr "Guida" - -#: ../../include/nav.php:139 -msgid "Help and documentation" -msgstr "Guida e documentazione" - -#: ../../include/nav.php:142 ../../mod/apps.php:17 -msgid "Apps" -msgstr "Apps" - -#: ../../include/nav.php:142 -msgid "Addon applications, utilities, games" -msgstr "App, strumenti e giochi aggiuntivi" - -#: ../../include/nav.php:144 -msgid "Search site content" -msgstr "Cerca nel sito" - -#: ../../include/nav.php:147 -msgid "Channel Locator" -msgstr "Ricerca canali" - -#: ../../include/nav.php:158 -msgid "Your matrix" -msgstr "La tua rete" - -#: ../../include/nav.php:159 -msgid "Mark all matrix notifications seen" -msgstr "Segna come lette le notifiche della tua rete" - -#: ../../include/nav.php:161 -msgid "Channel home" -msgstr "Bacheca del canale" - -#: ../../include/nav.php:162 -msgid "Mark all channel notifications seen" -msgstr "Segna come lette le notifiche dei canali" - -#: ../../include/nav.php:165 ../../include/nav.php:188 -#: ../../mod/connections.php:385 -msgid "Connections" -msgstr "Contatti" - -#: ../../include/nav.php:168 -msgid "Notices" -msgstr "Notifiche" - -#: ../../include/nav.php:168 -msgid "Notifications" -msgstr "Notifiche" - -#: ../../include/nav.php:169 -msgid "See all notifications" -msgstr "Vedi tutte le notifiche" - -#: ../../include/nav.php:170 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Segna come lette le notifiche di sistema" - -#: ../../include/nav.php:172 -msgid "Mail" -msgstr "Messaggi" - -#: ../../include/nav.php:172 -msgid "Private mail" -msgstr "Messaggi privati" - -#: ../../include/nav.php:173 -msgid "See all private messages" -msgstr "Guarda tutti i messaggi privati" - -#: ../../include/nav.php:174 -msgid "Mark all private messages seen" -msgstr "Segna come letti tutti i messaggi privati" - -#: ../../include/nav.php:175 -msgid "Inbox" -msgstr "In arrivo" - -#: ../../include/nav.php:176 -msgid "Outbox" -msgstr "Inviati" - -#: ../../include/nav.php:177 ../../include/widgets.php:535 -msgid "New Message" -msgstr "Nuovo messaggio" - -#: ../../include/nav.php:180 -msgid "Event Calendar" -msgstr "Calendario" - -#: ../../include/nav.php:181 -msgid "See all events" -msgstr "Guarda tutti gli eventi" - -#: ../../include/nav.php:182 -msgid "Mark all events seen" -msgstr "Marca come letti tutti gli eventi" - -#: ../../include/nav.php:184 -msgid "Channel Select" -msgstr "Gestisci i canali" - -#: ../../include/nav.php:184 -msgid "Manage Your Channels" -msgstr "Gestisci i contatti dei tuoi canali" - -#: ../../include/nav.php:186 ../../include/widgets.php:513 -#: ../../mod/admin.php:976 ../../mod/admin.php:1181 -msgid "Settings" -msgstr "Impostazioni" - -#: ../../include/nav.php:186 -msgid "Account/Channel Settings" -msgstr "Impostazioni account e canali" - -#: ../../include/nav.php:188 -msgid "Manage/Edit Friends and Connections" -msgstr "Modifica amici e contatti" - -#: ../../include/nav.php:195 ../../mod/admin.php:117 -msgid "Admin" -msgstr "Amministrazione" - -#: ../../include/nav.php:195 -msgid "Site Setup and Configuration" -msgstr "Configurazione del sito" - -#: ../../include/nav.php:220 -msgid "Nothing new here" -msgstr "Niente di nuovo qui" - -#: ../../include/nav.php:225 -msgid "Please wait..." -msgstr "Attendere..." - -#: ../../include/network.php:652 -msgid "view full size" -msgstr "guarda nelle dimensioni reali" - -#: ../../include/plugin.php:486 ../../include/plugin.php:488 -msgid "Click here to upgrade." -msgstr "Clicca qui per aggiornare." - -#: ../../include/plugin.php:494 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Questa operazione esce dai termini del tuo abbonamento." - -#: ../../include/plugin.php:499 -msgid "This action is not available under your subscription plan." -msgstr "Questa operazione non è prevista dal tuo abbonamento." +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Non trovo le informazioni DNS per il database server '%s'" #: ../../include/profile_selectors.php:6 msgid "Male" @@ -3158,6 +2805,1521 @@ msgstr "Chi se ne frega" msgid "Ask me" msgstr "Chiedimelo" +#: ../../include/plugin.php:486 ../../include/plugin.php:488 +msgid "Click here to upgrade." +msgstr "Clicca qui per aggiornare." + +#: ../../include/plugin.php:494 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Questa operazione esce dai termini del tuo abbonamento." + +#: ../../include/plugin.php:499 +msgid "This action is not available under your subscription plan." +msgstr "Questa operazione non è prevista dal tuo abbonamento." + +#: ../../include/acl_selectors.php:238 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: ../../include/acl_selectors.php:239 +msgid "Show" +msgstr "Mostra" + +#: ../../include/acl_selectors.php:240 +msgid "Don't show" +msgstr "Non mostrare" + +#: ../../include/acl_selectors.php:246 ../../mod/filestorage.php:126 +#: ../../mod/photos.php:606 ../../mod/photos.php:949 ../../mod/chat.php:209 +msgid "Permissions" +msgstr "Permessi" + +#: ../../include/account.php:23 +msgid "Not a valid email address" +msgstr "Email non valida" + +#: ../../include/account.php:25 +msgid "Your email domain is not among those allowed on this site" +msgstr "Il dominio della tua email attualmente non è permesso su questo sito" + +#: ../../include/account.php:31 +msgid "Your email address is already registered at this site." +msgstr "La tua email è già registrata su questo sito." + +#: ../../include/account.php:64 +msgid "An invitation is required." +msgstr "È necessario un invito." + +<<<<<<< HEAD +#: ../../include/account.php:68 +msgid "Invitation could not be verified." +msgstr "L'invito non può essere verificato." +======= +#: ../../include/features.php:43 ../../include/widgets.php:502 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "Sorgenti del canale" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb + +#: ../../include/account.php:119 +msgid "Please enter the required information." +msgstr "Inserisci le informazioni richieste." + +#: ../../include/account.php:187 +msgid "Failed to store account information." +msgstr "Non è stato possibile salvare le informazioni del tuo account." + +#: ../../include/account.php:273 +#, php-format +msgid "Registration request at %s" +msgstr "Richiesta di registrazione su %s" + +#: ../../include/account.php:275 ../../include/account.php:302 +#: ../../include/account.php:359 +msgid "Administrator" +msgstr "Amministratore" + +#: ../../include/account.php:297 +msgid "your registration password" +msgstr "la password di registrazione" + +#: ../../include/account.php:300 ../../include/account.php:357 +#, php-format +msgid "Registration details for %s" +msgstr "Dettagli della registrazione di %s" + +#: ../../include/account.php:366 +msgid "Account approved." +msgstr "Account approvato." + +#: ../../include/account.php:400 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrazione revocata per %s" + +<<<<<<< HEAD +#: ../../include/Contact.php:123 +msgid "New window" +msgstr "Nuova finestra" +======= +#: ../../include/features.php:52 ../../include/widgets.php:264 +msgid "Saved Searches" +msgstr "Ricerche salvate" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb + +#: ../../include/Contact.php:124 +msgid "Open the selected location in a different window or browser tab" +msgstr "Apri l'indirizzo selezionato in una nuova scheda o finestra" + +#: ../../include/contact_selectors.php:30 +msgid "Unknown | Not categorised" +msgstr "Sconosciuto | Senza categoria" + +#: ../../include/contact_selectors.php:31 +msgid "Block immediately" +msgstr "Blocca subito" + +#: ../../include/contact_selectors.php:32 +msgid "Shady, spammer, self-marketer" +msgstr "Spammer o dedito al marketing" + +#: ../../include/contact_selectors.php:33 +msgid "Known to me, but no opinion" +msgstr "Lo conosco, ma non ho un'opinione particolare" + +#: ../../include/contact_selectors.php:34 +msgid "OK, probably harmless" +msgstr "È ok, probabilmente innocuo" + +#: ../../include/contact_selectors.php:35 +msgid "Reputable, has my trust" +msgstr "Affidabile, ha la mia fiducia" + +#: ../../include/contact_selectors.php:54 +msgid "Frequently" +msgstr "Frequentemente" + +#: ../../include/contact_selectors.php:55 +msgid "Hourly" +msgstr "Ogni ora" + +#: ../../include/contact_selectors.php:56 +msgid "Twice daily" +msgstr "Due volte al giorno" + +#: ../../include/contact_selectors.php:57 +msgid "Daily" +msgstr "Ogni giorno" + +#: ../../include/contact_selectors.php:58 +msgid "Weekly" +msgstr "Ogni settimana" + +#: ../../include/contact_selectors.php:59 +msgid "Monthly" +msgstr "Ogni mese" + +#: ../../include/contact_selectors.php:74 +msgid "Friendica" +msgstr "Friendica" + +#: ../../include/contact_selectors.php:75 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/contact_selectors.php:76 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/contact_selectors.php:77 ../../mod/admin.php:753 +#: ../../mod/admin.php:762 ../../boot.php:1453 +msgid "Email" +msgstr "Email" + +#: ../../include/contact_selectors.php:78 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../include/contact_selectors.php:79 +msgid "Facebook" +msgstr "Facebook" + +#: ../../include/contact_selectors.php:80 +msgid "Zot!" +msgstr "Zot!" + +#: ../../include/contact_selectors.php:81 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/contact_selectors.php:82 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/contact_selectors.php:83 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/apps.php:109 ../../include/identity.php:942 +#: ../../include/identity.php:1031 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Profilo" + +#: ../../include/apps.php:151 ../../mod/settings.php:79 +#: ../../mod/settings.php:541 +msgid "Update" +msgstr "Aggiorna" + +#: ../../include/apps.php:151 +msgid "Install" +msgstr "Installa" + +#: ../../include/apps.php:231 ../../include/apps.php:279 +#: ../../mod/connedit.php:434 +msgid "Unknown" +msgstr "Sconosciuto" + +#: ../../include/auth.php:79 +msgid "Logged out." +msgstr "Uscita effettuata." + +#: ../../include/auth.php:198 +msgid "Failed authentication" +msgstr "Autenticazione fallita" + +#: ../../include/auth.php:213 ../../mod/openid.php:188 +msgid "Login failed." +msgstr "Accesso fallito." + +#: ../../include/text.php:320 +msgid "prev" +msgstr "prec" + +<<<<<<< HEAD +#: ../../include/text.php:322 +msgid "first" +msgstr "inizio" + +#: ../../include/text.php:351 +msgid "last" +msgstr "fine" + +#: ../../include/text.php:354 +msgid "next" +msgstr "succ" + +#: ../../include/text.php:366 +msgid "older" +msgstr "più recenti" +======= +#: ../../include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "È stato ripristinato un insieme con lo stesso nome che era stato eliminato in precedenza. I permessi già presenti potrebbero rimanere validi per i nuovi canali. Se non vuoi che ciò accada, devi creare un altro insieme con un nome diverso." +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb + +#: ../../include/text.php:368 +msgid "newer" +msgstr "più nuovi" + +#: ../../include/text.php:729 +msgid "No connections" +msgstr "Nessun contatto" + +#: ../../include/text.php:742 +#, php-format +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "%d contatto" +msgstr[1] "%d contatti" + +#: ../../include/text.php:754 +msgid "View Connections" +msgstr "Elenco contatti" + +#: ../../include/text.php:895 +msgid "poke" +msgstr "poke" + +#: ../../include/text.php:896 +msgid "ping" +msgstr "ping" + +#: ../../include/text.php:896 +msgid "pinged" +msgstr "ha ricevuto un ping" + +<<<<<<< HEAD +#: ../../include/text.php:897 +msgid "prod" +msgstr "prod" + +#: ../../include/text.php:897 +msgid "prodded" +msgstr "ha ricevuto un prod" +======= +#: ../../include/group.php:290 ../../include/widgets.php:265 +msgid "add" +msgstr "aggiungi" + +#: ../../include/identity.php:30 ../../mod/item.php:1244 +msgid "Unable to obtain identity information from database" +msgstr "Impossibile ottenere le informazioni di identificazione dal database" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb + +#: ../../include/text.php:898 +msgid "slap" +msgstr "schiaffo" + +#: ../../include/text.php:898 +msgid "slapped" +msgstr "ha ricevuto uno schiaffo" + +#: ../../include/text.php:899 +msgid "finger" +msgstr "finger" + +#: ../../include/text.php:899 +msgid "fingered" +msgstr "ha ricevuto un finger" + +#: ../../include/text.php:900 +msgid "rebuff" +msgstr "rifiuto" + +#: ../../include/text.php:900 +msgid "rebuffed" +msgstr "ha ricevuto un rifiuto" + +#: ../../include/text.php:909 +msgid "happy" +msgstr "allegro" + +#: ../../include/text.php:910 +msgid "sad" +msgstr "triste" + +<<<<<<< HEAD +#: ../../include/text.php:911 +msgid "mellow" +msgstr "calmo" +======= +#: ../../include/identity.php:342 ../../include/profile_selectors.php:42 +#: ../../include/widgets.php:399 ../../mod/connedit.php:431 +msgid "Friends" +msgstr "Amici" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb + +#: ../../include/text.php:912 +msgid "tired" +msgstr "stanco" + +#: ../../include/text.php:913 +msgid "perky" +msgstr "vivace" + +#: ../../include/text.php:914 +msgid "angry" +msgstr "arrabbiato" + +#: ../../include/text.php:915 +msgid "stupified" +msgstr "stordito" + +#: ../../include/text.php:916 +msgid "puzzled" +msgstr "confuso" + +#: ../../include/text.php:917 +msgid "interested" +msgstr "attento" + +#: ../../include/text.php:918 +msgid "bitter" +msgstr "amaro" + +#: ../../include/text.php:919 +msgid "cheerful" +msgstr "allegro" + +#: ../../include/text.php:920 +msgid "alive" +msgstr "vivace" + +#: ../../include/text.php:921 +msgid "annoyed" +msgstr "seccato" + +#: ../../include/text.php:922 +msgid "anxious" +msgstr "ansioso" + +#: ../../include/text.php:923 +msgid "cranky" +msgstr "irritabile" + +#: ../../include/text.php:924 +msgid "disturbed" +msgstr "turbato" + +#: ../../include/text.php:925 +msgid "frustrated" +msgstr "frustrato" + +#: ../../include/text.php:926 +msgid "depressed" +msgstr "in depressione" + +#: ../../include/text.php:927 +msgid "motivated" +msgstr "motivato" + +#: ../../include/text.php:928 +msgid "relaxed" +msgstr "rilassato" + +#: ../../include/text.php:929 +msgid "surprised" +msgstr "sorpreso" + +#: ../../include/text.php:1090 +msgid "Monday" +msgstr "lunedì" + +#: ../../include/text.php:1090 +msgid "Tuesday" +msgstr "martedì" + +#: ../../include/text.php:1090 +msgid "Wednesday" +msgstr "mercoledì" + +#: ../../include/text.php:1090 +msgid "Thursday" +msgstr "giovedì" + +#: ../../include/text.php:1090 +msgid "Friday" +msgstr "venerdì" + +<<<<<<< HEAD +#: ../../include/text.php:1090 +msgid "Saturday" +msgstr "sabato" + +#: ../../include/text.php:1090 +msgid "Sunday" +msgstr "domenica" +======= +#: ../../include/identity.php:950 ../../mod/settings.php:937 +msgid "Full Name:" +msgstr "Nome completo:" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb + +#: ../../include/text.php:1094 +msgid "January" +msgstr "gennaio" + +#: ../../include/text.php:1094 +msgid "February" +msgstr "febbraio" + +#: ../../include/text.php:1094 +msgid "March" +msgstr "marzo" + +#: ../../include/text.php:1094 +msgid "April" +msgstr "aprile" + +#: ../../include/text.php:1094 +msgid "May" +msgstr "maggio" + +#: ../../include/text.php:1094 +msgid "June" +msgstr "giugno" + +#: ../../include/text.php:1094 +msgid "July" +msgstr "luglio" + +#: ../../include/text.php:1094 +msgid "August" +msgstr "agosto" + +#: ../../include/text.php:1094 +msgid "September" +msgstr "settembre" + +#: ../../include/text.php:1094 +msgid "October" +msgstr "ottobre" + +#: ../../include/text.php:1094 +msgid "November" +msgstr "novembre" + +#: ../../include/text.php:1094 +msgid "December" +msgstr "dicembre" + +#: ../../include/text.php:1172 +msgid "unknown.???" +msgstr "sconosciuto???" + +#: ../../include/text.php:1173 +msgid "bytes" +msgstr "byte" + +#: ../../include/text.php:1208 +msgid "remove category" +msgstr "rimuovi la categoria" + +#: ../../include/text.php:1257 +msgid "remove from file" +msgstr "rimuovi dal file" + +#: ../../include/text.php:1318 ../../include/text.php:1330 +msgid "Click to open/close" +msgstr "Clicca per aprire/chiudere" + +#: ../../include/text.php:1485 ../../mod/events.php:344 +msgid "link to source" +msgstr "Link all'originale" + +#: ../../include/text.php:1504 +msgid "Select a page layout: " +msgstr "Scegli il layout della pagina:" + +#: ../../include/text.php:1507 ../../include/text.php:1572 +msgid "default" +msgstr "predefinito" + +#: ../../include/text.php:1543 +msgid "Page content type: " +msgstr "Contenuto della pagina:" + +#: ../../include/text.php:1584 +msgid "Select an alternate language" +msgstr "Seleziona una lingua diversa" + +#: ../../include/text.php:1718 +msgid "activity" +msgstr "l'attività" + +<<<<<<< HEAD +#: ../../include/text.php:1977 +msgid "Design" +msgstr "Design" + +#: ../../include/text.php:1979 +msgid "Blocks" +msgstr "Riquadri" + +#: ../../include/text.php:1980 +msgid "Menus" +msgstr "Menù" + +#: ../../include/text.php:1981 +msgid "Layouts" +msgstr "Layout" + +#: ../../include/text.php:1982 +msgid "Pages" +msgstr "Pagine" + +#: ../../include/chat.php:10 +msgid "Missing room name" +msgstr "Chat senza nome" + +#: ../../include/chat.php:19 +msgid "Duplicate room name" +msgstr "Il nome della chat è duplicato" + +#: ../../include/chat.php:68 ../../include/chat.php:76 +msgid "Invalid room specifier." +msgstr "Il nome della chat non è valido." +======= +#: ../../include/items.php:306 ../../mod/profperm.php:23 +#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:63 +#: ../../index.php:361 +msgid "Permission denied" +msgstr "Permesso negato" + +#: ../../include/items.php:830 +msgid "(Unknown)" +msgstr "(Sconosciuto)" + +#: ../../include/items.php:3583 ../../mod/admin.php:159 +#: ../../mod/admin.php:921 ../../mod/admin.php:1124 ../../mod/display.php:32 +#: ../../mod/filestorage.php:18 ../../mod/home.php:63 ../../mod/thing.php:78 +#: ../../mod/viewsrc.php:18 +msgid "Item not found." +msgstr "Elemento non trovato." + +#: ../../include/items.php:4007 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." +msgstr "Insieme non trovato." + +#: ../../include/items.php:4022 +msgid "Collection is empty." +msgstr "L'insieme di canali è vuoto." + +#: ../../include/items.php:4029 +#, php-format +msgid "Collection: %s" +msgstr "Insieme: %s" + +#: ../../include/items.php:4040 +#, php-format +msgid "Connection: %s" +msgstr "Contatto: %s" + +#: ../../include/items.php:4043 +msgid "Connection not found." +msgstr "Contatto non trovato." +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb + +#: ../../include/chat.php:105 +msgid "Room not found." +msgstr "Chat non trovata." + +#: ../../include/chat.php:126 +msgid "Room is full" +msgstr "La chat è al completo" + +#: ../../include/features.php:23 +msgid "General Features" +msgstr "Funzionalità generali" + +#: ../../include/features.php:25 +msgid "Content Expiration" +msgstr "Scadenza" + +#: ../../include/features.php:25 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Elimina gli articoli, i commenti o i messaggi privati dopo che è trascorso del tempo" + +#: ../../include/features.php:26 +msgid "Multiple Profiles" +msgstr "Profili multipli" + +#: ../../include/features.php:26 +msgid "Ability to create multiple profiles" +msgstr "Abilitazione a creare profili multipli" + +#: ../../include/features.php:27 +msgid "Web Pages" +msgstr "Pagine web" + +#: ../../include/features.php:27 +msgid "Provide managed web pages on your channel" +msgstr "Attiva la creazione di pagine web sul tuo canale" + +#: ../../include/features.php:28 +msgid "Private Notes" +msgstr "Note private" + +<<<<<<< HEAD +#: ../../include/features.php:28 +msgid "Enables a tool to store notes and reminders" +msgstr "Abilita il riquadro per scrivere annotazioni" + +#: ../../include/features.php:33 +msgid "Extended Identity Sharing" +msgstr "Condivisione avanzata dell'identità" + +#: ../../include/features.php:33 +msgid "" +"Share your identity with all websites on the internet. When disabled, " +"identity is only shared with sites in the matrix." +msgstr "Rendi nota la tua identità a tutti i siti internet. Se disabilitato, la tua identità sarà comunicata solo ai siti red matrix." + +#: ../../include/features.php:34 +msgid "Expert Mode" +msgstr "Modalità esperto" + +#: ../../include/features.php:34 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "Abilita la modalità esperto per vedere le opzioni di configurazione avanzate" + +#: ../../include/features.php:35 +msgid "Premium Channel" +msgstr "Canale premium" + +#: ../../include/features.php:35 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Ti permette di imporre delle restrizioni e dei termini d'uso a chi segue il canale" + +#: ../../include/features.php:40 +msgid "Post Composition Features" +msgstr "Modalità di scrittura articoli" + +#: ../../include/features.php:41 +msgid "Richtext Editor" +msgstr "Editor grafico" + +#: ../../include/features.php:41 +msgid "Enable richtext editor" +msgstr "Abilita l'editor grafico" + +#: ../../include/features.php:42 +msgid "Post Preview" +msgstr "Anteprima articolo" + +#: ../../include/features.php:42 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Abilita l'anteprima degli articoli e dei commenti prima di pubblicarli" + +#: ../../include/features.php:43 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Importa automaticamente il contenuto del canale da altri canali o feed" + +#: ../../include/features.php:44 +msgid "Even More Encryption" +msgstr "Crittografia addizionale" + +#: ../../include/features.php:44 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Rendi possibile la crittografia dei contenuti tra mittente e destinatari con una chiave segreta" + +#: ../../include/features.php:49 +msgid "Network and Stream Filtering" +msgstr "Filtraggio dei contenuti" + +#: ../../include/features.php:50 +msgid "Search by Date" +msgstr "Ricerca per data" +======= +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "chiudi tutto" + +#: ../../include/js_strings.php:19 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" + +#: ../../include/js_strings.php:20 +msgid "timeago.prefixFromNow" +msgstr "timeago.prefixFromNow" + +#: ../../include/js_strings.php:21 +msgid "ago" +msgstr "fa" + +#: ../../include/js_strings.php:22 +msgid "from now" +msgstr "da adesso" + +#: ../../include/js_strings.php:23 +msgid "less than a minute" +msgstr "meno di un minuto" + +#: ../../include/js_strings.php:24 +msgid "about a minute" +msgstr "circa un minuto" + +#: ../../include/js_strings.php:25 +#, php-format +msgid "%d minutes" +msgstr "%d minuti" + +#: ../../include/js_strings.php:26 +msgid "about an hour" +msgstr "circa un’ora" + +#: ../../include/js_strings.php:27 +#, php-format +msgid "about %d hours" +msgstr "circa %d ore" + +#: ../../include/js_strings.php:28 +msgid "a day" +msgstr "un giorno" + +#: ../../include/js_strings.php:29 +#, php-format +msgid "%d days" +msgstr "%d giorni" + +#: ../../include/js_strings.php:30 +msgid "about a month" +msgstr "circa un mese" + +#: ../../include/js_strings.php:31 +#, php-format +msgid "%d months" +msgstr "%d mesi" + +#: ../../include/js_strings.php:32 +msgid "about a year" +msgstr "circa un anno" + +#: ../../include/js_strings.php:33 +#, php-format +msgid "%d years" +msgstr "%d anni" + +#: ../../include/js_strings.php:34 +msgid " " +msgstr " " + +#: ../../include/js_strings.php:35 +msgid "timeago.numbers" +msgstr "timeago.numbers" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb + +#: ../../include/features.php:50 +msgid "Ability to select posts by date ranges" +msgstr "Per selezionare gli articoli in un intervallo tra date" + +#: ../../include/features.php:51 +msgid "Collections Filter" +msgstr "Filtra per insiemi di canali" + +#: ../../include/features.php:51 +msgid "Enable widget to display Network posts only from selected collections" +msgstr "Mostra il riquadro per filtrare gli articoli di certi insiemi di canali" + +#: ../../include/features.php:52 +msgid "Save search terms for re-use" +msgstr "Salva i termini delle ricerche per poterle ripetere" + +#: ../../include/features.php:53 +msgid "Network Personal Tab" +msgstr "Attività personale" + +#: ../../include/features.php:53 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Abilita il link per mostrare solamente i contenuti con cui hai interagito" + +#: ../../include/features.php:54 +msgid "Network New Tab" +msgstr "Contenuti nuovi" + +#: ../../include/features.php:54 +msgid "Enable tab to display all new Network activity" +msgstr "Abilita il link per visualizzare solo i nuovi contenuti" + +#: ../../include/features.php:55 +msgid "Affinity Tool" +msgstr "Filtro per affinità" + +#: ../../include/features.php:55 +msgid "Filter stream activity by depth of relationships" +msgstr "Permette di selezionare i contenuti in base al livello di amicizia" + +#: ../../include/features.php:56 +msgid "Suggest Channels" +msgstr "Suggerisci canali" + +#: ../../include/features.php:56 +msgid "Show channel suggestions" +msgstr "Mostra alcuni canali che potrebbero interessarti" + +#: ../../include/features.php:61 +msgid "Post/Comment Tools" +msgstr "Gestione articoli e commenti" + +#: ../../include/features.php:63 +msgid "Edit Sent Posts" +msgstr "Modifica gli articoli già inviati" + +#: ../../include/features.php:63 +msgid "Edit and correct posts and comments after sending" +msgstr "Modifica e correggi gli articoli o i commenti anche dopo l'invio" + +#: ../../include/features.php:64 +msgid "Tagging" +msgstr "Tag" + +#: ../../include/features.php:64 +msgid "Ability to tag existing posts" +msgstr "Permetti l'aggiunta di tag su articoli già esistenti" + +#: ../../include/features.php:65 +msgid "Post Categories" +msgstr "Categorie degli articoli" + +#: ../../include/features.php:65 +msgid "Add categories to your posts" +msgstr "Abilita le categorie per i tuoi articoli" + +#: ../../include/features.php:66 +msgid "Ability to file posts under folders" +msgstr "Abilita la raccolta dei tuoi articoli in cartelle" + +#: ../../include/features.php:67 +msgid "Dislike Posts" +msgstr "Non mi piace" + +#: ../../include/features.php:67 +msgid "Ability to dislike posts/comments" +msgstr "Abilità la funzionalità \"non mi piace\" per i tuoi articoli" + +#: ../../include/features.php:68 +msgid "Star Posts" +msgstr "Articoli stella (preferiti)" + +#: ../../include/features.php:68 +msgid "Ability to mark special posts with a star indicator" +msgstr "Mostra la stella per scegliere gli articoli preferiti" + +#: ../../include/features.php:69 +msgid "Tag Cloud" +msgstr "Nuvola di tag" + +#: ../../include/features.php:69 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale" + +#: ../../include/permissions.php:13 +msgid "Can view my \"public\" stream and posts" +msgstr "Può vedere i miei contenuti \"pubblici\"" + +<<<<<<< HEAD +#: ../../include/permissions.php:14 +msgid "Can view my \"public\" channel profile" +msgstr "Può vedere il profilo del mio canale \"pubblico\"" +======= +#: ../../include/nav.php:142 ../../mod/apps.php:17 +msgid "Apps" +msgstr "Apps" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb + +#: ../../include/permissions.php:15 +msgid "Can view my \"public\" photo albums" +msgstr "Può vedere il mio album fotografico \"pubblico\"" + +#: ../../include/permissions.php:16 +msgid "Can view my \"public\" address book" +msgstr "Può vedere il mio elenco contatti \"pubblico\"" + +<<<<<<< HEAD +#: ../../include/permissions.php:17 +msgid "Can view my \"public\" file storage" +msgstr "Può vedere il mio archivio file \"pubblico\"" + +#: ../../include/permissions.php:18 +msgid "Can view my \"public\" pages" +msgstr "Può vedere le mie pagine web \"pubbliche\"" + +#: ../../include/permissions.php:21 +msgid "Can send me their channel stream and posts" +msgstr "È tra i canali che seguo" + +#: ../../include/permissions.php:22 +msgid "Can post on my channel page (\"wall\")" +msgstr "Può scrivere sulla bacheca del mio canale" +======= +#: ../../include/nav.php:147 +msgid "Channel Locator" +msgstr "Ricerca canali" + +#: ../../include/nav.php:158 +msgid "Your matrix" +msgstr "La tua rete" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb + +#: ../../include/permissions.php:23 +msgid "Can comment on my posts" +msgstr "Può commentare i miei articoli" + +<<<<<<< HEAD +#: ../../include/permissions.php:24 +msgid "Can send me private mail messages" +msgstr "Può inviarmi messaggi privati" + +#: ../../include/permissions.php:25 +msgid "Can post photos to my photo albums" +msgstr "Può aggiungere foto ai miei album" +======= +#: ../../include/nav.php:161 +msgid "Channel home" +msgstr "Bacheca del canale" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb + +#: ../../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" + +<<<<<<< HEAD +#: ../../include/permissions.php:26 +msgid "Advanced - useful for creating group forum channels" +msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione" +======= +#: ../../include/nav.php:165 ../../include/nav.php:188 +#: ../../mod/connections.php:385 +msgid "Connections" +msgstr "Contatti" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb + +#: ../../include/permissions.php:27 +msgid "Can chat with me (when available)" +msgstr "Può aprire una chat con me (se disponibile)" + +#: ../../include/permissions.php:28 +msgid "Can write to my \"public\" file storage" +msgstr "Può scrivere sul mio archivio di file \"pubblico\"" + +#: ../../include/permissions.php:29 +msgid "Can edit my \"public\" pages" +msgstr "Può modificare le mie pagine web \"pubbliche\"" + +<<<<<<< HEAD +#: ../../include/permissions.php:31 +msgid "Can source my \"public\" posts in derived channels" +msgstr "Può aggiungere i miei post \"pubblici\" a un suo canale derivato" +======= +#: ../../include/nav.php:170 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "Segna come lette le notifiche di sistema" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb + +#: ../../include/permissions.php:31 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Piuttosto avanzato - molto utile nelle comunità aperte" + +#: ../../include/permissions.php:33 +msgid "Can administer my channel resources" +msgstr "Può amministrare i contenuti del mio canale" + +#: ../../include/permissions.php:33 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri" + +#: ../../include/zot.php:587 +msgid "Invalid data packet" +msgstr "Dati non validi" + +#: ../../include/zot.php:597 +msgid "Unable to verify channel signature" +msgstr "Impossibile verificare la firma elettronica del canale" + +#: ../../include/zot.php:794 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Impossibile verificare la firma elettronica del sito %s" + +<<<<<<< HEAD +#: ../../include/contact_widgets.php:14 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invito disponibile" +msgstr[1] "%d inviti disponibili" +======= +#: ../../include/nav.php:177 ../../include/widgets.php:535 +msgid "New Message" +msgstr "Nuovo messaggio" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb + +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:445 +msgid "Advanced" +msgstr "Avanzate" + +#: ../../include/contact_widgets.php:22 +msgid "Find Channels" +msgstr "Ricerca canali" + +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" +msgstr "Scrivi un nome o un interesse" + +#: ../../include/contact_widgets.php:24 +msgid "Connect/Follow" +msgstr "Entra in contatto" + +#: ../../include/contact_widgets.php:25 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Per esempio: Mario Rossi, Pesca" + +<<<<<<< HEAD +#: ../../include/contact_widgets.php:26 ../../mod/directory.php:206 +#: ../../mod/directory.php:211 ../../mod/connections.php:391 +msgid "Find" +msgstr "Cerca" +======= +#: ../../include/nav.php:186 ../../include/widgets.php:513 +#: ../../mod/admin.php:976 ../../mod/admin.php:1181 +msgid "Settings" +msgstr "Impostazioni" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb + +#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 +msgid "Channel Suggestions" +msgstr "Canali suggeriti" + +#: ../../include/contact_widgets.php:29 +msgid "Random Profile" +msgstr "Profilo casuale" + +#: ../../include/contact_widgets.php:30 +msgid "Invite Friends" +msgstr "Invita amici" + +#: ../../include/contact_widgets.php:32 +msgid "Exammple: name=fred and country=iceland" +msgstr "Per esempio: name=mario e country=italy" + +#: ../../include/contact_widgets.php:33 +msgid "Advanced Find" +msgstr "Ricerca avanzata" + +#: ../../include/contact_widgets.php:125 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d contatto in comune" +msgstr[1] "%d contatti in comune" + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Altro" + +<<<<<<< HEAD +#: ../../include/datetime.php:152 ../../include/datetime.php:284 +msgid "year" +msgstr "anno" + +#: ../../include/datetime.php:157 ../../include/datetime.php:285 +msgid "month" +msgstr "mese" + +#: ../../include/datetime.php:162 ../../include/datetime.php:287 +msgid "day" +msgstr "giorno" +======= +#: ../../include/plugin.php:486 ../../include/plugin.php:488 +msgid "Click here to upgrade." +msgstr "Clicca qui per aggiornare." + +#: ../../include/plugin.php:494 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Questa operazione esce dai termini del tuo abbonamento." + +#: ../../include/plugin.php:499 +msgid "This action is not available under your subscription plan." +msgstr "Questa operazione non è prevista dal tuo abbonamento." +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb + +#: ../../include/datetime.php:275 +msgid "never" +msgstr "mai" + +#: ../../include/datetime.php:281 +msgid "less than a second ago" +msgstr "meno di un secondo fa" + +#: ../../include/datetime.php:284 +msgid "years" +msgstr "anni" + +#: ../../include/datetime.php:285 +msgid "months" +msgstr "mesi" + +#: ../../include/datetime.php:286 +msgid "week" +msgstr "settimana" + +#: ../../include/datetime.php:286 +msgid "weeks" +msgstr "settimane" + +#: ../../include/datetime.php:287 +msgid "days" +msgstr "giorni" + +#: ../../include/datetime.php:288 +msgid "hour" +msgstr "ora" + +#: ../../include/datetime.php:288 +msgid "hours" +msgstr "ore" + +#: ../../include/datetime.php:289 +msgid "minute" +msgstr "minuto" + +#: ../../include/datetime.php:289 +msgid "minutes" +msgstr "minuti" + +#: ../../include/datetime.php:290 +msgid "second" +msgstr "secondo" + +#: ../../include/datetime.php:290 +msgid "seconds" +msgstr "secondi" + +#: ../../include/datetime.php:299 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s fa" + +#: ../../include/identity.php:30 ../../mod/item.php:1244 +msgid "Unable to obtain identity information from database" +msgstr "Impossibile ottenere le informazioni di identificazione dal database" + +#: ../../include/identity.php:63 +msgid "Empty name" +msgstr "Nome vuoto" + +#: ../../include/identity.php:65 +msgid "Name too long" +msgstr "Nome troppo lungo" + +#: ../../include/identity.php:166 +msgid "No account identifier" +msgstr "Account senza identificativo" + +#: ../../include/identity.php:176 +msgid "Nickname is required." +msgstr "Il nome dell'account è obbligatorio." + +#: ../../include/identity.php:190 +msgid "Reserved nickname. Please choose another." +msgstr "Nome utente riservato. Per favore scegline un altro." + +#: ../../include/identity.php:195 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "Il nome dell'account è già in uso oppure ha dei caratteri non supportati." + +#: ../../include/identity.php:258 +msgid "Unable to retrieve created identity" +msgstr "Impossibile caricare l'identità creata" + +#: ../../include/identity.php:317 +msgid "Default Profile" +msgstr "Profilo predefinito" + +#: ../../include/identity.php:509 +msgid "Requested channel is not available." +msgstr "Il canale che cerchi non è disponibile." + +#: ../../include/identity.php:557 ../../mod/webpages.php:8 +#: ../../mod/connect.php:13 ../../mod/blocks.php:10 +#: ../../mod/filestorage.php:40 ../../mod/achievements.php:8 +#: ../../mod/layouts.php:8 ../../mod/profile.php:16 +msgid "Requested profile is not available." +msgstr "Il profilo richiesto non è disponibile." + +#: ../../include/identity.php:689 ../../mod/profiles.php:603 +msgid "Change profile photo" +msgstr "Cambia la foto del profilo" + +#: ../../include/identity.php:695 +msgid "Profiles" +msgstr "Profili" + +#: ../../include/identity.php:695 +msgid "Manage/edit profiles" +msgstr "Gestisci/modifica i profili" + +#: ../../include/identity.php:696 ../../mod/profiles.php:604 +msgid "Create New Profile" +msgstr "Crea un nuovo profilo" + +#: ../../include/identity.php:699 +msgid "Edit Profile" +msgstr "Modifica il profilo" + +#: ../../include/identity.php:710 ../../mod/profiles.php:615 +msgid "Profile Image" +msgstr "Immagine del profilo" + +#: ../../include/identity.php:713 ../../mod/profiles.php:618 +msgid "visible to everybody" +msgstr "visibile a tutti" + +#: ../../include/identity.php:714 ../../mod/profiles.php:619 +msgid "Edit visibility" +msgstr "Cambia la visibilità" + +#: ../../include/identity.php:728 ../../include/identity.php:952 +#: ../../mod/directory.php:158 +msgid "Gender:" +msgstr "Sesso:" + +#: ../../include/identity.php:729 ../../include/identity.php:977 +#: ../../mod/directory.php:160 +msgid "Status:" +msgstr "Stato:" + +#: ../../include/identity.php:730 ../../include/identity.php:988 +#: ../../mod/directory.php:162 +msgid "Homepage:" +msgstr "Home page:" + +#: ../../include/identity.php:731 ../../mod/dirprofile.php:151 +msgid "Online Now" +msgstr "Online adesso" + +#: ../../include/identity.php:796 ../../include/identity.php:876 +#: ../../mod/ping.php:262 +msgid "g A l F d" +msgstr "g A l d F" + +#: ../../include/identity.php:797 ../../include/identity.php:877 +msgid "F d" +msgstr "d F" + +#: ../../include/identity.php:842 ../../include/identity.php:917 +#: ../../mod/ping.php:284 +msgid "[today]" +msgstr "[oggi]" + +#: ../../include/identity.php:854 +msgid "Birthday Reminders" +msgstr "Promemoria compleanni" + +#: ../../include/identity.php:855 +msgid "Birthdays this week:" +msgstr "Compleanni questa settimana:" + +#: ../../include/identity.php:910 +msgid "[No description]" +msgstr "[Nessuna descrizione]" + +#: ../../include/identity.php:928 +msgid "Event Reminders" +msgstr "Promemoria" + +#: ../../include/identity.php:929 +msgid "Events this week:" +msgstr "Eventi di questa settimana:" + +#: ../../include/identity.php:950 ../../mod/settings.php:937 +msgid "Full Name:" +msgstr "Nome completo:" + +#: ../../include/identity.php:962 +msgid "j F, Y" +msgstr "j F Y" + +#: ../../include/identity.php:963 +msgid "j F" +msgstr "j F" + +#: ../../include/identity.php:970 +msgid "Birthday:" +msgstr "Compleanno:" + +#: ../../include/identity.php:974 +msgid "Age:" +msgstr "Età:" + +#: ../../include/identity.php:983 +#, php-format +msgid "for %1$d %2$s" +msgstr "per %1$d %2$s" + +#: ../../include/identity.php:986 ../../mod/profiles.php:526 +msgid "Sexual Preference:" +msgstr "Preferenze sessuali:" + +#: ../../include/identity.php:990 ../../mod/profiles.php:528 +msgid "Hometown:" +msgstr "Città dove vivo:" + +#: ../../include/identity.php:992 +msgid "Tags:" +msgstr "Tag:" + +#: ../../include/identity.php:994 ../../mod/profiles.php:529 +msgid "Political Views:" +msgstr "Orientamento politico:" + +#: ../../include/identity.php:996 +msgid "Religion:" +msgstr "Religione:" + +#: ../../include/identity.php:998 ../../mod/directory.php:164 +msgid "About:" +msgstr "Informazioni:" + +<<<<<<< HEAD +#: ../../include/identity.php:1000 +msgid "Hobbies/Interests:" +msgstr "Interessi e hobby:" + +#: ../../include/identity.php:1002 ../../mod/profiles.php:532 +msgid "Likes:" +msgstr "Mi piace:" + +#: ../../include/identity.php:1004 ../../mod/profiles.php:533 +msgid "Dislikes:" +msgstr "Non mi piace:" + +#: ../../include/identity.php:1007 +msgid "Contact information and Social Networks:" +msgstr "Contatti e social network:" + +#: ../../include/identity.php:1009 +msgid "My other channels:" +msgstr "I miei altri canali:" + +#: ../../include/identity.php:1011 +msgid "Musical interests:" +msgstr "Gusti musicali:" + +#: ../../include/identity.php:1013 +msgid "Books, literature:" +msgstr "Libri, letteratura:" + +#: ../../include/identity.php:1015 +msgid "Television:" +msgstr "Televisione:" + +#: ../../include/identity.php:1017 +msgid "Film/dance/culture/entertainment:" +msgstr "Film, danza, cultura, intrattenimento:" + +#: ../../include/identity.php:1019 +msgid "Love/Romance:" +msgstr "Amore:" + +#: ../../include/identity.php:1021 +msgid "Work/employment:" +msgstr "Lavoro:" + +#: ../../include/identity.php:1023 +msgid "School/education:" +msgstr "Scuola:" + +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "Eliminare questo elemento?" + +#: ../../include/js_strings.php:8 +msgid "show fewer" +msgstr "riduci" + +#: ../../include/js_strings.php:9 +msgid "+ Show More" +msgstr "+ Mostra tutto" + +#: ../../include/js_strings.php:10 +msgid "- Show Less" +msgstr "- Mostra ridotto" + +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "Password troppo corta" + +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "Le password non corrispondono" + +#: ../../include/js_strings.php:13 ../../mod/photos.php:39 +msgid "everybody" +msgstr "tutti" + +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "Chiave segreta" + +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "Suggerimento per la chiave segreta" + +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "Nota: i permessi sono stati modificati ma non ancora salvati." + +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "chiudi tutto" + +#: ../../include/js_strings.php:19 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" + +#: ../../include/js_strings.php:20 +msgid "timeago.prefixFromNow" +msgstr "timeago.prefixFromNow" + +#: ../../include/js_strings.php:21 +msgid "ago" +msgstr "fa" + +#: ../../include/js_strings.php:22 +msgid "from now" +msgstr "da adesso" + +#: ../../include/js_strings.php:23 +msgid "less than a minute" +msgstr "meno di un minuto" + +#: ../../include/js_strings.php:24 +msgid "about a minute" +msgstr "circa un minuto" + +#: ../../include/js_strings.php:25 +#, php-format +msgid "%d minutes" +msgstr "%d minuti" + +#: ../../include/js_strings.php:26 +msgid "about an hour" +msgstr "circa un’ora" + +#: ../../include/js_strings.php:27 +#, php-format +msgid "about %d hours" +msgstr "circa %d ore" +======= #: ../../include/reddav.php:1045 msgid "Edit File properties" msgstr "Modifica le proprietà dei file" @@ -3313,14 +4475,444 @@ msgstr "Chat nei segnalibri" #: ../../include/widgets.php:647 msgid "Suggested Chatrooms" msgstr "Chat suggerite" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb -#: ../../mod/mood.php:138 -msgid "Mood" -msgstr "Umore" +#: ../../include/js_strings.php:28 +msgid "a day" +msgstr "un giorno" -#: ../../mod/mood.php:139 -msgid "Set your current mood and tell your friends" -msgstr "Scegli il tuo umore attuale per mostrarlo agli amici" +#: ../../include/js_strings.php:29 +#, php-format +msgid "%d days" +msgstr "%d giorni" + +#: ../../include/js_strings.php:30 +msgid "about a month" +msgstr "circa un mese" + +#: ../../include/js_strings.php:31 +#, php-format +msgid "%d months" +msgstr "%d mesi" + +#: ../../include/js_strings.php:32 +msgid "about a year" +msgstr "circa un anno" + +#: ../../include/js_strings.php:33 +#, php-format +msgid "%d years" +msgstr "%d anni" + +#: ../../include/js_strings.php:34 +msgid " " +msgstr " " + +#: ../../include/js_strings.php:35 +msgid "timeago.numbers" +msgstr "timeago.numbers" + +#: ../../mod/home.php:50 ../../mod/block.php:39 ../../mod/chanview.php:77 +#: ../../mod/page.php:47 ../../mod/wall_upload.php:28 +msgid "Channel not found." +msgstr "Canale non trovato." + +#: ../../mod/home.php:89 +#, php-format +msgid "Welcome to %s" +msgstr "%s ti dà il benvenuto" + +#: ../../mod/follow.php:25 +msgid "Channel added." +msgstr "Canale aggiunto." + +#: ../../mod/dirprofile.php:9 ../../mod/search.php:13 +#: ../../mod/directory.php:15 ../../mod/photos.php:443 ../../mod/display.php:9 +#: ../../mod/viewconnections.php:17 +msgid "Public access denied." +msgstr "Accesso pubblico negato." + +#: ../../mod/dirprofile.php:92 ../../mod/directory.php:143 +#: ../../mod/profiles.php:561 +msgid "Age: " +msgstr "Età:" + +#: ../../mod/dirprofile.php:95 ../../mod/directory.php:146 +msgid "Gender: " +msgstr "Sesso:" + +#: ../../mod/dirprofile.php:108 +msgid "Status: " +msgstr "Stato:" + +#: ../../mod/dirprofile.php:109 +msgid "Sexual Preference: " +msgstr "Preferenza sessuale:" + +#: ../../mod/dirprofile.php:111 +msgid "Homepage: " +msgstr "Homepage:" + +#: ../../mod/dirprofile.php:112 +msgid "Hometown: " +msgstr "Città dove vivo:" + +#: ../../mod/dirprofile.php:114 +msgid "About: " +msgstr "Informazioni:" + +#: ../../mod/dirprofile.php:162 +msgid "Keywords: " +msgstr "Parole chiave:" + +#: ../../mod/dirprofile.php:175 ../../mod/mitem.php:78 ../../mod/xchan.php:27 +#: ../../mod/menu.php:120 +msgid "Not found." +msgstr "Non trovato." + +#: ../../mod/acl.php:239 +msgid "network" +msgstr "rete" + +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autorizza la app" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Torna alla app e inserisci questo codice di sicurezza:" + +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Accedi al sito per continuare." + +#: ../../mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?" + +#: ../../mod/api.php:105 ../../mod/settings.php:879 ../../mod/settings.php:884 +#: ../../mod/settings.php:955 ../../mod/profiles.php:483 +#: ../../mod/admin.php:421 +msgid "Yes" +msgstr "Si" + +#: ../../mod/api.php:106 ../../mod/settings.php:879 ../../mod/settings.php:884 +#: ../../mod/settings.php:955 ../../mod/profiles.php:484 +#: ../../mod/admin.php:419 +msgid "No" +msgstr "No" + +#: ../../mod/editlayout.php:36 ../../mod/editpost.php:20 +#: ../../mod/editblock.php:8 ../../mod/editblock.php:27 +#: ../../mod/editblock.php:53 ../../mod/editwebpage.php:32 +msgid "Item not found" +msgstr "Elemento non trovato" + +#: ../../mod/editlayout.php:72 +msgid "Edit Layout" +msgstr "Modifica il layout" + +#: ../../mod/editlayout.php:82 +msgid "Delete layout?" +msgstr "Vuoi eliminare questo layout?" + +#: ../../mod/editlayout.php:110 ../../mod/editpost.php:116 +#: ../../mod/editblock.php:115 ../../mod/editwebpage.php:147 +msgid "Insert YouTube video" +msgstr "Inserisci video da YouTube" + +#: ../../mod/editlayout.php:111 ../../mod/editpost.php:117 +#: ../../mod/editblock.php:116 ../../mod/editwebpage.php:148 +msgid "Insert Vorbis [.ogg] video" +msgstr "Inserisci video Vorbis [.ogg]" + +#: ../../mod/editlayout.php:112 ../../mod/editpost.php:118 +#: ../../mod/editblock.php:117 ../../mod/editwebpage.php:149 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Inserisci audio Vorbis [.ogg]" + +#: ../../mod/editlayout.php:146 +msgid "Delete Layout" +msgstr "Elimina il layout" + +#: ../../mod/magic.php:70 +msgid "Hub not found." +msgstr "Server non trovato." + +#: ../../mod/probe.php:23 ../../mod/probe.php:29 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "La chiamata all'URL restituisce questo errore: %1$s" + +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Tag rimosso" + +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Rimuovi il tag" + +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Seleziona un tag da rimuovere: " + +#: ../../mod/tagrm.php:93 ../../mod/photos.php:908 ../../mod/delegate.php:130 +msgid "Remove" +msgstr "Rimuovi" + +#: ../../mod/new_channel.php:107 +msgid "Add a Channel" +msgstr "Aggiungi un canale" + +#: ../../mod/new_channel.php:108 +msgid "" +"A channel is your own collection of related web pages. A channel can be used" +" to hold social network profiles, blogs, conversation groups and forums, " +"celebrity pages, and much more. You may create as many channels as your " +"service provider allows." +msgstr "I contenuti che pubblichi finiscono in un \"canale\". Un canale può essere usato per mantenere un tuo profilo personale, per avere un blog, per creare forum di discussione o gruppi di interesse, per pagine di celebrità e molto altro. Puoi creare quanti canali vuoi a meno di limiti dati dal gestore del sito." + +#: ../../mod/new_channel.php:110 ../../mod/sources.php:103 +#: ../../mod/sources.php:137 +msgid "Channel Name" +msgstr "Nome del canale" + +#: ../../mod/new_channel.php:111 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " +msgstr "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\"" + +#: ../../mod/new_channel.php:112 +msgid "Choose a short nickname" +msgstr "Scegli un nome breve" + +#: ../../mod/new_channel.php:113 +msgid "" +"Your nickname will be used to create an easily remembered channel address " +"(like an email address) which you can share with others." +msgstr "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale (simile a una email). Così potrai condividerlo e gli altri potranno trovarti." + +#: ../../mod/new_channel.php:114 +msgid "Or import an existing channel from another location" +msgstr "Oppure importa un tuo canale esistente da un altro server/hub" + +#: ../../mod/new_channel.php:117 ../../mod/mitem.php:142 ../../mod/menu.php:84 +msgid "Create" +msgstr "Crea" + +#: ../../mod/pubsites.php:16 +msgid "Public Sites" +msgstr "Siti pubblici" + +#: ../../mod/pubsites.php:19 +msgid "" +"The listed sites allow public registration into the Red Matrix. All sites in" +" the matrix are interlinked so membership on any of them conveys membership " +"in the matrix as a whole. Some sites may require subscription or provide " +"tiered service plans. The provider links may provide " +"additional details." +msgstr "Gli indirizzi elencati permettono la registrazione su Red Matrix. Tutti i siti di questa rete sono interconnessi, quindi essere registrati su uno è come essere registrati ovunque. Alcuni potrebbero richiedere un'iscrizione a pagamento o prevedere tipi diversi di abbonamento. Potrai trovare maggiori informazioni al riguardo visitando ciascun sito." + +#: ../../mod/pubsites.php:25 +msgid "Site URL" +msgstr "URL del sito" + +#: ../../mod/pubsites.php:25 +msgid "Access Type" +msgstr "Tipo di accesso" + +#: ../../mod/pubsites.php:25 +msgid "Registration Policy" +msgstr "Politica di registrazione" + +#: ../../mod/pubsites.php:25 ../../mod/profiles.php:344 +msgid "Location" +msgstr "Luogo attuale" + +#: ../../mod/update_search.php:46 ../../mod/update_network.php:23 +#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 +msgid "[Embedded content - reload page to view]" +msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" + +#: ../../mod/group.php:20 +msgid "Collection created." +msgstr "L'insieme di canali è stato creato." + +#: ../../mod/group.php:26 +msgid "Could not create collection." +msgstr "Impossibile creare l'insieme." + +#: ../../mod/group.php:54 +msgid "Collection updated." +msgstr "Insieme aggiornato." + +#: ../../mod/group.php:86 +msgid "Create a collection of channels." +msgstr "Crea un insieme di canali." + +#: ../../mod/group.php:87 ../../mod/group.php:183 +msgid "Collection Name: " +msgstr "Nome dell'insieme:" + +#: ../../mod/group.php:89 ../../mod/group.php:186 +msgid "Members are visible to other channels" +msgstr "I membri saranno visibili agli altri canali" + +#: ../../mod/group.php:107 +msgid "Collection removed." +msgstr "Insieme rimosso." + +#: ../../mod/group.php:109 +msgid "Unable to remove collection." +msgstr "Impossibile rimuovere l'insieme." + +#: ../../mod/group.php:182 +msgid "Collection Editor" +msgstr "Modifica l'insieme" + +#: ../../mod/group.php:196 +msgid "Members" +msgstr "Membri" + +#: ../../mod/group.php:198 +msgid "All Connected Channels" +msgstr "Tutti i canali connessi" + +#: ../../mod/group.php:231 +msgid "Click on a channel to add or remove." +msgstr "Clicca su un canale per aggiungerlo o rimuoverlo." + +#: ../../mod/thing.php:98 +msgid "Thing updated" +msgstr "L'oggetto è stato aggiornato" + +#: ../../mod/thing.php:158 +msgid "Object store: failed" +msgstr "Impossibile memorizzare l'oggetto." + +#: ../../mod/thing.php:162 +msgid "Thing added" +msgstr "L'oggetto è stato aggiunto" + +#: ../../mod/thing.php:182 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" + +#: ../../mod/thing.php:234 +msgid "Show Thing" +msgstr "Mostra l'oggetto" + +#: ../../mod/thing.php:241 +msgid "item not found." +msgstr "non trovato." + +#: ../../mod/thing.php:269 +msgid "Edit Thing" +msgstr "Modifica l'oggetto" + +#: ../../mod/thing.php:271 ../../mod/thing.php:318 +msgid "Select a profile" +msgstr "Scegli un profilo" + +#: ../../mod/thing.php:273 ../../mod/thing.php:320 +msgid "Select a category of stuff. e.g. I ______ something" +msgstr "Scegli come riferirsi all'oggetto. Esempio: Io _____ l'oggetto" + +#: ../../mod/thing.php:275 ../../mod/thing.php:321 +msgid "Post an activity" +msgstr "Pubblica un'attività" + +#: ../../mod/thing.php:275 ../../mod/thing.php:321 +msgid "Only sends to viewers of the applicable profile" +msgstr "Invia solo a chi segue il relativo canale" + +#: ../../mod/thing.php:277 ../../mod/thing.php:323 +msgid "Name of thing e.g. something" +msgstr "Nome dell'oggetto" + +#: ../../mod/thing.php:279 ../../mod/thing.php:324 +msgid "URL of thing (optional)" +msgstr "Indirizzo web dell'oggetto" + +#: ../../mod/thing.php:281 ../../mod/thing.php:325 +msgid "URL for photo of thing (optional)" +msgstr "Indirizzo di un'immagine dell'oggetto (facoltativo)" + +#: ../../mod/thing.php:316 +msgid "Add Thing to your Profile" +msgstr "Aggiungi l'oggetto al tuo profilo" + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "L'identificativo della richiesta non è valido." + +#: ../../mod/notifications.php:35 +msgid "Discard" +msgstr "Rifiuta" + +#: ../../mod/notifications.php:51 ../../mod/connedit.php:379 +#: ../../mod/connedit.php:516 +msgid "Ignore" +msgstr "Ignora" + +#: ../../mod/notifications.php:94 ../../mod/notify.php:54 +msgid "No more system notifications." +msgstr "Non ci sono nuove notifiche di sistema." + +#: ../../mod/notifications.php:98 ../../mod/notify.php:58 +msgid "System Notifications" +msgstr "Notifiche di sistema" + +#: ../../mod/block.php:27 ../../mod/page.php:35 +msgid "Invalid item." +msgstr "Elemento non valido." + +#: ../../mod/block.php:75 ../../mod/help.php:72 ../../mod/page.php:83 +#: ../../mod/display.php:100 ../../index.php:237 +msgid "Page not found." +msgstr "Pagina non trovata." + +#: ../../mod/message.php:31 ../../mod/mail.php:121 +msgid "Messages" +msgstr "Messaggi" + +#: ../../mod/message.php:41 +msgid "Conversation removed." +msgstr "Conversazione rimossa." + +#: ../../mod/message.php:56 +msgid "No messages." +msgstr "Nessun messaggio." + +#: ../../mod/message.php:72 ../../mod/mail.php:292 +msgid "Delete message" +msgstr "Elimina il messaggio" + +#: ../../mod/message.php:74 +msgid "D, d M Y - g:i A" +msgstr "D d M Y - G:i" + +#: ../../mod/rpost.php:86 ../../mod/editpost.php:42 +msgid "Edit post" +msgstr "Modifica articolo" + +#: ../../mod/directory.php:207 +msgid "Finding:" +msgstr "Ricerca:" + +#: ../../mod/directory.php:215 +msgid "next page" +msgstr "pagina succ." + +#: ../../mod/directory.php:215 +msgid "previous page" +msgstr "pagina prec." + +#: ../../mod/directory.php:222 +msgid "No entries (some entries may be hidden)." +msgstr "Nessun risultato (qualcosa potrebbe essere nascosto)." #: ../../mod/mitem.php:14 ../../mod/menu.php:92 msgid "Menu not found." @@ -3342,11 +4934,6 @@ msgstr "Elemento aggiunto al menù." msgid "Unable to add menu element." msgstr "Impossibile aggiungere l'elemento al menù." -#: ../../mod/mitem.php:78 ../../mod/dirprofile.php:175 ../../mod/menu.php:120 -#: ../../mod/xchan.php:27 -msgid "Not found." -msgstr "Non trovato." - #: ../../mod/mitem.php:96 msgid "Manage Menu Elements" msgstr "Gestione elementi del menù" @@ -3419,10 +5006,6 @@ msgstr "Ordine dell'elenco" msgid "Higher numbers will sink to bottom of listing" msgstr "I numeri più alti andranno in fondo all'elenco" -#: ../../mod/mitem.php:142 ../../mod/menu.php:84 ../../mod/new_channel.php:117 -msgid "Create" -msgstr "Crea" - #: ../../mod/mitem.php:154 msgid "Menu item not found." msgstr "L'elemento del menù non è stato trovato." @@ -3443,720 +5026,303 @@ msgstr "Modifica l'elemento del menù" msgid "Modify" msgstr "Modifica" -#: ../../mod/ping.php:192 -msgid "sent you a private message" -msgstr "ti ha inviato un messaggio privato" +#: ../../mod/connect.php:55 ../../mod/connect.php:103 +msgid "Continue" +msgstr "Continua" -#: ../../mod/ping.php:250 -msgid "added your channel" -msgstr "ha aggiunto il tuo canale" +#: ../../mod/connect.php:84 +msgid "Premium Channel Setup" +msgstr "Canale premium - installazione" -#: ../../mod/ping.php:294 -msgid "posted an event" -msgstr "ha creato un evento" +#: ../../mod/connect.php:86 +msgid "Enable premium channel connection restrictions" +msgstr "Abilita le restrizioni del canale premium" -#: ../../mod/acl.php:239 -msgid "network" -msgstr "rete" - -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "Le impostazioni del tema sono state aggiornate." - -#: ../../mod/admin.php:92 ../../mod/admin.php:440 -msgid "Site" -msgstr "Sito" - -#: ../../mod/admin.php:93 -msgid "Accounts" -msgstr "Accounts" - -#: ../../mod/admin.php:94 ../../mod/admin.php:883 -msgid "Channels" -msgstr "Canali" - -#: ../../mod/admin.php:95 ../../mod/admin.php:974 ../../mod/admin.php:1016 -msgid "Plugins" -msgstr "Plugin" - -#: ../../mod/admin.php:96 ../../mod/admin.php:1179 ../../mod/admin.php:1215 -msgid "Themes" -msgstr "Temi" - -#: ../../mod/admin.php:97 ../../mod/admin.php:540 -msgid "Server" -msgstr "Server" - -#: ../../mod/admin.php:98 -msgid "DB updates" -msgstr "Aggiornamenti al DB" - -#: ../../mod/admin.php:112 ../../mod/admin.php:119 ../../mod/admin.php:1302 -msgid "Logs" -msgstr "Log" - -#: ../../mod/admin.php:118 -msgid "Plugin Features" -msgstr "Funzionalità dei componenti aggiuntivi" - -#: ../../mod/admin.php:120 -msgid "User registrations waiting for confirmation" -msgstr "Registrazioni in attesa" - -#: ../../mod/admin.php:197 -msgid "Message queues" -msgstr "Messaggi in attesa di recapito" - -#: ../../mod/admin.php:202 ../../mod/admin.php:439 ../../mod/admin.php:539 -#: ../../mod/admin.php:748 ../../mod/admin.php:882 ../../mod/admin.php:973 -#: ../../mod/admin.php:1015 ../../mod/admin.php:1178 ../../mod/admin.php:1214 -#: ../../mod/admin.php:1301 -msgid "Administration" -msgstr "Amministrazione" - -#: ../../mod/admin.php:203 -msgid "Summary" -msgstr "Riepilogo" - -#: ../../mod/admin.php:205 -msgid "Registered users" -msgstr "Utenti registrati" - -#: ../../mod/admin.php:207 ../../mod/admin.php:543 -msgid "Pending registrations" -msgstr "Registrazioni da approvare" - -#: ../../mod/admin.php:208 -msgid "Version" -msgstr "Versione" - -#: ../../mod/admin.php:210 ../../mod/admin.php:544 -msgid "Active plugins" -msgstr "Plugin attivi" - -#: ../../mod/admin.php:360 -msgid "Site settings updated." -msgstr "Impostazioni del sito aggiornate." - -#: ../../mod/admin.php:389 ../../mod/settings.php:708 -msgid "No special theme for mobile devices" -msgstr "Nessun tema per dispositivi mobili" - -#: ../../mod/admin.php:391 -msgid "No special theme for accessibility" -msgstr "Nessun tema speciale per l'accessibilità" - -#: ../../mod/admin.php:419 ../../mod/api.php:106 ../../mod/profiles.php:484 -#: ../../mod/settings.php:879 ../../mod/settings.php:884 -#: ../../mod/settings.php:955 -msgid "No" -msgstr "No" - -#: ../../mod/admin.php:420 -msgid "Yes - with approval" -msgstr "Sì - con approvazione" - -#: ../../mod/admin.php:421 ../../mod/api.php:105 ../../mod/profiles.php:483 -#: ../../mod/settings.php:879 ../../mod/settings.php:884 -#: ../../mod/settings.php:955 -msgid "Yes" -msgstr "Si" - -#: ../../mod/admin.php:426 -msgid "My site is not a public server" -msgstr "Non è un server pubblico" - -#: ../../mod/admin.php:427 -msgid "My site has paid access only" -msgstr "È un servizio a pagamento" - -#: ../../mod/admin.php:428 -msgid "My site has free access only" -msgstr "È un servizio gratuito" - -#: ../../mod/admin.php:429 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento" - -#: ../../mod/admin.php:442 ../../mod/register.php:189 -msgid "Registration" -msgstr "Registrazione" - -#: ../../mod/admin.php:443 -msgid "File upload" -msgstr "Caricamento file" - -#: ../../mod/admin.php:444 -msgid "Policies" -msgstr "Politiche" - -#: ../../mod/admin.php:449 -msgid "Site name" -msgstr "Nome del sito" - -#: ../../mod/admin.php:450 -msgid "Banner/Logo" -msgstr "Banner o logo" - -#: ../../mod/admin.php:451 -msgid "Administrator Information" -msgstr "Informazioni sull'amministrazione" - -#: ../../mod/admin.php:451 +#: ../../mod/connect.php:87 msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida o il sistema di pagamento ecc." -#: ../../mod/admin.php:452 -msgid "System language" -msgstr "Lingua di sistema" - -#: ../../mod/admin.php:453 -msgid "System theme" -msgstr "Tema di sistema" - -#: ../../mod/admin.php:453 +#: ../../mod/connect.php:89 ../../mod/connect.php:109 msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:" -#: ../../mod/admin.php:454 -msgid "Mobile system theme" -msgstr "Tema di sistema per dispositivi mobili" - -#: ../../mod/admin.php:454 -msgid "Theme for mobile devices" -msgstr "Tema per i dispositivi mobili" - -#: ../../mod/admin.php:455 -msgid "Accessibility system theme" -msgstr "Tema di sistema ad alta accessibilità" - -#: ../../mod/admin.php:455 -msgid "Accessibility theme" -msgstr "Tema ad alta accessibilità" - -#: ../../mod/admin.php:456 -msgid "Channel to use for this website's static pages" -msgstr "Canale da usare per le pagine statiche di questo sito" - -#: ../../mod/admin.php:456 -msgid "Site Channel" -msgstr "Canale del sito" - -#: ../../mod/admin.php:458 -msgid "Maximum image size" -msgstr "Dimensione massima immagini" - -#: ../../mod/admin.php:458 +#: ../../mod/connect.php:90 msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." +"Potential connections will then see the following text before proceeding:" +msgstr "Il testo seguente comparirà a chi vorrà connettersi:" -#: ../../mod/admin.php:459 -msgid "Does this site allow new member registration?" -msgstr "Questo sito permette a nuovi utenti di registrarsi?" - -#: ../../mod/admin.php:460 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Come descriveresti il tipo di servizio proposto da questo server?" - -#: ../../mod/admin.php:461 -msgid "Register text" -msgstr "Testo diregistrazione" - -#: ../../mod/admin.php:461 -msgid "Will be displayed prominently on the registration page." -msgstr "Sarà mostrato ben visibile nella pagina di registrazione." - -#: ../../mod/admin.php:462 -msgid "Accounts abandoned after x days" -msgstr "Account abbandonati dopo X giorni" - -#: ../../mod/admin.php:462 +#: ../../mod/connect.php:91 ../../mod/connect.php:112 msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo." +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina." -#: ../../mod/admin.php:463 -msgid "Allowed friend domains" -msgstr "Domini fidati e consentiti" +#: ../../mod/connect.php:100 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Il gestore del canale non ha fornito istruzioni specifiche)" -#: ../../mod/admin.php:463 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio." +#: ../../mod/connect.php:108 +msgid "Restricted or Premium Channel" +msgstr "Canale premium - con restrizioni" -#: ../../mod/admin.php:464 -msgid "Allowed email domains" -msgstr "Domini email consentiti" +#: ../../mod/item.php:147 +msgid "Unable to locate original post." +msgstr "Impossibile trovare il messaggio originale." -#: ../../mod/admin.php:464 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio." +#: ../../mod/item.php:352 +msgid "Empty post discarded." +msgstr "L'articolo vuoto è stato ignorato." -#: ../../mod/admin.php:465 -msgid "Block public" -msgstr "Blocca pagine pubbliche" +#: ../../mod/item.php:392 +msgid "Executable content type not permitted to this channel." +msgstr "I contenuti eseguibili non sono permessi su questo canale." -#: ../../mod/admin.php:465 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso." +#: ../../mod/item.php:806 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Articolo non salvato." -#: ../../mod/admin.php:466 -msgid "Force publish" -msgstr "Forza la publicazione del profilo" - -#: ../../mod/admin.php:466 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Seleziona per mostrare nell'elenco dei canali del sito tutti i profili registrati." - -#: ../../mod/admin.php:467 -msgid "Disable discovery tab" -msgstr "Disabilita la funzione 'scopri'" - -#: ../../mod/admin.php:467 -msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." -msgstr "Nell'area della rete personale non comparirà più la scheda con i contenuti acquisiti da altri siti." - -#: ../../mod/admin.php:468 -msgid "No login on Homepage" -msgstr "Non mostrare il login sulla homepage" - -#: ../../mod/admin.php:468 -msgid "" -"Check to hide the login form from your sites homepage when visitors arrive " -"who are not logged in (e.g. when you put the content of the homepage in via " -"the site channel)." -msgstr "Per nascondere la possibilità di fare login ai visitatori (per esempio, quando il contenuto della homepage del sito è alimentato dal canale)." - -#: ../../mod/admin.php:470 -msgid "Proxy user" -msgstr "Utente proxy" - -#: ../../mod/admin.php:471 -msgid "Proxy URL" -msgstr "URL proxy" - -#: ../../mod/admin.php:472 -msgid "Network timeout" -msgstr "Timeout rete" - -#: ../../mod/admin.php:472 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)." - -#: ../../mod/admin.php:473 -msgid "Delivery interval" -msgstr "Recapito ritardato" - -#: ../../mod/admin.php:473 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "RItarda il processo di recapito di questo numero di secondi per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati." - -#: ../../mod/admin.php:474 -msgid "Poll interval" -msgstr "Intervallo di polling" - -#: ../../mod/admin.php:474 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Ritarda i processi di polling in background di questo numero di secondi per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'." - -#: ../../mod/admin.php:475 -msgid "Maximum Load Average" -msgstr "Carico massimo medio" - -#: ../../mod/admin.php:475 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50." - -#: ../../mod/admin.php:531 -msgid "No server found" -msgstr "Server non trovato" - -#: ../../mod/admin.php:538 ../../mod/admin.php:762 -msgid "ID" -msgstr "ID" - -#: ../../mod/admin.php:538 -msgid "for channel" -msgstr "per canale" - -#: ../../mod/admin.php:538 -msgid "on server" -msgstr "sul server" - -#: ../../mod/admin.php:538 -msgid "Status" -msgstr "Stato" - -#: ../../mod/admin.php:559 -msgid "Update has been marked successful" -msgstr "L'aggiornamento è stato marcato come eseguito." - -#: ../../mod/admin.php:569 +#: ../../mod/item.php:1249 #, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema." +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Hai raggiunto il limite massimo di %1$.0f articoli sulla pagina principale." -#: ../../mod/admin.php:572 +#: ../../mod/item.php:1255 #, php-format -msgid "Update %s was successfully applied." -msgstr "L'aggiornamento %s è terminato correttamente." +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web." -#: ../../mod/admin.php:576 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente." - -#: ../../mod/admin.php:579 -#, php-format -msgid "Update function %s could not be found." -msgstr "Impossibile trovare la funzione di aggiornamento %s" - -#: ../../mod/admin.php:594 -msgid "No failed updates." -msgstr "Nessun aggiornamento fallito." - -#: ../../mod/admin.php:598 -msgid "Failed Updates" -msgstr "Aggiornamenti falliti." - -#: ../../mod/admin.php:600 -msgid "Mark success (if update was manually applied)" -msgstr "Marca come eseguito (se applicato manualmente)." - -#: ../../mod/admin.php:601 -msgid "Attempt to execute this update step automatically" -msgstr "Tenta di eseguire in automatico questo passaggio dell'aggiornamento." - -#: ../../mod/admin.php:627 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s utente bloccato/sbloccato" -msgstr[1] "%s utenti bloccati/sbloccati" - -#: ../../mod/admin.php:634 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s utente cancellato" -msgstr[1] "%s utenti cancellati" - -#: ../../mod/admin.php:665 -msgid "Account not found" -msgstr "Account non trovato" - -#: ../../mod/admin.php:676 -#, php-format -msgid "User '%s' deleted" -msgstr "Utente '%s' eliminato" - -#: ../../mod/admin.php:685 -#, php-format -msgid "User '%s' unblocked" -msgstr "Utente '%s' sbloccato" - -#: ../../mod/admin.php:685 -#, php-format -msgid "User '%s' blocked" -msgstr "Utente '%s' bloccato" - -#: ../../mod/admin.php:749 ../../mod/admin.php:761 -msgid "Users" -msgstr "Utenti" - -#: ../../mod/admin.php:751 ../../mod/admin.php:885 -msgid "select all" -msgstr "seleziona tutti" - -#: ../../mod/admin.php:752 -msgid "User registrations waiting for confirm" -msgstr "Richieste di registrazione in attesa di conferma" - -#: ../../mod/admin.php:753 -msgid "Request date" -msgstr "Data richiesta" - -#: ../../mod/admin.php:754 -msgid "No registrations." -msgstr "Nessuna registrazione." - -#: ../../mod/admin.php:755 -msgid "Approve" -msgstr "Approva" - -#: ../../mod/admin.php:756 -msgid "Deny" -msgstr "Nega" - -#: ../../mod/admin.php:758 ../../mod/connedit.php:372 -#: ../../mod/connedit.php:515 -msgid "Block" -msgstr "Blocca" - -#: ../../mod/admin.php:759 ../../mod/connedit.php:372 -#: ../../mod/connedit.php:515 -msgid "Unblock" -msgstr "Sblocca" - -#: ../../mod/admin.php:762 -msgid "Register date" -msgstr "Data registrazione" - -#: ../../mod/admin.php:762 -msgid "Last login" -msgstr "Ultimo accesso" - -#: ../../mod/admin.php:762 -msgid "Expires" -msgstr "Con scadenza" - -#: ../../mod/admin.php:762 -msgid "Service Class" -msgstr "Service Class" - -#: ../../mod/admin.php:764 +#: ../../mod/suggest.php:35 msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Gli utenti selezionati saranno eliminati!\\n\\nTutto quello che gli utenti hanno pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore." -#: ../../mod/admin.php:765 +#: ../../mod/network.php:79 +msgid "No such group" +msgstr "Impossibile trovare l'insieme" + +#: ../../mod/network.php:119 +msgid "Search Results For:" +msgstr "Cerca risultati con:" + +#: ../../mod/network.php:173 +msgid "Collection is empty" +msgstr "L'insieme di canali è vuoto" + +#: ../../mod/network.php:181 +msgid "Collection: " +msgstr "Insieme:" + +#: ../../mod/network.php:194 +msgid "Connection: " +msgstr "Connessione:" + +#: ../../mod/network.php:197 +msgid "Invalid connection." +msgstr "Connessione non valida." + +#: ../../mod/siteinfo.php:57 +#, php-format +msgid "Version %s" +msgstr "Versione %s" + +#: ../../mod/siteinfo.php:76 +msgid "Installed plugins/addons/apps:" +msgstr "App e componenti aggiuntivi instalati:" + +#: ../../mod/siteinfo.php:89 +msgid "No installed plugins/addons/apps" +msgstr "Nessuna app o componente aggiuntivo installato" + +#: ../../mod/siteinfo.php:97 +msgid "Red" +msgstr "Red" + +#: ../../mod/siteinfo.php:98 msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "L'utente {0} sarà eliminato!\\n\\nTutto quello che ha pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?" +"This is a hub of the Red Matrix - a global cooperative network of " +"decentralised privacy enhanced websites." +msgstr "Questo è un hub di Red Matrix - una rete cooperativa e decentralizzata di siti con elevato livello di privacy. " -#: ../../mod/admin.php:797 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channelss censored/uncensored" -msgstr[0] "Censura modificata per %s canale" -msgstr[1] "Censura modificata per %s canali" +#: ../../mod/siteinfo.php:101 +msgid "Running at web location" +msgstr "In esecuzione sull'indirizzo web" -#: ../../mod/admin.php:804 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s canale è stato rimosso" -msgstr[1] "%s canali sono stati rimossi" - -#: ../../mod/admin.php:823 -msgid "Channel not found" -msgstr "Canale non trovato" - -#: ../../mod/admin.php:834 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Il canale '%s' è stato rimosso" - -#: ../../mod/admin.php:844 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Rimossa la censura dal canale '%s'" - -#: ../../mod/admin.php:844 -#, php-format -msgid "Channel '%s' censored" -msgstr "Applicata una censura al canale '%s'" - -#: ../../mod/admin.php:887 -msgid "Censor" -msgstr "Applica una censura" - -#: ../../mod/admin.php:888 -msgid "Uncensor" -msgstr "Rimuovi la censura" - -#: ../../mod/admin.php:891 -msgid "UID" -msgstr "UID" - -#: ../../mod/admin.php:891 ../../mod/settings.php:517 -#: ../../mod/settings.php:543 -msgid "Name" -msgstr "Nome" - -#: ../../mod/admin.php:891 ../../mod/profiles.php:337 -msgid "Address" -msgstr "Indirizzo" - -#: ../../mod/admin.php:893 +#: ../../mod/siteinfo.php:102 msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" +"Please visit GetZot.com to learn more " +"about the Red Matrix." +msgstr "Visita GetZot.com per scoprire il progetto Red Matrix." -#: ../../mod/admin.php:894 +#: ../../mod/siteinfo.php:103 +msgid "Bug reports and issues: please visit" +msgstr "Per segnalare bug e problemi: visita" + +#: ../../mod/siteinfo.php:106 msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com" -#: ../../mod/admin.php:933 +#: ../../mod/siteinfo.php:108 +msgid "Site Administrators" +msgstr "Amministratori del sito" + +#: ../../mod/bookmarks.php:38 +msgid "Bookmark added" +msgstr "Segnalibro aggiunto" + +#: ../../mod/bookmarks.php:58 +msgid "My Bookmarks" +msgstr "I miei segnalibri" + +#: ../../mod/bookmarks.php:69 +msgid "My Connections Bookmarks" +msgstr "I segnalibri dei miei contatti" + +#: ../../mod/channel.php:25 ../../mod/chat.php:19 +msgid "You must be logged in to see this page." +msgstr "Devi aver effettuato l'accesso per vedere questa pagina." + +#: ../../mod/channel.php:86 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." + +#: ../../mod/pdledit.php:13 +msgid "Layout updated." +msgstr "Layout aggiornato." + +#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +msgid "Edit System Page Description" +msgstr "Modifica i layout di sistema" + +#: ../../mod/pdledit.php:48 +msgid "Layout not found." +msgstr "Layout non trovato." + +#: ../../mod/pdledit.php:54 +msgid "Module Name:" +msgstr "Nome del modulo:" + +#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59 +msgid "Layout Help" +msgstr "Guida al layout" + +#: ../../mod/oexchange.php:23 +msgid "Unable to find your hub." +msgstr "Impossibile raggiungere il tuo hub." + +#: ../../mod/oexchange.php:37 +msgid "Post successful." +msgstr "Inviato!" + +#: ../../mod/subthread.php:103 #, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s non attivo." +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s sta seguendo %3$s di %2$s" -#: ../../mod/admin.php:937 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s attivo." +#: ../../mod/chanview.php:93 +msgid "toggle full screen mode" +msgstr "attiva/disattiva schermo intero" -#: ../../mod/admin.php:947 ../../mod/admin.php:1149 -msgid "Disable" -msgstr "Disattiva" +#: ../../mod/zfinger.php:23 +msgid "invalid target signature" +msgstr "la firma riscontrata non è valida" -#: ../../mod/admin.php:949 ../../mod/admin.php:1151 -msgid "Enable" -msgstr "Attiva" +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." +msgstr "Impossibile creare la sorgente. Nessun canale selezionato." -#: ../../mod/admin.php:975 ../../mod/admin.php:1180 -msgid "Toggle" -msgstr "Attiva/disattiva" +#: ../../mod/sources.php:45 +msgid "Source created." +msgstr "Sorgente creata." -#: ../../mod/admin.php:983 ../../mod/admin.php:1190 -msgid "Author: " -msgstr "Autore:" +#: ../../mod/sources.php:57 +msgid "Source updated." +msgstr "Sorgente aggiornata." -#: ../../mod/admin.php:984 ../../mod/admin.php:1191 -msgid "Maintainer: " -msgstr "Gestore:" +#: ../../mod/sources.php:82 +msgid "*" +msgstr "*" -#: ../../mod/admin.php:1113 -msgid "No themes found." -msgstr "Nessun tema trovato." +#: ../../mod/sources.php:89 +msgid "Manage remote sources of content for your channel." +msgstr "Gestisci le sorgenti dei contenuti del tuo canale." -#: ../../mod/admin.php:1172 -msgid "Screenshot" -msgstr "Istantanea dello schermo" +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" +msgstr "Nuova sorgente" -#: ../../mod/admin.php:1220 -msgid "[Experimental]" -msgstr "[Sperimentale]" - -#: ../../mod/admin.php:1221 -msgid "[Unsupported]" -msgstr "[Non supportato]" - -#: ../../mod/admin.php:1248 -msgid "Log settings updated." -msgstr "Impostazioni di log aggiornate." - -#: ../../mod/admin.php:1304 -msgid "Clear" -msgstr "Pulisci" - -#: ../../mod/admin.php:1310 -msgid "Debugging" -msgstr "Debugging" - -#: ../../mod/admin.php:1311 -msgid "Log file" -msgstr "File di log" - -#: ../../mod/admin.php:1311 +#: ../../mod/sources.php:101 ../../mod/sources.php:133 msgid "" -"Must be writable by web server. Relative to your Red top-level directory." -msgstr "Deve essere scrivibile dal web server. È relativa alla cartella dove è installato Red." +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importa nel tuo canale tutti o una parte dei contenuti dal canale seguente." -#: ../../mod/admin.php:1312 -msgid "Log level" -msgstr "Livello di log" +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Only import content with these words (one per line)" +msgstr "Importa solo i contenuti che hanno queste parole (una per riga)" -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "Poke/Prod" +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Leave blank to import all public content" +msgstr "Lascia vuoto per importare tutti i contenuti pubblici" -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "Manda un poke, un prod o altro" +#: ../../mod/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." +msgstr "Sorgente non trovata." -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Destinatario" +#: ../../mod/sources.php:130 +msgid "Edit Source" +msgstr "Modifica la sorgente" -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "Scegli cosa vuoi inviare al destinatario" +<<<<<<< HEAD +#: ../../mod/sources.php:131 +msgid "Delete Source" +msgstr "Elimina la sorgente" -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "Rendi privato questo articolo" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autorizza la app" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Torna alla app e inserisci questo codice di sicurezza:" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Accedi al sito per continuare." - -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?" - -#: ../../mod/post.php:226 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "L'autenticazione remota non è disponibile. Hai accesso solamente a questo sito. Puoi provare ad uscire per tentare di nuovo." - -#: ../../mod/post.php:257 ../../mod/openid.php:72 ../../mod/openid.php:178 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Ciao %s. La tua autenticazione da remoto è avvenuta con successo." +#: ../../mod/sources.php:158 +msgid "Source removed" +msgstr "Sorgente eliminata" +#: ../../mod/sources.php:160 +msgid "Unable to remove source." +msgstr "Impossibile rimuovere la sorgente." +======= #: ../../mod/attach.php:9 msgid "Item not available." msgstr "Elemento non disponibile." +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb -#: ../../mod/probe.php:23 ../../mod/probe.php:29 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "La chiamata all'URL restituisce questo errore: %1$s" +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." +msgstr "Indentificativo del profilo non valido." -#: ../../mod/block.php:27 ../../mod/page.php:35 -msgid "Invalid item." -msgstr "Elemento non valido." +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" +msgstr "Modifica la visibilità del profilo" -#: ../../mod/block.php:39 ../../mod/chanview.php:77 ../../mod/page.php:47 -#: ../../mod/home.php:50 ../../mod/wall_upload.php:28 -msgid "Channel not found." -msgstr "Canale non trovato." +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." +msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." +<<<<<<< HEAD +#: ../../mod/profperm.php:123 +msgid "Visible To" +msgstr "Visibile a" + +#: ../../mod/profperm.php:139 ../../mod/connections.php:278 +msgid "All Connections" +msgstr "Tutti i contatti" +======= #: ../../mod/block.php:75 ../../mod/page.php:83 ../../mod/display.php:100 #: ../../mod/help.php:72 ../../index.php:237 msgid "Page not found." msgstr "Pagina non trovata." +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../mod/profile_photo.php:108 msgid "Image uploaded but image cropping failed." @@ -4242,6 +5408,13 @@ msgstr "Il ridimensionamento del'immagine [%s] è fallito." msgid "Block Name" msgstr "Nome del riquadro" +<<<<<<< HEAD +#: ../../mod/post.php:226 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please" +" logout and retry." +msgstr "L'autenticazione remota non è disponibile. Hai accesso solamente a questo sito. Puoi provare ad uscire per tentare di nuovo." +======= #: ../../mod/profiles.php:18 ../../mod/profiles.php:138 #: ../../mod/profiles.php:168 ../../mod/profiles.php:463 msgid "Profile not found." @@ -4282,662 +5455,107 @@ msgstr "Lavoro/impiego" #: ../../mod/profiles.php:313 msgid "Religion" msgstr "Religione" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb -#: ../../mod/profiles.php:317 -msgid "Political Views" -msgstr "Orientamento politico" - -#: ../../mod/profiles.php:321 -msgid "Gender" -msgstr "Sesso" - -#: ../../mod/profiles.php:325 -msgid "Sexual Preference" -msgstr "Preferenze sessuali" - -#: ../../mod/profiles.php:329 -msgid "Homepage" -msgstr "Home page" - -#: ../../mod/profiles.php:333 -msgid "Interests" -msgstr "Interessi" - -#: ../../mod/profiles.php:344 ../../mod/pubsites.php:25 -msgid "Location" -msgstr "Luogo attuale" - -#: ../../mod/profiles.php:427 -msgid "Profile updated." -msgstr "Profilo aggiornato." - -#: ../../mod/profiles.php:482 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?" - -#: ../../mod/profiles.php:505 -msgid "Edit Profile Details" -msgstr "Modifica i dettagli del profilo" - -#: ../../mod/profiles.php:507 -msgid "View this profile" -msgstr "Guarda questo profilo" - -#: ../../mod/profiles.php:508 -msgid "Change Profile Photo" -msgstr "Cambia la foto del profilo" - -#: ../../mod/profiles.php:509 -msgid "Create a new profile using these settings" -msgstr "Crea un nuovo profilo usando queste impostazioni" - -#: ../../mod/profiles.php:510 -msgid "Clone this profile" -msgstr "Clona questo profilo" - -#: ../../mod/profiles.php:511 -msgid "Delete this profile" -msgstr "Elimina questo profilo" - -#: ../../mod/profiles.php:512 -msgid "Profile Name:" -msgstr "Nome del profilo:" - -#: ../../mod/profiles.php:513 -msgid "Your Full Name:" -msgstr "Il tuo nome completo:" - -#: ../../mod/profiles.php:514 -msgid "Title/Description:" -msgstr "Titolo/descrizione:" - -#: ../../mod/profiles.php:515 -msgid "Your Gender:" -msgstr "Sesso:" - -#: ../../mod/profiles.php:516 +#: ../../mod/post.php:257 ../../mod/openid.php:72 ../../mod/openid.php:178 #, php-format -msgid "Birthday (%s):" -msgstr "Compleanno (%s):" +msgid "Welcome %s. Remote authentication successful." +msgstr "Ciao %s. La tua autenticazione da remoto è avvenuta con successo." -#: ../../mod/profiles.php:517 -msgid "Street Address:" -msgstr "Indirizzo (via/piazza):" +#: ../../mod/filestorage.php:68 +msgid "Permission Denied." +msgstr "Permesso negato." -#: ../../mod/profiles.php:518 -msgid "Locality/City:" -msgstr "Località:" +#: ../../mod/filestorage.php:85 +msgid "File not found." +msgstr "File non trovato." -#: ../../mod/profiles.php:519 -msgid "Postal/Zip Code:" -msgstr "CAP:" +#: ../../mod/filestorage.php:121 +msgid "Edit file permissions" +msgstr "Modifica i permessi del file" -#: ../../mod/profiles.php:520 -msgid "Country:" -msgstr "Nazione:" +#: ../../mod/filestorage.php:129 +msgid "Set/edit permissions" +msgstr "Modifica i permessi" -#: ../../mod/profiles.php:521 -msgid "Region/State:" -msgstr "Regione/stato:" +#: ../../mod/filestorage.php:130 +msgid "Include all files and sub folders" +msgstr "Includi tutti i file e le sottocartelle" -#: ../../mod/profiles.php:522 -msgid " Marital Status:" -msgstr " Stato sentimentale:" +#: ../../mod/filestorage.php:131 +msgid "Return to file list" +msgstr "Torna all'elenco dei file" -#: ../../mod/profiles.php:523 -msgid "Who: (if applicable)" -msgstr "Con chi: (se possibile)" +#: ../../mod/filestorage.php:133 +msgid "Copy/paste this code to attach file to a post" +msgstr "Copia/incolla questo codice per far comparire il file in un articolo" -#: ../../mod/profiles.php:524 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Per esempio: cathy123, Cathy Williams, cathy@example.com" +#: ../../mod/filestorage.php:134 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Copia/incolla questo indirizzo in una pagina web per avere un link al file" -#: ../../mod/profiles.php:525 -msgid "Since [date]:" -msgstr "dal [data]:" +#: ../../mod/filestorage.php:171 +msgid "Download" +msgstr "Scaricamento dati" -#: ../../mod/profiles.php:527 -msgid "Homepage URL:" -msgstr "Indirizzo home page:" +#: ../../mod/filestorage.php:177 +msgid "Used: " +msgstr "Usato:" -#: ../../mod/profiles.php:530 -msgid "Religious Views:" -msgstr "Orientamento religioso:" +#: ../../mod/filestorage.php:178 +msgid "[directory]" +msgstr "[cartella]" -#: ../../mod/profiles.php:531 -msgid "Keywords:" -msgstr "Parole chiave, tag:" +#: ../../mod/filestorage.php:180 +msgid "Limit: " +msgstr "Limite:" -#: ../../mod/profiles.php:534 -msgid "Example: fishing photography software" -msgstr "Per esempio: pesca fotografia programmazione" +#: ../../mod/lockview.php:30 ../../mod/lockview.php:36 +msgid "Remote privacy information not available." +msgstr "Le informazioni remote sulla privacy non sono disponibili." -#: ../../mod/profiles.php:535 -msgid "Used in directory listings" -msgstr "Visibile nell'elenco pubblico di canali" +#: ../../mod/lockview.php:45 +msgid "Visible to:" +msgstr "Visibile a:" -#: ../../mod/profiles.php:536 -msgid "Tell us about yourself..." -msgstr "Raccontaci di te..." +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." +msgstr "Contatto non trovato." -#: ../../mod/profiles.php:537 -msgid "Hobbies/Interests" -msgstr "Hobby/interessi" +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Suggerimento di amicizia inviato." -#: ../../mod/profiles.php:538 -msgid "Contact information and Social Networks" -msgstr "Contatti personali e i tuoi social network" +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Suggerisci amici" -#: ../../mod/profiles.php:539 -msgid "My other channels" -msgstr "I miei altri canali" - -#: ../../mod/profiles.php:540 -msgid "Musical interests" -msgstr "Interessi musicali" - -#: ../../mod/profiles.php:541 -msgid "Books, literature" -msgstr "Libri, letteratura" - -#: ../../mod/profiles.php:542 -msgid "Television" -msgstr "Televisione" - -#: ../../mod/profiles.php:543 -msgid "Film/dance/culture/entertainment" -msgstr "Film/danza/cultura/intrattenimento" - -#: ../../mod/profiles.php:544 -msgid "Love/romance" -msgstr "Amore" - -#: ../../mod/profiles.php:545 -msgid "Work/employment" -msgstr "Lavoro/impiego" - -#: ../../mod/profiles.php:546 -msgid "School/education" -msgstr "Scuola/educazione" - -#: ../../mod/profiles.php:551 -msgid "" -"This is your public profile.
    It may " -"be visible to anybody using the internet." -msgstr "Questo è il tuo profilo publico.
    Potrebbe essere visto da chiunque attraverso internet." - -#: ../../mod/profiles.php:561 ../../mod/directory.php:143 -#: ../../mod/dirprofile.php:92 -msgid "Age: " -msgstr "Età:" - -#: ../../mod/profiles.php:600 -msgid "Edit/Manage Profiles" -msgstr "Modifica/gestisci i profili" - -#: ../../mod/profiles.php:601 -msgid "Add profile things" -msgstr "Aggiungi oggetti al profilo" - -#: ../../mod/profiles.php:602 -msgid "Include desirable objects in your profile" -msgstr "Aggiungi oggetti interessanti al tuo profilo" - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Segnalibro aggiunto" - -#: ../../mod/bookmarks.php:58 -msgid "My Bookmarks" -msgstr "I miei segnalibri" - -#: ../../mod/bookmarks.php:69 -msgid "My Connections Bookmarks" -msgstr "I segnalibri dei miei contatti" - -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Indentificativo del profilo non valido." - -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Modifica la visibilità del profilo" - -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." - -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Visibile a" - -#: ../../mod/profperm.php:139 ../../mod/connections.php:278 -msgid "All Connections" -msgstr "Tutti i contatti" - -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "Siti pubblici" - -#: ../../mod/pubsites.php:19 -msgid "" -"The listed sites allow public registration into the Red Matrix. All sites in" -" the matrix are interlinked so membership on any of them conveys membership " -"in the matrix as a whole. Some sites may require subscription or provide " -"tiered service plans. The provider links may provide " -"additional details." -msgstr "Gli indirizzi elencati permettono la registrazione su Red Matrix. Tutti i siti di questa rete sono interconnessi, quindi essere registrati su uno è come essere registrati ovunque. Alcuni potrebbero richiedere un'iscrizione a pagamento o prevedere tipi diversi di abbonamento. Potrai trovare maggiori informazioni al riguardo visitando ciascun sito." - -#: ../../mod/pubsites.php:25 -msgid "Site URL" -msgstr "URL del sito" - -#: ../../mod/pubsites.php:25 -msgid "Access Type" -msgstr "Tipo di accesso" - -#: ../../mod/pubsites.php:25 -msgid "Registration Policy" -msgstr "Politica di registrazione" - -#: ../../mod/channel.php:25 ../../mod/chat.php:19 -msgid "You must be logged in to see this page." -msgstr "Devi aver effettuato l'accesso per vedere questa pagina." - -#: ../../mod/channel.php:86 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." - -#: ../../mod/chanview.php:93 -msgid "toggle full screen mode" -msgstr "attiva/disattiva schermo intero" - -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "Scegli una cartella di segnalibri" - -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Salva segnalibro" - -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "URL del segnalibro" - -#: ../../mod/rbmark.php:95 -msgid "Description" -msgstr "Descrizione" - -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "O inserisci il nome di una nuova cartella di segnalibri" - -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "Chat non trovata" - -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "Lascia la chat" - -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Elimina questa chat" - -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "Non sono presente al momento" - -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Sono online" - -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Aggiungi chat ai segnalibri" - -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Nuova chat" - -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Nome della chat" - -#: ../../mod/chat.php:225 +#: ../../mod/fsuggest.php:99 #, php-format -msgid "%1$s's Chatrooms" -msgstr "Le chat di %1$s" +msgid "Suggest a friend for %s" +msgstr "Suggerisci un amico a %s" -#: ../../mod/register.php:43 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!" - -#: ../../mod/register.php:49 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio." - -#: ../../mod/register.php:77 -msgid "Passwords do not match." -msgstr "Le password non corrispondono." - -#: ../../mod/register.php:105 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata." - -#: ../../mod/register.php:111 -msgid "Your registration is pending approval by the site owner." -msgstr "La tua richiesta è in attesa di approvazione da parte dell'amministratore del sito." - -#: ../../mod/register.php:114 -msgid "Your registration can not be processed." -msgstr "La tua registrazione non puo' essere acquisita." - -#: ../../mod/register.php:147 -msgid "Registration on this site/hub is by approval only." -msgstr "La registrazione su questo sito è soggetta ad approvazione." - -#: ../../mod/register.php:148 -msgid "Register at another affiliated site/hub" -msgstr "Registrati su un altro server affiliato" - -#: ../../mod/register.php:156 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." - -#: ../../mod/register.php:167 -msgid "Terms of Service" -msgstr "Condizioni d'Uso" - -#: ../../mod/register.php:173 +#: ../../mod/tagger.php:98 #, php-format -msgid "I accept the %s for this website" -msgstr "Accetto le %s di questo sito" +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s ha taggato %3$s di %2$s con %4$s" -#: ../../mod/register.php:175 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Ho più di 13 anni e accetto le %s di questo sito" - -#: ../../mod/register.php:194 -msgid "Membership on this site is by invitation only." -msgstr "Per registrarsi su questo sito è necessario un invito." - -#: ../../mod/register.php:195 -msgid "Please enter your invitation code" -msgstr "Inserisci il codice dell'invito" - -#: ../../mod/register.php:198 -msgid "Your email address" -msgstr "Il tuo indirizzo email" - -#: ../../mod/register.php:199 -msgid "Choose a password" -msgstr "Scegli una password" - -#: ../../mod/register.php:200 -msgid "Please re-enter your password" -msgstr "Ripeti la password per verifica" - -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Assente" - -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "Online" - -#: ../../mod/regmod.php:12 -msgid "Please login." -msgstr "Accedi." - -#: ../../mod/cloud.php:112 -msgid "Red Matrix - Guests: Username: {your email address}, Password: +++" -msgstr "Accesso a Red Matrix. Inserisci l'email con cui sei registrato e la password." - -#: ../../mod/removeme.php:49 -msgid "Remove This Channel" -msgstr "Elimina questo canale" - -#: ../../mod/removeme.php:50 -msgid "" -"This will completely remove this channel from the network. Once this has " -"been done it is not recoverable." -msgstr "Questo comando rimuoverà completamente il canale che stai usando. Una volta fatto non sarà più possibile ripristinarlo." - -#: ../../mod/removeme.php:51 -msgid "Please enter your password for verification:" -msgstr "Inserisci la tua password per verifica:" - -#: ../../mod/removeme.php:52 -msgid "Remove this channel and all its clones from the network" -msgstr "Rimuovi questo canale e tutti i suoi cloni dalla rete" - -#: ../../mod/removeme.php:52 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni" - -#: ../../mod/removeme.php:53 -msgid "Remove Channel" -msgstr "Elimina questo canale" - -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Nessun canale." - -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Contatti in comune" - -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Nessun contatto in comune." - -#: ../../mod/rmagic.php:38 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Non è possibile effettuare login con l'OpenID che hai fornito. Per favore controlla che sia scritto correttamente." - -#: ../../mod/rmagic.php:38 -msgid "The error message was:" -msgstr "Messaggio di errore ricevuto:" - -#: ../../mod/rmagic.php:42 -msgid "Authentication failed." -msgstr "Autenticazione fallita." - -#: ../../mod/rmagic.php:78 -msgid "Remote Authentication" -msgstr "Autenticazione a distanza" - -#: ../../mod/rmagic.php:79 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)" - -#: ../../mod/rmagic.php:80 -msgid "Authenticate" -msgstr "Autenticazione" - -#: ../../mod/connect.php:55 ../../mod/connect.php:103 -msgid "Continue" -msgstr "Continua" - -#: ../../mod/connect.php:84 -msgid "Premium Channel Setup" -msgstr "Canale premium - installazione" - -#: ../../mod/connect.php:86 -msgid "Enable premium channel connection restrictions" -msgstr "Abilita le restrizioni del canale premium" - -#: ../../mod/connect.php:87 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida o il sistema di pagamento ecc." - -#: ../../mod/connect.php:89 ../../mod/connect.php:109 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:" - -#: ../../mod/connect.php:90 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Il testo seguente comparirà a chi vorrà connettersi:" - -#: ../../mod/connect.php:91 ../../mod/connect.php:112 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina." - -#: ../../mod/connect.php:100 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Il gestore del canale non ha fornito istruzioni specifiche)" - -#: ../../mod/connect.php:108 -msgid "Restricted or Premium Channel" -msgstr "Canale premium - con restrizioni" - -#: ../../mod/network.php:79 -msgid "No such group" -msgstr "Impossibile trovare l'insieme" - -#: ../../mod/network.php:119 -msgid "Search Results For:" -msgstr "Cerca risultati con:" - -#: ../../mod/network.php:173 -msgid "Collection is empty" -msgstr "L'insieme di canali è vuoto" - -#: ../../mod/network.php:181 -msgid "Collection: " -msgstr "Insieme:" - -#: ../../mod/network.php:194 -msgid "Connection: " -msgstr "Connessione:" - -#: ../../mod/network.php:197 -msgid "Invalid connection." -msgstr "Connessione non valida." - -#: ../../mod/connections.php:37 ../../mod/connedit.php:64 +#: ../../mod/connedit.php:64 ../../mod/connections.php:37 msgid "Could not access contact record." msgstr "Non è possibile accedere alle informazioni sul contatto." -#: ../../mod/connections.php:51 ../../mod/connedit.php:78 +#: ../../mod/connedit.php:78 ../../mod/connections.php:51 msgid "Could not locate selected profile." msgstr "Non riesco a trovare il profilo selezionato." -#: ../../mod/connections.php:94 ../../mod/connedit.php:131 +#: ../../mod/connedit.php:131 ../../mod/connections.php:94 msgid "Connection updated." msgstr "Contatto aggiornato." -#: ../../mod/connections.php:96 ../../mod/connedit.php:133 +#: ../../mod/connedit.php:133 ../../mod/connections.php:96 msgid "Failed to update connection record." msgstr "Impossibile aggiornare le informazioni del contatto." -#: ../../mod/connections.php:191 ../../mod/connections.php:291 -msgid "Blocked" -msgstr "Bloccati" - -#: ../../mod/connections.php:196 ../../mod/connections.php:298 -msgid "Ignored" -msgstr "Ignorati" - -#: ../../mod/connections.php:201 ../../mod/connections.php:312 -msgid "Hidden" -msgstr "Nascosti" - -#: ../../mod/connections.php:206 ../../mod/connections.php:305 -msgid "Archived" -msgstr "Archiviati" - -#: ../../mod/connections.php:230 ../../mod/connections.php:244 -msgid "All" -msgstr "Tutti" - -#: ../../mod/connections.php:239 ../../mod/connections.php:319 -msgid "Unconnected" -msgstr "Non connesso" - -#: ../../mod/connections.php:269 -msgid "Suggest new connections" -msgstr "Suggerisci nuovi contatti" - -#: ../../mod/connections.php:272 -msgid "New Connections" -msgstr "Nuovi contatti" - -#: ../../mod/connections.php:275 -msgid "Show pending (new) connections" -msgstr "Richieste di contatto in attesa" - -#: ../../mod/connections.php:281 -msgid "Show all connections" -msgstr "Mostra tutti i contatti" - -#: ../../mod/connections.php:284 -msgid "Unblocked" -msgstr "Non bloccati" - -#: ../../mod/connections.php:287 -msgid "Only show unblocked connections" -msgstr "Mostra solo i contatti non bloccati" - -#: ../../mod/connections.php:294 -msgid "Only show blocked connections" -msgstr "Mostra solo i contatti bloccati" - -#: ../../mod/connections.php:301 -msgid "Only show ignored connections" -msgstr "Mostra solo i contatti ignorati" - -#: ../../mod/connections.php:308 -msgid "Only show archived connections" -msgstr "Mostra solo i contatti archiviati" - -#: ../../mod/connections.php:315 -msgid "Only show hidden connections" -msgstr "Mostra solo i contatti nascosti" - -#: ../../mod/connections.php:322 -msgid "Only show one-way connections" -msgstr "Mostra solo i contatti non ricambiati" - -#: ../../mod/connections.php:367 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../mod/connections.php:368 -msgid "Edit contact" -msgstr "Modifica il contatto" - -#: ../../mod/connections.php:389 -msgid "Search your connections" -msgstr "Cerca tra i contatti" - -#: ../../mod/connections.php:390 -msgid "Finding: " -msgstr "Ricerca: " - -#: ../../mod/rpost.php:86 ../../mod/editpost.php:42 -msgid "Edit post" -msgstr "Modifica articolo" - #: ../../mod/connedit.php:243 msgid "Could not access address book record." msgstr "Impossibile accedere alle informazioni della rubrica." @@ -5017,6 +5635,16 @@ msgstr "Attività recenti" msgid "View recent posts and comments" msgstr "Leggi i post recenti e i commenti" +#: ../../mod/connedit.php:372 ../../mod/connedit.php:515 +#: ../../mod/admin.php:759 +msgid "Unblock" +msgstr "Sblocca" + +#: ../../mod/connedit.php:372 ../../mod/connedit.php:515 +#: ../../mod/admin.php:758 +msgid "Block" +msgstr "Blocca" + #: ../../mod/connedit.php:375 msgid "Block or Unblock this connection" msgstr "Per bloccare o meno questo contatto" @@ -5025,14 +5653,15 @@ msgstr "Per bloccare o meno questo contatto" msgid "Unignore" msgstr "Non ignorare" -#: ../../mod/connedit.php:379 ../../mod/connedit.php:516 -#: ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "Ignora" - +<<<<<<< HEAD #: ../../mod/connedit.php:382 msgid "Ignore or Unignore this connection" msgstr "Per ignorare o meno questo contatto" +======= +#: ../../mod/profperm.php:139 ../../mod/connections.php:278 +msgid "All Connections" +msgstr "Tutti i contatti" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../mod/connedit.php:385 msgid "Unarchive" @@ -5062,10 +5691,6 @@ msgstr "Per nascondere o meno questo contatto" msgid "Delete this connection" msgstr "Elimina questo contatto" -#: ../../mod/connedit.php:434 -msgid "Unknown" -msgstr "Sconosciuto" - #: ../../mod/connedit.php:444 ../../mod/connedit.php:473 msgid "Approve this connection" msgstr "Approva questo contatto" @@ -5094,6 +5719,7 @@ msgstr "Hai ricevuto da un canale una richiesta di entrare in contatto, se prose msgid "Slide to adjust your degree of friendship" msgstr "Trascina per restringere il grado di amicizia da mostrare" +<<<<<<< HEAD #: ../../mod/connedit.php:472 msgid "inherited" msgstr "derivato" @@ -5130,6 +5756,44 @@ msgstr "Modifica le informazioni sul contatto" #: ../../mod/connedit.php:482 msgid "Their Settings" msgstr "Permessi concessi a te" +======= +#: ../../mod/chat.php:167 +msgid "Room not found" +msgstr "Chat non trovata" + +#: ../../mod/chat.php:178 +msgid "Leave Room" +msgstr "Lascia la chat" + +#: ../../mod/chat.php:179 +msgid "Delete This Room" +msgstr "Elimina questa chat" + +#: ../../mod/chat.php:180 +msgid "I am away right now" +msgstr "Non sono presente al momento" + +#: ../../mod/chat.php:181 +msgid "I am online" +msgstr "Sono online" + +#: ../../mod/chat.php:183 +msgid "Bookmark this room" +msgstr "Aggiungi chat ai segnalibri" + +#: ../../mod/chat.php:207 ../../mod/chat.php:229 +msgid "New Chatroom" +msgstr "Nuova chat" + +#: ../../mod/chat.php:208 +msgid "Chatroom Name" +msgstr "Nome della chat" + +#: ../../mod/chat.php:225 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Le chat di %1$s" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../mod/connedit.php:483 msgid "My Settings" @@ -5241,99 +5905,48 @@ msgid "" "Replies/likes to your public posts may still be visible" msgstr "Le risposte ai tuoi articoli pubblici potrebbero restare comunque visibili" -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Impossibile trovare delegati per questa pagina." - -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "Gestione delegati per la pagina" - -#: ../../mod/delegate.php:123 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente." - -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "Gestori attuali della pagina" - -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "Delegati attuali della pagina" - -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "Delegati potenziali" - -#: ../../mod/delegate.php:130 ../../mod/tagrm.php:93 ../../mod/photos.php:908 -msgid "Remove" -msgstr "Rimuovi" - -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Aggiungi" - -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Nessun risultato." - -#: ../../mod/search.php:13 ../../mod/directory.php:15 -#: ../../mod/dirprofile.php:9 ../../mod/display.php:9 -#: ../../mod/viewconnections.php:17 ../../mod/photos.php:443 -msgid "Public access denied." -msgstr "Accesso pubblico negato." - -#: ../../mod/directory.php:146 ../../mod/dirprofile.php:95 -msgid "Gender: " -msgstr "Sesso:" - -#: ../../mod/directory.php:207 -msgid "Finding:" -msgstr "Ricerca:" - -#: ../../mod/directory.php:215 -msgid "next page" -msgstr "pagina succ." - -#: ../../mod/directory.php:215 -msgid "previous page" -msgstr "pagina prec." - -#: ../../mod/directory.php:222 -msgid "No entries (some entries may be hidden)." -msgstr "Nessun risultato (qualcosa potrebbe essere nascosto)." - -#: ../../mod/dirprofile.php:108 -msgid "Status: " -msgstr "Stato:" - -#: ../../mod/dirprofile.php:109 -msgid "Sexual Preference: " -msgstr "Preferenza sessuale:" - -#: ../../mod/dirprofile.php:111 -msgid "Homepage: " -msgstr "Homepage:" - -#: ../../mod/dirprofile.php:112 -msgid "Hometown: " -msgstr "Città dove vivo:" - -#: ../../mod/dirprofile.php:114 -msgid "About: " -msgstr "Informazioni:" - -#: ../../mod/dirprofile.php:162 -msgid "Keywords: " -msgstr "Parole chiave:" - #: ../../mod/dirsearch.php:21 msgid "This site is not a directory server" msgstr "Questo sito non fornisce l'elenco generale dei canali" +#: ../../mod/rmagic.php:38 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Non è possibile effettuare login con l'OpenID che hai fornito. Per favore controlla che sia scritto correttamente." + +#: ../../mod/rmagic.php:38 +msgid "The error message was:" +msgstr "Messaggio di errore ricevuto:" + +#: ../../mod/rmagic.php:42 +msgid "Authentication failed." +msgstr "Autenticazione fallita." + +#: ../../mod/rmagic.php:78 +msgid "Remote Authentication" +msgstr "Autenticazione a distanza" + +#: ../../mod/rmagic.php:79 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)" + +#: ../../mod/rmagic.php:80 +msgid "Authenticate" +msgstr "Autenticazione" + +#: ../../mod/attach.php:9 +msgid "Item not available." +msgstr "Elemento non disponibile." + +#: ../../mod/editpost.php:31 +msgid "Item is not editable" +msgstr "L'elemento non è modificabile" + +#: ../../mod/editpost.php:53 +msgid "Delete item?" +msgstr "Eliminare questo elemento?" + #: ../../mod/settings.php:71 msgid "Name is required" msgstr "Il nome è obbligatorio" @@ -5342,10 +5955,6 @@ msgstr "Il nome è obbligatorio" msgid "Key and Secret are required" msgstr "Chiave e Segreto sono richiesti" -#: ../../mod/settings.php:79 ../../mod/settings.php:541 -msgid "Update" -msgstr "Aggiorna" - #: ../../mod/settings.php:195 msgid "Passwords do not match. Password unchanged." msgstr "Le password non corrispondono. Password non cambiata." @@ -5378,11 +5987,17 @@ msgstr "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, msgid "Settings updated." msgstr "Impostazioni aggiornate." +<<<<<<< HEAD #: ../../mod/settings.php:514 ../../mod/settings.php:540 #: ../../mod/settings.php:576 msgid "Add application" msgstr "Aggiungi una app" +#: ../../mod/settings.php:517 ../../mod/settings.php:543 +#: ../../mod/admin.php:891 +msgid "Name" +msgstr "Nome" + #: ../../mod/settings.php:517 msgid "Name of application" msgstr "Nome dell'applicazione" @@ -5460,6 +6075,92 @@ msgstr "Nuova password:" #: ../../mod/settings.php:626 msgid "Confirm:" msgstr "Conferma:" +======= +#: ../../mod/connections.php:191 ../../mod/connections.php:291 +msgid "Blocked" +msgstr "Bloccati" + +#: ../../mod/connections.php:196 ../../mod/connections.php:298 +msgid "Ignored" +msgstr "Ignorati" + +#: ../../mod/connections.php:201 ../../mod/connections.php:312 +msgid "Hidden" +msgstr "Nascosti" + +#: ../../mod/connections.php:206 ../../mod/connections.php:305 +msgid "Archived" +msgstr "Archiviati" + +#: ../../mod/connections.php:230 ../../mod/connections.php:244 +msgid "All" +msgstr "Tutti" + +#: ../../mod/connections.php:239 ../../mod/connections.php:319 +msgid "Unconnected" +msgstr "Non connesso" + +#: ../../mod/connections.php:269 +msgid "Suggest new connections" +msgstr "Suggerisci nuovi contatti" + +#: ../../mod/connections.php:272 +msgid "New Connections" +msgstr "Nuovi contatti" + +#: ../../mod/connections.php:275 +msgid "Show pending (new) connections" +msgstr "Richieste di contatto in attesa" + +#: ../../mod/connections.php:281 +msgid "Show all connections" +msgstr "Mostra tutti i contatti" + +#: ../../mod/connections.php:284 +msgid "Unblocked" +msgstr "Non bloccati" + +#: ../../mod/connections.php:287 +msgid "Only show unblocked connections" +msgstr "Mostra solo i contatti non bloccati" + +#: ../../mod/connections.php:294 +msgid "Only show blocked connections" +msgstr "Mostra solo i contatti bloccati" + +#: ../../mod/connections.php:301 +msgid "Only show ignored connections" +msgstr "Mostra solo i contatti ignorati" + +#: ../../mod/connections.php:308 +msgid "Only show archived connections" +msgstr "Mostra solo i contatti archiviati" + +#: ../../mod/connections.php:315 +msgid "Only show hidden connections" +msgstr "Mostra solo i contatti nascosti" + +#: ../../mod/connections.php:322 +msgid "Only show one-way connections" +msgstr "Mostra solo i contatti non ricambiati" + +#: ../../mod/connections.php:367 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" + +#: ../../mod/connections.php:368 +msgid "Edit contact" +msgstr "Modifica il contatto" + +#: ../../mod/connections.php:389 +msgid "Search your connections" +msgstr "Cerca tra i contatti" + +#: ../../mod/connections.php:390 +msgid "Finding: " +msgstr "Ricerca: " +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../mod/settings.php:626 msgid "Leave password fields blank unless changing" @@ -5493,6 +6194,10 @@ msgstr "Funzionalità aggiuntive" msgid "Connector Settings" msgstr "Impostazioni del connettore" +#: ../../mod/settings.php:708 ../../mod/admin.php:389 +msgid "No special theme for mobile devices" +msgstr "Nessun tema per dispositivi mobili" + #: ../../mod/settings.php:749 msgid "Display Settings" msgstr "Impostazioni grafiche" @@ -6104,7 +6809,7 @@ msgstr "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da msgid "" "This can cause usability issues elsewhere (not just on your own site) so we " "must insist on this requirement." -msgstr "Ciò può creare gravi problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto." +msgstr "Ciò può creare problemi di usabilità molto gravi (non solo sul tuo sito), quindi dobbiamo insistere su questo punto." #: ../../mod/setup.php:574 msgid "" @@ -6146,138 +6851,6 @@ msgid "" "poller." msgstr "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling." -#: ../../mod/editblock.php:8 ../../mod/editblock.php:27 -#: ../../mod/editblock.php:53 ../../mod/editlayout.php:36 -#: ../../mod/editpost.php:20 ../../mod/editwebpage.php:32 -msgid "Item not found" -msgstr "Elemento non trovato" - -#: ../../mod/editblock.php:77 -msgid "Edit Block" -msgstr "Modifica il riquadro" - -#: ../../mod/editblock.php:87 -msgid "Delete block?" -msgstr "Vuoi eliminare questo riquadro?" - -#: ../../mod/editblock.php:115 ../../mod/editlayout.php:110 -#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:147 -msgid "Insert YouTube video" -msgstr "Inserisci video da YouTube" - -#: ../../mod/editblock.php:116 ../../mod/editlayout.php:111 -#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:148 -msgid "Insert Vorbis [.ogg] video" -msgstr "Inserisci video Vorbis [.ogg]" - -#: ../../mod/editblock.php:117 ../../mod/editlayout.php:112 -#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:149 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Inserisci audio Vorbis [.ogg]" - -#: ../../mod/editblock.php:153 -msgid "Delete Block" -msgstr "Elimina il riquadro" - -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "Layout aggiornato." - -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "Modifica i layout di sistema" - -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "Layout non trovato." - -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "Nome del modulo:" - -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59 -msgid "Layout Help" -msgstr "Guida al layout" - -#: ../../mod/editlayout.php:72 -msgid "Edit Layout" -msgstr "Modifica il layout" - -#: ../../mod/editlayout.php:82 -msgid "Delete layout?" -msgstr "Vuoi eliminare questo layout?" - -#: ../../mod/editlayout.php:146 -msgid "Delete Layout" -msgstr "Elimina il layout" - -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "L'elemento non è modificabile" - -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "Eliminare questo elemento?" - -#: ../../mod/editwebpage.php:106 -msgid "Edit Webpage" -msgstr "Modifica la pagina web" - -#: ../../mod/editwebpage.php:116 -msgid "Delete webpage?" -msgstr "Vuoi eliminare questa pagina web?" - -#: ../../mod/editwebpage.php:187 -msgid "Delete Webpage" -msgstr "Elimina la pagina web" - -#: ../../mod/siteinfo.php:57 -#, php-format -msgid "Version %s" -msgstr "Versione %s" - -#: ../../mod/siteinfo.php:76 -msgid "Installed plugins/addons/apps:" -msgstr "App e componenti aggiuntivi instalati:" - -#: ../../mod/siteinfo.php:89 -msgid "No installed plugins/addons/apps" -msgstr "Nessuna app o componente aggiuntivo installato" - -#: ../../mod/siteinfo.php:97 -msgid "Red" -msgstr "Red" - -#: ../../mod/siteinfo.php:98 -msgid "" -"This is a hub of the Red Matrix - a global cooperative network of " -"decentralised privacy enhanced websites." -msgstr "Questo è un hub di Red Matrix - una rete cooperativa e decentralizzata di siti con elevato livello di privacy. " - -#: ../../mod/siteinfo.php:101 -msgid "Running at web location" -msgstr "In esecuzione sull'indirizzo web" - -#: ../../mod/siteinfo.php:102 -msgid "" -"Please visit GetZot.com to learn more " -"about the Red Matrix." -msgstr "Visita GetZot.com per scoprire il progetto Red Matrix." - -#: ../../mod/siteinfo.php:103 -msgid "Bug reports and issues: please visit" -msgstr "Per segnalare bug e problemi: visita" - -#: ../../mod/siteinfo.php:106 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com" - -#: ../../mod/siteinfo.php:108 -msgid "Site Administrators" -msgstr "Amministratori del sito" - #: ../../mod/events.php:72 msgid "Event title and start time are required." msgstr "Sono necessari il titolo e l'ora d'inizio dell'evento." @@ -6315,7 +6888,8 @@ msgstr "Il formato è %s %s. L'inizio e il titolo sono obbligatori." msgid "Event Starts:" msgstr "Inizio:" -#: ../../mod/events.php:462 ../../mod/events.php:476 +#: ../../mod/events.php:462 ../../mod/events.php:476 ../../mod/appman.php:83 +#: ../../mod/appman.php:84 msgid "Required" msgstr "Obbligatorio" @@ -6343,840 +6917,6 @@ msgstr "Titolo:" msgid "Share this event" msgstr "Condividi questo evento" -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "Impossibile creare la sorgente. Nessun canale selezionato." - -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "Sorgente creata." - -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "Sorgente aggiornata." - -#: ../../mod/sources.php:82 -msgid "*" -msgstr "*" - -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "Gestisci le sorgenti dei contenuti del tuo canale." - -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "Nuova sorgente" - -#: ../../mod/sources.php:101 ../../mod/sources.php:133 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importa nel tuo canale tutti o una parte dei contenuti dal canale seguente." - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "Importa solo i contenuti che hanno queste parole (una per riga)" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "Lascia vuoto per importare tutti i contenuti pubblici" - -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:110 -msgid "Channel Name" -msgstr "Nome del canale" - -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "Sorgente non trovata." - -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "Modifica la sorgente" - -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "Elimina la sorgente" - -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "Sorgente eliminata" - -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "Impossibile rimuovere la sorgente." - -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "- scegli -" - -#: ../../mod/filestorage.php:68 -msgid "Permission Denied." -msgstr "Permesso negato." - -#: ../../mod/filestorage.php:85 -msgid "File not found." -msgstr "File non trovato." - -#: ../../mod/filestorage.php:121 -msgid "Edit file permissions" -msgstr "Modifica i permessi del file" - -#: ../../mod/filestorage.php:129 -msgid "Set/edit permissions" -msgstr "Modifica i permessi" - -#: ../../mod/filestorage.php:130 -msgid "Include all files and sub folders" -msgstr "Includi tutti i file e le sottocartelle" - -#: ../../mod/filestorage.php:131 -msgid "Return to file list" -msgstr "Torna all'elenco dei file" - -#: ../../mod/filestorage.php:133 -msgid "Copy/paste this code to attach file to a post" -msgstr "Copia/incolla questo codice per far comparire il file in un articolo" - -#: ../../mod/filestorage.php:134 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Copia/incolla questo indirizzo in una pagina web per avere un link al file" - -#: ../../mod/filestorage.php:171 -msgid "Download" -msgstr "Scaricamento dati" - -#: ../../mod/filestorage.php:177 -msgid "Used: " -msgstr "Usato:" - -#: ../../mod/filestorage.php:178 -msgid "[directory]" -msgstr "[cartella]" - -#: ../../mod/filestorage.php:180 -msgid "Limit: " -msgstr "Limite:" - -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Canale aggiunto." - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s sta seguendo %3$s di %2$s" - -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Contatto non trovato." - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Suggerimento di amicizia inviato." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Suggerisci amici" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Suggerisci un amico a %s" - -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore." - -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "L'insieme di canali è stato creato." - -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "Impossibile creare l'insieme." - -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "Insieme aggiornato." - -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "Crea un insieme di canali." - -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "Nome dell'insieme:" - -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "I membri saranno visibili agli altri canali" - -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "Insieme rimosso." - -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "Impossibile rimuovere l'insieme." - -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "Modifica l'insieme" - -#: ../../mod/group.php:196 -msgid "Members" -msgstr "Membri" - -#: ../../mod/group.php:198 -msgid "All Connected Channels" -msgstr "Tutti i canali connessi" - -#: ../../mod/group.php:231 -msgid "Click on a channel to add or remove." -msgstr "Clicca su un canale per aggiungerlo o rimuoverlo." - -#: ../../mod/tagger.php:98 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha taggato %3$s di %2$s con %4$s" - -#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55 -msgid "Help:" -msgstr "Guida:" - -#: ../../mod/help.php:69 ../../index.php:234 -msgid "Not Found" -msgstr "Non disponibile" - -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Tag rimosso" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Rimuovi il tag" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Seleziona un tag da rimuovere: " - -#: ../../mod/home.php:89 -#, php-format -msgid "Welcome to %s" -msgstr "%s ti dà il benvenuto" - -#: ../../mod/thing.php:98 -msgid "Thing updated" -msgstr "L'oggetto è stato aggiornato" - -#: ../../mod/thing.php:158 -msgid "Object store: failed" -msgstr "Impossibile memorizzare l'oggetto." - -#: ../../mod/thing.php:162 -msgid "Thing added" -msgstr "L'oggetto è stato aggiunto" - -#: ../../mod/thing.php:182 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../mod/thing.php:234 -msgid "Show Thing" -msgstr "Mostra l'oggetto" - -#: ../../mod/thing.php:241 -msgid "item not found." -msgstr "non trovato." - -#: ../../mod/thing.php:269 -msgid "Edit Thing" -msgstr "Modifica l'oggetto" - -#: ../../mod/thing.php:271 ../../mod/thing.php:318 -msgid "Select a profile" -msgstr "Scegli un profilo" - -#: ../../mod/thing.php:273 ../../mod/thing.php:320 -msgid "Select a category of stuff. e.g. I ______ something" -msgstr "Scegli come riferirsi all'oggetto. Esempio: Io _____ l'oggetto" - -#: ../../mod/thing.php:275 ../../mod/thing.php:321 -msgid "Post an activity" -msgstr "Pubblica un'attività" - -#: ../../mod/thing.php:275 ../../mod/thing.php:321 -msgid "Only sends to viewers of the applicable profile" -msgstr "Invia solo a chi segue il relativo canale" - -#: ../../mod/thing.php:277 ../../mod/thing.php:323 -msgid "Name of thing e.g. something" -msgstr "Nome dell'oggetto" - -#: ../../mod/thing.php:279 ../../mod/thing.php:324 -msgid "URL of thing (optional)" -msgstr "Indirizzo web dell'oggetto" - -#: ../../mod/thing.php:281 ../../mod/thing.php:325 -msgid "URL for photo of thing (optional)" -msgstr "Indirizzo di un'immagine dell'oggetto (facoltativo)" - -#: ../../mod/thing.php:316 -msgid "Add Thing to your Profile" -msgstr "Aggiungi l'oggetto al tuo profilo" - -#: ../../mod/import.php:36 -msgid "Nothing to import." -msgstr "Non c'è niente da importare." - -#: ../../mod/import.php:58 -msgid "Unable to download data from old server" -msgstr "Impossibile importare i dati dal vecchio server" - -#: ../../mod/import.php:64 -msgid "Imported file is empty." -msgstr "Il file da importare è vuoto." - -#: ../../mod/import.php:88 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita." - -#: ../../mod/import.php:106 -msgid "Channel clone failed. Import failed." -msgstr "Impossibile clonare il canale. L'importazione è fallita." - -#: ../../mod/import.php:116 -msgid "Cloned channel not found. Import failed." -msgstr "Impossibile trovare il canale clonato. L'importazione è fallita." - -#: ../../mod/import.php:358 -msgid "Import completed." -msgstr "L'importazione è terminata con successo!" - -#: ../../mod/import.php:371 -msgid "You must be logged in to use this feature." -msgstr "Per questa funzionalità devi aver effettuato l'accesso." - -#: ../../mod/import.php:376 -msgid "Import Channel" -msgstr "Importa un canale" - -#: ../../mod/import.php:377 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file. Only identity and connections/relationships will " -"be imported. Importation of content is not yet available." -msgstr "Usa questo modulo per importare un tuo canale da un altro server/hub. Puoi scaricare i dati identificativi del canale direttamente dall'altro server/hub oppure tramite un file che hai esportato. Saranno importati solamente l'identità e i contatti. L'importazione dei contenuti non è ancora disponibile." - -#: ../../mod/import.php:378 -msgid "File to Upload" -msgstr "File da caricare" - -#: ../../mod/import.php:379 -msgid "Or provide the old server/hub details" -msgstr "Oppure fornisci i dettagli del vecchio server/hub" - -#: ../../mod/import.php:380 -msgid "Your old identity address (xyz@example.com)" -msgstr "Il tuo vecchio identificativo (per esempio pippo@esempio.com)" - -#: ../../mod/import.php:381 -msgid "Your old login email address" -msgstr "L'email che usavi per accedere sul vecchio server" - -#: ../../mod/import.php:382 -msgid "Your old login password" -msgstr "La password per il vecchio server" - -#: ../../mod/import.php:383 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Per ciascuna opzione, scegli se vuoi rendere questo server il tuo indirizzo primario, oppure se preferisci che lo rimanga il vecchio. Potrai pubblicare da entrambi i server, ma solamente uno sarà marcato come primario per i tuoi file, foto, ecc." - -#: ../../mod/import.php:384 -msgid "Make this hub my primary location" -msgstr "Rendi questo server il mio indirizzo primario" - -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Hai superato il numero massimo di inviti." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: non è un indirizzo email valido." - -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "Vieni con noi su Red" - -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario." - -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: la consegna del messaggio è fallita." - -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d messaggio inviato." -msgstr[1] "%d messaggi inviati." - -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "Non hai altri inviti disponibili" - -#: ../../mod/invite.php:141 -msgid "Send invitations" -msgstr "Spedisci inviti" - -#: ../../mod/invite.php:142 -msgid "Enter email addresses, one per line:" -msgstr "Inserisci gli indirizzi email, uno per riga:" - -#: ../../mod/invite.php:143 ../../mod/mail.php:216 ../../mod/mail.php:328 -msgid "Your message:" -msgstr "Il tuo messaggio:" - -#: ../../mod/invite.php:144 -msgid "" -"You are cordially invited to join me and some other close friends on the Red" -" Matrix - a revolutionary new decentralised communication and information " -"tool." -msgstr "Questo è un invito cordiale ad unirti a me e ad altri miei amici stretti su Red Matrix - uno nuovo strumento di comunicazione decentralizzato e rivoluzionario." - -#: ../../mod/invite.php:146 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Sarà necessario fornire questo codice invito: $invite_code" - -#: ../../mod/invite.php:147 -msgid "Please visit my channel at" -msgstr "Puoi visitare il mio canale su" - -#: ../../mod/invite.php:151 -msgid "" -"Once you have registered (on ANY Red Matrix site - they are all inter-" -"connected), please connect with my Red Matrix channel address:" -msgstr "Una volta che avrai completato la registrazione (su QUALSIASI sito Red Matrix - sono tutti interconnessi), potrai connetterti al mio canale:" - -#: ../../mod/invite.php:153 -msgid "Click the [Register] link on the following page to join." -msgstr "Fai clic su [Registrati] nella pagina seguente per iscriverti." - -#: ../../mod/invite.php:155 -msgid "" -"For more information about the Red Matrix Project and why it has the " -"potential to change the internet as we know it, please visit " -"http://getzot.com" -msgstr "Per saperne di più sul progetto Red Matrix e sul perché potrebbe cambiare internet per come la conosciamo, visita http://getzot.com" - -#: ../../mod/item.php:147 -msgid "Unable to locate original post." -msgstr "Impossibile trovare il messaggio originale." - -#: ../../mod/item.php:352 -msgid "Empty post discarded." -msgstr "L'articolo vuoto è stato ignorato." - -#: ../../mod/item.php:392 -msgid "Executable content type not permitted to this channel." -msgstr "I contenuti eseguibili non sono permessi su questo canale." - -#: ../../mod/item.php:806 -msgid "System error. Post not saved." -msgstr "Errore di sistema. Articolo non salvato." - -#: ../../mod/item.php:1249 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Hai raggiunto il limite massimo di %1$.0f articoli sulla pagina principale." - -#: ../../mod/item.php:1255 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web." - -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 -msgid "[Embedded content - reload page to view]" -msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" - -#: ../../mod/layouts.php:62 -msgid "Help with this feature" -msgstr "La guida per questa funzionalità" - -#: ../../mod/layouts.php:84 -msgid "Layout Name" -msgstr "Nome layout" - -#: ../../mod/lockview.php:30 ../../mod/lockview.php:36 -msgid "Remote privacy information not available." -msgstr "Le informazioni remote sulla privacy non sono disponibili." - -#: ../../mod/lockview.php:45 -msgid "Visible to:" -msgstr "Visibile a:" - -#: ../../mod/viewconnections.php:58 -msgid "No connections." -msgstr "Nessun contatto." - -#: ../../mod/viewconnections.php:70 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visita il profilo di %s [%s]" - -#: ../../mod/viewconnections.php:85 -msgid "View Connnections" -msgstr "Guarda i contatti" - -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "Nessun account valido trovato." - -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." - -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 -#, php-format -msgid "Site Member (%s)" -msgstr "Utente del sito (%s)" - -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "È stato richiesto di reimpostare password su %s" - -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non può essere reimpostata." - -#: ../../mod/lostpass.php:85 ../../boot.php:1462 -msgid "Password Reset" -msgstr "Reimposta la password" - -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." -msgstr "La password è stata reimpostata come richiesto." - -#: ../../mod/lostpass.php:87 -msgid "Your new password is" -msgstr "La tua nuova password è" - -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" -msgstr "Salva o copia la tua nuova password, quindi" - -#: ../../mod/lostpass.php:89 -msgid "click here to login" -msgstr "clicca qui per accedere" - -#: ../../mod/lostpass.php:90 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso." - -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has changed at %s" -msgstr "La tua password su %s è cambiata" - -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "Hai dimenticato la password?" - -#: ../../mod/lostpass.php:123 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare." - -#: ../../mod/lostpass.php:124 -msgid "Email Address" -msgstr "Indirizzo email" - -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "Reimposta" - -#: ../../mod/magic.php:70 -msgid "Hub not found." -msgstr "Server non trovato." - -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "Totale voti" - -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "Media" - -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Impossibile associare un destinatario." - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Impossibile comunicare con il canale richiesto." - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "Impossibile verificare il canale richiesto." - -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito." - -#: ../../mod/mail.php:121 ../../mod/message.php:31 -msgid "Messages" -msgstr "Messaggi" - -#: ../../mod/mail.php:132 -msgid "Message deleted." -msgstr "Messaggio eliminato." - -#: ../../mod/mail.php:149 -msgid "Message recalled." -msgstr "Messaggio revocato." - -#: ../../mod/mail.php:206 -msgid "Send Private Message" -msgstr "Invia un messaggio privato" - -#: ../../mod/mail.php:207 ../../mod/mail.php:323 -msgid "To:" -msgstr "A:" - -#: ../../mod/mail.php:212 ../../mod/mail.php:325 -msgid "Subject:" -msgstr "Oggetto:" - -#: ../../mod/mail.php:249 -msgid "Message not found." -msgstr "Messaggio non trovato." - -#: ../../mod/mail.php:292 ../../mod/message.php:72 -msgid "Delete message" -msgstr "Elimina il messaggio" - -#: ../../mod/mail.php:293 -msgid "Recall message" -msgstr "Revoca il messaggio" - -#: ../../mod/mail.php:295 -msgid "Message has been recalled." -msgstr "Il messaggio è stato revocato." - -#: ../../mod/mail.php:312 -msgid "Private Conversation" -msgstr "Conversazione privata" - -#: ../../mod/mail.php:316 -msgid "Delete conversation" -msgstr "Elimina la conversazione" - -#: ../../mod/mail.php:318 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Non è disponibile alcun sistema per comunicare in modo sicuro. Puoi verificare se eventualmente è possibile rispondere dalla pagina del profilo del mittente." - -#: ../../mod/mail.php:322 -msgid "Send Reply" -msgstr "Invia la risposta" - -#: ../../mod/manage.php:64 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Hai creato %1$.0f dei %2$.0f canali permessi." - -#: ../../mod/manage.php:72 -msgid "Create a new channel" -msgstr "Crea un nuovo canale" - -#: ../../mod/manage.php:77 -msgid "Channel Manager" -msgstr "Gestione canali" - -#: ../../mod/manage.php:78 -msgid "Current Channel" -msgstr "Canale attuale" - -#: ../../mod/manage.php:80 -msgid "Attach to one of your channels by selecting it." -msgstr "Seleziona il canale a cui vuoi passare." - -#: ../../mod/manage.php:81 -msgid "Default Channel" -msgstr "Canale predefinito" - -#: ../../mod/manage.php:82 -msgid "Make Default" -msgstr "Rendi predefinito" - -#: ../../mod/wall_upload.php:34 -msgid "Wall Photos" -msgstr "Foto della bacheca" - -#: ../../mod/match.php:16 -msgid "Profile Match" -msgstr "Profili corrispondenti" - -#: ../../mod/match.php:24 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Nessuna parola chiave per le ricerche. Aggiungi parole chiave al tuo profilo predefinito." - -#: ../../mod/match.php:61 -msgid "is interested in:" -msgstr "interessi personali:" - -#: ../../mod/match.php:69 -msgid "No matches" -msgstr "Nessun risultato" - -#: ../../mod/menu.php:21 -msgid "Menu updated." -msgstr "Menù aggiornato." - -#: ../../mod/menu.php:25 -msgid "Unable to update menu." -msgstr "Impossibile aggiornare il menù." - -#: ../../mod/menu.php:30 -msgid "Menu created." -msgstr "Menù creato." - -#: ../../mod/menu.php:34 -msgid "Unable to create menu." -msgstr "Impossibile creare il menù." - -#: ../../mod/menu.php:57 -msgid "Manage Menus" -msgstr "Gestione menù" - -#: ../../mod/menu.php:60 -msgid "Drop" -msgstr "Elimina" - -#: ../../mod/menu.php:62 -msgid "Create a new menu" -msgstr "Crea un nuovo menù" - -#: ../../mod/menu.php:63 -msgid "Delete this menu" -msgstr "Elimina questo menù" - -#: ../../mod/menu.php:64 ../../mod/menu.php:109 -msgid "Edit menu contents" -msgstr "Modifica i contenuti del menù" - -#: ../../mod/menu.php:65 -msgid "Edit this menu" -msgstr "Modifica questo menù" - -#: ../../mod/menu.php:80 -msgid "New Menu" -msgstr "Nuovo menù" - -#: ../../mod/menu.php:81 ../../mod/menu.php:110 -msgid "Menu name" -msgstr "Nome del menù" - -#: ../../mod/menu.php:81 ../../mod/menu.php:110 -msgid "Must be unique, only seen by you" -msgstr "Deve essere unico, lo vedrai solo tu" - -#: ../../mod/menu.php:82 ../../mod/menu.php:111 -msgid "Menu title" -msgstr "Titolo del menù" - -#: ../../mod/menu.php:82 ../../mod/menu.php:111 -msgid "Menu title as seen by others" -msgstr "Titolo del menù come comparirà a tutti" - -#: ../../mod/menu.php:83 ../../mod/menu.php:112 -msgid "Allow bookmarks" -msgstr "Permetti l'invio di segnalibri" - -#: ../../mod/menu.php:83 ../../mod/menu.php:112 -msgid "Menu may be used to store saved bookmarks" -msgstr "Puoi salvare i segnalibri nei menu" - -#: ../../mod/menu.php:98 -msgid "Menu deleted." -msgstr "Menù eliminato." - -#: ../../mod/menu.php:100 -msgid "Menu could not be deleted." -msgstr "Il menù non può essere eliminato." - -#: ../../mod/menu.php:106 -msgid "Edit Menu" -msgstr "Modifica menù" - -#: ../../mod/menu.php:108 -msgid "Add or remove entries to this menu" -msgstr "Aggiungi o rimuovi elementi di questo menù" - -#: ../../mod/message.php:41 -msgid "Conversation removed." -msgstr "Conversazione rimossa." - -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "Nessun messaggio." - -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "D d M Y - G:i" - -#: ../../mod/new_channel.php:107 -msgid "Add a Channel" -msgstr "Aggiungi un canale" - -#: ../../mod/new_channel.php:108 -msgid "" -"A channel is your own collection of related web pages. A channel can be used" -" to hold social network profiles, blogs, conversation groups and forums, " -"celebrity pages, and much more. You may create as many channels as your " -"service provider allows." -msgstr "I contenuti che pubblichi finiscono in un \"canale\". Un canale può essere usato per mantenere un tuo profilo personale, per avere un blog, per creare forum di discussione o gruppi di interesse, per pagine di celebrità e molto altro. Puoi creare quanti canali vuoi a meno di limiti dati dal gestore del sito." - -#: ../../mod/new_channel.php:111 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " -msgstr "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\"" - -#: ../../mod/new_channel.php:112 -msgid "Choose a short nickname" -msgstr "Scegli un nome breve" - -#: ../../mod/new_channel.php:113 -msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." -msgstr "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale (simile a una email). Così potrai condividerlo e gli altri potranno trovarti." - -#: ../../mod/new_channel.php:114 -msgid "Or import an existing channel from another location" -msgstr "Oppure importa un tuo canale esistente da un altro server/hub" - #: ../../mod/photos.php:77 msgid "Page owner information could not be retrieved." msgstr "Impossibile ottenere informazioni sul proprietario della pagina." @@ -7305,14 +7045,1770 @@ msgstr "Guarda l'album" msgid "Recent Photos" msgstr "Foto recenti" -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "L'identificativo della richiesta non è valido." +#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55 +msgid "Help:" +msgstr "Guida:" -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "Rifiuta" +#: ../../mod/help.php:69 ../../index.php:234 +msgid "Not Found" +msgstr "Non disponibile" +#: ../../mod/ping.php:192 +msgid "sent you a private message" +msgstr "ti ha inviato un messaggio privato" + +#: ../../mod/ping.php:250 +msgid "added your channel" +msgstr "ha aggiunto il tuo canale" + +#: ../../mod/ping.php:294 +msgid "posted an event" +msgstr "ha creato un evento" + +#: ../../mod/lostpass.php:15 +msgid "No valid account found." +msgstr "Nessun account valido trovato." + +#: ../../mod/lostpass.php:29 +msgid "Password reset request issued. Check your email." +msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." + +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#, php-format +msgid "Site Member (%s)" +msgstr "Utente del sito (%s)" + +#: ../../mod/lostpass.php:40 +#, php-format +msgid "Password reset requested at %s" +msgstr "È stato richiesto di reimpostare password su %s" + +<<<<<<< HEAD +#: ../../mod/lostpass.php:63 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non può essere reimpostata." +======= +#: ../../mod/setup.php:191 ../../mod/setup.php:260 ../../mod/setup.php:655 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Leggi il file 'install/INSTALL.txt'." +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb + +#: ../../mod/lostpass.php:85 ../../boot.php:1461 +msgid "Password Reset" +msgstr "Reimposta la password" + +<<<<<<< HEAD +#: ../../mod/lostpass.php:86 +msgid "Your password has been reset as requested." +msgstr "La password è stata reimpostata come richiesto." +======= +#: ../../mod/setup.php:261 ../../mod/events.php:369 +msgid "Next" +msgstr "Successivo" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb + +#: ../../mod/lostpass.php:87 +msgid "Your new password is" +msgstr "La tua nuova password è" + +#: ../../mod/lostpass.php:88 +msgid "Save or copy your new password - and then" +msgstr "Salva o copia la tua nuova password, quindi" + +#: ../../mod/lostpass.php:89 +msgid "click here to login" +msgstr "clicca qui per accedere" + +#: ../../mod/lostpass.php:90 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso." + +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has changed at %s" +msgstr "La tua password su %s è cambiata" + +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "Hai dimenticato la password?" + +#: ../../mod/lostpass.php:123 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare." + +#: ../../mod/lostpass.php:124 +msgid "Email Address" +msgstr "Indirizzo email" + +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "Reimposta" + +#: ../../mod/removeme.php:49 +msgid "Remove This Channel" +msgstr "Elimina questo canale" + +#: ../../mod/removeme.php:50 +msgid "" +"This will completely remove this channel from the network. Once this has " +"been done it is not recoverable." +msgstr "Questo comando rimuoverà completamente il canale che stai usando. Una volta fatto non sarà più possibile ripristinarlo." + +#: ../../mod/removeme.php:51 +msgid "Please enter your password for verification:" +msgstr "Inserisci la tua password per verifica:" + +#: ../../mod/removeme.php:52 +msgid "Remove this channel and all its clones from the network" +msgstr "Rimuovi questo canale e tutti i suoi cloni dalla rete" + +#: ../../mod/removeme.php:52 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni" + +#: ../../mod/removeme.php:53 +msgid "Remove Channel" +msgstr "Elimina questo canale" + +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "Impossibile trovare delegati per questa pagina." + +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" +msgstr "Gestione delegati per la pagina" + +#: ../../mod/delegate.php:123 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente." + +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" +msgstr "Gestori attuali della pagina" + +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "Delegati attuali della pagina" + +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "Delegati potenziali" + +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "Aggiungi" + +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "Nessun risultato." + +#: ../../mod/layouts.php:62 +msgid "Help with this feature" +msgstr "La guida per questa funzionalità" + +#: ../../mod/layouts.php:84 +msgid "Layout Name" +msgstr "Nome layout" + +#: ../../mod/connections.php:191 ../../mod/connections.php:291 +msgid "Blocked" +msgstr "Bloccati" + +#: ../../mod/connections.php:196 ../../mod/connections.php:298 +msgid "Ignored" +msgstr "Ignorati" + +#: ../../mod/connections.php:201 ../../mod/connections.php:312 +msgid "Hidden" +msgstr "Nascosti" + +#: ../../mod/connections.php:206 ../../mod/connections.php:305 +msgid "Archived" +msgstr "Archiviati" + +#: ../../mod/connections.php:230 ../../mod/connections.php:244 +msgid "All" +msgstr "Tutti" + +#: ../../mod/connections.php:239 ../../mod/connections.php:319 +msgid "Unconnected" +msgstr "Non connesso" + +#: ../../mod/connections.php:269 +msgid "Suggest new connections" +msgstr "Suggerisci nuovi contatti" + +#: ../../mod/connections.php:272 +msgid "New Connections" +msgstr "Nuovi contatti" + +#: ../../mod/connections.php:275 +msgid "Show pending (new) connections" +msgstr "Richieste di contatto in attesa" + +#: ../../mod/connections.php:281 +msgid "Show all connections" +msgstr "Mostra tutti i contatti" + +#: ../../mod/connections.php:284 +msgid "Unblocked" +msgstr "Non bloccati" + +#: ../../mod/connections.php:287 +msgid "Only show unblocked connections" +msgstr "Mostra solo i contatti non bloccati" + +#: ../../mod/connections.php:294 +msgid "Only show blocked connections" +msgstr "Mostra solo i contatti bloccati" + +#: ../../mod/connections.php:301 +msgid "Only show ignored connections" +msgstr "Mostra solo i contatti ignorati" + +#: ../../mod/connections.php:308 +msgid "Only show archived connections" +msgstr "Mostra solo i contatti archiviati" + +#: ../../mod/connections.php:315 +msgid "Only show hidden connections" +msgstr "Mostra solo i contatti nascosti" + +#: ../../mod/connections.php:322 +msgid "Only show one-way connections" +msgstr "Mostra solo i contatti non ricambiati" + +#: ../../mod/connections.php:367 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" + +#: ../../mod/connections.php:368 +msgid "Edit contact" +msgstr "Modifica il contatto" + +#: ../../mod/connections.php:389 +msgid "Search your connections" +msgstr "Cerca tra i contatti" + +#: ../../mod/connections.php:390 +msgid "Finding: " +msgstr "Ricerca: " + +#: ../../mod/import.php:36 +msgid "Nothing to import." +msgstr "Non c'è niente da importare." + +#: ../../mod/import.php:58 +msgid "Unable to download data from old server" +msgstr "Impossibile importare i dati dal vecchio server" + +#: ../../mod/import.php:64 +msgid "Imported file is empty." +msgstr "Il file da importare è vuoto." + +#: ../../mod/import.php:88 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita." + +#: ../../mod/import.php:106 +msgid "Channel clone failed. Import failed." +msgstr "Impossibile clonare il canale. L'importazione è fallita." + +#: ../../mod/import.php:116 +msgid "Cloned channel not found. Import failed." +msgstr "Impossibile trovare il canale clonato. L'importazione è fallita." + +#: ../../mod/import.php:358 +msgid "Import completed." +msgstr "L'importazione è terminata con successo!" + +#: ../../mod/import.php:371 +msgid "You must be logged in to use this feature." +msgstr "Per questa funzionalità devi aver effettuato l'accesso." + +#: ../../mod/import.php:376 +msgid "Import Channel" +msgstr "Importa un canale" + +#: ../../mod/import.php:377 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file. Only identity and connections/relationships will " +"be imported. Importation of content is not yet available." +msgstr "Usa questo modulo per importare un tuo canale da un altro server/hub. Puoi scaricare i dati identificativi del canale direttamente dall'altro server/hub oppure tramite un file che hai esportato. Saranno importati solamente l'identità e i contatti. L'importazione dei contenuti non è ancora disponibile." + +#: ../../mod/import.php:378 +msgid "File to Upload" +msgstr "File da caricare" + +#: ../../mod/import.php:379 +msgid "Or provide the old server/hub details" +msgstr "Oppure fornisci i dettagli del vecchio server/hub" + +#: ../../mod/import.php:380 +msgid "Your old identity address (xyz@example.com)" +msgstr "Il tuo vecchio identificativo (per esempio pippo@esempio.com)" + +<<<<<<< HEAD +#: ../../mod/import.php:381 +msgid "Your old login email address" +msgstr "L'email che usavi per accedere sul vecchio server" + +#: ../../mod/import.php:382 +msgid "Your old login password" +msgstr "La password per il vecchio server" + +#: ../../mod/import.php:383 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Per ciascuna opzione, scegli se vuoi rendere questo server il tuo indirizzo primario, oppure se preferisci che lo rimanga il vecchio. Potrai pubblicare da entrambi i server, ma solamente uno sarà marcato come primario per i tuoi file, foto, ecc." + +#: ../../mod/import.php:384 +msgid "Make this hub my primary location" +msgstr "Rendi questo server il mio indirizzo primario" + +#: ../../mod/mood.php:138 +msgid "Mood" +msgstr "Umore" + +#: ../../mod/mood.php:139 +msgid "Set your current mood and tell your friends" +msgstr "Scegli il tuo umore attuale per mostrarlo agli amici" + +#: ../../mod/chat.php:167 +msgid "Room not found" +msgstr "Chat non trovata" + +#: ../../mod/chat.php:178 +msgid "Leave Room" +msgstr "Lascia la chat" + +#: ../../mod/chat.php:179 +msgid "Delete This Room" +msgstr "Elimina questa chat" + +#: ../../mod/chat.php:180 +msgid "I am away right now" +msgstr "Non sono presente al momento" + +#: ../../mod/chat.php:181 +msgid "I am online" +msgstr "Sono online" + +#: ../../mod/chat.php:183 +msgid "Bookmark this room" +msgstr "Aggiungi chat ai segnalibri" + +#: ../../mod/chat.php:207 ../../mod/chat.php:229 +msgid "New Chatroom" +msgstr "Nuova chat" +======= +#: ../../mod/setup.php:569 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito." + +#: ../../mod/setup.php:570 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" +msgstr "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati generati da te!" + +#: ../../mod/setup.php:571 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server." + +#: ../../mod/setup.php:572 +msgid "" +"If your certificate is not recognised, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." +msgstr "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno un avviso su possibili problemi di sicurezza." + +#: ../../mod/setup.php:573 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "Ciò può creare gravi problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto." + +#: ../../mod/setup.php:574 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser." + +#: ../../mod/setup.php:576 +msgid "SSL certificate validation" +msgstr "Validazione del certificato SSL" + +#: ../../mod/setup.php:582 +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." + +#: ../../mod/setup.php:584 +msgid "Url rewrite is working" +msgstr "Url rewrite funziona correttamente" + +#: ../../mod/setup.php:594 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito." + +#: ../../mod/setup.php:618 +msgid "Errors encountered creating database tables." +msgstr "La creazione delle tabelle del database ha generato errori." + +#: ../../mod/setup.php:653 +msgid "

    What next

    " +msgstr "

    I prossimi passi

    " + +#: ../../mod/setup.php:654 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling." +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb + +#: ../../mod/chat.php:208 +msgid "Chatroom Name" +msgstr "Nome della chat" + +#: ../../mod/chat.php:225 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Le chat di %1$s" + +#: ../../mod/editblock.php:77 +msgid "Edit Block" +msgstr "Modifica il riquadro" + +#: ../../mod/editblock.php:87 +msgid "Delete block?" +msgstr "Vuoi eliminare questo riquadro?" + +#: ../../mod/editblock.php:153 +msgid "Delete Block" +msgstr "Elimina il riquadro" + +#: ../../mod/match.php:16 +msgid "Profile Match" +msgstr "Profili corrispondenti" + +#: ../../mod/match.php:24 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Nessuna parola chiave per le ricerche. Aggiungi parole chiave al tuo profilo predefinito." + +#: ../../mod/match.php:61 +msgid "is interested in:" +msgstr "interessi personali:" + +#: ../../mod/match.php:69 +msgid "No matches" +msgstr "Nessun risultato" + +#: ../../mod/chatsvc.php:111 +msgid "Away" +msgstr "Assente" + +#: ../../mod/chatsvc.php:115 +msgid "Online" +msgstr "Online" + +#: ../../mod/editwebpage.php:106 +msgid "Edit Webpage" +msgstr "Modifica la pagina web" + +#: ../../mod/editwebpage.php:116 +msgid "Delete webpage?" +msgstr "Vuoi eliminare questa pagina web?" + +#: ../../mod/editwebpage.php:187 +msgid "Delete Webpage" +msgstr "Elimina la pagina web" + +#: ../../mod/profiles.php:18 ../../mod/profiles.php:138 +#: ../../mod/profiles.php:168 ../../mod/profiles.php:463 +msgid "Profile not found." +msgstr "Profilo non trovato." + +#: ../../mod/profiles.php:38 +msgid "Profile deleted." +msgstr "Profilo eliminato." + +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" +msgstr "Profilo-" + +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." +msgstr "Il nuovo profilo è stato creato." + +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." +msgstr "Impossibile duplicare il profilo." + +#: ../../mod/profiles.php:178 +msgid "Profile Name is required." +msgstr "Il nome del profilo è obbligatorio ." + +#: ../../mod/profiles.php:294 +msgid "Marital Status" +msgstr "Stato sentimentale" + +#: ../../mod/profiles.php:298 +msgid "Romantic Partner" +msgstr "Partner affettivo" + +#: ../../mod/profiles.php:302 +msgid "Likes" +msgstr "Mi piace" + +#: ../../mod/profiles.php:306 +msgid "Dislikes" +msgstr "Non mi piace" + +#: ../../mod/profiles.php:310 +msgid "Work/Employment" +msgstr "Lavoro/impiego" + +#: ../../mod/profiles.php:313 +msgid "Religion" +msgstr "Religione" + +#: ../../mod/profiles.php:317 +msgid "Political Views" +msgstr "Orientamento politico" + +#: ../../mod/profiles.php:321 +msgid "Gender" +msgstr "Sesso" + +#: ../../mod/profiles.php:325 +msgid "Sexual Preference" +msgstr "Preferenze sessuali" + +<<<<<<< HEAD +#: ../../mod/profiles.php:329 +msgid "Homepage" +msgstr "Home page" + +#: ../../mod/profiles.php:333 +msgid "Interests" +msgstr "Interessi" + +#: ../../mod/profiles.php:337 ../../mod/admin.php:891 +msgid "Address" +msgstr "Indirizzo" + +#: ../../mod/profiles.php:427 +msgid "Profile updated." +msgstr "Profilo aggiornato." + +#: ../../mod/profiles.php:482 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?" + +#: ../../mod/profiles.php:505 +msgid "Edit Profile Details" +msgstr "Modifica i dettagli del profilo" + +#: ../../mod/profiles.php:507 +msgid "View this profile" +msgstr "Guarda questo profilo" + +#: ../../mod/profiles.php:508 +msgid "Change Profile Photo" +msgstr "Cambia la foto del profilo" + +#: ../../mod/profiles.php:509 +msgid "Create a new profile using these settings" +msgstr "Crea un nuovo profilo usando queste impostazioni" + +#: ../../mod/profiles.php:510 +msgid "Clone this profile" +msgstr "Clona questo profilo" + +#: ../../mod/profiles.php:511 +msgid "Delete this profile" +msgstr "Elimina questo profilo" + +#: ../../mod/profiles.php:512 +msgid "Profile Name:" +msgstr "Nome del profilo:" + +#: ../../mod/profiles.php:513 +msgid "Your Full Name:" +msgstr "Il tuo nome completo:" + +#: ../../mod/profiles.php:514 +msgid "Title/Description:" +msgstr "Titolo/descrizione:" + +#: ../../mod/profiles.php:515 +msgid "Your Gender:" +msgstr "Sesso:" +======= +#: ../../mod/events.php:299 +msgid "l, F j" +msgstr "l j F" + +#: ../../mod/events.php:321 +msgid "Edit event" +msgstr "Modifica l'evento" + +#: ../../mod/events.php:367 +msgid "Create New Event" +msgstr "Crea un nuovo evento" + +#: ../../mod/events.php:368 +msgid "Previous" +msgstr "Precendente" + +#: ../../mod/events.php:439 +msgid "hour:minute" +msgstr "ora:minuti" + +#: ../../mod/events.php:459 +msgid "Event details" +msgstr "Dettagli evento" + +#: ../../mod/events.php:460 +#, 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." + +#: ../../mod/events.php:462 +msgid "Event Starts:" +msgstr "Inizio:" + +#: ../../mod/events.php:462 ../../mod/events.php:476 +msgid "Required" +msgstr "Obbligatorio" + +#: ../../mod/events.php:465 +msgid "Finish date/time is not known or not relevant" +msgstr "La data/ora di fine non è rilevante" + +#: ../../mod/events.php:467 +msgid "Event Finishes:" +msgstr "Fine:" + +#: ../../mod/events.php:470 +msgid "Adjust for viewer timezone" +msgstr "Adatta al fuso orario di chi legge" + +#: ../../mod/events.php:472 +msgid "Description:" +msgstr "Descrizione:" + +#: ../../mod/events.php:476 +msgid "Title:" +msgstr "Titolo:" + +#: ../../mod/events.php:478 +msgid "Share this event" +msgstr "Condividi questo evento" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb + +#: ../../mod/profiles.php:516 +#, php-format +msgid "Birthday (%s):" +msgstr "Compleanno (%s):" + +#: ../../mod/profiles.php:517 +msgid "Street Address:" +msgstr "Indirizzo (via/piazza):" + +#: ../../mod/profiles.php:518 +msgid "Locality/City:" +msgstr "Località:" + +#: ../../mod/profiles.php:519 +msgid "Postal/Zip Code:" +msgstr "CAP:" + +#: ../../mod/profiles.php:520 +msgid "Country:" +msgstr "Nazione:" + +#: ../../mod/profiles.php:521 +msgid "Region/State:" +msgstr "Regione/stato:" + +#: ../../mod/profiles.php:522 +msgid " Marital Status:" +msgstr " Stato sentimentale:" + +#: ../../mod/profiles.php:523 +msgid "Who: (if applicable)" +msgstr "Con chi: (se possibile)" + +#: ../../mod/profiles.php:524 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Per esempio: cathy123, Cathy Williams, cathy@example.com" + +#: ../../mod/profiles.php:525 +msgid "Since [date]:" +msgstr "dal [data]:" + +#: ../../mod/profiles.php:527 +msgid "Homepage URL:" +msgstr "Indirizzo home page:" + +#: ../../mod/profiles.php:530 +msgid "Religious Views:" +msgstr "Orientamento religioso:" + +#: ../../mod/profiles.php:531 +msgid "Keywords:" +msgstr "Parole chiave, tag:" + +#: ../../mod/profiles.php:534 +msgid "Example: fishing photography software" +msgstr "Per esempio: pesca fotografia programmazione" + +#: ../../mod/profiles.php:535 +msgid "Used in directory listings" +msgstr "Visibile nell'elenco pubblico di canali" + +#: ../../mod/profiles.php:536 +msgid "Tell us about yourself..." +msgstr "Raccontaci di te..." + +#: ../../mod/profiles.php:537 +msgid "Hobbies/Interests" +msgstr "Hobby/interessi" + +#: ../../mod/profiles.php:538 +msgid "Contact information and Social Networks" +msgstr "Contatti personali e i tuoi social network" + +#: ../../mod/profiles.php:539 +msgid "My other channels" +msgstr "I miei altri canali" + +#: ../../mod/profiles.php:540 +msgid "Musical interests" +msgstr "Interessi musicali" + +#: ../../mod/profiles.php:541 +msgid "Books, literature" +msgstr "Libri, letteratura" + +#: ../../mod/profiles.php:542 +msgid "Television" +msgstr "Televisione" + +#: ../../mod/profiles.php:543 +msgid "Film/dance/culture/entertainment" +msgstr "Film/danza/cultura/intrattenimento" + +#: ../../mod/profiles.php:544 +msgid "Love/romance" +msgstr "Amore" + +#: ../../mod/profiles.php:545 +msgid "Work/employment" +msgstr "Lavoro/impiego" + +#: ../../mod/profiles.php:546 +msgid "School/education" +msgstr "Scuola/educazione" + +#: ../../mod/profiles.php:551 +msgid "" +"This is your public profile.
    It may " +"be visible to anybody using the internet." +msgstr "Questo è il tuo profilo publico.
    Potrebbe essere visto da chiunque attraverso internet." + +#: ../../mod/profiles.php:600 +msgid "Edit/Manage Profiles" +msgstr "Modifica/gestisci i profili" + +#: ../../mod/profiles.php:601 +msgid "Add profile things" +msgstr "Aggiungi oggetti al profilo" + +#: ../../mod/profiles.php:602 +msgid "Include desirable objects in your profile" +msgstr "Aggiungi oggetti interessanti al tuo profilo" + +#: ../../mod/menu.php:21 +msgid "Menu updated." +msgstr "Menù aggiornato." + +#: ../../mod/menu.php:25 +msgid "Unable to update menu." +msgstr "Impossibile aggiornare il menù." + +#: ../../mod/menu.php:30 +msgid "Menu created." +msgstr "Menù creato." + +#: ../../mod/menu.php:34 +msgid "Unable to create menu." +msgstr "Impossibile creare il menù." + +#: ../../mod/menu.php:57 +msgid "Manage Menus" +msgstr "Gestione menù" + +#: ../../mod/menu.php:60 +msgid "Drop" +msgstr "Elimina" + +#: ../../mod/menu.php:62 +msgid "Create a new menu" +msgstr "Crea un nuovo menù" + +#: ../../mod/menu.php:63 +msgid "Delete this menu" +msgstr "Elimina questo menù" + +#: ../../mod/menu.php:64 ../../mod/menu.php:109 +msgid "Edit menu contents" +msgstr "Modifica i contenuti del menù" + +#: ../../mod/menu.php:65 +msgid "Edit this menu" +msgstr "Modifica questo menù" + +#: ../../mod/menu.php:80 +msgid "New Menu" +msgstr "Nuovo menù" + +#: ../../mod/menu.php:81 ../../mod/menu.php:110 +msgid "Menu name" +msgstr "Nome del menù" + +#: ../../mod/menu.php:81 ../../mod/menu.php:110 +msgid "Must be unique, only seen by you" +msgstr "Deve essere unico, lo vedrai solo tu" + +#: ../../mod/menu.php:82 ../../mod/menu.php:111 +msgid "Menu title" +msgstr "Titolo del menù" + +#: ../../mod/menu.php:82 ../../mod/menu.php:111 +msgid "Menu title as seen by others" +msgstr "Titolo del menù come comparirà a tutti" + +#: ../../mod/menu.php:83 ../../mod/menu.php:112 +msgid "Allow bookmarks" +msgstr "Permetti l'invio di segnalibri" + +#: ../../mod/menu.php:83 ../../mod/menu.php:112 +msgid "Menu may be used to store saved bookmarks" +msgstr "Puoi salvare i segnalibri nei menu" + +#: ../../mod/menu.php:98 +msgid "Menu deleted." +msgstr "Menù eliminato." + +#: ../../mod/menu.php:100 +msgid "Menu could not be deleted." +msgstr "Il menù non può essere eliminato." + +<<<<<<< HEAD +#: ../../mod/menu.php:106 +msgid "Edit Menu" +msgstr "Modifica menù" +======= +#: ../../mod/help.php:69 ../../index.php:234 +msgid "Not Found" +msgstr "Non disponibile" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb + +#: ../../mod/menu.php:108 +msgid "Add or remove entries to this menu" +msgstr "Aggiungi o rimuovi elementi di questo menù" + +#: ../../mod/openid.php:26 +msgid "OpenID protocol error. No ID returned." +msgstr "Errore del protocollo OpenID. Nessun ID ricevuto in risposta." + +#: ../../mod/cloud.php:112 +msgid "Red Matrix - Guests: Username: {your email address}, Password: +++" +msgstr "Accesso a Red Matrix. Inserisci l'email con cui sei registrato e la password." + +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." +msgstr "Impossibile associare un destinatario." + +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." +msgstr "Impossibile comunicare con il canale richiesto." + +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." +msgstr "Impossibile verificare il canale richiesto." + +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito." + +#: ../../mod/mail.php:132 +msgid "Message deleted." +msgstr "Messaggio eliminato." + +#: ../../mod/mail.php:149 +msgid "Message recalled." +msgstr "Messaggio revocato." + +#: ../../mod/mail.php:206 +msgid "Send Private Message" +msgstr "Invia un messaggio privato" + +#: ../../mod/mail.php:207 ../../mod/mail.php:323 +msgid "To:" +msgstr "A:" + +#: ../../mod/mail.php:212 ../../mod/mail.php:325 +msgid "Subject:" +msgstr "Oggetto:" + +#: ../../mod/mail.php:216 ../../mod/mail.php:328 ../../mod/invite.php:143 +msgid "Your message:" +msgstr "Il tuo messaggio:" + +#: ../../mod/mail.php:249 +msgid "Message not found." +msgstr "Messaggio non trovato." + +#: ../../mod/mail.php:293 +msgid "Recall message" +msgstr "Revoca il messaggio" + +#: ../../mod/mail.php:295 +msgid "Message has been recalled." +msgstr "Il messaggio è stato revocato." + +#: ../../mod/mail.php:312 +msgid "Private Conversation" +msgstr "Conversazione privata" + +#: ../../mod/mail.php:316 +msgid "Delete conversation" +msgstr "Elimina la conversazione" + +#: ../../mod/mail.php:318 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Non è disponibile alcun sistema per comunicare in modo sicuro. Puoi verificare se eventualmente è possibile rispondere dalla pagina del profilo del mittente." + +#: ../../mod/mail.php:322 +msgid "Send Reply" +msgstr "Invia la risposta" + +#: ../../mod/appman.php:27 +msgid "App installed." +msgstr "App installata" + +#: ../../mod/appman.php:35 +msgid "Malformed app." +msgstr "App non corretta" + +#: ../../mod/appman.php:72 +msgid "Embed code" +msgstr "Inserisci del codice" + +#: ../../mod/appman.php:78 +msgid "Create App" +msgstr "Crea una app" + +#: ../../mod/appman.php:83 +msgid "Name of app" +msgstr "Nome app" + +#: ../../mod/appman.php:84 +msgid "Location (URL) of app" +msgstr "Indirizzo (URL) della app" + +#: ../../mod/appman.php:85 ../../mod/rbmark.php:95 +msgid "Description" +msgstr "Descrizione" + +#: ../../mod/appman.php:86 +msgid "Photo icon URL" +msgstr "URL icona" + +#: ../../mod/appman.php:86 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixel - facoltativa" + +#: ../../mod/appman.php:87 +msgid "Version ID" +msgstr "ID versione" + +#: ../../mod/appman.php:88 +msgid "Price of app" +msgstr "Prezzo app" + +#: ../../mod/appman.php:89 +msgid "Location (URL) to purchase app" +msgstr "Indirizzo (URL) per acquistare la app" + +#: ../../mod/poke.php:159 +msgid "Poke/Prod" +msgstr "Poke/Prod" + +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" +msgstr "Manda un poke, un prod o altro" + +#: ../../mod/poke.php:161 +msgid "Recipient" +msgstr "Destinatario" + +#: ../../mod/poke.php:162 +msgid "Choose what you wish to do to recipient" +msgstr "Scegli cosa vuoi inviare al destinatario" + +#: ../../mod/poke.php:165 +msgid "Make this post private" +msgstr "Rendi privato questo articolo" + +#: ../../mod/viewconnections.php:58 +msgid "No connections." +msgstr "Nessun contatto." + +#: ../../mod/viewconnections.php:70 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visita il profilo di %s [%s]" + +#: ../../mod/viewconnections.php:85 +msgid "View Connnections" +msgstr "Guarda i contatti" + +#: ../../mod/admin.php:52 +msgid "Theme settings updated." +msgstr "Le impostazioni del tema sono state aggiornate." + +#: ../../mod/admin.php:92 ../../mod/admin.php:440 +msgid "Site" +msgstr "Sito" + +#: ../../mod/admin.php:93 +msgid "Accounts" +msgstr "Accounts" + +#: ../../mod/admin.php:94 ../../mod/admin.php:883 +msgid "Channels" +msgstr "Canali" + +#: ../../mod/admin.php:95 ../../mod/admin.php:974 ../../mod/admin.php:1016 +msgid "Plugins" +msgstr "Plugin" + +#: ../../mod/admin.php:96 ../../mod/admin.php:1179 ../../mod/admin.php:1215 +msgid "Themes" +msgstr "Temi" + +#: ../../mod/admin.php:97 ../../mod/admin.php:540 +msgid "Server" +msgstr "Server" + +#: ../../mod/admin.php:98 +msgid "DB updates" +msgstr "Aggiornamenti al DB" + +#: ../../mod/admin.php:112 ../../mod/admin.php:119 ../../mod/admin.php:1302 +msgid "Logs" +msgstr "Log" + +#: ../../mod/admin.php:118 +msgid "Plugin Features" +msgstr "Funzionalità dei componenti aggiuntivi" + +#: ../../mod/admin.php:120 +msgid "User registrations waiting for confirmation" +msgstr "Registrazioni in attesa" + +#: ../../mod/admin.php:197 +msgid "Message queues" +msgstr "Messaggi in attesa di recapito" + +#: ../../mod/admin.php:202 ../../mod/admin.php:439 ../../mod/admin.php:539 +#: ../../mod/admin.php:748 ../../mod/admin.php:882 ../../mod/admin.php:973 +#: ../../mod/admin.php:1015 ../../mod/admin.php:1178 ../../mod/admin.php:1214 +#: ../../mod/admin.php:1301 +msgid "Administration" +msgstr "Amministrazione" + +#: ../../mod/admin.php:203 +msgid "Summary" +msgstr "Riepilogo" + +<<<<<<< HEAD +#: ../../mod/admin.php:205 +msgid "Registered users" +msgstr "Utenti registrati" + +#: ../../mod/admin.php:207 ../../mod/admin.php:543 +msgid "Pending registrations" +msgstr "Registrazioni da approvare" + +#: ../../mod/admin.php:208 +msgid "Version" +msgstr "Versione" + +#: ../../mod/admin.php:210 ../../mod/admin.php:544 +msgid "Active plugins" +msgstr "Plugin attivi" + +#: ../../mod/admin.php:360 +msgid "Site settings updated." +msgstr "Impostazioni del sito aggiornate." +======= +#: ../../mod/item.php:352 +msgid "Empty post discarded." +msgstr "L'articolo vuoto è stato ignorato." + +#: ../../mod/item.php:392 +msgid "Executable content type not permitted to this channel." +msgstr "I contenuti eseguibili non sono permessi su questo canale." + +#: ../../mod/item.php:806 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Articolo non salvato." + +#: ../../mod/item.php:1249 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Hai raggiunto il limite massimo di %1$.0f articoli sulla pagina principale." + +#: ../../mod/item.php:1255 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web." +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb + +#: ../../mod/admin.php:391 +msgid "No special theme for accessibility" +msgstr "Nessun tema speciale per l'accessibilità" + +#: ../../mod/admin.php:420 +msgid "Yes - with approval" +msgstr "Sì - con approvazione" + +#: ../../mod/admin.php:426 +msgid "My site is not a public server" +msgstr "Non è un server pubblico" + +#: ../../mod/admin.php:427 +msgid "My site has paid access only" +msgstr "È un servizio a pagamento" + +#: ../../mod/admin.php:428 +msgid "My site has free access only" +msgstr "È un servizio gratuito" + +<<<<<<< HEAD +#: ../../mod/admin.php:429 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento" + +#: ../../mod/admin.php:442 ../../mod/register.php:189 +msgid "Registration" +msgstr "Registrazione" + +#: ../../mod/admin.php:443 +msgid "File upload" +msgstr "Caricamento file" +======= +#: ../../mod/viewconnections.php:58 +msgid "No connections." +msgstr "Nessun contatto." + +#: ../../mod/viewconnections.php:70 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visita il profilo di %s [%s]" + +#: ../../mod/viewconnections.php:85 +msgid "View Connnections" +msgstr "Guarda i contatti" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb + +#: ../../mod/admin.php:444 +msgid "Policies" +msgstr "Politiche" + +#: ../../mod/admin.php:449 +msgid "Site name" +msgstr "Nome del sito" + +#: ../../mod/admin.php:450 +msgid "Banner/Logo" +msgstr "Banner o logo" + +#: ../../mod/admin.php:451 +msgid "Administrator Information" +msgstr "Informazioni sull'amministrazione" + +#: ../../mod/admin.php:451 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode" + +#: ../../mod/admin.php:452 +msgid "System language" +msgstr "Lingua di sistema" + +#: ../../mod/admin.php:453 +msgid "System theme" +msgstr "Tema di sistema" + +#: ../../mod/admin.php:453 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema" + +#: ../../mod/admin.php:454 +msgid "Mobile system theme" +msgstr "Tema di sistema per dispositivi mobili" + +#: ../../mod/admin.php:454 +msgid "Theme for mobile devices" +msgstr "Tema per i dispositivi mobili" + +#: ../../mod/admin.php:455 +msgid "Accessibility system theme" +msgstr "Tema di sistema ad alta accessibilità" + +#: ../../mod/admin.php:455 +msgid "Accessibility theme" +msgstr "Tema ad alta accessibilità" + +#: ../../mod/admin.php:456 +msgid "Channel to use for this website's static pages" +msgstr "Canale da usare per le pagine statiche di questo sito" + +#: ../../mod/admin.php:456 +msgid "Site Channel" +msgstr "Canale del sito" + +#: ../../mod/admin.php:458 +msgid "Maximum image size" +msgstr "Dimensione massima immagini" + +#: ../../mod/admin.php:458 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." + +#: ../../mod/admin.php:459 +msgid "Does this site allow new member registration?" +msgstr "Questo sito permette a nuovi utenti di registrarsi?" + +#: ../../mod/admin.php:460 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Come descriveresti il tipo di servizio proposto da questo server?" + +#: ../../mod/admin.php:461 +msgid "Register text" +msgstr "Testo diregistrazione" + +#: ../../mod/admin.php:461 +msgid "Will be displayed prominently on the registration page." +msgstr "Sarà mostrato ben visibile nella pagina di registrazione." + +#: ../../mod/admin.php:462 +msgid "Accounts abandoned after x days" +msgstr "Account abbandonati dopo X giorni" + +#: ../../mod/admin.php:462 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo." + +#: ../../mod/admin.php:463 +msgid "Allowed friend domains" +msgstr "Domini fidati e consentiti" + +#: ../../mod/admin.php:463 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio." + +#: ../../mod/admin.php:464 +msgid "Allowed email domains" +msgstr "Domini email consentiti" + +#: ../../mod/admin.php:464 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio." + +#: ../../mod/admin.php:465 +msgid "Block public" +msgstr "Blocca pagine pubbliche" + +#: ../../mod/admin.php:465 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso." + +#: ../../mod/admin.php:466 +msgid "Force publish" +msgstr "Forza la publicazione del profilo" + +#: ../../mod/admin.php:466 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Seleziona per mostrare nell'elenco dei canali del sito tutti i profili registrati." + +#: ../../mod/admin.php:467 +msgid "Disable discovery tab" +msgstr "Disabilita la funzione 'scopri'" + +#: ../../mod/admin.php:467 +msgid "" +"Remove the tab in the network view with public content pulled from sources " +"chosen for this site." +msgstr "Nell'area della rete personale non comparirà più la scheda con i contenuti acquisiti da altri siti." + +#: ../../mod/admin.php:468 +msgid "No login on Homepage" +msgstr "Non mostrare il login sulla homepage" + +#: ../../mod/admin.php:468 +msgid "" +"Check to hide the login form from your sites homepage when visitors arrive " +"who are not logged in (e.g. when you put the content of the homepage in via " +"the site channel)." +msgstr "Per nascondere la possibilità di fare login ai visitatori (per esempio, quando il contenuto della homepage del sito è alimentato dal canale)." + +#: ../../mod/admin.php:470 +msgid "Proxy user" +msgstr "Utente proxy" + +#: ../../mod/admin.php:471 +msgid "Proxy URL" +msgstr "URL proxy" + +#: ../../mod/admin.php:472 +msgid "Network timeout" +msgstr "Timeout rete" + +#: ../../mod/admin.php:472 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)." + +#: ../../mod/admin.php:473 +msgid "Delivery interval" +msgstr "Recapito ritardato" + +#: ../../mod/admin.php:473 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "RItarda il processo di recapito di questo numero di secondi per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati." + +#: ../../mod/admin.php:474 +msgid "Poll interval" +msgstr "Intervallo di polling" + +#: ../../mod/admin.php:474 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Ritarda i processi di polling in background di questo numero di secondi per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'." + +#: ../../mod/admin.php:475 +msgid "Maximum Load Average" +msgstr "Carico massimo medio" + +#: ../../mod/admin.php:475 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50." + +#: ../../mod/admin.php:531 +msgid "No server found" +msgstr "Server non trovato" + +#: ../../mod/admin.php:538 ../../mod/admin.php:762 +msgid "ID" +msgstr "ID" + +#: ../../mod/admin.php:538 +msgid "for channel" +msgstr "per canale" + +#: ../../mod/admin.php:538 +msgid "on server" +msgstr "sul server" + +#: ../../mod/admin.php:538 +msgid "Status" +msgstr "Stato" + +#: ../../mod/admin.php:559 +msgid "Update has been marked successful" +msgstr "L'aggiornamento è stato marcato come eseguito." + +#: ../../mod/admin.php:569 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema." + +#: ../../mod/admin.php:572 +#, php-format +msgid "Update %s was successfully applied." +msgstr "L'aggiornamento %s è terminato correttamente." + +#: ../../mod/admin.php:576 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente." + +#: ../../mod/admin.php:579 +#, php-format +msgid "Update function %s could not be found." +msgstr "Impossibile trovare la funzione di aggiornamento %s" + +#: ../../mod/admin.php:594 +msgid "No failed updates." +msgstr "Nessun aggiornamento fallito." + +#: ../../mod/admin.php:598 +msgid "Failed Updates" +msgstr "Aggiornamenti falliti." + +#: ../../mod/admin.php:600 +msgid "Mark success (if update was manually applied)" +msgstr "Marca come eseguito (se applicato manualmente)." + +#: ../../mod/admin.php:601 +msgid "Attempt to execute this update step automatically" +msgstr "Tenta di eseguire in automatico questo passaggio dell'aggiornamento." + +#: ../../mod/admin.php:627 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s utente bloccato/sbloccato" +msgstr[1] "%s utenti bloccati/sbloccati" + +#: ../../mod/admin.php:634 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s utente cancellato" +msgstr[1] "%s utenti cancellati" + +#: ../../mod/admin.php:665 +msgid "Account not found" +msgstr "Account non trovato" + +#: ../../mod/admin.php:676 +#, php-format +msgid "User '%s' deleted" +msgstr "Utente '%s' eliminato" + +#: ../../mod/admin.php:685 +#, php-format +msgid "User '%s' unblocked" +msgstr "Utente '%s' sbloccato" + +#: ../../mod/admin.php:685 +#, php-format +msgid "User '%s' blocked" +msgstr "Utente '%s' bloccato" + +#: ../../mod/admin.php:749 ../../mod/admin.php:761 +msgid "Users" +msgstr "Utenti" + +#: ../../mod/admin.php:751 ../../mod/admin.php:885 +msgid "select all" +msgstr "seleziona tutti" + +#: ../../mod/admin.php:752 +msgid "User registrations waiting for confirm" +msgstr "Richieste di registrazione in attesa di conferma" + +#: ../../mod/admin.php:753 +msgid "Request date" +msgstr "Data richiesta" + +#: ../../mod/admin.php:754 +msgid "No registrations." +msgstr "Nessuna registrazione." + +#: ../../mod/admin.php:755 +msgid "Approve" +msgstr "Approva" + +#: ../../mod/admin.php:756 +msgid "Deny" +msgstr "Nega" + +#: ../../mod/admin.php:762 +msgid "Register date" +msgstr "Data registrazione" + +#: ../../mod/admin.php:762 +msgid "Last login" +msgstr "Ultimo accesso" + +#: ../../mod/admin.php:762 +msgid "Expires" +msgstr "Con scadenza" + +#: ../../mod/admin.php:762 +msgid "Service Class" +msgstr "Service Class" + +#: ../../mod/admin.php:764 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Gli utenti selezionati saranno eliminati!\\n\\nTutto quello che gli utenti hanno pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?" + +#: ../../mod/admin.php:765 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "L'utente {0} sarà eliminato!\\n\\nTutto quello che ha pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?" + +#: ../../mod/admin.php:797 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channelss censored/uncensored" +msgstr[0] "Censura modificata per %s canale" +msgstr[1] "Censura modificata per %s canali" + +#: ../../mod/admin.php:804 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s canale è stato rimosso" +msgstr[1] "%s canali sono stati rimossi" + +#: ../../mod/admin.php:823 +msgid "Channel not found" +msgstr "Canale non trovato" + +#: ../../mod/admin.php:834 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Il canale '%s' è stato rimosso" + +#: ../../mod/admin.php:844 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Rimossa la censura dal canale '%s'" + +#: ../../mod/admin.php:844 +#, php-format +msgid "Channel '%s' censored" +msgstr "Applicata una censura al canale '%s'" + +#: ../../mod/admin.php:887 +msgid "Censor" +msgstr "Applica una censura" + +#: ../../mod/admin.php:888 +msgid "Uncensor" +msgstr "Rimuovi la censura" + +#: ../../mod/admin.php:891 +msgid "UID" +msgstr "UID" + +#: ../../mod/admin.php:893 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" + +#: ../../mod/admin.php:894 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" + +#: ../../mod/admin.php:933 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s non attivo." + +#: ../../mod/admin.php:937 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s attivo." + +#: ../../mod/admin.php:947 ../../mod/admin.php:1149 +msgid "Disable" +msgstr "Disattiva" + +#: ../../mod/admin.php:949 ../../mod/admin.php:1151 +msgid "Enable" +msgstr "Attiva" + +#: ../../mod/admin.php:975 ../../mod/admin.php:1180 +msgid "Toggle" +msgstr "Attiva/disattiva" + +#: ../../mod/admin.php:983 ../../mod/admin.php:1190 +msgid "Author: " +msgstr "Autore:" + +#: ../../mod/admin.php:984 ../../mod/admin.php:1191 +msgid "Maintainer: " +msgstr "Gestore:" + +#: ../../mod/admin.php:1113 +msgid "No themes found." +msgstr "Nessun tema trovato." + +#: ../../mod/admin.php:1172 +msgid "Screenshot" +msgstr "Istantanea dello schermo" + +#: ../../mod/admin.php:1220 +msgid "[Experimental]" +msgstr "[Sperimentale]" + +#: ../../mod/admin.php:1221 +msgid "[Unsupported]" +msgstr "[Non supportato]" + +#: ../../mod/admin.php:1248 +msgid "Log settings updated." +msgstr "Impostazioni di log aggiornate." + +#: ../../mod/admin.php:1304 +msgid "Clear" +msgstr "Pulisci" + +#: ../../mod/admin.php:1310 +msgid "Debugging" +msgstr "Debugging" + +#: ../../mod/admin.php:1311 +msgid "Log file" +msgstr "File di log" + +#: ../../mod/admin.php:1311 +msgid "" +"Must be writable by web server. Relative to your Red top-level directory." +msgstr "Deve essere scrivibile dal web server. È relativa alla cartella dove è installato Red." + +#: ../../mod/admin.php:1312 +msgid "Log level" +msgstr "Livello di log" + +#: ../../mod/register.php:43 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!" + +#: ../../mod/register.php:49 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio." + +#: ../../mod/register.php:77 +msgid "Passwords do not match." +msgstr "Le password non corrispondono." + +#: ../../mod/register.php:105 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata." + +#: ../../mod/register.php:111 +msgid "Your registration is pending approval by the site owner." +msgstr "La tua richiesta è in attesa di approvazione da parte dell'amministratore del sito." + +#: ../../mod/register.php:114 +msgid "Your registration can not be processed." +msgstr "La tua registrazione non puo' essere acquisita." + +#: ../../mod/register.php:147 +msgid "Registration on this site/hub is by approval only." +msgstr "La registrazione su questo sito è soggetta ad approvazione." + +#: ../../mod/register.php:148 +msgid "Register at another affiliated site/hub" +msgstr "Registrati su un altro server affiliato" + +#: ../../mod/register.php:156 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." + +#: ../../mod/register.php:167 +msgid "Terms of Service" +msgstr "Condizioni d'Uso" + +#: ../../mod/register.php:173 +#, php-format +msgid "I accept the %s for this website" +msgstr "Accetto le %s di questo sito" + +#: ../../mod/register.php:175 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Ho più di 13 anni e accetto le %s di questo sito" + +#: ../../mod/register.php:194 +msgid "Membership on this site is by invitation only." +msgstr "Per registrarsi su questo sito è necessario un invito." + +#: ../../mod/register.php:195 +msgid "Please enter your invitation code" +msgstr "Inserisci il codice dell'invito" + +<<<<<<< HEAD +#: ../../mod/register.php:198 +msgid "Your email address" +msgstr "Il tuo indirizzo email" + +#: ../../mod/register.php:199 +msgid "Choose a password" +msgstr "Scegli una password" +======= #: ../../mod/notifications.php:94 ../../mod/notify.php:54 msgid "No more system notifications." msgstr "Non ci sono nuove notifiche di sistema." @@ -7320,184 +8816,201 @@ msgstr "Non ci sono nuove notifiche di sistema." #: ../../mod/notifications.php:98 ../../mod/notify.php:58 msgid "System Notifications" msgstr "Notifiche di sistema" +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "Impossibile raggiungere il tuo hub." +#: ../../mod/register.php:200 +msgid "Please re-enter your password" +msgstr "Ripeti la password per verifica" -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Inviato!" +#: ../../mod/filer.php:49 +msgid "- select -" +msgstr "- scegli -" -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" -msgstr "la firma riscontrata non è valida" +#: ../../mod/manage.php:64 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Hai creato %1$.0f dei %2$.0f canali permessi." -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "Errore del protocollo OpenID. Nessun ID ricevuto in risposta." +#: ../../mod/manage.php:72 +msgid "Create a new channel" +msgstr "Crea un nuovo canale" -#: ../../view/theme/apw/php/config.php:202 -#: ../../view/theme/apw/php/config.php:236 -msgid "Schema Default" -msgstr "Schema predefinito" +#: ../../mod/manage.php:77 +msgid "Channel Manager" +msgstr "Gestione canali" -#: ../../view/theme/apw/php/config.php:203 -msgid "Sans-Serif" -msgstr "Sans-Serif" +#: ../../mod/manage.php:78 +msgid "Current Channel" +msgstr "Canale attuale" -#: ../../view/theme/apw/php/config.php:204 -msgid "Monospace" -msgstr "Monospace" +#: ../../mod/manage.php:80 +msgid "Attach to one of your channels by selecting it." +msgstr "Seleziona il canale a cui vuoi passare." + +#: ../../mod/manage.php:81 +msgid "Default Channel" +msgstr "Canale predefinito" + +#: ../../mod/manage.php:82 +msgid "Make Default" +msgstr "Rendi predefinito" + +#: ../../mod/invite.php:25 +msgid "Total invitation limit exceeded." +msgstr "Hai superato il numero massimo di inviti." + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: non è un indirizzo email valido." + +#: ../../mod/invite.php:76 +msgid "Please join us on Red" +msgstr "Vieni con noi su Red" + +#: ../../mod/invite.php:87 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario." + +#: ../../mod/invite.php:92 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: la consegna del messaggio è fallita." + +#: ../../mod/invite.php:96 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d messaggio inviato." +msgstr[1] "%d messaggi inviati." + +#: ../../mod/invite.php:115 +msgid "You have no more invitations available" +msgstr "Non hai altri inviti disponibili" + +#: ../../mod/invite.php:141 +msgid "Send invitations" +msgstr "Spedisci inviti" + +#: ../../mod/invite.php:142 +msgid "Enter email addresses, one per line:" +msgstr "Inserisci gli indirizzi email, uno per riga:" + +#: ../../mod/invite.php:144 +msgid "" +"You are cordially invited to join me and some other close friends on the Red" +" Matrix - a revolutionary new decentralised communication and information " +"tool." +msgstr "Questo è un invito cordiale ad unirti a me e ad altri miei amici stretti su Red Matrix - uno nuovo strumento di comunicazione decentralizzato e rivoluzionario." + +#: ../../mod/invite.php:146 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Sarà necessario fornire questo codice invito: $invite_code" + +#: ../../mod/invite.php:147 +msgid "Please visit my channel at" +msgstr "Puoi visitare il mio canale su" + +#: ../../mod/invite.php:151 +msgid "" +"Once you have registered (on ANY Red Matrix site - they are all inter-" +"connected), please connect with my Red Matrix channel address:" +msgstr "Una volta che avrai completato la registrazione (su QUALSIASI sito Red Matrix - sono tutti interconnessi), potrai connetterti al mio canale:" + +#: ../../mod/invite.php:153 +msgid "Click the [Register] link on the following page to join." +msgstr "Fai clic su [Registrati] nella pagina seguente per iscriverti." + +#: ../../mod/invite.php:155 +msgid "" +"For more information about the Red Matrix Project and why it has the " +"potential to change the internet as we know it, please visit " +"http://getzot.com" +msgstr "Per saperne di più sul progetto Red Matrix e sul perché potrebbe cambiare internet per come la conosciamo, visita http://getzot.com" + +#: ../../mod/wall_upload.php:34 +msgid "Wall Photos" +msgstr "Foto della bacheca" + +#: ../../mod/common.php:10 +msgid "No channel." +msgstr "Nessun canale." + +#: ../../mod/common.php:39 +msgid "Common connections" +msgstr "Contatti in comune" + +#: ../../mod/common.php:44 +msgid "No connections in common." +msgstr "Nessun contatto in comune." + +#: ../../mod/regmod.php:12 +msgid "Please login." +msgstr "Accedi." + +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" +msgstr "Scegli una cartella di segnalibri" + +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" +msgstr "Salva segnalibro" + +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" +msgstr "URL del segnalibro" + +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "O inserisci il nome di una nuova cartella di segnalibri" + +#: ../../boot.php:1259 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "%s: aggiornamento fallito. Controlla i log di errore." + +#: ../../boot.php:1262 +#, php-format +msgid "Update Error at %s" +msgstr "Errore di aggiornamento su %s" + +#: ../../boot.php:1426 +msgid "" +"Create an account to access services and applications within the Red Matrix" +msgstr "Registrati per accedere ai servizi e alle applicazioni di Red Matrix" + +#: ../../boot.php:1454 +msgid "Password" +msgstr "Password" + +#: ../../boot.php:1455 +msgid "Remember me" +msgstr "Resta connesso" + +#: ../../boot.php:1460 +msgid "Forgot your password?" +msgstr "Hai dimenticato la password?" + +#: ../../boot.php:1525 +msgid "permission denied" +msgstr "permesso negato" + +#: ../../boot.php:1526 +msgid "Got Zot?" +msgstr "Hai Zot?" + +#: ../../boot.php:1956 +msgid "toggle mobile" +msgstr "attiva/disattiva versione mobile" -#: ../../view/theme/apw/php/config.php:259 -#: ../../view/theme/blogga/php/config.php:69 -#: ../../view/theme/blogga/view/theme/blog/config.php:69 #: ../../view/theme/redbasic/php/config.php:102 msgid "Theme settings" msgstr "Impostazioni del tema" -#: ../../view/theme/apw/php/config.php:260 #: ../../view/theme/redbasic/php/config.php:103 msgid "Set scheme" msgstr "Schema" -#: ../../view/theme/apw/php/config.php:261 -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set font-size for posts and comments" -msgstr "Dimensioni del carattere per articoli e commenti" - -#: ../../view/theme/apw/php/config.php:262 -msgid "Set font face" -msgstr "Tipo di carattere" - -#: ../../view/theme/apw/php/config.php:263 -msgid "Set iconset" -msgstr "Icone" - -#: ../../view/theme/apw/php/config.php:264 -msgid "Set big shadow size, default 15px 15px 15px" -msgstr "Ombra grande, predefinita 15px 15px 15px" - -#: ../../view/theme/apw/php/config.php:265 -msgid "Set small shadow size, default 5px 5px 5px" -msgstr "Ombra piccola, predefinita 5px 5px 5px" - -#: ../../view/theme/apw/php/config.php:266 -msgid "Set shadow colour, default #000" -msgstr "Colore dell'ombra, predefinito #000" - -#: ../../view/theme/apw/php/config.php:267 -msgid "Set radius size, default 5px" -msgstr "Raggio degli angoli, predefinito 5px" - -#: ../../view/theme/apw/php/config.php:268 -msgid "Set line-height for posts and comments" -msgstr "Altezza della riga per articoli e commenti" - -#: ../../view/theme/apw/php/config.php:269 -msgid "Set background image" -msgstr "Immagine di sfondo" - -#: ../../view/theme/apw/php/config.php:270 -msgid "Set background attachment" -msgstr "Imposta un allegato di sfondo" - -#: ../../view/theme/apw/php/config.php:271 -msgid "Set background colour" -msgstr "Colore di sfondo" - -#: ../../view/theme/apw/php/config.php:272 -msgid "Set section background image" -msgstr "Immagine di sfondo della sezione" - -#: ../../view/theme/apw/php/config.php:273 -msgid "Set section background colour" -msgstr "Colore di sfondo della sezione" - -#: ../../view/theme/apw/php/config.php:274 -msgid "Set colour of items - use hex" -msgstr "Colore degli elementi della pagina - esadecimale" - -#: ../../view/theme/apw/php/config.php:275 -msgid "Set colour of links - use hex" -msgstr "Colore dei link - esadecimale" - -#: ../../view/theme/apw/php/config.php:276 -msgid "Set max-width for items. Default 400px" -msgstr "Larghezza massima degli elementi della pagina. Predefinita: 400px" - -#: ../../view/theme/apw/php/config.php:277 -msgid "Set min-width for items. Default 240px" -msgstr "Larghezza minima degli elementi della pagina. Predefinita: 240px" - -#: ../../view/theme/apw/php/config.php:278 -msgid "Set the generic content wrapper width. Default 48%" -msgstr "Larghezza di tutta l'area dei contenuti. Predefinita: 48%" - -#: ../../view/theme/apw/php/config.php:279 -msgid "Set colour of fonts - use hex" -msgstr "Colore dei caratteri - esadecimale" - -#: ../../view/theme/apw/php/config.php:280 -msgid "Set background-size element" -msgstr "Background-size element" - -#: ../../view/theme/apw/php/config.php:281 -msgid "Item opacity" -msgstr "Opacità degli elementi della pagina" - -#: ../../view/theme/apw/php/config.php:282 -msgid "Display post previews only" -msgstr "Mostra le anteprime solo degli articoli" - -#: ../../view/theme/apw/php/config.php:283 -msgid "Display side bar on channel page" -msgstr "Mostra la colonna laterale sulla pagina del canale" - -#: ../../view/theme/apw/php/config.php:284 -msgid "Colour of the navigation bar" -msgstr "Colore della barra di navigazione" - -#: ../../view/theme/apw/php/config.php:285 -msgid "Item float" -msgstr "Float degli oggetti della pagina" - -#: ../../view/theme/apw/php/config.php:286 -msgid "Left offset of the section element" -msgstr "Spazio a sinistra dell'elemento section" - -#: ../../view/theme/apw/php/config.php:287 -msgid "Right offset of the section element" -msgstr "Spazio a destra dell'elemento section" - -#: ../../view/theme/apw/php/config.php:288 -msgid "Section width" -msgstr "Larghezza section" - -#: ../../view/theme/apw/php/config.php:289 -msgid "Left offset of the aside" -msgstr "Spazio a sinistra del aside" - -#: ../../view/theme/apw/php/config.php:290 -msgid "Right offset of the aside element" -msgstr "Spazio a destra del aside" - -#: ../../view/theme/blogga/php/config.php:47 -#: ../../view/theme/blogga/view/theme/blog/config.php:47 -msgid "None" -msgstr "Nessuno" - -#: ../../view/theme/blogga/php/config.php:70 -#: ../../view/theme/blogga/view/theme/blog/config.php:70 -msgid "Header image" -msgstr "Immagine dell'intestazione" - -#: ../../view/theme/blogga/php/config.php:71 -#: ../../view/theme/blogga/view/theme/blog/config.php:71 -msgid "Header image only on profile pages" -msgstr "È possibile mettere un'immagine solo nell'intestazione dei profili" - #: ../../view/theme/redbasic/php/config.php:104 msgid "Narrow navbar" msgstr "Barra di navigazione ristretta" @@ -7578,6 +9091,10 @@ msgstr "Colore per le icone in evidenza" msgid "Set font-size for the entire application" msgstr "Dimensione font per tutto il sito" +#: ../../view/theme/redbasic/php/config.php:124 +msgid "Set font-size for posts and comments" +msgstr "Dimensioni del carattere per articoli e commenti" + #: ../../view/theme/redbasic/php/config.php:125 msgid "Set font-colour for posts and comments" msgstr "Colore del carattere per articoli e commenti" @@ -7617,42 +9134,3 @@ msgstr "Album con foto storte" #: ../../view/theme/redbasic/php/config.php:133 msgid "Are you a clean desk or a messy desk person?" msgstr "La tua scrivania è sempre a posto? Sei una persona disordinata?" - -#: ../../boot.php:1260 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "%s: aggiornamento fallito. Controlla i log di errore." - -#: ../../boot.php:1263 -#, php-format -msgid "Update Error at %s" -msgstr "Errore di aggiornamento su %s" - -#: ../../boot.php:1427 -msgid "" -"Create an account to access services and applications within the Red Matrix" -msgstr "Registrati per accedere ai servizi e alle applicazioni di Red Matrix" - -#: ../../boot.php:1455 -msgid "Password" -msgstr "Password" - -#: ../../boot.php:1456 -msgid "Remember me" -msgstr "Resta connesso" - -#: ../../boot.php:1461 -msgid "Forgot your password?" -msgstr "Hai dimenticato la password?" - -#: ../../boot.php:1526 -msgid "permission denied" -msgstr "permesso negato" - -#: ../../boot.php:1527 -msgid "Got Zot?" -msgstr "Hai Zot?" - -#: ../../boot.php:1957 -msgid "toggle mobile" -msgstr "attiva/disattiva versione mobile" diff --git a/view/it/strings.php b/view/it/strings.php index c288b2ff1..4b53f05b2 100644 --- a/view/it/strings.php +++ b/view/it/strings.php @@ -4,6 +4,16 @@ function string_plural_select_it($n){ return ($n != 1);; } ; +<<<<<<< HEAD +$a->strings["Channel is blocked on this site."] = "Il canale è bloccato per questo sito."; +$a->strings["Channel location missing."] = "Manca l'indirizzo del canale."; +$a->strings["Response from remote channel was incomplete."] = "La risposta dal canale non è completa."; +$a->strings["Channel was deleted and no longer exists."] = "Il canale è stato rimosso e non esiste più."; +$a->strings["Channel discovery failed."] = "La ricerca del canale non ha avuto successo."; +$a->strings["local account not found."] = "l'account locale non è stato trovato."; +$a->strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso."; +$a->strings["Edit File properties"] = "Modifica le proprietà dei file"; +======= $a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; $a->strings["Profile Photos"] = "Foto del profilo"; $a->strings["Matrix"] = "La tua rete"; @@ -96,16 +106,137 @@ $a->strings["database storage failed."] = "scrittura su database fallita."; $a->strings["Logged out."] = "Uscita effettuata."; $a->strings["Failed authentication"] = "Autenticazione fallita"; $a->strings["Login failed."] = "Accesso fallito."; +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb $a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; $a->strings["Starts:"] = "Inizio:"; $a->strings["Finishes:"] = "Fine:"; $a->strings["Location:"] = "Luogo:"; +$a->strings["Categories"] = "Categorie"; +$a->strings["App Category"] = "Categoria app"; +$a->strings["System"] = "Sistema"; +$a->strings["Personal"] = "Personali"; +$a->strings["Connect"] = "Entra in contatto"; +$a->strings["Ignore/Hide"] = "Ignora/nascondi"; +$a->strings["Suggestions"] = "Suggerimenti"; +$a->strings["See more..."] = "Altro..."; +$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Hai attivato %1$.0f delle %2$.0f connessioni permesse."; +$a->strings["Add New Connection"] = "Aggiungi un contatto"; +$a->strings["Enter the channel address"] = "Scrivi l'indirizzo del canale"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Per esempio: mario@pippo.it oppure http://pluto.com/barbara"; +$a->strings["Notes"] = "Note"; +$a->strings["Save"] = "Salva"; +$a->strings["Remove term"] = "Rimuovi termine"; +$a->strings["Saved Searches"] = "Ricerche salvate"; +$a->strings["add"] = "aggiungi"; +$a->strings["Saved Folders"] = "Cartelle salvate"; +$a->strings["Everything"] = "Tutto"; +$a->strings["Archives"] = "Archivi"; +$a->strings["Refresh"] = "Aggiorna"; +$a->strings["Me"] = "Io"; +$a->strings["Best Friends"] = "Buoni amici"; +$a->strings["Friends"] = "Amici"; +$a->strings["Co-workers"] = "Colleghi"; +$a->strings["Former Friends"] = "Ex amici"; +$a->strings["Acquaintances"] = "Conoscenti"; +$a->strings["Everybody"] = "Tutti"; +$a->strings["Account settings"] = "Impostazioni dell'account"; +$a->strings["Channel settings"] = "Impostazioni del canale"; +$a->strings["Additional features"] = "Funzionalità aggiuntive"; +$a->strings["Feature settings"] = "Impostazioni aggiuntive"; +$a->strings["Display settings"] = "Impostazioni grafiche"; +$a->strings["Connected apps"] = "App connesse"; +$a->strings["Export channel"] = "Esporta il canale"; +$a->strings["Automatic Permissions (Advanced)"] = "Permessi predefiniti (avanzato)"; +$a->strings["Premium Channel Settings"] = "Canale premium - impostazioni"; +$a->strings["Channel Sources"] = "Sorgenti del canale"; +$a->strings["Settings"] = "Impostazioni"; +$a->strings["Check Mail"] = "Controlla i messaggi"; +$a->strings["New Message"] = "Nuovo messaggio"; +$a->strings["Chat Rooms"] = "Chat attive"; +$a->strings["Bookmarked Chatrooms"] = "Chat nei segnalibri"; +$a->strings["Suggested Chatrooms"] = "Chat suggerite"; +$a->strings["Public Timeline"] = "Diario pubblico"; +$a->strings["Logout"] = "Esci"; +$a->strings["End this session"] = "Chiudi questa sessione"; +$a->strings["Home"] = "Bacheca"; +$a->strings["Your posts and conversations"] = "I tuoi articoli e conversazioni"; +$a->strings["View Profile"] = "Profilo"; +$a->strings["Your profile page"] = "Il tuo profilo"; +$a->strings["Edit Profiles"] = "Modifica i profili"; +$a->strings["Manage/Edit profiles"] = "Gestisci/modifica i profili"; +$a->strings["Photos"] = "Foto"; +$a->strings["Your photos"] = "Le tue foto"; +$a->strings["Files"] = "Elenco file"; +$a->strings["Your files"] = "I tuoi file"; +$a->strings["Chat"] = "Chat"; +$a->strings["Your chatrooms"] = "Le tue chat"; +$a->strings["Events"] = "Eventi"; +$a->strings["Your events"] = "I tuoi eventi"; +$a->strings["Bookmarks"] = "Segnalibri"; +$a->strings["Your bookmarks"] = "I tuoi segnalibri"; +$a->strings["Webpages"] = "Pagine web"; +$a->strings["Your webpages"] = "Le tue pagine web"; +$a->strings["Login"] = "Accedi"; +$a->strings["Sign in"] = "Entra"; +$a->strings["%s - click to logout"] = "%s - clicca per uscire"; +$a->strings["Click to authenticate to your home hub"] = "Clicca per autenticarti sul tuo server principale"; +$a->strings["Home Page"] = "Bacheca"; +$a->strings["Register"] = "Iscriviti"; +$a->strings["Create an account"] = "Crea un account"; +$a->strings["Help"] = "Guida"; +$a->strings["Help and documentation"] = "Guida e documentazione"; +$a->strings["Apps"] = "Apps"; +$a->strings["Addon applications, utilities, games"] = "App, strumenti e giochi aggiuntivi"; +$a->strings["Search"] = "Cerca"; +$a->strings["Search site content"] = "Cerca nel sito"; +$a->strings["Directory"] = "Tutti i canali"; +$a->strings["Channel Locator"] = "Ricerca canali"; +$a->strings["Matrix"] = "La tua rete"; +$a->strings["Your matrix"] = "La tua rete"; +$a->strings["Mark all matrix notifications seen"] = "Segna come lette le notifiche della tua rete"; +$a->strings["Channel Home"] = "Bacheca del canale"; +$a->strings["Channel home"] = "Bacheca del canale"; +$a->strings["Mark all channel notifications seen"] = "Segna come lette le notifiche dei canali"; +$a->strings["Connections"] = "Contatti"; +$a->strings["Notices"] = "Notifiche"; +$a->strings["Notifications"] = "Notifiche"; +$a->strings["See all notifications"] = "Vedi tutte le notifiche"; +$a->strings["Mark all system notifications seen"] = "Segna come lette le notifiche di sistema"; +$a->strings["Mail"] = "Messaggi"; +$a->strings["Private mail"] = "Messaggi privati"; +$a->strings["See all private messages"] = "Guarda tutti i messaggi privati"; +$a->strings["Mark all private messages seen"] = "Segna come letti tutti i messaggi privati"; +$a->strings["Inbox"] = "In arrivo"; +$a->strings["Outbox"] = "Inviati"; +$a->strings["Event Calendar"] = "Calendario"; +$a->strings["See all events"] = "Guarda tutti gli eventi"; +$a->strings["Mark all events seen"] = "Marca come letti tutti gli eventi"; +$a->strings["Channel Select"] = "Gestisci i canali"; +$a->strings["Manage Your Channels"] = "Gestisci i contatti dei tuoi canali"; +$a->strings["Account/Channel Settings"] = "Impostazioni account e canali"; +$a->strings["Manage/Edit Friends and Connections"] = "Modifica amici e contatti"; +$a->strings["Admin"] = "Amministrazione"; +$a->strings["Site Setup and Configuration"] = "Configurazione del sito"; +$a->strings["Nothing new here"] = "Niente di nuovo qui"; +$a->strings["Please wait..."] = "Attendere..."; +$a->strings["Embedded content"] = "Contenuti incorporati"; +$a->strings["Embedding disabled"] = "Contenuti incorporati - funzione disabilitata"; $a->strings["Image/photo"] = "Immagine"; $a->strings["Encrypted content"] = "Contenuto crittografato"; $a->strings["QR code"] = "QR code"; $a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s"; $a->strings["post"] = "l'articolo"; $a->strings["$1 wrote:"] = "$1 ha scritto:"; +<<<<<<< HEAD +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "È stato ripristinato un insieme con lo stesso nome che era stato eliminato in precedenza. I permessi già presenti potrebbero rimanere validi per i nuovi canali. Se non vuoi che ciò accada, devi creare un altro insieme con un nome diverso."; +$a->strings["Default privacy group for new contacts"] = "Insieme predefinito per i canali che inizi a seguire"; +$a->strings["All Channels"] = "Tutti i canali"; +$a->strings["edit"] = "modifica"; +$a->strings["Collections"] = "Insiemi di canali"; +$a->strings["Edit collection"] = "Modifica l'insieme di canali"; +$a->strings["Create a new collection"] = "Crea un nuovo insieme"; +$a->strings["Channels not in any collection"] = "Canali che non sono in un insieme"; +======= $a->strings["Private Message"] = "Messaggio privato"; $a->strings["Delete"] = "Elimina"; $a->strings["Select"] = "Seleziona"; @@ -266,55 +397,36 @@ $a->strings["Select a page layout: "] = "Scegli il layout della pagina:"; $a->strings["default"] = "predefinito"; $a->strings["Page content type: "] = "Contenuto della pagina:"; $a->strings["Select an alternate language"] = "Seleziona una lingua diversa"; +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb $a->strings["photo"] = "la foto"; $a->strings["event"] = "l'evento"; +$a->strings["channel"] = "canale"; $a->strings["status"] = "il messaggio di stato"; $a->strings["comment"] = "il commento"; -$a->strings["activity"] = "l'attività"; -$a->strings["Design"] = "Design"; -$a->strings["Blocks"] = "Riquadri"; -$a->strings["Menus"] = "Menù"; -$a->strings["Layouts"] = "Layout"; -$a->strings["Pages"] = "Pagine"; -$a->strings["%d invitation available"] = array( - 0 => "%d invito disponibile", - 1 => "%d inviti disponibili", -); -$a->strings["Advanced"] = "Avanzate"; -$a->strings["Find Channels"] = "Ricerca canali"; -$a->strings["Enter name or interest"] = "Scrivi un nome o un interesse"; -$a->strings["Connect/Follow"] = "Entra in contatto"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Per esempio: Mario Rossi, Pesca"; -$a->strings["Find"] = "Cerca"; -$a->strings["Channel Suggestions"] = "Canali suggeriti"; -$a->strings["Random Profile"] = "Profilo casuale"; -$a->strings["Invite Friends"] = "Invita amici"; -$a->strings["Exammple: name=fred and country=iceland"] = "Per esempio: name=mario e country=italy"; -$a->strings["Advanced Find"] = "Ricerca avanzata"; -$a->strings["Saved Folders"] = "Cartelle salvate"; -$a->strings["Everything"] = "Tutto"; -$a->strings["Categories"] = "Categorie"; -$a->strings["%d connection in common"] = array( - 0 => "%d contatto in comune", - 1 => "%d contatti in comune", -); -$a->strings["channel"] = "canale"; $a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; $a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; $a->strings["%1\$s is now connected with %2\$s"] = "%1\$s adesso è connesso con %2\$s"; $a->strings["%1\$s poked %2\$s"] = "%1\$s ha mandato un poke a %2\$s"; +$a->strings["poked"] = "ha ricevuto un poke"; $a->strings["%1\$s is currently %2\$s"] = "%1\$s al momento è %2\$s"; +$a->strings["Select"] = "Seleziona"; +$a->strings["Delete"] = "Elimina"; +$a->strings["Private Message"] = "Messaggio privato"; +$a->strings["Message is verified"] = "Messaggio verificato"; $a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; $a->strings["Categories:"] = "Categorie:"; $a->strings["Filed under:"] = "Classificato come:"; +$a->strings[" from %s"] = " da %s"; +$a->strings["last edited: %s"] = "ultima modifica: %s"; +$a->strings["Expires: %s"] = "Scadenza: %s"; $a->strings["View in context"] = "Vedi nel contesto"; +$a->strings["Please wait"] = "Attendere"; $a->strings["remove"] = "rimuovi"; $a->strings["Loading..."] = "Caricamento in corso..."; $a->strings["Delete Selected Items"] = "Elimina gli oggetti selezionati"; $a->strings["View Source"] = "Vedi il sorgente"; $a->strings["Follow Thread"] = "Segui la discussione"; $a->strings["View Status"] = "Guarda il messaggio di stato"; -$a->strings["View Profile"] = "Profilo"; $a->strings["View Photos"] = "Guarda le foto"; $a->strings["Matrix Activity"] = "Attività nella tua rete"; $a->strings["Edit Contact"] = "Modifica il contatto"; @@ -345,6 +457,7 @@ $a->strings["Tag term:"] = "Tag:"; $a->strings["Save to Folder:"] = "Salva nella cartella:"; $a->strings["Where are you right now?"] = "Dove sei ora?"; $a->strings["Expires YYYY-MM-DD HH:MM"] = "Scade il YYYY-MM-DD HH:MM"; +$a->strings["Preview"] = "Anteprima"; $a->strings["Share"] = "Condividi"; $a->strings["Page link title"] = "Link del titolo"; $a->strings["Post as"] = "Pubblica come "; @@ -369,6 +482,7 @@ $a->strings["permissions"] = "permessi"; $a->strings["Public post"] = "Articolo pubblico"; $a->strings["Example: bob@example.com, mary@example.com"] = "Per esempio: mario@esempio.com, simona@esempio.com"; $a->strings["Set expiration date"] = "Data di scadenza"; +$a->strings["Encrypt text"] = "Crittografia del testo"; $a->strings["OK"] = "OK"; $a->strings["Cancel"] = "Annulla"; $a->strings["Discover"] = "Scopri"; @@ -377,7 +491,6 @@ $a->strings["Commented Order"] = "Ultimi commenti"; $a->strings["Sort by Comment Date"] = "Per data del commento"; $a->strings["Posted Order"] = "Ultimi articoli"; $a->strings["Sort by Post Date"] = "Per data di creazione"; -$a->strings["Personal"] = "Personali"; $a->strings["Posts that mention or involve you"] = "Articoli che ti riguardano o ti menzionano"; $a->strings["New"] = "Novità"; $a->strings["Activity Stream - by date"] = "Elenco attività - per data"; @@ -389,32 +502,92 @@ $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"; +<<<<<<< HEAD +$a->strings["Photo Albums"] = "Album foto"; +======= $a->strings["Files"] = "Elenco file"; +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb $a->strings["Files and Storage"] = "Archivio file"; $a->strings["Chatrooms"] = "Chat"; $a->strings["Events and Calendar"] = "Calendario eventi"; -$a->strings["Bookmarks"] = "Segnalibri"; $a->strings["Saved Bookmarks"] = "Segnalibri salvati"; -$a->strings["Webpages"] = "Pagine web"; $a->strings["Manage Webpages"] = "Gestisci le pagine web"; -$a->strings["Miscellaneous"] = "Altro"; -$a->strings["year"] = "anno"; -$a->strings["month"] = "mese"; -$a->strings["day"] = "giorno"; -$a->strings["never"] = "mai"; -$a->strings["less than a second ago"] = "meno di un secondo fa"; -$a->strings["years"] = "anni"; -$a->strings["months"] = "mesi"; -$a->strings["week"] = "settimana"; -$a->strings["weeks"] = "settimane"; -$a->strings["days"] = "giorni"; -$a->strings["hour"] = "ora"; -$a->strings["hours"] = "ore"; -$a->strings["minute"] = "minuto"; -$a->strings["minutes"] = "minuti"; -$a->strings["second"] = "secondo"; -$a->strings["seconds"] = "secondi"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s fa"; +$a->strings["Default"] = "Predefinito"; +$a->strings["No recipient provided."] = "Devi scegliere un destinatario."; +$a->strings["[no subject]"] = "[nessun titolo]"; +$a->strings["Unable to determine sender."] = "Impossibile determinare il mittente."; +$a->strings["Stored post could not be verified."] = "Non è stato possibile verificare l'articolo inserito."; +$a->strings[" and "] = "e"; +$a->strings["public profile"] = "profilo pubblico"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; +$a->strings["Visit %1\$s's %2\$s"] = "Guarda %2\$s di %1\$s "; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha aggiornato %2\$s cambiando %3\$s."; +$a->strings["view full size"] = "guarda nelle dimensioni reali"; +$a->strings["%1\$s's bookmarks"] = "I segnalibri di %1\$s"; +$a->strings["Tags"] = "Tag"; +$a->strings["Keywords"] = "Parole chiave"; +$a->strings["have"] = "ho"; +$a->strings["has"] = "ha"; +$a->strings["want"] = "voglio"; +$a->strings["wants"] = "vuole"; +$a->strings["like"] = "mi piace"; +$a->strings["likes"] = "mi piace"; +$a->strings["dislike"] = "non mi piace"; +$a->strings["dislikes"] = "non mi piace"; +$a->strings["Edit"] = "Modifica"; +$a->strings["save to folder"] = "salva in una cartella"; +$a->strings["View all"] = "Vedi tuttomsgctxt "noun"; +$a->strings["Like"] = array( + 0 => "Mi piace", + 1 => "Mi piace", +); +$a->strings["Dislike"] = array( + 0 => "Non mi piace", + 1 => "Non mi piace", +); +$a->strings["add star"] = "aggiungi ai preferiti"; +$a->strings["remove star"] = "rimuovi dai preferiti"; +$a->strings["toggle star status"] = "Attiva/disattiva preferito"; +$a->strings["starred"] = "preferito"; +$a->strings["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["via"] = "via"; +$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca"; +$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca:"; +$a->strings["Bookmark Links"] = "I link dei segnalibrimsgctxt "noun"; +$a->strings["Likes"] = "Mi piacemsgctxt "noun"; +$a->strings["Dislikes"] = "Non mi piace"; +$a->strings["Close"] = "Chiudi"; +$a->strings["%d comment"] = array( + 0 => "%d commento", + 1 => "%d commenti", +); +$a->strings["show more"] = "mostra tutto"; +$a->strings["This is you"] = "Questo sei tu"; +$a->strings["Comment"] = "Commento"; +$a->strings["Submit"] = "Salva"; +$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["Permission denied"] = "Permesso negato"; +$a->strings["(Unknown)"] = "(Sconosciuto)"; +$a->strings["Item not found."] = "Elemento non trovato."; +$a->strings["Permission denied."] = "Permesso negato."; +$a->strings["Collection not found."] = "Insieme non trovato."; +$a->strings["Collection is empty."] = "L'insieme di canali è vuoto."; +$a->strings["Collection: %s"] = "Insieme: %s"; +$a->strings["Connection: %s"] = "Contatto: %s"; +$a->strings["Connection not found."] = "Contatto non trovato."; $a->strings["Sort Options"] = "Opzioni di ordinamento"; $a->strings["Alphabetic"] = "Alfabetico"; $a->strings["Reverse Alphabetic"] = "Alfabetico inverso"; @@ -422,6 +595,9 @@ $a->strings["Newest to Oldest"] = "Dal più nuovo al più vecchio"; $a->strings["Enable Safe Search"] = "Abilita SafeSearch"; $a->strings["Disable Safe Search"] = "Disabilita SafeSearch"; $a->strings["Safe Mode"] = "Modalità SafeSearch"; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "L'identificativo di sicurezza del modulo che hai riempito non è corretto. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto."; +$a->strings["created a new post"] = "Ha creato un nuovo articolo"; +$a->strings["commented on %s's post"] = "ha commentato l'articolo di %s"; $a->strings["Red Matrix Notification"] = "Notifica di Red Matrix"; $a->strings["redmatrix"] = "redmatrix"; $a->strings["Thank You,"] = "Grazie,"; @@ -461,6 +637,36 @@ $a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\ $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."; +<<<<<<< HEAD +$a->strings["Item was not found."] = "Elemento non trovato."; +$a->strings["No source file."] = "Nessun file di origine."; +$a->strings["Cannot locate file to replace"] = "Il file da sostituire non è stato trovato"; +$a->strings["Cannot locate file to revise/update"] = "Il file da aggiornare non è stato trovato"; +$a->strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d"; +$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati."; +$a->strings["File upload failed. Possible system limit or action terminated."] = "Caricamento file fallito, potrebbe aver superato i limiti o l'azione potrebbe essere stata interrotta."; +$a->strings["Stored file could not be verified. Upload failed."] = "Il file non può essere verificato. Caricamento fallito."; +$a->strings["Path not available."] = "Percorso non disponibile."; +$a->strings["Empty pathname"] = "Il percorso del file è vuoto"; +$a->strings["duplicate filename or path"] = "il file o percorso del file è duplicato"; +$a->strings["Path not found."] = "Percorso del file non trovato."; +$a->strings["mkdir failed."] = "mkdir fallito."; +$a->strings["database storage failed."] = "scrittura su database fallita."; +$a->strings["New Page"] = "Nuova pagina web"; +$a->strings["View"] = "Guarda"; +$a->strings["Actions"] = "Azioni"; +$a->strings["Page Link"] = "Link alla pagina"; +$a->strings["Title"] = "Titolo"; +$a->strings["Created"] = "Creato"; +$a->strings["Edited"] = "Modificato"; +$a->strings["Profile Photos"] = "Foto del profilo"; +$a->strings["Image exceeds website size limit of %lu bytes"] = "L'immagine supera il limite massimo di %lu bytes"; +$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto."; +$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine"; +$a->strings["Photo storage failed."] = "Impossibile caricare la foto."; +$a->strings["Upload New Photos"] = "Carica nuove foto"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; +======= $a->strings["General Features"] = "Funzionalità generali"; $a->strings["Content Expiration"] = "Scadenza"; $a->strings["Remove posts/comments and/or private messages at a future time"] = "Elimina gli articoli, i commenti o i messaggi privati dopo che è trascorso del tempo"; @@ -685,6 +891,7 @@ $a->strings["view full size"] = "guarda nelle dimensioni reali"; $a->strings["Click here to upgrade."] = "Clicca qui per aggiornare."; $a->strings["This action exceeds the limits set by your subscription plan."] = "Questa operazione esce dai termini del tuo abbonamento."; $a->strings["This action is not available under your subscription plan."] = "Questa operazione non è prevista dal tuo abbonamento."; +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb $a->strings["Male"] = "Maschio"; $a->strings["Female"] = "Femmina"; $a->strings["Currently Male"] = "Al momento maschio"; @@ -742,6 +949,341 @@ $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"; +<<<<<<< HEAD +$a->strings["Click here to upgrade."] = "Clicca qui per aggiornare."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa operazione esce dai termini del tuo abbonamento."; +$a->strings["This action is not available under your subscription plan."] = "Questa operazione non è prevista dal tuo abbonamento."; +$a->strings["Visible to everybody"] = "Visibile a tutti"; +$a->strings["Show"] = "Mostra"; +$a->strings["Don't show"] = "Non mostrare"; +$a->strings["Permissions"] = "Permessi"; +$a->strings["Not a valid email address"] = "Email non valida"; +$a->strings["Your email domain is not among those allowed on this site"] = "Il dominio della tua email attualmente non è permesso su questo sito"; +$a->strings["Your email address is already registered at this site."] = "La tua email è già registrata su questo sito."; +$a->strings["An invitation is required."] = "È necessario un invito."; +$a->strings["Invitation could not be verified."] = "L'invito non può essere verificato."; +$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste."; +$a->strings["Failed to store account information."] = "Non è stato possibile salvare le informazioni del tuo account."; +$a->strings["Registration request at %s"] = "Richiesta di registrazione su %s"; +$a->strings["Administrator"] = "Amministratore"; +$a->strings["your registration password"] = "la password di registrazione"; +$a->strings["Registration details for %s"] = "Dettagli della registrazione di %s"; +$a->strings["Account approved."] = "Account approvato."; +$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s"; +$a->strings["New window"] = "Nuova finestra"; +$a->strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra"; +$a->strings["Unknown | Not categorised"] = "Sconosciuto | Senza categoria"; +$a->strings["Block immediately"] = "Blocca subito"; +$a->strings["Shady, spammer, self-marketer"] = "Spammer o dedito al marketing"; +$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["Profile"] = "Profilo"; +$a->strings["Update"] = "Aggiorna"; +$a->strings["Install"] = "Installa"; +$a->strings["Unknown"] = "Sconosciuto"; +$a->strings["Logged out."] = "Uscita effettuata."; +$a->strings["Failed authentication"] = "Autenticazione fallita"; +$a->strings["Login failed."] = "Accesso fallito."; +$a->strings["prev"] = "prec"; +$a->strings["first"] = "inizio"; +$a->strings["last"] = "fine"; +$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["poke"] = "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["depressed"] = "in depressione"; +$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 category"] = "rimuovi la categoria"; +$a->strings["remove from file"] = "rimuovi dal file"; +$a->strings["Click to open/close"] = "Clicca per aprire/chiudere"; +$a->strings["link to source"] = "Link all'originale"; +$a->strings["Select a page layout: "] = "Scegli il layout della pagina:"; +$a->strings["default"] = "predefinito"; +$a->strings["Page content type: "] = "Contenuto della pagina:"; +$a->strings["Select an alternate language"] = "Seleziona una lingua diversa"; +$a->strings["activity"] = "l'attività"; +$a->strings["Design"] = "Design"; +$a->strings["Blocks"] = "Riquadri"; +$a->strings["Menus"] = "Menù"; +$a->strings["Layouts"] = "Layout"; +$a->strings["Pages"] = "Pagine"; +$a->strings["Missing room name"] = "Chat senza nome"; +$a->strings["Duplicate room name"] = "Il nome della chat è duplicato"; +$a->strings["Invalid room specifier."] = "Il nome della chat non è valido."; +$a->strings["Room not found."] = "Chat non trovata."; +$a->strings["Room is full"] = "La chat è al completo"; +$a->strings["General Features"] = "Funzionalità generali"; +$a->strings["Content Expiration"] = "Scadenza"; +$a->strings["Remove posts/comments and/or private messages at a future time"] = "Elimina gli articoli, i commenti o i messaggi privati dopo che è trascorso del tempo"; +$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["Private Notes"] = "Note private"; +$a->strings["Enables a tool to store notes and reminders"] = "Abilita il riquadro per scrivere annotazioni"; +$a->strings["Extended Identity Sharing"] = "Condivisione avanzata dell'identità"; +$a->strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "Rendi nota la tua identità a tutti i siti internet. Se disabilitato, la tua identità sarà comunicata solo ai siti red matrix."; +$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["Premium Channel"] = "Canale premium"; +$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ti permette di imporre delle restrizioni e dei termini d'uso a chi segue il canale"; +$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["Automatically import channel content from other channels or feeds"] = "Importa automaticamente il contenuto del canale da altri canali o feed"; +$a->strings["Even More Encryption"] = "Crittografia addizionale"; +$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Rendi possibile la crittografia dei contenuti tra mittente e destinatari con una chiave segreta"; +$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"] = "Filtra per insiemi di canali"; +$a->strings["Enable widget to display Network posts only from selected collections"] = "Mostra il riquadro per filtrare gli articoli di certi insiemi di canali"; +$a->strings["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["Suggest Channels"] = "Suggerisci canali"; +$a->strings["Show channel suggestions"] = "Mostra alcuni canali che potrebbero interessarti"; +$a->strings["Post/Comment Tools"] = "Gestione articoli e commenti"; +$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["Can view my \"public\" stream and posts"] = "Può vedere i miei contenuti \"pubblici\""; +$a->strings["Can view my \"public\" channel profile"] = "Può vedere il profilo del mio canale \"pubblico\""; +$a->strings["Can view my \"public\" photo albums"] = "Può vedere il mio album fotografico \"pubblico\""; +$a->strings["Can view my \"public\" address book"] = "Può vedere il mio elenco contatti \"pubblico\""; +$a->strings["Can view my \"public\" file storage"] = "Può vedere il mio archivio file \"pubblico\""; +$a->strings["Can view my \"public\" pages"] = "Può vedere le mie pagine web \"pubbliche\""; +$a->strings["Can send me their channel stream and posts"] = "È tra i canali che seguo"; +$a->strings["Can post on my channel page (\"wall\")"] = "Può scrivere sulla bacheca del mio canale"; +$a->strings["Can comment on my posts"] = "Può commentare i miei articoli"; +$a->strings["Can send me private mail messages"] = "Può inviarmi messaggi privati"; +$a->strings["Can post photos to my photo albums"] = "Può aggiungere foto ai miei album"; +$a->strings["Can forward to all my channel contacts via post @mentions"] = "Può inoltrare articoli a tutti i contatti del canale tramite una @menzione"; +$a->strings["Advanced - useful for creating group forum channels"] = "Impostazione avanzata - utile per creare un canale-forum di discussione"; +$a->strings["Can chat with me (when available)"] = "Può aprire una chat con me (se disponibile)"; +$a->strings["Can write to my \"public\" file storage"] = "Può scrivere sul mio archivio di file \"pubblico\""; +$a->strings["Can edit my \"public\" pages"] = "Può modificare le mie pagine web \"pubbliche\""; +$a->strings["Can source my \"public\" posts in derived channels"] = "Può aggiungere i miei post \"pubblici\" a un suo canale derivato"; +$a->strings["Somewhat advanced - very useful in open communities"] = "Piuttosto avanzato - molto utile nelle comunità aperte"; +$a->strings["Can administer my channel resources"] = "Può amministrare i contenuti del mio canale"; +$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"; +$a->strings["Invalid data packet"] = "Dati non validi"; +$a->strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale"; +$a->strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s"; +$a->strings["%d invitation available"] = array( + 0 => "%d invito disponibile", + 1 => "%d inviti disponibili", +); +$a->strings["Advanced"] = "Avanzate"; +$a->strings["Find Channels"] = "Ricerca canali"; +$a->strings["Enter name or interest"] = "Scrivi un nome o un interesse"; +$a->strings["Connect/Follow"] = "Entra in contatto"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Per esempio: Mario Rossi, Pesca"; +$a->strings["Find"] = "Cerca"; +$a->strings["Channel Suggestions"] = "Canali suggeriti"; +$a->strings["Random Profile"] = "Profilo casuale"; +$a->strings["Invite Friends"] = "Invita amici"; +$a->strings["Exammple: name=fred and country=iceland"] = "Per esempio: name=mario e country=italy"; +$a->strings["Advanced Find"] = "Ricerca avanzata"; +$a->strings["%d connection in common"] = array( + 0 => "%d contatto in comune", + 1 => "%d contatti in comune", +); +$a->strings["Miscellaneous"] = "Altro"; +$a->strings["year"] = "anno"; +$a->strings["month"] = "mese"; +$a->strings["day"] = "giorno"; +$a->strings["never"] = "mai"; +$a->strings["less than a second ago"] = "meno di un secondo fa"; +$a->strings["years"] = "anni"; +$a->strings["months"] = "mesi"; +$a->strings["week"] = "settimana"; +$a->strings["weeks"] = "settimane"; +$a->strings["days"] = "giorni"; +$a->strings["hour"] = "ora"; +$a->strings["hours"] = "ore"; +$a->strings["minute"] = "minuto"; +$a->strings["minutes"] = "minuti"; +$a->strings["second"] = "secondo"; +$a->strings["seconds"] = "secondi"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s fa"; +$a->strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database"; +$a->strings["Empty name"] = "Nome vuoto"; +$a->strings["Name too long"] = "Nome troppo lungo"; +$a->strings["No account identifier"] = "Account senza identificativo"; +$a->strings["Nickname is required."] = "Il nome dell'account è obbligatorio."; +$a->strings["Reserved nickname. Please choose another."] = "Nome utente riservato. Per favore scegline un altro."; +$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["Requested channel is not available."] = "Il canale che cerchi non è disponibile."; +$a->strings["Requested profile is not available."] = "Il profilo richiesto non è disponibile."; +$a->strings["Change profile photo"] = "Cambia la foto del profilo"; +$a->strings["Profiles"] = "Profili"; +$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili"; +$a->strings["Create New Profile"] = "Crea un nuovo profilo"; +$a->strings["Edit Profile"] = "Modifica il profilo"; +$a->strings["Profile Image"] = "Immagine del profilo"; +$a->strings["visible to everybody"] = "visibile a tutti"; +$a->strings["Edit visibility"] = "Cambia la visibilità"; +$a->strings["Gender:"] = "Sesso:"; +$a->strings["Status:"] = "Stato:"; +$a->strings["Homepage:"] = "Home page:"; +$a->strings["Online Now"] = "Online adesso"; +$a->strings["g A l F d"] = "g A l d F"; +$a->strings["F d"] = "d F"; +$a->strings["[today]"] = "[oggi]"; +$a->strings["Birthday Reminders"] = "Promemoria compleanni"; +$a->strings["Birthdays this week:"] = "Compleanni questa settimana:"; +$a->strings["[No description]"] = "[Nessuna descrizione]"; +$a->strings["Event Reminders"] = "Promemoria"; +$a->strings["Events this week:"] = "Eventi di questa settimana:"; +$a->strings["Full Name:"] = "Nome completo:"; +$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"] = "per %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Preferenze sessuali:"; +$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["My other channels:"] = "I miei altri canali:"; +$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["Delete this item?"] = "Eliminare questo elemento?"; +$a->strings["show fewer"] = "riduci"; +$a->strings["+ Show More"] = "+ Mostra tutto"; +$a->strings["- Show Less"] = "- Mostra ridotto"; +$a->strings["Password too short"] = "Password troppo corta"; +$a->strings["Passwords do not match"] = "Le password non corrispondono"; +$a->strings["everybody"] = "tutti"; +$a->strings["Secret Passphrase"] = "Chiave segreta"; +$a->strings["Passphrase hint"] = "Suggerimento per la chiave segreta"; +$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Nota: i permessi sono stati modificati ma non ancora salvati."; +$a->strings["close all"] = "chiudi tutto"; +$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo"; +$a->strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; +$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[" "] = " "; +$a->strings["timeago.numbers"] = "timeago.numbers"; +$a->strings["Channel not found."] = "Canale non trovato."; +$a->strings["Welcome to %s"] = "%s ti dà il benvenuto"; +$a->strings["Channel added."] = "Canale aggiunto."; +$a->strings["Public access denied."] = "Accesso pubblico negato."; +======= $a->strings["Edit File properties"] = "Modifica le proprietà dei file"; $a->strings["Invalid data packet"] = "Dati non validi"; $a->strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale"; @@ -1058,23 +1600,125 @@ $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."; +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb $a->strings["Age: "] = "Età:"; -$a->strings["Edit/Manage Profiles"] = "Modifica/gestisci i profili"; -$a->strings["Add profile things"] = "Aggiungi oggetti al profilo"; -$a->strings["Include desirable objects in your profile"] = "Aggiungi oggetti interessanti al tuo profilo"; -$a->strings["Bookmark added"] = "Segnalibro aggiunto"; -$a->strings["My Bookmarks"] = "I miei segnalibri"; -$a->strings["My Connections Bookmarks"] = "I segnalibri dei miei contatti"; -$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; -$a->strings["Profile Visibility Editor"] = "Modifica la visibilità del profilo"; -$a->strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo."; -$a->strings["Visible To"] = "Visibile a"; -$a->strings["All Connections"] = "Tutti i contatti"; +$a->strings["Gender: "] = "Sesso:"; +$a->strings["Status: "] = "Stato:"; +$a->strings["Sexual Preference: "] = "Preferenza sessuale:"; +$a->strings["Homepage: "] = "Homepage:"; +$a->strings["Hometown: "] = "Città dove vivo:"; +$a->strings["About: "] = "Informazioni:"; +$a->strings["Keywords: "] = "Parole chiave:"; +$a->strings["Not found."] = "Non trovato."; +$a->strings["network"] = "rete"; +$a->strings["Authorize application connection"] = "Autorizza la app"; +$a->strings["Return to your app and insert this Securty Code:"] = "Torna alla app e inserisci questo codice di sicurezza:"; +$a->strings["Please login to continue."] = "Accedi al sito per continuare."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?"; +$a->strings["Yes"] = "Si"; +$a->strings["No"] = "No"; +$a->strings["Item not found"] = "Elemento non trovato"; +$a->strings["Edit Layout"] = "Modifica il layout"; +$a->strings["Delete layout?"] = "Vuoi eliminare questo layout?"; +$a->strings["Insert YouTube video"] = "Inserisci video da YouTube"; +$a->strings["Insert Vorbis [.ogg] video"] = "Inserisci video Vorbis [.ogg]"; +$a->strings["Insert Vorbis [.ogg] audio"] = "Inserisci audio Vorbis [.ogg]"; +$a->strings["Delete Layout"] = "Elimina il layout"; +$a->strings["Hub not found."] = "Server non trovato."; +$a->strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s"; +$a->strings["Tag removed"] = "Tag rimosso"; +$a->strings["Remove Item Tag"] = "Rimuovi il tag"; +$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: "; +$a->strings["Remove"] = "Rimuovi"; +$a->strings["Add a Channel"] = "Aggiungi un canale"; +$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "I contenuti che pubblichi finiscono in un \"canale\". Un canale può essere usato per mantenere un tuo profilo personale, per avere un blog, per creare forum di discussione o gruppi di interesse, per pagine di celebrità e molto altro. Puoi creare quanti canali vuoi a meno di limiti dati dal gestore del sito."; +$a->strings["Channel Name"] = "Nome del canale"; +$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\""; +$a->strings["Choose a short nickname"] = "Scegli un nome breve"; +$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale (simile a una email). Così potrai condividerlo e gli altri potranno trovarti."; +$a->strings["Or import an existing channel from another location"] = "Oppure importa un tuo canale esistente da un altro server/hub"; +$a->strings["Create"] = "Crea"; $a->strings["Public Sites"] = "Siti pubblici"; $a->strings["The listed sites allow public registration into the Red Matrix. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "Gli indirizzi elencati permettono la registrazione su Red Matrix. Tutti i siti di questa rete sono interconnessi, quindi essere registrati su uno è come essere registrati ovunque. Alcuni potrebbero richiedere un'iscrizione a pagamento o prevedere tipi diversi di abbonamento. Potrai trovare maggiori informazioni al riguardo visitando ciascun sito."; $a->strings["Site URL"] = "URL del sito"; $a->strings["Access Type"] = "Tipo di accesso"; $a->strings["Registration Policy"] = "Politica di registrazione"; +<<<<<<< HEAD +$a->strings["Location"] = "Luogo attuale"; +$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; +$a->strings["Collection created."] = "L'insieme di canali è stato creato."; +$a->strings["Could not create collection."] = "Impossibile creare l'insieme."; +$a->strings["Collection updated."] = "Insieme aggiornato."; +$a->strings["Create a collection of channels."] = "Crea un insieme di canali."; +$a->strings["Collection Name: "] = "Nome dell'insieme:"; +$a->strings["Members are visible to other channels"] = "I membri saranno visibili agli altri canali"; +$a->strings["Collection removed."] = "Insieme rimosso."; +$a->strings["Unable to remove collection."] = "Impossibile rimuovere l'insieme."; +$a->strings["Collection Editor"] = "Modifica l'insieme"; +$a->strings["Members"] = "Membri"; +$a->strings["All Connected Channels"] = "Tutti i canali connessi"; +$a->strings["Click on a channel to add or remove."] = "Clicca su un canale per aggiungerlo o rimuoverlo."; +$a->strings["Thing updated"] = "L'oggetto è stato aggiornato"; +$a->strings["Object store: failed"] = "Impossibile memorizzare l'oggetto."; +$a->strings["Thing added"] = "L'oggetto è stato aggiunto"; +$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +$a->strings["Show Thing"] = "Mostra l'oggetto"; +$a->strings["item not found."] = "non trovato."; +$a->strings["Edit Thing"] = "Modifica l'oggetto"; +$a->strings["Select a profile"] = "Scegli un profilo"; +$a->strings["Select a category of stuff. e.g. I ______ something"] = "Scegli come riferirsi all'oggetto. Esempio: Io _____ l'oggetto"; +$a->strings["Post an activity"] = "Pubblica un'attività"; +$a->strings["Only sends to viewers of the applicable profile"] = "Invia solo a chi segue il relativo canale"; +$a->strings["Name of thing e.g. something"] = "Nome dell'oggetto"; +$a->strings["URL of thing (optional)"] = "Indirizzo web dell'oggetto"; +$a->strings["URL for photo of thing (optional)"] = "Indirizzo di un'immagine dell'oggetto (facoltativo)"; +$a->strings["Add Thing to your Profile"] = "Aggiungi l'oggetto al tuo profilo"; +$a->strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido."; +$a->strings["Discard"] = "Rifiuta"; +$a->strings["Ignore"] = "Ignora"; +$a->strings["No more system notifications."] = "Non ci sono nuove notifiche di sistema."; +$a->strings["System Notifications"] = "Notifiche di sistema"; +$a->strings["Invalid item."] = "Elemento non valido."; +$a->strings["Page not found."] = "Pagina non trovata."; +$a->strings["Messages"] = "Messaggi"; +$a->strings["Conversation removed."] = "Conversazione rimossa."; +$a->strings["No messages."] = "Nessun messaggio."; +$a->strings["Delete message"] = "Elimina il messaggio"; +$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; +$a->strings["Edit post"] = "Modifica articolo"; +$a->strings["Finding:"] = "Ricerca:"; +$a->strings["next page"] = "pagina succ."; +$a->strings["previous page"] = "pagina prec."; +$a->strings["No entries (some entries may be hidden)."] = "Nessun risultato (qualcosa potrebbe essere nascosto)."; +$a->strings["Menu not found."] = "Menù non trovato."; +$a->strings["Menu element updated."] = "L'elemento del menù è stato aggiornato."; +$a->strings["Unable to update menu element."] = "Non è possibile aggiornare l'elemento del menù."; +$a->strings["Menu element added."] = "Elemento aggiunto al menù."; +$a->strings["Unable to add menu element."] = "Impossibile aggiungere l'elemento al menù."; +$a->strings["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["Menu Item Permissions"] = "Permessi del menu"; +$a->strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; +$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 andranno in fondo all'elenco"; +$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["You must be logged in to see this page."] = "Devi aver effettuato l'accesso per vedere questa pagina."; $a->strings["Insufficient permissions. Request redirected to profile page."] = "Permessi insufficienti. Sarà visualizzata la pagina del profilo."; $a->strings["toggle full screen mode"] = "attiva/disattiva schermo intero"; @@ -1128,6 +1772,7 @@ $a->strings["Authentication failed."] = "Autenticazione fallita."; $a->strings["Remote Authentication"] = "Autenticazione a distanza"; $a->strings["Enter your channel address (e.g. channel@example.com)"] = "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)"; $a->strings["Authenticate"] = "Autenticazione"; +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb $a->strings["Continue"] = "Continua"; $a->strings["Premium Channel Setup"] = "Canale premium - installazione"; $a->strings["Enable premium channel connection restrictions"] = "Abilita le restrizioni del canale premium"; @@ -1137,38 +1782,108 @@ $a->strings["Potential connections will then see the following text before proce $a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina."; $a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Il gestore del canale non ha fornito istruzioni specifiche)"; $a->strings["Restricted or Premium Channel"] = "Canale premium - con restrizioni"; +$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; +$a->strings["Empty post discarded."] = "L'articolo vuoto è stato ignorato."; +$a->strings["Executable content type not permitted to this channel."] = "I contenuti eseguibili non sono permessi su questo canale."; +$a->strings["System error. Post not saved."] = "Errore di sistema. Articolo non salvato."; +$a->strings["You have reached your limit of %1$.0f top level posts."] = "Hai raggiunto il limite massimo di %1$.0f articoli sulla pagina principale."; +$a->strings["You have reached your limit of %1$.0f webpages."] = "Hai raggiunto il limite massimo di %1$.0f pagine web."; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore."; $a->strings["No such group"] = "Impossibile trovare l'insieme"; $a->strings["Search Results For:"] = "Cerca risultati con:"; $a->strings["Collection is empty"] = "L'insieme di canali è vuoto"; $a->strings["Collection: "] = "Insieme:"; $a->strings["Connection: "] = "Connessione:"; $a->strings["Invalid connection."] = "Connessione non valida."; +$a->strings["Version %s"] = "Versione %s"; +$a->strings["Installed plugins/addons/apps:"] = "App e componenti aggiuntivi instalati:"; +$a->strings["No installed plugins/addons/apps"] = "Nessuna app o componente aggiuntivo installato"; +$a->strings["Red"] = "Red"; +$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralised privacy enhanced websites."] = "Questo è un hub di Red Matrix - una rete cooperativa e decentralizzata di siti con elevato livello di privacy. "; +$a->strings["Running at web location"] = "In esecuzione sull'indirizzo web"; +$a->strings["Please visit GetZot.com to learn more about the Red Matrix."] = "Visita GetZot.com per scoprire il progetto Red Matrix."; +$a->strings["Bug reports and issues: please visit"] = "Per segnalare bug e problemi: visita"; +$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com"; +$a->strings["Site Administrators"] = "Amministratori del sito"; +$a->strings["Bookmark added"] = "Segnalibro aggiunto"; +$a->strings["My Bookmarks"] = "I miei segnalibri"; +$a->strings["My Connections Bookmarks"] = "I segnalibri dei miei contatti"; +$a->strings["You must be logged in to see this page."] = "Devi aver effettuato l'accesso per vedere questa pagina."; +$a->strings["Insufficient permissions. Request redirected to profile page."] = "Permessi insufficienti. Sarà visualizzata la pagina del profilo."; +$a->strings["Layout updated."] = "Layout aggiornato."; +$a->strings["Edit System Page Description"] = "Modifica i layout di sistema"; +$a->strings["Layout not found."] = "Layout non trovato."; +$a->strings["Module Name:"] = "Nome del modulo:"; +$a->strings["Layout Help"] = "Guida al layout"; +$a->strings["Unable to find your hub."] = "Impossibile raggiungere il tuo hub."; +$a->strings["Post successful."] = "Inviato!"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; +$a->strings["toggle full screen mode"] = "attiva/disattiva schermo intero"; +$a->strings["invalid target signature"] = "la firma riscontrata non è valida"; +$a->strings["Failed to create source. No channel selected."] = "Impossibile creare la sorgente. Nessun canale selezionato."; +$a->strings["Source created."] = "Sorgente creata."; +$a->strings["Source updated."] = "Sorgente aggiornata."; +$a->strings["*"] = "*"; +$a->strings["Manage remote sources of content for your channel."] = "Gestisci le sorgenti dei contenuti del tuo canale."; +$a->strings["New Source"] = "Nuova sorgente"; +$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importa nel tuo canale tutti o una parte dei contenuti dal canale seguente."; +$a->strings["Only import content with these words (one per line)"] = "Importa solo i contenuti che hanno queste parole (una per riga)"; +$a->strings["Leave blank to import all public content"] = "Lascia vuoto per importare tutti i contenuti pubblici"; +$a->strings["Source not found."] = "Sorgente non trovata."; +$a->strings["Edit Source"] = "Modifica la sorgente"; +$a->strings["Delete Source"] = "Elimina la sorgente"; +$a->strings["Source removed"] = "Sorgente eliminata"; +$a->strings["Unable to remove source."] = "Impossibile rimuovere la sorgente."; +$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; +$a->strings["Profile Visibility Editor"] = "Modifica la visibilità del profilo"; +$a->strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo."; +$a->strings["Visible To"] = "Visibile a"; +$a->strings["All Connections"] = "Tutti i contatti"; +$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; +$a->strings["Image resize failed."] = "Il ridimensionamento dell'immagine è fallito."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente."; +$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["or"] = "o"; +$a->strings["skip this step"] = "salta questo passaggio"; +$a->strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; +$a->strings["Crop Image"] = "Ritaglia immagine"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'immagine per migliorarne la visualizzazione."; +$a->strings["Done Editing"] = "Modifica terminata"; +$a->strings["Image uploaded successfully."] = "Immagine caricata con successo."; +$a->strings["Image upload failed."] = "Il caricamento dell'immagine è fallito."; +$a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito."; +$a->strings["Block Name"] = "Nome del riquadro"; +$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "L'autenticazione remota non è disponibile. Hai accesso solamente a questo sito. Puoi provare ad uscire per tentare di nuovo."; +$a->strings["Welcome %s. Remote authentication successful."] = "Ciao %s. La tua autenticazione da remoto è avvenuta con successo."; +$a->strings["Permission Denied."] = "Permesso negato."; +$a->strings["File not found."] = "File non trovato."; +$a->strings["Edit file permissions"] = "Modifica i permessi del file"; +$a->strings["Set/edit permissions"] = "Modifica i permessi"; +$a->strings["Include all files and sub folders"] = "Includi tutti i file e le sottocartelle"; +$a->strings["Return to file list"] = "Torna all'elenco dei file"; +$a->strings["Copy/paste this code to attach file to a post"] = "Copia/incolla questo codice per far comparire il file in un articolo"; +$a->strings["Copy/paste this URL to link file from a web page"] = "Copia/incolla questo indirizzo in una pagina web per avere un link al file"; +$a->strings["Download"] = "Scaricamento dati"; +$a->strings["Used: "] = "Usato:"; +$a->strings["[directory]"] = "[cartella]"; +$a->strings["Limit: "] = "Limite:"; +$a->strings["Remote privacy information not available."] = "Le informazioni remote sulla privacy non sono disponibili."; +$a->strings["Visible to:"] = "Visibile a:"; +$a->strings["Contact not found."] = "Contatto non trovato."; +$a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato."; +$a->strings["Suggest Friends"] = "Suggerisci amici"; +$a->strings["Suggest a friend for %s"] = "Suggerisci un amico a %s"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s"; $a->strings["Could not access contact record."] = "Non è possibile accedere alle informazioni sul contatto."; $a->strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; $a->strings["Connection updated."] = "Contatto aggiornato."; $a->strings["Failed to update connection record."] = "Impossibile aggiornare le informazioni del contatto."; -$a->strings["Blocked"] = "Bloccati"; -$a->strings["Ignored"] = "Ignorati"; -$a->strings["Hidden"] = "Nascosti"; -$a->strings["Archived"] = "Archiviati"; -$a->strings["All"] = "Tutti"; -$a->strings["Unconnected"] = "Non connesso"; -$a->strings["Suggest new connections"] = "Suggerisci nuovi contatti"; -$a->strings["New Connections"] = "Nuovi contatti"; -$a->strings["Show pending (new) connections"] = "Richieste di contatto in attesa"; -$a->strings["Show all connections"] = "Mostra tutti i contatti"; -$a->strings["Unblocked"] = "Non bloccati"; -$a->strings["Only show unblocked connections"] = "Mostra solo i contatti non bloccati"; -$a->strings["Only show blocked connections"] = "Mostra solo i contatti bloccati"; -$a->strings["Only show ignored connections"] = "Mostra solo i contatti ignorati"; -$a->strings["Only show archived connections"] = "Mostra solo i contatti archiviati"; -$a->strings["Only show hidden connections"] = "Mostra solo i contatti nascosti"; -$a->strings["Only show one-way connections"] = "Mostra solo i contatti non ricambiati"; -$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -$a->strings["Edit contact"] = "Modifica il contatto"; -$a->strings["Search your connections"] = "Cerca tra i contatti"; -$a->strings["Finding: "] = "Ricerca: "; -$a->strings["Edit post"] = "Modifica articolo"; $a->strings["Could not access address book record."] = "Impossibile accedere alle informazioni della rubrica."; $a->strings["Refresh failed - channel is currently unavailable."] = "Il canale non è disponibile - impossibile aggiornare."; $a->strings["Channel has been unblocked"] = "Il canale è stato sbloccato"; @@ -1188,9 +1903,10 @@ $a->strings["Refresh Permissions"] = "Aggiorna i permessi"; $a->strings["Fetch updated permissions"] = "Scarica i permessi aggiornati"; $a->strings["Recent Activity"] = "Attività recenti"; $a->strings["View recent posts and comments"] = "Leggi i post recenti e i commenti"; +$a->strings["Unblock"] = "Sblocca"; +$a->strings["Block"] = "Blocca"; $a->strings["Block or Unblock this connection"] = "Per bloccare o meno questo contatto"; $a->strings["Unignore"] = "Non ignorare"; -$a->strings["Ignore"] = "Ignora"; $a->strings["Ignore or Unignore this connection"] = "Per ignorare o meno questo contatto"; $a->strings["Unarchive"] = "Non archiviare"; $a->strings["Archive"] = "Archivia"; @@ -1199,7 +1915,6 @@ $a->strings["Unhide"] = "Non nascondere"; $a->strings["Hide"] = "Nascondi"; $a->strings["Hide or Unhide this connection"] = "Per nascondere o meno questo contatto"; $a->strings["Delete this connection"] = "Elimina questo contatto"; -$a->strings["Unknown"] = "Sconosciuto"; $a->strings["Approve this connection"] = "Approva questo contatto"; $a->strings["Accept connection to allow communication"] = "Entra in contatto per poter comunicare"; $a->strings["Automatic Permissions Settings"] = "Permessi predefiniti"; @@ -1240,31 +1955,18 @@ $a->strings["Currently archived"] = "Attualmente archiviato"; $a->strings["Currently pending"] = "Attualmente da approvare"; $a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri"; $a->strings["Replies/likes to your public posts may still be visible"] = "Le risposte ai tuoi articoli pubblici potrebbero restare comunque visibili"; -$a->strings["No potential page delegates located."] = "Impossibile trovare delegati per questa pagina."; -$a->strings["Delegate Page Management"] = "Gestione delegati per la pagina"; -$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente."; -$a->strings["Existing Page Managers"] = "Gestori attuali della pagina"; -$a->strings["Existing Page Delegates"] = "Delegati attuali della pagina"; -$a->strings["Potential Delegates"] = "Delegati potenziali"; -$a->strings["Remove"] = "Rimuovi"; -$a->strings["Add"] = "Aggiungi"; -$a->strings["No entries."] = "Nessun risultato."; -$a->strings["Public access denied."] = "Accesso pubblico negato."; -$a->strings["Gender: "] = "Sesso:"; -$a->strings["Finding:"] = "Ricerca:"; -$a->strings["next page"] = "pagina succ."; -$a->strings["previous page"] = "pagina prec."; -$a->strings["No entries (some entries may be hidden)."] = "Nessun risultato (qualcosa potrebbe essere nascosto)."; -$a->strings["Status: "] = "Stato:"; -$a->strings["Sexual Preference: "] = "Preferenza sessuale:"; -$a->strings["Homepage: "] = "Homepage:"; -$a->strings["Hometown: "] = "Città dove vivo:"; -$a->strings["About: "] = "Informazioni:"; -$a->strings["Keywords: "] = "Parole chiave:"; $a->strings["This site is not a directory server"] = "Questo sito non fornisce l'elenco generale dei canali"; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Non è possibile effettuare login con l'OpenID che hai fornito. Per favore controlla che sia scritto correttamente."; +$a->strings["The error message was:"] = "Messaggio di errore ricevuto:"; +$a->strings["Authentication failed."] = "Autenticazione fallita."; +$a->strings["Remote Authentication"] = "Autenticazione a distanza"; +$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)"; +$a->strings["Authenticate"] = "Autenticazione"; +$a->strings["Item not available."] = "Elemento non disponibile."; +$a->strings["Item is not editable"] = "L'elemento non è modificabile"; +$a->strings["Delete item?"] = "Eliminare questo elemento?"; $a->strings["Name is required"] = "Il nome è obbligatorio"; $a->strings["Key and Secret are required"] = "Chiave e Segreto sono richiesti"; -$a->strings["Update"] = "Aggiorna"; $a->strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata."; $a->strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata."; $a->strings["Password changed."] = "Password cambiata."; @@ -1274,6 +1976,7 @@ $a->strings["Protected email address. Cannot change to that email."] = "È un in $a->strings["System failure storing new email. Please try again."] = "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore."; $a->strings["Settings updated."] = "Impostazioni aggiornate."; $a->strings["Add application"] = "Aggiungi una app"; +$a->strings["Name"] = "Nome"; $a->strings["Name of application"] = "Nome dell'applicazione"; $a->strings["Consumer Key"] = "Consumer Key"; $a->strings["Automatically generated - change if desired. Max length 20"] = "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20"; @@ -1301,6 +2004,7 @@ $a->strings["Off"] = "Off"; $a->strings["On"] = "On"; $a->strings["Additional Features"] = "Funzionalità aggiuntive"; $a->strings["Connector Settings"] = "Impostazioni del connettore"; +$a->strings["No special theme for mobile devices"] = "Nessun tema per dispositivi mobili"; $a->strings["Display Settings"] = "Impostazioni grafiche"; $a->strings["Display Theme:"] = "Tema per monitor:"; $a->strings["Mobile Theme:"] = "Tema per dispositivi mobili:"; @@ -1437,7 +2141,11 @@ $a->strings["SSL certificate cannot be validated. Fix certificate or disable htt $a->strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati generati da te!"; $a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server."; $a->strings["If your certificate is not recognised, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno un avviso su possibili problemi di sicurezza."; +<<<<<<< HEAD +$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Ciò può creare problemi di usabilità molto gravi (non solo sul tuo sito), quindi dobbiamo insistere su questo punto."; +======= $a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Ciò può creare gravi problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto."; +>>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb $a->strings["Providers are available that issue free certificates which are browser-valid."] = "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser."; $a->strings["SSL certificate validation"] = "Validazione del certificato SSL"; $a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server."; @@ -1446,36 +2154,6 @@ $a->strings["The database configuration file \".htconfig.php\" could not be writ $a->strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; $a->strings["

    What next

    "] = "

    I prossimi passi

    "; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling."; -$a->strings["Item not found"] = "Elemento non trovato"; -$a->strings["Edit Block"] = "Modifica il riquadro"; -$a->strings["Delete block?"] = "Vuoi eliminare questo riquadro?"; -$a->strings["Insert YouTube video"] = "Inserisci video da YouTube"; -$a->strings["Insert Vorbis [.ogg] video"] = "Inserisci video Vorbis [.ogg]"; -$a->strings["Insert Vorbis [.ogg] audio"] = "Inserisci audio Vorbis [.ogg]"; -$a->strings["Delete Block"] = "Elimina il riquadro"; -$a->strings["Layout updated."] = "Layout aggiornato."; -$a->strings["Edit System Page Description"] = "Modifica i layout di sistema"; -$a->strings["Layout not found."] = "Layout non trovato."; -$a->strings["Module Name:"] = "Nome del modulo:"; -$a->strings["Layout Help"] = "Guida al layout"; -$a->strings["Edit Layout"] = "Modifica il layout"; -$a->strings["Delete layout?"] = "Vuoi eliminare questo layout?"; -$a->strings["Delete Layout"] = "Elimina il layout"; -$a->strings["Item is not editable"] = "L'elemento non è modificabile"; -$a->strings["Delete item?"] = "Eliminare questo elemento?"; -$a->strings["Edit Webpage"] = "Modifica la pagina web"; -$a->strings["Delete webpage?"] = "Vuoi eliminare questa pagina web?"; -$a->strings["Delete Webpage"] = "Elimina la pagina web"; -$a->strings["Version %s"] = "Versione %s"; -$a->strings["Installed plugins/addons/apps:"] = "App e componenti aggiuntivi instalati:"; -$a->strings["No installed plugins/addons/apps"] = "Nessuna app o componente aggiuntivo installato"; -$a->strings["Red"] = "Red"; -$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralised privacy enhanced websites."] = "Questo è un hub di Red Matrix - una rete cooperativa e decentralizzata di siti con elevato livello di privacy. "; -$a->strings["Running at web location"] = "In esecuzione sull'indirizzo web"; -$a->strings["Please visit GetZot.com to learn more about the Red Matrix."] = "Visita GetZot.com per scoprire il progetto Red Matrix."; -$a->strings["Bug reports and issues: please visit"] = "Per segnalare bug e problemi: visita"; -$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com"; -$a->strings["Site Administrators"] = "Amministratori del sito"; $a->strings["Event title and start time are required."] = "Sono necessari il titolo e l'ora d'inizio dell'evento."; $a->strings["l, F j"] = "l j F"; $a->strings["Edit event"] = "Modifica l'evento"; @@ -1492,204 +2170,6 @@ $a->strings["Adjust for viewer timezone"] = "Adatta al fuso orario di chi legge" $a->strings["Description:"] = "Descrizione:"; $a->strings["Title:"] = "Titolo:"; $a->strings["Share this event"] = "Condividi questo evento"; -$a->strings["Failed to create source. No channel selected."] = "Impossibile creare la sorgente. Nessun canale selezionato."; -$a->strings["Source created."] = "Sorgente creata."; -$a->strings["Source updated."] = "Sorgente aggiornata."; -$a->strings["*"] = "*"; -$a->strings["Manage remote sources of content for your channel."] = "Gestisci le sorgenti dei contenuti del tuo canale."; -$a->strings["New Source"] = "Nuova sorgente"; -$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importa nel tuo canale tutti o una parte dei contenuti dal canale seguente."; -$a->strings["Only import content with these words (one per line)"] = "Importa solo i contenuti che hanno queste parole (una per riga)"; -$a->strings["Leave blank to import all public content"] = "Lascia vuoto per importare tutti i contenuti pubblici"; -$a->strings["Channel Name"] = "Nome del canale"; -$a->strings["Source not found."] = "Sorgente non trovata."; -$a->strings["Edit Source"] = "Modifica la sorgente"; -$a->strings["Delete Source"] = "Elimina la sorgente"; -$a->strings["Source removed"] = "Sorgente eliminata"; -$a->strings["Unable to remove source."] = "Impossibile rimuovere la sorgente."; -$a->strings["- select -"] = "- scegli -"; -$a->strings["Permission Denied."] = "Permesso negato."; -$a->strings["File not found."] = "File non trovato."; -$a->strings["Edit file permissions"] = "Modifica i permessi del file"; -$a->strings["Set/edit permissions"] = "Modifica i permessi"; -$a->strings["Include all files and sub folders"] = "Includi tutti i file e le sottocartelle"; -$a->strings["Return to file list"] = "Torna all'elenco dei file"; -$a->strings["Copy/paste this code to attach file to a post"] = "Copia/incolla questo codice per far comparire il file in un articolo"; -$a->strings["Copy/paste this URL to link file from a web page"] = "Copia/incolla questo indirizzo in una pagina web per avere un link al file"; -$a->strings["Download"] = "Scaricamento dati"; -$a->strings["Used: "] = "Usato:"; -$a->strings["[directory]"] = "[cartella]"; -$a->strings["Limit: "] = "Limite:"; -$a->strings["Channel added."] = "Canale aggiunto."; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; -$a->strings["Contact not found."] = "Contatto non trovato."; -$a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato."; -$a->strings["Suggest Friends"] = "Suggerisci amici"; -$a->strings["Suggest a friend for %s"] = "Suggerisci un amico a %s"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore."; -$a->strings["Collection created."] = "L'insieme di canali è stato creato."; -$a->strings["Could not create collection."] = "Impossibile creare l'insieme."; -$a->strings["Collection updated."] = "Insieme aggiornato."; -$a->strings["Create a collection of channels."] = "Crea un insieme di canali."; -$a->strings["Collection Name: "] = "Nome dell'insieme:"; -$a->strings["Members are visible to other channels"] = "I membri saranno visibili agli altri canali"; -$a->strings["Collection removed."] = "Insieme rimosso."; -$a->strings["Unable to remove collection."] = "Impossibile rimuovere l'insieme."; -$a->strings["Collection Editor"] = "Modifica l'insieme"; -$a->strings["Members"] = "Membri"; -$a->strings["All Connected Channels"] = "Tutti i canali connessi"; -$a->strings["Click on a channel to add or remove."] = "Clicca su un canale per aggiungerlo o rimuoverlo."; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s"; -$a->strings["Help:"] = "Guida:"; -$a->strings["Not Found"] = "Non disponibile"; -$a->strings["Tag removed"] = "Tag rimosso"; -$a->strings["Remove Item Tag"] = "Rimuovi il tag"; -$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: "; -$a->strings["Welcome to %s"] = "%s ti dà il benvenuto"; -$a->strings["Thing updated"] = "L'oggetto è stato aggiornato"; -$a->strings["Object store: failed"] = "Impossibile memorizzare l'oggetto."; -$a->strings["Thing added"] = "L'oggetto è stato aggiunto"; -$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -$a->strings["Show Thing"] = "Mostra l'oggetto"; -$a->strings["item not found."] = "non trovato."; -$a->strings["Edit Thing"] = "Modifica l'oggetto"; -$a->strings["Select a profile"] = "Scegli un profilo"; -$a->strings["Select a category of stuff. e.g. I ______ something"] = "Scegli come riferirsi all'oggetto. Esempio: Io _____ l'oggetto"; -$a->strings["Post an activity"] = "Pubblica un'attività"; -$a->strings["Only sends to viewers of the applicable profile"] = "Invia solo a chi segue il relativo canale"; -$a->strings["Name of thing e.g. something"] = "Nome dell'oggetto"; -$a->strings["URL of thing (optional)"] = "Indirizzo web dell'oggetto"; -$a->strings["URL for photo of thing (optional)"] = "Indirizzo di un'immagine dell'oggetto (facoltativo)"; -$a->strings["Add Thing to your Profile"] = "Aggiungi l'oggetto al tuo profilo"; -$a->strings["Nothing to import."] = "Non c'è niente da importare."; -$a->strings["Unable to download data from old server"] = "Impossibile importare i dati dal vecchio server"; -$a->strings["Imported file is empty."] = "Il file da importare è vuoto."; -$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita."; -$a->strings["Channel clone failed. Import failed."] = "Impossibile clonare il canale. L'importazione è fallita."; -$a->strings["Cloned channel not found. Import failed."] = "Impossibile trovare il canale clonato. L'importazione è fallita."; -$a->strings["Import completed."] = "L'importazione è terminata con successo!"; -$a->strings["You must be logged in to use this feature."] = "Per questa funzionalità devi aver effettuato l'accesso."; -$a->strings["Import Channel"] = "Importa un canale"; -$a->strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = "Usa questo modulo per importare un tuo canale da un altro server/hub. Puoi scaricare i dati identificativi del canale direttamente dall'altro server/hub oppure tramite un file che hai esportato. Saranno importati solamente l'identità e i contatti. L'importazione dei contenuti non è ancora disponibile."; -$a->strings["File to Upload"] = "File da caricare"; -$a->strings["Or provide the old server/hub details"] = "Oppure fornisci i dettagli del vecchio server/hub"; -$a->strings["Your old identity address (xyz@example.com)"] = "Il tuo vecchio identificativo (per esempio pippo@esempio.com)"; -$a->strings["Your old login email address"] = "L'email che usavi per accedere sul vecchio server"; -$a->strings["Your old login password"] = "La password per il vecchio server"; -$a->strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Per ciascuna opzione, scegli se vuoi rendere questo server il tuo indirizzo primario, oppure se preferisci che lo rimanga il vecchio. Potrai pubblicare da entrambi i server, ma solamente uno sarà marcato come primario per i tuoi file, foto, ecc."; -$a->strings["Make this hub my primary location"] = "Rendi questo server il mio indirizzo primario"; -$a->strings["Total invitation limit exceeded."] = "Hai superato il numero massimo di inviti."; -$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; -$a->strings["Please join us on Red"] = "Vieni con noi su Red"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario."; -$a->strings["%s : Message delivery failed."] = "%s: la consegna del messaggio è fallita."; -$a->strings["%d message sent."] = array( - 0 => "%d messaggio inviato.", - 1 => "%d messaggi inviati.", -); -$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; -$a->strings["Send invitations"] = "Spedisci inviti"; -$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; -$a->strings["Your message:"] = "Il tuo messaggio:"; -$a->strings["You are cordially invited to join me and some other close friends on the Red Matrix - a revolutionary new decentralised communication and information tool."] = "Questo è un invito cordiale ad unirti a me e ad altri miei amici stretti su Red Matrix - uno nuovo strumento di comunicazione decentralizzato e rivoluzionario."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code"; -$a->strings["Please visit my channel at"] = "Puoi visitare il mio canale su"; -$a->strings["Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:"] = "Una volta che avrai completato la registrazione (su QUALSIASI sito Red Matrix - sono tutti interconnessi), potrai connetterti al mio canale:"; -$a->strings["Click the [Register] link on the following page to join."] = "Fai clic su [Registrati] nella pagina seguente per iscriverti."; -$a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "Per saperne di più sul progetto Red Matrix e sul perché potrebbe cambiare internet per come la conosciamo, visita http://getzot.com"; -$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; -$a->strings["Empty post discarded."] = "L'articolo vuoto è stato ignorato."; -$a->strings["Executable content type not permitted to this channel."] = "I contenuti eseguibili non sono permessi su questo canale."; -$a->strings["System error. Post not saved."] = "Errore di sistema. Articolo non salvato."; -$a->strings["You have reached your limit of %1$.0f top level posts."] = "Hai raggiunto il limite massimo di %1$.0f articoli sulla pagina principale."; -$a->strings["You have reached your limit of %1$.0f webpages."] = "Hai raggiunto il limite massimo di %1$.0f pagine web."; -$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; -$a->strings["Help with this feature"] = "La guida per questa funzionalità"; -$a->strings["Layout Name"] = "Nome layout"; -$a->strings["Remote privacy information not available."] = "Le informazioni remote sulla privacy non sono disponibili."; -$a->strings["Visible to:"] = "Visibile a:"; -$a->strings["No connections."] = "Nessun contatto."; -$a->strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; -$a->strings["View Connnections"] = "Guarda i contatti"; -$a->strings["No valid account found."] = "Nessun account valido trovato."; -$a->strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; -$a->strings["Site Member (%s)"] = "Utente del sito (%s)"; -$a->strings["Password reset requested at %s"] = "È stato richiesto di reimpostare password su %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non può essere reimpostata."; -$a->strings["Password Reset"] = "Reimposta la password"; -$a->strings["Your password has been reset as requested."] = "La password è stata reimpostata come richiesto."; -$a->strings["Your new password is"] = "La tua nuova password è"; -$a->strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi"; -$a->strings["click here to login"] = "clicca qui per accedere"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso."; -$a->strings["Your password has changed at %s"] = "La tua password su %s è cambiata"; -$a->strings["Forgot your Password?"] = "Hai dimenticato la password?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare."; -$a->strings["Email Address"] = "Indirizzo email"; -$a->strings["Reset"] = "Reimposta"; -$a->strings["Hub not found."] = "Server non trovato."; -$a->strings["Total votes"] = "Totale voti"; -$a->strings["Average Rating"] = "Media"; -$a->strings["Unable to lookup recipient."] = "Impossibile associare un destinatario."; -$a->strings["Unable to communicate with requested channel."] = "Impossibile comunicare con il canale richiesto."; -$a->strings["Cannot verify requested channel."] = "Impossibile verificare il canale richiesto."; -$a->strings["Selected channel has private message restrictions. Send failed."] = "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito."; -$a->strings["Messages"] = "Messaggi"; -$a->strings["Message deleted."] = "Messaggio eliminato."; -$a->strings["Message recalled."] = "Messaggio revocato."; -$a->strings["Send Private Message"] = "Invia un messaggio privato"; -$a->strings["To:"] = "A:"; -$a->strings["Subject:"] = "Oggetto:"; -$a->strings["Message not found."] = "Messaggio non trovato."; -$a->strings["Delete message"] = "Elimina il messaggio"; -$a->strings["Recall message"] = "Revoca il messaggio"; -$a->strings["Message has been recalled."] = "Il messaggio è stato revocato."; -$a->strings["Private Conversation"] = "Conversazione privata"; -$a->strings["Delete conversation"] = "Elimina la conversazione"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Non è disponibile alcun sistema per comunicare in modo sicuro. Puoi verificare se eventualmente è possibile rispondere dalla pagina del profilo del mittente."; -$a->strings["Send Reply"] = "Invia la risposta"; -$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Hai creato %1$.0f dei %2$.0f canali permessi."; -$a->strings["Create a new channel"] = "Crea un nuovo canale"; -$a->strings["Channel Manager"] = "Gestione canali"; -$a->strings["Current Channel"] = "Canale attuale"; -$a->strings["Attach to one of your channels by selecting it."] = "Seleziona il canale a cui vuoi passare."; -$a->strings["Default Channel"] = "Canale predefinito"; -$a->strings["Make Default"] = "Rendi predefinito"; -$a->strings["Wall Photos"] = "Foto della bacheca"; -$a->strings["Profile Match"] = "Profili corrispondenti"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nessuna parola chiave per le ricerche. Aggiungi parole chiave al tuo profilo predefinito."; -$a->strings["is interested in:"] = "interessi personali:"; -$a->strings["No matches"] = "Nessun risultato"; -$a->strings["Menu updated."] = "Menù aggiornato."; -$a->strings["Unable to update menu."] = "Impossibile aggiornare il menù."; -$a->strings["Menu created."] = "Menù creato."; -$a->strings["Unable to create menu."] = "Impossibile creare il menù."; -$a->strings["Manage Menus"] = "Gestione menù"; -$a->strings["Drop"] = "Elimina"; -$a->strings["Create a new menu"] = "Crea un nuovo menù"; -$a->strings["Delete this menu"] = "Elimina questo menù"; -$a->strings["Edit menu contents"] = "Modifica i contenuti del menù"; -$a->strings["Edit this menu"] = "Modifica questo menù"; -$a->strings["New Menu"] = "Nuovo menù"; -$a->strings["Menu name"] = "Nome del menù"; -$a->strings["Must be unique, only seen by you"] = "Deve essere unico, lo vedrai solo tu"; -$a->strings["Menu title"] = "Titolo del menù"; -$a->strings["Menu title as seen by others"] = "Titolo del menù come comparirà a tutti"; -$a->strings["Allow bookmarks"] = "Permetti l'invio di segnalibri"; -$a->strings["Menu may be used to store saved bookmarks"] = "Puoi salvare i segnalibri nei menu"; -$a->strings["Menu deleted."] = "Menù eliminato."; -$a->strings["Menu could not be deleted."] = "Il menù non può essere eliminato."; -$a->strings["Edit Menu"] = "Modifica menù"; -$a->strings["Add or remove entries to this menu"] = "Aggiungi o rimuovi elementi di questo menù"; -$a->strings["Conversation removed."] = "Conversazione rimossa."; -$a->strings["No messages."] = "Nessun messaggio."; -$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; -$a->strings["Add a Channel"] = "Aggiungi un canale"; -$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "I contenuti che pubblichi finiscono in un \"canale\". Un canale può essere usato per mantenere un tuo profilo personale, per avere un blog, per creare forum di discussione o gruppi di interesse, per pagine di celebrità e molto altro. Puoi creare quanti canali vuoi a meno di limiti dati dal gestore del sito."; -$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\""; -$a->strings["Choose a short nickname"] = "Scegli un nome breve"; -$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale (simile a una email). Così potrai condividerlo e gli altri potranno trovarti."; -$a->strings["Or import an existing channel from another location"] = "Oppure importa un tuo canale esistente da un altro server/hub"; $a->strings["Page owner information could not be retrieved."] = "Impossibile ottenere informazioni sul proprietario della pagina."; $a->strings["Album not found."] = "Album non trovato."; $a->strings["Delete Album"] = "Elimina album"; @@ -1721,52 +2201,431 @@ $a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #cam $a->strings["In This Photo:"] = "In questa foto:"; $a->strings["View Album"] = "Guarda l'album"; $a->strings["Recent Photos"] = "Foto recenti"; -$a->strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido."; -$a->strings["Discard"] = "Rifiuta"; -$a->strings["No more system notifications."] = "Non ci sono nuove notifiche di sistema."; -$a->strings["System Notifications"] = "Notifiche di sistema"; -$a->strings["Unable to find your hub."] = "Impossibile raggiungere il tuo hub."; -$a->strings["Post successful."] = "Inviato!"; -$a->strings["invalid target signature"] = "la firma riscontrata non è valida"; +$a->strings["Help:"] = "Guida:"; +$a->strings["Not Found"] = "Non disponibile"; +$a->strings["sent you a private message"] = "ti ha inviato un messaggio privato"; +$a->strings["added your channel"] = "ha aggiunto il tuo canale"; +$a->strings["posted an event"] = "ha creato un evento"; +$a->strings["No valid account found."] = "Nessun account valido trovato."; +$a->strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; +$a->strings["Site Member (%s)"] = "Utente del sito (%s)"; +$a->strings["Password reset requested at %s"] = "È stato richiesto di reimpostare password su %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non può essere reimpostata."; +$a->strings["Password Reset"] = "Reimposta la password"; +$a->strings["Your password has been reset as requested."] = "La password è stata reimpostata come richiesto."; +$a->strings["Your new password is"] = "La tua nuova password è"; +$a->strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi"; +$a->strings["click here to login"] = "clicca qui per accedere"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso."; +$a->strings["Your password has changed at %s"] = "La tua password su %s è cambiata"; +$a->strings["Forgot your Password?"] = "Hai dimenticato la password?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare."; +$a->strings["Email Address"] = "Indirizzo email"; +$a->strings["Reset"] = "Reimposta"; +$a->strings["Remove This Channel"] = "Elimina questo canale"; +$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il canale che stai usando. Una volta fatto non sarà più possibile ripristinarlo."; +$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; +$a->strings["Remove this channel and all its clones from the network"] = "Rimuovi questo canale e tutti i suoi cloni dalla rete"; +$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni"; +$a->strings["Remove Channel"] = "Elimina questo canale"; +$a->strings["No potential page delegates located."] = "Impossibile trovare delegati per questa pagina."; +$a->strings["Delegate Page Management"] = "Gestione delegati per la pagina"; +$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente."; +$a->strings["Existing Page Managers"] = "Gestori attuali della pagina"; +$a->strings["Existing Page Delegates"] = "Delegati attuali della pagina"; +$a->strings["Potential Delegates"] = "Delegati potenziali"; +$a->strings["Add"] = "Aggiungi"; +$a->strings["No entries."] = "Nessun risultato."; +$a->strings["Help with this feature"] = "La guida per questa funzionalità"; +$a->strings["Layout Name"] = "Nome layout"; +$a->strings["Blocked"] = "Bloccati"; +$a->strings["Ignored"] = "Ignorati"; +$a->strings["Hidden"] = "Nascosti"; +$a->strings["Archived"] = "Archiviati"; +$a->strings["All"] = "Tutti"; +$a->strings["Unconnected"] = "Non connesso"; +$a->strings["Suggest new connections"] = "Suggerisci nuovi contatti"; +$a->strings["New Connections"] = "Nuovi contatti"; +$a->strings["Show pending (new) connections"] = "Richieste di contatto in attesa"; +$a->strings["Show all connections"] = "Mostra tutti i contatti"; +$a->strings["Unblocked"] = "Non bloccati"; +$a->strings["Only show unblocked connections"] = "Mostra solo i contatti non bloccati"; +$a->strings["Only show blocked connections"] = "Mostra solo i contatti bloccati"; +$a->strings["Only show ignored connections"] = "Mostra solo i contatti ignorati"; +$a->strings["Only show archived connections"] = "Mostra solo i contatti archiviati"; +$a->strings["Only show hidden connections"] = "Mostra solo i contatti nascosti"; +$a->strings["Only show one-way connections"] = "Mostra solo i contatti non ricambiati"; +$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +$a->strings["Edit contact"] = "Modifica il contatto"; +$a->strings["Search your connections"] = "Cerca tra i contatti"; +$a->strings["Finding: "] = "Ricerca: "; +$a->strings["Nothing to import."] = "Non c'è niente da importare."; +$a->strings["Unable to download data from old server"] = "Impossibile importare i dati dal vecchio server"; +$a->strings["Imported file is empty."] = "Il file da importare è vuoto."; +$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita."; +$a->strings["Channel clone failed. Import failed."] = "Impossibile clonare il canale. L'importazione è fallita."; +$a->strings["Cloned channel not found. Import failed."] = "Impossibile trovare il canale clonato. L'importazione è fallita."; +$a->strings["Import completed."] = "L'importazione è terminata con successo!"; +$a->strings["You must be logged in to use this feature."] = "Per questa funzionalità devi aver effettuato l'accesso."; +$a->strings["Import Channel"] = "Importa un canale"; +$a->strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = "Usa questo modulo per importare un tuo canale da un altro server/hub. Puoi scaricare i dati identificativi del canale direttamente dall'altro server/hub oppure tramite un file che hai esportato. Saranno importati solamente l'identità e i contatti. L'importazione dei contenuti non è ancora disponibile."; +$a->strings["File to Upload"] = "File da caricare"; +$a->strings["Or provide the old server/hub details"] = "Oppure fornisci i dettagli del vecchio server/hub"; +$a->strings["Your old identity address (xyz@example.com)"] = "Il tuo vecchio identificativo (per esempio pippo@esempio.com)"; +$a->strings["Your old login email address"] = "L'email che usavi per accedere sul vecchio server"; +$a->strings["Your old login password"] = "La password per il vecchio server"; +$a->strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Per ciascuna opzione, scegli se vuoi rendere questo server il tuo indirizzo primario, oppure se preferisci che lo rimanga il vecchio. Potrai pubblicare da entrambi i server, ma solamente uno sarà marcato come primario per i tuoi file, foto, ecc."; +$a->strings["Make this hub my primary location"] = "Rendi questo server il mio indirizzo primario"; +$a->strings["Mood"] = "Umore"; +$a->strings["Set your current mood and tell your friends"] = "Scegli il tuo umore attuale per mostrarlo agli amici"; +$a->strings["Room not found"] = "Chat non trovata"; +$a->strings["Leave Room"] = "Lascia la chat"; +$a->strings["Delete This Room"] = "Elimina questa chat"; +$a->strings["I am away right now"] = "Non sono presente al momento"; +$a->strings["I am online"] = "Sono online"; +$a->strings["Bookmark this room"] = "Aggiungi chat ai segnalibri"; +$a->strings["New Chatroom"] = "Nuova chat"; +$a->strings["Chatroom Name"] = "Nome della chat"; +$a->strings["%1\$s's Chatrooms"] = "Le chat di %1\$s"; +$a->strings["Edit Block"] = "Modifica il riquadro"; +$a->strings["Delete block?"] = "Vuoi eliminare questo riquadro?"; +$a->strings["Delete Block"] = "Elimina il riquadro"; +$a->strings["Profile Match"] = "Profili corrispondenti"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nessuna parola chiave per le ricerche. Aggiungi parole chiave al tuo profilo predefinito."; +$a->strings["is interested in:"] = "interessi personali:"; +$a->strings["No matches"] = "Nessun risultato"; +$a->strings["Away"] = "Assente"; +$a->strings["Online"] = "Online"; +$a->strings["Edit Webpage"] = "Modifica la pagina web"; +$a->strings["Delete webpage?"] = "Vuoi eliminare questa pagina web?"; +$a->strings["Delete Webpage"] = "Elimina la pagina web"; +$a->strings["Profile not found."] = "Profilo non trovato."; +$a->strings["Profile deleted."] = "Profilo eliminato."; +$a->strings["Profile-"] = "Profilo-"; +$a->strings["New profile created."] = "Il nuovo profilo è stato creato."; +$a->strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo."; +$a->strings["Profile Name is required."] = "Il nome del profilo è obbligatorio ."; +$a->strings["Marital Status"] = "Stato sentimentale"; +$a->strings["Romantic Partner"] = "Partner affettivo"; +$a->strings["Likes"] = "Mi piace"; +$a->strings["Dislikes"] = "Non mi piace"; +$a->strings["Work/Employment"] = "Lavoro/impiego"; +$a->strings["Religion"] = "Religione"; +$a->strings["Political Views"] = "Orientamento politico"; +$a->strings["Gender"] = "Sesso"; +$a->strings["Sexual Preference"] = "Preferenze sessuali"; +$a->strings["Homepage"] = "Home page"; +$a->strings["Interests"] = "Interessi"; +$a->strings["Address"] = "Indirizzo"; +$a->strings["Profile updated."] = "Profilo aggiornato."; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?"; +$a->strings["Edit Profile Details"] = "Modifica i dettagli del profilo"; +$a->strings["View this profile"] = "Guarda questo profilo"; +$a->strings["Change Profile Photo"] = "Cambia la foto del profilo"; +$a->strings["Create a new profile using these settings"] = "Crea un nuovo profilo usando queste impostazioni"; +$a->strings["Clone this profile"] = "Clona questo profilo"; +$a->strings["Delete this profile"] = "Elimina questo profilo"; +$a->strings["Profile Name:"] = "Nome del profilo:"; +$a->strings["Your Full Name:"] = "Il tuo nome completo:"; +$a->strings["Title/Description:"] = "Titolo/descrizione:"; +$a->strings["Your Gender:"] = "Sesso:"; +$a->strings["Birthday (%s):"] = "Compleanno (%s):"; +$a->strings["Street Address:"] = "Indirizzo (via/piazza):"; +$a->strings["Locality/City:"] = "Località:"; +$a->strings["Postal/Zip Code:"] = "CAP:"; +$a->strings["Country:"] = "Nazione:"; +$a->strings["Region/State:"] = "Regione/stato:"; +$a->strings[" Marital Status:"] = " Stato sentimentale:"; +$a->strings["Who: (if applicable)"] = "Con chi: (se possibile)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Per esempio: cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = "dal [data]:"; +$a->strings["Homepage URL:"] = "Indirizzo home page:"; +$a->strings["Religious Views:"] = "Orientamento religioso:"; +$a->strings["Keywords:"] = "Parole chiave, tag:"; +$a->strings["Example: fishing photography software"] = "Per esempio: pesca fotografia programmazione"; +$a->strings["Used in directory listings"] = "Visibile nell'elenco pubblico di canali"; +$a->strings["Tell us about yourself..."] = "Raccontaci di te..."; +$a->strings["Hobbies/Interests"] = "Hobby/interessi"; +$a->strings["Contact information and Social Networks"] = "Contatti personali e i tuoi social network"; +$a->strings["My other channels"] = "I miei altri canali"; +$a->strings["Musical interests"] = "Interessi musicali"; +$a->strings["Books, literature"] = "Libri, letteratura"; +$a->strings["Television"] = "Televisione"; +$a->strings["Film/dance/culture/entertainment"] = "Film/danza/cultura/intrattenimento"; +$a->strings["Love/romance"] = "Amore"; +$a->strings["Work/employment"] = "Lavoro/impiego"; +$a->strings["School/education"] = "Scuola/educazione"; +$a->strings["This is your public profile.
    It may be visible to anybody using the internet."] = "Questo è il tuo profilo publico.
    Potrebbe essere visto da chiunque attraverso internet."; +$a->strings["Edit/Manage Profiles"] = "Modifica/gestisci i profili"; +$a->strings["Add profile things"] = "Aggiungi oggetti al profilo"; +$a->strings["Include desirable objects in your profile"] = "Aggiungi oggetti interessanti al tuo profilo"; +$a->strings["Menu updated."] = "Menù aggiornato."; +$a->strings["Unable to update menu."] = "Impossibile aggiornare il menù."; +$a->strings["Menu created."] = "Menù creato."; +$a->strings["Unable to create menu."] = "Impossibile creare il menù."; +$a->strings["Manage Menus"] = "Gestione menù"; +$a->strings["Drop"] = "Elimina"; +$a->strings["Create a new menu"] = "Crea un nuovo menù"; +$a->strings["Delete this menu"] = "Elimina questo menù"; +$a->strings["Edit menu contents"] = "Modifica i contenuti del menù"; +$a->strings["Edit this menu"] = "Modifica questo menù"; +$a->strings["New Menu"] = "Nuovo menù"; +$a->strings["Menu name"] = "Nome del menù"; +$a->strings["Must be unique, only seen by you"] = "Deve essere unico, lo vedrai solo tu"; +$a->strings["Menu title"] = "Titolo del menù"; +$a->strings["Menu title as seen by others"] = "Titolo del menù come comparirà a tutti"; +$a->strings["Allow bookmarks"] = "Permetti l'invio di segnalibri"; +$a->strings["Menu may be used to store saved bookmarks"] = "Puoi salvare i segnalibri nei menu"; +$a->strings["Menu deleted."] = "Menù eliminato."; +$a->strings["Menu could not be deleted."] = "Il menù non può essere eliminato."; +$a->strings["Edit Menu"] = "Modifica menù"; +$a->strings["Add or remove entries to this menu"] = "Aggiungi o rimuovi elementi di questo menù"; $a->strings["OpenID protocol error. No ID returned."] = "Errore del protocollo OpenID. Nessun ID ricevuto in risposta."; -$a->strings["Schema Default"] = "Schema predefinito"; -$a->strings["Sans-Serif"] = "Sans-Serif"; -$a->strings["Monospace"] = "Monospace"; +$a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"] = "Accesso a Red Matrix. Inserisci l'email con cui sei registrato e la password."; +$a->strings["Unable to lookup recipient."] = "Impossibile associare un destinatario."; +$a->strings["Unable to communicate with requested channel."] = "Impossibile comunicare con il canale richiesto."; +$a->strings["Cannot verify requested channel."] = "Impossibile verificare il canale richiesto."; +$a->strings["Selected channel has private message restrictions. Send failed."] = "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito."; +$a->strings["Message deleted."] = "Messaggio eliminato."; +$a->strings["Message recalled."] = "Messaggio revocato."; +$a->strings["Send Private Message"] = "Invia un messaggio privato"; +$a->strings["To:"] = "A:"; +$a->strings["Subject:"] = "Oggetto:"; +$a->strings["Your message:"] = "Il tuo messaggio:"; +$a->strings["Message not found."] = "Messaggio non trovato."; +$a->strings["Recall message"] = "Revoca il messaggio"; +$a->strings["Message has been recalled."] = "Il messaggio è stato revocato."; +$a->strings["Private Conversation"] = "Conversazione privata"; +$a->strings["Delete conversation"] = "Elimina la conversazione"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Non è disponibile alcun sistema per comunicare in modo sicuro. Puoi verificare se eventualmente è possibile rispondere dalla pagina del profilo del mittente."; +$a->strings["Send Reply"] = "Invia la risposta"; +$a->strings["App installed."] = "App installata"; +$a->strings["Malformed app."] = "App non corretta"; +$a->strings["Embed code"] = "Inserisci del codice"; +$a->strings["Create App"] = "Crea una app"; +$a->strings["Name of app"] = "Nome app"; +$a->strings["Location (URL) of app"] = "Indirizzo (URL) della app"; +$a->strings["Description"] = "Descrizione"; +$a->strings["Photo icon URL"] = "URL icona"; +$a->strings["80 x 80 pixels - optional"] = "80 x 80 pixel - facoltativa"; +$a->strings["Version ID"] = "ID versione"; +$a->strings["Price of app"] = "Prezzo app"; +$a->strings["Location (URL) to purchase app"] = "Indirizzo (URL) per acquistare la app"; +$a->strings["Poke/Prod"] = "Poke/Prod"; +$a->strings["poke, prod or do other things to somebody"] = "Manda un poke, un prod o altro"; +$a->strings["Recipient"] = "Destinatario"; +$a->strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi inviare al destinatario"; +$a->strings["Make this post private"] = "Rendi privato questo articolo"; +$a->strings["No connections."] = "Nessun contatto."; +$a->strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; +$a->strings["View Connnections"] = "Guarda i contatti"; +$a->strings["Theme settings updated."] = "Le impostazioni del tema sono state aggiornate."; +$a->strings["Site"] = "Sito"; +$a->strings["Accounts"] = "Accounts"; +$a->strings["Channels"] = "Canali"; +$a->strings["Plugins"] = "Plugin"; +$a->strings["Themes"] = "Temi"; +$a->strings["Server"] = "Server"; +$a->strings["DB updates"] = "Aggiornamenti al DB"; +$a->strings["Logs"] = "Log"; +$a->strings["Plugin Features"] = "Funzionalità dei componenti aggiuntivi"; +$a->strings["User registrations waiting for confirmation"] = "Registrazioni in attesa"; +$a->strings["Message queues"] = "Messaggi in attesa di recapito"; +$a->strings["Administration"] = "Amministrazione"; +$a->strings["Summary"] = "Riepilogo"; +$a->strings["Registered users"] = "Utenti registrati"; +$a->strings["Pending registrations"] = "Registrazioni da approvare"; +$a->strings["Version"] = "Versione"; +$a->strings["Active plugins"] = "Plugin attivi"; +$a->strings["Site settings updated."] = "Impostazioni del sito aggiornate."; +$a->strings["No special theme for accessibility"] = "Nessun tema speciale per l'accessibilità"; +$a->strings["Yes - with approval"] = "Sì - con approvazione"; +$a->strings["My site is not a public server"] = "Non è un server pubblico"; +$a->strings["My site has paid access only"] = "È un servizio a pagamento"; +$a->strings["My site has free access only"] = "È un servizio gratuito"; +$a->strings["My site offers free accounts with optional paid upgrades"] = "È un servizio gratuito con opzioni aggiuntive a pagamento"; +$a->strings["Registration"] = "Registrazione"; +$a->strings["File upload"] = "Caricamento file"; +$a->strings["Policies"] = "Politiche"; +$a->strings["Site name"] = "Nome del sito"; +$a->strings["Banner/Logo"] = "Banner o logo"; +$a->strings["Administrator Information"] = "Informazioni sull'amministrazione"; +$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode"; +$a->strings["System language"] = "Lingua di sistema"; +$a->strings["System theme"] = "Tema di sistema"; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema"; +$a->strings["Mobile system theme"] = "Tema di sistema per dispositivi mobili"; +$a->strings["Theme for mobile devices"] = "Tema per i dispositivi mobili"; +$a->strings["Accessibility system theme"] = "Tema di sistema ad alta accessibilità"; +$a->strings["Accessibility theme"] = "Tema ad alta accessibilità"; +$a->strings["Channel to use for this website's static pages"] = "Canale da usare per le pagine statiche di questo sito"; +$a->strings["Site Channel"] = "Canale del sito"; +$a->strings["Maximum image size"] = "Dimensione massima immagini"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite."; +$a->strings["Does this site allow new member registration?"] = "Questo sito permette a nuovi utenti di registrarsi?"; +$a->strings["Which best describes the types of account offered by this hub?"] = "Come descriveresti il tipo di servizio proposto da questo server?"; +$a->strings["Register text"] = "Testo diregistrazione"; +$a->strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione."; +$a->strings["Accounts abandoned after x days"] = "Account abbandonati dopo X giorni"; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo."; +$a->strings["Allowed friend domains"] = "Domini fidati e consentiti"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio."; +$a->strings["Allowed email domains"] = "Domini email consentiti"; +$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio."; +$a->strings["Block public"] = "Blocca pagine pubbliche"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso."; +$a->strings["Force publish"] = "Forza la publicazione del profilo"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per mostrare nell'elenco dei canali del sito tutti i profili registrati."; +$a->strings["Disable discovery tab"] = "Disabilita la funzione 'scopri'"; +$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Nell'area della rete personale non comparirà più la scheda con i contenuti acquisiti da altri siti."; +$a->strings["No login on Homepage"] = "Non mostrare il login sulla homepage"; +$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Per nascondere la possibilità di fare login ai visitatori (per esempio, quando il contenuto della homepage del sito è alimentato dal canale)."; +$a->strings["Proxy user"] = "Utente proxy"; +$a->strings["Proxy URL"] = "URL proxy"; +$a->strings["Network timeout"] = "Timeout rete"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)."; +$a->strings["Delivery interval"] = "Recapito ritardato"; +$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "RItarda il processo di recapito di questo numero di secondi per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati."; +$a->strings["Poll interval"] = "Intervallo di polling"; +$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Ritarda i processi di polling in background di questo numero di secondi per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'."; +$a->strings["Maximum Load Average"] = "Carico massimo medio"; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50."; +$a->strings["No server found"] = "Server non trovato"; +$a->strings["ID"] = "ID"; +$a->strings["for channel"] = "per canale"; +$a->strings["on server"] = "sul server"; +$a->strings["Status"] = "Stato"; +$a->strings["Update has been marked successful"] = "L'aggiornamento è stato marcato come eseguito."; +$a->strings["Executing %s failed. Check system logs."] = "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema."; +$a->strings["Update %s was successfully applied."] = "L'aggiornamento %s è terminato correttamente."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente."; +$a->strings["Update function %s could not be found."] = "Impossibile trovare la funzione di aggiornamento %s"; +$a->strings["No failed updates."] = "Nessun aggiornamento fallito."; +$a->strings["Failed Updates"] = "Aggiornamenti falliti."; +$a->strings["Mark success (if update was manually applied)"] = "Marca come eseguito (se applicato manualmente)."; +$a->strings["Attempt to execute this update step automatically"] = "Tenta di eseguire in automatico questo passaggio dell'aggiornamento."; +$a->strings["%s user blocked/unblocked"] = array( + 0 => "%s utente bloccato/sbloccato", + 1 => "%s utenti bloccati/sbloccati", +); +$a->strings["%s user deleted"] = array( + 0 => "%s utente cancellato", + 1 => "%s utenti cancellati", +); +$a->strings["Account not found"] = "Account non trovato"; +$a->strings["User '%s' deleted"] = "Utente '%s' eliminato"; +$a->strings["User '%s' unblocked"] = "Utente '%s' sbloccato"; +$a->strings["User '%s' blocked"] = "Utente '%s' bloccato"; +$a->strings["Users"] = "Utenti"; +$a->strings["select all"] = "seleziona tutti"; +$a->strings["User registrations waiting for confirm"] = "Richieste di registrazione in attesa di conferma"; +$a->strings["Request date"] = "Data richiesta"; +$a->strings["No registrations."] = "Nessuna registrazione."; +$a->strings["Approve"] = "Approva"; +$a->strings["Deny"] = "Nega"; +$a->strings["Register date"] = "Data registrazione"; +$a->strings["Last login"] = "Ultimo accesso"; +$a->strings["Expires"] = "Con scadenza"; +$a->strings["Service Class"] = "Service Class"; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Gli utenti selezionati saranno eliminati!\\n\\nTutto quello che gli utenti hanno pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?"; +$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'utente {0} sarà eliminato!\\n\\nTutto quello che ha pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?"; +$a->strings["%s channel censored/uncensored"] = array( + 0 => "Censura modificata per %s canale", + 1 => "Censura modificata per %s canali", +); +$a->strings["%s channel deleted"] = array( + 0 => "%s canale è stato rimosso", + 1 => "%s canali sono stati rimossi", +); +$a->strings["Channel not found"] = "Canale non trovato"; +$a->strings["Channel '%s' deleted"] = "Il canale '%s' è stato rimosso"; +$a->strings["Channel '%s' uncensored"] = "Rimossa la censura dal canale '%s'"; +$a->strings["Channel '%s' censored"] = "Applicata una censura al canale '%s'"; +$a->strings["Censor"] = "Applica una censura"; +$a->strings["Uncensor"] = "Rimuovi la censura"; +$a->strings["UID"] = "UID"; +$a->strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"; +$a->strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"; +$a->strings["Plugin %s disabled."] = "Plugin %s non attivo."; +$a->strings["Plugin %s enabled."] = "Plugin %s attivo."; +$a->strings["Disable"] = "Disattiva"; +$a->strings["Enable"] = "Attiva"; +$a->strings["Toggle"] = "Attiva/disattiva"; +$a->strings["Author: "] = "Autore:"; +$a->strings["Maintainer: "] = "Gestore:"; +$a->strings["No themes found."] = "Nessun tema trovato."; +$a->strings["Screenshot"] = "Istantanea dello schermo"; +$a->strings["[Experimental]"] = "[Sperimentale]"; +$a->strings["[Unsupported]"] = "[Non supportato]"; +$a->strings["Log settings updated."] = "Impostazioni di log aggiornate."; +$a->strings["Clear"] = "Pulisci"; +$a->strings["Debugging"] = "Debugging"; +$a->strings["Log file"] = "File di log"; +$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Deve essere scrivibile dal web server. È relativa alla cartella dove è installato Red."; +$a->strings["Log level"] = "Livello di log"; +$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!"; +$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio."; +$a->strings["Passwords do not match."] = "Le password non corrispondono."; +$a->strings["Registration successful. Please check your email for validation instructions."] = "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata."; +$a->strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte dell'amministratore del sito."; +$a->strings["Your registration can not be processed."] = "La tua registrazione non puo' essere acquisita."; +$a->strings["Registration on this site/hub is by approval only."] = "La registrazione su questo sito è soggetta ad approvazione."; +$a->strings["Register at another affiliated site/hub"] = "Registrati su un altro server affiliato"; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; +$a->strings["Terms of Service"] = "Condizioni d'Uso"; +$a->strings["I accept the %s for this website"] = "Accetto le %s di questo sito"; +$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ho più di 13 anni e accetto le %s di questo sito"; +$a->strings["Membership on this site is by invitation only."] = "Per registrarsi su questo sito è necessario un invito."; +$a->strings["Please enter your invitation code"] = "Inserisci il codice dell'invito"; +$a->strings["Your email address"] = "Il tuo indirizzo email"; +$a->strings["Choose a password"] = "Scegli una password"; +$a->strings["Please re-enter your password"] = "Ripeti la password per verifica"; +$a->strings["- select -"] = "- scegli -"; +$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Hai creato %1$.0f dei %2$.0f canali permessi."; +$a->strings["Create a new channel"] = "Crea un nuovo canale"; +$a->strings["Channel Manager"] = "Gestione canali"; +$a->strings["Current Channel"] = "Canale attuale"; +$a->strings["Attach to one of your channels by selecting it."] = "Seleziona il canale a cui vuoi passare."; +$a->strings["Default Channel"] = "Canale predefinito"; +$a->strings["Make Default"] = "Rendi predefinito"; +$a->strings["Total invitation limit exceeded."] = "Hai superato il numero massimo di inviti."; +$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; +$a->strings["Please join us on Red"] = "Vieni con noi su Red"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario."; +$a->strings["%s : Message delivery failed."] = "%s: la consegna del messaggio è fallita."; +$a->strings["%d message sent."] = array( + 0 => "%d messaggio inviato.", + 1 => "%d messaggi inviati.", +); +$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; +$a->strings["Send invitations"] = "Spedisci inviti"; +$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; +$a->strings["You are cordially invited to join me and some other close friends on the Red Matrix - a revolutionary new decentralised communication and information tool."] = "Questo è un invito cordiale ad unirti a me e ad altri miei amici stretti su Red Matrix - uno nuovo strumento di comunicazione decentralizzato e rivoluzionario."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code"; +$a->strings["Please visit my channel at"] = "Puoi visitare il mio canale su"; +$a->strings["Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:"] = "Una volta che avrai completato la registrazione (su QUALSIASI sito Red Matrix - sono tutti interconnessi), potrai connetterti al mio canale:"; +$a->strings["Click the [Register] link on the following page to join."] = "Fai clic su [Registrati] nella pagina seguente per iscriverti."; +$a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "Per saperne di più sul progetto Red Matrix e sul perché potrebbe cambiare internet per come la conosciamo, visita http://getzot.com"; +$a->strings["Wall Photos"] = "Foto della bacheca"; +$a->strings["No channel."] = "Nessun canale."; +$a->strings["Common connections"] = "Contatti in comune"; +$a->strings["No connections in common."] = "Nessun contatto in comune."; +$a->strings["Please login."] = "Accedi."; +$a->strings["Select a bookmark folder"] = "Scegli una cartella di segnalibri"; +$a->strings["Save Bookmark"] = "Salva segnalibro"; +$a->strings["URL of bookmark"] = "URL del segnalibro"; +$a->strings["Or enter new bookmark folder name"] = "O inserisci il nome di una nuova cartella di segnalibri"; +$a->strings["Update %s failed. See error logs."] = "%s: aggiornamento fallito. Controlla i log di errore."; +$a->strings["Update Error at %s"] = "Errore di aggiornamento su %s"; +$a->strings["Create an account to access services and applications within the Red Matrix"] = "Registrati per accedere ai servizi e alle applicazioni di Red Matrix"; +$a->strings["Password"] = "Password"; +$a->strings["Remember me"] = "Resta connesso"; +$a->strings["Forgot your password?"] = "Hai dimenticato la password?"; +$a->strings["permission denied"] = "permesso negato"; +$a->strings["Got Zot?"] = "Hai Zot?"; +$a->strings["toggle mobile"] = "attiva/disattiva versione mobile"; $a->strings["Theme settings"] = "Impostazioni del tema"; $a->strings["Set scheme"] = "Schema"; -$a->strings["Set font-size for posts and comments"] = "Dimensioni del carattere per articoli e commenti"; -$a->strings["Set font face"] = "Tipo di carattere"; -$a->strings["Set iconset"] = "Icone"; -$a->strings["Set big shadow size, default 15px 15px 15px"] = "Ombra grande, predefinita 15px 15px 15px"; -$a->strings["Set small shadow size, default 5px 5px 5px"] = "Ombra piccola, predefinita 5px 5px 5px"; -$a->strings["Set shadow colour, default #000"] = "Colore dell'ombra, predefinito #000"; -$a->strings["Set radius size, default 5px"] = "Raggio degli angoli, predefinito 5px"; -$a->strings["Set line-height for posts and comments"] = "Altezza della riga per articoli e commenti"; -$a->strings["Set background image"] = "Immagine di sfondo"; -$a->strings["Set background attachment"] = "Imposta un allegato di sfondo"; -$a->strings["Set background colour"] = "Colore di sfondo"; -$a->strings["Set section background image"] = "Immagine di sfondo della sezione"; -$a->strings["Set section background colour"] = "Colore di sfondo della sezione"; -$a->strings["Set colour of items - use hex"] = "Colore degli elementi della pagina - esadecimale"; -$a->strings["Set colour of links - use hex"] = "Colore dei link - esadecimale"; -$a->strings["Set max-width for items. Default 400px"] = "Larghezza massima degli elementi della pagina. Predefinita: 400px"; -$a->strings["Set min-width for items. Default 240px"] = "Larghezza minima degli elementi della pagina. Predefinita: 240px"; -$a->strings["Set the generic content wrapper width. Default 48%"] = "Larghezza di tutta l'area dei contenuti. Predefinita: 48%"; -$a->strings["Set colour of fonts - use hex"] = "Colore dei caratteri - esadecimale"; -$a->strings["Set background-size element"] = "Background-size element"; -$a->strings["Item opacity"] = "Opacità degli elementi della pagina"; -$a->strings["Display post previews only"] = "Mostra le anteprime solo degli articoli"; -$a->strings["Display side bar on channel page"] = "Mostra la colonna laterale sulla pagina del canale"; -$a->strings["Colour of the navigation bar"] = "Colore della barra di navigazione"; -$a->strings["Item float"] = "Float degli oggetti della pagina"; -$a->strings["Left offset of the section element"] = "Spazio a sinistra dell'elemento section"; -$a->strings["Right offset of the section element"] = "Spazio a destra dell'elemento section"; -$a->strings["Section width"] = "Larghezza section"; -$a->strings["Left offset of the aside"] = "Spazio a sinistra del aside"; -$a->strings["Right offset of the aside element"] = "Spazio a destra del aside"; -$a->strings["None"] = "Nessuno"; -$a->strings["Header image"] = "Immagine dell'intestazione"; -$a->strings["Header image only on profile pages"] = "È possibile mettere un'immagine solo nell'intestazione dei profili"; $a->strings["Narrow navbar"] = "Barra di navigazione ristretta"; $a->strings["Navigation bar background colour"] = "Barra di navigazione: Colore di sfondo"; $a->strings["Navigation bar gradient top colour"] = "Barra di navigazione: Gradiente superiore"; @@ -1787,6 +2646,7 @@ $a->strings["Set the indent for comments"] = "Imposta il lo spostamento a destra $a->strings["Set the basic colour for item icons"] = "Colore di base per le icone"; $a->strings["Set the hover colour for item icons"] = "Colore per le icone in evidenza"; $a->strings["Set font-size for the entire application"] = "Dimensione font per tutto il sito"; +$a->strings["Set font-size for posts and comments"] = "Dimensioni del carattere per articoli e commenti"; $a->strings["Set font-colour for posts and comments"] = "Colore del carattere per articoli e commenti"; $a->strings["Set radius of corners"] = "Raggio degli angoli stondati"; $a->strings["Set shadow depth of photos"] = "Profondità dell'ombra delle foto"; @@ -1797,12 +2657,3 @@ $a->strings["Set size of conversation author photo"] = "Dimensione foto dell'aut $a->strings["Set size of followup author photos"] = "Dimensione foto dei partecipanti alla conversazione"; $a->strings["Sloppy photo albums"] = "Album con foto storte"; $a->strings["Are you a clean desk or a messy desk person?"] = "La tua scrivania è sempre a posto? Sei una persona disordinata?"; -$a->strings["Update %s failed. See error logs."] = "%s: aggiornamento fallito. Controlla i log di errore."; -$a->strings["Update Error at %s"] = "Errore di aggiornamento su %s"; -$a->strings["Create an account to access services and applications within the Red Matrix"] = "Registrati per accedere ai servizi e alle applicazioni di Red Matrix"; -$a->strings["Password"] = "Password"; -$a->strings["Remember me"] = "Resta connesso"; -$a->strings["Forgot your password?"] = "Hai dimenticato la password?"; -$a->strings["permission denied"] = "permesso negato"; -$a->strings["Got Zot?"] = "Hai Zot?"; -$a->strings["toggle mobile"] = "attiva/disattiva versione mobile"; From b7390f88490f9ee92c771cc6cc65d14132b461af Mon Sep 17 00:00:00 2001 From: Paolo Tacconi Date: Thu, 22 May 2014 14:20:24 +0200 Subject: [PATCH 112/147] IT: strings fixed --- view/it/messages.po | 1569 ------------------------------------------- view/it/strings.php | 874 +----------------------- 2 files changed, 3 insertions(+), 2440 deletions(-) diff --git a/view/it/messages.po b/view/it/messages.po index ccc8d7d1e..880a3ddf7 100644 --- a/view/it/messages.po +++ b/view/it/messages.po @@ -13,13 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: Red Matrix\n" "Report-Msgid-Bugs-To: \n" -<<<<<<< HEAD "POT-Creation-Date: 2014-05-21 05:30-0300\n" "PO-Revision-Date: 2014-05-22 10:56+0000\n" -======= -"POT-Creation-Date: 2014-05-16 00:02-0700\n" -"PO-Revision-Date: 2014-05-17 09:17+0000\n" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb "Last-Translator: tuscanhobbit Pa \n" "Language-Team: Italian (http://www.transifex.com/projects/p/red-matrix/language/it/)\n" "MIME-Version: 1.0\n" @@ -32,43 +27,9 @@ msgstr "" msgid "Channel is blocked on this site." msgstr "Il canale è bloccato per questo sito." -<<<<<<< HEAD #: ../../include/follow.php:28 msgid "Channel location missing." msgstr "Manca l'indirizzo del canale." -======= -#: ../../include/apps.php:107 ../../include/nav.php:158 -msgid "Matrix" -msgstr "La tua rete" - -#: ../../include/apps.php:107 ../../include/nav.php:161 -msgid "Channel Home" -msgstr "Bacheca del canale" - -#: ../../include/apps.php:107 ../../include/identity.php:942 -#: ../../include/identity.php:1031 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Profilo" - -#: ../../include/apps.php:108 ../../include/conversation.php:1501 -#: ../../include/nav.php:84 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Foto" - -#: ../../include/apps.php:108 ../../include/conversation.php:1532 -#: ../../include/nav.php:87 ../../include/nav.php:180 ../../mod/events.php:366 -msgid "Events" -msgstr "Eventi" - -#: ../../include/apps.php:108 ../../include/nav.php:147 -#: ../../mod/directory.php:210 -msgid "Directory" -msgstr "Tutti i canali" - -#: ../../include/oembed.php:171 -msgid "Embedded content" -msgstr "Contenuti incorporati" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/follow.php:54 msgid "Response from remote channel was incomplete." @@ -82,18 +43,9 @@ msgstr "Il canale è stato rimosso e non esiste più." msgid "Channel discovery failed." msgstr "La ricerca del canale non ha avuto successo." -<<<<<<< HEAD #: ../../include/follow.php:149 msgid "local account not found." msgstr "l'account locale non è stato trovato." -======= -#: ../../include/Contact.php:107 ../../include/identity.php:675 -#: ../../include/widgets.php:127 ../../include/widgets.php:167 -#: ../../mod/directory.php:183 ../../mod/dirprofile.php:164 -#: ../../mod/suggest.php:51 ../../mod/match.php:62 -msgid "Connect" -msgstr "Entra in contatto" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/follow.php:158 msgid "Cannot connect to yourself." @@ -107,42 +59,19 @@ msgstr "Modifica le proprietà dei file" msgid "l F d, Y \\@ g:i A" msgstr "l d F Y \\@ G:i" -<<<<<<< HEAD #: ../../include/event.php:20 ../../include/bb2diaspora.php:439 msgid "Starts:" msgstr "Inizio:" -======= -#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../include/ItemObject.php:96 ../../include/menu.php:42 -#: ../../mod/blocks.php:94 ../../mod/connections.php:392 -#: ../../mod/settings.php:577 ../../mod/editblock.php:111 -#: ../../mod/editlayout.php:106 ../../mod/editpost.php:112 -#: ../../mod/editwebpage.php:143 ../../mod/filestorage.php:174 -#: ../../mod/thing.php:235 ../../mod/layouts.php:112 ../../mod/menu.php:59 -#: ../../mod/webpages.php:119 -msgid "Edit" -msgstr "Modifica" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/event.php:30 ../../include/bb2diaspora.php:447 msgid "Finishes:" msgstr "Fine:" -<<<<<<< HEAD #: ../../include/event.php:40 ../../include/bb2diaspora.php:455 #: ../../include/identity.php:726 ../../mod/dirprofile.php:105 #: ../../mod/directory.php:156 ../../mod/events.php:474 msgid "Location:" msgstr "Luogo:" -======= -#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:570 -#: ../../include/conversation.php:1088 ../../mod/editblock.php:141 -#: ../../mod/editlayout.php:135 ../../mod/editpost.php:140 -#: ../../mod/editwebpage.php:175 ../../mod/webpages.php:123 -#: ../../mod/photos.php:994 -msgid "Preview" -msgstr "Anteprima" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/widgets.php:29 ../../include/contact_widgets.php:92 msgid "Categories" @@ -167,7 +96,6 @@ msgstr "Personali" msgid "Connect" msgstr "Entra in contatto" -<<<<<<< HEAD #: ../../include/widgets.php:129 ../../mod/suggest.php:53 msgid "Ignore/Hide" msgstr "Ignora/nascondi" @@ -339,11 +267,6 @@ msgstr "Diario pubblico" #: ../../include/nav.php:77 ../../include/nav.php:96 ../../boot.php:1450 msgid "Logout" msgstr "Esci" -======= -#: ../../include/permissions.php:13 -msgid "Can view my \"public\" stream and posts" -msgstr "Può vedere i miei contenuti \"pubblici\"" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/nav.php:77 ../../include/nav.php:96 msgid "End this session" @@ -482,51 +405,10 @@ msgstr "Cerca" msgid "Search site content" msgstr "Cerca nel sito" -<<<<<<< HEAD #: ../../include/nav.php:147 ../../include/apps.php:112 #: ../../mod/directory.php:210 msgid "Directory" msgstr "Tutti i canali" -======= -#: ../../include/photos.php:15 ../../include/attach.php:119 -#: ../../include/attach.php:166 ../../include/attach.php:229 -#: ../../include/attach.php:243 ../../include/attach.php:283 -#: ../../include/attach.php:297 ../../include/attach.php:322 -#: ../../include/attach.php:513 ../../include/attach.php:585 -#: ../../include/chat.php:116 ../../include/items.php:3645 -#: ../../mod/mood.php:119 ../../mod/mitem.php:73 ../../mod/achievements.php:27 -#: ../../mod/poke.php:128 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/authtest.php:13 ../../mod/profile.php:64 ../../mod/profile.php:72 -#: ../../mod/block.php:22 ../../mod/block.php:72 -#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 -#: ../../mod/blocks.php:29 ../../mod/blocks.php:44 ../../mod/profiles.php:152 -#: ../../mod/profiles.php:453 ../../mod/bookmarks.php:46 -#: ../../mod/channel.php:89 ../../mod/channel.php:193 -#: ../../mod/channel.php:236 ../../mod/chat.php:90 ../../mod/chat.php:95 -#: ../../mod/register.php:68 ../../mod/regmod.php:18 ../../mod/common.php:35 -#: ../../mod/network.php:12 ../../mod/connections.php:169 -#: ../../mod/connedit.php:221 ../../mod/delegate.php:6 ../../mod/page.php:30 -#: ../../mod/page.php:80 ../../mod/settings.php:492 ../../mod/setup.php:203 -#: ../../mod/editblock.php:34 ../../mod/pdledit.php:21 -#: ../../mod/editlayout.php:48 ../../mod/editpost.php:13 -#: ../../mod/editwebpage.php:44 ../../mod/editwebpage.php:83 -#: ../../mod/events.php:140 ../../mod/sources.php:66 -#: ../../mod/filestorage.php:10 ../../mod/filestorage.php:59 -#: ../../mod/filestorage.php:75 ../../mod/filestorage.php:98 -#: ../../mod/fsuggest.php:78 ../../mod/suggest.php:26 ../../mod/group.php:9 -#: ../../mod/thing.php:247 ../../mod/thing.php:263 ../../mod/thing.php:298 -#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/item.php:179 -#: ../../mod/item.php:187 ../../mod/item.php:872 ../../mod/layouts.php:27 -#: ../../mod/layouts.php:39 ../../mod/viewconnections.php:22 -#: ../../mod/viewconnections.php:27 ../../mod/viewsrc.php:12 -#: ../../mod/mail.php:108 ../../mod/manage.php:6 ../../mod/menu.php:44 -#: ../../mod/webpages.php:40 ../../mod/message.php:16 -#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97 -#: ../../mod/photos.php:68 ../../mod/photos.php:526 -#: ../../mod/notifications.php:66 ../../index.php:187 ../../index.php:362 -msgid "Permission denied." -msgstr "Permesso negato." ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/nav.php:147 msgid "Channel Locator" @@ -540,46 +422,9 @@ msgstr "La tua rete" msgid "Your matrix" msgstr "La tua rete" -<<<<<<< HEAD #: ../../include/nav.php:159 msgid "Mark all matrix notifications seen" msgstr "Segna come lette le notifiche della tua rete" -======= -#: ../../include/photos.php:186 -msgid "Photo storage failed." -msgstr "Impossibile caricare la foto." - -#: ../../include/photos.php:311 ../../include/conversation.php:1504 -msgid "Photo Albums" -msgstr "Album foto" - -#: ../../include/photos.php:315 ../../mod/photos.php:693 -#: ../../mod/photos.php:1190 -msgid "Upload New Photos" -msgstr "Carica nuove foto" - -#: ../../include/acl_selectors.php:238 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: ../../include/acl_selectors.php:239 -msgid "Show" -msgstr "Mostra" - -#: ../../include/acl_selectors.php:240 -msgid "Don't show" -msgstr "Non mostrare" - -#: ../../include/acl_selectors.php:246 ../../mod/chat.php:209 -#: ../../mod/filestorage.php:126 ../../mod/photos.php:606 -#: ../../mod/photos.php:949 -msgid "Permissions" -msgstr "Permessi" - -#: ../../include/acl_selectors.php:247 -msgid "Close" -msgstr "Chiudi" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/nav.php:161 ../../include/apps.php:108 msgid "Channel Home" @@ -666,7 +511,6 @@ msgstr "Impostazioni account e canali" msgid "Manage/Edit Friends and Connections" msgstr "Modifica amici e contatti" -<<<<<<< HEAD #: ../../include/nav.php:195 ../../mod/admin.php:117 msgid "Admin" msgstr "Amministrazione" @@ -674,15 +518,6 @@ msgstr "Amministrazione" #: ../../include/nav.php:195 msgid "Site Setup and Configuration" msgstr "Configurazione del sito" -======= -#: ../../include/auth.php:198 -msgid "Failed authentication" -msgstr "Autenticazione fallita" - -#: ../../include/auth.php:213 ../../mod/openid.php:188 -msgid "Login failed." -msgstr "Accesso fallito." ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/nav.php:220 msgid "Nothing new here" @@ -696,7 +531,6 @@ msgstr "Attendere..." msgid "Embedded content" msgstr "Contenuti incorporati" -<<<<<<< HEAD #: ../../include/oembed.php:180 msgid "Embedding disabled" msgstr "Contenuti incorporati - funzione disabilitata" @@ -712,25 +546,6 @@ msgid "Image/photo" msgstr "Immagine" #: ../../include/bbcode.php:163 ../../include/bbcode.php:692 -======= -#: ../../include/bb2diaspora.php:455 ../../include/event.php:40 -#: ../../include/identity.php:726 ../../mod/directory.php:156 -#: ../../mod/dirprofile.php:105 ../../mod/events.php:474 -msgid "Location:" -msgstr "Luogo:" - -#: ../../include/bbcode.php:128 ../../include/bbcode.php:633 -#: ../../include/bbcode.php:636 ../../include/bbcode.php:641 -#: ../../include/bbcode.php:644 ../../include/bbcode.php:647 -#: ../../include/bbcode.php:650 ../../include/bbcode.php:655 -#: ../../include/bbcode.php:658 ../../include/bbcode.php:663 -#: ../../include/bbcode.php:666 ../../include/bbcode.php:669 -#: ../../include/bbcode.php:672 -msgid "Image/photo" -msgstr "Immagine" - -#: ../../include/bbcode.php:163 ../../include/bbcode.php:683 ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb msgid "Encrypted content" msgstr "Contenuto crittografato" @@ -738,16 +553,11 @@ msgstr "Contenuto crittografato" msgid "QR code" msgstr "QR code" -<<<<<<< HEAD #: ../../include/bbcode.php:228 -======= -#: ../../include/bbcode.php:219 ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #, php-format msgid "%1$s wrote the following %2$s %3$s" msgstr "%1$s ha scritto %2$s %3$s" -<<<<<<< HEAD #: ../../include/bbcode.php:230 msgid "post" msgstr "l'articolo" @@ -762,233 +572,6 @@ msgid "" "may apply to this group and any future members. If this is " "not what you intended, please create another group with a different name." msgstr "È stato ripristinato un insieme con lo stesso nome che era stato eliminato in precedenza. I permessi già presenti potrebbero rimanere validi per i nuovi canali. Se non vuoi che ciò accada, devi creare un altro insieme con un nome diverso." -======= -#: ../../include/bbcode.php:221 -msgid "post" -msgstr "l'articolo" - -#: ../../include/bbcode.php:601 ../../include/bbcode.php:621 -msgid "$1 wrote:" -msgstr "$1 ha scritto:" - -#: ../../include/ItemObject.php:89 ../../include/conversation.php:639 -#: ../../mod/photos.php:846 -msgid "Private Message" -msgstr "Messaggio privato" - -#: ../../include/ItemObject.php:108 ../../include/conversation.php:632 -#: ../../mod/admin.php:757 ../../mod/admin.php:886 ../../mod/connedit.php:398 -#: ../../mod/settings.php:578 ../../mod/filestorage.php:175 -#: ../../mod/group.php:176 ../../mod/thing.php:236 ../../mod/photos.php:1043 -msgid "Delete" -msgstr "Elimina" - -#: ../../include/ItemObject.php:114 ../../include/conversation.php:631 -msgid "Select" -msgstr "Seleziona" - -#: ../../include/ItemObject.php:118 -msgid "save to folder" -msgstr "salva in una cartella" - -#: ../../include/ItemObject.php:128 -msgid "Like" -msgstr "Mi piace" - -#: ../../include/ItemObject.php:128 ../../mod/profiles.php:302 -msgid "Likes" -msgstr "Mi piace" - -#: ../../include/ItemObject.php:132 -msgid "Dislike" -msgstr "Non mi piace" - -#: ../../include/ItemObject.php:132 ../../mod/profiles.php:306 -msgid "Dislikes" -msgstr "Non mi piace" - -#: ../../include/ItemObject.php:154 -msgid "add star" -msgstr "aggiungi ai preferiti" - -#: ../../include/ItemObject.php:155 -msgid "remove star" -msgstr "rimuovi dai preferiti" - -#: ../../include/ItemObject.php:156 -msgid "toggle star status" -msgstr "Attiva/disattiva preferito" - -#: ../../include/ItemObject.php:160 -msgid "starred" -msgstr "preferito" - -#: ../../include/ItemObject.php:169 ../../include/conversation.php:646 -msgid "Message is verified" -msgstr "Messaggio verificato" - -#: ../../include/ItemObject.php:177 -msgid "add tag" -msgstr "Aggiungi tag" - -#: ../../include/ItemObject.php:192 ../../mod/photos.php:971 -msgid "I like this (toggle)" -msgstr "Attiva/disattiva Mi piace" - -#: ../../include/ItemObject.php:192 ../../include/taxonomy.php:254 -msgid "like" -msgstr "mi piace" - -#: ../../include/ItemObject.php:193 ../../mod/photos.php:972 -msgid "I don't like this (toggle)" -msgstr "Attiva/disattiva Non mi piace" - -#: ../../include/ItemObject.php:193 ../../include/taxonomy.php:255 -msgid "dislike" -msgstr "non mi piace" - -#: ../../include/ItemObject.php:195 -msgid "Share this" -msgstr "Condividi" - -#: ../../include/ItemObject.php:195 -msgid "share" -msgstr "condividi" - -#: ../../include/ItemObject.php:219 ../../include/ItemObject.php:220 -#, php-format -msgid "View %s's profile - %s" -msgstr "Guarda il profilo di %s - %s" - -#: ../../include/ItemObject.php:221 -msgid "to" -msgstr "a" - -#: ../../include/ItemObject.php:222 -msgid "via" -msgstr "via" - -#: ../../include/ItemObject.php:223 -msgid "Wall-to-Wall" -msgstr "Da bacheca a bacheca" - -#: ../../include/ItemObject.php:224 -msgid "via Wall-To-Wall:" -msgstr "da bacheca a bacheca:" - -#: ../../include/ItemObject.php:234 ../../include/conversation.php:690 -#, php-format -msgid " from %s" -msgstr " da %s" - -#: ../../include/ItemObject.php:237 ../../include/conversation.php:693 -#, php-format -msgid "last edited: %s" -msgstr "ultima modifica: %s" - -#: ../../include/ItemObject.php:238 ../../include/conversation.php:694 -#, php-format -msgid "Expires: %s" -msgstr "Scadenza: %s" - -#: ../../include/ItemObject.php:258 -msgid "Bookmark Links" -msgstr "I link dei segnalibri" - -#: ../../include/ItemObject.php:272 ../../include/conversation.php:711 -#: ../../include/conversation.php:1127 ../../mod/editblock.php:120 -#: ../../mod/editlayout.php:115 ../../mod/editpost.php:121 -#: ../../mod/editwebpage.php:152 ../../mod/mail.php:222 ../../mod/mail.php:336 -#: ../../mod/photos.php:974 -msgid "Please wait" -msgstr "Attendere" - -#: ../../include/ItemObject.php:293 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commento" -msgstr[1] "%d commenti" - -#: ../../include/ItemObject.php:294 ../../include/contact_widgets.php:130 -#: ../../include/js_strings.php:7 -msgid "show more" -msgstr "mostra tutto" - -#: ../../include/ItemObject.php:558 ../../mod/photos.php:990 -#: ../../mod/photos.php:1077 -msgid "This is you" -msgstr "Questo sei tu" - -#: ../../include/ItemObject.php:560 ../../include/js_strings.php:6 -#: ../../mod/photos.php:992 ../../mod/photos.php:1079 -msgid "Comment" -msgstr "Commento" - -#: ../../include/ItemObject.php:561 ../../mod/mood.php:142 -#: ../../mod/admin.php:441 ../../mod/admin.php:750 ../../mod/admin.php:884 -#: ../../mod/admin.php:1017 ../../mod/admin.php:1216 ../../mod/admin.php:1303 -#: ../../mod/poke.php:166 ../../mod/profiles.php:506 ../../mod/chat.php:177 -#: ../../mod/chat.php:211 ../../mod/connect.php:92 ../../mod/connedit.php:476 -#: ../../mod/settings.php:515 ../../mod/settings.php:627 -#: ../../mod/settings.php:655 ../../mod/settings.php:679 -#: ../../mod/settings.php:751 ../../mod/settings.php:929 -#: ../../mod/setup.php:307 ../../mod/setup.php:350 ../../mod/pdledit.php:58 -#: ../../mod/events.php:481 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/filestorage.php:135 -#: ../../mod/fsuggest.php:108 ../../mod/group.php:81 ../../mod/thing.php:283 -#: ../../mod/thing.php:326 ../../mod/import.php:387 ../../mod/invite.php:156 -#: ../../mod/mail.php:223 ../../mod/mail.php:335 ../../mod/photos.php:565 -#: ../../mod/photos.php:670 ../../mod/photos.php:953 ../../mod/photos.php:993 -#: ../../mod/photos.php:1080 ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/blogga/php/config.php:67 -#: ../../view/theme/blogga/view/theme/blog/config.php:67 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Salva" - -#: ../../include/ItemObject.php:562 -msgid "Bold" -msgstr "Grassetto" - -#: ../../include/ItemObject.php:563 -msgid "Italic" -msgstr "Corsivo" - -#: ../../include/ItemObject.php:564 -msgid "Underline" -msgstr "Sottolineato" - -#: ../../include/ItemObject.php:565 -msgid "Quote" -msgstr "Citazione" - -#: ../../include/ItemObject.php:566 -msgid "Code" -msgstr "Codice" - -#: ../../include/ItemObject.php:567 -msgid "Image" -msgstr "Immagine" - -#: ../../include/ItemObject.php:568 -msgid "Link" -msgstr "Link" - -#: ../../include/ItemObject.php:569 -msgid "Video" -msgstr "Video" - -#: ../../include/ItemObject.php:573 ../../include/conversation.php:1153 -#: ../../mod/editpost.php:148 ../../mod/mail.php:228 ../../mod/mail.php:341 -msgid "Encrypt text" -msgstr "Crittografia del testo" - -#: ../../include/bookmarks.php:42 -#, php-format -msgid "%1$s's bookmarks" -msgstr "I segnalibri di %1$s" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/group.php:223 msgid "Default privacy group for new contacts" @@ -1002,7 +585,6 @@ msgstr "Tutti i canali" msgid "edit" msgstr "modifica" -<<<<<<< HEAD #: ../../include/group.php:285 msgid "Collections" msgstr "Insiemi di canali" @@ -1010,15 +592,6 @@ msgstr "Insiemi di canali" #: ../../include/group.php:286 msgid "Edit collection" msgstr "Modifica l'insieme di canali" -======= -#: ../../include/chat.php:105 -msgid "Room not found." -msgstr "Chat non trovata." - -#: ../../include/chat.php:126 -msgid "Room is full" -msgstr "La chat è al completo" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/group.php:287 msgid "Create a new collection" @@ -1193,27 +766,18 @@ msgstr "Poke" msgid "%s likes this." msgstr "Piace a %s." -<<<<<<< HEAD #: ../../include/conversation.php:998 #, php-format msgid "%s doesn't like this." msgstr "Non piace a %s." #: ../../include/conversation.php:1002 -======= -#: ../../include/text.php:729 -msgid "No connections" -msgstr "Nessun contatto" - -#: ../../include/text.php:742 ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." msgstr[0] "" msgstr[1] "Piace a %2$d persone." -<<<<<<< HEAD #: ../../include/conversation.php:1004 #, php-format msgid "%2$d people don't like this." @@ -1558,316 +1122,6 @@ msgstr "%1$s ha aggiornato %2$s cambiando %3$s." #: ../../include/network.php:652 msgid "view full size" msgstr "guarda nelle dimensioni reali" -======= -#: ../../include/text.php:754 -msgid "View Connections" -msgstr "Elenco contatti" - -#: ../../include/text.php:813 ../../include/text.php:827 -#: ../../include/nav.php:144 ../../mod/search.php:29 -msgid "Search" -msgstr "Cerca" - -#: ../../include/text.php:815 ../../include/text.php:829 -#: ../../include/widgets.php:185 ../../mod/rbmark.php:28 -#: ../../mod/rbmark.php:98 ../../mod/filer.php:50 -msgid "Save" -msgstr "Salva" - -#: ../../include/text.php:895 -msgid "poke" -msgstr "poke" - -#: ../../include/text.php:895 ../../include/conversation.php:240 -msgid "poked" -msgstr "ha ricevuto un poke" - -#: ../../include/text.php:896 -msgid "ping" -msgstr "ping" - -#: ../../include/text.php:896 -msgid "pinged" -msgstr "ha ricevuto un ping" - -#: ../../include/text.php:897 -msgid "prod" -msgstr "prod" - -#: ../../include/text.php:897 -msgid "prodded" -msgstr "ha ricevuto un prod" - -#: ../../include/text.php:898 -msgid "slap" -msgstr "schiaffo" - -#: ../../include/text.php:898 -msgid "slapped" -msgstr "ha ricevuto uno schiaffo" - -#: ../../include/text.php:899 -msgid "finger" -msgstr "finger" - -#: ../../include/text.php:899 -msgid "fingered" -msgstr "ha ricevuto un finger" - -#: ../../include/text.php:900 -msgid "rebuff" -msgstr "rifiuto" - -#: ../../include/text.php:900 -msgid "rebuffed" -msgstr "ha ricevuto un rifiuto" - -#: ../../include/text.php:909 -msgid "happy" -msgstr "allegro" - -#: ../../include/text.php:910 -msgid "sad" -msgstr "triste" - -#: ../../include/text.php:911 -msgid "mellow" -msgstr "calmo" - -#: ../../include/text.php:912 -msgid "tired" -msgstr "stanco" - -#: ../../include/text.php:913 -msgid "perky" -msgstr "vivace" - -#: ../../include/text.php:914 -msgid "angry" -msgstr "arrabbiato" - -#: ../../include/text.php:915 -msgid "stupified" -msgstr "stordito" - -#: ../../include/text.php:916 -msgid "puzzled" -msgstr "confuso" - -#: ../../include/text.php:917 -msgid "interested" -msgstr "attento" - -#: ../../include/text.php:918 -msgid "bitter" -msgstr "amaro" - -#: ../../include/text.php:919 -msgid "cheerful" -msgstr "allegro" - -#: ../../include/text.php:920 -msgid "alive" -msgstr "vivace" - -#: ../../include/text.php:921 -msgid "annoyed" -msgstr "seccato" - -#: ../../include/text.php:922 -msgid "anxious" -msgstr "ansioso" - -#: ../../include/text.php:923 -msgid "cranky" -msgstr "irritabile" - -#: ../../include/text.php:924 -msgid "disturbed" -msgstr "turbato" - -#: ../../include/text.php:925 -msgid "frustrated" -msgstr "frustrato" - -#: ../../include/text.php:926 -msgid "depressed" -msgstr "in depressione" - -#: ../../include/text.php:927 -msgid "motivated" -msgstr "motivato" - -#: ../../include/text.php:928 -msgid "relaxed" -msgstr "rilassato" - -#: ../../include/text.php:929 -msgid "surprised" -msgstr "sorpreso" - -#: ../../include/text.php:1090 -msgid "Monday" -msgstr "lunedì" - -#: ../../include/text.php:1090 -msgid "Tuesday" -msgstr "martedì" - -#: ../../include/text.php:1090 -msgid "Wednesday" -msgstr "mercoledì" - -#: ../../include/text.php:1090 -msgid "Thursday" -msgstr "giovedì" - -#: ../../include/text.php:1090 -msgid "Friday" -msgstr "venerdì" - -#: ../../include/text.php:1090 -msgid "Saturday" -msgstr "sabato" - -#: ../../include/text.php:1090 -msgid "Sunday" -msgstr "domenica" - -#: ../../include/text.php:1094 -msgid "January" -msgstr "gennaio" - -#: ../../include/text.php:1094 -msgid "February" -msgstr "febbraio" - -#: ../../include/text.php:1094 -msgid "March" -msgstr "marzo" - -#: ../../include/text.php:1094 -msgid "April" -msgstr "aprile" - -#: ../../include/text.php:1094 -msgid "May" -msgstr "maggio" - -#: ../../include/text.php:1094 -msgid "June" -msgstr "giugno" - -#: ../../include/text.php:1094 -msgid "July" -msgstr "luglio" - -#: ../../include/text.php:1094 -msgid "August" -msgstr "agosto" - -#: ../../include/text.php:1094 -msgid "September" -msgstr "settembre" - -#: ../../include/text.php:1094 -msgid "October" -msgstr "ottobre" - -#: ../../include/text.php:1094 -msgid "November" -msgstr "novembre" - -#: ../../include/text.php:1094 -msgid "December" -msgstr "dicembre" - -#: ../../include/text.php:1172 -msgid "unknown.???" -msgstr "sconosciuto???" - -#: ../../include/text.php:1173 -msgid "bytes" -msgstr "byte" - -#: ../../include/text.php:1208 -msgid "remove category" -msgstr "rimuovi la categoria" - -#: ../../include/text.php:1257 -msgid "remove from file" -msgstr "rimuovi dal file" - -#: ../../include/text.php:1318 ../../include/text.php:1330 -msgid "Click to open/close" -msgstr "Clicca per aprire/chiudere" - -#: ../../include/text.php:1485 ../../mod/events.php:344 -msgid "link to source" -msgstr "Link all'originale" - -#: ../../include/text.php:1504 -msgid "Select a page layout: " -msgstr "Scegli il layout della pagina:" - -#: ../../include/text.php:1507 ../../include/text.php:1572 -msgid "default" -msgstr "predefinito" - -#: ../../include/text.php:1543 -msgid "Page content type: " -msgstr "Contenuto della pagina:" - -#: ../../include/text.php:1584 -msgid "Select an alternate language" -msgstr "Seleziona una lingua diversa" - -#: ../../include/text.php:1705 ../../include/conversation.php:117 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:45 ../../mod/like.php:111 -msgid "photo" -msgstr "la foto" - -#: ../../include/text.php:1708 ../../include/conversation.php:120 -#: ../../mod/tagger.php:49 -msgid "event" -msgstr "l'evento" - -#: ../../include/text.php:1711 ../../include/conversation.php:145 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:53 ../../mod/like.php:111 -msgid "status" -msgstr "il messaggio di stato" - -#: ../../include/text.php:1713 ../../include/conversation.php:147 -#: ../../mod/tagger.php:55 -msgid "comment" -msgstr "il commento" - -#: ../../include/text.php:1718 -msgid "activity" -msgstr "l'attività" - -#: ../../include/text.php:1977 -msgid "Design" -msgstr "Design" - -#: ../../include/text.php:1979 -msgid "Blocks" -msgstr "Riquadri" - -#: ../../include/text.php:1980 -msgid "Menus" -msgstr "Menù" - -#: ../../include/text.php:1981 -msgid "Layouts" -msgstr "Layout" - -#: ../../include/text.php:1982 -msgid "Pages" -msgstr "Pagine" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/bookmarks.php:42 #, php-format @@ -1894,16 +1148,9 @@ msgstr "ha" msgid "want" msgstr "voglio" -<<<<<<< HEAD #: ../../include/taxonomy.php:253 msgid "wants" msgstr "vuole" -======= -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:391 -#: ../../mod/directory.php:206 ../../mod/directory.php:211 -msgid "Find" -msgstr "Cerca" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/taxonomy.php:254 ../../include/ItemObject.php:205 msgid "like" @@ -1932,7 +1179,6 @@ msgstr "non mi piace" msgid "Edit" msgstr "Modifica" -<<<<<<< HEAD #: ../../include/ItemObject.php:118 msgid "save to folder" msgstr "salva in una cartella" @@ -1958,17 +1204,6 @@ msgstr[1] "Non mi piace" #: ../../include/ItemObject.php:167 msgid "add star" msgstr "aggiungi ai preferiti" -======= -#: ../../include/contact_widgets.php:58 ../../include/features.php:66 -#: ../../include/widgets.php:295 -msgid "Saved Folders" -msgstr "Cartelle salvate" - -#: ../../include/contact_widgets.php:61 ../../include/contact_widgets.php:95 -#: ../../include/widgets.php:298 -msgid "Everything" -msgstr "Tutto" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/ItemObject.php:168 msgid "remove star" @@ -2345,34 +1580,20 @@ msgstr "%1$s, %2$s ti ha taggato su %3$s" msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." msgstr "%1$s, %2$s [zrl=%3$s]ti ha taggato[/zrl]." -<<<<<<< HEAD #: ../../include/enotify.php:225 #, php-format msgid "[Red:Notify] %1$s poked you" msgstr "[Red:Notifica] %1$s ti ha mandato un poke" -======= -#: ../../include/conversation.php:1415 ../../include/widgets.php:81 -msgid "Personal" -msgstr "Personali" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/enotify.php:226 #, php-format msgid "%1$s, %2$s poked you at %3$s" msgstr "%1$s, %2$s ti ha mandato un poke su %3$s" -<<<<<<< HEAD #: ../../include/enotify.php:227 #, php-format msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." msgstr "%1$s, %2$s [zrl=%2$s]ti ha mandato un poke[/zrl]." -======= -#: ../../include/conversation.php:1424 ../../include/widgets.php:83 -#: ../../mod/connections.php:211 ../../mod/connections.php:224 -#: ../../mod/menu.php:61 -msgid "New" -msgstr "Novità" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/enotify.php:243 #, php-format @@ -2418,7 +1639,6 @@ msgstr "Visita %s per approvare o rifiutare la richiesta di entrare in contatto. msgid "[Red:Notify] Friend suggestion received" msgstr "[Red:Notifica] Ti è stato suggerito un amico" -<<<<<<< HEAD #: ../../include/enotify.php:273 #, php-format msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" @@ -2430,12 +1650,6 @@ msgid "" "%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " "%4$s." msgstr "%1$s, %4$s ti [zrl=%2$s]ha suggerito %3$s[/zrl] come amico." -======= -#: ../../include/conversation.php:1510 ../../include/nav.php:85 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "Elenco file" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/enotify.php:280 msgid "Name:" @@ -2445,7 +1659,6 @@ msgstr "Nome:" msgid "Photo:" msgstr "Foto:" -<<<<<<< HEAD #: ../../include/enotify.php:284 #, php-format msgid "Please visit %s to approve or reject the suggestion." @@ -2454,11 +1667,6 @@ msgstr "Visita %s per approvare o rifiutare il suggerimento." #: ../../include/attach.php:224 ../../include/attach.php:278 msgid "Item was not found." msgstr "Elemento non trovato." -======= -#: ../../include/conversation.php:1535 -msgid "Events and Calendar" -msgstr "Calendario eventi" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/attach.php:335 msgid "No source file." @@ -2850,16 +2058,9 @@ msgstr "La tua email è già registrata su questo sito." msgid "An invitation is required." msgstr "È necessario un invito." -<<<<<<< HEAD #: ../../include/account.php:68 msgid "Invitation could not be verified." msgstr "L'invito non può essere verificato." -======= -#: ../../include/features.php:43 ../../include/widgets.php:502 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Sorgenti del canale" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/account.php:119 msgid "Please enter the required information." @@ -2897,15 +2098,9 @@ msgstr "Account approvato." msgid "Registration revoked for %s" msgstr "Registrazione revocata per %s" -<<<<<<< HEAD #: ../../include/Contact.php:123 msgid "New window" msgstr "Nuova finestra" -======= -#: ../../include/features.php:52 ../../include/widgets.php:264 -msgid "Saved Searches" -msgstr "Ricerche salvate" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/Contact.php:124 msgid "Open the selected location in a different window or browser tab" @@ -3035,7 +2230,6 @@ msgstr "Accesso fallito." msgid "prev" msgstr "prec" -<<<<<<< HEAD #: ../../include/text.php:322 msgid "first" msgstr "inizio" @@ -3051,14 +2245,6 @@ msgstr "succ" #: ../../include/text.php:366 msgid "older" msgstr "più recenti" -======= -#: ../../include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "È stato ripristinato un insieme con lo stesso nome che era stato eliminato in precedenza. I permessi già presenti potrebbero rimanere validi per i nuovi canali. Se non vuoi che ciò accada, devi creare un altro insieme con un nome diverso." ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/text.php:368 msgid "newer" @@ -3091,7 +2277,6 @@ msgstr "ping" msgid "pinged" msgstr "ha ricevuto un ping" -<<<<<<< HEAD #: ../../include/text.php:897 msgid "prod" msgstr "prod" @@ -3099,15 +2284,6 @@ msgstr "prod" #: ../../include/text.php:897 msgid "prodded" msgstr "ha ricevuto un prod" -======= -#: ../../include/group.php:290 ../../include/widgets.php:265 -msgid "add" -msgstr "aggiungi" - -#: ../../include/identity.php:30 ../../mod/item.php:1244 -msgid "Unable to obtain identity information from database" -msgstr "Impossibile ottenere le informazioni di identificazione dal database" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/text.php:898 msgid "slap" @@ -3141,16 +2317,9 @@ msgstr "allegro" msgid "sad" msgstr "triste" -<<<<<<< HEAD #: ../../include/text.php:911 msgid "mellow" msgstr "calmo" -======= -#: ../../include/identity.php:342 ../../include/profile_selectors.php:42 -#: ../../include/widgets.php:399 ../../mod/connedit.php:431 -msgid "Friends" -msgstr "Amici" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/text.php:912 msgid "tired" @@ -3244,7 +2413,6 @@ msgstr "giovedì" msgid "Friday" msgstr "venerdì" -<<<<<<< HEAD #: ../../include/text.php:1090 msgid "Saturday" msgstr "sabato" @@ -3252,11 +2420,6 @@ msgstr "sabato" #: ../../include/text.php:1090 msgid "Sunday" msgstr "domenica" -======= -#: ../../include/identity.php:950 ../../mod/settings.php:937 -msgid "Full Name:" -msgstr "Nome completo:" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/text.php:1094 msgid "January" @@ -3350,7 +2513,6 @@ msgstr "Seleziona una lingua diversa" msgid "activity" msgstr "l'attività" -<<<<<<< HEAD #: ../../include/text.php:1977 msgid "Design" msgstr "Design" @@ -3382,46 +2544,6 @@ msgstr "Il nome della chat è duplicato" #: ../../include/chat.php:68 ../../include/chat.php:76 msgid "Invalid room specifier." msgstr "Il nome della chat non è valido." -======= -#: ../../include/items.php:306 ../../mod/profperm.php:23 -#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:63 -#: ../../index.php:361 -msgid "Permission denied" -msgstr "Permesso negato" - -#: ../../include/items.php:830 -msgid "(Unknown)" -msgstr "(Sconosciuto)" - -#: ../../include/items.php:3583 ../../mod/admin.php:159 -#: ../../mod/admin.php:921 ../../mod/admin.php:1124 ../../mod/display.php:32 -#: ../../mod/filestorage.php:18 ../../mod/home.php:63 ../../mod/thing.php:78 -#: ../../mod/viewsrc.php:18 -msgid "Item not found." -msgstr "Elemento non trovato." - -#: ../../include/items.php:4007 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "Insieme non trovato." - -#: ../../include/items.php:4022 -msgid "Collection is empty." -msgstr "L'insieme di canali è vuoto." - -#: ../../include/items.php:4029 -#, php-format -msgid "Collection: %s" -msgstr "Insieme: %s" - -#: ../../include/items.php:4040 -#, php-format -msgid "Connection: %s" -msgstr "Contatto: %s" - -#: ../../include/items.php:4043 -msgid "Connection not found." -msgstr "Contatto non trovato." ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/chat.php:105 msgid "Room not found." @@ -3463,7 +2585,6 @@ msgstr "Attiva la creazione di pagine web sul tuo canale" msgid "Private Notes" msgstr "Note private" -<<<<<<< HEAD #: ../../include/features.php:28 msgid "Enables a tool to store notes and reminders" msgstr "Abilita il riquadro per scrivere annotazioni" @@ -3536,84 +2657,6 @@ msgstr "Filtraggio dei contenuti" #: ../../include/features.php:50 msgid "Search by Date" msgstr "Ricerca per data" -======= -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "chiudi tutto" - -#: ../../include/js_strings.php:19 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" - -#: ../../include/js_strings.php:20 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" - -#: ../../include/js_strings.php:21 -msgid "ago" -msgstr "fa" - -#: ../../include/js_strings.php:22 -msgid "from now" -msgstr "da adesso" - -#: ../../include/js_strings.php:23 -msgid "less than a minute" -msgstr "meno di un minuto" - -#: ../../include/js_strings.php:24 -msgid "about a minute" -msgstr "circa un minuto" - -#: ../../include/js_strings.php:25 -#, php-format -msgid "%d minutes" -msgstr "%d minuti" - -#: ../../include/js_strings.php:26 -msgid "about an hour" -msgstr "circa un’ora" - -#: ../../include/js_strings.php:27 -#, php-format -msgid "about %d hours" -msgstr "circa %d ore" - -#: ../../include/js_strings.php:28 -msgid "a day" -msgstr "un giorno" - -#: ../../include/js_strings.php:29 -#, php-format -msgid "%d days" -msgstr "%d giorni" - -#: ../../include/js_strings.php:30 -msgid "about a month" -msgstr "circa un mese" - -#: ../../include/js_strings.php:31 -#, php-format -msgid "%d months" -msgstr "%d mesi" - -#: ../../include/js_strings.php:32 -msgid "about a year" -msgstr "circa un anno" - -#: ../../include/js_strings.php:33 -#, php-format -msgid "%d years" -msgstr "%d anni" - -#: ../../include/js_strings.php:34 -msgid " " -msgstr " " - -#: ../../include/js_strings.php:35 -msgid "timeago.numbers" -msgstr "timeago.numbers" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/features.php:50 msgid "Ability to select posts by date ranges" @@ -3723,15 +2766,9 @@ msgstr "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale" msgid "Can view my \"public\" stream and posts" msgstr "Può vedere i miei contenuti \"pubblici\"" -<<<<<<< HEAD #: ../../include/permissions.php:14 msgid "Can view my \"public\" channel profile" msgstr "Può vedere il profilo del mio canale \"pubblico\"" -======= -#: ../../include/nav.php:142 ../../mod/apps.php:17 -msgid "Apps" -msgstr "Apps" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/permissions.php:15 msgid "Can view my \"public\" photo albums" @@ -3741,7 +2778,6 @@ msgstr "Può vedere il mio album fotografico \"pubblico\"" msgid "Can view my \"public\" address book" msgstr "Può vedere il mio elenco contatti \"pubblico\"" -<<<<<<< HEAD #: ../../include/permissions.php:17 msgid "Can view my \"public\" file storage" msgstr "Può vedere il mio archivio file \"pubblico\"" @@ -3757,21 +2793,11 @@ msgstr "È tra i canali che seguo" #: ../../include/permissions.php:22 msgid "Can post on my channel page (\"wall\")" msgstr "Può scrivere sulla bacheca del mio canale" -======= -#: ../../include/nav.php:147 -msgid "Channel Locator" -msgstr "Ricerca canali" - -#: ../../include/nav.php:158 -msgid "Your matrix" -msgstr "La tua rete" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/permissions.php:23 msgid "Can comment on my posts" msgstr "Può commentare i miei articoli" -<<<<<<< HEAD #: ../../include/permissions.php:24 msgid "Can send me private mail messages" msgstr "Può inviarmi messaggi privati" @@ -3779,26 +2805,14 @@ msgstr "Può inviarmi messaggi privati" #: ../../include/permissions.php:25 msgid "Can post photos to my photo albums" msgstr "Può aggiungere foto ai miei album" -======= -#: ../../include/nav.php:161 -msgid "Channel home" -msgstr "Bacheca del canale" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../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" -<<<<<<< HEAD #: ../../include/permissions.php:26 msgid "Advanced - useful for creating group forum channels" msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione" -======= -#: ../../include/nav.php:165 ../../include/nav.php:188 -#: ../../mod/connections.php:385 -msgid "Connections" -msgstr "Contatti" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/permissions.php:27 msgid "Can chat with me (when available)" @@ -3812,15 +2826,9 @@ msgstr "Può scrivere sul mio archivio di file \"pubblico\"" msgid "Can edit my \"public\" pages" msgstr "Può modificare le mie pagine web \"pubbliche\"" -<<<<<<< HEAD #: ../../include/permissions.php:31 msgid "Can source my \"public\" posts in derived channels" msgstr "Può aggiungere i miei post \"pubblici\" a un suo canale derivato" -======= -#: ../../include/nav.php:170 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Segna come lette le notifiche di sistema" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/permissions.php:31 msgid "Somewhat advanced - very useful in open communities" @@ -3848,18 +2856,12 @@ msgstr "Impossibile verificare la firma elettronica del canale" msgid "Unable to verify site signature for %s" msgstr "Impossibile verificare la firma elettronica del sito %s" -<<<<<<< HEAD #: ../../include/contact_widgets.php:14 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" msgstr[0] "%d invito disponibile" msgstr[1] "%d inviti disponibili" -======= -#: ../../include/nav.php:177 ../../include/widgets.php:535 -msgid "New Message" -msgstr "Nuovo messaggio" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/contact_widgets.php:19 ../../mod/admin.php:445 msgid "Advanced" @@ -3881,17 +2883,10 @@ msgstr "Entra in contatto" msgid "Examples: Robert Morgenstein, Fishing" msgstr "Per esempio: Mario Rossi, Pesca" -<<<<<<< HEAD #: ../../include/contact_widgets.php:26 ../../mod/directory.php:206 #: ../../mod/directory.php:211 ../../mod/connections.php:391 msgid "Find" msgstr "Cerca" -======= -#: ../../include/nav.php:186 ../../include/widgets.php:513 -#: ../../mod/admin.php:976 ../../mod/admin.php:1181 -msgid "Settings" -msgstr "Impostazioni" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 msgid "Channel Suggestions" @@ -3924,7 +2919,6 @@ msgstr[1] "%d contatti in comune" msgid "Miscellaneous" msgstr "Altro" -<<<<<<< HEAD #: ../../include/datetime.php:152 ../../include/datetime.php:284 msgid "year" msgstr "anno" @@ -3936,19 +2930,6 @@ msgstr "mese" #: ../../include/datetime.php:162 ../../include/datetime.php:287 msgid "day" msgstr "giorno" -======= -#: ../../include/plugin.php:486 ../../include/plugin.php:488 -msgid "Click here to upgrade." -msgstr "Clicca qui per aggiornare." - -#: ../../include/plugin.php:494 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Questa operazione esce dai termini del tuo abbonamento." - -#: ../../include/plugin.php:499 -msgid "This action is not available under your subscription plan." -msgstr "Questa operazione non è prevista dal tuo abbonamento." ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/datetime.php:275 msgid "never" @@ -4189,7 +3170,6 @@ msgstr "Religione:" msgid "About:" msgstr "Informazioni:" -<<<<<<< HEAD #: ../../include/identity.php:1000 msgid "Hobbies/Interests:" msgstr "Interessi e hobby:" @@ -4319,163 +3299,6 @@ msgstr "circa un’ora" #, php-format msgid "about %d hours" msgstr "circa %d ore" -======= -#: ../../include/reddav.php:1045 -msgid "Edit File properties" -msgstr "Modifica le proprietà dei file" - -#: ../../include/zot.php:587 -msgid "Invalid data packet" -msgstr "Dati non validi" - -#: ../../include/zot.php:597 -msgid "Unable to verify channel signature" -msgstr "Impossibile verificare la firma elettronica del canale" - -#: ../../include/zot.php:794 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Impossibile verificare la firma elettronica del sito %s" - -#: ../../include/security.php:301 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "L'identificativo di sicurezza del modulo che hai riempito non è corretto. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto." - -#: ../../include/widgets.php:79 -msgid "App Category" -msgstr "Categorie App" - -#: ../../include/widgets.php:80 -msgid "System" -msgstr "Sistema" - -#: ../../include/widgets.php:82 -msgid "Featured" -msgstr "In evidenza" - -#: ../../include/widgets.php:129 ../../mod/suggest.php:53 -msgid "Ignore/Hide" -msgstr "Ignora/nascondi" - -#: ../../include/widgets.php:135 ../../mod/connections.php:266 -msgid "Suggestions" -msgstr "Suggerimenti" - -#: ../../include/widgets.php:136 -msgid "See more..." -msgstr "Altro..." - -#: ../../include/widgets.php:158 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Hai attivato %1$.0f delle %2$.0f connessioni permesse." - -#: ../../include/widgets.php:164 -msgid "Add New Connection" -msgstr "Aggiungi un contatto" - -#: ../../include/widgets.php:165 -msgid "Enter the channel address" -msgstr "Scrivi l'indirizzo del canale" - -#: ../../include/widgets.php:166 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Per esempio: mario@pippo.it oppure http://pluto.com/barbara" - -#: ../../include/widgets.php:183 -msgid "Notes" -msgstr "Note" - -#: ../../include/widgets.php:255 -msgid "Remove term" -msgstr "Rimuovi termine" - -#: ../../include/widgets.php:334 -msgid "Archives" -msgstr "Archivi" - -#: ../../include/widgets.php:396 -msgid "Refresh" -msgstr "Aggiorna" - -#: ../../include/widgets.php:397 ../../mod/connedit.php:428 -msgid "Me" -msgstr "Io" - -#: ../../include/widgets.php:398 ../../mod/connedit.php:430 -msgid "Best Friends" -msgstr "Buoni amici" - -#: ../../include/widgets.php:400 -msgid "Co-workers" -msgstr "Colleghi" - -#: ../../include/widgets.php:401 ../../mod/connedit.php:432 -msgid "Former Friends" -msgstr "Ex amici" - -#: ../../include/widgets.php:402 ../../mod/connedit.php:433 -msgid "Acquaintances" -msgstr "Conoscenti" - -#: ../../include/widgets.php:403 -msgid "Everybody" -msgstr "Tutti" - -#: ../../include/widgets.php:435 -msgid "Account settings" -msgstr "Impostazioni dell'account" - -#: ../../include/widgets.php:441 -msgid "Channel settings" -msgstr "Impostazioni del canale" - -#: ../../include/widgets.php:447 -msgid "Additional features" -msgstr "Funzionalità aggiuntive" - -#: ../../include/widgets.php:453 -msgid "Feature settings" -msgstr "Impostazioni aggiuntive" - -#: ../../include/widgets.php:459 -msgid "Display settings" -msgstr "Impostazioni grafiche" - -#: ../../include/widgets.php:465 -msgid "Connected apps" -msgstr "App connesse" - -#: ../../include/widgets.php:471 -msgid "Export channel" -msgstr "Esporta il canale" - -#: ../../include/widgets.php:483 -msgid "Automatic Permissions (Advanced)" -msgstr "Permessi predefiniti (avanzato)" - -#: ../../include/widgets.php:493 -msgid "Premium Channel Settings" -msgstr "Canale premium - impostazioni" - -#: ../../include/widgets.php:530 -msgid "Check Mail" -msgstr "Controlla i messaggi" - -#: ../../include/widgets.php:611 -msgid "Chat Rooms" -msgstr "Chat attive" - -#: ../../include/widgets.php:629 -msgid "Bookmarked Chatrooms" -msgstr "Chat nei segnalibri" - -#: ../../include/widgets.php:647 -msgid "Suggested Chatrooms" -msgstr "Chat suggerite" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../include/js_strings.php:28 msgid "a day" @@ -5279,7 +4102,6 @@ msgstr "Sorgente non trovata." msgid "Edit Source" msgstr "Modifica la sorgente" -<<<<<<< HEAD #: ../../mod/sources.php:131 msgid "Delete Source" msgstr "Elimina la sorgente" @@ -5291,11 +4113,6 @@ msgstr "Sorgente eliminata" #: ../../mod/sources.php:160 msgid "Unable to remove source." msgstr "Impossibile rimuovere la sorgente." -======= -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Elemento non disponibile." ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../mod/profperm.php:29 ../../mod/profperm.php:58 msgid "Invalid profile identifier." @@ -5309,7 +4126,6 @@ msgstr "Modifica la visibilità del profilo" msgid "Click on a contact to add or remove." msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." -<<<<<<< HEAD #: ../../mod/profperm.php:123 msgid "Visible To" msgstr "Visibile a" @@ -5317,12 +4133,6 @@ msgstr "Visibile a" #: ../../mod/profperm.php:139 ../../mod/connections.php:278 msgid "All Connections" msgstr "Tutti i contatti" -======= -#: ../../mod/block.php:75 ../../mod/page.php:83 ../../mod/display.php:100 -#: ../../mod/help.php:72 ../../index.php:237 -msgid "Page not found." -msgstr "Pagina non trovata." ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../mod/profile_photo.php:108 msgid "Image uploaded but image cropping failed." @@ -5408,54 +4218,11 @@ msgstr "Il ridimensionamento del'immagine [%s] è fallito." msgid "Block Name" msgstr "Nome del riquadro" -<<<<<<< HEAD #: ../../mod/post.php:226 msgid "" "Remote authentication blocked. You are logged into this site locally. Please" " logout and retry." msgstr "L'autenticazione remota non è disponibile. Hai accesso solamente a questo sito. Puoi provare ad uscire per tentare di nuovo." -======= -#: ../../mod/profiles.php:18 ../../mod/profiles.php:138 -#: ../../mod/profiles.php:168 ../../mod/profiles.php:463 -msgid "Profile not found." -msgstr "Profilo non trovato." - -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "Profilo eliminato." - -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "Profilo-" - -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "Il nuovo profilo è stato creato." - -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "Impossibile duplicare il profilo." - -#: ../../mod/profiles.php:178 -msgid "Profile Name is required." -msgstr "Il nome del profilo è obbligatorio ." - -#: ../../mod/profiles.php:294 -msgid "Marital Status" -msgstr "Stato sentimentale" - -#: ../../mod/profiles.php:298 -msgid "Romantic Partner" -msgstr "Partner affettivo" - -#: ../../mod/profiles.php:310 -msgid "Work/Employment" -msgstr "Lavoro/impiego" - -#: ../../mod/profiles.php:313 -msgid "Religion" -msgstr "Religione" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../mod/post.php:257 ../../mod/openid.php:72 ../../mod/openid.php:178 #, php-format @@ -5653,15 +4420,9 @@ msgstr "Per bloccare o meno questo contatto" msgid "Unignore" msgstr "Non ignorare" -<<<<<<< HEAD #: ../../mod/connedit.php:382 msgid "Ignore or Unignore this connection" msgstr "Per ignorare o meno questo contatto" -======= -#: ../../mod/profperm.php:139 ../../mod/connections.php:278 -msgid "All Connections" -msgstr "Tutti i contatti" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../mod/connedit.php:385 msgid "Unarchive" @@ -5719,7 +4480,6 @@ msgstr "Hai ricevuto da un canale una richiesta di entrare in contatto, se prose msgid "Slide to adjust your degree of friendship" msgstr "Trascina per restringere il grado di amicizia da mostrare" -<<<<<<< HEAD #: ../../mod/connedit.php:472 msgid "inherited" msgstr "derivato" @@ -5756,44 +4516,6 @@ msgstr "Modifica le informazioni sul contatto" #: ../../mod/connedit.php:482 msgid "Their Settings" msgstr "Permessi concessi a te" -======= -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "Chat non trovata" - -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "Lascia la chat" - -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Elimina questa chat" - -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "Non sono presente al momento" - -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Sono online" - -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Aggiungi chat ai segnalibri" - -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Nuova chat" - -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Nome della chat" - -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Le chat di %1$s" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../mod/connedit.php:483 msgid "My Settings" @@ -5987,7 +4709,6 @@ msgstr "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, msgid "Settings updated." msgstr "Impostazioni aggiornate." -<<<<<<< HEAD #: ../../mod/settings.php:514 ../../mod/settings.php:540 #: ../../mod/settings.php:576 msgid "Add application" @@ -6075,92 +4796,6 @@ msgstr "Nuova password:" #: ../../mod/settings.php:626 msgid "Confirm:" msgstr "Conferma:" -======= -#: ../../mod/connections.php:191 ../../mod/connections.php:291 -msgid "Blocked" -msgstr "Bloccati" - -#: ../../mod/connections.php:196 ../../mod/connections.php:298 -msgid "Ignored" -msgstr "Ignorati" - -#: ../../mod/connections.php:201 ../../mod/connections.php:312 -msgid "Hidden" -msgstr "Nascosti" - -#: ../../mod/connections.php:206 ../../mod/connections.php:305 -msgid "Archived" -msgstr "Archiviati" - -#: ../../mod/connections.php:230 ../../mod/connections.php:244 -msgid "All" -msgstr "Tutti" - -#: ../../mod/connections.php:239 ../../mod/connections.php:319 -msgid "Unconnected" -msgstr "Non connesso" - -#: ../../mod/connections.php:269 -msgid "Suggest new connections" -msgstr "Suggerisci nuovi contatti" - -#: ../../mod/connections.php:272 -msgid "New Connections" -msgstr "Nuovi contatti" - -#: ../../mod/connections.php:275 -msgid "Show pending (new) connections" -msgstr "Richieste di contatto in attesa" - -#: ../../mod/connections.php:281 -msgid "Show all connections" -msgstr "Mostra tutti i contatti" - -#: ../../mod/connections.php:284 -msgid "Unblocked" -msgstr "Non bloccati" - -#: ../../mod/connections.php:287 -msgid "Only show unblocked connections" -msgstr "Mostra solo i contatti non bloccati" - -#: ../../mod/connections.php:294 -msgid "Only show blocked connections" -msgstr "Mostra solo i contatti bloccati" - -#: ../../mod/connections.php:301 -msgid "Only show ignored connections" -msgstr "Mostra solo i contatti ignorati" - -#: ../../mod/connections.php:308 -msgid "Only show archived connections" -msgstr "Mostra solo i contatti archiviati" - -#: ../../mod/connections.php:315 -msgid "Only show hidden connections" -msgstr "Mostra solo i contatti nascosti" - -#: ../../mod/connections.php:322 -msgid "Only show one-way connections" -msgstr "Mostra solo i contatti non ricambiati" - -#: ../../mod/connections.php:367 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../mod/connections.php:368 -msgid "Edit contact" -msgstr "Modifica il contatto" - -#: ../../mod/connections.php:389 -msgid "Search your connections" -msgstr "Cerca tra i contatti" - -#: ../../mod/connections.php:390 -msgid "Finding: " -msgstr "Ricerca: " ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../mod/settings.php:626 msgid "Leave password fields blank unless changing" @@ -7083,31 +5718,19 @@ msgstr "Utente del sito (%s)" msgid "Password reset requested at %s" msgstr "È stato richiesto di reimpostare password su %s" -<<<<<<< HEAD #: ../../mod/lostpass.php:63 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non può essere reimpostata." -======= -#: ../../mod/setup.php:191 ../../mod/setup.php:260 ../../mod/setup.php:655 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Leggi il file 'install/INSTALL.txt'." ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../mod/lostpass.php:85 ../../boot.php:1461 msgid "Password Reset" msgstr "Reimposta la password" -<<<<<<< HEAD #: ../../mod/lostpass.php:86 msgid "Your password has been reset as requested." msgstr "La password è stata reimpostata come richiesto." -======= -#: ../../mod/setup.php:261 ../../mod/events.php:369 -msgid "Next" -msgstr "Successivo" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../mod/lostpass.php:87 msgid "Your new password is" @@ -7363,7 +5986,6 @@ msgstr "Oppure fornisci i dettagli del vecchio server/hub" msgid "Your old identity address (xyz@example.com)" msgstr "Il tuo vecchio identificativo (per esempio pippo@esempio.com)" -<<<<<<< HEAD #: ../../mod/import.php:381 msgid "Your old login email address" msgstr "L'email che usavi per accedere sul vecchio server" @@ -7419,79 +6041,6 @@ msgstr "Aggiungi chat ai segnalibri" #: ../../mod/chat.php:207 ../../mod/chat.php:229 msgid "New Chatroom" msgstr "Nuova chat" -======= -#: ../../mod/setup.php:569 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito." - -#: ../../mod/setup.php:570 -msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" -msgstr "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati generati da te!" - -#: ../../mod/setup.php:571 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server." - -#: ../../mod/setup.php:572 -msgid "" -"If your certificate is not recognised, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." -msgstr "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno un avviso su possibili problemi di sicurezza." - -#: ../../mod/setup.php:573 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "Ciò può creare gravi problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto." - -#: ../../mod/setup.php:574 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser." - -#: ../../mod/setup.php:576 -msgid "SSL certificate validation" -msgstr "Validazione del certificato SSL" - -#: ../../mod/setup.php:582 -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." - -#: ../../mod/setup.php:584 -msgid "Url rewrite is working" -msgstr "Url rewrite funziona correttamente" - -#: ../../mod/setup.php:594 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito." - -#: ../../mod/setup.php:618 -msgid "Errors encountered creating database tables." -msgstr "La creazione delle tabelle del database ha generato errori." - -#: ../../mod/setup.php:653 -msgid "

    What next

    " -msgstr "

    I prossimi passi

    " - -#: ../../mod/setup.php:654 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling." ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../mod/chat.php:208 msgid "Chatroom Name" @@ -7611,7 +6160,6 @@ msgstr "Sesso" msgid "Sexual Preference" msgstr "Preferenze sessuali" -<<<<<<< HEAD #: ../../mod/profiles.php:329 msgid "Homepage" msgstr "Home page" @@ -7671,68 +6219,6 @@ msgstr "Titolo/descrizione:" #: ../../mod/profiles.php:515 msgid "Your Gender:" msgstr "Sesso:" -======= -#: ../../mod/events.php:299 -msgid "l, F j" -msgstr "l j F" - -#: ../../mod/events.php:321 -msgid "Edit event" -msgstr "Modifica l'evento" - -#: ../../mod/events.php:367 -msgid "Create New Event" -msgstr "Crea un nuovo evento" - -#: ../../mod/events.php:368 -msgid "Previous" -msgstr "Precendente" - -#: ../../mod/events.php:439 -msgid "hour:minute" -msgstr "ora:minuti" - -#: ../../mod/events.php:459 -msgid "Event details" -msgstr "Dettagli evento" - -#: ../../mod/events.php:460 -#, 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." - -#: ../../mod/events.php:462 -msgid "Event Starts:" -msgstr "Inizio:" - -#: ../../mod/events.php:462 ../../mod/events.php:476 -msgid "Required" -msgstr "Obbligatorio" - -#: ../../mod/events.php:465 -msgid "Finish date/time is not known or not relevant" -msgstr "La data/ora di fine non è rilevante" - -#: ../../mod/events.php:467 -msgid "Event Finishes:" -msgstr "Fine:" - -#: ../../mod/events.php:470 -msgid "Adjust for viewer timezone" -msgstr "Adatta al fuso orario di chi legge" - -#: ../../mod/events.php:472 -msgid "Description:" -msgstr "Descrizione:" - -#: ../../mod/events.php:476 -msgid "Title:" -msgstr "Titolo:" - -#: ../../mod/events.php:478 -msgid "Share this event" -msgstr "Condividi questo evento" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../mod/profiles.php:516 #, php-format @@ -7933,15 +6419,9 @@ msgstr "Menù eliminato." msgid "Menu could not be deleted." msgstr "Il menù non può essere eliminato." -<<<<<<< HEAD #: ../../mod/menu.php:106 msgid "Edit Menu" msgstr "Modifica menù" -======= -#: ../../mod/help.php:69 ../../index.php:234 -msgid "Not Found" -msgstr "Non disponibile" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../mod/menu.php:108 msgid "Add or remove entries to this menu" @@ -8165,7 +6645,6 @@ msgstr "Amministrazione" msgid "Summary" msgstr "Riepilogo" -<<<<<<< HEAD #: ../../mod/admin.php:205 msgid "Registered users" msgstr "Utenti registrati" @@ -8185,29 +6664,6 @@ msgstr "Plugin attivi" #: ../../mod/admin.php:360 msgid "Site settings updated." msgstr "Impostazioni del sito aggiornate." -======= -#: ../../mod/item.php:352 -msgid "Empty post discarded." -msgstr "L'articolo vuoto è stato ignorato." - -#: ../../mod/item.php:392 -msgid "Executable content type not permitted to this channel." -msgstr "I contenuti eseguibili non sono permessi su questo canale." - -#: ../../mod/item.php:806 -msgid "System error. Post not saved." -msgstr "Errore di sistema. Articolo non salvato." - -#: ../../mod/item.php:1249 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Hai raggiunto il limite massimo di %1$.0f articoli sulla pagina principale." - -#: ../../mod/item.php:1255 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web." ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../mod/admin.php:391 msgid "No special theme for accessibility" @@ -8229,7 +6685,6 @@ msgstr "È un servizio a pagamento" msgid "My site has free access only" msgstr "È un servizio gratuito" -<<<<<<< HEAD #: ../../mod/admin.php:429 msgid "My site offers free accounts with optional paid upgrades" msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento" @@ -8241,20 +6696,6 @@ msgstr "Registrazione" #: ../../mod/admin.php:443 msgid "File upload" msgstr "Caricamento file" -======= -#: ../../mod/viewconnections.php:58 -msgid "No connections." -msgstr "Nessun contatto." - -#: ../../mod/viewconnections.php:70 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visita il profilo di %s [%s]" - -#: ../../mod/viewconnections.php:85 -msgid "View Connnections" -msgstr "Guarda i contatti" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../mod/admin.php:444 msgid "Policies" @@ -8800,7 +7241,6 @@ msgstr "Per registrarsi su questo sito è necessario un invito." msgid "Please enter your invitation code" msgstr "Inserisci il codice dell'invito" -<<<<<<< HEAD #: ../../mod/register.php:198 msgid "Your email address" msgstr "Il tuo indirizzo email" @@ -8808,15 +7248,6 @@ msgstr "Il tuo indirizzo email" #: ../../mod/register.php:199 msgid "Choose a password" msgstr "Scegli una password" -======= -#: ../../mod/notifications.php:94 ../../mod/notify.php:54 -msgid "No more system notifications." -msgstr "Non ci sono nuove notifiche di sistema." - -#: ../../mod/notifications.php:98 ../../mod/notify.php:58 -msgid "System Notifications" -msgstr "Notifiche di sistema" ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb #: ../../mod/register.php:200 msgid "Please re-enter your password" diff --git a/view/it/strings.php b/view/it/strings.php index 4b53f05b2..78673d5cc 100644 --- a/view/it/strings.php +++ b/view/it/strings.php @@ -4,7 +4,6 @@ function string_plural_select_it($n){ return ($n != 1);; } ; -<<<<<<< HEAD $a->strings["Channel is blocked on this site."] = "Il canale è bloccato per questo sito."; $a->strings["Channel location missing."] = "Manca l'indirizzo del canale."; $a->strings["Response from remote channel was incomplete."] = "La risposta dal canale non è completa."; @@ -13,100 +12,6 @@ $a->strings["Channel discovery failed."] = "La ricerca del canale non ha avuto s $a->strings["local account not found."] = "l'account locale non è stato trovato."; $a->strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso."; $a->strings["Edit File properties"] = "Modifica le proprietà dei file"; -======= -$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; -$a->strings["Profile Photos"] = "Foto del profilo"; -$a->strings["Matrix"] = "La tua rete"; -$a->strings["Channel Home"] = "Bacheca del canale"; -$a->strings["Profile"] = "Profilo"; -$a->strings["Photos"] = "Foto"; -$a->strings["Events"] = "Eventi"; -$a->strings["Directory"] = "Tutti i canali"; -$a->strings["Embedded content"] = "Contenuti incorporati"; -$a->strings["Embedding disabled"] = "Contenuti incorporati - funzione disabilitata"; -$a->strings["created a new post"] = "Ha creato un nuovo articolo"; -$a->strings["commented on %s's post"] = "ha commentato l'articolo di %s"; -$a->strings["Connect"] = "Entra in contatto"; -$a->strings["New window"] = "Nuova finestra"; -$a->strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra"; -$a->strings["New Page"] = "Nuova pagina web"; -$a->strings["Edit"] = "Modifica"; -$a->strings["View"] = "Guarda"; -$a->strings["Preview"] = "Anteprima"; -$a->strings["Actions"] = "Azioni"; -$a->strings["Page Link"] = "Link alla pagina"; -$a->strings["Title"] = "Titolo"; -$a->strings["Created"] = "Creato"; -$a->strings["Edited"] = "Modificato"; -$a->strings["Can view my \"public\" stream and posts"] = "Può vedere i miei contenuti \"pubblici\""; -$a->strings["Can view my \"public\" channel profile"] = "Può vedere il profilo del mio canale \"pubblico\""; -$a->strings["Can view my \"public\" photo albums"] = "Può vedere il mio album fotografico \"pubblico\""; -$a->strings["Can view my \"public\" address book"] = "Può vedere il mio elenco contatti \"pubblico\""; -$a->strings["Can view my \"public\" file storage"] = "Può vedere il mio archivio file \"pubblico\""; -$a->strings["Can view my \"public\" pages"] = "Può vedere le mie pagine web \"pubbliche\""; -$a->strings["Can send me their channel stream and posts"] = "È tra i canali che seguo"; -$a->strings["Can post on my channel page (\"wall\")"] = "Può scrivere sulla bacheca del mio canale"; -$a->strings["Can comment on my posts"] = "Può commentare i miei articoli"; -$a->strings["Can send me private mail messages"] = "Può inviarmi messaggi privati"; -$a->strings["Can post photos to my photo albums"] = "Può aggiungere foto ai miei album"; -$a->strings["Can forward to all my channel contacts via post @mentions"] = "Può inoltrare articoli a tutti i contatti del canale tramite una @menzione"; -$a->strings["Advanced - useful for creating group forum channels"] = "Impostazione avanzata - utile per creare un canale-forum di discussione"; -$a->strings["Can chat with me (when available)"] = "Può aprire una chat con me (se disponibile)"; -$a->strings["Can write to my \"public\" file storage"] = "Può scrivere sul mio archivio di file \"pubblico\""; -$a->strings["Can edit my \"public\" pages"] = "Può modificare le mie pagine web \"pubbliche\""; -$a->strings["Can source my \"public\" posts in derived channels"] = "Può aggiungere i miei post \"pubblici\" a un suo canale derivato"; -$a->strings["Somewhat advanced - very useful in open communities"] = "Piuttosto avanzato - molto utile nelle comunità aperte"; -$a->strings["Can administer my channel resources"] = "Può amministrare i contenuti del mio canale"; -$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"; -$a->strings["Not a valid email address"] = "Email non valida"; -$a->strings["Your email domain is not among those allowed on this site"] = "Il dominio della tua email attualmente non è permesso su questo sito"; -$a->strings["Your email address is already registered at this site."] = "La tua email è già registrata su questo sito."; -$a->strings["An invitation is required."] = "È necessario un invito."; -$a->strings["Invitation could not be verified."] = "L'invito non può essere verificato."; -$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste."; -$a->strings["Failed to store account information."] = "Non è stato possibile salvare le informazioni del tuo account."; -$a->strings["Registration request at %s"] = "Richiesta di registrazione su %s"; -$a->strings["Administrator"] = "Amministratore"; -$a->strings["your registration password"] = "la password di registrazione"; -$a->strings["Registration details for %s"] = "Dettagli della registrazione di %s"; -$a->strings["Account approved."] = "Account approvato."; -$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s"; -$a->strings["Permission denied."] = "Permesso negato."; -$a->strings["Image exceeds website size limit of %lu bytes"] = "L'immagine supera il limite massimo di %lu bytes"; -$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto."; -$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine"; -$a->strings["Photo storage failed."] = "Impossibile caricare la foto."; -$a->strings["Photo Albums"] = "Album foto"; -$a->strings["Upload New Photos"] = "Carica nuove foto"; -$a->strings["Visible to everybody"] = "Visibile a tutti"; -$a->strings["Show"] = "Mostra"; -$a->strings["Don't show"] = "Non mostrare"; -$a->strings["Permissions"] = "Permessi"; -$a->strings["Close"] = "Chiudi"; -$a->strings[" and "] = "e"; -$a->strings["public profile"] = "profilo pubblico"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; -$a->strings["Visit %1\$s's %2\$s"] = "Guarda %2\$s di %1\$s "; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha aggiornato %2\$s cambiando %3\$s."; -$a->strings["Public Timeline"] = "Diario pubblico"; -$a->strings["Item was not found."] = "Elemento non trovato."; -$a->strings["No source file."] = "Nessun file di origine."; -$a->strings["Cannot locate file to replace"] = "Il file da sostituire non è stato trovato"; -$a->strings["Cannot locate file to revise/update"] = "Il file da aggiornare non è stato trovato"; -$a->strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d"; -$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati."; -$a->strings["File upload failed. Possible system limit or action terminated."] = "Caricamento file fallito, potrebbe aver superato i limiti o l'azione potrebbe essere stata interrotta."; -$a->strings["Stored file could not be verified. Upload failed."] = "Il file non può essere verificato. Caricamento fallito."; -$a->strings["Path not available."] = "Percorso non disponibile."; -$a->strings["Empty pathname"] = "Il percorso del file è vuoto"; -$a->strings["duplicate filename or path"] = "il file o percorso del file è duplicato"; -$a->strings["Path not found."] = "Percorso del file non trovato."; -$a->strings["mkdir failed."] = "mkdir fallito."; -$a->strings["database storage failed."] = "scrittura su database fallita."; -$a->strings["Logged out."] = "Uscita effettuata."; -$a->strings["Failed authentication"] = "Autenticazione fallita"; -$a->strings["Login failed."] = "Accesso fallito."; ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb $a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; $a->strings["Starts:"] = "Inizio:"; $a->strings["Finishes:"] = "Fine:"; @@ -227,7 +132,6 @@ $a->strings["QR code"] = "QR code"; $a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s"; $a->strings["post"] = "l'articolo"; $a->strings["$1 wrote:"] = "$1 ha scritto:"; -<<<<<<< HEAD $a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "È stato ripristinato un insieme con lo stesso nome che era stato eliminato in precedenza. I permessi già presenti potrebbero rimanere validi per i nuovi canali. Se non vuoi che ciò accada, devi creare un altro insieme con un nome diverso."; $a->strings["Default privacy group for new contacts"] = "Insieme predefinito per i canali che inizi a seguire"; $a->strings["All Channels"] = "Tutti i canali"; @@ -236,168 +140,6 @@ $a->strings["Collections"] = "Insiemi di canali"; $a->strings["Edit collection"] = "Modifica l'insieme di canali"; $a->strings["Create a new collection"] = "Crea un nuovo insieme"; $a->strings["Channels not in any collection"] = "Canali che non sono in un insieme"; -======= -$a->strings["Private Message"] = "Messaggio privato"; -$a->strings["Delete"] = "Elimina"; -$a->strings["Select"] = "Seleziona"; -$a->strings["save to folder"] = "salva in una cartella"; -$a->strings["Like"] = "Mi piace"; -$a->strings["Likes"] = "Mi piace"; -$a->strings["Dislike"] = "Non mi piace"; -$a->strings["Dislikes"] = "Non mi piace"; -$a->strings["add star"] = "aggiungi ai preferiti"; -$a->strings["remove star"] = "rimuovi dai preferiti"; -$a->strings["toggle star status"] = "Attiva/disattiva preferito"; -$a->strings["starred"] = "preferito"; -$a->strings["Message is verified"] = "Messaggio verificato"; -$a->strings["add tag"] = "Aggiungi tag"; -$a->strings["I like this (toggle)"] = "Attiva/disattiva Mi piace"; -$a->strings["like"] = "mi piace"; -$a->strings["I don't like this (toggle)"] = "Attiva/disattiva Non mi piace"; -$a->strings["dislike"] = "non mi piace"; -$a->strings["Share this"] = "Condividi"; -$a->strings["share"] = "condividi"; -$a->strings["View %s's profile - %s"] = "Guarda il profilo di %s - %s"; -$a->strings["to"] = "a"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca"; -$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca:"; -$a->strings[" from %s"] = " da %s"; -$a->strings["last edited: %s"] = "ultima modifica: %s"; -$a->strings["Expires: %s"] = "Scadenza: %s"; -$a->strings["Bookmark Links"] = "I link dei segnalibri"; -$a->strings["Please wait"] = "Attendere"; -$a->strings["%d comment"] = array( - 0 => "%d commento", - 1 => "%d commenti", -); -$a->strings["show more"] = "mostra tutto"; -$a->strings["This is you"] = "Questo sei tu"; -$a->strings["Comment"] = "Commento"; -$a->strings["Submit"] = "Salva"; -$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["Encrypt text"] = "Crittografia del testo"; -$a->strings["%1\$s's bookmarks"] = "I segnalibri di %1\$s"; -$a->strings["Missing room name"] = "Chat senza nome"; -$a->strings["Duplicate room name"] = "Il nome della chat è duplicato"; -$a->strings["Invalid room specifier."] = "Il nome della chat non è valido."; -$a->strings["Room not found."] = "Chat non trovata."; -$a->strings["Room is full"] = "La chat è al completo"; -$a->strings["Tags"] = "Tag"; -$a->strings["Keywords"] = "Parole chiave"; -$a->strings["have"] = "ho"; -$a->strings["has"] = "ha"; -$a->strings["want"] = "voglio"; -$a->strings["wants"] = "vuole"; -$a->strings["likes"] = "mi piace"; -$a->strings["dislikes"] = "non mi piace"; -$a->strings["Default"] = "Predefinito"; -$a->strings["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["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["Search"] = "Cerca"; -$a->strings["Save"] = "Salva"; -$a->strings["poke"] = "poke"; -$a->strings["poked"] = "ha ricevuto un poke"; -$a->strings["ping"] = "ping"; -$a->strings["pinged"] = "ha ricevuto un ping"; -$a->strings["prod"] = "prod"; -$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["depressed"] = "in depressione"; -$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 category"] = "rimuovi la categoria"; -$a->strings["remove from file"] = "rimuovi dal file"; -$a->strings["Click to open/close"] = "Clicca per aprire/chiudere"; -$a->strings["link to source"] = "Link all'originale"; -$a->strings["Select a page layout: "] = "Scegli il layout della pagina:"; -$a->strings["default"] = "predefinito"; -$a->strings["Page content type: "] = "Contenuto della pagina:"; -$a->strings["Select an alternate language"] = "Seleziona una lingua diversa"; ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb $a->strings["photo"] = "la foto"; $a->strings["event"] = "l'evento"; $a->strings["channel"] = "canale"; @@ -502,11 +244,7 @@ $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"; -<<<<<<< HEAD $a->strings["Photo Albums"] = "Album foto"; -======= -$a->strings["Files"] = "Elenco file"; ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb $a->strings["Files and Storage"] = "Archivio file"; $a->strings["Chatrooms"] = "Chat"; $a->strings["Events and Calendar"] = "Calendario eventi"; @@ -536,7 +274,7 @@ $a->strings["dislike"] = "non mi piace"; $a->strings["dislikes"] = "non mi piace"; $a->strings["Edit"] = "Modifica"; $a->strings["save to folder"] = "salva in una cartella"; -$a->strings["View all"] = "Vedi tuttomsgctxt "noun"; +$a->strings["View all"] = "Vedi tutto"; $a->strings["Like"] = array( 0 => "Mi piace", 1 => "Mi piace", @@ -559,8 +297,8 @@ $a->strings["to"] = "a"; $a->strings["via"] = "via"; $a->strings["Wall-to-Wall"] = "Da bacheca a bacheca"; $a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca:"; -$a->strings["Bookmark Links"] = "I link dei segnalibrimsgctxt "noun"; -$a->strings["Likes"] = "Mi piacemsgctxt "noun"; +$a->strings["Bookmark Links"] = "I link dei segnalibri"; +$a->strings["Likes"] = "Mi piace"; $a->strings["Dislikes"] = "Non mi piace"; $a->strings["Close"] = "Chiudi"; $a->strings["%d comment"] = array( @@ -637,7 +375,6 @@ $a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\ $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."; -<<<<<<< HEAD $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"; @@ -666,232 +403,6 @@ $a->strings["Unable to process image"] = "Impossibile elaborare l'immagine"; $a->strings["Photo storage failed."] = "Impossibile caricare la foto."; $a->strings["Upload New Photos"] = "Carica nuove foto"; $a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; -======= -$a->strings["General Features"] = "Funzionalità generali"; -$a->strings["Content Expiration"] = "Scadenza"; -$a->strings["Remove posts/comments and/or private messages at a future time"] = "Elimina gli articoli, i commenti o i messaggi privati dopo che è trascorso del tempo"; -$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["Private Notes"] = "Note private"; -$a->strings["Enables a tool to store notes and reminders"] = "Abilita il riquadro per scrivere annotazioni"; -$a->strings["Extended Identity Sharing"] = "Condivisione avanzata dell'identità"; -$a->strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "Rendi nota la tua identità a tutti i siti internet. Se disabilitato, la tua identità sarà comunicata solo ai siti red matrix."; -$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["Premium Channel"] = "Canale premium"; -$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ti permette di imporre delle restrizioni e dei termini d'uso a chi segue il canale"; -$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["Channel Sources"] = "Sorgenti del canale"; -$a->strings["Automatically import channel content from other channels or feeds"] = "Importa automaticamente il contenuto del canale da altri canali o feed"; -$a->strings["Even More Encryption"] = "Crittografia addizionale"; -$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Rendi possibile la crittografia dei contenuti tra mittente e destinatari con una chiave segreta"; -$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"] = "Filtra per insiemi di canali"; -$a->strings["Enable widget to display Network posts only from selected collections"] = "Mostra il riquadro per filtrare gli articoli di certi insiemi di canali"; -$a->strings["Saved Searches"] = "Ricerche salvate"; -$a->strings["Save search terms for re-use"] = "Salva i termini delle ricerche per poterle ripetere"; -$a->strings["Network Personal Tab"] = "Attività personale"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita il link per mostrare solamente i contenuti con cui hai interagito"; -$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["Suggest Channels"] = "Suggerisci canali"; -$a->strings["Show channel suggestions"] = "Mostra alcuni canali che potrebbero interessarti"; -$a->strings["Post/Comment Tools"] = "Gestione articoli e commenti"; -$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["Channel is blocked on this site."] = "Il canale è bloccato per questo sito."; -$a->strings["Channel location missing."] = "Manca l'indirizzo del canale."; -$a->strings["Response from remote channel was incomplete."] = "La risposta dal canale non è completa."; -$a->strings["Channel was deleted and no longer exists."] = "Il canale è stato rimosso e non esiste più."; -$a->strings["Channel discovery failed."] = "La ricerca del canale non ha avuto successo."; -$a->strings["local account not found."] = "l'account locale non è stato trovato."; -$a->strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso."; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "È stato ripristinato un insieme con lo stesso nome che era stato eliminato in precedenza. I permessi già presenti potrebbero rimanere validi per i nuovi canali. Se non vuoi che ciò accada, devi creare un altro insieme con un nome diverso."; -$a->strings["Default privacy group for new contacts"] = "Insieme predefinito per i canali che inizi a seguire"; -$a->strings["All Channels"] = "Tutti i canali"; -$a->strings["edit"] = "modifica"; -$a->strings["Collections"] = "Insiemi di canali"; -$a->strings["Edit collection"] = "Modifica l'insieme di canali"; -$a->strings["Create a new collection"] = "Crea un nuovo insieme"; -$a->strings["Channels not in any collection"] = "Canali che non sono in un insieme"; -$a->strings["add"] = "aggiungi"; -$a->strings["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 is required."] = "Il nome dell'account è obbligatorio."; -$a->strings["Reserved nickname. Please choose another."] = "Nome utente riservato. Per favore scegline un altro."; -$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Il nome dell'account è già in uso oppure ha dei caratteri non supportati."; -$a->strings["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata"; -$a->strings["Default Profile"] = "Profilo predefinito"; -$a->strings["Friends"] = "Amici"; -$a->strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile."; -$a->strings["Requested profile is not available."] = "Il profilo richiesto non è disponibile."; -$a->strings["Change profile photo"] = "Cambia la foto del profilo"; -$a->strings["Profiles"] = "Profili"; -$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili"; -$a->strings["Create New Profile"] = "Crea un nuovo profilo"; -$a->strings["Edit Profile"] = "Modifica il profilo"; -$a->strings["Profile Image"] = "Immagine del profilo"; -$a->strings["visible to everybody"] = "visibile a tutti"; -$a->strings["Edit visibility"] = "Cambia la visibilità"; -$a->strings["Gender:"] = "Sesso:"; -$a->strings["Status:"] = "Stato:"; -$a->strings["Homepage:"] = "Home page:"; -$a->strings["Online Now"] = "Online adesso"; -$a->strings["g A l F d"] = "g A l d F"; -$a->strings["F d"] = "d F"; -$a->strings["[today]"] = "[oggi]"; -$a->strings["Birthday Reminders"] = "Promemoria compleanni"; -$a->strings["Birthdays this week:"] = "Compleanni questa settimana:"; -$a->strings["[No description]"] = "[Nessuna descrizione]"; -$a->strings["Event Reminders"] = "Promemoria"; -$a->strings["Events this week:"] = "Eventi di questa settimana:"; -$a->strings["Full Name:"] = "Nome completo:"; -$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"] = "per %1\$d %2\$s"; -$a->strings["Sexual Preference:"] = "Preferenze sessuali:"; -$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["My other channels:"] = "I miei altri canali:"; -$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["Permission denied"] = "Permesso negato"; -$a->strings["(Unknown)"] = "(Sconosciuto)"; -$a->strings["Item not found."] = "Elemento non trovato."; -$a->strings["Collection not found."] = "Insieme non trovato."; -$a->strings["Collection is empty."] = "L'insieme di canali è vuoto."; -$a->strings["Collection: %s"] = "Insieme: %s"; -$a->strings["Connection: %s"] = "Contatto: %s"; -$a->strings["Connection not found."] = "Contatto non trovato."; -$a->strings["Delete this item?"] = "Eliminare questo elemento?"; -$a->strings["show fewer"] = "riduci"; -$a->strings["+ Show More"] = "+ Mostra tutto"; -$a->strings["- Show Less"] = "- Mostra ridotto"; -$a->strings["Password too short"] = "Password troppo corta"; -$a->strings["Passwords do not match"] = "Le password non corrispondono"; -$a->strings["everybody"] = "tutti"; -$a->strings["Secret Passphrase"] = "Chiave segreta"; -$a->strings["Passphrase hint"] = "Suggerimento per la chiave segreta"; -$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Nota: i permessi sono stati modificati ma non ancora salvati."; -$a->strings["close all"] = "chiudi tutto"; -$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -$a->strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; -$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[" "] = " "; -$a->strings["timeago.numbers"] = "timeago.numbers"; -$a->strings["No recipient provided."] = "Devi scegliere un destinatario."; -$a->strings["[no subject]"] = "[nessun titolo]"; -$a->strings["Unable to determine sender."] = "Impossibile determinare il mittente."; -$a->strings["Stored post could not be verified."] = "Non è stato possibile verificare l'articolo inserito."; -$a->strings["Logout"] = "Esci"; -$a->strings["End this session"] = "Chiudi questa sessione"; -$a->strings["Home"] = "Bacheca"; -$a->strings["Your posts and conversations"] = "I tuoi articoli e conversazioni"; -$a->strings["Your profile page"] = "Il tuo profilo"; -$a->strings["Edit Profiles"] = "Modifica i profili"; -$a->strings["Manage/Edit profiles"] = "Gestisci/modifica i profili"; -$a->strings["Your photos"] = "Le tue foto"; -$a->strings["Your files"] = "I tuoi file"; -$a->strings["Chat"] = "Chat"; -$a->strings["Your chatrooms"] = "Le tue chat"; -$a->strings["Your events"] = "I tuoi eventi"; -$a->strings["Your bookmarks"] = "I tuoi segnalibri"; -$a->strings["Your webpages"] = "Le tue pagine web"; -$a->strings["Login"] = "Accedi"; -$a->strings["Sign in"] = "Entra"; -$a->strings["%s - click to logout"] = "%s - clicca per uscire"; -$a->strings["Click to authenticate to your home hub"] = "Clicca per autenticarti sul tuo server principale"; -$a->strings["Home Page"] = "Bacheca"; -$a->strings["Register"] = "Iscriviti"; -$a->strings["Create an account"] = "Crea un account"; -$a->strings["Help"] = "Guida"; -$a->strings["Help and documentation"] = "Guida e documentazione"; -$a->strings["Apps"] = "Apps"; -$a->strings["Addon applications, utilities, games"] = "App, strumenti e giochi aggiuntivi"; -$a->strings["Search site content"] = "Cerca nel sito"; -$a->strings["Channel Locator"] = "Ricerca canali"; -$a->strings["Your matrix"] = "La tua rete"; -$a->strings["Mark all matrix notifications seen"] = "Segna come lette le notifiche della tua rete"; -$a->strings["Channel home"] = "Bacheca del canale"; -$a->strings["Mark all channel notifications seen"] = "Segna come lette le notifiche dei canali"; -$a->strings["Connections"] = "Contatti"; -$a->strings["Notices"] = "Notifiche"; -$a->strings["Notifications"] = "Notifiche"; -$a->strings["See all notifications"] = "Vedi tutte le notifiche"; -$a->strings["Mark all system notifications seen"] = "Segna come lette le notifiche di sistema"; -$a->strings["Mail"] = "Messaggi"; -$a->strings["Private mail"] = "Messaggi privati"; -$a->strings["See all private messages"] = "Guarda tutti i messaggi privati"; -$a->strings["Mark all private messages seen"] = "Segna come letti tutti i messaggi privati"; -$a->strings["Inbox"] = "In arrivo"; -$a->strings["Outbox"] = "Inviati"; -$a->strings["New Message"] = "Nuovo messaggio"; -$a->strings["Event Calendar"] = "Calendario"; -$a->strings["See all events"] = "Guarda tutti gli eventi"; -$a->strings["Mark all events seen"] = "Marca come letti tutti gli eventi"; -$a->strings["Channel Select"] = "Gestisci i canali"; -$a->strings["Manage Your Channels"] = "Gestisci i contatti dei tuoi canali"; -$a->strings["Settings"] = "Impostazioni"; -$a->strings["Account/Channel Settings"] = "Impostazioni account e canali"; -$a->strings["Manage/Edit Friends and Connections"] = "Modifica amici e contatti"; -$a->strings["Admin"] = "Amministrazione"; -$a->strings["Site Setup and Configuration"] = "Configurazione del sito"; -$a->strings["Nothing new here"] = "Niente di nuovo qui"; -$a->strings["Please wait..."] = "Attendere..."; -$a->strings["view full size"] = "guarda nelle dimensioni reali"; -$a->strings["Click here to upgrade."] = "Clicca qui per aggiornare."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa operazione esce dai termini del tuo abbonamento."; -$a->strings["This action is not available under your subscription plan."] = "Questa operazione non è prevista dal tuo abbonamento."; ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb $a->strings["Male"] = "Maschio"; $a->strings["Female"] = "Femmina"; $a->strings["Currently Male"] = "Al momento maschio"; @@ -949,7 +460,6 @@ $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"; -<<<<<<< HEAD $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."; @@ -1283,324 +793,6 @@ $a->strings["Channel not found."] = "Canale non trovato."; $a->strings["Welcome to %s"] = "%s ti dà il benvenuto"; $a->strings["Channel added."] = "Canale aggiunto."; $a->strings["Public access denied."] = "Accesso pubblico negato."; -======= -$a->strings["Edit File properties"] = "Modifica le proprietà dei file"; -$a->strings["Invalid data packet"] = "Dati non validi"; -$a->strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale"; -$a->strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s"; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "L'identificativo di sicurezza del modulo che hai riempito non è corretto. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto."; -$a->strings["App Category"] = "Categorie App"; -$a->strings["System"] = "Sistema"; -$a->strings["Featured"] = "In evidenza"; -$a->strings["Ignore/Hide"] = "Ignora/nascondi"; -$a->strings["Suggestions"] = "Suggerimenti"; -$a->strings["See more..."] = "Altro..."; -$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Hai attivato %1$.0f delle %2$.0f connessioni permesse."; -$a->strings["Add New Connection"] = "Aggiungi un contatto"; -$a->strings["Enter the channel address"] = "Scrivi l'indirizzo del canale"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Per esempio: mario@pippo.it oppure http://pluto.com/barbara"; -$a->strings["Notes"] = "Note"; -$a->strings["Remove term"] = "Rimuovi termine"; -$a->strings["Archives"] = "Archivi"; -$a->strings["Refresh"] = "Aggiorna"; -$a->strings["Me"] = "Io"; -$a->strings["Best Friends"] = "Buoni amici"; -$a->strings["Co-workers"] = "Colleghi"; -$a->strings["Former Friends"] = "Ex amici"; -$a->strings["Acquaintances"] = "Conoscenti"; -$a->strings["Everybody"] = "Tutti"; -$a->strings["Account settings"] = "Impostazioni dell'account"; -$a->strings["Channel settings"] = "Impostazioni del canale"; -$a->strings["Additional features"] = "Funzionalità aggiuntive"; -$a->strings["Feature settings"] = "Impostazioni aggiuntive"; -$a->strings["Display settings"] = "Impostazioni grafiche"; -$a->strings["Connected apps"] = "App connesse"; -$a->strings["Export channel"] = "Esporta il canale"; -$a->strings["Automatic Permissions (Advanced)"] = "Permessi predefiniti (avanzato)"; -$a->strings["Premium Channel Settings"] = "Canale premium - impostazioni"; -$a->strings["Check Mail"] = "Controlla i messaggi"; -$a->strings["Chat Rooms"] = "Chat attive"; -$a->strings["Bookmarked Chatrooms"] = "Chat nei segnalibri"; -$a->strings["Suggested Chatrooms"] = "Chat suggerite"; -$a->strings["Mood"] = "Umore"; -$a->strings["Set your current mood and tell your friends"] = "Scegli il tuo umore attuale per mostrarlo agli amici"; -$a->strings["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["Menu Item Permissions"] = "Permessi del menu"; -$a->strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; -$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 andranno in fondo all'elenco"; -$a->strings["Create"] = "Crea"; -$a->strings["Menu item not found."] = "L'elemento del menù non è stato trovato."; -$a->strings["Menu item deleted."] = "L'elemento del menù è stato eliminato."; -$a->strings["Menu item could not be deleted."] = "L'elemento del menù non può essere eliminato."; -$a->strings["Edit Menu Element"] = "Modifica l'elemento del menù"; -$a->strings["Modify"] = "Modifica"; -$a->strings["sent you a private message"] = "ti ha inviato un messaggio privato"; -$a->strings["added your channel"] = "ha aggiunto il tuo canale"; -$a->strings["posted an event"] = "ha creato un evento"; -$a->strings["network"] = "rete"; -$a->strings["Theme settings updated."] = "Le impostazioni del tema sono state aggiornate."; -$a->strings["Site"] = "Sito"; -$a->strings["Accounts"] = "Accounts"; -$a->strings["Channels"] = "Canali"; -$a->strings["Plugins"] = "Plugin"; -$a->strings["Themes"] = "Temi"; -$a->strings["Server"] = "Server"; -$a->strings["DB updates"] = "Aggiornamenti al DB"; -$a->strings["Logs"] = "Log"; -$a->strings["Plugin Features"] = "Funzionalità dei componenti aggiuntivi"; -$a->strings["User registrations waiting for confirmation"] = "Registrazioni in attesa"; -$a->strings["Message queues"] = "Messaggi in attesa di recapito"; -$a->strings["Administration"] = "Amministrazione"; -$a->strings["Summary"] = "Riepilogo"; -$a->strings["Registered users"] = "Utenti registrati"; -$a->strings["Pending registrations"] = "Registrazioni da approvare"; -$a->strings["Version"] = "Versione"; -$a->strings["Active plugins"] = "Plugin attivi"; -$a->strings["Site settings updated."] = "Impostazioni del sito aggiornate."; -$a->strings["No special theme for mobile devices"] = "Nessun tema per dispositivi mobili"; -$a->strings["No special theme for accessibility"] = "Nessun tema speciale per l'accessibilità"; -$a->strings["No"] = "No"; -$a->strings["Yes - with approval"] = "Sì - con approvazione"; -$a->strings["Yes"] = "Si"; -$a->strings["My site is not a public server"] = "Non è un server pubblico"; -$a->strings["My site has paid access only"] = "È un servizio a pagamento"; -$a->strings["My site has free access only"] = "È un servizio gratuito"; -$a->strings["My site offers free accounts with optional paid upgrades"] = "È un servizio gratuito con opzioni aggiuntive a pagamento"; -$a->strings["Registration"] = "Registrazione"; -$a->strings["File upload"] = "Caricamento file"; -$a->strings["Policies"] = "Politiche"; -$a->strings["Site name"] = "Nome del sito"; -$a->strings["Banner/Logo"] = "Banner o logo"; -$a->strings["Administrator Information"] = "Informazioni sull'amministrazione"; -$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode"; -$a->strings["System language"] = "Lingua di sistema"; -$a->strings["System theme"] = "Tema di sistema"; -$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema"; -$a->strings["Mobile system theme"] = "Tema di sistema per dispositivi mobili"; -$a->strings["Theme for mobile devices"] = "Tema per i dispositivi mobili"; -$a->strings["Accessibility system theme"] = "Tema di sistema ad alta accessibilità"; -$a->strings["Accessibility theme"] = "Tema ad alta accessibilità"; -$a->strings["Channel to use for this website's static pages"] = "Canale da usare per le pagine statiche di questo sito"; -$a->strings["Site Channel"] = "Canale del sito"; -$a->strings["Maximum image size"] = "Dimensione massima immagini"; -$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite."; -$a->strings["Does this site allow new member registration?"] = "Questo sito permette a nuovi utenti di registrarsi?"; -$a->strings["Which best describes the types of account offered by this hub?"] = "Come descriveresti il tipo di servizio proposto da questo server?"; -$a->strings["Register text"] = "Testo diregistrazione"; -$a->strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione."; -$a->strings["Accounts abandoned after x days"] = "Account abbandonati dopo X giorni"; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo."; -$a->strings["Allowed friend domains"] = "Domini fidati e consentiti"; -$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio."; -$a->strings["Allowed email domains"] = "Domini email consentiti"; -$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio."; -$a->strings["Block public"] = "Blocca pagine pubbliche"; -$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso."; -$a->strings["Force publish"] = "Forza la publicazione del profilo"; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per mostrare nell'elenco dei canali del sito tutti i profili registrati."; -$a->strings["Disable discovery tab"] = "Disabilita la funzione 'scopri'"; -$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Nell'area della rete personale non comparirà più la scheda con i contenuti acquisiti da altri siti."; -$a->strings["No login on Homepage"] = "Non mostrare il login sulla homepage"; -$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Per nascondere la possibilità di fare login ai visitatori (per esempio, quando il contenuto della homepage del sito è alimentato dal canale)."; -$a->strings["Proxy user"] = "Utente proxy"; -$a->strings["Proxy URL"] = "URL proxy"; -$a->strings["Network timeout"] = "Timeout rete"; -$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)."; -$a->strings["Delivery interval"] = "Recapito ritardato"; -$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "RItarda il processo di recapito di questo numero di secondi per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati."; -$a->strings["Poll interval"] = "Intervallo di polling"; -$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Ritarda i processi di polling in background di questo numero di secondi per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'."; -$a->strings["Maximum Load Average"] = "Carico massimo medio"; -$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50."; -$a->strings["No server found"] = "Server non trovato"; -$a->strings["ID"] = "ID"; -$a->strings["for channel"] = "per canale"; -$a->strings["on server"] = "sul server"; -$a->strings["Status"] = "Stato"; -$a->strings["Update has been marked successful"] = "L'aggiornamento è stato marcato come eseguito."; -$a->strings["Executing %s failed. Check system logs."] = "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema."; -$a->strings["Update %s was successfully applied."] = "L'aggiornamento %s è terminato correttamente."; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente."; -$a->strings["Update function %s could not be found."] = "Impossibile trovare la funzione di aggiornamento %s"; -$a->strings["No failed updates."] = "Nessun aggiornamento fallito."; -$a->strings["Failed Updates"] = "Aggiornamenti falliti."; -$a->strings["Mark success (if update was manually applied)"] = "Marca come eseguito (se applicato manualmente)."; -$a->strings["Attempt to execute this update step automatically"] = "Tenta di eseguire in automatico questo passaggio dell'aggiornamento."; -$a->strings["%s user blocked/unblocked"] = array( - 0 => "%s utente bloccato/sbloccato", - 1 => "%s utenti bloccati/sbloccati", -); -$a->strings["%s user deleted"] = array( - 0 => "%s utente cancellato", - 1 => "%s utenti cancellati", -); -$a->strings["Account not found"] = "Account non trovato"; -$a->strings["User '%s' deleted"] = "Utente '%s' eliminato"; -$a->strings["User '%s' unblocked"] = "Utente '%s' sbloccato"; -$a->strings["User '%s' blocked"] = "Utente '%s' bloccato"; -$a->strings["Users"] = "Utenti"; -$a->strings["select all"] = "seleziona tutti"; -$a->strings["User registrations waiting for confirm"] = "Richieste di registrazione in attesa di conferma"; -$a->strings["Request date"] = "Data richiesta"; -$a->strings["No registrations."] = "Nessuna registrazione."; -$a->strings["Approve"] = "Approva"; -$a->strings["Deny"] = "Nega"; -$a->strings["Block"] = "Blocca"; -$a->strings["Unblock"] = "Sblocca"; -$a->strings["Register date"] = "Data registrazione"; -$a->strings["Last login"] = "Ultimo accesso"; -$a->strings["Expires"] = "Con scadenza"; -$a->strings["Service Class"] = "Service Class"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Gli utenti selezionati saranno eliminati!\\n\\nTutto quello che gli utenti hanno pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?"; -$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'utente {0} sarà eliminato!\\n\\nTutto quello che ha pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?"; -$a->strings["%s channel censored/uncensored"] = array( - 0 => "Censura modificata per %s canale", - 1 => "Censura modificata per %s canali", -); -$a->strings["%s channel deleted"] = array( - 0 => "%s canale è stato rimosso", - 1 => "%s canali sono stati rimossi", -); -$a->strings["Channel not found"] = "Canale non trovato"; -$a->strings["Channel '%s' deleted"] = "Il canale '%s' è stato rimosso"; -$a->strings["Channel '%s' uncensored"] = "Rimossa la censura dal canale '%s'"; -$a->strings["Channel '%s' censored"] = "Applicata una censura al canale '%s'"; -$a->strings["Censor"] = "Applica una censura"; -$a->strings["Uncensor"] = "Rimuovi la censura"; -$a->strings["UID"] = "UID"; -$a->strings["Name"] = "Nome"; -$a->strings["Address"] = "Indirizzo"; -$a->strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"; -$a->strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"; -$a->strings["Plugin %s disabled."] = "Plugin %s non attivo."; -$a->strings["Plugin %s enabled."] = "Plugin %s attivo."; -$a->strings["Disable"] = "Disattiva"; -$a->strings["Enable"] = "Attiva"; -$a->strings["Toggle"] = "Attiva/disattiva"; -$a->strings["Author: "] = "Autore:"; -$a->strings["Maintainer: "] = "Gestore:"; -$a->strings["No themes found."] = "Nessun tema trovato."; -$a->strings["Screenshot"] = "Istantanea dello schermo"; -$a->strings["[Experimental]"] = "[Sperimentale]"; -$a->strings["[Unsupported]"] = "[Non supportato]"; -$a->strings["Log settings updated."] = "Impostazioni di log aggiornate."; -$a->strings["Clear"] = "Pulisci"; -$a->strings["Debugging"] = "Debugging"; -$a->strings["Log file"] = "File di log"; -$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Deve essere scrivibile dal web server. È relativa alla cartella dove è installato Red."; -$a->strings["Log level"] = "Livello di log"; -$a->strings["Poke/Prod"] = "Poke/Prod"; -$a->strings["poke, prod or do other things to somebody"] = "Manda un poke, un prod o altro"; -$a->strings["Recipient"] = "Destinatario"; -$a->strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi inviare al destinatario"; -$a->strings["Make this post private"] = "Rendi privato questo articolo"; -$a->strings["Authorize application connection"] = "Autorizza la app"; -$a->strings["Return to your app and insert this Securty Code:"] = "Torna alla app e inserisci questo codice di sicurezza:"; -$a->strings["Please login to continue."] = "Accedi al sito per continuare."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?"; -$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "L'autenticazione remota non è disponibile. Hai accesso solamente a questo sito. Puoi provare ad uscire per tentare di nuovo."; -$a->strings["Welcome %s. Remote authentication successful."] = "Ciao %s. La tua autenticazione da remoto è avvenuta con successo."; -$a->strings["Item not available."] = "Elemento non disponibile."; -$a->strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s"; -$a->strings["Invalid item."] = "Elemento non valido."; -$a->strings["Channel not found."] = "Canale non trovato."; -$a->strings["Page not found."] = "Pagina non trovata."; -$a->strings["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["or"] = "o"; -$a->strings["skip this step"] = "salta questo passaggio"; -$a->strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; -$a->strings["Crop Image"] = "Ritaglia immagine"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'immagine per migliorarne la visualizzazione."; -$a->strings["Done Editing"] = "Modifica terminata"; -$a->strings["Image uploaded successfully."] = "Immagine caricata con successo."; -$a->strings["Image upload failed."] = "Il caricamento dell'immagine è fallito."; -$a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito."; -$a->strings["Block Name"] = "Nome del riquadro"; -$a->strings["Profile not found."] = "Profilo non trovato."; -$a->strings["Profile deleted."] = "Profilo eliminato."; -$a->strings["Profile-"] = "Profilo-"; -$a->strings["New profile created."] = "Il nuovo profilo è stato creato."; -$a->strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo."; -$a->strings["Profile Name is required."] = "Il nome del profilo è obbligatorio ."; -$a->strings["Marital Status"] = "Stato sentimentale"; -$a->strings["Romantic Partner"] = "Partner affettivo"; -$a->strings["Work/Employment"] = "Lavoro/impiego"; -$a->strings["Religion"] = "Religione"; -$a->strings["Political Views"] = "Orientamento politico"; -$a->strings["Gender"] = "Sesso"; -$a->strings["Sexual Preference"] = "Preferenze sessuali"; -$a->strings["Homepage"] = "Home page"; -$a->strings["Interests"] = "Interessi"; -$a->strings["Location"] = "Luogo attuale"; -$a->strings["Profile updated."] = "Profilo aggiornato."; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?"; -$a->strings["Edit Profile Details"] = "Modifica i dettagli del profilo"; -$a->strings["View this profile"] = "Guarda questo profilo"; -$a->strings["Change Profile Photo"] = "Cambia la foto del profilo"; -$a->strings["Create a new profile using these settings"] = "Crea un nuovo profilo usando queste impostazioni"; -$a->strings["Clone this profile"] = "Clona questo profilo"; -$a->strings["Delete this profile"] = "Elimina questo profilo"; -$a->strings["Profile Name:"] = "Nome del profilo:"; -$a->strings["Your Full Name:"] = "Il tuo nome completo:"; -$a->strings["Title/Description:"] = "Titolo/descrizione:"; -$a->strings["Your Gender:"] = "Sesso:"; -$a->strings["Birthday (%s):"] = "Compleanno (%s):"; -$a->strings["Street Address:"] = "Indirizzo (via/piazza):"; -$a->strings["Locality/City:"] = "Località:"; -$a->strings["Postal/Zip Code:"] = "CAP:"; -$a->strings["Country:"] = "Nazione:"; -$a->strings["Region/State:"] = "Regione/stato:"; -$a->strings[" Marital Status:"] = " Stato sentimentale:"; -$a->strings["Who: (if applicable)"] = "Con chi: (se possibile)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Per esempio: cathy123, Cathy Williams, cathy@example.com"; -$a->strings["Since [date]:"] = "dal [data]:"; -$a->strings["Homepage URL:"] = "Indirizzo home page:"; -$a->strings["Religious Views:"] = "Orientamento religioso:"; -$a->strings["Keywords:"] = "Parole chiave, tag:"; -$a->strings["Example: fishing photography software"] = "Per esempio: pesca fotografia programmazione"; -$a->strings["Used in directory listings"] = "Visibile nell'elenco pubblico di canali"; -$a->strings["Tell us about yourself..."] = "Raccontaci di te..."; -$a->strings["Hobbies/Interests"] = "Hobby/interessi"; -$a->strings["Contact information and Social Networks"] = "Contatti personali e i tuoi social network"; -$a->strings["My other channels"] = "I miei altri canali"; -$a->strings["Musical interests"] = "Interessi musicali"; -$a->strings["Books, literature"] = "Libri, letteratura"; -$a->strings["Television"] = "Televisione"; -$a->strings["Film/dance/culture/entertainment"] = "Film/danza/cultura/intrattenimento"; -$a->strings["Love/romance"] = "Amore"; -$a->strings["Work/employment"] = "Lavoro/impiego"; -$a->strings["School/education"] = "Scuola/educazione"; -$a->strings["This is your public profile.
    It may be visible to anybody using the internet."] = "Questo è il tuo profilo publico.
    Potrebbe essere visto da chiunque attraverso internet."; ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb $a->strings["Age: "] = "Età:"; $a->strings["Gender: "] = "Sesso:"; $a->strings["Status: "] = "Stato:"; @@ -1643,7 +835,6 @@ $a->strings["The listed sites allow public registration into the Red Matrix. All $a->strings["Site URL"] = "URL del sito"; $a->strings["Access Type"] = "Tipo di accesso"; $a->strings["Registration Policy"] = "Politica di registrazione"; -<<<<<<< HEAD $a->strings["Location"] = "Luogo attuale"; $a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; $a->strings["Collection created."] = "L'insieme di canali è stato creato."; @@ -1718,61 +909,6 @@ $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["You must be logged in to see this page."] = "Devi aver effettuato l'accesso per vedere questa pagina."; -$a->strings["Insufficient permissions. Request redirected to profile page."] = "Permessi insufficienti. Sarà visualizzata la pagina del profilo."; -$a->strings["toggle full screen mode"] = "attiva/disattiva schermo intero"; -$a->strings["Select a bookmark folder"] = "Scegli una cartella di segnalibri"; -$a->strings["Save Bookmark"] = "Salva segnalibro"; -$a->strings["URL of bookmark"] = "URL del segnalibro"; -$a->strings["Description"] = "Descrizione"; -$a->strings["Or enter new bookmark folder name"] = "O inserisci il nome di una nuova cartella di segnalibri"; -$a->strings["Room not found"] = "Chat non trovata"; -$a->strings["Leave Room"] = "Lascia la chat"; -$a->strings["Delete This Room"] = "Elimina questa chat"; -$a->strings["I am away right now"] = "Non sono presente al momento"; -$a->strings["I am online"] = "Sono online"; -$a->strings["Bookmark this room"] = "Aggiungi chat ai segnalibri"; -$a->strings["New Chatroom"] = "Nuova chat"; -$a->strings["Chatroom Name"] = "Nome della chat"; -$a->strings["%1\$s's Chatrooms"] = "Le chat di %1\$s"; -$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!"; -$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio."; -$a->strings["Passwords do not match."] = "Le password non corrispondono."; -$a->strings["Registration successful. Please check your email for validation instructions."] = "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata."; -$a->strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte dell'amministratore del sito."; -$a->strings["Your registration can not be processed."] = "La tua registrazione non puo' essere acquisita."; -$a->strings["Registration on this site/hub is by approval only."] = "La registrazione su questo sito è soggetta ad approvazione."; -$a->strings["Register at another affiliated site/hub"] = "Registrati su un altro server affiliato"; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; -$a->strings["Terms of Service"] = "Condizioni d'Uso"; -$a->strings["I accept the %s for this website"] = "Accetto le %s di questo sito"; -$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ho più di 13 anni e accetto le %s di questo sito"; -$a->strings["Membership on this site is by invitation only."] = "Per registrarsi su questo sito è necessario un invito."; -$a->strings["Please enter your invitation code"] = "Inserisci il codice dell'invito"; -$a->strings["Your email address"] = "Il tuo indirizzo email"; -$a->strings["Choose a password"] = "Scegli una password"; -$a->strings["Please re-enter your password"] = "Ripeti la password per verifica"; -$a->strings["Away"] = "Assente"; -$a->strings["Online"] = "Online"; -$a->strings["Please login."] = "Accedi."; -$a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"] = "Accesso a Red Matrix. Inserisci l'email con cui sei registrato e la password."; -$a->strings["Remove This Channel"] = "Elimina questo canale"; -$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il canale che stai usando. Una volta fatto non sarà più possibile ripristinarlo."; -$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; -$a->strings["Remove this channel and all its clones from the network"] = "Rimuovi questo canale e tutti i suoi cloni dalla rete"; -$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni"; -$a->strings["Remove Channel"] = "Elimina questo canale"; -$a->strings["No channel."] = "Nessun canale."; -$a->strings["Common connections"] = "Contatti in comune"; -$a->strings["No connections in common."] = "Nessun contatto in comune."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Non è possibile effettuare login con l'OpenID che hai fornito. Per favore controlla che sia scritto correttamente."; -$a->strings["The error message was:"] = "Messaggio di errore ricevuto:"; -$a->strings["Authentication failed."] = "Autenticazione fallita."; -$a->strings["Remote Authentication"] = "Autenticazione a distanza"; -$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)"; -$a->strings["Authenticate"] = "Autenticazione"; ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb $a->strings["Continue"] = "Continua"; $a->strings["Premium Channel Setup"] = "Canale premium - installazione"; $a->strings["Enable premium channel connection restrictions"] = "Abilita le restrizioni del canale premium"; @@ -2141,11 +1277,7 @@ $a->strings["SSL certificate cannot be validated. Fix certificate or disable htt $a->strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati generati da te!"; $a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server."; $a->strings["If your certificate is not recognised, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno un avviso su possibili problemi di sicurezza."; -<<<<<<< HEAD $a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Ciò può creare problemi di usabilità molto gravi (non solo sul tuo sito), quindi dobbiamo insistere su questo punto."; -======= -$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Ciò può creare gravi problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto."; ->>>>>>> 2d91268b5de40d2c2af4bac154593705e8c62bcb $a->strings["Providers are available that issue free certificates which are browser-valid."] = "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser."; $a->strings["SSL certificate validation"] = "Validazione del certificato SSL"; $a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server."; From 20343365fd10c36e26182c26f1008474ac433f91 Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Thu, 22 May 2014 19:40:31 +0100 Subject: [PATCH 113/147] Fix photo updates in appman. --- mod/appman.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/appman.php b/mod/appman.php index 15f27676c..49adcd7fa 100644 --- a/mod/appman.php +++ b/mod/appman.php @@ -87,7 +87,7 @@ logger('content'); '$name' => array('name', t('Name of app'),(($app) ? $app['app_name'] : ''), t('Required')), '$url' => array('url', t('Location (URL) of app'),(($app) ? $app['app_url'] : ''), t('Required')), '$desc' => array('desc', t('Description'),(($app) ? $app['app_desc'] : ''), ''), - '$photo' => array('photo', t('Photo icon URL'),(($app) ? $app['app_url'] : ''), t('80 x 80 pixels - optional')), + '$photo' => array('photo', t('Photo icon URL'),(($app) ? $app['app_photo'] : ''), t('80 x 80 pixels - optional')), '$version' => array('version', t('Version ID'),(($app) ? $app['app_version'] : ''), ''), '$price' => array('price', t('Price of app'),(($app) ? $app['app_price'] : ''), ''), '$page' => array('page', t('Location (URL) to purchase app'),(($app) ? $app['app_page'] : ''), ''), @@ -95,4 +95,4 @@ logger('content'); '$submit' => t('Submit') )); -} \ No newline at end of file +} From 6f570a7df37e017184700cd0803fdd5ce9444cb1 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 22 May 2014 16:35:43 -0700 Subject: [PATCH 114/147] mod_display: match "message_id begins with xxxx" as well as "message_id = xxxx" --- mod/display.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mod/display.php b/mod/display.php index f4d4c38c3..efc3265c8 100644 --- a/mod/display.php +++ b/mod/display.php @@ -77,8 +77,8 @@ function display_content(&$a, $update = 0, $load = false) { $target_item = null; - $r = q("select id, uid, mid, parent_mid, item_restrict from item where mid = '%s' limit 1", - dbesc($item_hash) + $r = q("select id, uid, mid, parent_mid, item_restrict from item where mid like '%s' limit 1", + dbesc($item_hash . '%') ); if($r) { @@ -149,6 +149,7 @@ function display_content(&$a, $update = 0, $load = false) { if($load || ($_COOKIE['jsAvailable'] != 1)) { $r = null; + if(local_user()) { $r = q("SELECT * from item WHERE item_restrict = 0 @@ -177,7 +178,6 @@ function display_content(&$a, $update = 0, $load = false) { ); } - } else { $r = array(); From b3636f8bcabf4503eec4575dabb613f330ec0422 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 22 May 2014 17:23:30 -0700 Subject: [PATCH 115/147] replace photos app icon --- app/photos.png | Bin 11571 -> 13693 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/app/photos.png b/app/photos.png index 15bc9417a1aa39d90091fc5654441578cf5209de..b4b2c519e26bf7680852db6a52c85eecbf75713a 100644 GIT binary patch literal 13693 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 bqW`K7wHGWDf literal 11571 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 From ceb64bdb24259cc5e4491fc185fdec348feca95c Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 22 May 2014 17:38:46 -0700 Subject: [PATCH 116/147] couple more apps --- app/mail.apd | 4 ++++ app/mail.png | Bin 0 -> 6623 bytes app/mood.apd | 4 ++++ app/mood.png | Bin 0 -> 5137 bytes 4 files changed, 8 insertions(+) create mode 100644 app/mail.apd create mode 100644 app/mail.png create mode 100644 app/mood.apd create mode 100644 app/mood.png diff --git a/app/mail.apd b/app/mail.apd new file mode 100644 index 000000000..e916829ad --- /dev/null +++ b/app/mail.apd @@ -0,0 +1,4 @@ +url: $baseurl/message +requires: local_user +name: Mail +photo: $baseurl/app/mail.png diff --git a/app/mail.png b/app/mail.png new file mode 100644 index 0000000000000000000000000000000000000000..74fbdb03efd9471b70e100f0776278e84e53fd5f GIT binary patch literal 6623 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 literal 0 HcmV?d00001 diff --git a/app/mood.apd b/app/mood.apd new file mode 100644 index 000000000..ef90650f0 --- /dev/null +++ b/app/mood.apd @@ -0,0 +1,4 @@ +url: $baseurl/mood +requires: local_user +name: Mood +photo: $baseurl/app/mood.png diff --git a/app/mood.png b/app/mood.png new file mode 100644 index 0000000000000000000000000000000000000000..7df642b96d570da9fed33b58b9b2a98796279240 GIT binary patch literal 5137 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 literal 0 HcmV?d00001 From bcac633085d9383ad32f3608f07f83df31cc7635 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 22 May 2014 19:19:04 -0700 Subject: [PATCH 117/147] implement 'requires' on personal apps --- boot.php | 2 +- include/apps.php | 49 ++++++++++++++++++++++++++++++++++++++------ install/database.sql | 1 + install/update.php | 9 +++++++- 4 files changed, 53 insertions(+), 8 deletions(-) diff --git a/boot.php b/boot.php index 14a3d8770..768b703e9 100755 --- a/boot.php +++ b/boot.php @@ -47,7 +47,7 @@ define ( 'RED_PLATFORM', 'Red Matrix' ); define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'R'); define ( 'ZOT_REVISION', 1 ); -define ( 'DB_UPDATE_VERSION', 1111 ); +define ( 'DB_UPDATE_VERSION', 1112 ); define ( 'EOL', '
    ' . "\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); diff --git a/include/apps.php b/include/apps.php index 9eb54af00..37deb0bbc 100644 --- a/include/apps.php +++ b/include/apps.php @@ -126,7 +126,9 @@ function translate_system_apps(&$arr) { 'Photos' => t('Photos'), 'Events' => t('Events'), 'Directory' => t('Directory'), - 'Help' => t('Help') + 'Help' => t('Help'), + 'Mail' => t('Mail'), + 'Mood' => t('Mood'), ); if(array_key_exists($arr['name'],$apps)) @@ -153,6 +155,9 @@ function app_render($papp,$mode = 'view') { if(! $papp['photo']) $papp['photo'] = z_root() . '/' . get_default_profile_photo(80); + if(! $papp) + return; + $papp['papp'] = papp_encode($papp); foreach($papp as $k => $v) { @@ -161,6 +166,34 @@ function app_render($papp,$mode = 'view') { if($k === 'desc') $papp['desc'] = str_replace(array('\'','"'),array(''','&dquot;'),$papp['desc']); + if($k === 'requires') { + $require = trim(strtolower($v)); + switch($require) { + case 'nologin': + if(local_user()) + return ''; + break; + case 'admin': + if(! is_site_admin()) + return ''; + break; + case 'local_user': + if(! local_user()) + return ''; + break; + case 'observer': + $observer = get_app()->get_observer(); + if(! $observer) + return ''; + break; + default: + if(! local_user() && feature_enabled(local_user(),$require)) + return ''; + break; + + } + + } } if(local_user()) { @@ -256,8 +289,9 @@ function app_store($arr) { $darray['app_addr'] = ((x($arr,'addr')) ? escape_tags($arr['addr']) : ''); $darray['app_price'] = ((x($arr,'price')) ? escape_tags($arr['price']) : ''); $darray['app_page'] = ((x($arr,'page')) ? escape_tags($arr['page']) : ''); + $darray['app_requires'] = ((x($arr,'requires')) ? escape_tags($arr['requires']) : ''); - $r = q("insert into app ( app_id, app_sig, app_author, app_name, app_desc, app_url, app_photo, app_version, app_channel, app_addr, app_price, app_page ) values ( '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, '%s', '%s', '%s' )", + $r = q("insert into app ( app_id, app_sig, app_author, app_name, app_desc, app_url, app_photo, app_version, app_channel, app_addr, app_price, app_page, app_requires ) values ( '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, '%s', '%s', '%s', '%s' )", dbesc($darray['app_id']), dbesc($darray['app_sig']), dbesc($darray['app_author']), @@ -269,7 +303,8 @@ function app_store($arr) { intval($darray['app_channel']), dbesc($darray['app_addr']), dbesc($darray['app_price']), - dbesc($darray['app_page']) + dbesc($darray['app_page']), + dbesc($darray['app_requires']) ); if($r) { $ret['success'] = true; @@ -304,8 +339,9 @@ function app_update($arr) { $darray['app_addr'] = ((x($arr,'addr')) ? escape_tags($arr['addr']) : ''); $darray['app_price'] = ((x($arr,'price')) ? escape_tags($arr['price']) : ''); $darray['app_page'] = ((x($arr,'page')) ? escape_tags($arr['page']) : ''); + $darray['app_requires'] = ((x($arr,'requires')) ? escape_tags($arr['requires']) : ''); - $r = q("update app set app_sig = '%s', app_author = '%s', app_name = '%s', app_desc = '%s', app_url = '%s', app_photo = '%s', app_version = '%s', app_addr = '%s', app_price = '%s', app_page = '%s' where app_id = '%s' and app_channel = %d limit 1", + $r = q("update app set app_sig = '%s', app_author = '%s', app_name = '%s', app_desc = '%s', app_url = '%s', app_photo = '%s', app_version = '%s', app_addr = '%s', app_price = '%s', app_page = '%s', app_requires = '%s' where app_id = '%s' and app_channel = %d limit 1", dbesc($darray['app_sig']), dbesc($darray['app_author']), dbesc($darray['app_name']), @@ -316,6 +352,7 @@ function app_update($arr) { dbesc($darray['app_addr']), dbesc($darray['app_price']), dbesc($darray['app_page']), + dbesc($darray['app_requires']), dbesc($darray['app_id']), intval($darray['app_channel']) ); @@ -369,8 +406,8 @@ function app_encode($app,$embed = false) { if($app['app_page']) $ret['page'] = $app['app_page']; -// if($app['alt_url']) -// $ret['alt_url'] = $app['alt_url']; + if($app['app_requires']) + $ret['requires'] = $app['app_requires']; if(! $embed) return $ret; diff --git a/install/database.sql b/install/database.sql index d03cebd4b..82c96019e 100644 --- a/install/database.sql +++ b/install/database.sql @@ -97,6 +97,7 @@ CREATE TABLE IF NOT EXISTS `app` ( `app_addr` char(255) NOT NULL DEFAULT '', `app_price` char(255) NOT NULL DEFAULT '', `app_page` char(255) NOT NULL DEFAULT '', + `app_requires` char(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `app_id` (`app_id`), KEY `app_name` (`app_name`), diff --git a/install/update.php b/install/update.php index cc755c8c2..0d5d26237 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ Date: Thu, 22 May 2014 20:39:42 -0700 Subject: [PATCH 118/147] more apps --- app/chat.apd | 4 ++++ app/chat.png | Bin 0 -> 2194 bytes app/poke.apd | 4 ++++ app/poke.png | Bin 0 -> 14377 bytes include/apps.php | 2 ++ 5 files changed, 10 insertions(+) create mode 100644 app/chat.apd create mode 100644 app/chat.png create mode 100644 app/poke.apd create mode 100644 app/poke.png diff --git a/app/chat.apd b/app/chat.apd new file mode 100644 index 000000000..2eba8edba --- /dev/null +++ b/app/chat.apd @@ -0,0 +1,4 @@ +url: $baseurl/chat/$nick +requires: local_user +name: Chat +photo: $baseurl/app/chat.png diff --git a/app/chat.png b/app/chat.png new file mode 100644 index 0000000000000000000000000000000000000000..aa03c75dd3dbe08d9c7403606cb2459b170ce96b GIT binary patch literal 2194 zcmV;D2yOR?P)1xkb1A1hr$K@{5E;u>QSiZv92 zm5_ook-ZX0{ej4jnD_%NV$die8VL{u8WDoIYJ&+#gNp_*Z9zkd5^dR{tXr z1U3Qdl;*|pCR4SFFp;b|z}dh@fF;0;2Ha)E8=X7JZq7JAtn%&B4qO=#e)E_!;oN zgiHPf+zLDeY>qxuz|h25>vmuk@J?VE@JXPp%6(r0?p2x<)x3alBhVwR4fq1^-30yg z2jDiPS=~gdz6|&rut27M2+sq3O0#(^(^@rH`lbMXPMEIG0ha?im1cCDto;eV3gE_= zOGbdJmFE6hNmLD#yoJE8f#YLN{R^-{X&!Hd!z=fk4SYqUGK71Sj%^E~)FARM1=hxp zXJugX!I3vsebWH^Q)#XRI)Rr1?bletbE1acbibM+fgX9E23E$L_6D#>Y1U_D?dpxY z9k?F&LEyBflxA_$B+whgg;mH~51g1K@*^&80({({G+k| z_;%e>*n3NBfb#>VbSuq9atu#BZ3Ry8nuf&n*%zJ4r5fMTycqKCR+^1@lf2L~D$R(j zT6|0bmWA}7s__lIfD3>|@fP6KJQ$4{o^=~8B3{NWrRf}#4iw$j1)LcQ4Jkdb$P;`c z^7kxjDkDp!w4x34P#J3*0lqcSm=jgB4j7I!T~{-Ko?g2m&^!pdKG6siffFS&1P<>7zA1T+Db}zExE8pmMv2^k3;q8P zc%>}S86k6Piri-)rtUUPYTFDc<4fv7_c8fJUWDQ*zk;Fqu ztGBcSo+uXS>q;{N7_x?4z{9wF!*LB7@F~ERz&2}mKq5Y^L}H>pErBlqCjoa@!vOFb z(QnPfRlr}Z;YTerKHY(1qhs*{cL5&-_KPz;UL_$VT$ufjz!~F7q$HzyqefGF-sk#}xr(1?|9EYnaz861_gZ7HD1_&1I`99i0l*Yg1Z?LEs(0P&3>eYgmA* zoQPs(xm+$*0wwZttSqLpiY{EPx#7|$#v_#K{GHP5j!JzgG6l-!25m%cz=#ad_-w3tJ7_nh6}GvjWizw zW)sN9#YteB1P=0qbL*8p;IaUD03T2~p1cr&CE_bNvx-SFbLv4zZLI;;CmE>rq-aA9 zP~OQjQb!-}2^_mQjh`8nz!6+cU!E{5$?$p*jc4wUv$|CYl!5HX8G##`(C4FR{mYOW z^LWk(T-AWU!K;y`=R>QGv;^LtGXft75aN?GS9T9nw0i`-6uIn`)Q)JtBR^~nKLM8K zfV?M^W=QItX96c#Lnm&x=Xtu%3F?mb`dPHu*?N`e(o>rQE+{VL;aM9zogli@P z_gce7Yv}Wi|1BagU3C#CQ+YY@MdYo{ZF1}ZZm-hMEZh#N$8eh-%Q&wVFFwiCZzo&9)sHKU zv4$R8rf{?Pg3khLeW%(BQ+42S92z(+<$XGoPPPMS2>c@Oy^N5zMD$)c_-Ugbo~X7x zR*0M@#P=lJt54~Qiv60WFk~Y)vK3gMH2vP*-r!d|qRwyR?_s5RLH6zS0{1}drt2#j zvRAIf*|`zmv3lZt)m9;%WUc_dj03j-}~kv=eaT~Gi$C=X{stp1CpSD z78YQGKn)!>O}iuL#@#>cChT?u#t_kghql8+bhJAlm|6&dkh&x!AyHCISy`D`RXJ5= zzInLwJ>#C2f8113;2ke+oH*~rJ!kDTee2t6J@UK%@po_Cy2UwXjCsKV#zV##qd~wp z2|~sl8UzzWVa4-yd$wMQ`on%4S7v6~;5-Ma5EP@{*>-)#b21t4Cxrt*0Ah?$N?B{2 zbBG84lu|;7_ug9Ty+=eOKph&b+wFFz(=opE&lJ zPk*Laub@*}YeY20^!B&jeQ*8M%Ww4dvYF-OV~19nt%fYh_5DQal2T&4<22G%q4%8q zU{OjrzvhEXR4ImsUrK# zr#|tCPky4)YL7+(CG)Z@5z%`e27Z2V@#2MZfAYs)=3(W~p#zOhr%a3e?4I@rln4UO z5bF$j!U-XSkoz(-77!Lt7VyBM21+QQ4IcKkH}2hjZ*yZq$$aU^sk`gzKl$0u0)Q%u zGR=SZGoRonMJyb3gi>GurDpn_lu}Bm_uhLC0PolE^!`-Cj00!9R;$HvtdyGW4(A*I z0e}&3D@E7K>|PP@P>= z254E7j1r(wtwq*aj))HgCWxFdAvh&SKrlulAa`%PGu+V4!YDx?giOVoE=uWC;HicQAvT2+Ax+kDO8KoY7hc9)EzDs8|!O#DwW34Y+I|$W2Bq~0M7YTV8$5vyKAcO2Rp$D zwZ>E`l}aTB0Ijw6&U;S~thM9u_@P6Gj?B+97+BAdb=Zt9R@Imy}Si=ZqlzMPRDnf}VoFasUk>R`+Rg}Tgiwm3I z{NCaL(Jhb@=8Z##fS|z#&RJ_YV~lei1OcT~2#yY|*EY*vefiH$H0Oq?A1O2JN|lzg zOY_;NP{wG3#u3gStcF0aUhi;TyL0pATQMJRZ9npn7kK9oFyNdMLJ)wwPmF1-e&EJa z(*;1v7-Q_gZ|}!8bd2$1hY!Xf*OLSR(D^uu!Px-O85aOU=Z#Y=5YDn{dv-h;Up#Xr zm5Q)97Q$C-wGvzF4B-L5xLT!CzXfgxBN8zP$V@AN7x8YdS7c?qF|)Tl z7>*JzQ9F+Wl+slZ6B0(1x^m#0>khJa?%ZC#buIMcm{Uaw5XZ@V=X~JF)9dNyR6I&4 zAux5TsRHghJn_uilMg+zaNtck7A0epAg$HwTI=22U1QC7l8lr5*3DZg88dVtqah0z;}7I~AnM-}`~7$R z&Y~0$7Z;aV7`5l-I`ealRwJrZly{bKiO4E(s#U8sLkWbTNYl~W!u;IALah=*nQ}^N z^?J2dt5hqEM!i%oORmBq7g^6T8%L_zc`=oZ*k|1F{M^o zYo(Od+FDEL6mkIPjCLwJby1KKTGQueH=%tk7 z(YRWzR%=y9FyvtnMBDc^z~}&w5lRSs06E@o*zdRS2kLzgy6<~3=TRJi$7xI#)yiNp zHqO?nRVOudP!DS{4SKyHAqeQpA|DQiS}7&V$jhpTD5Zo^A;jN4#(|H65UAtUV<|W9 zZQR@3Op8((AJppoQNFOWNWnDPVOSyUPD2EQ62b`Oz(hc^vMfx#-Q6NIU^FrWk+be- zSB)khm8YD*eJwtSM$^w}7QCPT37JMXN+|&G9;bgGjf^5L(`_^8C8J3)oV1$ldaWME zkr3QDD~pnNQf<^2Qdy)#%3?HfGOJW;alMYJ;3x{0)}~oz9BS(+6*A9U zX$UYv=mQ&mKa71~)zd4==u}z&VE3JPNrl`V=K)Jc?qp)_d>3TWia*)W&%4IUxXm1i@zIsNdV|_FMCd(wa&w9Ax`=iAP6CK>WK`-W(-^^{uV*7ak$ZcK7x+ zHv37bV_A$xS+m+D@=%bqal;NR$5Ec&UR*IvVkm1rCfmqilSuBAtEOTEDTIK9FKa0vSzDU6eaOC zFU})cN3?{D(o`tctcCsY$dqz_kXTh5Ub{DU z`YfRY5vM*pT@MsHy`VsWAbEe>q7eBhe9-i$RqZL``-Kh?$$eRUP7r! z7<85=V>ekjd@O9X9R;0CymtX54zX2_=Tvo^NW%i}!4Zt2h>Jjk#=P?SrHHZpZhv-m zR?3_JNu@U)D%GgM14m$($Z@)3ozIHWOtC#6fVtquGq`f2qm5tzP*$kSIcJQaob$VP?^>e~(G+=En!#9>29@Gtr(e9`qgdzbTL|Lr}rIg(FR{#Xy1nMzo0F;nU zr`hd|wX&W73q+~-T-221A=9vYp94ZbBmf=}2!XiK zo@wg6?%nG*YPERjp%bFsDfae7F5i6pZ?0W>$A*I?Z|Ml`nI%bCdF8obxnK zAAaJ(t1rJj3K!EXGtOwGl#<+|Pt$aBd!rVeGC(F-3WQE8PrRQMkszU*c*i_-H6{+! zgP;E47wWBAt34}%s4V5i)|MP(@ygsAS8u*~`C8^tJC~HY)2K$Avme;-19E3t`cBi8 zca{=@l-z$9BJ+rZAcJb9TB$XL>Gi?h{xhHdXDWtx>m0Qbw%KL_elfhUi!_nRME1j>amZhe>&FXIFX}RqM%c^8Yg} z@E$2~#FOKTwV(XR3-gV-4+5`s$gtC@o?d#m7E}{eeCop=eEZF}fAf$3Y^~c%%YyJJ zlks;dp=lv8Rq|A3;@#AI0RPr^yz}i&J017(!DR8&kt0t$)?eS0<2)OV1d!SG{A{DX zvM|51yLI5)YcW8d;wYh~x93MV zV1HL|hZYGXj3uQpPFtk`!2KXB18@QskTGwcIktN0^s4Uf)3`q0T<~gm`C9Mx&Aqj? zJ0CoI6F#e*k;xK23ZoH=i&Vp75=AQC_Vf&^Gf zJM~>eAcO!RK%6y;3x_5<-AQ+R@wsQRG|48TR?yhEe)-_i3Zdls)f=k|Encnipb-en zN0Ypm1dT89!HiP0RC0A?1re0drMAX{pJsmoK!5-u z;W2SfpFH%!6^P@h4E1R!%&_q{zX; z-sVnsYpcJv5ikZ8NVPiJ-S2L!$t)L)#&MHl1j={&!>68oc5`=UcXy*d+#Zeg5L7A0 zd{U$hZhbV`TGC$`x|TPp$Hi@rye?e^1`E*Qcel+2;eCt0Kf@Bpw4?hpg<_XG*&xj z5z#wujn&p1I&=sLUp;;ttjqT%gKn2mj@n0}HlB=o$vT(>Jc+^z&;a$g%oFA+z9I}| zvM>S|kHh|8uyABGf9ow%37qy;8?7nNilWhKdGy57nOK}Xf9~bi-t<5KzyqP+{^?JB z`o})|>G|1}z1>ay{nxhoqh}v`=Jj{4{QOUT@{51=wfRQv;;F-FGM<2&JAKAc``DRt zr!Jhny}SN=97lvQg!?%b9RQ((AOHeEAe=Gp+!S58XUe?O0^Dz5|6-mYx!6d zh|R0lI<-00n5na>Q^nQG?=-?DGF}cQA`(_6u8>ZJ5E9hh=0RtEuG`&NIejh^L^=vc zIcHH6v1gzENCfPaSKp-0{fB@1Z&urlrB>seoA;0+diL?hPX6*Q{-XmYjvGR2wdUON z>O;qm%r&YP4js$~{YTE9Jay<`?2RnSgJ(`W@$`$M@!%J~@Jq`lj$gif_mK}g!jKc7 zOb9}m2kH#p>GEY2OV~i|IC8f1C4nl_LksdyB9KjKwo_azF0mUR{DzjzU-``Q= zWbNklH(!0NRc}OSj1ngm}_!&CJZqvkyM| zWFrzv7i;g``{47eBj)NUIVxU zN+X9-DnTQyO|2Sbc@ej2A{Fh~*`!E=dQ7C67F*UBB?%J(oHs_J)5aO%Jwa=&tkB39 zNuwCTO3m!njmD^}y)iZl2wGIcXL%-45`+RB<%}=_oH5GC6t|%#)F}_>fsue( zq6_KJtsFcG)}^BfWz-sj)^a2a7#PSi9FNP!a;;DdJ&eb+!1FTSRR4{rAxFLJ$Q6VNkT}XWN4|hdS!9xU;U52 zK1+j>3ys<3+1b@q1WpMB`hbb1004L&FQfB>fORh5VqtEs%nRy~1LkF(YwMkLQjJGr z1V;cy{b4#v89=(T@i$-n#=AFeHNO4V&%E&5#+}X8<+(;wA%!kO;EW;hoN@$o&c(6t z-aBJx#3x1Zt#5t%+($qC=}&!ZV|$wlPbd(i)Ot7Q_rqERqWJ7HPcuf8Q~-o{W0W*X zI;)9CZw(p?&J*jc(mKztzVyvM`TZ}x^p!7NdHt1}*DkAcGA-^IW0Vje1gGULp?(U| ze{e$HX|+`$WnOq=(K}~!S>}_;q~Gr&dd3)MtPw`9zx)Ps?&h1{?^J7vw8>zQC)xMk zxn3$2L=jkr-cw2mfCxko1dKBg1m3wKPpvg+scye_$EpII`uU&xDQ=YHoLOfbVpf(* zv&&%=-|Tg3wpFXPwI=~;XQeZxmZe~UGY&mEZ;5p}D~WVhzVq@w|NKuI%#Iy7+UV51 z1w;?@{&|8YWLoAT^XLJL=R9;4IAyh{!aTLa$viKM#7bFYiPnx#3gD%bK#1UBniRkP zAO7F(e*I5>=($e^)%t9^W4ybv*L?web+$o;n6jLRKnM*27VwZU>Je3$)o0u58$0ja zz1#2ZEFD}0g4}|02tuX!9XD^;Pc{XZvdc!U$N`snO?zFVlQR=i-mLRbX zJXh!!PMvBWF^$$tyfo9S&CRbaXVOSh01yCAkrP5a_$l#90g-s;&=W^BQY0Rov&N$= z%2aD(bdhJd;1xkFA~L~KLmYD(o88_}|L5;~tJ;{`-`F^K?$|@~2WymOx|m-$)Ef@8 z)?6^oLLP}Qj3n6D0+=k0!|T`Y-d^9?-MYJYXgTDJQbL^bf^*J!yVH2>wb%Q*y^08K ze(#OQ7drILdgGM$I4#c!AyWz_hR&G(Z`-#caWR-OlOvwi9ErTxj|&W*bP3n&jM5aPVE z)-uL|fH6v~^I!d|um9nH{5_SX9612<-b`DGl-7g*LGb92Aq_*rSe~a@mL`KiHs0^= z?pH)e$W%`1otwVMl+f|sqYnu3qL6^BEaenVPm*LjnMf%qVM?musAtUmPOnlWXp{$X z;`GTwbDgx`Wt`V|Pz{_z(r&iackbkQYOV6`KQ0|bAR&1Kh>&4r*&BZpf$!C zJB9mFsYnD#w|D!>wW2=`Jwjdv+Jm>I$k01N>9p4hJb32-iFXK|gAXWHI1y!$XeF~O zwMGL0>ugz;)*8V$XFSWYvMkY~E|s+w2{dPBw|k?-*;%iYRwW2A&N5@Hx8OZmV-e9B zqh&?`OJmwgi&C50@7)1P=UdIoSKgFT0zvkP=bwse)qn{~14c!EoS%98xqffFy0YSB zGBY@IPUd#H?}TadaJv$;hcH((i;F|@yG#BfD#G-9z9w| zfjQ%nQK?HTQ=RAIWZWP3`+1rYO7lEVlEgU&2v!@dwFr0|$KG0JEhSW2la>mA6q8gJ zX}7z_M39#yVS+MNs#1u65Kah-!T>!c)|~s`hmunL_W$-f+nZYlW|~=7M=>Tz11S!^F1++Mrc6hg{E zpg=4MWdt0fK&haCU`WGu`d=Laduy*U}_WHfKm4nMGtH~tgDj-q7DUAaW5rKwW zx%_UwKVmbUwSgFgmV*$^+H^d&)=DX@wH}d2oJV0^mOQR7k5X!bAi{Xm-;2>5J$K^u zzxh5Vq?L@096WXC_=%m3dl8G#dLI$$wS{768wZY_3>)>{)oaI>W_)e~D>t@BrIt;p z=zHDqJ6qk|!j2|(()Zu|%fGmD?JetE`{0?CGf!>q474^jA9-no1#q4s5Yo}acmMzw z&q+i8&0(nk$}+dsP)6)}DL*xz+jEmD!nE9Ho;n2X7IBAP|HiA-*{8l(_&k!P9K zCI|v4%i;dM%8Ooi|I%x(>pWq+n&v6gt2Sy@8uc))1w3d}E1Mge@7=oRfqI~v5@Sp$ z%V`%lrBs$>QI_6&C6#j?2#Ldp3m!#Lzdy)j>7Bo`c8@Wko##kuoC+^1Q78z{l0+71 z;V`UKgoj+~5B#kDe{7yKY8NX)vNdJ-BC($#*A~o3G-^> z`pvzyjk|a6oV{>PTHhOvufG0zl~Y=YJ&;zbskK3m$B&)P9uTD4Ja4F>&stJXPo zqP=veR;@=ojG0)!vu3qL>nNj96d7ZtC#KUtrM0%&5YCLV(r9CC7zB-K4G2gn%c9WM z+`N4&s#o8>dhNua!+Dx+uHR#nOYi%mAqdgU)ogoaoaZa&&Mh82GJE)Fl8*DqIOP0m zFTJ$a>ko$GhtHq;@Bj6$Q_iH6Y&Hyc_V$3dFbth@M8sTF2=l|D><)%&x7WV=SKpam znTx~VyDwkb&z;gq6a;Y`d+X=s7Sb%g{MMBu&5KE%rW5Vu!_U7syKuNtt#lf#y^S4C zqxrdodbLumR-AKLmJ&h%z!+1OrE?CP_XMQTg)D^-fe^%F7)44+t+X`y-5WQ~T{tf| zsQ|zA-mP>pN%Jx(%2Jn(vh7heyRdNfi6>?jR)bn3;tDER4FsX|fB$#?ju85rzww(# z4<9}M*kj5lV+`F($Awj;!z@#PoO+bSWH8M3v*Ox&@2#z`jeEU+`@jB%&DEn%Kl#e_ z_rCJ-Ti<-;^}%q$9HO=x>zl^P#30jItsx ztOH|RnipA7Dy7miMM4DQ-g)PpHil9rqDX0jz)GdYlW`nIlio1TGwDo$Vr`ONyS?$| zje9%&;_%srUwZB86Ce4|k+TmON}8>CTNafdDs%J3tCx4Tx-+wjzw>|o-|yVGH9gay z4%pIMM=NEWXOwcz%c2;L#{Ip~?r@S9dXknwqnRZ6&Fk;H@WKnDN&l@|o11%yO0z~B zQo--8-z~}l2-GW;S}hRGnWsMXnG#6o$*pTwWs-WMvMe18hTGfQnMs-*KYk)Fa)L;ZeB&G6xO?~Ra6D1k{^oE0c36q5by`Xe9sxlR zLKu}&7DdtT4Yjh8Fd#VbxcB;{i|0;k@9q8NU%qtV?3r(T|4q;1?_R&V)gLX*w+I-) zf;{i{lak&oUi=3?={cu>s+4!%y|J>q)awt8)@hn1NdgFj5T(>K_aK0^))N#$-0y&x zHp_87P0?`_@9gdk`h(?_mAS>m<0p>NZ~o0==S~O4{OW)AFBVUndil%$slUDP-8bLb z+Sy)QTwGgQi>k5p&N+AU=FKe6=NFa=2a799Nm)!g%GiO0IY0pKEnra;##*gqqh2Ec zYgXd9x%Tq>JjU+Kv4_6*^7rOu7VEXv?%ui*yqBA;-f%F<)6%T(jqdFZ77rfy)qnY~ zN*Zv^ckizIEE$c4lgU_1O&J{yhhZ3|MJ_nE)*55-EF*-(QH4=b8flE-Tr_I+X&0N) z8a>X;b-?=|44;4DN zR?xZid+T5N(w8cg$|y-3Kk?M{8#j*}JNSu@eE91xzp9wCKuQN^j~w~6pa1;%v*!*UK5POf0zsYY z@9d7U@p!-Q5rZf+xt%JF08A&!lv0Ee@4Y2Hh$1SPwN`LG9X2z@aK@asp%9F*TCFx2 z^=@Cj_w|%` zZ*Ocr@yLaL@(Z8m)nNX>ilQhy$p*u0H16(fmC1xK2F^(-vn+GgYhw_QF;!17l=lAz_DwT?KJ`};i!a|y+jL}ZJ`RudL7Di8-w7m1QJDJ?s+}<0F z4W$mj69NPXry>sPwRok|S)T1Ibvl(WDviFgwK*6Lc6-B{H*bFC<1c>b=_mf{pZ~%i z{ri9aJO9i7L_C56UD~yG-@W$Q>#E4=VH`%`G&B$(#u%gZwAeyKKyc_icuJ`;Mk_s~ zM5gvUt>(ip9F0cLKmWYj?BJuWXV3ofQ(f6jSrG~eCbpLR-m=P6~CIILG|)?4L_lVw?|hfbe5 zdFs^Ky}Ox|^WeJoHlj-Nz4dJk-~Xx4eKxGcx88o|@kfrTWE|C7H*a5m=`a3V7UiLp z)rIy9Qc~oF)WvmHF zI-aJv^8{(w>CAomufOx;Q;+6pKk1Hs@mKyCMXw2rilWwTsZudUmC}RpxU|kPR&TdU zqX>XU>#Z@`@+nUY;5nx&%L~@}z1>}pKq&-_Kl$Cj2k@q&|Y|J6%>`sZI(r9OM=NPNqY;r$4J-(P zxw*NW-F@dgP|5&eE*?4m@ZGhw*DhTSW4^LDH#aj|2_p({VCA54=G8YYJ#y~huYCQl zPaHcI&Mmz0$}1~JPLxUZ!V51{c(C8?e&^NiKmXy69$H#vj1dCHdj?1V@*;Q62_b}t zwa$YeD3sA!&opaX2y5-M*EY}dm6a9eF^FnqVe&Ms)vA*;dFtYY$IhLNW)B@aHqn#b z>tFv*&wuXoNq?Vs0*KQQ)wC!_qj5Ek=4WP$ByH9k#N+gv8KtyVt8vbU!=dwlKoET# zM<0FW*~w^}q+>(Jp z?d|K6es67SbFn=uow>WUmXDJohYk}$#>vD{n0BsMYpu12zAQ9jTnJi}N-5KBHfnK5 zIpdrgV;c23dYnv#v#SRVA35%|Rwg}s{8abWty8B@c21su@7>qa!SL-@z9o$~c=V7D zxE7=qgh3Eqx%T$g{_{%*4jf!rT3%URZ8e)lODPoquu7#e-Og#-HlVM>;$t8Es8#0e z>+hs_xwte>2kg7aY*h)56u-ur&P|Kf`;o_y%E zb(m)3g}FK7$XhRebNk*l(|T!cX7#bh!k}{L&8ty7bM*9aX|;3`3ON{!wKC&m^2M)y z{S!a*JOgMo8*_7W)@f^nYxq}o= zo;-nsZf|XzIdgh4PNFcZx0;vUdXvy#oQ@lf*3#nATkpJc;PAn%o!zCmr9!E0uQ%xJ zpLytvQfiVUT5CqdbOzjeKONFjT2BWrE0rjY!zqdV&_fShxNw1TcJboHg+oUQ<;!yN ztv~#|KmXEKe*DKi2}Oz=w6~|uojd=*Cl8%I`u2^ti@|s@81{z4>(_7m!5{uXr``GZ z$3LN^0w6PUvvC|Kr4f-$Et?{#*TY6NI(+b8wNklqn{wU2!G!`fI` zmXwley&lIQA=Ej?r=ukS=W{b{YkXL3zI**vnwP5wR+CXOm`p01%&jgHAUiv|L8a1c zwF{}FRE1G@?%oS3@#U-6&Yn9dwOU_av(8?<_Rb_P*ETi|96qSM^FZFcdHeCl9@SbS zLRhaDV~nv%Nx=dHPk?yu!XOZwBLF4j%&F5;bgi@wgW$^R-^-5=hCAa6Pks35&;9IR z`^L>nZ-p}ZqyOi3XJ*=~i!)c>y7Q6GetNbVc}5%6Mif@Z!|}qx;?7>zSnJXEdfl0s zdcD?E-cdkbtweLPkt*}$mDTGvZ|)ApON$HnXgo-;X=DT)1K|_ zcDJ{884-mt?YV{R{$5_lB+E)`_IG!a-UPvSM}5u-K_o&9N8@yuG^;aZX-8?Arv(c_ zC6%!SAvT%xU76KmZk@8|nvLd6r4d&v#u`sa6h_Tj^X<1UR~z*4k9`U`v{#OgX|11v zb-~u|;L6*#T_}pe*nqDtA0~voed)@9mBXGe4UR`#c|A^gqd{M*9MDoqNuyC^L3HBO znS1x{jmF7rr&UThNm54Xp+g5-&E|XWy*C+;E0xO3%#5{mzt>|zXscIOS9f=Jyubes z9ngD1X}wX8fK)5hJj?2FjZwxKn@lDm4EB26w8*u0-g)$HIvZ!LrIc!|5OHp9?!v{3 zg|`5pl;V^+f{RN_{hj^qeCONyo9~u;`=VNT{2%;;ugw(FPki{+`sm%g!QMDoSvs6$ z*|<0O%GbX3oQp~v2SJcbCaEl_;EiT0NhV2>h9M8bfO9T_KyW_OnW+ciY-c9qq7p^c z7|NLUzR;2hF&vMLv(}pF9Q9~4D$6p8<0y&|@#2LG%d0DuR^2&=01SvSMhMZaHx8~I zKr1gj5W6n85@ZL|7 zWHcICYw2909`SH6oUE;FBEsBkXMcZRY1^pR4jeqNwX@ypk1e=XyI!kB&cR@k=6TU- zx7If{Z{NNb$5kPyu`{0N|7+go=O?zQpu~w_5X;PNuWReg<5wX>5$g;G~ z5lT5{h=`0zC7pMrRHc-ZGs38~$axTnhy|PrZk-zrhCrazYEnW7LI^xWP6%J$*l-cD z_Hxea{mtD!{;hul{mrKzeaw)M5C)9izJ7}_Qy}g;)=43LC7!RYU636$?*{m(g zvM35#YQ5L(8*RfdEQ-Q8CuQ00v|8=~GSc#|SjFm9*-V?$4;~`~?3RWsb2w{vsLBN$^OO41CG%^q0&|9Uug-Z-i_ir@Fl+?mTG;~N*R3Jrx5F01bKmz;Y{+Lg`WNT?&+qu;#=9SV zyjUECYW>4^Uw`=C`_SWvkT+hxy`OU-McdZD{QBGR>2XBx-gK5QmL^G-@*NK6y;n-1 zrqNP{U76Y0-Af)U=5wX>x~mj~(@8p=Op+w7>$>lIN-4$c>grlb4Isb-Cp^(wTN{jV zZPN%LFa$hJSF6=_v!RH1A6)QCYiV_W2s7%O!x&lXy#op5-UsVl*L9oCb=$Tn=gwIG zp`+MgqNJW5F4FiAp)5=J;?C{UHy=VNmU&K*`R1!fk3Rh*jotOC8G3W}{Kd`F>mcp@fhqigrC^(hLHC5b;cOU2&sm8%bjt^Z4TYtQ%xR*kqE;_NTxH<9*C2 z^ucMf-EMm+(=?@!5XN_A9w8*#R(ZRYwa^C_tBq0$5rhfqhPEF&gaN_~VrZ<5855&m z5gVjT@}%#Fs;*}3p3)XF27Dj@gJ2Ob&YRQaeCVoVudo31!!SE20)UIx<{!L$Z=d;U z+rnXd^5^e$-*^D$9Ad1kQPwDHffzjq2t$mq2LMxIgBM2IQIyq1H%cE|%wwMCXaBzF zM@gfEF$Vr;NC+bV1{yJzMCE$h_k-~via8_{Amp5Nz=mM0v5S+NZC}PbC2_WX`o|(8 zjAo0){L3#sAJ3ls^yANWV=6A&7YSP~52n+CG3J~zHb4j|rA1LFrCx3k?4l+Y0s_EU zLm8gt{OtTv8lOgVf5roZo2pbwCNbCAKqRZOQA!a;BhFb8d*?AGLPmulR=y9W=jY$9sm$9Mp_$7EW(5*JRsEceK(H6xV)GhE{`B)h%#*};{ zzr_B$_s%&0V45c5Ao4sd%cdUsALdrNv zFs7rB{V0S`-6)hZ&W1tgZWzn5+D!@xDMJX_7)puJIzRvrG|ohE3?Rms+`IoEFA5gL zlrrbM(h6aiPl~jdG4HzP|ESBS)SL6G_3YLy7DY!#r_WZ~vMe18t7`lB$Ihjnr jD`FD>O6l%^ck2EJ%sue*7=H5;00000NkvXXu0mjfTrotS literal 0 HcmV?d00001 diff --git a/include/apps.php b/include/apps.php index 37deb0bbc..ab09ff531 100644 --- a/include/apps.php +++ b/include/apps.php @@ -129,6 +129,8 @@ function translate_system_apps(&$arr) { 'Help' => t('Help'), 'Mail' => t('Mail'), 'Mood' => t('Mood'), + 'Poke' => t('Poke'), + 'Chat' => t('Chat') ); if(array_key_exists($arr['name'],$apps)) From 345f784f670ed8f41bf0435f1cba8a634597b92d Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 22 May 2014 21:24:41 -0700 Subject: [PATCH 119/147] fix search to use in app --- app/search.apd | 3 +++ app/search.png | Bin 0 -> 8544 bytes include/apps.php | 3 ++- include/text.php | 4 ++-- view/css/widgets.css | 7 +++++-- 5 files changed, 12 insertions(+), 5 deletions(-) create mode 100644 app/search.apd create mode 100644 app/search.png diff --git a/app/search.apd b/app/search.apd new file mode 100644 index 000000000..ed48909b4 --- /dev/null +++ b/app/search.apd @@ -0,0 +1,3 @@ +url: $baseurl/search +name: Search +photo: $baseurl/app/search.png diff --git a/app/search.png b/app/search.png new file mode 100644 index 0000000000000000000000000000000000000000..e483280ecbdc85d7632dff04fe9f0053f2609840 GIT binary patch literal 8544 zcmWk!by!mm7rq-cdK)R_7zikn29a{W26Exhg`htt#x(E! z7}GTJGMex&6JNiq_7b-%K1k`|$rkVBcr#UM_|Y-oBJ(KoMMZn`KBBI1;WdAGvKpPP z2F@9M7$Yp7r?ZhM?v!dF<=GdXR|*&o#r55NFMgiXxmgz1Bv!CxF4_gv@q4rnK@?f_o9^N|Jdax6fV%UnZm zX=$l?ie66iXY1Pkec?{l+xN3*X>I+`*vQmuriCMJaN)|*(l<0@xWmu?QIBjKKWO>i?QqD%ouOH?Hks0>4dTv#eGqg6iGPirJ&lUVIvuNJ?g_O_L zH8&q-GJlEC%#?^dJd+7RdCNQbJ$&)v#n$o8Ts(7<|01yaqm@ZhQ**jA;QHSGzO3$S zzRY+MaQUj`@_6p2PX%#c(Wa>VPUmS&VdfSK>*4!lQusKPL|6!kbBs`QgrF^fIET|Z zL>3=QDzj)9uuvm@*|*N|fc$KPw8q-Z(6G?8?LfI_#iOYrbILU5$Nc=ie~HlL3usk) zJG-{b0kOIN*{_q&D+eD}4w~j)O_>{4Ta(N*#QGFp>d*NwJ!yN<)l*P&26eUp5LVrA z9wAmFmnGfb8$<=^1gde&GAlFS=qC8eZ5x}(x&O(fQgbQw+Dq#1o>Z72)%snNptGZO zbqkA|4&{}sqV_}WD$t0%%)lQ%e$etFBL|c9j9XsbHhuh9*U-@XwDIPT3sXNobAd4( zv<})T#+q1Jp(-s9j%8;Tjj<;%s{%0A{R-FZxyjJWKvFi=xZ=E7vavzXre?j&xg9(4 zfl00X&mc+xY@QB&tA#0!^`7gQYG3Rh|L@03pMq)otg8q0KF|xaZi{SBSF`6l*z0n6 zYjHU`*I#489CZUn9Dz@Rkj7ZS!llp{OBc9^jwKZlL@|W(v2H{M85h7Md zY`O9WN1B^ZA3O^WPsm_LtLg9K9H#2Qu|oC^3LswcOgSSXB~TybyX(})>92pyttf=A=??=sMB#mYXj zkYS)hDkEE2uBHTEmugv@6;r!e?#$M!awC!PeN*6jWeEP->WApybSy05acGZDJvINU zqnwrWr`d^a*K@R!LpffK;n-XZ6p{~+s^-GfB2p-X^@#aGROyfI=~>+rJu5fa7KYj& zRFxtgkJIWA!$RHopyl%s4|0S<<0$I-Cx0IW%%!9^p5Nm)$}KOa2JSe|b=dqnJ(#Y2 zI+_SUA^!85ajv1*CtHP9?i6M2{!=M)eJFiScdRM}odBnk=VPNmio93Fp(yY$VMMip zhmK?|{?CG(qj(S&0gJ+YfGsPo2JvN95vI#Y_1MLl!!OtQ zFQuppzo)c%?a93Y3yX`^^667vDJd!C;%}Rk#d^2reUFCI_aZ$x6SW7jO-1Aglf4E{t1x(|e<8oSkcQTm19LXRO9ftlz#%F}?0aX5C2UcxLDN@&TW z+qg3F(T=(gLgkWZJQ$)j3SH_dtC7EiSsx*h7wyeU>!UKAy_&_}Q28HRTwL@)P*Nc! z93OkC@g%(k@h}JUYfVtb#%X~l5C&zwVSDp7(eiRLMdDI|Y$jheBRn0FbL?xM!U#G^HV(wvw}nts$lAAM>QeM6<8b&xQCSxa#zBl zp*W8rPDVz%4fqx_@;6MyUnt)}_c8Y&CtUth_?I(S#>YfkQhLq<`{RvuP5@DOvisxB zPz0cgi^dEpSX^T(8uFSSJ8=$kw+rkHk!-+8gC814gpi|!pb4-*c{tpG=pKAE`fvyp zapPsSB~O(Of)~bxV<2AJ7kXJiOsZ=fi%nw+ijd!@?)jVd@qZDlJjUF=%Xdpoc&MjRpZVGWG0Cyo$C&L5||(svWe;@f3O>gb_=qOfV*R6RmXa1?8X%QIJJ1qqM$P-S>c z^~M(Wd?u1kJnu2AlHw-IV4_kjz$o7gF%EU$mPb`oe4(cL6RF3Dk~}Vej&VROXP*Vn z_7>1Ml7E9R29`(mqYGgQ@IuZG*0CpyBQs=FyAIQY=#auS=F~P(U*Z#hD6*g)2tG5d#1{w9CsNhQ zYnto3smN(?In%JW-Qp%r&|Bgws-j9QoL0l4TS0jHQ^h2#fk41sZei-D{7!f7;E^0*x{VdaGFD}LB&Q< z7BKFB%xN(46DZiF6$3GJj22i+W3M<07(@$W*ei zA+k<2IA^gWd8AMUv%SrC3(puqLFtW#eoIoB6za!g>~p6Se`0CQ2v}lU!yeu2hbTon zL-`0o6sPir3pWI(>E;FRr40F5{7K8k z#1F}SCflerdHNY?e6?q{)(I5Ea1F<(COup_5!2;T-C;L`r>_JRIORrG{1z$~( zT2gT$b|%l9+)@w__m$pQqMY;Z#qe6)a`Ap+bd(ZRM6!}CpoCF?GYFlT#LGaF5eQ+l zas(Bf17tda7?V$(Xr&hjm_{GRpvLf(59fjXSTJ3IoQKe$O2{az4GU)ux(W9ooz7(V zVRrkr5nUU;e~N(Tl`k0%i4-^E!6OmQa}6$Y5dh5ct+0I!+Mue+4oZO`aaUDD2N~=7 zzPpR+gNidd!Ypw;LW$!)ordueoRVRI1RyZ*86z_%gB`Qgr%;mduP_uG2{X2Y`%nJ0 zsu9qbXN<AZu7Zmk2Eg)X|=@tcLNZ`UBpOCDw$>$U1UOo$&1fe0N7g zER3pu9d6(PbV`oE9W>t;?5l__IR+(G(E{h@6p-!E>(AQf*W7^T-a_odB%X3s1hD9T zv2!<5!ev0Zn)&zO>2!_cREu2CH%md_jP!eE@J;4~;_jrsVhTBoA-tPPYAhQOk@B$Q zN?Mof``?*_Ss~#^=^Mr>&fmwMMrmMr|K}%ACkz)lwdmX)pI|?GUhmOQF|C}Vp8z-9^T=eZj6_>aduV|v;0bD()m{*G z@ekOKiC7oC;Q1|zuT+9|m&Ha@D&l?b=2O3bM{K~%TyRkKV-nrm^4JJyk^~x+TfoGD zTb(8qXm#|osxBt)*s~c-y(sHHNMrh2C^8kXwxKMzCH2`}f(_Md8H3Jd}$egj3xdCO}Tb(qmPSOZSlL z=tMl>Awd}3e<9RCsx2LLXC!l1yG%80yuroha}>kI*47(G+!StYIMZvd#%>S*J~XA6 ziilqqIz!$aS+)US)wo4aNKxIAQD%0f_p^+&JcT4ya&@ zS)ElyMN!6tfu4R{-1nNByI)pxUwt*!_u3qqUnj?bbFg6NKM@X})kIzuDgvu(6Xaz6 z#pv3|$jGAGObv++W88=MQRk?e&Lb_bf50jWK|F8yHDu`=&x)tG1%$0p9HJSHU-i@g zt0^#L__+?nDctypE-s(aPHf3R)euP&QPTc)URzt~$2K|htF`wFbSfz(;;Akxf2S-| z3=JoCaI5jm`2V`gXr<7(iq5Oo2z$7^xtMhIAMLrh&!T(>9(nkX+lICSr2D?POW|)i z4P;Koj0Hs=YlnB~*k(Hc>>*_W8LqnS1N!d0Qz*X$Dlu)ASgQ4w0j&p<8N2`~Dd~Q+ z#XoC&dceM}pp$9$tA@I|?dI#Ni_V0>U&_PjqTvh=t#@%wU)}D}FI2rFcIwW*F~%kw zsZy*(qdn3T#v#b-BJ6XSDbJ;bjD3lS>h}3%fpS;BUUeih* zcTjOwM>LHkU9HVbD#a;z%r%^;JUB-3$q})_X>|(Knm+9C0!J?oZ}I96$-|f8Ls5&pV}EmGn%b?Thd$?<#nn$oIbK{}o>&MY zy`EAJ68J0Ikl^rQd7XS)|0};y#k)6?Cec7c~{PbV1_GdZiju8jFfvzIW%>Dgt+K*9DQQDP{8(r74ycQyhbNtV_NcOAl z84H-V(4YM9x@kX}-7cM_6>km-2SF&j4dSY5@W*Muqd!-eC-)_a--S?BxTU#=?&$m! zyOWk-jbS=(NTW`v`zguDXaC95nNR(bC%tntHl29c@ODqF53w=|x$4qnp6-_YxWm>U z-S95Tw$|jo848>%KXQ041zrat9QS;}fBURw8BHxLbku`G!ScAu&0CR=rduyG`#P_d z2?f%xt=|kfvQU`_+mm`!dk=(DP+-Dqs1d3|VGNB506V3phWw1gcBvTBPPoUMx_~4m z*OJz@bz+;`@$0XnuhGjiw`>k1CEONb{%%bbw6|ZzFP={}YW2V*w%SSCKxwAgChq=P z^VQWAzyH~wMd>#!Y0W$QAA71b&hF<7z00VIY4ktp*v;;M23wC=M_NT$%Os+ZiKqb~ zD$2CH2-Vv`QFGSCNfAc8iDO~!c}D~H82F~<>a0VAGA(WD7xp_U?DM!rVt6MOt>GiLH zl#LNq}F!i-Tn3N-@k7+?=;L^!2lyO50V8iZCqr8)Ko?@--FMfw4~G*LQeMx zINd%PePGc5R{A^lE^-4C6Y_$3(KmYk=$J-EhUBcu^b-Y7?N^S8&QjaWrTU+`to(8= zBxBonr_Z-qb`|LV`~Gx1k!<_M&SnD*+eZFx;||{g^5gf>+L}3sqs31dwOy#{Gd^DP z9xCoT^;63WZ}w!L1DFQs-KOAd|MSg{^^+$zY;+6_L(@f{E@wDZ$iI3eZZ;LV?xPd( z=}lH)({gWDs?tyMar$x%4{urxk#rn}u^W^it9{R&JO5}gtednoc?8bzGa!Ys#^_eG z{4TvVdHncdOxypE&fw9b{GuY#zkmPo@$)P4B+al!f0lbQW$xAPart*@Ww&)tt_Cn` z^A>(o`6TwmsBELNrRCCt$c>i>4;l^`K2Z3}9rfFNktX9)13pSkDvPHuzjah8%BxiO zdv1NInE>yMbE<^%G*(;gjQjQL*9l*2bCZA9W44SyIbk}baPj)Hpg#gse^t{FJ!*#yR=P2I)q;>HNf&>L%OlpWb&nGJXiBgVZ?)`KJ1 zEHzdjhKech~6EB*#reOpw-a~lkbiAj2CNr`tWSY*j$ z9NxLtEn5}cvLG?r0+MDILr>-OfB7ujSNk9e43P;vx^0NjNiK@2!Z^7{6Xwd2&t(y^ z?e0IjQqe4?CkvbHa50@nVp^Ow)VXF>xFNX*WQ!W=l8+dj$sj} zh>eY1JUwpg^qVbjT##x7rjyPo~bi}sC~t#kM` zva`1rP*Yy6nXIQ;{LO$q6^z2#nmrf=J)R_aAD{c6bSq__ougI!gNTgAmpMmuvX7+g zwtmqP=*+B?$8wKy;rF49N=O$kXF*e~4xbJ>k@?>o!(dH@b@lX(dyBqDicXVdpThZ6 z6V97}CZ8jFwt#;JRhTUcaGA3>0j3lALRsLgqFj!OlN0~>`8n9(Bn;bw0+)6Nh@+EG ztfuBLf(tFijmxKQfkc`M0R z$Fw94S1pb(rO&c&hh8)tbPo&eJ@+VC^|G2QGcj&-WoHyHlQhElFMj=M-PqW89a?28 zlKv^CkPq|0;P)$Z#?AP?c96V36)w;^brp_2_$Fkp+#Qqm>UBUhXV$L1P8MR&42E82OLoaipQYCX6gT z$KG3rFtYIbOO(E^^FZu$d-08sCEts%H|7)qVGtwgFL5QrI94oXb{WtEz5*iSa^!?b z)1-(5mpP>uPgHP}>cc)IRrJI6MeP1_+;^+Iv4R8-CW!Vk;pabEYGG+AD~`8-eoHZ@ z-)En&jB1wWR_c&q&dO-K6e9P_vlsco$~f+GeTq7;cXe=fHZwOgd{r&nyScTcC~Om1 z7iu=8gkfYIvW|E*bmQr}>gl7lJ`Vp=D;JZ=Dh-411O4aBH$N;Wd57s6-iAbn%{;zU z#`>GIoEf=HMWL>uLI(cZ zv8gE#Tp63qc5M+p2O9c`8r{`lKR;7j1s$H?mMF+WCt4)i5WHMZX((e+WW}KR6t*qw`8I?G#%MsyUKI} zdk-%FTy~$j0)(M-QSE+P5!U~n4hpXzAb-^}zLTP0W5YEtI7p^$1+w6dSI1G7{sMn? zk`=vIQySG?mzdO0)7R$j@SA3(Lxq-)yJ3;~Xg<%#jc34pKo&uH`MrrFV2rO;L1c~m3FQCx5r;nxee7u@B$-}u#C4T73$Fyu-41aj%)Z<~Jxii(N^ zS#83GjVVH*%Lh$nUO!$P#=7|igN*T{-f?0@ux(#q-+u+mK{~HjM8kA3E+qVpB}~Z? zR#3)?r7^S+n28z^%;H6ailrnb7^w8600U@({t(-Vj36mN&V32XB>F%U#2x+^VQ}aS z7A|V~hXv{3-n=_ek#i{-#_&N9WfBOC4`uqlbiDWYe95Gj@pzxM0_&+kei9WHdrjI(E_ zp5rjM%N-T(oz{&|G&D4PpR52PBu`SFnShGL*?`eAu;nx?e)oL9{O;Ymp|q_$3f+AB z?jG#aTu7M^LlH4*R??RoJZ}YRDxQsePz~i*YtV>H?^9PmC7W^IYhj)NF|Fu>ezCt3 zsOXl0>)HQyy;qkP9$=U8bGvr5mr}3|E@fISxL9S?%@v7*R%~4vPB8n#(}~}@ETrP+ zxarC&m8x!RYU(^T{wSiSfEMe7obds%2!7txqq6~DxkYiG!&UM= zjyD({j-1eF0DzGG_bq^ScFangG|j75ue^VMD1M)x9|XQZk6h=Q4n~YIMY5wdgEjjn z0wn`v(+lylhFzN@SmNCL4gEcZXG1I5sb$Zp`5*;;l65JktDaz{#YN^ezunB=DOJ7=hri>1qj;=Ee4pM!W t('Mail'), 'Mood' => t('Mood'), 'Poke' => t('Poke'), - 'Chat' => t('Chat') + 'Chat' => t('Chat'), + 'Search' => t('Search') ); if(array_key_exists($arr['name'],$apps)) diff --git a/include/text.php b/include/text.php index 0e136fe8e..b249c9767 100755 --- a/include/text.php +++ b/include/text.php @@ -810,9 +810,9 @@ function search($s,$id='search-box',$url='/search',$save = false) { $o = '
    '; $o .= '
    '; $o .= ''; - $o .= ''; + $o .= ''; if(feature_enabled(local_user(),'savedsearch')) - $o .= ''; + $o .= ''; $o .= '
    '; return $o; } diff --git a/view/css/widgets.css b/view/css/widgets.css index f42ec65ee..8607cb562 100644 --- a/view/css/widgets.css +++ b/view/css/widgets.css @@ -45,8 +45,11 @@ margin: 10px 0 7px 0; } -#search-save { - margin: 10px 0 7px 5px; +#netsearch-box #search-save { + margin: 9px 0 7px 6px; +} +.search-save { + margin: 7px 0 7px 7px; } .saved-search-li { From dca11210bdcda4a4c16955afc528373ebedd7c10 Mon Sep 17 00:00:00 2001 From: Alexandre Hannud Abdo Date: Fri, 23 May 2014 07:56:19 -0300 Subject: [PATCH 120/147] update pt-br translation --- view/pt-br/messages.po | 9327 ++++++++++++++++++++-------------------- view/pt-br/strings.php | 2261 +++++----- 2 files changed, 5740 insertions(+), 5848 deletions(-) diff --git a/view/pt-br/messages.po b/view/pt-br/messages.po index fd0e0bcc0..26ef9205a 100644 --- a/view/pt-br/messages.po +++ b/view/pt-br/messages.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: Red Matrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-16 00:02-0700\n" -"PO-Revision-Date: 2014-05-20 06:23+0000\n" +"POT-Creation-Date: 2014-05-21 05:30-0300\n" +"PO-Revision-Date: 2014-05-23 10:49+0000\n" "Last-Translator: solstag \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/red-matrix/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -25,46 +25,510 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../include/dba/dba_driver.php:50 +#: ../../include/follow.php:23 +msgid "Channel is blocked on this site." +msgstr "O canal está bloqueado neste site." + +#: ../../include/follow.php:28 +msgid "Channel location missing." +msgstr "A localização do canal foi perdida" + +#: ../../include/follow.php:54 +msgid "Response from remote channel was incomplete." +msgstr "A resposta do canal remoto está incompleta." + +#: ../../include/follow.php:85 +msgid "Channel was deleted and no longer exists." +msgstr "O canal foi deletado e não existe mais." + +#: ../../include/follow.php:132 +msgid "Channel discovery failed." +msgstr "A descoberta de canais falhou." + +#: ../../include/follow.php:149 +msgid "local account not found." +msgstr "a conta local não foi encontrada." + +#: ../../include/follow.php:158 +msgid "Cannot connect to yourself." +msgstr "Não é possível conectar-se consigo mesmo." + +#: ../../include/reddav.php:1045 +msgid "Edit File properties" +msgstr "Editar propriedades do arquivo" + +#: ../../include/event.php:11 ../../include/bb2diaspora.php:433 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: ../../include/event.php:20 ../../include/bb2diaspora.php:439 +msgid "Starts:" +msgstr "Início:" + +#: ../../include/event.php:30 ../../include/bb2diaspora.php:447 +msgid "Finishes:" +msgstr "Fim:" + +#: ../../include/event.php:40 ../../include/bb2diaspora.php:455 +#: ../../include/identity.php:726 ../../mod/dirprofile.php:105 +#: ../../mod/directory.php:156 ../../mod/events.php:474 +msgid "Location:" +msgstr "Localização:" + +#: ../../include/widgets.php:29 ../../include/contact_widgets.php:92 +msgid "Categories" +msgstr "Categorias" + +#: ../../include/widgets.php:79 +msgid "App Category" +msgstr "Categoria de aplicativos" + +#: ../../include/widgets.php:80 +msgid "System" +msgstr "Sistema" + +#: ../../include/widgets.php:81 ../../include/conversation.php:1415 +msgid "Personal" +msgstr "Pessoal" + +#: ../../include/widgets.php:127 ../../include/widgets.php:167 +#: ../../include/Contact.php:107 ../../include/identity.php:675 +#: ../../mod/dirprofile.php:164 ../../mod/directory.php:183 +#: ../../mod/suggest.php:51 ../../mod/match.php:62 +msgid "Connect" +msgstr "Conectar" + +#: ../../include/widgets.php:129 ../../mod/suggest.php:53 +msgid "Ignore/Hide" +msgstr "Ignorar/Ocultar" + +#: ../../include/widgets.php:135 ../../mod/connections.php:266 +msgid "Suggestions" +msgstr "Sugestões" + +#: ../../include/widgets.php:136 +msgid "See more..." +msgstr "Veja mais..." + +#: ../../include/widgets.php:158 #, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'" +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Você tem %1$.0f de %2$.0f conexões permitidas." -#: ../../include/photo/photo_driver.php:643 ../../include/photos.php:51 -#: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 -#: ../../mod/profile_photo.php:421 ../../mod/photos.php:91 -#: ../../mod/photos.php:655 ../../mod/photos.php:677 -msgid "Profile Photos" -msgstr "Fotos do perfil" +#: ../../include/widgets.php:164 +msgid "Add New Connection" +msgstr "Adicionar nova conexão" -#: ../../include/apps.php:107 ../../include/nav.php:158 -msgid "Matrix" -msgstr "Matriz" +#: ../../include/widgets.php:165 +msgid "Enter the channel address" +msgstr "Digite o endereço do canal" -#: ../../include/apps.php:107 ../../include/nav.php:161 -msgid "Channel Home" -msgstr "Página inicial do canal" +#: ../../include/widgets.php:166 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Por exemplo: joao@exemplo.com, http://exemplo.com/maria" -#: ../../include/apps.php:107 ../../include/identity.php:942 -#: ../../include/identity.php:1031 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Perfil" +#: ../../include/widgets.php:183 +msgid "Notes" +msgstr "Notas" -#: ../../include/apps.php:108 ../../include/conversation.php:1501 -#: ../../include/nav.php:84 ../../mod/fbrowser.php:25 +#: ../../include/widgets.php:185 ../../include/text.php:815 +#: ../../include/text.php:829 ../../mod/filer.php:50 ../../mod/rbmark.php:28 +#: ../../mod/rbmark.php:98 +msgid "Save" +msgstr "Salvar" + +#: ../../include/widgets.php:255 +msgid "Remove term" +msgstr "Remover termo" + +#: ../../include/widgets.php:264 ../../include/features.php:52 +msgid "Saved Searches" +msgstr "Pesquisas salvas" + +#: ../../include/widgets.php:265 ../../include/group.php:290 +msgid "add" +msgstr "adicionar" + +#: ../../include/widgets.php:295 ../../include/features.php:66 +#: ../../include/contact_widgets.php:58 +msgid "Saved Folders" +msgstr "Pastas salvas" + +#: ../../include/widgets.php:298 ../../include/contact_widgets.php:61 +#: ../../include/contact_widgets.php:95 +msgid "Everything" +msgstr "Tudo" + +#: ../../include/widgets.php:334 +msgid "Archives" +msgstr "Arquivos" + +#: ../../include/widgets.php:396 +msgid "Refresh" +msgstr "Atualizar" + +#: ../../include/widgets.php:397 ../../mod/connedit.php:428 +msgid "Me" +msgstr "Eu" + +#: ../../include/widgets.php:398 ../../mod/connedit.php:430 +msgid "Best Friends" +msgstr "Melhores amigos" + +#: ../../include/widgets.php:399 ../../include/profile_selectors.php:42 +#: ../../include/identity.php:342 ../../mod/connedit.php:431 +msgid "Friends" +msgstr "Amigos" + +#: ../../include/widgets.php:400 +msgid "Co-workers" +msgstr "Colegas de trabalho" + +#: ../../include/widgets.php:401 ../../mod/connedit.php:432 +msgid "Former Friends" +msgstr "Amigos afastados" + +#: ../../include/widgets.php:402 ../../mod/connedit.php:433 +msgid "Acquaintances" +msgstr "Conhecidos" + +#: ../../include/widgets.php:403 +msgid "Everybody" +msgstr "Todos" + +#: ../../include/widgets.php:435 +msgid "Account settings" +msgstr "Configurações da conta" + +#: ../../include/widgets.php:441 +msgid "Channel settings" +msgstr "Configurações do canal" + +#: ../../include/widgets.php:447 +msgid "Additional features" +msgstr "Recursos adicionais" + +#: ../../include/widgets.php:453 +msgid "Feature settings" +msgstr "Configurações dos recursos" + +#: ../../include/widgets.php:459 +msgid "Display settings" +msgstr "Configurações de exibição" + +#: ../../include/widgets.php:465 +msgid "Connected apps" +msgstr "Aplicações conectadas" + +#: ../../include/widgets.php:471 +msgid "Export channel" +msgstr "Exportar o canal" + +#: ../../include/widgets.php:483 +msgid "Automatic Permissions (Advanced)" +msgstr "Permissões automáticas (avançado)" + +#: ../../include/widgets.php:493 +msgid "Premium Channel Settings" +msgstr "Configurações de canal premium" + +#: ../../include/widgets.php:502 ../../include/features.php:43 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "Fontes do canal" + +#: ../../include/widgets.php:513 ../../include/nav.php:186 +#: ../../mod/admin.php:976 ../../mod/admin.php:1181 +msgid "Settings" +msgstr "Configurações" + +#: ../../include/widgets.php:530 +msgid "Check Mail" +msgstr "Checar mensagens" + +#: ../../include/widgets.php:535 ../../include/nav.php:177 +msgid "New Message" +msgstr "Nova mensagem" + +#: ../../include/widgets.php:611 +msgid "Chat Rooms" +msgstr "Salas de bate-papo" + +#: ../../include/widgets.php:629 +msgid "Bookmarked Chatrooms" +msgstr "Salas de bate-papo guardadas" + +#: ../../include/widgets.php:647 +msgid "Suggested Chatrooms" +msgstr "Salas de bate-papo sugeridas" + +#: ../../include/api.php:1016 +msgid "Public Timeline" +msgstr "Linha do tempo pública" + +#: ../../include/nav.php:77 ../../include/nav.php:96 ../../boot.php:1450 +msgid "Logout" +msgstr "Sair" + +#: ../../include/nav.php:77 ../../include/nav.php:96 +msgid "End this session" +msgstr "Encerrar essa sessão" + +#: ../../include/nav.php:80 ../../include/nav.php:130 +msgid "Home" +msgstr "Ver canal" + +#: ../../include/nav.php:80 +msgid "Your posts and conversations" +msgstr "Suas publicações e conversas" + +#: ../../include/nav.php:81 ../../include/conversation.php:937 +#: ../../mod/connedit.php:351 ../../mod/connedit.php:465 +msgid "View Profile" +msgstr "Ver perfil" + +#: ../../include/nav.php:81 +msgid "Your profile page" +msgstr "A página do seu perfil" + +#: ../../include/nav.php:83 +msgid "Edit Profiles" +msgstr "Editar perfis" + +#: ../../include/nav.php:83 +msgid "Manage/Edit profiles" +msgstr "Administrar/Editar perfis" + +#: ../../include/nav.php:84 ../../include/conversation.php:1501 +#: ../../include/apps.php:110 ../../mod/fbrowser.php:25 msgid "Photos" msgstr "Fotos" -#: ../../include/apps.php:108 ../../include/conversation.php:1532 -#: ../../include/nav.php:87 ../../include/nav.php:180 ../../mod/events.php:366 +#: ../../include/nav.php:84 +msgid "Your photos" +msgstr "Suas fotos" + +#: ../../include/nav.php:85 ../../include/conversation.php:1510 +#: ../../mod/fbrowser.php:114 +msgid "Files" +msgstr "Arquivos" + +#: ../../include/nav.php:85 +msgid "Your files" +msgstr "Seus arquivos" + +#: ../../include/nav.php:86 +msgid "Chat" +msgstr "Bate-papo" + +#: ../../include/nav.php:86 +msgid "Your chatrooms" +msgstr "Suas salas de bate-papo" + +#: ../../include/nav.php:87 ../../include/nav.php:180 +#: ../../include/conversation.php:1532 ../../include/apps.php:111 +#: ../../mod/events.php:366 msgid "Events" msgstr "Eventos" -#: ../../include/apps.php:108 ../../include/nav.php:147 +#: ../../include/nav.php:87 +msgid "Your events" +msgstr "Seus eventos" + +#: ../../include/nav.php:88 ../../include/conversation.php:1540 +msgid "Bookmarks" +msgstr "Links guardados" + +#: ../../include/nav.php:88 +msgid "Your bookmarks" +msgstr "Seus links guardados" + +#: ../../include/nav.php:90 ../../include/conversation.php:1551 +#: ../../mod/webpages.php:79 +msgid "Webpages" +msgstr "Páginas web" + +#: ../../include/nav.php:90 +msgid "Your webpages" +msgstr "Suas páginas web" + +#: ../../include/nav.php:94 ../../boot.php:1451 +msgid "Login" +msgstr "Entrar" + +#: ../../include/nav.php:94 +msgid "Sign in" +msgstr "Entrar" + +#: ../../include/nav.php:111 +#, php-format +msgid "%s - click to logout" +msgstr "%s - clique para sair" + +#: ../../include/nav.php:116 +msgid "Click to authenticate to your home hub" +msgstr "Clique para se autenticar com seu hub de origem" + +#: ../../include/nav.php:130 +msgid "Home Page" +msgstr "Página inicial" + +#: ../../include/nav.php:134 ../../mod/register.php:206 ../../boot.php:1427 +msgid "Register" +msgstr "Registrar" + +#: ../../include/nav.php:134 +msgid "Create an account" +msgstr "Criar uma conta" + +#: ../../include/nav.php:139 ../../include/apps.php:113 ../../mod/help.php:60 +#: ../../mod/help.php:65 +msgid "Help" +msgstr "Ajuda" + +#: ../../include/nav.php:139 +msgid "Help and documentation" +msgstr "Ajuda e documentação" + +#: ../../include/nav.php:142 ../../mod/apps.php:17 ../../mod/apps.php:35 +msgid "Apps" +msgstr "Aplicações" + +#: ../../include/nav.php:142 +msgid "Addon applications, utilities, games" +msgstr "Aplicações adicionais, utilitários, jogos" + +#: ../../include/nav.php:144 ../../include/text.php:813 +#: ../../include/text.php:827 ../../mod/search.php:29 +msgid "Search" +msgstr "Pesquisar" + +#: ../../include/nav.php:144 +msgid "Search site content" +msgstr "Pesquisar o conteúdo do site" + +#: ../../include/nav.php:147 ../../include/apps.php:112 #: ../../mod/directory.php:210 msgid "Directory" msgstr "Diretório" +#: ../../include/nav.php:147 +msgid "Channel Locator" +msgstr "Localizador de canais" + +#: ../../include/nav.php:158 ../../include/apps.php:107 +msgid "Matrix" +msgstr "Matriz" + +#: ../../include/nav.php:158 +msgid "Your matrix" +msgstr "Sua matriz" + +#: ../../include/nav.php:159 +msgid "Mark all matrix notifications seen" +msgstr "Marcar todas as notificações da matriz como vistas" + +#: ../../include/nav.php:161 ../../include/apps.php:108 +msgid "Channel Home" +msgstr "Página inicial do canal" + +#: ../../include/nav.php:161 +msgid "Channel home" +msgstr "Página inicial do canal" + +#: ../../include/nav.php:162 +msgid "Mark all channel notifications seen" +msgstr "Marcar todas as notificações de canais como vistas" + +#: ../../include/nav.php:165 ../../include/nav.php:188 +#: ../../mod/connections.php:385 +msgid "Connections" +msgstr "Conexões" + +#: ../../include/nav.php:168 +msgid "Notices" +msgstr "Notificações" + +#: ../../include/nav.php:168 +msgid "Notifications" +msgstr "Notificações" + +#: ../../include/nav.php:169 +msgid "See all notifications" +msgstr "Ver todas as notificações" + +#: ../../include/nav.php:170 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "Marcar todas as notificações de sistema como vistas" + +#: ../../include/nav.php:172 +msgid "Mail" +msgstr "Mensagens" + +#: ../../include/nav.php:172 +msgid "Private mail" +msgstr "Mensagens privadas" + +#: ../../include/nav.php:173 +msgid "See all private messages" +msgstr "Ver todas as mensagens privadas" + +#: ../../include/nav.php:174 +msgid "Mark all private messages seen" +msgstr "Marcar todas as mensagens privadas como vistas" + +#: ../../include/nav.php:175 +msgid "Inbox" +msgstr "Recebidas" + +#: ../../include/nav.php:176 +msgid "Outbox" +msgstr "Enviadas" + +#: ../../include/nav.php:180 +msgid "Event Calendar" +msgstr "Agenda de eventos" + +#: ../../include/nav.php:181 +msgid "See all events" +msgstr "Ver todos os eventos" + +#: ../../include/nav.php:182 +msgid "Mark all events seen" +msgstr "Marcar todos os eventos como vistos" + +#: ../../include/nav.php:184 +msgid "Channel Select" +msgstr "Seleção de canal" + +#: ../../include/nav.php:184 +msgid "Manage Your Channels" +msgstr "Gerencie os seus canais" + +#: ../../include/nav.php:186 +msgid "Account/Channel Settings" +msgstr "Configurações da conta/canal" + +#: ../../include/nav.php:188 +msgid "Manage/Edit Friends and Connections" +msgstr "Gerenciar/editar os amigos e as conexões" + +#: ../../include/nav.php:195 ../../mod/admin.php:117 +msgid "Admin" +msgstr "Admin" + +#: ../../include/nav.php:195 +msgid "Site Setup and Configuration" +msgstr "Configuração do site" + +#: ../../include/nav.php:220 +msgid "Nothing new here" +msgstr "Nada de novo aqui" + +#: ../../include/nav.php:225 +msgid "Please wait..." +msgstr "Por favor, aguarde..." + #: ../../include/oembed.php:171 msgid "Embedded content" msgstr "Conteúdo incorporado" @@ -73,301 +537,566 @@ msgstr "Conteúdo incorporado" msgid "Embedding disabled" msgstr "A incorporação está desabilitada" -#: ../../include/notify.php:23 -msgid "created a new post" -msgstr "criou uma nova publicação" +#: ../../include/bbcode.php:128 ../../include/bbcode.php:642 +#: ../../include/bbcode.php:645 ../../include/bbcode.php:650 +#: ../../include/bbcode.php:653 ../../include/bbcode.php:656 +#: ../../include/bbcode.php:659 ../../include/bbcode.php:664 +#: ../../include/bbcode.php:667 ../../include/bbcode.php:672 +#: ../../include/bbcode.php:675 ../../include/bbcode.php:678 +#: ../../include/bbcode.php:681 +msgid "Image/photo" +msgstr "Imagem/foto" -#: ../../include/notify.php:24 +#: ../../include/bbcode.php:163 ../../include/bbcode.php:692 +msgid "Encrypted content" +msgstr "Conteúdo criptografado" + +#: ../../include/bbcode.php:179 +msgid "QR code" +msgstr "código QR" + +#: ../../include/bbcode.php:228 #, php-format -msgid "commented on %s's post" -msgstr "comentou a publicação de %s" +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s escreveu a seguinte %2$s %3$s" -#: ../../include/Contact.php:107 ../../include/identity.php:675 -#: ../../include/widgets.php:127 ../../include/widgets.php:167 -#: ../../mod/directory.php:183 ../../mod/dirprofile.php:164 -#: ../../mod/suggest.php:51 ../../mod/match.php:62 -msgid "Connect" -msgstr "Conectar" +#: ../../include/bbcode.php:230 +msgid "post" +msgstr "publicação" -#: ../../include/Contact.php:123 -msgid "New window" -msgstr "Nova janela" +#: ../../include/bbcode.php:610 ../../include/bbcode.php:630 +msgid "$1 wrote:" +msgstr "$1 escreveu:" -#: ../../include/Contact.php:124 -msgid "Open the selected location in a different window or browser tab" -msgstr "Abre a localização selecionada em outra aba ou janela" +#: ../../include/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 "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes poderão ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente." -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Nova página" +#: ../../include/group.php:223 +msgid "Default privacy group for new contacts" +msgstr "Grupo de privacidade padrão para novos contatos" -#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../include/ItemObject.php:96 ../../include/menu.php:42 -#: ../../mod/blocks.php:94 ../../mod/connections.php:392 -#: ../../mod/settings.php:577 ../../mod/editblock.php:111 -#: ../../mod/editlayout.php:106 ../../mod/editpost.php:112 -#: ../../mod/editwebpage.php:143 ../../mod/filestorage.php:174 -#: ../../mod/thing.php:235 ../../mod/layouts.php:112 ../../mod/menu.php:59 -#: ../../mod/webpages.php:119 -msgid "Edit" -msgstr "Editar" +#: ../../include/group.php:242 ../../mod/admin.php:762 +msgid "All Channels" +msgstr "Todos os canais" -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:97 -#: ../../mod/layouts.php:116 ../../mod/webpages.php:122 -msgid "View" -msgstr "Ver" +#: ../../include/group.php:264 +msgid "edit" +msgstr "editar" -#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:570 -#: ../../include/conversation.php:1088 ../../mod/editblock.php:141 -#: ../../mod/editlayout.php:135 ../../mod/editpost.php:140 -#: ../../mod/editwebpage.php:175 ../../mod/webpages.php:123 -#: ../../mod/photos.php:994 +#: ../../include/group.php:285 +msgid "Collections" +msgstr "Coleções" + +#: ../../include/group.php:286 +msgid "Edit collection" +msgstr "Editar coleção" + +#: ../../include/group.php:287 +msgid "Create a new collection" +msgstr "Criar uma nova coleção" + +#: ../../include/group.php:288 +msgid "Channels not in any collection" +msgstr "Canais que não estão em nenhuma coleção" + +#: ../../include/conversation.php:117 ../../include/text.php:1705 +#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 +#: ../../mod/tagger.php:45 ../../mod/like.php:111 +msgid "photo" +msgstr "foto" + +#: ../../include/conversation.php:120 ../../include/text.php:1708 +#: ../../mod/tagger.php:49 +msgid "event" +msgstr "evento" + +#: ../../include/conversation.php:123 +msgid "channel" +msgstr "canal" + +#: ../../include/conversation.php:145 ../../include/text.php:1711 +#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 +#: ../../mod/tagger.php:53 ../../mod/like.php:111 +msgid "status" +msgstr "status" + +#: ../../include/conversation.php:147 ../../include/text.php:1713 +#: ../../mod/tagger.php:55 +msgid "comment" +msgstr "comentário" + +#: ../../include/conversation.php:161 ../../mod/like.php:142 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s gosta de %3$s de %2$s" + +#: ../../include/conversation.php:164 ../../mod/like.php:144 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s não gosta de %3$s de %2$s" + +#: ../../include/conversation.php:201 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s agora está conectado com %2$s" + +#: ../../include/conversation.php:236 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s cutucou %2$s" + +#: ../../include/conversation.php:240 ../../include/text.php:895 +msgid "poked" +msgstr "cutucado" + +#: ../../include/conversation.php:258 ../../mod/mood.php:63 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s atualmente está %2$s" + +#: ../../include/conversation.php:631 ../../include/ItemObject.php:114 +msgid "Select" +msgstr "Selecionar" + +#: ../../include/conversation.php:632 ../../include/ItemObject.php:108 +#: ../../include/apps.php:156 ../../mod/group.php:176 ../../mod/thing.php:236 +#: ../../mod/filestorage.php:175 ../../mod/connedit.php:398 +#: ../../mod/settings.php:578 ../../mod/photos.php:1043 +#: ../../mod/admin.php:757 ../../mod/admin.php:886 +msgid "Delete" +msgstr "Excluir" + +#: ../../include/conversation.php:639 ../../include/ItemObject.php:89 +#: ../../mod/photos.php:846 +msgid "Private Message" +msgstr "Mensagem privada" + +#: ../../include/conversation.php:646 ../../include/ItemObject.php:182 +msgid "Message is verified" +msgstr "A mensagem foi verificada" + +#: ../../include/conversation.php:666 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Ver o perfil de %s's @ %s" + +#: ../../include/conversation.php:680 +msgid "Categories:" +msgstr "Categorias:" + +#: ../../include/conversation.php:681 +msgid "Filed under:" +msgstr "Armazenado sob:" + +#: ../../include/conversation.php:690 ../../include/ItemObject.php:247 +#, php-format +msgid " from %s" +msgstr "de %s" + +#: ../../include/conversation.php:693 ../../include/ItemObject.php:250 +#, php-format +msgid "last edited: %s" +msgstr "última edição: %s" + +#: ../../include/conversation.php:694 ../../include/ItemObject.php:251 +#, php-format +msgid "Expires: %s" +msgstr "Expira: %s" + +#: ../../include/conversation.php:709 +msgid "View in context" +msgstr "Ver no contexto" + +#: ../../include/conversation.php:711 ../../include/conversation.php:1127 +#: ../../include/ItemObject.php:290 ../../mod/editlayout.php:115 +#: ../../mod/editpost.php:121 ../../mod/photos.php:974 +#: ../../mod/editblock.php:120 ../../mod/editwebpage.php:152 +#: ../../mod/mail.php:222 ../../mod/mail.php:336 +msgid "Please wait" +msgstr "Por favor, espere" + +#: ../../include/conversation.php:838 +msgid "remove" +msgstr "remover" + +#: ../../include/conversation.php:842 +msgid "Loading..." +msgstr "Carregando..." + +#: ../../include/conversation.php:843 +msgid "Delete Selected Items" +msgstr "Excluir os itens selecionados" + +#: ../../include/conversation.php:934 +msgid "View Source" +msgstr "Ver a fonte" + +#: ../../include/conversation.php:935 +msgid "Follow Thread" +msgstr "Acompanhar a discussão" + +#: ../../include/conversation.php:936 +msgid "View Status" +msgstr "Ver status" + +#: ../../include/conversation.php:938 +msgid "View Photos" +msgstr "Ver fotos" + +#: ../../include/conversation.php:939 +msgid "Matrix Activity" +msgstr "Atividade na matriz" + +#: ../../include/conversation.php:940 +msgid "Edit Contact" +msgstr "Editar contato" + +#: ../../include/conversation.php:941 +msgid "Send PM" +msgstr "Enviar MP" + +#: ../../include/conversation.php:942 +msgid "Poke" +msgstr "Cutucar" + +#: ../../include/conversation.php:998 +#, php-format +msgid "%s likes this." +msgstr "%s gostou disso." + +#: ../../include/conversation.php:998 +#, php-format +msgid "%s doesn't like this." +msgstr "%s não gostou disso." + +#: ../../include/conversation.php:1002 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "" +msgstr[1] "%2$d pessoas gostaram disso." + +#: ../../include/conversation.php:1004 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "" +msgstr[1] "%2$d pessoas não gostaram disso." + +#: ../../include/conversation.php:1010 +msgid "and" +msgstr "e" + +#: ../../include/conversation.php:1013 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] ", e mais %d outras pessoas" + +#: ../../include/conversation.php:1014 +#, php-format +msgid "%s like this." +msgstr "%s gostou disso." + +#: ../../include/conversation.php:1014 +#, php-format +msgid "%s don't like this." +msgstr "%s não gostou disso." + +#: ../../include/conversation.php:1071 +msgid "Visible to everybody" +msgstr "Visível para todos" + +#: ../../include/conversation.php:1072 ../../mod/mail.php:171 +#: ../../mod/mail.php:269 +msgid "Please enter a link URL:" +msgstr "Por favor, digite uma URL:" + +#: ../../include/conversation.php:1073 +msgid "Please enter a video link/URL:" +msgstr "Por favor, digite o link/URL do vídeo:" + +#: ../../include/conversation.php:1074 +msgid "Please enter an audio link/URL:" +msgstr "Por favor, digite o link/URL do áudio:" + +#: ../../include/conversation.php:1075 +msgid "Tag term:" +msgstr "Etiqueta:" + +#: ../../include/conversation.php:1076 ../../mod/filer.php:49 +msgid "Save to Folder:" +msgstr "Salvar para a pasta:" + +#: ../../include/conversation.php:1077 +msgid "Where are you right now?" +msgstr "Onde você está agora?" + +#: ../../include/conversation.php:1078 ../../mod/editpost.php:52 +#: ../../mod/mail.php:172 ../../mod/mail.php:270 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Expira YYYY-MM-DD HH:MM" + +#: ../../include/conversation.php:1088 ../../include/ItemObject.php:588 +#: ../../include/page_widgets.php:40 ../../mod/editlayout.php:135 +#: ../../mod/webpages.php:123 ../../mod/editpost.php:140 +#: ../../mod/photos.php:994 ../../mod/editblock.php:141 +#: ../../mod/editwebpage.php:175 msgid "Preview" msgstr "Pré-visualizar" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:124 -msgid "Actions" -msgstr "Ações" +#: ../../include/conversation.php:1102 ../../mod/photos.php:973 +#: ../../mod/layouts.php:113 +msgid "Share" +msgstr "Compartilhar" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:125 -msgid "Page Link" -msgstr "Link da página" +#: ../../include/conversation.php:1104 ../../mod/editwebpage.php:139 +msgid "Page link title" +msgstr "Título do link da página" -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:126 -msgid "Title" -msgstr "Título" +#: ../../include/conversation.php:1107 +msgid "Post as" +msgstr "Publicar como" -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:127 -msgid "Created" -msgstr "Criado" +#: ../../include/conversation.php:1108 ../../mod/editlayout.php:107 +#: ../../mod/editpost.php:113 ../../mod/editblock.php:112 +#: ../../mod/editwebpage.php:144 ../../mod/mail.php:219 ../../mod/mail.php:332 +msgid "Upload photo" +msgstr "Enviar foto" -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:128 -msgid "Edited" -msgstr "Editado" +#: ../../include/conversation.php:1109 +msgid "upload photo" +msgstr "enviar foto" -#: ../../include/permissions.php:13 -msgid "Can view my \"public\" stream and posts" -msgstr "Pode ver meus fluxo e publicações \"públicos\"" +#: ../../include/conversation.php:1110 ../../mod/editlayout.php:108 +#: ../../mod/editpost.php:114 ../../mod/editblock.php:113 +#: ../../mod/editwebpage.php:145 ../../mod/mail.php:220 ../../mod/mail.php:333 +msgid "Attach file" +msgstr "Anexar arquivo" -#: ../../include/permissions.php:14 -msgid "Can view my \"public\" channel profile" -msgstr "Pode ver o perfil \"público\" do meu canal" +#: ../../include/conversation.php:1111 +msgid "attach file" +msgstr "anexar arquivo" -#: ../../include/permissions.php:15 -msgid "Can view my \"public\" photo albums" -msgstr "Pode ver meus álbuns de fotos \"públicos\"" +#: ../../include/conversation.php:1112 ../../mod/editlayout.php:109 +#: ../../mod/editpost.php:115 ../../mod/editblock.php:114 +#: ../../mod/editwebpage.php:146 ../../mod/mail.php:221 ../../mod/mail.php:334 +msgid "Insert web link" +msgstr "Inserir link web" -#: ../../include/permissions.php:16 -msgid "Can view my \"public\" address book" -msgstr "Pode ver meu livro de endereços \"público\"" +#: ../../include/conversation.php:1113 +msgid "web link" +msgstr "link web" -#: ../../include/permissions.php:17 -msgid "Can view my \"public\" file storage" -msgstr "Pode ver meu armazenamento de arquivos \"público\"" +#: ../../include/conversation.php:1114 +msgid "Insert video link" +msgstr "Inserir link de vídeo" -#: ../../include/permissions.php:18 -msgid "Can view my \"public\" pages" -msgstr "Pode ver minhas páginas \"públicas\"" +#: ../../include/conversation.php:1115 +msgid "video link" +msgstr "link de vídeo" -#: ../../include/permissions.php:21 -msgid "Can send me their channel stream and posts" -msgstr "Pode me enviar seu fluxo e publicações" +#: ../../include/conversation.php:1116 +msgid "Insert audio link" +msgstr "Inserir link de áudio" -#: ../../include/permissions.php:22 -msgid "Can post on my channel page (\"wall\")" -msgstr "Pode publicar na página do meu canal (\"mural\")" +#: ../../include/conversation.php:1117 +msgid "audio link" +msgstr "link de áudio" -#: ../../include/permissions.php:23 -msgid "Can comment on my posts" -msgstr "Pode comentar minhas publicações" +#: ../../include/conversation.php:1118 ../../mod/editlayout.php:113 +#: ../../mod/editpost.php:119 ../../mod/editblock.php:118 +#: ../../mod/editwebpage.php:150 +msgid "Set your location" +msgstr "Definir sua localização" -#: ../../include/permissions.php:24 -msgid "Can send me private mail messages" -msgstr "Pode me enviar mensagens privadas" +#: ../../include/conversation.php:1119 +msgid "set location" +msgstr "definir localização" -#: ../../include/permissions.php:25 -msgid "Can post photos to my photo albums" -msgstr "Pode publicar fotos nos meus álbuns de fotos" +#: ../../include/conversation.php:1120 ../../mod/editlayout.php:114 +#: ../../mod/editpost.php:120 ../../mod/editblock.php:119 +#: ../../mod/editwebpage.php:151 +msgid "Clear browser location" +msgstr "Limpar a localização do navegador" -#: ../../include/permissions.php:26 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Pode encaminhar para todos os contatos do meu canal via @menções na publicação" +#: ../../include/conversation.php:1121 +msgid "clear location" +msgstr "limpar a localização" -#: ../../include/permissions.php:26 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avançado - útil para criar canais de fóruns de grupos" +#: ../../include/conversation.php:1123 ../../mod/editlayout.php:126 +#: ../../mod/editpost.php:132 ../../mod/editblock.php:132 +#: ../../mod/editwebpage.php:167 +msgid "Set title" +msgstr "Definir o título" -#: ../../include/permissions.php:27 -msgid "Can chat with me (when available)" -msgstr "Pode conversar comigo (quando disponívei)" +#: ../../include/conversation.php:1126 ../../mod/editlayout.php:129 +#: ../../mod/editpost.php:134 ../../mod/editblock.php:135 +#: ../../mod/editwebpage.php:169 +msgid "Categories (comma-separated list)" +msgstr "Categorias (lista separada por vírgulas)" -#: ../../include/permissions.php:28 -msgid "Can write to my \"public\" file storage" -msgstr "Pode escrever em meu armazenamento de arquivos \"público\"" +#: ../../include/conversation.php:1128 ../../mod/editlayout.php:116 +#: ../../mod/editpost.php:122 ../../mod/editblock.php:121 +#: ../../mod/editwebpage.php:153 +msgid "Permission settings" +msgstr "Configurações de permissão" -#: ../../include/permissions.php:29 -msgid "Can edit my \"public\" pages" -msgstr "Pode editar minhas páginas \"públicas\"" +#: ../../include/conversation.php:1129 +msgid "permissions" +msgstr "permissões" -#: ../../include/permissions.php:31 -msgid "Can source my \"public\" posts in derived channels" -msgstr "Pode usar minhas publicações \"públicas\" como fonte para canais derivados" +#: ../../include/conversation.php:1136 ../../mod/editlayout.php:123 +#: ../../mod/editpost.php:129 ../../mod/editblock.php:129 +#: ../../mod/editwebpage.php:162 +msgid "Public post" +msgstr "Publicação pública" -#: ../../include/permissions.php:31 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Avançado - muito útil em comunidades abertas" +#: ../../include/conversation.php:1138 ../../mod/editlayout.php:130 +#: ../../mod/editpost.php:135 ../../mod/editblock.php:136 +#: ../../mod/editwebpage.php:170 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Por exemplo: joao@exemplo.com, maria@exemplo.com" -#: ../../include/permissions.php:33 -msgid "Can administer my channel resources" -msgstr "Pode administrar os recursos do meu canal" +#: ../../include/conversation.php:1151 ../../mod/editlayout.php:140 +#: ../../mod/editpost.php:146 ../../mod/editblock.php:146 +#: ../../mod/editwebpage.php:180 ../../mod/mail.php:226 ../../mod/mail.php:339 +msgid "Set expiration date" +msgstr "Definir data de expiração" -#: ../../include/permissions.php:33 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Extremamente avançado. Não mexa nisso a não ser que saiba o que está fazendo" +#: ../../include/conversation.php:1153 ../../include/ItemObject.php:591 +#: ../../mod/editpost.php:148 ../../mod/mail.php:228 ../../mod/mail.php:341 +msgid "Encrypt text" +msgstr "Encriptar texto" -#: ../../include/account.php:23 -msgid "Not a valid email address" -msgstr "Não é um endereço de e-mail válido" +#: ../../include/conversation.php:1155 ../../mod/editpost.php:150 +msgid "OK" +msgstr "Ok" -#: ../../include/account.php:25 -msgid "Your email domain is not among those allowed on this site" -msgstr "O domínio do seu e-mail não está entre os permitidos neste site" +#: ../../include/conversation.php:1156 ../../mod/tagrm.php:11 +#: ../../mod/tagrm.php:94 ../../mod/editpost.php:151 +#: ../../mod/settings.php:516 ../../mod/settings.php:542 +#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117 +msgid "Cancel" +msgstr "Cancelar" -#: ../../include/account.php:31 -msgid "Your email address is already registered at this site." -msgstr "O seu endereço de e-mail já está registrado neste site." +#: ../../include/conversation.php:1392 +msgid "Discover" +msgstr "Descubra" -#: ../../include/account.php:64 -msgid "An invitation is required." -msgstr "É necessário um convite." +#: ../../include/conversation.php:1395 +msgid "Imported public streams" +msgstr "Fluxos públicos importados" -#: ../../include/account.php:68 -msgid "Invitation could not be verified." -msgstr "Não foi possível verificar o convite." +#: ../../include/conversation.php:1400 +msgid "Commented Order" +msgstr "Recentes e comentados" -#: ../../include/account.php:119 -msgid "Please enter the required information." -msgstr "Por favor, forneça a informação solicitada." +#: ../../include/conversation.php:1403 +msgid "Sort by Comment Date" +msgstr "Ordenar pela data do último comentário" -#: ../../include/account.php:187 -msgid "Failed to store account information." -msgstr "Não foi possível armazenar a informação da conta." +#: ../../include/conversation.php:1407 +msgid "Posted Order" +msgstr "Recentemente publicados" -#: ../../include/account.php:273 -#, php-format -msgid "Registration request at %s" -msgstr "Solicitação de registro em %s" +#: ../../include/conversation.php:1410 +msgid "Sort by Post Date" +msgstr "Ordenar pela data da publicação" -#: ../../include/account.php:275 ../../include/account.php:302 -#: ../../include/account.php:359 -msgid "Administrator" -msgstr "Administrador" +#: ../../include/conversation.php:1418 +msgid "Posts that mention or involve you" +msgstr "Publicações que mencionam ou envolvem você" -#: ../../include/account.php:297 -msgid "your registration password" -msgstr "sua senha de registro" +#: ../../include/conversation.php:1424 ../../mod/connections.php:211 +#: ../../mod/connections.php:224 ../../mod/menu.php:61 +msgid "New" +msgstr "Novo" -#: ../../include/account.php:300 ../../include/account.php:357 -#, php-format -msgid "Registration details for %s" -msgstr "Detalhes do registro de %s" +#: ../../include/conversation.php:1427 +msgid "Activity Stream - by date" +msgstr "Fluxo de atividades - por data" -#: ../../include/account.php:366 -msgid "Account approved." -msgstr "A conta foi aprovada." +#: ../../include/conversation.php:1433 +msgid "Starred" +msgstr "Estrelados" -#: ../../include/account.php:400 -#, php-format -msgid "Registration revoked for %s" -msgstr "O registro de %s foi revogado" +#: ../../include/conversation.php:1436 +msgid "Favourite Posts" +msgstr "Publicações favoritas" -#: ../../include/photos.php:15 ../../include/attach.php:119 -#: ../../include/attach.php:166 ../../include/attach.php:229 -#: ../../include/attach.php:243 ../../include/attach.php:283 -#: ../../include/attach.php:297 ../../include/attach.php:322 -#: ../../include/attach.php:513 ../../include/attach.php:585 -#: ../../include/chat.php:116 ../../include/items.php:3645 -#: ../../mod/mood.php:119 ../../mod/mitem.php:73 ../../mod/achievements.php:27 -#: ../../mod/poke.php:128 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/authtest.php:13 ../../mod/profile.php:64 ../../mod/profile.php:72 -#: ../../mod/block.php:22 ../../mod/block.php:72 -#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 -#: ../../mod/blocks.php:29 ../../mod/blocks.php:44 ../../mod/profiles.php:152 -#: ../../mod/profiles.php:453 ../../mod/bookmarks.php:46 -#: ../../mod/channel.php:89 ../../mod/channel.php:193 -#: ../../mod/channel.php:236 ../../mod/chat.php:90 ../../mod/chat.php:95 -#: ../../mod/register.php:68 ../../mod/regmod.php:18 ../../mod/common.php:35 -#: ../../mod/network.php:12 ../../mod/connections.php:169 -#: ../../mod/connedit.php:221 ../../mod/delegate.php:6 ../../mod/page.php:30 -#: ../../mod/page.php:80 ../../mod/settings.php:492 ../../mod/setup.php:203 -#: ../../mod/editblock.php:34 ../../mod/pdledit.php:21 -#: ../../mod/editlayout.php:48 ../../mod/editpost.php:13 -#: ../../mod/editwebpage.php:44 ../../mod/editwebpage.php:83 -#: ../../mod/events.php:140 ../../mod/sources.php:66 -#: ../../mod/filestorage.php:10 ../../mod/filestorage.php:59 -#: ../../mod/filestorage.php:75 ../../mod/filestorage.php:98 -#: ../../mod/fsuggest.php:78 ../../mod/suggest.php:26 ../../mod/group.php:9 -#: ../../mod/thing.php:247 ../../mod/thing.php:263 ../../mod/thing.php:298 -#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/item.php:179 -#: ../../mod/item.php:187 ../../mod/item.php:872 ../../mod/layouts.php:27 -#: ../../mod/layouts.php:39 ../../mod/viewconnections.php:22 -#: ../../mod/viewconnections.php:27 ../../mod/viewsrc.php:12 -#: ../../mod/mail.php:108 ../../mod/manage.php:6 ../../mod/menu.php:44 -#: ../../mod/webpages.php:40 ../../mod/message.php:16 -#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97 -#: ../../mod/photos.php:68 ../../mod/photos.php:526 -#: ../../mod/notifications.php:66 ../../index.php:187 ../../index.php:362 -msgid "Permission denied." -msgstr "Permissão negada." +#: ../../include/conversation.php:1443 +msgid "Spam" +msgstr "Spam" -#: ../../include/photos.php:89 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "A imagem excede o limite de tamanho do site, que é de %" +#: ../../include/conversation.php:1446 +msgid "Posts flagged as SPAM" +msgstr "Publicações marcadas como SPAM" -#: ../../include/photos.php:96 -msgid "Image file is empty." -msgstr "O arquivo de imagem está vazio." +#: ../../include/conversation.php:1480 ../../mod/admin.php:890 +msgid "Channel" +msgstr "Canal" -#: ../../include/photos.php:123 ../../mod/profile_photo.php:216 -msgid "Unable to process image" -msgstr "Não foi possível processar a imagem" +#: ../../include/conversation.php:1483 +msgid "Status Messages and Posts" +msgstr "Mensagens de status e publicações" -#: ../../include/photos.php:186 -msgid "Photo storage failed." -msgstr "Não foi possível armazenar a foto." +#: ../../include/conversation.php:1492 +msgid "About" +msgstr "Sobre" -#: ../../include/photos.php:311 ../../include/conversation.php:1504 +#: ../../include/conversation.php:1495 +msgid "Profile Details" +msgstr "Detalhes do perfil" + +#: ../../include/conversation.php:1504 ../../include/photos.php:311 msgid "Photo Albums" msgstr "Álbuns de fotos" -#: ../../include/photos.php:315 ../../mod/photos.php:693 -#: ../../mod/photos.php:1190 -msgid "Upload New Photos" -msgstr "Enviar novas fotos" +#: ../../include/conversation.php:1513 +msgid "Files and Storage" +msgstr "Arquivos e armazenamento" -#: ../../include/acl_selectors.php:238 -msgid "Visible to everybody" -msgstr "Visível para todos" +#: ../../include/conversation.php:1522 ../../include/conversation.php:1525 +msgid "Chatrooms" +msgstr "Salas de bate-papo" -#: ../../include/acl_selectors.php:239 -msgid "Show" -msgstr "Exibir" +#: ../../include/conversation.php:1535 +msgid "Events and Calendar" +msgstr "Eventos e calendário" -#: ../../include/acl_selectors.php:240 -msgid "Don't show" -msgstr "Não exibir" +#: ../../include/conversation.php:1543 +msgid "Saved Bookmarks" +msgstr "Links guardados" -#: ../../include/acl_selectors.php:246 ../../mod/chat.php:209 -#: ../../mod/filestorage.php:126 ../../mod/photos.php:606 -#: ../../mod/photos.php:949 -msgid "Permissions" -msgstr "Permissões" +#: ../../include/conversation.php:1554 +msgid "Manage Webpages" +msgstr "Administrar páginas web" -#: ../../include/acl_selectors.php:247 -msgid "Close" -msgstr "Fechar" +#: ../../include/comanche.php:35 ../../view/theme/redbasic/php/config.php:84 +msgid "Default" +msgstr "Default" + +#: ../../include/message.php:18 +msgid "No recipient provided." +msgstr "Falta o destinatário." + +#: ../../include/message.php:23 +msgid "[no subject]" +msgstr "[sem assunto]" + +#: ../../include/message.php:42 +msgid "Unable to determine sender." +msgstr "Não foi possível determinar o remetente." + +#: ../../include/message.php:143 +msgid "Stored post could not be verified." +msgstr "Não foi possível verificar a publicação armazenada." #: ../../include/activities.php:39 msgid " and " @@ -392,9 +1121,550 @@ msgstr "Visite o %2$s de %1$s" msgid "%1$s has an updated %2$s, changing %3$s." msgstr "%1$s atualizou %2$s, alterando %3$s." -#: ../../include/api.php:1016 -msgid "Public Timeline" -msgstr "Linha do tempo pública" +#: ../../include/network.php:652 +msgid "view full size" +msgstr "ver na tela inteira" + +#: ../../include/bookmarks.php:42 +#, php-format +msgid "%1$s's bookmarks" +msgstr "Links guardados de %1$s" + +#: ../../include/taxonomy.php:210 +msgid "Tags" +msgstr "Etiquetas" + +#: ../../include/taxonomy.php:227 +msgid "Keywords" +msgstr "Palavras-chave" + +#: ../../include/taxonomy.php:252 +msgid "have" +msgstr "tenho" + +#: ../../include/taxonomy.php:252 +msgid "has" +msgstr "tem" + +#: ../../include/taxonomy.php:253 +msgid "want" +msgstr "quero" + +#: ../../include/taxonomy.php:253 +msgid "wants" +msgstr "quer" + +#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:205 +msgid "like" +msgstr "gostei" + +#: ../../include/taxonomy.php:254 +msgid "likes" +msgstr "gosta" + +#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:206 +msgid "dislike" +msgstr "não gostei" + +#: ../../include/taxonomy.php:255 +msgid "dislikes" +msgstr "desgosta" + +#: ../../include/ItemObject.php:96 ../../include/page_widgets.php:8 +#: ../../include/page_widgets.php:36 ../../include/menu.php:42 +#: ../../mod/editlayout.php:106 ../../mod/webpages.php:119 +#: ../../mod/thing.php:235 ../../mod/blocks.php:94 +#: ../../mod/filestorage.php:174 ../../mod/editpost.php:112 +#: ../../mod/settings.php:577 ../../mod/layouts.php:112 +#: ../../mod/connections.php:392 ../../mod/editblock.php:111 +#: ../../mod/editwebpage.php:143 ../../mod/menu.php:59 +msgid "Edit" +msgstr "Editar" + +#: ../../include/ItemObject.php:118 +msgid "save to folder" +msgstr "salvar na pasta" + +#: ../../include/ItemObject.php:130 ../../include/ItemObject.php:142 +msgid "View all" +msgstr "Ver tudo" + +#: ../../include/ItemObject.php:134 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "gostou" +msgstr[1] "gostaram" + +#: ../../include/ItemObject.php:139 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "desgostou" +msgstr[1] "desgostaram" + +#: ../../include/ItemObject.php:167 +msgid "add star" +msgstr "destacar" + +#: ../../include/ItemObject.php:168 +msgid "remove star" +msgstr "remover destaque" + +#: ../../include/ItemObject.php:169 +msgid "toggle star status" +msgstr "alternar destaque" + +#: ../../include/ItemObject.php:173 +msgid "starred" +msgstr "destacado" + +#: ../../include/ItemObject.php:190 +msgid "add tag" +msgstr "adicionar etiqueta" + +#: ../../include/ItemObject.php:205 ../../mod/photos.php:971 +msgid "I like this (toggle)" +msgstr "Eu gostei disso (alterna)" + +#: ../../include/ItemObject.php:206 ../../mod/photos.php:972 +msgid "I don't like this (toggle)" +msgstr "Eu não gostei disso (alterna)" + +#: ../../include/ItemObject.php:208 +msgid "Share this" +msgstr "Compartilhar isso" + +#: ../../include/ItemObject.php:208 +msgid "share" +msgstr "compartilhar" + +#: ../../include/ItemObject.php:232 ../../include/ItemObject.php:233 +#, php-format +msgid "View %s's profile - %s" +msgstr "Ver o perfil de %s - %s" + +#: ../../include/ItemObject.php:234 +msgid "to" +msgstr "para" + +#: ../../include/ItemObject.php:235 +msgid "via" +msgstr "via" + +#: ../../include/ItemObject.php:236 +msgid "Wall-to-Wall" +msgstr "Mural-para-mural" + +#: ../../include/ItemObject.php:237 +msgid "via Wall-To-Wall:" +msgstr "via Mural-para-mural" + +#: ../../include/ItemObject.php:271 +msgid "Bookmark Links" +msgstr "Guardar links" + +#: ../../include/ItemObject.php:279 +msgctxt "noun" +msgid "Likes" +msgstr "Gostaram" + +#: ../../include/ItemObject.php:280 +msgctxt "noun" +msgid "Dislikes" +msgstr "Desgostaram" + +#: ../../include/ItemObject.php:285 ../../include/acl_selectors.php:247 +msgid "Close" +msgstr "Fechar" + +#: ../../include/ItemObject.php:311 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d comentário" +msgstr[1] "%d comentários" + +#: ../../include/ItemObject.php:312 ../../include/contact_widgets.php:130 +#: ../../include/js_strings.php:7 +msgid "show more" +msgstr "exibir mais" + +#: ../../include/ItemObject.php:576 ../../mod/photos.php:990 +#: ../../mod/photos.php:1077 +msgid "This is you" +msgstr "Este(a) é você" + +#: ../../include/ItemObject.php:578 ../../include/js_strings.php:6 +#: ../../mod/photos.php:992 ../../mod/photos.php:1079 +msgid "Comment" +msgstr "Comentar" + +#: ../../include/ItemObject.php:579 ../../mod/group.php:81 +#: ../../mod/thing.php:283 ../../mod/thing.php:326 ../../mod/connect.php:92 +#: ../../mod/pdledit.php:58 ../../mod/sources.php:104 +#: ../../mod/sources.php:138 ../../mod/filestorage.php:135 +#: ../../mod/fsuggest.php:108 ../../mod/connedit.php:476 +#: ../../mod/settings.php:515 ../../mod/settings.php:627 +#: ../../mod/settings.php:655 ../../mod/settings.php:679 +#: ../../mod/settings.php:751 ../../mod/settings.php:929 +#: ../../mod/setup.php:307 ../../mod/setup.php:350 ../../mod/events.php:481 +#: ../../mod/photos.php:565 ../../mod/photos.php:670 ../../mod/photos.php:953 +#: ../../mod/photos.php:993 ../../mod/photos.php:1080 ../../mod/import.php:387 +#: ../../mod/mood.php:142 ../../mod/chat.php:177 ../../mod/chat.php:211 +#: ../../mod/profiles.php:506 ../../mod/mail.php:223 ../../mod/mail.php:335 +#: ../../mod/appman.php:91 ../../mod/poke.php:166 ../../mod/admin.php:441 +#: ../../mod/admin.php:750 ../../mod/admin.php:884 ../../mod/admin.php:1017 +#: ../../mod/admin.php:1216 ../../mod/admin.php:1303 ../../mod/invite.php:156 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Enviar" + +#: ../../include/ItemObject.php:580 +msgid "Bold" +msgstr "Negrito" + +#: ../../include/ItemObject.php:581 +msgid "Italic" +msgstr "Itálico" + +#: ../../include/ItemObject.php:582 +msgid "Underline" +msgstr "Sublinhado" + +#: ../../include/ItemObject.php:583 +msgid "Quote" +msgstr "Citação" + +#: ../../include/ItemObject.php:584 +msgid "Code" +msgstr "Código" + +#: ../../include/ItemObject.php:585 +msgid "Image" +msgstr "Imagem" + +#: ../../include/ItemObject.php:586 +msgid "Link" +msgstr "Link" + +#: ../../include/ItemObject.php:587 +msgid "Video" +msgstr "Vídeo" + +#: ../../include/items.php:306 ../../mod/group.php:68 +#: ../../mod/subthread.php:49 ../../mod/profperm.php:23 ../../mod/like.php:63 +#: ../../index.php:361 +msgid "Permission denied" +msgstr "Permissão negada" + +#: ../../include/items.php:830 +msgid "(Unknown)" +msgstr "(Desconhecido)" + +#: ../../include/items.php:3583 ../../mod/home.php:63 ../../mod/thing.php:78 +#: ../../mod/filestorage.php:18 ../../mod/viewsrc.php:18 +#: ../../mod/display.php:32 ../../mod/admin.php:159 ../../mod/admin.php:921 +#: ../../mod/admin.php:1124 +msgid "Item not found." +msgstr "O item não foi encontrado." + +#: ../../include/items.php:3645 ../../include/attach.php:119 +#: ../../include/attach.php:166 ../../include/attach.php:229 +#: ../../include/attach.php:243 ../../include/attach.php:283 +#: ../../include/attach.php:297 ../../include/attach.php:322 +#: ../../include/attach.php:513 ../../include/attach.php:585 +#: ../../include/photos.php:15 ../../include/chat.php:116 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/editlayout.php:48 ../../mod/webpages.php:40 +#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97 +#: ../../mod/group.php:9 ../../mod/thing.php:247 ../../mod/thing.php:263 +#: ../../mod/thing.php:298 ../../mod/notifications.php:66 +#: ../../mod/block.php:22 ../../mod/block.php:72 ../../mod/message.php:16 +#: ../../mod/mitem.php:73 ../../mod/item.php:179 ../../mod/item.php:187 +#: ../../mod/item.php:872 ../../mod/suggest.php:26 ../../mod/network.php:12 +#: ../../mod/bookmarks.php:46 ../../mod/channel.php:89 +#: ../../mod/channel.php:193 ../../mod/channel.php:236 +#: ../../mod/pdledit.php:21 ../../mod/sources.php:66 +#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 +#: ../../mod/blocks.php:29 ../../mod/blocks.php:44 +#: ../../mod/filestorage.php:10 ../../mod/filestorage.php:59 +#: ../../mod/filestorage.php:75 ../../mod/filestorage.php:98 +#: ../../mod/authtest.php:13 ../../mod/fsuggest.php:78 +#: ../../mod/connedit.php:221 ../../mod/viewsrc.php:12 +#: ../../mod/achievements.php:27 ../../mod/editpost.php:13 +#: ../../mod/settings.php:492 ../../mod/setup.php:203 ../../mod/events.php:140 +#: ../../mod/photos.php:68 ../../mod/photos.php:526 ../../mod/delegate.php:6 +#: ../../mod/layouts.php:27 ../../mod/layouts.php:39 +#: ../../mod/connections.php:169 ../../mod/page.php:30 ../../mod/page.php:80 +#: ../../mod/mood.php:119 ../../mod/chat.php:90 ../../mod/chat.php:95 +#: ../../mod/editblock.php:34 ../../mod/editwebpage.php:44 +#: ../../mod/editwebpage.php:83 ../../mod/profiles.php:152 +#: ../../mod/profiles.php:453 ../../mod/menu.php:44 ../../mod/mail.php:108 +#: ../../mod/appman.php:58 ../../mod/poke.php:128 +#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 +#: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/register.php:68 +#: ../../mod/manage.php:6 ../../mod/invite.php:13 ../../mod/invite.php:104 +#: ../../mod/common.php:35 ../../mod/regmod.php:18 ../../index.php:187 +#: ../../index.php:362 +msgid "Permission denied." +msgstr "Permissão negada." + +#: ../../include/items.php:4007 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." +msgstr "A coleção não foi encontrada." + +#: ../../include/items.php:4022 +msgid "Collection is empty." +msgstr "A coleção está vazia." + +#: ../../include/items.php:4029 +#, php-format +msgid "Collection: %s" +msgstr "Coleção: %s" + +#: ../../include/items.php:4040 +#, php-format +msgid "Connection: %s" +msgstr "Conexão: %s" + +#: ../../include/items.php:4043 +msgid "Connection not found." +msgstr "A conexão não foi encontrada." + +#: ../../include/dir_fns.php:36 +msgid "Sort Options" +msgstr "Opções de ordenação" + +#: ../../include/dir_fns.php:37 +msgid "Alphabetic" +msgstr "Alfabética" + +#: ../../include/dir_fns.php:38 +msgid "Reverse Alphabetic" +msgstr "Alfabética reversa" + +#: ../../include/dir_fns.php:39 +msgid "Newest to Oldest" +msgstr "Das mais recentes para as mais antigas" + +#: ../../include/dir_fns.php:51 +msgid "Enable Safe Search" +msgstr "Habilitar busca tranquila" + +#: ../../include/dir_fns.php:53 +msgid "Disable Safe Search" +msgstr "Desabilitar busca tranquila" + +#: ../../include/dir_fns.php:55 +msgid "Safe Mode" +msgstr "Modo tranquilo" + +#: ../../include/security.php:301 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão." + +#: ../../include/notify.php:23 +msgid "created a new post" +msgstr "criou uma nova publicação" + +#: ../../include/notify.php:24 +#, php-format +msgid "commented on %s's post" +msgstr "comentou a publicação de %s" + +#: ../../include/enotify.php:41 +msgid "Red Matrix Notification" +msgstr "Notificação da Red Matrix" + +#: ../../include/enotify.php:42 +msgid "redmatrix" +msgstr "redmatrix" + +#: ../../include/enotify.php:44 +msgid "Thank You," +msgstr "Obrigado(a)," + +#: ../../include/enotify.php:46 +#, php-format +msgid "%s Administrator" +msgstr "Administrador de %s" + +#: ../../include/enotify.php:81 +#, php-format +msgid "%s " +msgstr "%s " + +#: ../../include/enotify.php:85 +#, php-format +msgid "[Red:Notify] New mail received at %s" +msgstr "[Red:Notify] Nova mensagem recebida em %s" + +#: ../../include/enotify.php:87 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "%1$s, %2$s te enviou uma nova mensagem privada em %3$s." + +#: ../../include/enotify.php:88 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s enviou %2$s para você." + +#: ../../include/enotify.php:88 +msgid "a private message" +msgstr "uma mensagem privada" + +#: ../../include/enotify.php:89 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Por favor, visite %s para ver e/ou responder as suas mensagens privadas." + +#: ../../include/enotify.php:144 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +msgstr "%1$s, %2$s comentou em [zrl=%3$s]um/a %4$s[/zrl]" + +#: ../../include/enotify.php:152 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "%1$s, %2$s comentou em [zrl=%3$s]%5$s de %4$s[/zrl]" + +#: ../../include/enotify.php:161 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s, %2$s comentou em [zrl=%3$s]seu %4$s[/zrl]" + +#: ../../include/enotify.php:172 +#, php-format +msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Red:Notify] Comentário na conversa #%1$d por %2$s" + +#: ../../include/enotify.php:173 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." +msgstr "%1$s, %2$s comentou em um item/conversa que você acompanha." + +#: ../../include/enotify.php:176 ../../include/enotify.php:191 +#: ../../include/enotify.php:217 ../../include/enotify.php:236 +#: ../../include/enotify.php:250 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Por favor, visite %s para ver e/ou responder a conversa." + +#: ../../include/enotify.php:182 +#, php-format +msgid "[Red:Notify] %s posted to your profile wall" +msgstr "[Red:Notify] %s publicou no mural do seu perfil" + +#: ../../include/enotify.php:184 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "%1$s, %2$s publicou no mural do seu perfil em %3$s" + +#: ../../include/enotify.php:186 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "%1$s, %2$s publicou no [zrl=%3$s]seu mural[/zrl]" + +#: ../../include/enotify.php:210 +#, php-format +msgid "[Red:Notify] %s tagged you" +msgstr "[Red:Notify] %s etiquetou você" + +#: ../../include/enotify.php:211 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "%1$s, %2$s mencionou você em %3$s" + +#: ../../include/enotify.php:212 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgstr "%1$s, %2$s [zrl=%3$s]mencionou você[/zrl]." + +#: ../../include/enotify.php:225 +#, php-format +msgid "[Red:Notify] %1$s poked you" +msgstr "[Red:Notify] %1$s cutucou você" + +#: ../../include/enotify.php:226 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "%1$s, %2$s cutucou você em %3$s" + +#: ../../include/enotify.php:227 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s, %2$s [zrl=%2$s]cutucou você[/zrl]." + +#: ../../include/enotify.php:243 +#, php-format +msgid "[Red:Notify] %s tagged your post" +msgstr "[Red:Notify] %s etiquetou a sua publicação" + +#: ../../include/enotify.php:244 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "%1$s, %2$s marcou seu post em %3$s" + +#: ../../include/enotify.php:245 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "%1$s, %2$s marcou [zrl=%3$s]seu post[/zrl]" + +#: ../../include/enotify.php:257 +msgid "[Red:Notify] Introduction received" +msgstr "[Red:Notify] Você recebeu uma apresentação" + +#: ../../include/enotify.php:258 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgstr "%1$s, você recebeu uma nova solicitação de conexão de '%2$s' em %3$s" + +#: ../../include/enotify.php:259 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "%1$s, você recebeu [zrl=%2$s]uma nova solicitação de conexão[/zrl] de %3$s." + +#: ../../include/enotify.php:263 ../../include/enotify.php:282 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Você pode visitar seu perfil em %s" + +#: ../../include/enotify.php:265 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Por favor, visite %s para aprovar ou rejeitar a solicitação." + +#: ../../include/enotify.php:272 +msgid "[Red:Notify] Friend suggestion received" +msgstr "[Red:Notify] Foi recebida uma sugestão de amizade" + +#: ../../include/enotify.php:273 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, você recebeu uma sugestão de amizade de '%2$s' em %3$s" + +#: ../../include/enotify.php:274 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " +"%4$s." +msgstr "%1$s, você recebeu [zrl=%2$s]uma sugestão de amizade[/zrl] com %3$s de %4$s." + +#: ../../include/enotify.php:280 +msgid "Name:" +msgstr "Nome:" + +#: ../../include/enotify.php:281 +msgid "Photo:" +msgstr "Foto:" + +#: ../../include/enotify.php:284 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Por favor, visite %s para aprovar ou rejeitar a sugestão." #: ../../include/attach.php:224 ../../include/attach.php:278 msgid "Item was not found." @@ -454,341 +1724,389 @@ msgstr "mkdir falhou." msgid "database storage failed." msgstr "armazenamento de banco de dados falhou." -#: ../../include/auth.php:79 -msgid "Logged out." -msgstr "Você saiu." +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Nova página" -#: ../../include/auth.php:198 -msgid "Failed authentication" -msgstr "Não foi possível autenticar" +#: ../../include/page_widgets.php:39 ../../mod/webpages.php:122 +#: ../../mod/blocks.php:97 ../../mod/layouts.php:116 +msgid "View" +msgstr "Ver" -#: ../../include/auth.php:213 ../../mod/openid.php:188 -msgid "Login failed." -msgstr "Não foi possível entrar." +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:124 +msgid "Actions" +msgstr "Ações" -#: ../../include/bb2diaspora.php:433 ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:125 +msgid "Page Link" +msgstr "Link da página" -#: ../../include/bb2diaspora.php:439 ../../include/event.php:20 -msgid "Starts:" -msgstr "Início:" +#: ../../include/page_widgets.php:43 ../../mod/webpages.php:126 +msgid "Title" +msgstr "Título" -#: ../../include/bb2diaspora.php:447 ../../include/event.php:30 -msgid "Finishes:" -msgstr "Fim:" +#: ../../include/page_widgets.php:44 ../../mod/webpages.php:127 +msgid "Created" +msgstr "Criado" -#: ../../include/bb2diaspora.php:455 ../../include/event.php:40 -#: ../../include/identity.php:726 ../../mod/directory.php:156 -#: ../../mod/dirprofile.php:105 ../../mod/events.php:474 -msgid "Location:" -msgstr "Localização:" +#: ../../include/page_widgets.php:45 ../../mod/webpages.php:128 +msgid "Edited" +msgstr "Editado" -#: ../../include/bbcode.php:128 ../../include/bbcode.php:633 -#: ../../include/bbcode.php:636 ../../include/bbcode.php:641 -#: ../../include/bbcode.php:644 ../../include/bbcode.php:647 -#: ../../include/bbcode.php:650 ../../include/bbcode.php:655 -#: ../../include/bbcode.php:658 ../../include/bbcode.php:663 -#: ../../include/bbcode.php:666 ../../include/bbcode.php:669 -#: ../../include/bbcode.php:672 -msgid "Image/photo" -msgstr "Imagem/foto" +#: ../../include/photos.php:51 ../../include/photo/photo_driver.php:643 +#: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 +#: ../../mod/profile_photo.php:421 ../../mod/photos.php:91 +#: ../../mod/photos.php:655 ../../mod/photos.php:677 +msgid "Profile Photos" +msgstr "Fotos do perfil" -#: ../../include/bbcode.php:163 ../../include/bbcode.php:683 -msgid "Encrypted content" -msgstr "Conteúdo criptografado" - -#: ../../include/bbcode.php:170 -msgid "QR code" -msgstr "código QR" - -#: ../../include/bbcode.php:219 +#: ../../include/photos.php:89 #, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s escreveu a seguinte %2$s %3$s" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "A imagem excede o limite de tamanho do site, que é de %" -#: ../../include/bbcode.php:221 -msgid "post" -msgstr "publicação" +#: ../../include/photos.php:96 +msgid "Image file is empty." +msgstr "O arquivo de imagem está vazio." -#: ../../include/bbcode.php:601 ../../include/bbcode.php:621 -msgid "$1 wrote:" -msgstr "$1 escreveu:" +#: ../../include/photos.php:123 ../../mod/profile_photo.php:216 +msgid "Unable to process image" +msgstr "Não foi possível processar a imagem" -#: ../../include/ItemObject.php:89 ../../include/conversation.php:639 -#: ../../mod/photos.php:846 -msgid "Private Message" -msgstr "Mensagem privada" +#: ../../include/photos.php:186 +msgid "Photo storage failed." +msgstr "Não foi possível armazenar a foto." -#: ../../include/ItemObject.php:108 ../../include/conversation.php:632 -#: ../../mod/admin.php:757 ../../mod/admin.php:886 ../../mod/connedit.php:398 -#: ../../mod/settings.php:578 ../../mod/filestorage.php:175 -#: ../../mod/group.php:176 ../../mod/thing.php:236 ../../mod/photos.php:1043 -msgid "Delete" -msgstr "Excluir" +#: ../../include/photos.php:315 ../../mod/photos.php:693 +#: ../../mod/photos.php:1190 +msgid "Upload New Photos" +msgstr "Enviar novas fotos" -#: ../../include/ItemObject.php:114 ../../include/conversation.php:631 -msgid "Select" -msgstr "Selecionar" - -#: ../../include/ItemObject.php:118 -msgid "save to folder" -msgstr "salvar na pasta" - -#: ../../include/ItemObject.php:128 -msgid "Like" -msgstr "Gostou" - -#: ../../include/ItemObject.php:128 ../../mod/profiles.php:302 -msgid "Likes" -msgstr "Gosta de" - -#: ../../include/ItemObject.php:132 -msgid "Dislike" -msgstr "Desgostou" - -#: ../../include/ItemObject.php:132 ../../mod/profiles.php:306 -msgid "Dislikes" -msgstr "Não gosta de" - -#: ../../include/ItemObject.php:154 -msgid "add star" -msgstr "destacar" - -#: ../../include/ItemObject.php:155 -msgid "remove star" -msgstr "remover destaque" - -#: ../../include/ItemObject.php:156 -msgid "toggle star status" -msgstr "alternar destaque" - -#: ../../include/ItemObject.php:160 -msgid "starred" -msgstr "destacado" - -#: ../../include/ItemObject.php:169 ../../include/conversation.php:646 -msgid "Message is verified" -msgstr "A mensagem foi verificada" - -#: ../../include/ItemObject.php:177 -msgid "add tag" -msgstr "adicionar etiqueta" - -#: ../../include/ItemObject.php:192 ../../mod/photos.php:971 -msgid "I like this (toggle)" -msgstr "Eu gostei disso (alterna)" - -#: ../../include/ItemObject.php:192 ../../include/taxonomy.php:254 -msgid "like" -msgstr "gostei" - -#: ../../include/ItemObject.php:193 ../../mod/photos.php:972 -msgid "I don't like this (toggle)" -msgstr "Eu não gostei disso (alterna)" - -#: ../../include/ItemObject.php:193 ../../include/taxonomy.php:255 -msgid "dislike" -msgstr "não gostei" - -#: ../../include/ItemObject.php:195 -msgid "Share this" -msgstr "Compartilhar isso" - -#: ../../include/ItemObject.php:195 -msgid "share" -msgstr "compartilhar" - -#: ../../include/ItemObject.php:219 ../../include/ItemObject.php:220 +#: ../../include/dba/dba_driver.php:50 #, php-format -msgid "View %s's profile - %s" -msgstr "Ver o perfil de %s - %s" +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'" -#: ../../include/ItemObject.php:221 -msgid "to" -msgstr "para" +#: ../../include/profile_selectors.php:6 +msgid "Male" +msgstr "Masculino" -#: ../../include/ItemObject.php:222 -msgid "via" -msgstr "via" +#: ../../include/profile_selectors.php:6 +msgid "Female" +msgstr "Feminino" -#: ../../include/ItemObject.php:223 -msgid "Wall-to-Wall" -msgstr "Mural-para-mural" +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Atualmente masculino" -#: ../../include/ItemObject.php:224 -msgid "via Wall-To-Wall:" -msgstr "via Mural-para-mural" +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Atualmente feminino" -#: ../../include/ItemObject.php:234 ../../include/conversation.php:690 +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Masculino a maior parte do tempo" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Feminino a maior parte do tempo" + +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgênero" + +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Intersexuado" + +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transexual" + +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermafrodita" + +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neutro" + +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Não específico" + +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "Outro" + +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Indeciso" + +#: ../../include/profile_selectors.php:23 +msgid "Males" +msgstr "Homens" + +#: ../../include/profile_selectors.php:23 +msgid "Females" +msgstr "Mulheres" + +#: ../../include/profile_selectors.php:23 +msgid "Gay" +msgstr "Gays" + +#: ../../include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lésbicas" + +#: ../../include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Sem preferência" + +#: ../../include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Bissexuais" + +#: ../../include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Autossexuais" + +#: ../../include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Abstinentes" + +#: ../../include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Virgens" + +#: ../../include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Desviantes" + +#: ../../include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Fetiches" + +#: ../../include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Abundância" + +#: ../../include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Não sexuais" + +#: ../../include/profile_selectors.php:42 +msgid "Single" +msgstr "Solteiro(a)" + +#: ../../include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Solitário(a)" + +#: ../../include/profile_selectors.php:42 +msgid "Available" +msgstr "Disponível" + +#: ../../include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Não disponível" + +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "Tem uma paixão" + +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "Apaixonado" + +#: ../../include/profile_selectors.php:42 +msgid "Dating" +msgstr "Saindo com alguém" + +#: ../../include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Infiel" + +#: ../../include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Viciado(a) em sexo" + +#: ../../include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Amigos com benefícios" + +#: ../../include/profile_selectors.php:42 +msgid "Casual" +msgstr "Casual" + +#: ../../include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Envolvido(a)" + +#: ../../include/profile_selectors.php:42 +msgid "Married" +msgstr "Casado(a)" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "Casado imaginariamente" + +#: ../../include/profile_selectors.php:42 +msgid "Partners" +msgstr "Parceiros" + +#: ../../include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "Coabitando" + +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "Direito comum" + +#: ../../include/profile_selectors.php:42 +msgid "Happy" +msgstr "Feliz" + +#: ../../include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Não estou procurando" + +#: ../../include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Swinger" + +#: ../../include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Traído(a)" + +#: ../../include/profile_selectors.php:42 +msgid "Separated" +msgstr "Separado(a)" + +#: ../../include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Instável" + +#: ../../include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Divorciado(a)" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "Divorciado imaginariamente" + +#: ../../include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Viúvo(a)" + +#: ../../include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Incerto(a)" + +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "É complicado" + +#: ../../include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Não importa" + +#: ../../include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Pergunte-me" + +#: ../../include/plugin.php:486 ../../include/plugin.php:488 +msgid "Click here to upgrade." +msgstr "Clique aqui para atualizar." + +#: ../../include/plugin.php:494 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Essa ação excede o limite definido para o seu plano de assinatura." + +#: ../../include/plugin.php:499 +msgid "This action is not available under your subscription plan." +msgstr "Essa ação não está disponível para o seu plano de assinatura." + +#: ../../include/acl_selectors.php:238 +msgid "Visible to everybody" +msgstr "Visível para todos" + +#: ../../include/acl_selectors.php:239 +msgid "Show" +msgstr "Exibir" + +#: ../../include/acl_selectors.php:240 +msgid "Don't show" +msgstr "Não exibir" + +#: ../../include/acl_selectors.php:246 ../../mod/filestorage.php:126 +#: ../../mod/photos.php:606 ../../mod/photos.php:949 ../../mod/chat.php:209 +msgid "Permissions" +msgstr "Permissões" + +#: ../../include/account.php:23 +msgid "Not a valid email address" +msgstr "Não é um endereço de e-mail válido" + +#: ../../include/account.php:25 +msgid "Your email domain is not among those allowed on this site" +msgstr "O domínio do seu e-mail não está entre os permitidos neste site" + +#: ../../include/account.php:31 +msgid "Your email address is already registered at this site." +msgstr "O seu endereço de e-mail já está registrado neste site." + +#: ../../include/account.php:64 +msgid "An invitation is required." +msgstr "É necessário um convite." + +#: ../../include/account.php:68 +msgid "Invitation could not be verified." +msgstr "Não foi possível verificar o convite." + +#: ../../include/account.php:119 +msgid "Please enter the required information." +msgstr "Por favor, forneça a informação solicitada." + +#: ../../include/account.php:187 +msgid "Failed to store account information." +msgstr "Não foi possível armazenar a informação da conta." + +#: ../../include/account.php:273 #, php-format -msgid " from %s" -msgstr "de %s" +msgid "Registration request at %s" +msgstr "Solicitação de registro em %s" -#: ../../include/ItemObject.php:237 ../../include/conversation.php:693 +#: ../../include/account.php:275 ../../include/account.php:302 +#: ../../include/account.php:359 +msgid "Administrator" +msgstr "Administrador" + +#: ../../include/account.php:297 +msgid "your registration password" +msgstr "sua senha de registro" + +#: ../../include/account.php:300 ../../include/account.php:357 #, php-format -msgid "last edited: %s" -msgstr "última edição: %s" +msgid "Registration details for %s" +msgstr "Detalhes do registro de %s" -#: ../../include/ItemObject.php:238 ../../include/conversation.php:694 +#: ../../include/account.php:366 +msgid "Account approved." +msgstr "A conta foi aprovada." + +#: ../../include/account.php:400 #, php-format -msgid "Expires: %s" -msgstr "Expira: %s" +msgid "Registration revoked for %s" +msgstr "O registro de %s foi revogado" -#: ../../include/ItemObject.php:258 -msgid "Bookmark Links" -msgstr "Guardar links" +#: ../../include/Contact.php:123 +msgid "New window" +msgstr "Nova janela" -#: ../../include/ItemObject.php:272 ../../include/conversation.php:711 -#: ../../include/conversation.php:1127 ../../mod/editblock.php:120 -#: ../../mod/editlayout.php:115 ../../mod/editpost.php:121 -#: ../../mod/editwebpage.php:152 ../../mod/mail.php:222 ../../mod/mail.php:336 -#: ../../mod/photos.php:974 -msgid "Please wait" -msgstr "Por favor, espere" - -#: ../../include/ItemObject.php:293 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d comentário" -msgstr[1] "%d comentários" - -#: ../../include/ItemObject.php:294 ../../include/contact_widgets.php:130 -#: ../../include/js_strings.php:7 -msgid "show more" -msgstr "exibir mais" - -#: ../../include/ItemObject.php:558 ../../mod/photos.php:990 -#: ../../mod/photos.php:1077 -msgid "This is you" -msgstr "Este(a) é você" - -#: ../../include/ItemObject.php:560 ../../include/js_strings.php:6 -#: ../../mod/photos.php:992 ../../mod/photos.php:1079 -msgid "Comment" -msgstr "Comentar" - -#: ../../include/ItemObject.php:561 ../../mod/mood.php:142 -#: ../../mod/admin.php:441 ../../mod/admin.php:750 ../../mod/admin.php:884 -#: ../../mod/admin.php:1017 ../../mod/admin.php:1216 ../../mod/admin.php:1303 -#: ../../mod/poke.php:166 ../../mod/profiles.php:506 ../../mod/chat.php:177 -#: ../../mod/chat.php:211 ../../mod/connect.php:92 ../../mod/connedit.php:476 -#: ../../mod/settings.php:515 ../../mod/settings.php:627 -#: ../../mod/settings.php:655 ../../mod/settings.php:679 -#: ../../mod/settings.php:751 ../../mod/settings.php:929 -#: ../../mod/setup.php:307 ../../mod/setup.php:350 ../../mod/pdledit.php:58 -#: ../../mod/events.php:481 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/filestorage.php:135 -#: ../../mod/fsuggest.php:108 ../../mod/group.php:81 ../../mod/thing.php:283 -#: ../../mod/thing.php:326 ../../mod/import.php:387 ../../mod/invite.php:156 -#: ../../mod/mail.php:223 ../../mod/mail.php:335 ../../mod/photos.php:565 -#: ../../mod/photos.php:670 ../../mod/photos.php:953 ../../mod/photos.php:993 -#: ../../mod/photos.php:1080 ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/blogga/php/config.php:67 -#: ../../view/theme/blogga/view/theme/blog/config.php:67 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Enviar" - -#: ../../include/ItemObject.php:562 -msgid "Bold" -msgstr "Negrito" - -#: ../../include/ItemObject.php:563 -msgid "Italic" -msgstr "Itálico" - -#: ../../include/ItemObject.php:564 -msgid "Underline" -msgstr "Sublinhado" - -#: ../../include/ItemObject.php:565 -msgid "Quote" -msgstr "Citação" - -#: ../../include/ItemObject.php:566 -msgid "Code" -msgstr "Código" - -#: ../../include/ItemObject.php:567 -msgid "Image" -msgstr "Imagem" - -#: ../../include/ItemObject.php:568 -msgid "Link" -msgstr "Link" - -#: ../../include/ItemObject.php:569 -msgid "Video" -msgstr "Vídeo" - -#: ../../include/ItemObject.php:573 ../../include/conversation.php:1153 -#: ../../mod/editpost.php:148 ../../mod/mail.php:228 ../../mod/mail.php:341 -msgid "Encrypt text" -msgstr "Encriptar texto" - -#: ../../include/bookmarks.php:42 -#, php-format -msgid "%1$s's bookmarks" -msgstr "Links guardados de %1$s" - -#: ../../include/chat.php:10 -msgid "Missing room name" -msgstr "Nome da sala vazio" - -#: ../../include/chat.php:19 -msgid "Duplicate room name" -msgstr "Nome da sala duplicado" - -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." -msgstr "Especificador de sala inválido." - -#: ../../include/chat.php:105 -msgid "Room not found." -msgstr "A sala não foi encontrada." - -#: ../../include/chat.php:126 -msgid "Room is full" -msgstr "A sala está cheia" - -#: ../../include/taxonomy.php:210 -msgid "Tags" -msgstr "Etiquetas" - -#: ../../include/taxonomy.php:227 -msgid "Keywords" -msgstr "Palavras-chave" - -#: ../../include/taxonomy.php:252 -msgid "have" -msgstr "tenho" - -#: ../../include/taxonomy.php:252 -msgid "has" -msgstr "tem" - -#: ../../include/taxonomy.php:253 -msgid "want" -msgstr "quero" - -#: ../../include/taxonomy.php:253 -msgid "wants" -msgstr "quer" - -#: ../../include/taxonomy.php:254 -msgid "likes" -msgstr "gosta" - -#: ../../include/taxonomy.php:255 -msgid "dislikes" -msgstr "desgosta" - -#: ../../include/comanche.php:35 ../../view/theme/apw/php/config.php:185 -#: ../../view/theme/redbasic/php/config.php:84 -msgid "Default" -msgstr "Default" +#: ../../include/Contact.php:124 +msgid "Open the selected location in a different window or browser tab" +msgstr "Abre a localização selecionada em outra aba ou janela" #: ../../include/contact_selectors.php:30 msgid "Unknown | Not categorised" @@ -851,7 +2169,7 @@ msgid "RSS/Atom" msgstr "RSS/Atom" #: ../../include/contact_selectors.php:77 ../../mod/admin.php:753 -#: ../../mod/admin.php:762 ../../boot.php:1454 +#: ../../mod/admin.php:762 ../../boot.php:1453 msgid "Email" msgstr "E-mail" @@ -879,6 +2197,37 @@ msgstr "XMPP/MI" msgid "MySpace" msgstr "MySpace" +#: ../../include/apps.php:109 ../../include/identity.php:942 +#: ../../include/identity.php:1031 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Perfil" + +#: ../../include/apps.php:151 ../../mod/settings.php:79 +#: ../../mod/settings.php:541 +msgid "Update" +msgstr "Atualizar" + +#: ../../include/apps.php:151 +msgid "Install" +msgstr "Instalar" + +#: ../../include/apps.php:231 ../../include/apps.php:279 +#: ../../mod/connedit.php:434 +msgid "Unknown" +msgstr "Desconhecidos" + +#: ../../include/auth.php:79 +msgid "Logged out." +msgstr "Você saiu." + +#: ../../include/auth.php:198 +msgid "Failed authentication" +msgstr "Não foi possível autenticar" + +#: ../../include/auth.php:213 ../../mod/openid.php:188 +msgid "Login failed." +msgstr "Não foi possível entrar." + #: ../../include/text.php:320 msgid "prev" msgstr "anterior" @@ -918,25 +2267,10 @@ msgstr[1] "%d conexões" msgid "View Connections" msgstr "Ver conexões" -#: ../../include/text.php:813 ../../include/text.php:827 -#: ../../include/nav.php:144 ../../mod/search.php:29 -msgid "Search" -msgstr "Pesquisar" - -#: ../../include/text.php:815 ../../include/text.php:829 -#: ../../include/widgets.php:185 ../../mod/rbmark.php:28 -#: ../../mod/rbmark.php:98 ../../mod/filer.php:50 -msgid "Save" -msgstr "Salvar" - #: ../../include/text.php:895 msgid "poke" msgstr "cutucar" -#: ../../include/text.php:895 ../../include/conversation.php:240 -msgid "poked" -msgstr "cutucado" - #: ../../include/text.php:896 msgid "ping" msgstr "pingar" @@ -1177,28 +2511,6 @@ msgstr "Tipo de conteúdo da página: " msgid "Select an alternate language" msgstr "Selecione um idioma alternativo" -#: ../../include/text.php:1705 ../../include/conversation.php:117 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:45 ../../mod/like.php:111 -msgid "photo" -msgstr "foto" - -#: ../../include/text.php:1708 ../../include/conversation.php:120 -#: ../../mod/tagger.php:49 -msgid "event" -msgstr "evento" - -#: ../../include/text.php:1711 ../../include/conversation.php:145 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:53 ../../mod/like.php:111 -msgid "status" -msgstr "status" - -#: ../../include/text.php:1713 ../../include/conversation.php:147 -#: ../../mod/tagger.php:55 -msgid "comment" -msgstr "comentário" - #: ../../include/text.php:1718 msgid "activity" msgstr "atividade" @@ -1223,783 +2535,25 @@ msgstr "Layouts" msgid "Pages" msgstr "Páginas" -#: ../../include/contact_widgets.php:14 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d convite disponível" -msgstr[1] "%d convites disponíveis" +#: ../../include/chat.php:10 +msgid "Missing room name" +msgstr "Nome da sala vazio" -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:445 -msgid "Advanced" -msgstr "Avançado" +#: ../../include/chat.php:19 +msgid "Duplicate room name" +msgstr "Nome da sala duplicado" -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "Pesquisar canais" +#: ../../include/chat.php:68 ../../include/chat.php:76 +msgid "Invalid room specifier." +msgstr "Especificador de sala inválido." -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "Digite um nome ou interesse" +#: ../../include/chat.php:105 +msgid "Room not found." +msgstr "A sala não foi encontrada." -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "Conectar/Acompanhar" - -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Por exemplo: José da Silva, Pescaria" - -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:391 -#: ../../mod/directory.php:206 ../../mod/directory.php:211 -msgid "Find" -msgstr "Pesquisar" - -#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 -msgid "Channel Suggestions" -msgstr "Sugestões de canais" - -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "Perfil aleatório" - -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "Convidar amigos" - -#: ../../include/contact_widgets.php:32 -msgid "Exammple: name=fred and country=iceland" -msgstr "Exemplo: name=raoni and country=peru" - -#: ../../include/contact_widgets.php:33 -msgid "Advanced Find" -msgstr "Busca avançada" - -#: ../../include/contact_widgets.php:58 ../../include/features.php:66 -#: ../../include/widgets.php:295 -msgid "Saved Folders" -msgstr "Pastas salvas" - -#: ../../include/contact_widgets.php:61 ../../include/contact_widgets.php:95 -#: ../../include/widgets.php:298 -msgid "Everything" -msgstr "Tudo" - -#: ../../include/contact_widgets.php:92 ../../include/widgets.php:29 -msgid "Categories" -msgstr "Categorias" - -#: ../../include/contact_widgets.php:125 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d conexão em comum" -msgstr[1] "%d conexões em comum" - -#: ../../include/conversation.php:123 -msgid "channel" -msgstr "canal" - -#: ../../include/conversation.php:161 ../../mod/like.php:142 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s gosta de %3$s de %2$s" - -#: ../../include/conversation.php:164 ../../mod/like.php:144 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s não gosta de %3$s de %2$s" - -#: ../../include/conversation.php:201 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s agora está conectado com %2$s" - -#: ../../include/conversation.php:236 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s cutucou %2$s" - -#: ../../include/conversation.php:258 ../../mod/mood.php:63 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s atualmente está %2$s" - -#: ../../include/conversation.php:666 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Ver o perfil de %s's @ %s" - -#: ../../include/conversation.php:680 -msgid "Categories:" -msgstr "Categorias:" - -#: ../../include/conversation.php:681 -msgid "Filed under:" -msgstr "Armazenado sob:" - -#: ../../include/conversation.php:709 -msgid "View in context" -msgstr "Ver no contexto" - -#: ../../include/conversation.php:838 -msgid "remove" -msgstr "remover" - -#: ../../include/conversation.php:842 -msgid "Loading..." -msgstr "Carregando..." - -#: ../../include/conversation.php:843 -msgid "Delete Selected Items" -msgstr "Excluir os itens selecionados" - -#: ../../include/conversation.php:934 -msgid "View Source" -msgstr "Ver a fonte" - -#: ../../include/conversation.php:935 -msgid "Follow Thread" -msgstr "Acompanhar a discussão" - -#: ../../include/conversation.php:936 -msgid "View Status" -msgstr "Ver status" - -#: ../../include/conversation.php:937 ../../include/nav.php:81 -#: ../../mod/connedit.php:351 ../../mod/connedit.php:465 -msgid "View Profile" -msgstr "Ver perfil" - -#: ../../include/conversation.php:938 -msgid "View Photos" -msgstr "Ver fotos" - -#: ../../include/conversation.php:939 -msgid "Matrix Activity" -msgstr "Atividade na matriz" - -#: ../../include/conversation.php:940 -msgid "Edit Contact" -msgstr "Editar contato" - -#: ../../include/conversation.php:941 -msgid "Send PM" -msgstr "Enviar MP" - -#: ../../include/conversation.php:942 -msgid "Poke" -msgstr "Cutucar" - -#: ../../include/conversation.php:998 -#, php-format -msgid "%s likes this." -msgstr "%s gostou disso." - -#: ../../include/conversation.php:998 -#, php-format -msgid "%s doesn't like this." -msgstr "%s não gostou disso." - -#: ../../include/conversation.php:1002 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "%2$d pessoas gostaram disso." - -#: ../../include/conversation.php:1004 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "" -msgstr[1] "%2$d pessoas não gostaram disso." - -#: ../../include/conversation.php:1010 -msgid "and" -msgstr "e" - -#: ../../include/conversation.php:1013 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] ", e mais %d outras pessoas" - -#: ../../include/conversation.php:1014 -#, php-format -msgid "%s like this." -msgstr "%s gostou disso." - -#: ../../include/conversation.php:1014 -#, php-format -msgid "%s don't like this." -msgstr "%s não gostou disso." - -#: ../../include/conversation.php:1071 -msgid "Visible to everybody" -msgstr "Visível para todos" - -#: ../../include/conversation.php:1072 ../../mod/mail.php:171 -#: ../../mod/mail.php:269 -msgid "Please enter a link URL:" -msgstr "Por favor, digite uma URL:" - -#: ../../include/conversation.php:1073 -msgid "Please enter a video link/URL:" -msgstr "Por favor, digite o link/URL do vídeo:" - -#: ../../include/conversation.php:1074 -msgid "Please enter an audio link/URL:" -msgstr "Por favor, digite o link/URL do áudio:" - -#: ../../include/conversation.php:1075 -msgid "Tag term:" -msgstr "Etiqueta:" - -#: ../../include/conversation.php:1076 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Salvar para a pasta:" - -#: ../../include/conversation.php:1077 -msgid "Where are you right now?" -msgstr "Onde você está agora?" - -#: ../../include/conversation.php:1078 ../../mod/editpost.php:52 -#: ../../mod/mail.php:172 ../../mod/mail.php:270 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Expira YYYY-MM-DD HH:MM" - -#: ../../include/conversation.php:1102 ../../mod/layouts.php:113 -#: ../../mod/photos.php:973 -msgid "Share" -msgstr "Compartilhar" - -#: ../../include/conversation.php:1104 ../../mod/editwebpage.php:139 -msgid "Page link title" -msgstr "Título do link da página" - -#: ../../include/conversation.php:1107 -msgid "Post as" -msgstr "Publicar como" - -#: ../../include/conversation.php:1108 ../../mod/editblock.php:112 -#: ../../mod/editlayout.php:107 ../../mod/editpost.php:113 -#: ../../mod/editwebpage.php:144 ../../mod/mail.php:219 ../../mod/mail.php:332 -msgid "Upload photo" -msgstr "Enviar foto" - -#: ../../include/conversation.php:1109 -msgid "upload photo" -msgstr "enviar foto" - -#: ../../include/conversation.php:1110 ../../mod/editblock.php:113 -#: ../../mod/editlayout.php:108 ../../mod/editpost.php:114 -#: ../../mod/editwebpage.php:145 ../../mod/mail.php:220 ../../mod/mail.php:333 -msgid "Attach file" -msgstr "Anexar arquivo" - -#: ../../include/conversation.php:1111 -msgid "attach file" -msgstr "anexar arquivo" - -#: ../../include/conversation.php:1112 ../../mod/editblock.php:114 -#: ../../mod/editlayout.php:109 ../../mod/editpost.php:115 -#: ../../mod/editwebpage.php:146 ../../mod/mail.php:221 ../../mod/mail.php:334 -msgid "Insert web link" -msgstr "Inserir link web" - -#: ../../include/conversation.php:1113 -msgid "web link" -msgstr "link web" - -#: ../../include/conversation.php:1114 -msgid "Insert video link" -msgstr "Inserir link de vídeo" - -#: ../../include/conversation.php:1115 -msgid "video link" -msgstr "link de vídeo" - -#: ../../include/conversation.php:1116 -msgid "Insert audio link" -msgstr "Inserir link de áudio" - -#: ../../include/conversation.php:1117 -msgid "audio link" -msgstr "link de áudio" - -#: ../../include/conversation.php:1118 ../../mod/editblock.php:118 -#: ../../mod/editlayout.php:113 ../../mod/editpost.php:119 -#: ../../mod/editwebpage.php:150 -msgid "Set your location" -msgstr "Definir sua localização" - -#: ../../include/conversation.php:1119 -msgid "set location" -msgstr "definir localização" - -#: ../../include/conversation.php:1120 ../../mod/editblock.php:119 -#: ../../mod/editlayout.php:114 ../../mod/editpost.php:120 -#: ../../mod/editwebpage.php:151 -msgid "Clear browser location" -msgstr "Limpar a localização do navegador" - -#: ../../include/conversation.php:1121 -msgid "clear location" -msgstr "limpar a localização" - -#: ../../include/conversation.php:1123 ../../mod/editblock.php:132 -#: ../../mod/editlayout.php:126 ../../mod/editpost.php:132 -#: ../../mod/editwebpage.php:167 -msgid "Set title" -msgstr "Definir o título" - -#: ../../include/conversation.php:1126 ../../mod/editblock.php:135 -#: ../../mod/editlayout.php:129 ../../mod/editpost.php:134 -#: ../../mod/editwebpage.php:169 -msgid "Categories (comma-separated list)" -msgstr "Categorias (lista separada por vírgulas)" - -#: ../../include/conversation.php:1128 ../../mod/editblock.php:121 -#: ../../mod/editlayout.php:116 ../../mod/editpost.php:122 -#: ../../mod/editwebpage.php:153 -msgid "Permission settings" -msgstr "Configurações de permissão" - -#: ../../include/conversation.php:1129 -msgid "permissions" -msgstr "permissões" - -#: ../../include/conversation.php:1136 ../../mod/editblock.php:129 -#: ../../mod/editlayout.php:123 ../../mod/editpost.php:129 -#: ../../mod/editwebpage.php:162 -msgid "Public post" -msgstr "Publicação pública" - -#: ../../include/conversation.php:1138 ../../mod/editblock.php:136 -#: ../../mod/editlayout.php:130 ../../mod/editpost.php:135 -#: ../../mod/editwebpage.php:170 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Por exemplo: joao@exemplo.com, maria@exemplo.com" - -#: ../../include/conversation.php:1151 ../../mod/editblock.php:146 -#: ../../mod/editlayout.php:140 ../../mod/editpost.php:146 -#: ../../mod/editwebpage.php:180 ../../mod/mail.php:226 ../../mod/mail.php:339 -msgid "Set expiration date" -msgstr "Definir data de expiração" - -#: ../../include/conversation.php:1155 ../../mod/editpost.php:150 -msgid "OK" -msgstr "Ok" - -#: ../../include/conversation.php:1156 ../../mod/settings.php:516 -#: ../../mod/settings.php:542 ../../mod/editpost.php:151 -#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117 ../../mod/tagrm.php:11 -#: ../../mod/tagrm.php:94 -msgid "Cancel" -msgstr "Cancelar" - -#: ../../include/conversation.php:1392 -msgid "Discover" -msgstr "Descubra" - -#: ../../include/conversation.php:1395 -msgid "Imported public streams" -msgstr "Fluxos públicos importados" - -#: ../../include/conversation.php:1400 -msgid "Commented Order" -msgstr "Recentes e comentados" - -#: ../../include/conversation.php:1403 -msgid "Sort by Comment Date" -msgstr "Ordenar pela data do último comentário" - -#: ../../include/conversation.php:1407 -msgid "Posted Order" -msgstr "Recentemente publicados" - -#: ../../include/conversation.php:1410 -msgid "Sort by Post Date" -msgstr "Ordenar pela data da publicação" - -#: ../../include/conversation.php:1415 ../../include/widgets.php:81 -msgid "Personal" -msgstr "Pessoal" - -#: ../../include/conversation.php:1418 -msgid "Posts that mention or involve you" -msgstr "Publicações que mencionam ou envolvem você" - -#: ../../include/conversation.php:1424 ../../include/widgets.php:83 -#: ../../mod/connections.php:211 ../../mod/connections.php:224 -#: ../../mod/menu.php:61 -msgid "New" -msgstr "Novo" - -#: ../../include/conversation.php:1427 -msgid "Activity Stream - by date" -msgstr "Fluxo de atividades - por data" - -#: ../../include/conversation.php:1433 -msgid "Starred" -msgstr "Estrelados" - -#: ../../include/conversation.php:1436 -msgid "Favourite Posts" -msgstr "Publicações favoritas" - -#: ../../include/conversation.php:1443 -msgid "Spam" -msgstr "Spam" - -#: ../../include/conversation.php:1446 -msgid "Posts flagged as SPAM" -msgstr "Publicações marcadas como SPAM" - -#: ../../include/conversation.php:1480 ../../mod/admin.php:890 -msgid "Channel" -msgstr "Canal" - -#: ../../include/conversation.php:1483 -msgid "Status Messages and Posts" -msgstr "Mensagens de status e publicações" - -#: ../../include/conversation.php:1492 -msgid "About" -msgstr "Sobre" - -#: ../../include/conversation.php:1495 -msgid "Profile Details" -msgstr "Detalhes do perfil" - -#: ../../include/conversation.php:1510 ../../include/nav.php:85 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "Arquivos" - -#: ../../include/conversation.php:1513 -msgid "Files and Storage" -msgstr "Arquivos e armazenamento" - -#: ../../include/conversation.php:1522 ../../include/conversation.php:1525 -msgid "Chatrooms" -msgstr "Salas de bate-papo" - -#: ../../include/conversation.php:1535 -msgid "Events and Calendar" -msgstr "Eventos e calendário" - -#: ../../include/conversation.php:1540 ../../include/nav.php:88 -msgid "Bookmarks" -msgstr "Links guardados" - -#: ../../include/conversation.php:1543 -msgid "Saved Bookmarks" -msgstr "Links guardados" - -#: ../../include/conversation.php:1551 ../../include/nav.php:90 -#: ../../mod/webpages.php:79 -msgid "Webpages" -msgstr "Páginas web" - -#: ../../include/conversation.php:1554 -msgid "Manage Webpages" -msgstr "Administrar páginas web" - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Miscelânea" - -#: ../../include/datetime.php:152 ../../include/datetime.php:284 -msgid "year" -msgstr "ano" - -#: ../../include/datetime.php:157 ../../include/datetime.php:285 -msgid "month" -msgstr "mês" - -#: ../../include/datetime.php:162 ../../include/datetime.php:287 -msgid "day" -msgstr "dia" - -#: ../../include/datetime.php:275 -msgid "never" -msgstr "nunca" - -#: ../../include/datetime.php:281 -msgid "less than a second ago" -msgstr "menos de um segundo atrás" - -#: ../../include/datetime.php:284 -msgid "years" -msgstr "anos" - -#: ../../include/datetime.php:285 -msgid "months" -msgstr "meses" - -#: ../../include/datetime.php:286 -msgid "week" -msgstr "semana" - -#: ../../include/datetime.php:286 -msgid "weeks" -msgstr "semanas" - -#: ../../include/datetime.php:287 -msgid "days" -msgstr "dias" - -#: ../../include/datetime.php:288 -msgid "hour" -msgstr "hora" - -#: ../../include/datetime.php:288 -msgid "hours" -msgstr "horas" - -#: ../../include/datetime.php:289 -msgid "minute" -msgstr "minuto" - -#: ../../include/datetime.php:289 -msgid "minutes" -msgstr "minutos" - -#: ../../include/datetime.php:290 -msgid "second" -msgstr "segundo" - -#: ../../include/datetime.php:290 -msgid "seconds" -msgstr "segundos" - -#: ../../include/datetime.php:299 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s atrás" - -#: ../../include/dir_fns.php:36 -msgid "Sort Options" -msgstr "Opções de ordenação" - -#: ../../include/dir_fns.php:37 -msgid "Alphabetic" -msgstr "Alfabética" - -#: ../../include/dir_fns.php:38 -msgid "Reverse Alphabetic" -msgstr "Alfabética reversa" - -#: ../../include/dir_fns.php:39 -msgid "Newest to Oldest" -msgstr "Das mais recentes para as mais antigas" - -#: ../../include/dir_fns.php:51 -msgid "Enable Safe Search" -msgstr "Habilitar busca tranquila" - -#: ../../include/dir_fns.php:53 -msgid "Disable Safe Search" -msgstr "Desabilitar busca tranquila" - -#: ../../include/dir_fns.php:55 -msgid "Safe Mode" -msgstr "Modo tranquilo" - -#: ../../include/enotify.php:41 -msgid "Red Matrix Notification" -msgstr "Notificação da Red Matrix" - -#: ../../include/enotify.php:42 -msgid "redmatrix" -msgstr "redmatrix" - -#: ../../include/enotify.php:44 -msgid "Thank You," -msgstr "Obrigado(a)," - -#: ../../include/enotify.php:46 -#, php-format -msgid "%s Administrator" -msgstr "Administrador de %s" - -#: ../../include/enotify.php:81 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../include/enotify.php:85 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "[Red:Notify] Nova mensagem recebida em %s" - -#: ../../include/enotify.php:87 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s te enviou uma nova mensagem privada em %3$s." - -#: ../../include/enotify.php:88 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s enviou %2$s para você." - -#: ../../include/enotify.php:88 -msgid "a private message" -msgstr "uma mensagem privada" - -#: ../../include/enotify.php:89 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Por favor, visite %s para ver e/ou responder as suas mensagens privadas." - -#: ../../include/enotify.php:144 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s comentou em [zrl=%3$s]um/a %4$s[/zrl]" - -#: ../../include/enotify.php:152 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s comentou em [zrl=%3$s]%5$s de %4$s[/zrl]" - -#: ../../include/enotify.php:161 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s comentou em [zrl=%3$s]seu %4$s[/zrl]" - -#: ../../include/enotify.php:172 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Red:Notify] Comentário na conversa #%1$d por %2$s" - -#: ../../include/enotify.php:173 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s comentou em um item/conversa que você acompanha." - -#: ../../include/enotify.php:176 ../../include/enotify.php:191 -#: ../../include/enotify.php:217 ../../include/enotify.php:236 -#: ../../include/enotify.php:250 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Por favor, visite %s para ver e/ou responder a conversa." - -#: ../../include/enotify.php:182 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "[Red:Notify] %s publicou no mural do seu perfil" - -#: ../../include/enotify.php:184 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s publicou no mural do seu perfil em %3$s" - -#: ../../include/enotify.php:186 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s publicou no [zrl=%3$s]seu mural[/zrl]" - -#: ../../include/enotify.php:210 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "[Red:Notify] %s etiquetou você" - -#: ../../include/enotify.php:211 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s mencionou você em %3$s" - -#: ../../include/enotify.php:212 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]mencionou você[/zrl]." - -#: ../../include/enotify.php:225 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "[Red:Notify] %1$s cutucou você" - -#: ../../include/enotify.php:226 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s cutucou você em %3$s" - -#: ../../include/enotify.php:227 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]cutucou você[/zrl]." - -#: ../../include/enotify.php:243 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "[Red:Notify] %s etiquetou a sua publicação" - -#: ../../include/enotify.php:244 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s marcou seu post em %3$s" - -#: ../../include/enotify.php:245 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s marcou [zrl=%3$s]seu post[/zrl]" - -#: ../../include/enotify.php:257 -msgid "[Red:Notify] Introduction received" -msgstr "[Red:Notify] Você recebeu uma apresentação" - -#: ../../include/enotify.php:258 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, você recebeu uma nova solicitação de conexão de '%2$s' em %3$s" - -#: ../../include/enotify.php:259 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, você recebeu [zrl=%2$s]uma nova solicitação de conexão[/zrl] de %3$s." - -#: ../../include/enotify.php:263 ../../include/enotify.php:282 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Você pode visitar seu perfil em %s" - -#: ../../include/enotify.php:265 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Por favor, visite %s para aprovar ou rejeitar a solicitação." - -#: ../../include/enotify.php:272 -msgid "[Red:Notify] Friend suggestion received" -msgstr "[Red:Notify] Foi recebida uma sugestão de amizade" - -#: ../../include/enotify.php:273 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, você recebeu uma sugestão de amizade de '%2$s' em %3$s" - -#: ../../include/enotify.php:274 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, você recebeu [zrl=%2$s]uma sugestão de amizade[/zrl] com %3$s de %4$s." - -#: ../../include/enotify.php:280 -msgid "Name:" -msgstr "Nome:" - -#: ../../include/enotify.php:281 -msgid "Photo:" -msgstr "Foto:" - -#: ../../include/enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Por favor, visite %s para aprovar ou rejeitar a sugestão." +#: ../../include/chat.php:126 +msgid "Room is full" +msgstr "A sala está cheia" #: ../../include/features.php:23 msgid "General Features" @@ -2085,11 +2639,6 @@ msgstr "Pré-visualizar a publicação" msgid "Allow previewing posts and comments before publishing them" msgstr "Permite visualizar publicações e comentários antes de publicá-los" -#: ../../include/features.php:43 ../../include/widgets.php:502 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Fontes do canal" - #: ../../include/features.php:43 msgid "Automatically import channel content from other channels or feeds" msgstr "Importar automaticamente conteúdo de outros canais ou fontes" @@ -2123,10 +2672,6 @@ msgstr "Filtros de coleções" msgid "Enable widget to display Network posts only from selected collections" msgstr "Habilita widget para exibir publicações da rede apenas para determinadas coleções" -#: ../../include/features.php:52 ../../include/widgets.php:264 -msgid "Saved Searches" -msgstr "Pesquisas salvas" - #: ../../include/features.php:52 msgid "Save search terms for re-use" msgstr "Termos de pesquisa salvos para reutilização" @@ -2219,72 +2764,231 @@ msgstr "Nuvem de etiquetas" msgid "Provide a personal tag cloud on your channel page" msgstr "Fornece uma nuvem de etiquetas pessoais à página do seu canal" -#: ../../include/follow.php:23 -msgid "Channel is blocked on this site." -msgstr "O canal está bloqueado neste site." +#: ../../include/permissions.php:13 +msgid "Can view my \"public\" stream and posts" +msgstr "Pode ver meus fluxo e publicações \"públicos\"" -#: ../../include/follow.php:28 -msgid "Channel location missing." -msgstr "A localização do canal foi perdida" +#: ../../include/permissions.php:14 +msgid "Can view my \"public\" channel profile" +msgstr "Pode ver o perfil \"público\" do meu canal" -#: ../../include/follow.php:54 -msgid "Response from remote channel was incomplete." -msgstr "A resposta do canal remoto está incompleta." +#: ../../include/permissions.php:15 +msgid "Can view my \"public\" photo albums" +msgstr "Pode ver meus álbuns de fotos \"públicos\"" -#: ../../include/follow.php:85 -msgid "Channel was deleted and no longer exists." -msgstr "O canal foi deletado e não existe mais." +#: ../../include/permissions.php:16 +msgid "Can view my \"public\" address book" +msgstr "Pode ver meu livro de endereços \"público\"" -#: ../../include/follow.php:132 -msgid "Channel discovery failed." -msgstr "A descoberta de canais falhou." +#: ../../include/permissions.php:17 +msgid "Can view my \"public\" file storage" +msgstr "Pode ver meu armazenamento de arquivos \"público\"" -#: ../../include/follow.php:149 -msgid "local account not found." -msgstr "a conta local não foi encontrada." +#: ../../include/permissions.php:18 +msgid "Can view my \"public\" pages" +msgstr "Pode ver minhas páginas \"públicas\"" -#: ../../include/follow.php:158 -msgid "Cannot connect to yourself." -msgstr "Não é possível conectar-se consigo mesmo." +#: ../../include/permissions.php:21 +msgid "Can send me their channel stream and posts" +msgstr "Pode me enviar seu fluxo e publicações" -#: ../../include/group.php:25 +#: ../../include/permissions.php:22 +msgid "Can post on my channel page (\"wall\")" +msgstr "Pode publicar na página do meu canal (\"mural\")" + +#: ../../include/permissions.php:23 +msgid "Can comment on my posts" +msgstr "Pode comentar minhas publicações" + +#: ../../include/permissions.php:24 +msgid "Can send me private mail messages" +msgstr "Pode me enviar mensagens privadas" + +#: ../../include/permissions.php:25 +msgid "Can post photos to my photo albums" +msgstr "Pode publicar fotos nos meus álbuns de fotos" + +#: ../../include/permissions.php:26 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Pode encaminhar para todos os contatos do meu canal via @menções na publicação" + +#: ../../include/permissions.php:26 +msgid "Advanced - useful for creating group forum channels" +msgstr "Avançado - útil para criar canais de fóruns de grupos" + +#: ../../include/permissions.php:27 +msgid "Can chat with me (when available)" +msgstr "Pode conversar comigo (quando disponívei)" + +#: ../../include/permissions.php:28 +msgid "Can write to my \"public\" file storage" +msgstr "Pode escrever em meu armazenamento de arquivos \"público\"" + +#: ../../include/permissions.php:29 +msgid "Can edit my \"public\" pages" +msgstr "Pode editar minhas páginas \"públicas\"" + +#: ../../include/permissions.php:31 +msgid "Can source my \"public\" posts in derived channels" +msgstr "Pode usar minhas publicações \"públicas\" como fonte para canais derivados" + +#: ../../include/permissions.php:31 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Avançado - muito útil em comunidades abertas" + +#: ../../include/permissions.php:33 +msgid "Can administer my channel resources" +msgstr "Pode administrar os recursos do meu canal" + +#: ../../include/permissions.php:33 msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes poderão ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente." +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Extremamente avançado. Não mexa nisso a não ser que saiba o que está fazendo" -#: ../../include/group.php:223 -msgid "Default privacy group for new contacts" -msgstr "Grupo de privacidade padrão para novos contatos" +#: ../../include/zot.php:587 +msgid "Invalid data packet" +msgstr "Pacote de dados inválido" -#: ../../include/group.php:242 ../../mod/admin.php:762 -msgid "All Channels" -msgstr "Todos os canais" +#: ../../include/zot.php:597 +msgid "Unable to verify channel signature" +msgstr "Não foi possível verificar a assinatura do canal" -#: ../../include/group.php:264 -msgid "edit" -msgstr "editar" +#: ../../include/zot.php:794 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Não foi possível verificar a assinatura do site para %s" -#: ../../include/group.php:285 -msgid "Collections" -msgstr "Coleções" +#: ../../include/contact_widgets.php:14 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d convite disponível" +msgstr[1] "%d convites disponíveis" -#: ../../include/group.php:286 -msgid "Edit collection" -msgstr "Editar coleção" +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:445 +msgid "Advanced" +msgstr "Avançado" -#: ../../include/group.php:287 -msgid "Create a new collection" -msgstr "Criar uma nova coleção" +#: ../../include/contact_widgets.php:22 +msgid "Find Channels" +msgstr "Pesquisar canais" -#: ../../include/group.php:288 -msgid "Channels not in any collection" -msgstr "Canais que não estão em nenhuma coleção" +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" +msgstr "Digite um nome ou interesse" -#: ../../include/group.php:290 ../../include/widgets.php:265 -msgid "add" -msgstr "adicionar" +#: ../../include/contact_widgets.php:24 +msgid "Connect/Follow" +msgstr "Conectar/Acompanhar" + +#: ../../include/contact_widgets.php:25 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Por exemplo: José da Silva, Pescaria" + +#: ../../include/contact_widgets.php:26 ../../mod/directory.php:206 +#: ../../mod/directory.php:211 ../../mod/connections.php:391 +msgid "Find" +msgstr "Pesquisar" + +#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 +msgid "Channel Suggestions" +msgstr "Sugestões de canais" + +#: ../../include/contact_widgets.php:29 +msgid "Random Profile" +msgstr "Perfil aleatório" + +#: ../../include/contact_widgets.php:30 +msgid "Invite Friends" +msgstr "Convidar amigos" + +#: ../../include/contact_widgets.php:32 +msgid "Exammple: name=fred and country=iceland" +msgstr "Exemplo: name=raoni and country=peru" + +#: ../../include/contact_widgets.php:33 +msgid "Advanced Find" +msgstr "Busca avançada" + +#: ../../include/contact_widgets.php:125 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d conexão em comum" +msgstr[1] "%d conexões em comum" + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Miscelânea" + +#: ../../include/datetime.php:152 ../../include/datetime.php:284 +msgid "year" +msgstr "ano" + +#: ../../include/datetime.php:157 ../../include/datetime.php:285 +msgid "month" +msgstr "mês" + +#: ../../include/datetime.php:162 ../../include/datetime.php:287 +msgid "day" +msgstr "dia" + +#: ../../include/datetime.php:275 +msgid "never" +msgstr "nunca" + +#: ../../include/datetime.php:281 +msgid "less than a second ago" +msgstr "menos de um segundo atrás" + +#: ../../include/datetime.php:284 +msgid "years" +msgstr "anos" + +#: ../../include/datetime.php:285 +msgid "months" +msgstr "meses" + +#: ../../include/datetime.php:286 +msgid "week" +msgstr "semana" + +#: ../../include/datetime.php:286 +msgid "weeks" +msgstr "semanas" + +#: ../../include/datetime.php:287 +msgid "days" +msgstr "dias" + +#: ../../include/datetime.php:288 +msgid "hour" +msgstr "hora" + +#: ../../include/datetime.php:288 +msgid "hours" +msgstr "horas" + +#: ../../include/datetime.php:289 +msgid "minute" +msgstr "minuto" + +#: ../../include/datetime.php:289 +msgid "minutes" +msgstr "minutos" + +#: ../../include/datetime.php:290 +msgid "second" +msgstr "segundo" + +#: ../../include/datetime.php:290 +msgid "seconds" +msgstr "segundos" + +#: ../../include/datetime.php:299 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s atrás" #: ../../include/identity.php:30 ../../mod/item.php:1244 msgid "Unable to obtain identity information from database" @@ -2323,19 +3027,14 @@ msgstr "Não foi possível recuperar a identidade criada" msgid "Default Profile" msgstr "Perfil padrão" -#: ../../include/identity.php:342 ../../include/profile_selectors.php:42 -#: ../../include/widgets.php:399 ../../mod/connedit.php:431 -msgid "Friends" -msgstr "Amigos" - #: ../../include/identity.php:509 msgid "Requested channel is not available." msgstr "Canal solicitado não está disponível." -#: ../../include/identity.php:557 ../../mod/achievements.php:8 -#: ../../mod/profile.php:16 ../../mod/blocks.php:10 ../../mod/connect.php:13 -#: ../../mod/filestorage.php:40 ../../mod/layouts.php:8 -#: ../../mod/webpages.php:8 +#: ../../include/identity.php:557 ../../mod/webpages.php:8 +#: ../../mod/connect.php:13 ../../mod/blocks.php:10 +#: ../../mod/filestorage.php:40 ../../mod/achievements.php:8 +#: ../../mod/layouts.php:8 ../../mod/profile.php:16 msgid "Requested profile is not available." msgstr "O perfil solicitado não está disponível." @@ -2521,45 +3220,6 @@ msgstr "Trabalho/emprego:" msgid "School/education:" msgstr "Escola/educação:" -#: ../../include/items.php:306 ../../mod/profperm.php:23 -#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:63 -#: ../../index.php:361 -msgid "Permission denied" -msgstr "Permissão negada" - -#: ../../include/items.php:830 -msgid "(Unknown)" -msgstr "(Desconhecido)" - -#: ../../include/items.php:3583 ../../mod/admin.php:159 -#: ../../mod/admin.php:921 ../../mod/admin.php:1124 ../../mod/display.php:32 -#: ../../mod/filestorage.php:18 ../../mod/home.php:63 ../../mod/thing.php:78 -#: ../../mod/viewsrc.php:18 -msgid "Item not found." -msgstr "O item não foi encontrado." - -#: ../../include/items.php:4007 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "A coleção não foi encontrada." - -#: ../../include/items.php:4022 -msgid "Collection is empty." -msgstr "A coleção está vazia." - -#: ../../include/items.php:4029 -#, php-format -msgid "Collection: %s" -msgstr "Coleção: %s" - -#: ../../include/items.php:4040 -#, php-format -msgid "Connection: %s" -msgstr "Conexão: %s" - -#: ../../include/items.php:4043 -msgid "Connection not found." -msgstr "A conexão não foi encontrada." - #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Excluir este item?" @@ -2677,652 +3337,407 @@ msgstr " " msgid "timeago.numbers" msgstr "timeago.numbers" -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "Falta o destinatário." +#: ../../mod/home.php:50 ../../mod/block.php:39 ../../mod/chanview.php:77 +#: ../../mod/page.php:47 ../../mod/wall_upload.php:28 +msgid "Channel not found." +msgstr "O canal não foi encontrado." -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "[sem assunto]" - -#: ../../include/message.php:42 -msgid "Unable to determine sender." -msgstr "Não foi possível determinar o remetente." - -#: ../../include/message.php:143 -msgid "Stored post could not be verified." -msgstr "Não foi possível verificar a publicação armazenada." - -#: ../../include/nav.php:77 ../../include/nav.php:96 ../../boot.php:1451 -msgid "Logout" -msgstr "Sair" - -#: ../../include/nav.php:77 ../../include/nav.php:96 -msgid "End this session" -msgstr "Encerrar essa sessão" - -#: ../../include/nav.php:80 ../../include/nav.php:130 -msgid "Home" -msgstr "Ver canal" - -#: ../../include/nav.php:80 -msgid "Your posts and conversations" -msgstr "Suas publicações e conversas" - -#: ../../include/nav.php:81 -msgid "Your profile page" -msgstr "A página do seu perfil" - -#: ../../include/nav.php:83 -msgid "Edit Profiles" -msgstr "Editar perfis" - -#: ../../include/nav.php:83 -msgid "Manage/Edit profiles" -msgstr "Administrar/Editar perfis" - -#: ../../include/nav.php:84 -msgid "Your photos" -msgstr "Suas fotos" - -#: ../../include/nav.php:85 -msgid "Your files" -msgstr "Seus arquivos" - -#: ../../include/nav.php:86 -msgid "Chat" -msgstr "Bate-papo" - -#: ../../include/nav.php:86 -msgid "Your chatrooms" -msgstr "Suas salas de bate-papo" - -#: ../../include/nav.php:87 -msgid "Your events" -msgstr "Seus eventos" - -#: ../../include/nav.php:88 -msgid "Your bookmarks" -msgstr "Seus links guardados" - -#: ../../include/nav.php:90 -msgid "Your webpages" -msgstr "Suas páginas web" - -#: ../../include/nav.php:94 ../../boot.php:1452 -msgid "Login" -msgstr "Entrar" - -#: ../../include/nav.php:94 -msgid "Sign in" -msgstr "Entrar" - -#: ../../include/nav.php:111 +#: ../../mod/home.php:89 #, php-format -msgid "%s - click to logout" -msgstr "%s - clique para sair" +msgid "Welcome to %s" +msgstr "Bem-vindo(a) a %s" -#: ../../include/nav.php:116 -msgid "Click to authenticate to your home hub" -msgstr "Clique para se autenticar com seu hub de origem" +#: ../../mod/follow.php:25 +msgid "Channel added." +msgstr "Canal adicionado." -#: ../../include/nav.php:130 -msgid "Home Page" -msgstr "Página inicial" +#: ../../mod/dirprofile.php:9 ../../mod/search.php:13 +#: ../../mod/directory.php:15 ../../mod/photos.php:443 ../../mod/display.php:9 +#: ../../mod/viewconnections.php:17 +msgid "Public access denied." +msgstr "Acesso público negado." -#: ../../include/nav.php:134 ../../mod/register.php:206 ../../boot.php:1428 -msgid "Register" -msgstr "Registrar" +#: ../../mod/dirprofile.php:92 ../../mod/directory.php:143 +#: ../../mod/profiles.php:561 +msgid "Age: " +msgstr "Idade: " -#: ../../include/nav.php:134 -msgid "Create an account" -msgstr "Criar uma conta" +#: ../../mod/dirprofile.php:95 ../../mod/directory.php:146 +msgid "Gender: " +msgstr "Gênero: " -#: ../../include/nav.php:139 ../../mod/help.php:60 ../../mod/help.php:65 -msgid "Help" -msgstr "Ajuda" +#: ../../mod/dirprofile.php:108 +msgid "Status: " +msgstr "Status:" -#: ../../include/nav.php:139 -msgid "Help and documentation" -msgstr "Ajuda e documentação" +#: ../../mod/dirprofile.php:109 +msgid "Sexual Preference: " +msgstr "Preferência sexual:" -#: ../../include/nav.php:142 ../../mod/apps.php:17 -msgid "Apps" -msgstr "Aplicações" +#: ../../mod/dirprofile.php:111 +msgid "Homepage: " +msgstr "Website:" -#: ../../include/nav.php:142 -msgid "Addon applications, utilities, games" -msgstr "Aplicações adicionais, utilitários, jogos" +#: ../../mod/dirprofile.php:112 +msgid "Hometown: " +msgstr "Cidade natal:" -#: ../../include/nav.php:144 -msgid "Search site content" -msgstr "Pesquisar o conteúdo do site" +#: ../../mod/dirprofile.php:114 +msgid "About: " +msgstr "Sobre:" -#: ../../include/nav.php:147 -msgid "Channel Locator" -msgstr "Localizador de canais" +#: ../../mod/dirprofile.php:162 +msgid "Keywords: " +msgstr "Palavras-chave:" -#: ../../include/nav.php:158 -msgid "Your matrix" -msgstr "Sua matriz" +#: ../../mod/dirprofile.php:175 ../../mod/mitem.php:78 ../../mod/xchan.php:27 +#: ../../mod/menu.php:120 +msgid "Not found." +msgstr "Não encontrado." -#: ../../include/nav.php:159 -msgid "Mark all matrix notifications seen" -msgstr "Marcar todas as notificações da matriz como vistas" +#: ../../mod/acl.php:239 +msgid "network" +msgstr "+ rede" -#: ../../include/nav.php:161 -msgid "Channel home" -msgstr "Página inicial do canal" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autorizar a conexão com a aplicação" -#: ../../include/nav.php:162 -msgid "Mark all channel notifications seen" -msgstr "Marcar todas as notificações de canais como vistas" +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Volte para a sua aplicação e digite este código de segurança:" -#: ../../include/nav.php:165 ../../include/nav.php:188 -#: ../../mod/connections.php:385 -msgid "Connections" -msgstr "Conexões" +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Por favor, autentique-se para continuar." -#: ../../include/nav.php:168 -msgid "Notices" -msgstr "Notificações" +#: ../../mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?" -#: ../../include/nav.php:168 -msgid "Notifications" -msgstr "Notificações" +#: ../../mod/api.php:105 ../../mod/settings.php:879 ../../mod/settings.php:884 +#: ../../mod/settings.php:955 ../../mod/profiles.php:483 +#: ../../mod/admin.php:421 +msgid "Yes" +msgstr "Sim" -#: ../../include/nav.php:169 -msgid "See all notifications" -msgstr "Ver todas as notificações" +#: ../../mod/api.php:106 ../../mod/settings.php:879 ../../mod/settings.php:884 +#: ../../mod/settings.php:955 ../../mod/profiles.php:484 +#: ../../mod/admin.php:419 +msgid "No" +msgstr "Não" -#: ../../include/nav.php:170 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Marcar todas as notificações de sistema como vistas" +#: ../../mod/editlayout.php:36 ../../mod/editpost.php:20 +#: ../../mod/editblock.php:8 ../../mod/editblock.php:27 +#: ../../mod/editblock.php:53 ../../mod/editwebpage.php:32 +msgid "Item not found" +msgstr "O item não foi encontrado" -#: ../../include/nav.php:172 -msgid "Mail" +#: ../../mod/editlayout.php:72 +msgid "Edit Layout" +msgstr "Editar layout" + +#: ../../mod/editlayout.php:82 +msgid "Delete layout?" +msgstr "Deletar layout?" + +#: ../../mod/editlayout.php:110 ../../mod/editpost.php:116 +#: ../../mod/editblock.php:115 ../../mod/editwebpage.php:147 +msgid "Insert YouTube video" +msgstr "Inserir vídeo do YouTube" + +#: ../../mod/editlayout.php:111 ../../mod/editpost.php:117 +#: ../../mod/editblock.php:116 ../../mod/editwebpage.php:148 +msgid "Insert Vorbis [.ogg] video" +msgstr "Inserir vídeo Vorbis (.ogg)" + +#: ../../mod/editlayout.php:112 ../../mod/editpost.php:118 +#: ../../mod/editblock.php:117 ../../mod/editwebpage.php:149 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Inserir áudio Vorbis (.ogg)" + +#: ../../mod/editlayout.php:146 +msgid "Delete Layout" +msgstr "Deletar layout" + +#: ../../mod/magic.php:70 +msgid "Hub not found." +msgstr "O hub não foi encontrado." + +#: ../../mod/probe.php:23 ../../mod/probe.php:29 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Carregar o URL retorna o erro: %1$s" + +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "A etiqueta foi removida" + +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Remover a etiqueta de item" + +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Selecione uma etiqueta para remover: " + +#: ../../mod/tagrm.php:93 ../../mod/photos.php:908 ../../mod/delegate.php:130 +msgid "Remove" +msgstr "Remover" + +#: ../../mod/new_channel.php:107 +msgid "Add a Channel" +msgstr "Adicionar um canal" + +#: ../../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 "Um canal é uma coleção sua de páginas relacionadas. Um canal pode ser usado para um perfil de rede social, um blog, grupos de conversação e fóruns, páginas de celebridades, e muito mais. Você pode criar tantos canais quanto seu provedor de serviço permita." + +#: ../../mod/new_channel.php:110 ../../mod/sources.php:103 +#: ../../mod/sources.php:137 +msgid "Channel Name" +msgstr "Nome do canal" + +#: ../../mod/new_channel.php:111 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " +msgstr "Exemplos: \"Beto Salinas\", \"Elis e seus Cavalos\", \"Futebol\", \"Grupo de aviadores\"" + +#: ../../mod/new_channel.php:112 +msgid "Choose a short nickname" +msgstr "Escolha um apelido curto" + +#: ../../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 "Seu apelido será usado para criar um endereço para o canal de fácil memorização (como um endereço de email), que você poderá compartilhar com outros." + +#: ../../mod/new_channel.php:114 +msgid "Or import an existing channel from another location" +msgstr "Ou importe um canal existente de outro local" + +#: ../../mod/new_channel.php:117 ../../mod/mitem.php:142 ../../mod/menu.php:84 +msgid "Create" +msgstr "Criar" + +#: ../../mod/pubsites.php:16 +msgid "Public Sites" +msgstr "Sites públicos" + +#: ../../mod/pubsites.php:19 +msgid "" +"The listed sites allow public registration into the Red Matrix. All sites in" +" the matrix are interlinked so membership on any of them conveys membership " +"in the matrix as a whole. Some sites may require subscription or provide " +"tiered service plans. The provider links may provide " +"additional details." +msgstr "Os sites listados permitem ao público geral registrar contas na Red Matrix. Todos os sites na matrix são interligados, portanto ser membro em qualquer um deles te torna membro na matrix como um todo. Alguns sites podem solicitar uma assinatura ou prover planos em níveis. Os links para cada provedor podem fornecer mais detalhes." + +#: ../../mod/pubsites.php:25 +msgid "Site URL" +msgstr "URL do site" + +#: ../../mod/pubsites.php:25 +msgid "Access Type" +msgstr "Tipo de acesso" + +#: ../../mod/pubsites.php:25 +msgid "Registration Policy" +msgstr "Política de registro" + +#: ../../mod/pubsites.php:25 ../../mod/profiles.php:344 +msgid "Location" +msgstr "Localização" + +#: ../../mod/update_search.php:46 ../../mod/update_network.php:23 +#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 +msgid "[Embedded content - reload page to view]" +msgstr "[Conteúdo incorporado - recarregue a página para ver]" + +#: ../../mod/group.php:20 +msgid "Collection created." +msgstr "A coleção foi criada." + +#: ../../mod/group.php:26 +msgid "Could not create collection." +msgstr "Não foi possível criar a coleção." + +#: ../../mod/group.php:54 +msgid "Collection updated." +msgstr "Coleção atualizada" + +#: ../../mod/group.php:86 +msgid "Create a collection of channels." +msgstr "Criar uma coleção de canais." + +#: ../../mod/group.php:87 ../../mod/group.php:183 +msgid "Collection Name: " +msgstr "Nome da coleção:" + +#: ../../mod/group.php:89 ../../mod/group.php:186 +msgid "Members are visible to other channels" +msgstr "Membros são visíveis para outros canais" + +#: ../../mod/group.php:107 +msgid "Collection removed." +msgstr "Coleção removida." + +#: ../../mod/group.php:109 +msgid "Unable to remove collection." +msgstr "Não foi possível remover a coleção." + +#: ../../mod/group.php:182 +msgid "Collection Editor" +msgstr "Editor de coleção" + +#: ../../mod/group.php:196 +msgid "Members" +msgstr "Membros" + +#: ../../mod/group.php:198 +msgid "All Connected Channels" +msgstr "Todas os canais conectados" + +#: ../../mod/group.php:231 +msgid "Click on a channel to add or remove." +msgstr "Clique em um canal para adicionar ou remover." + +#: ../../mod/thing.php:98 +msgid "Thing updated" +msgstr "A coisa foi atualizada" + +#: ../../mod/thing.php:158 +msgid "Object store: failed" +msgstr "Armazenamento do objeto: falhou" + +#: ../../mod/thing.php:162 +msgid "Thing added" +msgstr "A coisa foi adicionada" + +#: ../../mod/thing.php:182 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" + +#: ../../mod/thing.php:234 +msgid "Show Thing" +msgstr "Exibir coisa" + +#: ../../mod/thing.php:241 +msgid "item not found." +msgstr "o item não foi encontrado" + +#: ../../mod/thing.php:269 +msgid "Edit Thing" +msgstr "Editar coisa" + +#: ../../mod/thing.php:271 ../../mod/thing.php:318 +msgid "Select a profile" +msgstr "Selecione um perfil" + +#: ../../mod/thing.php:273 ../../mod/thing.php:320 +msgid "Select a category of stuff. e.g. I ______ something" +msgstr "Escolha uma categoria de coisas. e.g. Eu ______ algo" + +#: ../../mod/thing.php:275 ../../mod/thing.php:321 +msgid "Post an activity" +msgstr "Publique uma atividade" + +#: ../../mod/thing.php:275 ../../mod/thing.php:321 +msgid "Only sends to viewers of the applicable profile" +msgstr "Envia apenas para a audiência do perfil aplicável" + +#: ../../mod/thing.php:277 ../../mod/thing.php:323 +msgid "Name of thing e.g. something" +msgstr "Nome da coisa e.g. coisinha" + +#: ../../mod/thing.php:279 ../../mod/thing.php:324 +msgid "URL of thing (optional)" +msgstr "URL da coisa (opcional)" + +#: ../../mod/thing.php:281 ../../mod/thing.php:325 +msgid "URL for photo of thing (optional)" +msgstr "URL para foto da coisa (opcional)" + +#: ../../mod/thing.php:316 +msgid "Add Thing to your Profile" +msgstr "Adicionar a coisa ao seu perfil" + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Identificador de solicitação inválido" + +#: ../../mod/notifications.php:35 +msgid "Discard" +msgstr "Descartar" + +#: ../../mod/notifications.php:51 ../../mod/connedit.php:379 +#: ../../mod/connedit.php:516 +msgid "Ignore" +msgstr "Ignorar" + +#: ../../mod/notifications.php:94 ../../mod/notify.php:54 +msgid "No more system notifications." +msgstr "Sem novas notificações do sistema." + +#: ../../mod/notifications.php:98 ../../mod/notify.php:58 +msgid "System Notifications" +msgstr "Notificações do sistema" + +#: ../../mod/block.php:27 ../../mod/page.php:35 +msgid "Invalid item." +msgstr "Item inválido." + +#: ../../mod/block.php:75 ../../mod/help.php:72 ../../mod/page.php:83 +#: ../../mod/display.php:100 ../../index.php:237 +msgid "Page not found." +msgstr "Página não encontrada." + +#: ../../mod/message.php:31 ../../mod/mail.php:121 +msgid "Messages" msgstr "Mensagens" -#: ../../include/nav.php:172 -msgid "Private mail" -msgstr "Mensagens privadas" +#: ../../mod/message.php:41 +msgid "Conversation removed." +msgstr "A conversa foi removida." -#: ../../include/nav.php:173 -msgid "See all private messages" -msgstr "Ver todas as mensagens privadas" +#: ../../mod/message.php:56 +msgid "No messages." +msgstr "Nenhuma mensagem." -#: ../../include/nav.php:174 -msgid "Mark all private messages seen" -msgstr "Marcar todas as mensagens privadas como vistas" +#: ../../mod/message.php:72 ../../mod/mail.php:292 +msgid "Delete message" +msgstr "Excluir a mensagem" -#: ../../include/nav.php:175 -msgid "Inbox" -msgstr "Recebidas" +#: ../../mod/message.php:74 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" -#: ../../include/nav.php:176 -msgid "Outbox" -msgstr "Enviadas" +#: ../../mod/rpost.php:86 ../../mod/editpost.php:42 +msgid "Edit post" +msgstr "Editar a publicação" -#: ../../include/nav.php:177 ../../include/widgets.php:535 -msgid "New Message" -msgstr "Nova mensagem" +#: ../../mod/directory.php:207 +msgid "Finding:" +msgstr "Pesquisando:" -#: ../../include/nav.php:180 -msgid "Event Calendar" -msgstr "Agenda de eventos" +#: ../../mod/directory.php:215 +msgid "next page" +msgstr "próxima página" -#: ../../include/nav.php:181 -msgid "See all events" -msgstr "Ver todos os eventos" +#: ../../mod/directory.php:215 +msgid "previous page" +msgstr "página anterior" -#: ../../include/nav.php:182 -msgid "Mark all events seen" -msgstr "Marcar todos os eventos como vistos" - -#: ../../include/nav.php:184 -msgid "Channel Select" -msgstr "Seleção de canal" - -#: ../../include/nav.php:184 -msgid "Manage Your Channels" -msgstr "Gerencie os seus canais" - -#: ../../include/nav.php:186 ../../include/widgets.php:513 -#: ../../mod/admin.php:976 ../../mod/admin.php:1181 -msgid "Settings" -msgstr "Configurações" - -#: ../../include/nav.php:186 -msgid "Account/Channel Settings" -msgstr "Configurações da conta/canal" - -#: ../../include/nav.php:188 -msgid "Manage/Edit Friends and Connections" -msgstr "Gerenciar/editar os amigos e as conexões" - -#: ../../include/nav.php:195 ../../mod/admin.php:117 -msgid "Admin" -msgstr "Admin" - -#: ../../include/nav.php:195 -msgid "Site Setup and Configuration" -msgstr "Configuração do site" - -#: ../../include/nav.php:220 -msgid "Nothing new here" -msgstr "Nada de novo aqui" - -#: ../../include/nav.php:225 -msgid "Please wait..." -msgstr "Por favor, aguarde..." - -#: ../../include/network.php:652 -msgid "view full size" -msgstr "ver na tela inteira" - -#: ../../include/plugin.php:486 ../../include/plugin.php:488 -msgid "Click here to upgrade." -msgstr "Clique aqui para atualizar." - -#: ../../include/plugin.php:494 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Essa ação excede o limite definido para o seu plano de assinatura." - -#: ../../include/plugin.php:499 -msgid "This action is not available under your subscription plan." -msgstr "Essa ação não está disponível para o seu plano de assinatura." - -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "Masculino" - -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Feminino" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Atualmente masculino" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Atualmente feminino" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Masculino a maior parte do tempo" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Feminino a maior parte do tempo" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgênero" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Intersexuado" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transexual" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafrodita" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neutro" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Não específico" - -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "Outro" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Indeciso" - -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Homens" - -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Mulheres" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Gays" - -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lésbicas" - -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Sem preferência" - -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Bissexuais" - -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Autossexuais" - -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Abstinentes" - -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Virgens" - -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Desviantes" - -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Fetiches" - -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Abundância" - -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Não sexuais" - -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "Solteiro(a)" - -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Solitário(a)" - -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "Disponível" - -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Não disponível" - -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "Tem uma paixão" - -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "Apaixonado" - -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "Saindo com alguém" - -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Infiel" - -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Viciado(a) em sexo" - -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Amigos com benefícios" - -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "Casual" - -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Envolvido(a)" - -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "Casado(a)" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "Casado imaginariamente" - -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "Parceiros" - -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "Coabitando" - -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "Direito comum" - -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "Feliz" - -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "Não estou procurando" - -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Swinger" - -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Traído(a)" - -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "Separado(a)" - -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Instável" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Divorciado(a)" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "Divorciado imaginariamente" - -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Viúvo(a)" - -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Incerto(a)" - -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "É complicado" - -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Não importa" - -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Pergunte-me" - -#: ../../include/reddav.php:1045 -msgid "Edit File properties" -msgstr "Editar propriedades do arquivo" - -#: ../../include/zot.php:587 -msgid "Invalid data packet" -msgstr "Pacote de dados inválido" - -#: ../../include/zot.php:597 -msgid "Unable to verify channel signature" -msgstr "Não foi possível verificar a assinatura do canal" - -#: ../../include/zot.php:794 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Não foi possível verificar a assinatura do site para %s" - -#: ../../include/security.php:301 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão." - -#: ../../include/widgets.php:79 -msgid "App Category" -msgstr "Categoria de aplicativos" - -#: ../../include/widgets.php:80 -msgid "System" -msgstr "Sistema" - -#: ../../include/widgets.php:82 -msgid "Featured" -msgstr "Destacado" - -#: ../../include/widgets.php:129 ../../mod/suggest.php:53 -msgid "Ignore/Hide" -msgstr "Ignorar/Ocultar" - -#: ../../include/widgets.php:135 ../../mod/connections.php:266 -msgid "Suggestions" -msgstr "Sugestões" - -#: ../../include/widgets.php:136 -msgid "See more..." -msgstr "Veja mais..." - -#: ../../include/widgets.php:158 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Você tem %1$.0f de %2$.0f conexões permitidas." - -#: ../../include/widgets.php:164 -msgid "Add New Connection" -msgstr "Adicionar nova conexão" - -#: ../../include/widgets.php:165 -msgid "Enter the channel address" -msgstr "Digite o endereço do canal" - -#: ../../include/widgets.php:166 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Por exemplo: joao@exemplo.com, http://exemplo.com/maria" - -#: ../../include/widgets.php:183 -msgid "Notes" -msgstr "Notas" - -#: ../../include/widgets.php:255 -msgid "Remove term" -msgstr "Remover termo" - -#: ../../include/widgets.php:334 -msgid "Archives" -msgstr "Arquivos" - -#: ../../include/widgets.php:396 -msgid "Refresh" -msgstr "Atualizar" - -#: ../../include/widgets.php:397 ../../mod/connedit.php:428 -msgid "Me" -msgstr "Eu" - -#: ../../include/widgets.php:398 ../../mod/connedit.php:430 -msgid "Best Friends" -msgstr "Melhores amigos" - -#: ../../include/widgets.php:400 -msgid "Co-workers" -msgstr "Colegas de trabalho" - -#: ../../include/widgets.php:401 ../../mod/connedit.php:432 -msgid "Former Friends" -msgstr "Amigos afastados" - -#: ../../include/widgets.php:402 ../../mod/connedit.php:433 -msgid "Acquaintances" -msgstr "Conhecidos" - -#: ../../include/widgets.php:403 -msgid "Everybody" -msgstr "Todos" - -#: ../../include/widgets.php:435 -msgid "Account settings" -msgstr "Configurações da conta" - -#: ../../include/widgets.php:441 -msgid "Channel settings" -msgstr "Configurações do canal" - -#: ../../include/widgets.php:447 -msgid "Additional features" -msgstr "Recursos adicionais" - -#: ../../include/widgets.php:453 -msgid "Feature settings" -msgstr "Configurações dos recursos" - -#: ../../include/widgets.php:459 -msgid "Display settings" -msgstr "Configurações de exibição" - -#: ../../include/widgets.php:465 -msgid "Connected apps" -msgstr "Aplicações conectadas" - -#: ../../include/widgets.php:471 -msgid "Export channel" -msgstr "Exportar o canal" - -#: ../../include/widgets.php:483 -msgid "Automatic Permissions (Advanced)" -msgstr "Permissões automáticas (avançado)" - -#: ../../include/widgets.php:493 -msgid "Premium Channel Settings" -msgstr "Configurações de canal premium" - -#: ../../include/widgets.php:530 -msgid "Check Mail" -msgstr "Checar mensagens" - -#: ../../include/widgets.php:611 -msgid "Chat Rooms" -msgstr "Salas de bate-papo" - -#: ../../include/widgets.php:629 -msgid "Bookmarked Chatrooms" -msgstr "Salas de bate-papo guardadas" - -#: ../../include/widgets.php:647 -msgid "Suggested Chatrooms" -msgstr "Salas de bate-papo sugeridas" - -#: ../../mod/mood.php:138 -msgid "Mood" -msgstr "Humor" - -#: ../../mod/mood.php:139 -msgid "Set your current mood and tell your friends" -msgstr "Marque seu humor atual e compartilhe com seus amigos" +#: ../../mod/directory.php:222 +msgid "No entries (some entries may be hidden)." +msgstr "Nenhuma entrada (algumas entradas podem estar escondidas)." #: ../../mod/mitem.php:14 ../../mod/menu.php:92 msgid "Menu not found." @@ -3344,11 +3759,6 @@ msgstr "O elemento de menu foi adicionado." msgid "Unable to add menu element." msgstr "Não foi possível adicionar o elemento de menu." -#: ../../mod/mitem.php:78 ../../mod/dirprofile.php:175 ../../mod/menu.php:120 -#: ../../mod/xchan.php:27 -msgid "Not found." -msgstr "Não encontrado." - #: ../../mod/mitem.php:96 msgid "Manage Menu Elements" msgstr "Administrar elementos de menu" @@ -3421,10 +3831,6 @@ msgstr "Ordem na lista" msgid "Higher numbers will sink to bottom of listing" msgstr "Números mais altos descem para o fim da lista" -#: ../../mod/mitem.php:142 ../../mod/menu.php:84 ../../mod/new_channel.php:117 -msgid "Create" -msgstr "Criar" - #: ../../mod/mitem.php:154 msgid "Menu item not found." msgstr "O item de menu não foi encontrado." @@ -3445,720 +3851,290 @@ msgstr "Editar elemento de menu" msgid "Modify" msgstr "Modificar" -#: ../../mod/ping.php:192 -msgid "sent you a private message" -msgstr "lhe enviou uma mensagem privada" +#: ../../mod/connect.php:55 ../../mod/connect.php:103 +msgid "Continue" +msgstr "Continuar" -#: ../../mod/ping.php:250 -msgid "added your channel" -msgstr "adicionou seu canal" +#: ../../mod/connect.php:84 +msgid "Premium Channel Setup" +msgstr "Configuração de canal premium" -#: ../../mod/ping.php:294 -msgid "posted an event" -msgstr "publicou um evento" +#: ../../mod/connect.php:86 +msgid "Enable premium channel connection restrictions" +msgstr "Habilitar restrições de canal premium para conexão" -#: ../../mod/acl.php:239 -msgid "network" -msgstr "+ rede" - -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "As configurações de tema foram atualizadas." - -#: ../../mod/admin.php:92 ../../mod/admin.php:440 -msgid "Site" -msgstr "Site" - -#: ../../mod/admin.php:93 -msgid "Accounts" -msgstr "Contas" - -#: ../../mod/admin.php:94 ../../mod/admin.php:883 -msgid "Channels" -msgstr "Canais" - -#: ../../mod/admin.php:95 ../../mod/admin.php:974 ../../mod/admin.php:1016 -msgid "Plugins" -msgstr "Plugins" - -#: ../../mod/admin.php:96 ../../mod/admin.php:1179 ../../mod/admin.php:1215 -msgid "Themes" -msgstr "Temas" - -#: ../../mod/admin.php:97 ../../mod/admin.php:540 -msgid "Server" -msgstr "Servidor" - -#: ../../mod/admin.php:98 -msgid "DB updates" -msgstr "Atualizações do Banco de Dados" - -#: ../../mod/admin.php:112 ../../mod/admin.php:119 ../../mod/admin.php:1302 -msgid "Logs" -msgstr "Logs" - -#: ../../mod/admin.php:118 -msgid "Plugin Features" -msgstr "Recursos dos plugins" - -#: ../../mod/admin.php:120 -msgid "User registrations waiting for confirmation" -msgstr "Registros de usuário aguardando confirmação" - -#: ../../mod/admin.php:197 -msgid "Message queues" -msgstr "Filas de mensagem" - -#: ../../mod/admin.php:202 ../../mod/admin.php:439 ../../mod/admin.php:539 -#: ../../mod/admin.php:748 ../../mod/admin.php:882 ../../mod/admin.php:973 -#: ../../mod/admin.php:1015 ../../mod/admin.php:1178 ../../mod/admin.php:1214 -#: ../../mod/admin.php:1301 -msgid "Administration" -msgstr "Administração" - -#: ../../mod/admin.php:203 -msgid "Summary" -msgstr "Resumo" - -#: ../../mod/admin.php:205 -msgid "Registered users" -msgstr "Usuários registrados" - -#: ../../mod/admin.php:207 ../../mod/admin.php:543 -msgid "Pending registrations" -msgstr "Registros pendentes" - -#: ../../mod/admin.php:208 -msgid "Version" -msgstr "Versão" - -#: ../../mod/admin.php:210 ../../mod/admin.php:544 -msgid "Active plugins" -msgstr "Plugins ativos" - -#: ../../mod/admin.php:360 -msgid "Site settings updated." -msgstr "As configurações de site foram atualizadas." - -#: ../../mod/admin.php:389 ../../mod/settings.php:708 -msgid "No special theme for mobile devices" -msgstr "Sem tema especial para aparelhos móveis" - -#: ../../mod/admin.php:391 -msgid "No special theme for accessibility" -msgstr "Sem tema especial para acessibilidade" - -#: ../../mod/admin.php:419 ../../mod/api.php:106 ../../mod/profiles.php:484 -#: ../../mod/settings.php:879 ../../mod/settings.php:884 -#: ../../mod/settings.php:955 -msgid "No" -msgstr "Não" - -#: ../../mod/admin.php:420 -msgid "Yes - with approval" -msgstr "Sim - pendente aprovação" - -#: ../../mod/admin.php:421 ../../mod/api.php:105 ../../mod/profiles.php:483 -#: ../../mod/settings.php:879 ../../mod/settings.php:884 -#: ../../mod/settings.php:955 -msgid "Yes" -msgstr "Sim" - -#: ../../mod/admin.php:426 -msgid "My site is not a public server" -msgstr "Meu site não é um servidor público" - -#: ../../mod/admin.php:427 -msgid "My site has paid access only" -msgstr "Meu site oferece somente acesso pago" - -#: ../../mod/admin.php:428 -msgid "My site has free access only" -msgstr "Meu site oferece somente acesso gratuito" - -#: ../../mod/admin.php:429 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "Meu site oferece contas gratuitas com recursos adicionais pagos" - -#: ../../mod/admin.php:442 ../../mod/register.php:189 -msgid "Registration" -msgstr "Registro" - -#: ../../mod/admin.php:443 -msgid "File upload" -msgstr "Carregamento de arquivos" - -#: ../../mod/admin.php:444 -msgid "Policies" -msgstr "Políticas" - -#: ../../mod/admin.php:449 -msgid "Site name" -msgstr "Nome do site" - -#: ../../mod/admin.php:450 -msgid "Banner/Logo" -msgstr "Cartaz/Logo" - -#: ../../mod/admin.php:451 -msgid "Administrator Information" -msgstr "Informações do Administrador" - -#: ../../mod/admin.php:451 +#: ../../mod/connect.php:87 msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Informações de contato com administradores do site. Exibida na página siteinfo. BBCode pode ser usado aqui." +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Por favor, insira suas restrições ou condições, como um recibo de depósito, normas de conduta, etc." -#: ../../mod/admin.php:452 -msgid "System language" -msgstr "Idioma do sistema" - -#: ../../mod/admin.php:453 -msgid "System theme" -msgstr "Tema do sistema" - -#: ../../mod/admin.php:453 +#: ../../mod/connect.php:89 ../../mod/connect.php:109 msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Tema padrão do sistema - pode ser sobrescrito por perfis de usuário - mudar configurações do tema" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Este canal pode exigir passos adicionais ou compreensão das seguintes condições antes de conectar:" -#: ../../mod/admin.php:454 -msgid "Mobile system theme" -msgstr "Tema do sistema móvel" - -#: ../../mod/admin.php:454 -msgid "Theme for mobile devices" -msgstr "Tema para dispositivos móveis" - -#: ../../mod/admin.php:455 -msgid "Accessibility system theme" -msgstr "Tema do sistema acessível" - -#: ../../mod/admin.php:455 -msgid "Accessibility theme" -msgstr "Tema acessível" - -#: ../../mod/admin.php:456 -msgid "Channel to use for this website's static pages" -msgstr "Canal a utilizar para as páginas estáticas desse website" - -#: ../../mod/admin.php:456 -msgid "Site Channel" -msgstr "Canal do site" - -#: ../../mod/admin.php:458 -msgid "Maximum image size" -msgstr "Tamanho máximo de imagens" - -#: ../../mod/admin.php:458 +#: ../../mod/connect.php:90 msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Tamanho máximo em bytes de imagens carregadas. O padrão é 0, significando sem limites." +"Potential connections will then see the following text before proceeding:" +msgstr "Tentativas de conexões verão então o seguinte texto antes de prosseguir:" -#: ../../mod/admin.php:459 -msgid "Does this site allow new member registration?" -msgstr "Este site permite o registro de novos membros?" - -#: ../../mod/admin.php:460 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Qual descreve melhor os tipos de conta oferecidas por este hub?" - -#: ../../mod/admin.php:461 -msgid "Register text" -msgstr "Texto de registro" - -#: ../../mod/admin.php:461 -msgid "Will be displayed prominently on the registration page." -msgstr "Será exibido proeminentemente na página de registro." - -#: ../../mod/admin.php:462 -msgid "Accounts abandoned after x days" -msgstr "Contas abandonadas após x dias" - -#: ../../mod/admin.php:462 +#: ../../mod/connect.php:91 ../../mod/connect.php:112 msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Não gastará recursos do sistema coletando de sites externos para contas abandonadas. Use 0 para sem limite de tempo." +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Ao prosseguir, eu certifico que cumpri todas as instruções exibidas nesta página." -#: ../../mod/admin.php:463 -msgid "Allowed friend domains" -msgstr "Domínios permitidos para amigos" +#: ../../mod/connect.php:100 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Nenhuma instrução foi especificada pelo dono do canal.)" -#: ../../mod/admin.php:463 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Lista, separada por vírgulas, de domínios permitidos para estabelecer amizades com este site. Wildcards são aceitas. Vazio para permitir qualquer domínio" +#: ../../mod/connect.php:108 +msgid "Restricted or Premium Channel" +msgstr "Canal restrito ou premium" -#: ../../mod/admin.php:464 -msgid "Allowed email domains" -msgstr "Domínios permitidos de e-mail" +#: ../../mod/item.php:147 +msgid "Unable to locate original post." +msgstr "Não foi possível localizar a publicação original." -#: ../../mod/admin.php:464 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Lista, separada por vírgulas, de domínios permitidos em endereços de e-mail para registros nesse site. Wildcards são aceitas. Vazio para permitir qualquer domínio" +#: ../../mod/item.php:352 +msgid "Empty post discarded." +msgstr "A publicação em branco foi descartada." -#: ../../mod/admin.php:465 -msgid "Block public" -msgstr "Bloquear público" +#: ../../mod/item.php:392 +msgid "Executable content type not permitted to this channel." +msgstr "Conteúdo de tipo executável não permitido para este canal." -#: ../../mod/admin.php:465 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Marque para bloquear o acesso público a todas as páginas pessoais que seriam públicas, a não ser que se esteja autenticado." +#: ../../mod/item.php:806 +msgid "System error. Post not saved." +msgstr "Erro no sistema. A publicação não foi salva." -#: ../../mod/admin.php:466 -msgid "Force publish" -msgstr "Forçar publicação" - -#: ../../mod/admin.php:466 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Marque para forçar todos os perfis neste site a aparecerem listados no diretório do site." - -#: ../../mod/admin.php:467 -msgid "Disable discovery tab" -msgstr "Desabilitar a aba \"Descubra\"" - -#: ../../mod/admin.php:467 -msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." -msgstr "Remove da visualização de rede a aba com conteúdos públicos obtidos de fontes escolhidas para esse site." - -#: ../../mod/admin.php:468 -msgid "No login on Homepage" -msgstr "Sem formulário de autenticação na página inicial" - -#: ../../mod/admin.php:468 -msgid "" -"Check to hide the login form from your sites homepage when visitors arrive " -"who are not logged in (e.g. when you put the content of the homepage in via " -"the site channel)." -msgstr "Marque para esconder o formulário de autenticação da página inicial do seu site quando visitantes chegarem sem estar autenticados (e.g. quando você inclui os conteúdos da página inicial através do canal do site)." - -#: ../../mod/admin.php:470 -msgid "Proxy user" -msgstr "Usuário do proxy" - -#: ../../mod/admin.php:471 -msgid "Proxy URL" -msgstr "URL do proxy" - -#: ../../mod/admin.php:472 -msgid "Network timeout" -msgstr "Timeout da rede" - -#: ../../mod/admin.php:472 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valor em segundos. Use 0 para ilimitado (não recomendado)." - -#: ../../mod/admin.php:473 -msgid "Delivery interval" -msgstr "Intervalo de entrega" - -#: ../../mod/admin.php:473 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Atrase os processos de entrega em segundo plano por este número de segundos para reduzir a carga do sistema. Recomendado: 4-5 para hosts compartilhados, 2-3 para servidores virtuais privados. 0-1 para grandes servidores dedicados." - -#: ../../mod/admin.php:474 -msgid "Poll interval" -msgstr "Intervalo de coleta" - -#: ../../mod/admin.php:474 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Atrase os processos de coleta em segundo plano por este número de segundos para reduzir a carga do sistema. Se 0, use o intervalo de entrega." - -#: ../../mod/admin.php:475 -msgid "Maximum Load Average" -msgstr "Carga média máxima" - -#: ../../mod/admin.php:475 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Carga máxima do sistema antes de adiar processos de entrega e coleta - padrão 50." - -#: ../../mod/admin.php:531 -msgid "No server found" -msgstr "Nenhum servidor foi encontrado" - -#: ../../mod/admin.php:538 ../../mod/admin.php:762 -msgid "ID" -msgstr "ID" - -#: ../../mod/admin.php:538 -msgid "for channel" -msgstr "para o canal" - -#: ../../mod/admin.php:538 -msgid "on server" -msgstr "no servidor" - -#: ../../mod/admin.php:538 -msgid "Status" -msgstr "Status" - -#: ../../mod/admin.php:559 -msgid "Update has been marked successful" -msgstr "A atualização foi designada bem sucedida" - -#: ../../mod/admin.php:569 +#: ../../mod/item.php:1249 #, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Execução de %s falhou. Verifique os logs do sistema." +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Você atingiu o seu limite de %1$.0f publicações de novos tópicos." -#: ../../mod/admin.php:572 +#: ../../mod/item.php:1255 #, php-format -msgid "Update %s was successfully applied." -msgstr "A atualização %s foi aplicada com sucesso." +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Você atingiu o seu limite de %1$.0f páginas web." -#: ../../mod/admin.php:576 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "A atualização %s não retornou um status. Situação incerta quando ao seu sucesso." - -#: ../../mod/admin.php:579 -#, php-format -msgid "Update function %s could not be found." -msgstr "A função de atualização %s não foi encontrada." - -#: ../../mod/admin.php:594 -msgid "No failed updates." -msgstr "Nenhuma falha nas atualizações." - -#: ../../mod/admin.php:598 -msgid "Failed Updates" -msgstr "Falha nas atualizações" - -#: ../../mod/admin.php:600 -msgid "Mark success (if update was manually applied)" -msgstr "Marque sucesso (se a atualização foi aplicada manualmente)" - -#: ../../mod/admin.php:601 -msgid "Attempt to execute this update step automatically" -msgstr "Tente executar este passo da atualização automaticamente" - -#: ../../mod/admin.php:627 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s usuário foi bloqueado/desbloqueado" -msgstr[1] "%s usuários foram bloqueados/desbloqueados" - -#: ../../mod/admin.php:634 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s usuário foi deletado" -msgstr[1] "%s usuários foram deletados" - -#: ../../mod/admin.php:665 -msgid "Account not found" -msgstr "A conta não foi encontrada" - -#: ../../mod/admin.php:676 -#, php-format -msgid "User '%s' deleted" -msgstr "O usuário/a '%s' foi deletado/a" - -#: ../../mod/admin.php:685 -#, php-format -msgid "User '%s' unblocked" -msgstr "O usuário/a '%s' foi desbloqueado/a" - -#: ../../mod/admin.php:685 -#, php-format -msgid "User '%s' blocked" -msgstr "O usuário/a '%s' foi bloqueado/a" - -#: ../../mod/admin.php:749 ../../mod/admin.php:761 -msgid "Users" -msgstr "Usuários" - -#: ../../mod/admin.php:751 ../../mod/admin.php:885 -msgid "select all" -msgstr "selecionar tudo" - -#: ../../mod/admin.php:752 -msgid "User registrations waiting for confirm" -msgstr "Registros de usuário aguardando confirmação" - -#: ../../mod/admin.php:753 -msgid "Request date" -msgstr "Data de requisição" - -#: ../../mod/admin.php:754 -msgid "No registrations." -msgstr "Nenhum registro." - -#: ../../mod/admin.php:755 -msgid "Approve" -msgstr "Aprovar" - -#: ../../mod/admin.php:756 -msgid "Deny" -msgstr "Negar" - -#: ../../mod/admin.php:758 ../../mod/connedit.php:372 -#: ../../mod/connedit.php:515 -msgid "Block" -msgstr "Bloquear" - -#: ../../mod/admin.php:759 ../../mod/connedit.php:372 -#: ../../mod/connedit.php:515 -msgid "Unblock" -msgstr "Desbloquear" - -#: ../../mod/admin.php:762 -msgid "Register date" -msgstr "Data de registro" - -#: ../../mod/admin.php:762 -msgid "Last login" -msgstr "Última autenticação" - -#: ../../mod/admin.php:762 -msgid "Expires" -msgstr "Expira" - -#: ../../mod/admin.php:762 -msgid "Service Class" -msgstr "Classe de serviço" - -#: ../../mod/admin.php:764 +#: ../../mod/suggest.php:35 msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Os usuários selecionados serão deletados!\\n\\nTudo o que esses usuários postaram neste site será permanentemente deletado!\\n\\nTem certeza?" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Nenhuma sugestão disponível. Se este site é novo, por favor tente novamente em 24 horas." -#: ../../mod/admin.php:765 +#: ../../mod/network.php:79 +msgid "No such group" +msgstr "Este grupo não existe" + +#: ../../mod/network.php:119 +msgid "Search Results For:" +msgstr "Resultados da busca por:" + +#: ../../mod/network.php:173 +msgid "Collection is empty" +msgstr "A coleção está vazia" + +#: ../../mod/network.php:181 +msgid "Collection: " +msgstr "Coleção:" + +#: ../../mod/network.php:194 +msgid "Connection: " +msgstr "Conexão:" + +#: ../../mod/network.php:197 +msgid "Invalid connection." +msgstr "Conexão inválida." + +#: ../../mod/siteinfo.php:57 +#, php-format +msgid "Version %s" +msgstr "Versão %s" + +#: ../../mod/siteinfo.php:76 +msgid "Installed plugins/addons/apps:" +msgstr "Plugins/complementos/aplicações instalados:" + +#: ../../mod/siteinfo.php:89 +msgid "No installed plugins/addons/apps" +msgstr "Nenhum plugin/complemento/aplicação instalado" + +#: ../../mod/siteinfo.php:97 +msgid "Red" +msgstr "Red" + +#: ../../mod/siteinfo.php:98 msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "O/A usuário/a {0} será deletado/a!\\n\\nTudo o que esse/a usuário/a postou neste site será permanentemente deletado!\\n\\nTem certeza?" +"This is a hub of the Red Matrix - a global cooperative network of " +"decentralised privacy enhanced websites." +msgstr "Este é um hub da Red Matrix - uma rede global cooperativa de websites descentralizados com privacidade aprimorada." -#: ../../mod/admin.php:797 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channelss censored/uncensored" -msgstr[0] "%s canal censurado/descensurado" -msgstr[1] "%s canais censurados/descensurados" +#: ../../mod/siteinfo.php:101 +msgid "Running at web location" +msgstr "Sendo executado no endereço web" -#: ../../mod/admin.php:804 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s canal deletado" -msgstr[1] "%s canais deletados" - -#: ../../mod/admin.php:823 -msgid "Channel not found" -msgstr "Canal não encontrado" - -#: ../../mod/admin.php:834 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Canal '%s' deletado" - -#: ../../mod/admin.php:844 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Canal '%s' não censurado" - -#: ../../mod/admin.php:844 -#, php-format -msgid "Channel '%s' censored" -msgstr "Canal '%s' censurado" - -#: ../../mod/admin.php:887 -msgid "Censor" -msgstr "Censurar" - -#: ../../mod/admin.php:888 -msgid "Uncensor" -msgstr "Não censurar" - -#: ../../mod/admin.php:891 -msgid "UID" -msgstr "UID" - -#: ../../mod/admin.php:891 ../../mod/settings.php:517 -#: ../../mod/settings.php:543 -msgid "Name" -msgstr "Nome" - -#: ../../mod/admin.php:891 ../../mod/profiles.php:337 -msgid "Address" -msgstr "Endereço" - -#: ../../mod/admin.php:893 +#: ../../mod/siteinfo.php:102 msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Os canais selecionados serão deletados!\\n\\nTudo que foi postado nesses canais nesse site será permanentemente deletado!\\n\\nVocê tem certeza?" +"Please visit GetZot.com to learn more " +"about the Red Matrix." +msgstr "Para aprender mais sobre a Red Matrix, visite GetZot.com." -#: ../../mod/admin.php:894 +#: ../../mod/siteinfo.php:103 +msgid "Bug reports and issues: please visit" +msgstr "Relatos e acompanhamentos de erros podem ser encontrados em" + +#: ../../mod/siteinfo.php:106 msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "O canal {0} será deletado!\\n\\nTudo o que foi postado nesse canal nesse site será permanentemente deletado!\\n\\nVocê tem certeza?" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Sugestões, elogios, etc - mande um e-mail para \"redmatrix\" arrôba librelist ponto com" -#: ../../mod/admin.php:933 +#: ../../mod/siteinfo.php:108 +msgid "Site Administrators" +msgstr "Administradores do site" + +#: ../../mod/bookmarks.php:38 +msgid "Bookmark added" +msgstr "O link foi guardado" + +#: ../../mod/bookmarks.php:58 +msgid "My Bookmarks" +msgstr "Meus links guardados" + +#: ../../mod/bookmarks.php:69 +msgid "My Connections Bookmarks" +msgstr "Links guardados das minhas conexões" + +#: ../../mod/channel.php:25 ../../mod/chat.php:19 +msgid "You must be logged in to see this page." +msgstr "Você precisa estar autenticado para ver esta página." + +#: ../../mod/channel.php:86 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Permissões insuficientes. Requisição redirecionada para a página de perfil." + +#: ../../mod/pdledit.php:13 +msgid "Layout updated." +msgstr "Layout atualizado." + +#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +msgid "Edit System Page Description" +msgstr "Editar descrição de página do sistema" + +#: ../../mod/pdledit.php:48 +msgid "Layout not found." +msgstr "Layout não encontrado." + +#: ../../mod/pdledit.php:54 +msgid "Module Name:" +msgstr "Nome do módulo:" + +#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59 +msgid "Layout Help" +msgstr "Ajuda de layout" + +#: ../../mod/oexchange.php:23 +msgid "Unable to find your hub." +msgstr "Não foi possível localizar seu hub." + +#: ../../mod/oexchange.php:37 +msgid "Post successful." +msgstr "Publicado com sucesso." + +#: ../../mod/subthread.php:103 #, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s desabilitado." +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s está acompanhando %3$s de %2$s" -#: ../../mod/admin.php:937 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s habilitado." +#: ../../mod/chanview.php:93 +msgid "toggle full screen mode" +msgstr "alternar o mode de tela inteira" -#: ../../mod/admin.php:947 ../../mod/admin.php:1149 -msgid "Disable" -msgstr "Desabilitar" +#: ../../mod/zfinger.php:23 +msgid "invalid target signature" +msgstr "assinatura do destino inválida" -#: ../../mod/admin.php:949 ../../mod/admin.php:1151 -msgid "Enable" -msgstr "Habilitar" +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." +msgstr "Falha ao criar a fonte. Nenhum canal selecionado." -#: ../../mod/admin.php:975 ../../mod/admin.php:1180 -msgid "Toggle" -msgstr "Alternar" +#: ../../mod/sources.php:45 +msgid "Source created." +msgstr "A fonte foi criada." -#: ../../mod/admin.php:983 ../../mod/admin.php:1190 -msgid "Author: " -msgstr "Autor:" +#: ../../mod/sources.php:57 +msgid "Source updated." +msgstr "A fonte foi atualizada." -#: ../../mod/admin.php:984 ../../mod/admin.php:1191 -msgid "Maintainer: " -msgstr "Mantenedor:" +#: ../../mod/sources.php:82 +msgid "*" +msgstr "*" -#: ../../mod/admin.php:1113 -msgid "No themes found." -msgstr "Nenhum tema foi encontrado." +#: ../../mod/sources.php:89 +msgid "Manage remote sources of content for your channel." +msgstr "Administrar as fontes remotas de conteúdo para o seu canal." -#: ../../mod/admin.php:1172 -msgid "Screenshot" -msgstr "Captura de tela" +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" +msgstr "Nova fonte" -#: ../../mod/admin.php:1220 -msgid "[Experimental]" -msgstr "[Experimental]" - -#: ../../mod/admin.php:1221 -msgid "[Unsupported]" -msgstr "[Desassistido]" - -#: ../../mod/admin.php:1248 -msgid "Log settings updated." -msgstr "As configurações de log foram atualizadas." - -#: ../../mod/admin.php:1304 -msgid "Clear" -msgstr "Limpar" - -#: ../../mod/admin.php:1310 -msgid "Debugging" -msgstr "Depuração" - -#: ../../mod/admin.php:1311 -msgid "Log file" -msgstr "Arquivo de log" - -#: ../../mod/admin.php:1311 +#: ../../mod/sources.php:101 ../../mod/sources.php:133 msgid "" -"Must be writable by web server. Relative to your Red top-level directory." -msgstr "É necessário que o servidor web possa escrever neste arquivo. Relativo ao diretório raiz da Red." +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importar todo ou uma seleção do conteúdo do seguinte canal para este canal, e distribuí-lo de acordo com as configurações do seu canal." -#: ../../mod/admin.php:1312 -msgid "Log level" -msgstr "Nível do log" +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Only import content with these words (one per line)" +msgstr "Importar apenas conteúd com estas palavras (uma por linha)" -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "Cutucar/Espetar" +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Leave blank to import all public content" +msgstr "Deixe em branco para importar todo o conteúdo público" -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "Cutucar, espetar ou fazer outras coisas a alguém" +#: ../../mod/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." +msgstr "A fonte não foi encontrada." -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Destinatário" +#: ../../mod/sources.php:130 +msgid "Edit Source" +msgstr "Editar fonte" -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "Escolha o que você deseja fazer com seu alvo" +#: ../../mod/sources.php:131 +msgid "Delete Source" +msgstr "Deletar fonte" -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "Torne esta publicação privada" +#: ../../mod/sources.php:158 +msgid "Source removed" +msgstr "A fonte foi removida." -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autorizar a conexão com a aplicação" +#: ../../mod/sources.php:160 +msgid "Unable to remove source." +msgstr "Não foi possível remover a fonte." -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Volte para a sua aplicação e digite este código de segurança:" +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." +msgstr "Identificador de perfil inválido." -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Por favor, autentique-se para continuar." +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" +msgstr "Editor de visibilidade do perfil" -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?" +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." +msgstr "Clique em um contato para adicionar ou remover." -#: ../../mod/post.php:226 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "Autenticação remota bloqueada. Você está autenticado neste site localmente. Por favor, saia e tente novamente." +#: ../../mod/profperm.php:123 +msgid "Visible To" +msgstr "Visível para" -#: ../../mod/post.php:257 ../../mod/openid.php:72 ../../mod/openid.php:178 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Bem vindo %s. Autenticação remota realizada com sucesso." - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "O item não está disponível." - -#: ../../mod/probe.php:23 ../../mod/probe.php:29 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Carregar o URL retorna o erro: %1$s" - -#: ../../mod/block.php:27 ../../mod/page.php:35 -msgid "Invalid item." -msgstr "Item inválido." - -#: ../../mod/block.php:39 ../../mod/chanview.php:77 ../../mod/page.php:47 -#: ../../mod/home.php:50 ../../mod/wall_upload.php:28 -msgid "Channel not found." -msgstr "O canal não foi encontrado." - -#: ../../mod/block.php:75 ../../mod/page.php:83 ../../mod/display.php:100 -#: ../../mod/help.php:72 ../../index.php:237 -msgid "Page not found." -msgstr "Página não encontrada." +#: ../../mod/profperm.php:139 ../../mod/connections.php:278 +msgid "All Connections" +msgstr "Todas as conexões" #: ../../mod/profile_photo.php:108 msgid "Image uploaded but image cropping failed." @@ -4244,702 +4220,111 @@ msgstr "Não foi possível reduzir o tamanho da imagem [%s]." msgid "Block Name" msgstr "Nome do bloco" -#: ../../mod/profiles.php:18 ../../mod/profiles.php:138 -#: ../../mod/profiles.php:168 ../../mod/profiles.php:463 -msgid "Profile not found." -msgstr "O perfil não foi encontrado." +#: ../../mod/post.php:226 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please" +" logout and retry." +msgstr "Autenticação remota bloqueada. Você está autenticado neste site localmente. Por favor, saia e tente novamente." -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "O perfil foi excluído." - -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "Perfil-" - -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "O novo perfil foi criado." - -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "O perfil não está disponível para clonagem." - -#: ../../mod/profiles.php:178 -msgid "Profile Name is required." -msgstr "É obrigatório informar o nome do perfil." - -#: ../../mod/profiles.php:294 -msgid "Marital Status" -msgstr "Estado civil" - -#: ../../mod/profiles.php:298 -msgid "Romantic Partner" -msgstr "Parceiro/a romântico/a" - -#: ../../mod/profiles.php:310 -msgid "Work/Employment" -msgstr "Trabalho/Emprego" - -#: ../../mod/profiles.php:313 -msgid "Religion" -msgstr "Religião" - -#: ../../mod/profiles.php:317 -msgid "Political Views" -msgstr "Posição política" - -#: ../../mod/profiles.php:321 -msgid "Gender" -msgstr "Gênero" - -#: ../../mod/profiles.php:325 -msgid "Sexual Preference" -msgstr "Preferência sexual" - -#: ../../mod/profiles.php:329 -msgid "Homepage" -msgstr "Página web" - -#: ../../mod/profiles.php:333 -msgid "Interests" -msgstr "Interesses" - -#: ../../mod/profiles.php:344 ../../mod/pubsites.php:25 -msgid "Location" -msgstr "Localização" - -#: ../../mod/profiles.php:427 -msgid "Profile updated." -msgstr "O perfil foi atualizado." - -#: ../../mod/profiles.php:482 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Esconder sua lista de contatos/amigos dos visitantes no seu perfil?" - -#: ../../mod/profiles.php:505 -msgid "Edit Profile Details" -msgstr "Editar os detalhes do perfil" - -#: ../../mod/profiles.php:507 -msgid "View this profile" -msgstr "Ver este perfil" - -#: ../../mod/profiles.php:508 -msgid "Change Profile Photo" -msgstr "Mudar a foto do perfil" - -#: ../../mod/profiles.php:509 -msgid "Create a new profile using these settings" -msgstr "Criar um novo perfil usando estas configurações" - -#: ../../mod/profiles.php:510 -msgid "Clone this profile" -msgstr "Clonar este perfil" - -#: ../../mod/profiles.php:511 -msgid "Delete this profile" -msgstr "Excluir este perfil" - -#: ../../mod/profiles.php:512 -msgid "Profile Name:" -msgstr "Nome do perfil:" - -#: ../../mod/profiles.php:513 -msgid "Your Full Name:" -msgstr "Seu nome completo:" - -#: ../../mod/profiles.php:514 -msgid "Title/Description:" -msgstr "Título/Descrição:" - -#: ../../mod/profiles.php:515 -msgid "Your Gender:" -msgstr "Seu gênero:" - -#: ../../mod/profiles.php:516 +#: ../../mod/post.php:257 ../../mod/openid.php:72 ../../mod/openid.php:178 #, php-format -msgid "Birthday (%s):" -msgstr "Aniversário (%s):" +msgid "Welcome %s. Remote authentication successful." +msgstr "Bem vindo %s. Autenticação remota realizada com sucesso." -#: ../../mod/profiles.php:517 -msgid "Street Address:" -msgstr "Endereço:" +#: ../../mod/filestorage.php:68 +msgid "Permission Denied." +msgstr "Permissão negada." -#: ../../mod/profiles.php:518 -msgid "Locality/City:" -msgstr "Localidade/Cidade:" +#: ../../mod/filestorage.php:85 +msgid "File not found." +msgstr "O arquivo não foi encontrado." -#: ../../mod/profiles.php:519 -msgid "Postal/Zip Code:" -msgstr "CEP:" +#: ../../mod/filestorage.php:121 +msgid "Edit file permissions" +msgstr "Editar permissões do arquivo" -#: ../../mod/profiles.php:520 -msgid "Country:" -msgstr "País:" +#: ../../mod/filestorage.php:129 +msgid "Set/edit permissions" +msgstr "Definir/editar permissões" -#: ../../mod/profiles.php:521 -msgid "Region/State:" -msgstr "Região/Estado:" +#: ../../mod/filestorage.php:130 +msgid "Include all files and sub folders" +msgstr "Incluir todos os arquivos e subpastas" -#: ../../mod/profiles.php:522 -msgid " Marital Status:" -msgstr "Estado civil :" +#: ../../mod/filestorage.php:131 +msgid "Return to file list" +msgstr "Retornar à lista de arquivos" -#: ../../mod/profiles.php:523 -msgid "Who: (if applicable)" -msgstr "Quem: (se aplicável)" +#: ../../mod/filestorage.php:133 +msgid "Copy/paste this code to attach file to a post" +msgstr "Copiar/colar este código para anexar um arquivo a uma publicação" -#: ../../mod/profiles.php:524 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com" +#: ../../mod/filestorage.php:134 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Copiar/colar este URL para linkar para o arquivo em uma página web" -#: ../../mod/profiles.php:525 -msgid "Since [date]:" -msgstr "Desde [data]:" +#: ../../mod/filestorage.php:171 +msgid "Download" +msgstr "Baixar" -#: ../../mod/profiles.php:527 -msgid "Homepage URL:" -msgstr "Endereço do website:" +#: ../../mod/filestorage.php:177 +msgid "Used: " +msgstr "Utilizado:" -#: ../../mod/profiles.php:530 -msgid "Religious Views:" -msgstr "Orientação religiosa:" +#: ../../mod/filestorage.php:178 +msgid "[directory]" +msgstr "[diretório]" -#: ../../mod/profiles.php:531 -msgid "Keywords:" -msgstr "Palavras-chave:" +#: ../../mod/filestorage.php:180 +msgid "Limit: " +msgstr "Limite:" -#: ../../mod/profiles.php:534 -msgid "Example: fishing photography software" -msgstr "Exemplo: pesca fotografia software" +#: ../../mod/lockview.php:30 ../../mod/lockview.php:36 +msgid "Remote privacy information not available." +msgstr "Não existe informação disponível sobre a privacidade remota." -#: ../../mod/profiles.php:535 -msgid "Used in directory listings" -msgstr "Usado em listas de diretório" +#: ../../mod/lockview.php:45 +msgid "Visible to:" +msgstr "Visível para:" -#: ../../mod/profiles.php:536 -msgid "Tell us about yourself..." -msgstr "Fale um pouco sobre você..." +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." +msgstr "O contato não foi encontrado." -#: ../../mod/profiles.php:537 -msgid "Hobbies/Interests" -msgstr "Hobbies/Interesses" +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Sugestão de amizade enviada." -#: ../../mod/profiles.php:538 -msgid "Contact information and Social Networks" -msgstr "Informações de contato e redes sociais" +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Sugerir amigos" -#: ../../mod/profiles.php:539 -msgid "My other channels" -msgstr "Meus outros canais" - -#: ../../mod/profiles.php:540 -msgid "Musical interests" -msgstr "Interesses musicais" - -#: ../../mod/profiles.php:541 -msgid "Books, literature" -msgstr "Livros, literatura" - -#: ../../mod/profiles.php:542 -msgid "Television" -msgstr "Televisão" - -#: ../../mod/profiles.php:543 -msgid "Film/dance/culture/entertainment" -msgstr "Filme/dança/cultura/entretenimento" - -#: ../../mod/profiles.php:544 -msgid "Love/romance" -msgstr "Amor/romance" - -#: ../../mod/profiles.php:545 -msgid "Work/employment" -msgstr "Trabalho/emprego" - -#: ../../mod/profiles.php:546 -msgid "School/education" -msgstr "Escola/educação" - -#: ../../mod/profiles.php:551 -msgid "" -"This is your public profile.
    It may " -"be visible to anybody using the internet." -msgstr "Este é o seu perfil público.
    Ele pode estar visível para qualquer um que acesse a Internet." - -#: ../../mod/profiles.php:561 ../../mod/directory.php:143 -#: ../../mod/dirprofile.php:92 -msgid "Age: " -msgstr "Idade: " - -#: ../../mod/profiles.php:600 -msgid "Edit/Manage Profiles" -msgstr "Editar/Administrar perfis" - -#: ../../mod/profiles.php:601 -msgid "Add profile things" -msgstr "Adicionar coisas ao perfil" - -#: ../../mod/profiles.php:602 -msgid "Include desirable objects in your profile" -msgstr "Inclua objetos desejáveis no seu perfil" - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "O link foi guardado" - -#: ../../mod/bookmarks.php:58 -msgid "My Bookmarks" -msgstr "Meus links guardados" - -#: ../../mod/bookmarks.php:69 -msgid "My Connections Bookmarks" -msgstr "Links guardados das minhas conexões" - -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Identificador de perfil inválido." - -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Editor de visibilidade do perfil" - -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "Clique em um contato para adicionar ou remover." - -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Visível para" - -#: ../../mod/profperm.php:139 ../../mod/connections.php:278 -msgid "All Connections" -msgstr "Todas as conexões" - -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "Sites públicos" - -#: ../../mod/pubsites.php:19 -msgid "" -"The listed sites allow public registration into the Red Matrix. All sites in" -" the matrix are interlinked so membership on any of them conveys membership " -"in the matrix as a whole. Some sites may require subscription or provide " -"tiered service plans. The provider links may provide " -"additional details." -msgstr "Os sites listados permitem ao público geral registrar contas na Red Matrix. Todos os sites na matrix são interligados, portanto ser membro em qualquer um deles te torna membro na matrix como um todo. Alguns sites podem solicitar uma assinatura ou prover planos em níveis. Os links para cada provedor podem fornecer mais detalhes." - -#: ../../mod/pubsites.php:25 -msgid "Site URL" -msgstr "URL do site" - -#: ../../mod/pubsites.php:25 -msgid "Access Type" -msgstr "Tipo de acesso" - -#: ../../mod/pubsites.php:25 -msgid "Registration Policy" -msgstr "Política de registro" - -#: ../../mod/channel.php:25 ../../mod/chat.php:19 -msgid "You must be logged in to see this page." -msgstr "Você precisa estar autenticado para ver esta página." - -#: ../../mod/channel.php:86 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permissões insuficientes. Requisição redirecionada para a página de perfil." - -#: ../../mod/chanview.php:93 -msgid "toggle full screen mode" -msgstr "alternar o mode de tela inteira" - -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "Escolha uma pasta de links onde guardar" - -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Guardar link" - -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "URL do link guardado" - -#: ../../mod/rbmark.php:95 -msgid "Description" -msgstr "Descrição" - -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "Ou digite o nome para uma nova pasta de links" - -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "Sala não encontrada" - -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "Sair da sala" - -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Deletar esta sala" - -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "Eu estou ausente no momento" - -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Eu estou online" - -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Guarde esta sala" - -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Nova sala de bate-papo" - -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Nome da sala de bate-papo" - -#: ../../mod/chat.php:225 +#: ../../mod/fsuggest.php:99 #, php-format -msgid "%1$s's Chatrooms" -msgstr "Salas de bate-papo de %1$s" +msgid "Suggest a friend for %s" +msgstr "Sugerir um amigo para %s" -#: ../../mod/register.php:43 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Número máximo de novos registros neste site excedido por hoje. Por favor, tente novamente amanhã." - -#: ../../mod/register.php:49 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Por favor, indique a aceitação dos Termos de Serviço. Falha ao registrar." - -#: ../../mod/register.php:77 -msgid "Passwords do not match." -msgstr "Senhas não conferem." - -#: ../../mod/register.php:105 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "O registro foi bem sucedido. Por favor, verifique seu e-mail para confirmar o registro." - -#: ../../mod/register.php:111 -msgid "Your registration is pending approval by the site owner." -msgstr "A aprovação do seu registro está pendente junto ao administrador do site." - -#: ../../mod/register.php:114 -msgid "Your registration can not be processed." -msgstr "Não foi possível processar o seu registro." - -#: ../../mod/register.php:147 -msgid "Registration on this site/hub is by approval only." -msgstr "O registro neste site/hub requer aprovação." - -#: ../../mod/register.php:148 -msgid "Register at another affiliated site/hub" -msgstr "Registre em um outro site/hub afiliado" - -#: ../../mod/register.php:156 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Este site excedeu o número máximo de registros de novas contas. Por favor, tente novamente amanhã." - -#: ../../mod/register.php:167 -msgid "Terms of Service" -msgstr "Termos de Serviço" - -#: ../../mod/register.php:173 +#: ../../mod/tagger.php:98 #, php-format -msgid "I accept the %s for this website" -msgstr "Eu aceito os %s deste website." +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s etiquetou %3$s de %2$s com %4$s" -#: ../../mod/register.php:175 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Eu sou maior de 13 anos e aceito os %s deste website" - -#: ../../mod/register.php:194 -msgid "Membership on this site is by invitation only." -msgstr "Novas contas neste site se dão apenas por convite." - -#: ../../mod/register.php:195 -msgid "Please enter your invitation code" -msgstr "Por favor, digite o código do seu convite" - -#: ../../mod/register.php:198 -msgid "Your email address" -msgstr "Seu endereço de e-mail" - -#: ../../mod/register.php:199 -msgid "Choose a password" -msgstr "Escolha uma senha" - -#: ../../mod/register.php:200 -msgid "Please re-enter your password" -msgstr "Por favor, digite sua senha novamente" - -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Ausente" - -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "Online" - -#: ../../mod/regmod.php:12 -msgid "Please login." -msgstr "Por favor, autentique-se." - -#: ../../mod/cloud.php:112 -msgid "Red Matrix - Guests: Username: {your email address}, Password: +++" -msgstr "Red Matrix - Visitantes: Usuário: {seu endereço de e-mail}, Senha: +++" - -#: ../../mod/removeme.php:49 -msgid "Remove This Channel" -msgstr "Remover este canal" - -#: ../../mod/removeme.php:50 -msgid "" -"This will completely remove this channel from the network. Once this has " -"been done it is not recoverable." -msgstr "Isso irá remover completamente este canal da rede. Uma vez que seja feito não será possível recuperá-lo." - -#: ../../mod/removeme.php:51 -msgid "Please enter your password for verification:" -msgstr "Por favor, digite a sua senha para verificação:" - -#: ../../mod/removeme.php:52 -msgid "Remove this channel and all its clones from the network" -msgstr "Remover este canal e todos os seus clones da rede" - -#: ../../mod/removeme.php:52 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "Por padrão, apenas a instância do canal localizada neste hub será removida da rede" - -#: ../../mod/removeme.php:53 -msgid "Remove Channel" -msgstr "Remover canal" - -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Nenhum canal." - -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Conexões em comum" - -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Nenhuma conexão em comum." - -#: ../../mod/rmagic.php:38 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Encontramos um problema ao entrar com a OpenID fornecida. Por favor, verifique se digitou corretamente a ID." - -#: ../../mod/rmagic.php:38 -msgid "The error message was:" -msgstr "A mensagem de erro foi:" - -#: ../../mod/rmagic.php:42 -msgid "Authentication failed." -msgstr "A autenticação falhou." - -#: ../../mod/rmagic.php:78 -msgid "Remote Authentication" -msgstr "Autenticação remota" - -#: ../../mod/rmagic.php:79 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Entre o endereço do seu canal (e.g. canal@exemplo.com)" - -#: ../../mod/rmagic.php:80 -msgid "Authenticate" -msgstr "Autenticar" - -#: ../../mod/connect.php:55 ../../mod/connect.php:103 -msgid "Continue" -msgstr "Continuar" - -#: ../../mod/connect.php:84 -msgid "Premium Channel Setup" -msgstr "Configuração de canal premium" - -#: ../../mod/connect.php:86 -msgid "Enable premium channel connection restrictions" -msgstr "Habilitar restrições de canal premium para conexão" - -#: ../../mod/connect.php:87 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Por favor, insira suas restrições ou condições, como um recibo de depósito, normas de conduta, etc." - -#: ../../mod/connect.php:89 ../../mod/connect.php:109 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Este canal pode exigir passos adicionais ou compreensão das seguintes condições antes de conectar:" - -#: ../../mod/connect.php:90 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Tentativas de conexões verão então o seguinte texto antes de prosseguir:" - -#: ../../mod/connect.php:91 ../../mod/connect.php:112 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Ao prosseguir, eu certifico que cumpri todas as instruções exibidas nesta página." - -#: ../../mod/connect.php:100 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Nenhuma instrução foi especificada pelo dono do canal.)" - -#: ../../mod/connect.php:108 -msgid "Restricted or Premium Channel" -msgstr "Canal restrito ou premium" - -#: ../../mod/network.php:79 -msgid "No such group" -msgstr "Este grupo não existe" - -#: ../../mod/network.php:119 -msgid "Search Results For:" -msgstr "Resultados da busca por:" - -#: ../../mod/network.php:173 -msgid "Collection is empty" -msgstr "A coleção está vazia" - -#: ../../mod/network.php:181 -msgid "Collection: " -msgstr "Coleção:" - -#: ../../mod/network.php:194 -msgid "Connection: " -msgstr "Conexão:" - -#: ../../mod/network.php:197 -msgid "Invalid connection." -msgstr "Conexão inválida." - -#: ../../mod/connections.php:37 ../../mod/connedit.php:64 +#: ../../mod/connedit.php:64 ../../mod/connections.php:37 msgid "Could not access contact record." msgstr "Não foi possível acessar o registro do contato." -#: ../../mod/connections.php:51 ../../mod/connedit.php:78 +#: ../../mod/connedit.php:78 ../../mod/connections.php:51 msgid "Could not locate selected profile." msgstr "Não foi possível localizar o perfil selecionado." -#: ../../mod/connections.php:94 ../../mod/connedit.php:131 +#: ../../mod/connedit.php:131 ../../mod/connections.php:94 msgid "Connection updated." msgstr "A conexão foi atualizada." -#: ../../mod/connections.php:96 ../../mod/connedit.php:133 +#: ../../mod/connedit.php:133 ../../mod/connections.php:96 msgid "Failed to update connection record." msgstr "Não foi possível atualizar o registro da conexão." -#: ../../mod/connections.php:191 ../../mod/connections.php:291 -msgid "Blocked" -msgstr "Bloqueado" - -#: ../../mod/connections.php:196 ../../mod/connections.php:298 -msgid "Ignored" -msgstr "Ignorado" - -#: ../../mod/connections.php:201 ../../mod/connections.php:312 -msgid "Hidden" -msgstr "Oculto" - -#: ../../mod/connections.php:206 ../../mod/connections.php:305 -msgid "Archived" -msgstr "Arquivado" - -#: ../../mod/connections.php:230 ../../mod/connections.php:244 -msgid "All" -msgstr "Todos" - -#: ../../mod/connections.php:239 ../../mod/connections.php:319 -msgid "Unconnected" -msgstr "Não conectado" - -#: ../../mod/connections.php:269 -msgid "Suggest new connections" -msgstr "Sugerir novas conexões" - -#: ../../mod/connections.php:272 -msgid "New Connections" -msgstr "Novas conexões" - -#: ../../mod/connections.php:275 -msgid "Show pending (new) connections" -msgstr "Exibir conexões pendentes (novas)" - -#: ../../mod/connections.php:281 -msgid "Show all connections" -msgstr "Exibir todas as conexões" - -#: ../../mod/connections.php:284 -msgid "Unblocked" -msgstr "Não bloqueado" - -#: ../../mod/connections.php:287 -msgid "Only show unblocked connections" -msgstr "Exibir apenas conexões não bloqueadas" - -#: ../../mod/connections.php:294 -msgid "Only show blocked connections" -msgstr "Exibir apenas conexões bloqueadas" - -#: ../../mod/connections.php:301 -msgid "Only show ignored connections" -msgstr "Exibir apenas conexões ignoradas" - -#: ../../mod/connections.php:308 -msgid "Only show archived connections" -msgstr "Exibir apenas conexões arquivadas" - -#: ../../mod/connections.php:315 -msgid "Only show hidden connections" -msgstr "Exibir apenas conexões ocultas" - -#: ../../mod/connections.php:322 -msgid "Only show one-way connections" -msgstr "Exibir apenas conexões de mão única" - -#: ../../mod/connections.php:367 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../mod/connections.php:368 -msgid "Edit contact" -msgstr "Editar o contato" - -#: ../../mod/connections.php:389 -msgid "Search your connections" -msgstr "Pesquisar em suas conexões" - -#: ../../mod/connections.php:390 -msgid "Finding: " -msgstr "Pesquisando: " - -#: ../../mod/rpost.php:86 ../../mod/editpost.php:42 -msgid "Edit post" -msgstr "Editar a publicação" - #: ../../mod/connedit.php:243 msgid "Could not access address book record." msgstr "Não foi possível acessar o registro do contato." @@ -5019,6 +4404,16 @@ msgstr "Atividades recentes" msgid "View recent posts and comments" msgstr "Exibir publicações e comentários recentes" +#: ../../mod/connedit.php:372 ../../mod/connedit.php:515 +#: ../../mod/admin.php:759 +msgid "Unblock" +msgstr "Desbloquear" + +#: ../../mod/connedit.php:372 ../../mod/connedit.php:515 +#: ../../mod/admin.php:758 +msgid "Block" +msgstr "Bloquear" + #: ../../mod/connedit.php:375 msgid "Block or Unblock this connection" msgstr "Bloquear ou desbloquear esta conexão" @@ -5027,11 +4422,6 @@ msgstr "Bloquear ou desbloquear esta conexão" msgid "Unignore" msgstr "Não ignorar" -#: ../../mod/connedit.php:379 ../../mod/connedit.php:516 -#: ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "Ignorar" - #: ../../mod/connedit.php:382 msgid "Ignore or Unignore this connection" msgstr "Ignorar ou deixar de ignorar esta conexão" @@ -5064,10 +4454,6 @@ msgstr "Ocultar ou deixar de ocultar esta conexão" msgid "Delete this connection" msgstr "Deletar esta conexão" -#: ../../mod/connedit.php:434 -msgid "Unknown" -msgstr "Desconhecidos" - #: ../../mod/connedit.php:444 ../../mod/connedit.php:473 msgid "Approve this connection" msgstr "Aprovar esta conexão" @@ -5243,99 +4629,48 @@ msgid "" "Replies/likes to your public posts may still be visible" msgstr "Respostas/reações às suas publicações públicas podem continuar visíveis." -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Nenhum potencial delegado para páginas localizado." - -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "Delegar administração de página" - -#: ../../mod/delegate.php:123 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "Delegados podem administrar todos os aspectos desta conta/página exceto pelas configurações básicas da conta. Por favor, não delegue sua conta pessoal para alguém que você não confie completamente." - -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "Atuais administradores da página" - -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "Atuais delegados da página" - -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "Potenciais delegados" - -#: ../../mod/delegate.php:130 ../../mod/tagrm.php:93 ../../mod/photos.php:908 -msgid "Remove" -msgstr "Remover" - -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Adicionar" - -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Sem entradas." - -#: ../../mod/search.php:13 ../../mod/directory.php:15 -#: ../../mod/dirprofile.php:9 ../../mod/display.php:9 -#: ../../mod/viewconnections.php:17 ../../mod/photos.php:443 -msgid "Public access denied." -msgstr "Acesso público negado." - -#: ../../mod/directory.php:146 ../../mod/dirprofile.php:95 -msgid "Gender: " -msgstr "Gênero: " - -#: ../../mod/directory.php:207 -msgid "Finding:" -msgstr "Pesquisando:" - -#: ../../mod/directory.php:215 -msgid "next page" -msgstr "próxima página" - -#: ../../mod/directory.php:215 -msgid "previous page" -msgstr "página anterior" - -#: ../../mod/directory.php:222 -msgid "No entries (some entries may be hidden)." -msgstr "Nenhuma entrada (algumas entradas podem estar escondidas)." - -#: ../../mod/dirprofile.php:108 -msgid "Status: " -msgstr "Status:" - -#: ../../mod/dirprofile.php:109 -msgid "Sexual Preference: " -msgstr "Preferência sexual:" - -#: ../../mod/dirprofile.php:111 -msgid "Homepage: " -msgstr "Website:" - -#: ../../mod/dirprofile.php:112 -msgid "Hometown: " -msgstr "Cidade natal:" - -#: ../../mod/dirprofile.php:114 -msgid "About: " -msgstr "Sobre:" - -#: ../../mod/dirprofile.php:162 -msgid "Keywords: " -msgstr "Palavras-chave:" - #: ../../mod/dirsearch.php:21 msgid "This site is not a directory server" msgstr "Este site não é um servidor de diretório" +#: ../../mod/rmagic.php:38 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Encontramos um problema ao entrar com a OpenID fornecida. Por favor, verifique se digitou corretamente a ID." + +#: ../../mod/rmagic.php:38 +msgid "The error message was:" +msgstr "A mensagem de erro foi:" + +#: ../../mod/rmagic.php:42 +msgid "Authentication failed." +msgstr "A autenticação falhou." + +#: ../../mod/rmagic.php:78 +msgid "Remote Authentication" +msgstr "Autenticação remota" + +#: ../../mod/rmagic.php:79 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Entre o endereço do seu canal (e.g. canal@exemplo.com)" + +#: ../../mod/rmagic.php:80 +msgid "Authenticate" +msgstr "Autenticar" + +#: ../../mod/attach.php:9 +msgid "Item not available." +msgstr "O item não está disponível." + +#: ../../mod/editpost.php:31 +msgid "Item is not editable" +msgstr "O item não está editável" + +#: ../../mod/editpost.php:53 +msgid "Delete item?" +msgstr "Deletar item?" + #: ../../mod/settings.php:71 msgid "Name is required" msgstr "O nome é obrigatório" @@ -5344,10 +4679,6 @@ msgstr "O nome é obrigatório" msgid "Key and Secret are required" msgstr "A chave e o segredo são obrigatórios" -#: ../../mod/settings.php:79 ../../mod/settings.php:541 -msgid "Update" -msgstr "Atualizar" - #: ../../mod/settings.php:195 msgid "Passwords do not match. Password unchanged." msgstr "As senhas não correspondem. A senha não foi modificada." @@ -5385,6 +4716,11 @@ msgstr "As configurações foram atualizadas." msgid "Add application" msgstr "Adicionar aplicação" +#: ../../mod/settings.php:517 ../../mod/settings.php:543 +#: ../../mod/admin.php:891 +msgid "Name" +msgstr "Nome" + #: ../../mod/settings.php:517 msgid "Name of application" msgstr "Nome da aplicação" @@ -5495,6 +4831,10 @@ msgstr "Recursos adicionais" msgid "Connector Settings" msgstr "Configurações do conector" +#: ../../mod/settings.php:708 ../../mod/admin.php:389 +msgid "No special theme for mobile devices" +msgstr "Sem tema especial para aparelhos móveis" + #: ../../mod/settings.php:749 msgid "Display Settings" msgstr "Configurações de exibição" @@ -6148,138 +5488,6 @@ msgid "" "poller." msgstr "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o coletor." -#: ../../mod/editblock.php:8 ../../mod/editblock.php:27 -#: ../../mod/editblock.php:53 ../../mod/editlayout.php:36 -#: ../../mod/editpost.php:20 ../../mod/editwebpage.php:32 -msgid "Item not found" -msgstr "O item não foi encontrado" - -#: ../../mod/editblock.php:77 -msgid "Edit Block" -msgstr "Editar bloco" - -#: ../../mod/editblock.php:87 -msgid "Delete block?" -msgstr "Deletar bloco?" - -#: ../../mod/editblock.php:115 ../../mod/editlayout.php:110 -#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:147 -msgid "Insert YouTube video" -msgstr "Inserir vídeo do YouTube" - -#: ../../mod/editblock.php:116 ../../mod/editlayout.php:111 -#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:148 -msgid "Insert Vorbis [.ogg] video" -msgstr "Inserir vídeo Vorbis (.ogg)" - -#: ../../mod/editblock.php:117 ../../mod/editlayout.php:112 -#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:149 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Inserir áudio Vorbis (.ogg)" - -#: ../../mod/editblock.php:153 -msgid "Delete Block" -msgstr "Deletar bloco" - -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "Layout atualizado." - -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "Editar descrição de página do sistema" - -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "Layout não encontrado." - -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "Nome do módulo:" - -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59 -msgid "Layout Help" -msgstr "Ajuda de layout" - -#: ../../mod/editlayout.php:72 -msgid "Edit Layout" -msgstr "Editar layout" - -#: ../../mod/editlayout.php:82 -msgid "Delete layout?" -msgstr "Deletar layout?" - -#: ../../mod/editlayout.php:146 -msgid "Delete Layout" -msgstr "Deletar layout" - -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "O item não está editável" - -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "Deletar item?" - -#: ../../mod/editwebpage.php:106 -msgid "Edit Webpage" -msgstr "Editar página web" - -#: ../../mod/editwebpage.php:116 -msgid "Delete webpage?" -msgstr "Deletar página web?" - -#: ../../mod/editwebpage.php:187 -msgid "Delete Webpage" -msgstr "Deletar página web" - -#: ../../mod/siteinfo.php:57 -#, php-format -msgid "Version %s" -msgstr "Versão %s" - -#: ../../mod/siteinfo.php:76 -msgid "Installed plugins/addons/apps:" -msgstr "Plugins/complementos/aplicações instalados:" - -#: ../../mod/siteinfo.php:89 -msgid "No installed plugins/addons/apps" -msgstr "Nenhum plugin/complemento/aplicação instalado" - -#: ../../mod/siteinfo.php:97 -msgid "Red" -msgstr "Red" - -#: ../../mod/siteinfo.php:98 -msgid "" -"This is a hub of the Red Matrix - a global cooperative network of " -"decentralised privacy enhanced websites." -msgstr "Este é um hub da Red Matrix - uma rede global cooperativa de websites descentralizados com privacidade aprimorada." - -#: ../../mod/siteinfo.php:101 -msgid "Running at web location" -msgstr "Sendo executado no endereço web" - -#: ../../mod/siteinfo.php:102 -msgid "" -"Please visit GetZot.com to learn more " -"about the Red Matrix." -msgstr "Para aprender mais sobre a Red Matrix, visite GetZot.com." - -#: ../../mod/siteinfo.php:103 -msgid "Bug reports and issues: please visit" -msgstr "Relatos e acompanhamentos de erros podem ser encontrados em" - -#: ../../mod/siteinfo.php:106 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Sugestões, elogios, etc - mande um e-mail para \"redmatrix\" arrôba librelist ponto com" - -#: ../../mod/siteinfo.php:108 -msgid "Site Administrators" -msgstr "Administradores do site" - #: ../../mod/events.php:72 msgid "Event title and start time are required." msgstr "O título do evento e a hora de início são obrigatórios." @@ -6317,7 +5525,8 @@ msgstr "O formato é %s %s. A data de início e o título são obrigatórios." msgid "Event Starts:" msgstr "Início do evento:" -#: ../../mod/events.php:462 ../../mod/events.php:476 +#: ../../mod/events.php:462 ../../mod/events.php:476 ../../mod/appman.php:83 +#: ../../mod/appman.php:84 msgid "Required" msgstr "Obrigatório" @@ -6345,840 +5554,6 @@ msgstr "Título:" msgid "Share this event" msgstr "Compartilhar este evento" -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "Falha ao criar a fonte. Nenhum canal selecionado." - -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "A fonte foi criada." - -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "A fonte foi atualizada." - -#: ../../mod/sources.php:82 -msgid "*" -msgstr "*" - -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "Administrar as fontes remotas de conteúdo para o seu canal." - -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "Nova fonte" - -#: ../../mod/sources.php:101 ../../mod/sources.php:133 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importar todo ou uma seleção do conteúdo do seguinte canal para este canal, e distribuí-lo de acordo com as configurações do seu canal." - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "Importar apenas conteúd com estas palavras (uma por linha)" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "Deixe em branco para importar todo o conteúdo público" - -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:110 -msgid "Channel Name" -msgstr "Nome do canal" - -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "A fonte não foi encontrada." - -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "Editar fonte" - -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "Deletar fonte" - -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "A fonte foi removida." - -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "Não foi possível remover a fonte." - -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "- selecionar -" - -#: ../../mod/filestorage.php:68 -msgid "Permission Denied." -msgstr "Permissão negada." - -#: ../../mod/filestorage.php:85 -msgid "File not found." -msgstr "O arquivo não foi encontrado." - -#: ../../mod/filestorage.php:121 -msgid "Edit file permissions" -msgstr "Editar permissões do arquivo" - -#: ../../mod/filestorage.php:129 -msgid "Set/edit permissions" -msgstr "Definir/editar permissões" - -#: ../../mod/filestorage.php:130 -msgid "Include all files and sub folders" -msgstr "Incluir todos os arquivos e subpastas" - -#: ../../mod/filestorage.php:131 -msgid "Return to file list" -msgstr "Retornar à lista de arquivos" - -#: ../../mod/filestorage.php:133 -msgid "Copy/paste this code to attach file to a post" -msgstr "Copiar/colar este código para anexar um arquivo a uma publicação" - -#: ../../mod/filestorage.php:134 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Copiar/colar este URL para linkar para o arquivo em uma página web" - -#: ../../mod/filestorage.php:171 -msgid "Download" -msgstr "Baixar" - -#: ../../mod/filestorage.php:177 -msgid "Used: " -msgstr "Utilizado:" - -#: ../../mod/filestorage.php:178 -msgid "[directory]" -msgstr "[diretório]" - -#: ../../mod/filestorage.php:180 -msgid "Limit: " -msgstr "Limite:" - -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Canal adicionado." - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s está acompanhando %3$s de %2$s" - -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "O contato não foi encontrado." - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Sugestão de amizade enviada." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Sugerir amigos" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Sugerir um amigo para %s" - -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Nenhuma sugestão disponível. Se este site é novo, por favor tente novamente em 24 horas." - -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "A coleção foi criada." - -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "Não foi possível criar a coleção." - -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "Coleção atualizada" - -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "Criar uma coleção de canais." - -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "Nome da coleção:" - -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "Membros são visíveis para outros canais" - -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "Coleção removida." - -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "Não foi possível remover a coleção." - -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "Editor de coleção" - -#: ../../mod/group.php:196 -msgid "Members" -msgstr "Membros" - -#: ../../mod/group.php:198 -msgid "All Connected Channels" -msgstr "Todas os canais conectados" - -#: ../../mod/group.php:231 -msgid "Click on a channel to add or remove." -msgstr "Clique em um canal para adicionar ou remover." - -#: ../../mod/tagger.php:98 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s etiquetou %3$s de %2$s com %4$s" - -#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55 -msgid "Help:" -msgstr "Ajuda:" - -#: ../../mod/help.php:69 ../../index.php:234 -msgid "Not Found" -msgstr "Não encontrada" - -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "A etiqueta foi removida" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Remover a etiqueta de item" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Selecione uma etiqueta para remover: " - -#: ../../mod/home.php:89 -#, php-format -msgid "Welcome to %s" -msgstr "Bem-vindo(a) a %s" - -#: ../../mod/thing.php:98 -msgid "Thing updated" -msgstr "A coisa foi atualizada" - -#: ../../mod/thing.php:158 -msgid "Object store: failed" -msgstr "Armazenamento do objeto: falhou" - -#: ../../mod/thing.php:162 -msgid "Thing added" -msgstr "A coisa foi adicionada" - -#: ../../mod/thing.php:182 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../mod/thing.php:234 -msgid "Show Thing" -msgstr "Exibir coisa" - -#: ../../mod/thing.php:241 -msgid "item not found." -msgstr "o item não foi encontrado" - -#: ../../mod/thing.php:269 -msgid "Edit Thing" -msgstr "Editar coisa" - -#: ../../mod/thing.php:271 ../../mod/thing.php:318 -msgid "Select a profile" -msgstr "Selecione um perfil" - -#: ../../mod/thing.php:273 ../../mod/thing.php:320 -msgid "Select a category of stuff. e.g. I ______ something" -msgstr "Escolha uma categoria de coisas. e.g. Eu ______ algo" - -#: ../../mod/thing.php:275 ../../mod/thing.php:321 -msgid "Post an activity" -msgstr "Publique uma atividade" - -#: ../../mod/thing.php:275 ../../mod/thing.php:321 -msgid "Only sends to viewers of the applicable profile" -msgstr "Envia apenas para a audiência do perfil aplicável" - -#: ../../mod/thing.php:277 ../../mod/thing.php:323 -msgid "Name of thing e.g. something" -msgstr "Nome da coisa e.g. coisinha" - -#: ../../mod/thing.php:279 ../../mod/thing.php:324 -msgid "URL of thing (optional)" -msgstr "URL da coisa (opcional)" - -#: ../../mod/thing.php:281 ../../mod/thing.php:325 -msgid "URL for photo of thing (optional)" -msgstr "URL para foto da coisa (opcional)" - -#: ../../mod/thing.php:316 -msgid "Add Thing to your Profile" -msgstr "Adicionar a coisa ao seu perfil" - -#: ../../mod/import.php:36 -msgid "Nothing to import." -msgstr "Nada a importar." - -#: ../../mod/import.php:58 -msgid "Unable to download data from old server" -msgstr "Não foi possível descarregar os dados do servidor antigo" - -#: ../../mod/import.php:64 -msgid "Imported file is empty." -msgstr "O arquivo importado está vazio." - -#: ../../mod/import.php:88 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Não foi possível criar um identificador de canal duplicado neste sistema. A importação falhou." - -#: ../../mod/import.php:106 -msgid "Channel clone failed. Import failed." -msgstr "Clonagem do canal falhou. A importação falhou." - -#: ../../mod/import.php:116 -msgid "Cloned channel not found. Import failed." -msgstr "Canal a clonar não encontrado. A importação falhou." - -#: ../../mod/import.php:358 -msgid "Import completed." -msgstr "A importação foi completada." - -#: ../../mod/import.php:371 -msgid "You must be logged in to use this feature." -msgstr "Você precisa estar autenticado para usar este recurso." - -#: ../../mod/import.php:376 -msgid "Import Channel" -msgstr "Importar canal" - -#: ../../mod/import.php:377 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file. Only identity and connections/relationships will " -"be imported. Importation of content is not yet available." -msgstr "Use este formulário para importar um canal existente de um servidor/hub diferente. Você pode obter a identidade do canal do servidor/hub antigo pela rede, ou fornecer um arquivo de exportação. Somente a identidade e as conexões/relacionamentos serão importados. Importação de conteúdos ainda não está disponível." - -#: ../../mod/import.php:378 -msgid "File to Upload" -msgstr "Arquivo a carregar" - -#: ../../mod/import.php:379 -msgid "Or provide the old server/hub details" -msgstr "Ou forneça os detalhes do antigo servidor/hub" - -#: ../../mod/import.php:380 -msgid "Your old identity address (xyz@example.com)" -msgstr "O endereço da sua velha identidade (xyz@exemplo.com)" - -#: ../../mod/import.php:381 -msgid "Your old login email address" -msgstr "O endereço de e-mail da sua antiga conta" - -#: ../../mod/import.php:382 -msgid "Your old login password" -msgstr "A senha dua sua antiga conta" - -#: ../../mod/import.php:383 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Para qualquer das opções, por favor escolha se deseja fazer deste hub seu novo endereço primário, ou se o velho local deve continuar com esse papel. Você será capaz de publicar a partir de ambos os locais, mas somente um pode estar designado como local primário para arquivos, fotos e mídia." - -#: ../../mod/import.php:384 -msgid "Make this hub my primary location" -msgstr "Faça deste hub meu local primário" - -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Foi excedido o número total de convites." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Não é um endereço de e-mail válido." - -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "Por favor, una-se a nós na Red" - -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Você excedeu o limite de convites. Por favor, entre em contato com o administrador do site." - -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Não foi possível enviar a mensagem." - -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d mensagem enviada." -msgstr[1] "%d mensagens enviadas." - -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "Você não possui mais convites disponíveis" - -#: ../../mod/invite.php:141 -msgid "Send invitations" -msgstr "Enviar convites." - -#: ../../mod/invite.php:142 -msgid "Enter email addresses, one per line:" -msgstr "Digite os endereços de e-mail, um por linha:" - -#: ../../mod/invite.php:143 ../../mod/mail.php:216 ../../mod/mail.php:328 -msgid "Your message:" -msgstr "Sua mensagem:" - -#: ../../mod/invite.php:144 -msgid "" -"You are cordially invited to join me and some other close friends on the Red" -" Matrix - a revolutionary new decentralised communication and information " -"tool." -msgstr "Você está convidado a juntar-se a mim e alguns outros amigos próximos na Red Matrix - uma revolucionária nova ferramenta para comunicação e informação descentralizada." - -#: ../../mod/invite.php:146 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Você deve informar este código de convite: $invite_code" - -#: ../../mod/invite.php:147 -msgid "Please visit my channel at" -msgstr "Por favor, visite o meu canal em" - -#: ../../mod/invite.php:151 -msgid "" -"Once you have registered (on ANY Red Matrix site - they are all inter-" -"connected), please connect with my Red Matrix channel address:" -msgstr "Após você se registrar (em qualquer site da Red Matrix - eles são todos interconectados!), peço que conecte-se comigo usando o endereço do meu canal:" - -#: ../../mod/invite.php:153 -msgid "Click the [Register] link on the following page to join." -msgstr "Clique no link [Registrar] na seguinte página para participar." - -#: ../../mod/invite.php:155 -msgid "" -"For more information about the Red Matrix Project and why it has the " -"potential to change the internet as we know it, please visit " -"http://getzot.com" -msgstr "Para maiores informações sobre o Projeto Red Matrix e porque ele tem potencial para mudar a Internet como a conhecemos, por favor visite: http://getzot.com" - -#: ../../mod/item.php:147 -msgid "Unable to locate original post." -msgstr "Não foi possível localizar a publicação original." - -#: ../../mod/item.php:352 -msgid "Empty post discarded." -msgstr "A publicação em branco foi descartada." - -#: ../../mod/item.php:392 -msgid "Executable content type not permitted to this channel." -msgstr "Conteúdo de tipo executável não permitido para este canal." - -#: ../../mod/item.php:806 -msgid "System error. Post not saved." -msgstr "Erro no sistema. A publicação não foi salva." - -#: ../../mod/item.php:1249 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Você atingiu o seu limite de %1$.0f publicações de novos tópicos." - -#: ../../mod/item.php:1255 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Você atingiu o seu limite de %1$.0f páginas web." - -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 -msgid "[Embedded content - reload page to view]" -msgstr "[Conteúdo incorporado - recarregue a página para ver]" - -#: ../../mod/layouts.php:62 -msgid "Help with this feature" -msgstr "Ajuda com este recurso" - -#: ../../mod/layouts.php:84 -msgid "Layout Name" -msgstr "Nome do layout" - -#: ../../mod/lockview.php:30 ../../mod/lockview.php:36 -msgid "Remote privacy information not available." -msgstr "Não existe informação disponível sobre a privacidade remota." - -#: ../../mod/lockview.php:45 -msgid "Visible to:" -msgstr "Visível para:" - -#: ../../mod/viewconnections.php:58 -msgid "No connections." -msgstr "Nenhuma conexão." - -#: ../../mod/viewconnections.php:70 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Ver o perfil de %s [%s]" - -#: ../../mod/viewconnections.php:85 -msgid "View Connnections" -msgstr "Ver conexões" - -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "Não foi encontrada uma conta válida." - -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "A solicitação de restauração de senha foi encaminhada. Verifique seu e-mail." - -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 -#, php-format -msgid "Site Member (%s)" -msgstr "Membro do site (%s)" - -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "Foi feita uma solicitação de restauração de senha em %s" - -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi restaurada." - -#: ../../mod/lostpass.php:85 ../../boot.php:1462 -msgid "Password Reset" -msgstr "Reiniciar a senha" - -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." -msgstr "Sua senha foi restaurada, conforme solicitado." - -#: ../../mod/lostpass.php:87 -msgid "Your new password is" -msgstr "Sua nova senha é" - -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" -msgstr "Salve ou copie a sua nova senha e, então" - -#: ../../mod/lostpass.php:89 -msgid "click here to login" -msgstr "clique aqui para entrar" - -#: ../../mod/lostpass.php:90 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Sua senha pode ser alterada na página de Configurações após você entrar em sua conta." - -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has changed at %s" -msgstr "Sua senha foi modificada em %s" - -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "Esqueceu a sua senha?" - -#: ../../mod/lostpass.php:123 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Digite o seu endereço de e-mail e clique em 'Restaurar' para prosseguir com a restauração da sua senha. Após isso, verifique seu e-mail para mais instruções." - -#: ../../mod/lostpass.php:124 -msgid "Email Address" -msgstr "Endereço de e-mail" - -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "Restaurar" - -#: ../../mod/magic.php:70 -msgid "Hub not found." -msgstr "O hub não foi encontrado." - -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "Votos totais" - -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "Média das avaliações" - -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Não foi possível encontrar o destinatário." - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Não foi possível comunicar com o canal solicitado." - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "Não foi possível verificar o canal requisitado." - -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "O canal solicitado tem restrições a mensagens privadas. Falha no envio." - -#: ../../mod/mail.php:121 ../../mod/message.php:31 -msgid "Messages" -msgstr "Mensagens" - -#: ../../mod/mail.php:132 -msgid "Message deleted." -msgstr "A mensagem foi excluída." - -#: ../../mod/mail.php:149 -msgid "Message recalled." -msgstr "Mensagem retirada." - -#: ../../mod/mail.php:206 -msgid "Send Private Message" -msgstr "Enviar mensagem privada" - -#: ../../mod/mail.php:207 ../../mod/mail.php:323 -msgid "To:" -msgstr "Para:" - -#: ../../mod/mail.php:212 ../../mod/mail.php:325 -msgid "Subject:" -msgstr "Assunto:" - -#: ../../mod/mail.php:249 -msgid "Message not found." -msgstr "Mensagem não encontrada." - -#: ../../mod/mail.php:292 ../../mod/message.php:72 -msgid "Delete message" -msgstr "Excluir a mensagem" - -#: ../../mod/mail.php:293 -msgid "Recall message" -msgstr "Retirar mensagem" - -#: ../../mod/mail.php:295 -msgid "Message has been recalled." -msgstr "A mensagem foi retirada." - -#: ../../mod/mail.php:312 -msgid "Private Conversation" -msgstr "Conversa privada" - -#: ../../mod/mail.php:316 -msgid "Delete conversation" -msgstr "Excluir conversa" - -#: ../../mod/mail.php:318 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Comunicação segura indisponível. Você talvez consiga responder pela página de perfil do remetente." - -#: ../../mod/mail.php:322 -msgid "Send Reply" -msgstr "Enviar resposta" - -#: ../../mod/manage.php:64 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Você criou %1$.0f de %2$.0f canais permitidos." - -#: ../../mod/manage.php:72 -msgid "Create a new channel" -msgstr "Criar um novo canal" - -#: ../../mod/manage.php:77 -msgid "Channel Manager" -msgstr "Administrador do canal" - -#: ../../mod/manage.php:78 -msgid "Current Channel" -msgstr "Canal atual" - -#: ../../mod/manage.php:80 -msgid "Attach to one of your channels by selecting it." -msgstr "Selecione um dos seus canais para utilizá-lo." - -#: ../../mod/manage.php:81 -msgid "Default Channel" -msgstr "Canal padrão" - -#: ../../mod/manage.php:82 -msgid "Make Default" -msgstr "Tornar padrão" - -#: ../../mod/wall_upload.php:34 -msgid "Wall Photos" -msgstr "Fotos do mural" - -#: ../../mod/match.php:16 -msgid "Profile Match" -msgstr "Correspondência de perfil" - -#: ../../mod/match.php:24 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Nenhuma palavra-chave para combinar. Por favor, adicione palavras-chave ao seu perfil padrão." - -#: ../../mod/match.php:61 -msgid "is interested in:" -msgstr "se interessa por:" - -#: ../../mod/match.php:69 -msgid "No matches" -msgstr "Nenhuma correspondência" - -#: ../../mod/menu.php:21 -msgid "Menu updated." -msgstr "Menu atualizado." - -#: ../../mod/menu.php:25 -msgid "Unable to update menu." -msgstr "Não foi possível atualizar o menu." - -#: ../../mod/menu.php:30 -msgid "Menu created." -msgstr "O menu foi criado." - -#: ../../mod/menu.php:34 -msgid "Unable to create menu." -msgstr "Não foi possível criar o menu." - -#: ../../mod/menu.php:57 -msgid "Manage Menus" -msgstr "Administrar menus" - -#: ../../mod/menu.php:60 -msgid "Drop" -msgstr "Descartar" - -#: ../../mod/menu.php:62 -msgid "Create a new menu" -msgstr "Criar um novo menu" - -#: ../../mod/menu.php:63 -msgid "Delete this menu" -msgstr "Deletar este menu" - -#: ../../mod/menu.php:64 ../../mod/menu.php:109 -msgid "Edit menu contents" -msgstr "Editar os conteúdos do menu" - -#: ../../mod/menu.php:65 -msgid "Edit this menu" -msgstr "Editar este menu" - -#: ../../mod/menu.php:80 -msgid "New Menu" -msgstr "Novo menu" - -#: ../../mod/menu.php:81 ../../mod/menu.php:110 -msgid "Menu name" -msgstr "Nome do menu" - -#: ../../mod/menu.php:81 ../../mod/menu.php:110 -msgid "Must be unique, only seen by you" -msgstr "Deve ser único, exibido somente para você" - -#: ../../mod/menu.php:82 ../../mod/menu.php:111 -msgid "Menu title" -msgstr "Título do menu" - -#: ../../mod/menu.php:82 ../../mod/menu.php:111 -msgid "Menu title as seen by others" -msgstr "Título do menu quando visto por outros" - -#: ../../mod/menu.php:83 ../../mod/menu.php:112 -msgid "Allow bookmarks" -msgstr "Habilitar links guardados" - -#: ../../mod/menu.php:83 ../../mod/menu.php:112 -msgid "Menu may be used to store saved bookmarks" -msgstr "O menu pode ser utilizado para armazenar links guardados" - -#: ../../mod/menu.php:98 -msgid "Menu deleted." -msgstr "Menu deletado." - -#: ../../mod/menu.php:100 -msgid "Menu could not be deleted." -msgstr "Não foi possível deletar o menu." - -#: ../../mod/menu.php:106 -msgid "Edit Menu" -msgstr "Editar menu" - -#: ../../mod/menu.php:108 -msgid "Add or remove entries to this menu" -msgstr "Adicionar ou remover entradas deste menu" - -#: ../../mod/message.php:41 -msgid "Conversation removed." -msgstr "A conversa foi removida." - -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "Nenhuma mensagem." - -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: ../../mod/new_channel.php:107 -msgid "Add a Channel" -msgstr "Adicionar um canal" - -#: ../../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 "Um canal é uma coleção sua de páginas relacionadas. Um canal pode ser usado para um perfil de rede social, um blog, grupos de conversação e fóruns, páginas de celebridades, e muito mais. Você pode criar tantos canais quanto seu provedor de serviço permita." - -#: ../../mod/new_channel.php:111 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " -msgstr "Exemplos: \"Beto Salinas\", \"Elis e seus Cavalos\", \"Futebol\", \"Grupo de aviadores\"" - -#: ../../mod/new_channel.php:112 -msgid "Choose a short nickname" -msgstr "Escolha um apelido curto" - -#: ../../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 "Seu apelido será usado para criar um endereço para o canal de fácil memorização (como um endereço de email), que você poderá compartilhar com outros." - -#: ../../mod/new_channel.php:114 -msgid "Or import an existing channel from another location" -msgstr "Ou importe um canal existente de outro local" - #: ../../mod/photos.php:77 msgid "Page owner information could not be retrieved." msgstr "As informações do dono da pagina não puderam ser obtidas." @@ -7307,199 +5682,1768 @@ msgstr "Ver álbum" msgid "Recent Photos" msgstr "Fotos recentes" -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Identificador de solicitação inválido" +#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55 +msgid "Help:" +msgstr "Ajuda:" -#: ../../mod/notifications.php:35 -msgid "Discard" +#: ../../mod/help.php:69 ../../index.php:234 +msgid "Not Found" +msgstr "Não encontrada" + +#: ../../mod/ping.php:192 +msgid "sent you a private message" +msgstr "lhe enviou uma mensagem privada" + +#: ../../mod/ping.php:250 +msgid "added your channel" +msgstr "adicionou seu canal" + +#: ../../mod/ping.php:294 +msgid "posted an event" +msgstr "publicou um evento" + +#: ../../mod/lostpass.php:15 +msgid "No valid account found." +msgstr "Não foi encontrada uma conta válida." + +#: ../../mod/lostpass.php:29 +msgid "Password reset request issued. Check your email." +msgstr "A solicitação de restauração de senha foi encaminhada. Verifique seu e-mail." + +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#, php-format +msgid "Site Member (%s)" +msgstr "Membro do site (%s)" + +#: ../../mod/lostpass.php:40 +#, php-format +msgid "Password reset requested at %s" +msgstr "Foi feita uma solicitação de restauração de senha em %s" + +#: ../../mod/lostpass.php:63 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi restaurada." + +#: ../../mod/lostpass.php:85 ../../boot.php:1461 +msgid "Password Reset" +msgstr "Reiniciar a senha" + +#: ../../mod/lostpass.php:86 +msgid "Your password has been reset as requested." +msgstr "Sua senha foi restaurada, conforme solicitado." + +#: ../../mod/lostpass.php:87 +msgid "Your new password is" +msgstr "Sua nova senha é" + +#: ../../mod/lostpass.php:88 +msgid "Save or copy your new password - and then" +msgstr "Salve ou copie a sua nova senha e, então" + +#: ../../mod/lostpass.php:89 +msgid "click here to login" +msgstr "clique aqui para entrar" + +#: ../../mod/lostpass.php:90 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Sua senha pode ser alterada na página de Configurações após você entrar em sua conta." + +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has changed at %s" +msgstr "Sua senha foi modificada em %s" + +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "Esqueceu a sua senha?" + +#: ../../mod/lostpass.php:123 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Digite o seu endereço de e-mail e clique em 'Restaurar' para prosseguir com a restauração da sua senha. Após isso, verifique seu e-mail para mais instruções." + +#: ../../mod/lostpass.php:124 +msgid "Email Address" +msgstr "Endereço de e-mail" + +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "Restaurar" + +#: ../../mod/removeme.php:49 +msgid "Remove This Channel" +msgstr "Remover este canal" + +#: ../../mod/removeme.php:50 +msgid "" +"This will completely remove this channel from the network. Once this has " +"been done it is not recoverable." +msgstr "Isso irá remover completamente este canal da rede. Uma vez que seja feito não será possível recuperá-lo." + +#: ../../mod/removeme.php:51 +msgid "Please enter your password for verification:" +msgstr "Por favor, digite a sua senha para verificação:" + +#: ../../mod/removeme.php:52 +msgid "Remove this channel and all its clones from the network" +msgstr "Remover este canal e todos os seus clones da rede" + +#: ../../mod/removeme.php:52 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "Por padrão, apenas a instância do canal localizada neste hub será removida da rede" + +#: ../../mod/removeme.php:53 +msgid "Remove Channel" +msgstr "Remover canal" + +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "Nenhum potencial delegado para páginas localizado." + +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" +msgstr "Delegar administração de página" + +#: ../../mod/delegate.php:123 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "Delegados podem administrar todos os aspectos desta conta/página exceto pelas configurações básicas da conta. Por favor, não delegue sua conta pessoal para alguém que você não confie completamente." + +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" +msgstr "Atuais administradores da página" + +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "Atuais delegados da página" + +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "Potenciais delegados" + +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "Adicionar" + +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "Sem entradas." + +#: ../../mod/layouts.php:62 +msgid "Help with this feature" +msgstr "Ajuda com este recurso" + +#: ../../mod/layouts.php:84 +msgid "Layout Name" +msgstr "Nome do layout" + +#: ../../mod/connections.php:191 ../../mod/connections.php:291 +msgid "Blocked" +msgstr "Bloqueado" + +#: ../../mod/connections.php:196 ../../mod/connections.php:298 +msgid "Ignored" +msgstr "Ignorado" + +#: ../../mod/connections.php:201 ../../mod/connections.php:312 +msgid "Hidden" +msgstr "Oculto" + +#: ../../mod/connections.php:206 ../../mod/connections.php:305 +msgid "Archived" +msgstr "Arquivado" + +#: ../../mod/connections.php:230 ../../mod/connections.php:244 +msgid "All" +msgstr "Todos" + +#: ../../mod/connections.php:239 ../../mod/connections.php:319 +msgid "Unconnected" +msgstr "Não conectado" + +#: ../../mod/connections.php:269 +msgid "Suggest new connections" +msgstr "Sugerir novas conexões" + +#: ../../mod/connections.php:272 +msgid "New Connections" +msgstr "Novas conexões" + +#: ../../mod/connections.php:275 +msgid "Show pending (new) connections" +msgstr "Exibir conexões pendentes (novas)" + +#: ../../mod/connections.php:281 +msgid "Show all connections" +msgstr "Exibir todas as conexões" + +#: ../../mod/connections.php:284 +msgid "Unblocked" +msgstr "Não bloqueado" + +#: ../../mod/connections.php:287 +msgid "Only show unblocked connections" +msgstr "Exibir apenas conexões não bloqueadas" + +#: ../../mod/connections.php:294 +msgid "Only show blocked connections" +msgstr "Exibir apenas conexões bloqueadas" + +#: ../../mod/connections.php:301 +msgid "Only show ignored connections" +msgstr "Exibir apenas conexões ignoradas" + +#: ../../mod/connections.php:308 +msgid "Only show archived connections" +msgstr "Exibir apenas conexões arquivadas" + +#: ../../mod/connections.php:315 +msgid "Only show hidden connections" +msgstr "Exibir apenas conexões ocultas" + +#: ../../mod/connections.php:322 +msgid "Only show one-way connections" +msgstr "Exibir apenas conexões de mão única" + +#: ../../mod/connections.php:367 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" + +#: ../../mod/connections.php:368 +msgid "Edit contact" +msgstr "Editar o contato" + +#: ../../mod/connections.php:389 +msgid "Search your connections" +msgstr "Pesquisar em suas conexões" + +#: ../../mod/connections.php:390 +msgid "Finding: " +msgstr "Pesquisando: " + +#: ../../mod/import.php:36 +msgid "Nothing to import." +msgstr "Nada a importar." + +#: ../../mod/import.php:58 +msgid "Unable to download data from old server" +msgstr "Não foi possível descarregar os dados do servidor antigo" + +#: ../../mod/import.php:64 +msgid "Imported file is empty." +msgstr "O arquivo importado está vazio." + +#: ../../mod/import.php:88 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Não foi possível criar um identificador de canal duplicado neste sistema. A importação falhou." + +#: ../../mod/import.php:106 +msgid "Channel clone failed. Import failed." +msgstr "Clonagem do canal falhou. A importação falhou." + +#: ../../mod/import.php:116 +msgid "Cloned channel not found. Import failed." +msgstr "Canal a clonar não encontrado. A importação falhou." + +#: ../../mod/import.php:358 +msgid "Import completed." +msgstr "A importação foi completada." + +#: ../../mod/import.php:371 +msgid "You must be logged in to use this feature." +msgstr "Você precisa estar autenticado para usar este recurso." + +#: ../../mod/import.php:376 +msgid "Import Channel" +msgstr "Importar canal" + +#: ../../mod/import.php:377 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file. Only identity and connections/relationships will " +"be imported. Importation of content is not yet available." +msgstr "Use este formulário para importar um canal existente de um servidor/hub diferente. Você pode obter a identidade do canal do servidor/hub antigo pela rede, ou fornecer um arquivo de exportação. Somente a identidade e as conexões/relacionamentos serão importados. Importação de conteúdos ainda não está disponível." + +#: ../../mod/import.php:378 +msgid "File to Upload" +msgstr "Arquivo a carregar" + +#: ../../mod/import.php:379 +msgid "Or provide the old server/hub details" +msgstr "Ou forneça os detalhes do antigo servidor/hub" + +#: ../../mod/import.php:380 +msgid "Your old identity address (xyz@example.com)" +msgstr "O endereço da sua velha identidade (xyz@exemplo.com)" + +#: ../../mod/import.php:381 +msgid "Your old login email address" +msgstr "O endereço de e-mail da sua antiga conta" + +#: ../../mod/import.php:382 +msgid "Your old login password" +msgstr "A senha dua sua antiga conta" + +#: ../../mod/import.php:383 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Para qualquer das opções, por favor escolha se deseja fazer deste hub seu novo endereço primário, ou se o velho local deve continuar com esse papel. Você será capaz de publicar a partir de ambos os locais, mas somente um pode estar designado como local primário para arquivos, fotos e mídia." + +#: ../../mod/import.php:384 +msgid "Make this hub my primary location" +msgstr "Faça deste hub meu local primário" + +#: ../../mod/mood.php:138 +msgid "Mood" +msgstr "Humor" + +#: ../../mod/mood.php:139 +msgid "Set your current mood and tell your friends" +msgstr "Marque seu humor atual e compartilhe com seus amigos" + +#: ../../mod/chat.php:167 +msgid "Room not found" +msgstr "Sala não encontrada" + +#: ../../mod/chat.php:178 +msgid "Leave Room" +msgstr "Sair da sala" + +#: ../../mod/chat.php:179 +msgid "Delete This Room" +msgstr "Deletar esta sala" + +#: ../../mod/chat.php:180 +msgid "I am away right now" +msgstr "Eu estou ausente no momento" + +#: ../../mod/chat.php:181 +msgid "I am online" +msgstr "Eu estou online" + +#: ../../mod/chat.php:183 +msgid "Bookmark this room" +msgstr "Guarde esta sala" + +#: ../../mod/chat.php:207 ../../mod/chat.php:229 +msgid "New Chatroom" +msgstr "Nova sala de bate-papo" + +#: ../../mod/chat.php:208 +msgid "Chatroom Name" +msgstr "Nome da sala de bate-papo" + +#: ../../mod/chat.php:225 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Salas de bate-papo de %1$s" + +#: ../../mod/editblock.php:77 +msgid "Edit Block" +msgstr "Editar bloco" + +#: ../../mod/editblock.php:87 +msgid "Delete block?" +msgstr "Deletar bloco?" + +#: ../../mod/editblock.php:153 +msgid "Delete Block" +msgstr "Deletar bloco" + +#: ../../mod/match.php:16 +msgid "Profile Match" +msgstr "Correspondência de perfil" + +#: ../../mod/match.php:24 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Nenhuma palavra-chave para combinar. Por favor, adicione palavras-chave ao seu perfil padrão." + +#: ../../mod/match.php:61 +msgid "is interested in:" +msgstr "se interessa por:" + +#: ../../mod/match.php:69 +msgid "No matches" +msgstr "Nenhuma correspondência" + +#: ../../mod/chatsvc.php:111 +msgid "Away" +msgstr "Ausente" + +#: ../../mod/chatsvc.php:115 +msgid "Online" +msgstr "Online" + +#: ../../mod/editwebpage.php:106 +msgid "Edit Webpage" +msgstr "Editar página web" + +#: ../../mod/editwebpage.php:116 +msgid "Delete webpage?" +msgstr "Deletar página web?" + +#: ../../mod/editwebpage.php:187 +msgid "Delete Webpage" +msgstr "Deletar página web" + +#: ../../mod/profiles.php:18 ../../mod/profiles.php:138 +#: ../../mod/profiles.php:168 ../../mod/profiles.php:463 +msgid "Profile not found." +msgstr "O perfil não foi encontrado." + +#: ../../mod/profiles.php:38 +msgid "Profile deleted." +msgstr "O perfil foi excluído." + +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" +msgstr "Perfil-" + +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." +msgstr "O novo perfil foi criado." + +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." +msgstr "O perfil não está disponível para clonagem." + +#: ../../mod/profiles.php:178 +msgid "Profile Name is required." +msgstr "É obrigatório informar o nome do perfil." + +#: ../../mod/profiles.php:294 +msgid "Marital Status" +msgstr "Estado civil" + +#: ../../mod/profiles.php:298 +msgid "Romantic Partner" +msgstr "Parceiro/a romântico/a" + +#: ../../mod/profiles.php:302 +msgid "Likes" +msgstr "Gosta de" + +#: ../../mod/profiles.php:306 +msgid "Dislikes" +msgstr "Não gosta de" + +#: ../../mod/profiles.php:310 +msgid "Work/Employment" +msgstr "Trabalho/Emprego" + +#: ../../mod/profiles.php:313 +msgid "Religion" +msgstr "Religião" + +#: ../../mod/profiles.php:317 +msgid "Political Views" +msgstr "Posição política" + +#: ../../mod/profiles.php:321 +msgid "Gender" +msgstr "Gênero" + +#: ../../mod/profiles.php:325 +msgid "Sexual Preference" +msgstr "Preferência sexual" + +#: ../../mod/profiles.php:329 +msgid "Homepage" +msgstr "Página web" + +#: ../../mod/profiles.php:333 +msgid "Interests" +msgstr "Interesses" + +#: ../../mod/profiles.php:337 ../../mod/admin.php:891 +msgid "Address" +msgstr "Endereço" + +#: ../../mod/profiles.php:427 +msgid "Profile updated." +msgstr "O perfil foi atualizado." + +#: ../../mod/profiles.php:482 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Esconder sua lista de contatos/amigos dos visitantes no seu perfil?" + +#: ../../mod/profiles.php:505 +msgid "Edit Profile Details" +msgstr "Editar os detalhes do perfil" + +#: ../../mod/profiles.php:507 +msgid "View this profile" +msgstr "Ver este perfil" + +#: ../../mod/profiles.php:508 +msgid "Change Profile Photo" +msgstr "Mudar a foto do perfil" + +#: ../../mod/profiles.php:509 +msgid "Create a new profile using these settings" +msgstr "Criar um novo perfil usando estas configurações" + +#: ../../mod/profiles.php:510 +msgid "Clone this profile" +msgstr "Clonar este perfil" + +#: ../../mod/profiles.php:511 +msgid "Delete this profile" +msgstr "Excluir este perfil" + +#: ../../mod/profiles.php:512 +msgid "Profile Name:" +msgstr "Nome do perfil:" + +#: ../../mod/profiles.php:513 +msgid "Your Full Name:" +msgstr "Seu nome completo:" + +#: ../../mod/profiles.php:514 +msgid "Title/Description:" +msgstr "Título/Descrição:" + +#: ../../mod/profiles.php:515 +msgid "Your Gender:" +msgstr "Seu gênero:" + +#: ../../mod/profiles.php:516 +#, php-format +msgid "Birthday (%s):" +msgstr "Aniversário (%s):" + +#: ../../mod/profiles.php:517 +msgid "Street Address:" +msgstr "Endereço:" + +#: ../../mod/profiles.php:518 +msgid "Locality/City:" +msgstr "Localidade/Cidade:" + +#: ../../mod/profiles.php:519 +msgid "Postal/Zip Code:" +msgstr "CEP:" + +#: ../../mod/profiles.php:520 +msgid "Country:" +msgstr "País:" + +#: ../../mod/profiles.php:521 +msgid "Region/State:" +msgstr "Região/Estado:" + +#: ../../mod/profiles.php:522 +msgid " Marital Status:" +msgstr "Estado civil :" + +#: ../../mod/profiles.php:523 +msgid "Who: (if applicable)" +msgstr "Quem: (se aplicável)" + +#: ../../mod/profiles.php:524 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com" + +#: ../../mod/profiles.php:525 +msgid "Since [date]:" +msgstr "Desde [data]:" + +#: ../../mod/profiles.php:527 +msgid "Homepage URL:" +msgstr "Endereço do website:" + +#: ../../mod/profiles.php:530 +msgid "Religious Views:" +msgstr "Orientação religiosa:" + +#: ../../mod/profiles.php:531 +msgid "Keywords:" +msgstr "Palavras-chave:" + +#: ../../mod/profiles.php:534 +msgid "Example: fishing photography software" +msgstr "Exemplo: pesca fotografia software" + +#: ../../mod/profiles.php:535 +msgid "Used in directory listings" +msgstr "Usado em listas de diretório" + +#: ../../mod/profiles.php:536 +msgid "Tell us about yourself..." +msgstr "Fale um pouco sobre você..." + +#: ../../mod/profiles.php:537 +msgid "Hobbies/Interests" +msgstr "Hobbies/Interesses" + +#: ../../mod/profiles.php:538 +msgid "Contact information and Social Networks" +msgstr "Informações de contato e redes sociais" + +#: ../../mod/profiles.php:539 +msgid "My other channels" +msgstr "Meus outros canais" + +#: ../../mod/profiles.php:540 +msgid "Musical interests" +msgstr "Interesses musicais" + +#: ../../mod/profiles.php:541 +msgid "Books, literature" +msgstr "Livros, literatura" + +#: ../../mod/profiles.php:542 +msgid "Television" +msgstr "Televisão" + +#: ../../mod/profiles.php:543 +msgid "Film/dance/culture/entertainment" +msgstr "Filme/dança/cultura/entretenimento" + +#: ../../mod/profiles.php:544 +msgid "Love/romance" +msgstr "Amor/romance" + +#: ../../mod/profiles.php:545 +msgid "Work/employment" +msgstr "Trabalho/emprego" + +#: ../../mod/profiles.php:546 +msgid "School/education" +msgstr "Escola/educação" + +#: ../../mod/profiles.php:551 +msgid "" +"This is your public profile.
    It may " +"be visible to anybody using the internet." +msgstr "Este é o seu perfil público.
    Ele pode estar visível para qualquer um que acesse a Internet." + +#: ../../mod/profiles.php:600 +msgid "Edit/Manage Profiles" +msgstr "Editar/Administrar perfis" + +#: ../../mod/profiles.php:601 +msgid "Add profile things" +msgstr "Adicionar coisas ao perfil" + +#: ../../mod/profiles.php:602 +msgid "Include desirable objects in your profile" +msgstr "Inclua objetos desejáveis no seu perfil" + +#: ../../mod/menu.php:21 +msgid "Menu updated." +msgstr "Menu atualizado." + +#: ../../mod/menu.php:25 +msgid "Unable to update menu." +msgstr "Não foi possível atualizar o menu." + +#: ../../mod/menu.php:30 +msgid "Menu created." +msgstr "O menu foi criado." + +#: ../../mod/menu.php:34 +msgid "Unable to create menu." +msgstr "Não foi possível criar o menu." + +#: ../../mod/menu.php:57 +msgid "Manage Menus" +msgstr "Administrar menus" + +#: ../../mod/menu.php:60 +msgid "Drop" msgstr "Descartar" -#: ../../mod/notifications.php:94 ../../mod/notify.php:54 -msgid "No more system notifications." -msgstr "Sem novas notificações do sistema." +#: ../../mod/menu.php:62 +msgid "Create a new menu" +msgstr "Criar um novo menu" -#: ../../mod/notifications.php:98 ../../mod/notify.php:58 -msgid "System Notifications" -msgstr "Notificações do sistema" +#: ../../mod/menu.php:63 +msgid "Delete this menu" +msgstr "Deletar este menu" -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "Não foi possível localizar seu hub." +#: ../../mod/menu.php:64 ../../mod/menu.php:109 +msgid "Edit menu contents" +msgstr "Editar os conteúdos do menu" -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Publicado com sucesso." +#: ../../mod/menu.php:65 +msgid "Edit this menu" +msgstr "Editar este menu" -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" -msgstr "assinatura do destino inválida" +#: ../../mod/menu.php:80 +msgid "New Menu" +msgstr "Novo menu" + +#: ../../mod/menu.php:81 ../../mod/menu.php:110 +msgid "Menu name" +msgstr "Nome do menu" + +#: ../../mod/menu.php:81 ../../mod/menu.php:110 +msgid "Must be unique, only seen by you" +msgstr "Deve ser único, exibido somente para você" + +#: ../../mod/menu.php:82 ../../mod/menu.php:111 +msgid "Menu title" +msgstr "Título do menu" + +#: ../../mod/menu.php:82 ../../mod/menu.php:111 +msgid "Menu title as seen by others" +msgstr "Título do menu quando visto por outros" + +#: ../../mod/menu.php:83 ../../mod/menu.php:112 +msgid "Allow bookmarks" +msgstr "Habilitar links guardados" + +#: ../../mod/menu.php:83 ../../mod/menu.php:112 +msgid "Menu may be used to store saved bookmarks" +msgstr "O menu pode ser utilizado para armazenar links guardados" + +#: ../../mod/menu.php:98 +msgid "Menu deleted." +msgstr "Menu deletado." + +#: ../../mod/menu.php:100 +msgid "Menu could not be deleted." +msgstr "Não foi possível deletar o menu." + +#: ../../mod/menu.php:106 +msgid "Edit Menu" +msgstr "Editar menu" + +#: ../../mod/menu.php:108 +msgid "Add or remove entries to this menu" +msgstr "Adicionar ou remover entradas deste menu" #: ../../mod/openid.php:26 msgid "OpenID protocol error. No ID returned." msgstr "Erro do protocolo OpenID. Nenhuma ID retornada." -#: ../../view/theme/apw/php/config.php:202 -#: ../../view/theme/apw/php/config.php:236 -msgid "Schema Default" -msgstr "Padrão do esquema" +#: ../../mod/cloud.php:112 +msgid "Red Matrix - Guests: Username: {your email address}, Password: +++" +msgstr "Red Matrix - Visitantes: Usuário: {seu endereço de e-mail}, Senha: +++" -#: ../../view/theme/apw/php/config.php:203 -msgid "Sans-Serif" -msgstr "Sans-Serif" +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." +msgstr "Não foi possível encontrar o destinatário." -#: ../../view/theme/apw/php/config.php:204 -msgid "Monospace" -msgstr "Monoespaçada" +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." +msgstr "Não foi possível comunicar com o canal solicitado." + +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." +msgstr "Não foi possível verificar o canal requisitado." + +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "O canal solicitado tem restrições a mensagens privadas. Falha no envio." + +#: ../../mod/mail.php:132 +msgid "Message deleted." +msgstr "A mensagem foi excluída." + +#: ../../mod/mail.php:149 +msgid "Message recalled." +msgstr "Mensagem retirada." + +#: ../../mod/mail.php:206 +msgid "Send Private Message" +msgstr "Enviar mensagem privada" + +#: ../../mod/mail.php:207 ../../mod/mail.php:323 +msgid "To:" +msgstr "Para:" + +#: ../../mod/mail.php:212 ../../mod/mail.php:325 +msgid "Subject:" +msgstr "Assunto:" + +#: ../../mod/mail.php:216 ../../mod/mail.php:328 ../../mod/invite.php:143 +msgid "Your message:" +msgstr "Sua mensagem:" + +#: ../../mod/mail.php:249 +msgid "Message not found." +msgstr "Mensagem não encontrada." + +#: ../../mod/mail.php:293 +msgid "Recall message" +msgstr "Retirar mensagem" + +#: ../../mod/mail.php:295 +msgid "Message has been recalled." +msgstr "A mensagem foi retirada." + +#: ../../mod/mail.php:312 +msgid "Private Conversation" +msgstr "Conversa privada" + +#: ../../mod/mail.php:316 +msgid "Delete conversation" +msgstr "Excluir conversa" + +#: ../../mod/mail.php:318 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Comunicação segura indisponível. Você talvez consiga responder pela página de perfil do remetente." + +#: ../../mod/mail.php:322 +msgid "Send Reply" +msgstr "Enviar resposta" + +#: ../../mod/appman.php:27 +msgid "App installed." +msgstr "Aplicativo instalado" + +#: ../../mod/appman.php:35 +msgid "Malformed app." +msgstr "Aplicativo malformado." + +#: ../../mod/appman.php:72 +msgid "Embed code" +msgstr "Embarcar código" + +#: ../../mod/appman.php:78 +msgid "Create App" +msgstr "Criar aplicativo" + +#: ../../mod/appman.php:83 +msgid "Name of app" +msgstr "Nome do aplicativo" + +#: ../../mod/appman.php:84 +msgid "Location (URL) of app" +msgstr "Endereço (URL) do aplicativo" + +#: ../../mod/appman.php:85 ../../mod/rbmark.php:95 +msgid "Description" +msgstr "Descrição" + +#: ../../mod/appman.php:86 +msgid "Photo icon URL" +msgstr "URL da foto de ícone" + +#: ../../mod/appman.php:86 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixels - opcional" + +#: ../../mod/appman.php:87 +msgid "Version ID" +msgstr "ID da versão" + +#: ../../mod/appman.php:88 +msgid "Price of app" +msgstr "Preço do aplicativo" + +#: ../../mod/appman.php:89 +msgid "Location (URL) to purchase app" +msgstr "Endereço (URL) para comprar o aplicativo" + +#: ../../mod/poke.php:159 +msgid "Poke/Prod" +msgstr "Cutucar/Espetar" + +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" +msgstr "Cutucar, espetar ou fazer outras coisas a alguém" + +#: ../../mod/poke.php:161 +msgid "Recipient" +msgstr "Destinatário" + +#: ../../mod/poke.php:162 +msgid "Choose what you wish to do to recipient" +msgstr "Escolha o que você deseja fazer com seu alvo" + +#: ../../mod/poke.php:165 +msgid "Make this post private" +msgstr "Torne esta publicação privada" + +#: ../../mod/viewconnections.php:58 +msgid "No connections." +msgstr "Nenhuma conexão." + +#: ../../mod/viewconnections.php:70 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Ver o perfil de %s [%s]" + +#: ../../mod/viewconnections.php:85 +msgid "View Connnections" +msgstr "Ver conexões" + +#: ../../mod/admin.php:52 +msgid "Theme settings updated." +msgstr "As configurações de tema foram atualizadas." + +#: ../../mod/admin.php:92 ../../mod/admin.php:440 +msgid "Site" +msgstr "Site" + +#: ../../mod/admin.php:93 +msgid "Accounts" +msgstr "Contas" + +#: ../../mod/admin.php:94 ../../mod/admin.php:883 +msgid "Channels" +msgstr "Canais" + +#: ../../mod/admin.php:95 ../../mod/admin.php:974 ../../mod/admin.php:1016 +msgid "Plugins" +msgstr "Plugins" + +#: ../../mod/admin.php:96 ../../mod/admin.php:1179 ../../mod/admin.php:1215 +msgid "Themes" +msgstr "Temas" + +#: ../../mod/admin.php:97 ../../mod/admin.php:540 +msgid "Server" +msgstr "Servidor" + +#: ../../mod/admin.php:98 +msgid "DB updates" +msgstr "Atualizações do Banco de Dados" + +#: ../../mod/admin.php:112 ../../mod/admin.php:119 ../../mod/admin.php:1302 +msgid "Logs" +msgstr "Logs" + +#: ../../mod/admin.php:118 +msgid "Plugin Features" +msgstr "Recursos dos plugins" + +#: ../../mod/admin.php:120 +msgid "User registrations waiting for confirmation" +msgstr "Registros de usuário aguardando confirmação" + +#: ../../mod/admin.php:197 +msgid "Message queues" +msgstr "Filas de mensagem" + +#: ../../mod/admin.php:202 ../../mod/admin.php:439 ../../mod/admin.php:539 +#: ../../mod/admin.php:748 ../../mod/admin.php:882 ../../mod/admin.php:973 +#: ../../mod/admin.php:1015 ../../mod/admin.php:1178 ../../mod/admin.php:1214 +#: ../../mod/admin.php:1301 +msgid "Administration" +msgstr "Administração" + +#: ../../mod/admin.php:203 +msgid "Summary" +msgstr "Resumo" + +#: ../../mod/admin.php:205 +msgid "Registered users" +msgstr "Usuários registrados" + +#: ../../mod/admin.php:207 ../../mod/admin.php:543 +msgid "Pending registrations" +msgstr "Registros pendentes" + +#: ../../mod/admin.php:208 +msgid "Version" +msgstr "Versão" + +#: ../../mod/admin.php:210 ../../mod/admin.php:544 +msgid "Active plugins" +msgstr "Plugins ativos" + +#: ../../mod/admin.php:360 +msgid "Site settings updated." +msgstr "As configurações de site foram atualizadas." + +#: ../../mod/admin.php:391 +msgid "No special theme for accessibility" +msgstr "Sem tema especial para acessibilidade" + +#: ../../mod/admin.php:420 +msgid "Yes - with approval" +msgstr "Sim - pendente aprovação" + +#: ../../mod/admin.php:426 +msgid "My site is not a public server" +msgstr "Meu site não é um servidor público" + +#: ../../mod/admin.php:427 +msgid "My site has paid access only" +msgstr "Meu site oferece somente acesso pago" + +#: ../../mod/admin.php:428 +msgid "My site has free access only" +msgstr "Meu site oferece somente acesso gratuito" + +#: ../../mod/admin.php:429 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "Meu site oferece contas gratuitas com recursos adicionais pagos" + +#: ../../mod/admin.php:442 ../../mod/register.php:189 +msgid "Registration" +msgstr "Registro" + +#: ../../mod/admin.php:443 +msgid "File upload" +msgstr "Carregamento de arquivos" + +#: ../../mod/admin.php:444 +msgid "Policies" +msgstr "Políticas" + +#: ../../mod/admin.php:449 +msgid "Site name" +msgstr "Nome do site" + +#: ../../mod/admin.php:450 +msgid "Banner/Logo" +msgstr "Cartaz/Logo" + +#: ../../mod/admin.php:451 +msgid "Administrator Information" +msgstr "Informações do Administrador" + +#: ../../mod/admin.php:451 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Informações de contato com administradores do site. Exibida na página siteinfo. BBCode pode ser usado aqui." + +#: ../../mod/admin.php:452 +msgid "System language" +msgstr "Idioma do sistema" + +#: ../../mod/admin.php:453 +msgid "System theme" +msgstr "Tema do sistema" + +#: ../../mod/admin.php:453 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Tema padrão do sistema - pode ser sobrescrito por perfis de usuário - mudar configurações do tema" + +#: ../../mod/admin.php:454 +msgid "Mobile system theme" +msgstr "Tema do sistema móvel" + +#: ../../mod/admin.php:454 +msgid "Theme for mobile devices" +msgstr "Tema para dispositivos móveis" + +#: ../../mod/admin.php:455 +msgid "Accessibility system theme" +msgstr "Tema do sistema acessível" + +#: ../../mod/admin.php:455 +msgid "Accessibility theme" +msgstr "Tema acessível" + +#: ../../mod/admin.php:456 +msgid "Channel to use for this website's static pages" +msgstr "Canal a utilizar para as páginas estáticas desse website" + +#: ../../mod/admin.php:456 +msgid "Site Channel" +msgstr "Canal do site" + +#: ../../mod/admin.php:458 +msgid "Maximum image size" +msgstr "Tamanho máximo de imagens" + +#: ../../mod/admin.php:458 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Tamanho máximo em bytes de imagens carregadas. O padrão é 0, significando sem limites." + +#: ../../mod/admin.php:459 +msgid "Does this site allow new member registration?" +msgstr "Este site permite o registro de novos membros?" + +#: ../../mod/admin.php:460 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Qual descreve melhor os tipos de conta oferecidas por este hub?" + +#: ../../mod/admin.php:461 +msgid "Register text" +msgstr "Texto de registro" + +#: ../../mod/admin.php:461 +msgid "Will be displayed prominently on the registration page." +msgstr "Será exibido proeminentemente na página de registro." + +#: ../../mod/admin.php:462 +msgid "Accounts abandoned after x days" +msgstr "Contas abandonadas após x dias" + +#: ../../mod/admin.php:462 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Não gastará recursos do sistema coletando de sites externos para contas abandonadas. Use 0 para sem limite de tempo." + +#: ../../mod/admin.php:463 +msgid "Allowed friend domains" +msgstr "Domínios permitidos para amigos" + +#: ../../mod/admin.php:463 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Lista, separada por vírgulas, de domínios permitidos para estabelecer amizades com este site. Wildcards são aceitas. Vazio para permitir qualquer domínio" + +#: ../../mod/admin.php:464 +msgid "Allowed email domains" +msgstr "Domínios permitidos de e-mail" + +#: ../../mod/admin.php:464 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Lista, separada por vírgulas, de domínios permitidos em endereços de e-mail para registros nesse site. Wildcards são aceitas. Vazio para permitir qualquer domínio" + +#: ../../mod/admin.php:465 +msgid "Block public" +msgstr "Bloquear público" + +#: ../../mod/admin.php:465 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Marque para bloquear o acesso público a todas as páginas pessoais que seriam públicas, a não ser que se esteja autenticado." + +#: ../../mod/admin.php:466 +msgid "Force publish" +msgstr "Forçar publicação" + +#: ../../mod/admin.php:466 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Marque para forçar todos os perfis neste site a aparecerem listados no diretório do site." + +#: ../../mod/admin.php:467 +msgid "Disable discovery tab" +msgstr "Desabilitar a aba \"Descubra\"" + +#: ../../mod/admin.php:467 +msgid "" +"Remove the tab in the network view with public content pulled from sources " +"chosen for this site." +msgstr "Remove da visualização de rede a aba com conteúdos públicos obtidos de fontes escolhidas para esse site." + +#: ../../mod/admin.php:468 +msgid "No login on Homepage" +msgstr "Sem formulário de autenticação na página inicial" + +#: ../../mod/admin.php:468 +msgid "" +"Check to hide the login form from your sites homepage when visitors arrive " +"who are not logged in (e.g. when you put the content of the homepage in via " +"the site channel)." +msgstr "Marque para esconder o formulário de autenticação da página inicial do seu site quando visitantes chegarem sem estar autenticados (e.g. quando você inclui os conteúdos da página inicial através do canal do site)." + +#: ../../mod/admin.php:470 +msgid "Proxy user" +msgstr "Usuário do proxy" + +#: ../../mod/admin.php:471 +msgid "Proxy URL" +msgstr "URL do proxy" + +#: ../../mod/admin.php:472 +msgid "Network timeout" +msgstr "Timeout da rede" + +#: ../../mod/admin.php:472 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valor em segundos. Use 0 para ilimitado (não recomendado)." + +#: ../../mod/admin.php:473 +msgid "Delivery interval" +msgstr "Intervalo de entrega" + +#: ../../mod/admin.php:473 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Atrase os processos de entrega em segundo plano por este número de segundos para reduzir a carga do sistema. Recomendado: 4-5 para hosts compartilhados, 2-3 para servidores virtuais privados. 0-1 para grandes servidores dedicados." + +#: ../../mod/admin.php:474 +msgid "Poll interval" +msgstr "Intervalo de coleta" + +#: ../../mod/admin.php:474 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Atrase os processos de coleta em segundo plano por este número de segundos para reduzir a carga do sistema. Se 0, use o intervalo de entrega." + +#: ../../mod/admin.php:475 +msgid "Maximum Load Average" +msgstr "Carga média máxima" + +#: ../../mod/admin.php:475 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Carga máxima do sistema antes de adiar processos de entrega e coleta - padrão 50." + +#: ../../mod/admin.php:531 +msgid "No server found" +msgstr "Nenhum servidor foi encontrado" + +#: ../../mod/admin.php:538 ../../mod/admin.php:762 +msgid "ID" +msgstr "ID" + +#: ../../mod/admin.php:538 +msgid "for channel" +msgstr "para o canal" + +#: ../../mod/admin.php:538 +msgid "on server" +msgstr "no servidor" + +#: ../../mod/admin.php:538 +msgid "Status" +msgstr "Status" + +#: ../../mod/admin.php:559 +msgid "Update has been marked successful" +msgstr "A atualização foi designada bem sucedida" + +#: ../../mod/admin.php:569 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Execução de %s falhou. Verifique os logs do sistema." + +#: ../../mod/admin.php:572 +#, php-format +msgid "Update %s was successfully applied." +msgstr "A atualização %s foi aplicada com sucesso." + +#: ../../mod/admin.php:576 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "A atualização %s não retornou um status. Situação incerta quando ao seu sucesso." + +#: ../../mod/admin.php:579 +#, php-format +msgid "Update function %s could not be found." +msgstr "A função de atualização %s não foi encontrada." + +#: ../../mod/admin.php:594 +msgid "No failed updates." +msgstr "Nenhuma falha nas atualizações." + +#: ../../mod/admin.php:598 +msgid "Failed Updates" +msgstr "Falha nas atualizações" + +#: ../../mod/admin.php:600 +msgid "Mark success (if update was manually applied)" +msgstr "Marque sucesso (se a atualização foi aplicada manualmente)" + +#: ../../mod/admin.php:601 +msgid "Attempt to execute this update step automatically" +msgstr "Tente executar este passo da atualização automaticamente" + +#: ../../mod/admin.php:627 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s usuário foi bloqueado/desbloqueado" +msgstr[1] "%s usuários foram bloqueados/desbloqueados" + +#: ../../mod/admin.php:634 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s usuário foi deletado" +msgstr[1] "%s usuários foram deletados" + +#: ../../mod/admin.php:665 +msgid "Account not found" +msgstr "A conta não foi encontrada" + +#: ../../mod/admin.php:676 +#, php-format +msgid "User '%s' deleted" +msgstr "O usuário/a '%s' foi deletado/a" + +#: ../../mod/admin.php:685 +#, php-format +msgid "User '%s' unblocked" +msgstr "O usuário/a '%s' foi desbloqueado/a" + +#: ../../mod/admin.php:685 +#, php-format +msgid "User '%s' blocked" +msgstr "O usuário/a '%s' foi bloqueado/a" + +#: ../../mod/admin.php:749 ../../mod/admin.php:761 +msgid "Users" +msgstr "Usuários" + +#: ../../mod/admin.php:751 ../../mod/admin.php:885 +msgid "select all" +msgstr "selecionar tudo" + +#: ../../mod/admin.php:752 +msgid "User registrations waiting for confirm" +msgstr "Registros de usuário aguardando confirmação" + +#: ../../mod/admin.php:753 +msgid "Request date" +msgstr "Data de requisição" + +#: ../../mod/admin.php:754 +msgid "No registrations." +msgstr "Nenhum registro." + +#: ../../mod/admin.php:755 +msgid "Approve" +msgstr "Aprovar" + +#: ../../mod/admin.php:756 +msgid "Deny" +msgstr "Negar" + +#: ../../mod/admin.php:762 +msgid "Register date" +msgstr "Data de registro" + +#: ../../mod/admin.php:762 +msgid "Last login" +msgstr "Última autenticação" + +#: ../../mod/admin.php:762 +msgid "Expires" +msgstr "Expira" + +#: ../../mod/admin.php:762 +msgid "Service Class" +msgstr "Classe de serviço" + +#: ../../mod/admin.php:764 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Os usuários selecionados serão deletados!\\n\\nTudo o que esses usuários postaram neste site será permanentemente deletado!\\n\\nTem certeza?" + +#: ../../mod/admin.php:765 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "O/A usuário/a {0} será deletado/a!\\n\\nTudo o que esse/a usuário/a postou neste site será permanentemente deletado!\\n\\nTem certeza?" + +#: ../../mod/admin.php:797 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channelss censored/uncensored" +msgstr[0] "%s canal censurado/descensurado" +msgstr[1] "%s canais censurados/descensurados" + +#: ../../mod/admin.php:804 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s canal deletado" +msgstr[1] "%s canais deletados" + +#: ../../mod/admin.php:823 +msgid "Channel not found" +msgstr "Canal não encontrado" + +#: ../../mod/admin.php:834 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Canal '%s' deletado" + +#: ../../mod/admin.php:844 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Canal '%s' não censurado" + +#: ../../mod/admin.php:844 +#, php-format +msgid "Channel '%s' censored" +msgstr "Canal '%s' censurado" + +#: ../../mod/admin.php:887 +msgid "Censor" +msgstr "Censurar" + +#: ../../mod/admin.php:888 +msgid "Uncensor" +msgstr "Não censurar" + +#: ../../mod/admin.php:891 +msgid "UID" +msgstr "UID" + +#: ../../mod/admin.php:893 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Os canais selecionados serão deletados!\\n\\nTudo que foi postado nesses canais nesse site será permanentemente deletado!\\n\\nVocê tem certeza?" + +#: ../../mod/admin.php:894 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "O canal {0} será deletado!\\n\\nTudo o que foi postado nesse canal nesse site será permanentemente deletado!\\n\\nVocê tem certeza?" + +#: ../../mod/admin.php:933 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s desabilitado." + +#: ../../mod/admin.php:937 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s habilitado." + +#: ../../mod/admin.php:947 ../../mod/admin.php:1149 +msgid "Disable" +msgstr "Desabilitar" + +#: ../../mod/admin.php:949 ../../mod/admin.php:1151 +msgid "Enable" +msgstr "Habilitar" + +#: ../../mod/admin.php:975 ../../mod/admin.php:1180 +msgid "Toggle" +msgstr "Alternar" + +#: ../../mod/admin.php:983 ../../mod/admin.php:1190 +msgid "Author: " +msgstr "Autor:" + +#: ../../mod/admin.php:984 ../../mod/admin.php:1191 +msgid "Maintainer: " +msgstr "Mantenedor:" + +#: ../../mod/admin.php:1113 +msgid "No themes found." +msgstr "Nenhum tema foi encontrado." + +#: ../../mod/admin.php:1172 +msgid "Screenshot" +msgstr "Captura de tela" + +#: ../../mod/admin.php:1220 +msgid "[Experimental]" +msgstr "[Experimental]" + +#: ../../mod/admin.php:1221 +msgid "[Unsupported]" +msgstr "[Desassistido]" + +#: ../../mod/admin.php:1248 +msgid "Log settings updated." +msgstr "As configurações de log foram atualizadas." + +#: ../../mod/admin.php:1304 +msgid "Clear" +msgstr "Limpar" + +#: ../../mod/admin.php:1310 +msgid "Debugging" +msgstr "Depuração" + +#: ../../mod/admin.php:1311 +msgid "Log file" +msgstr "Arquivo de log" + +#: ../../mod/admin.php:1311 +msgid "" +"Must be writable by web server. Relative to your Red top-level directory." +msgstr "É necessário que o servidor web possa escrever neste arquivo. Relativo ao diretório raiz da Red." + +#: ../../mod/admin.php:1312 +msgid "Log level" +msgstr "Nível do log" + +#: ../../mod/register.php:43 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Número máximo de novos registros neste site excedido por hoje. Por favor, tente novamente amanhã." + +#: ../../mod/register.php:49 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Por favor, indique a aceitação dos Termos de Serviço. Falha ao registrar." + +#: ../../mod/register.php:77 +msgid "Passwords do not match." +msgstr "Senhas não conferem." + +#: ../../mod/register.php:105 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "O registro foi bem sucedido. Por favor, verifique seu e-mail para confirmar o registro." + +#: ../../mod/register.php:111 +msgid "Your registration is pending approval by the site owner." +msgstr "A aprovação do seu registro está pendente junto ao administrador do site." + +#: ../../mod/register.php:114 +msgid "Your registration can not be processed." +msgstr "Não foi possível processar o seu registro." + +#: ../../mod/register.php:147 +msgid "Registration on this site/hub is by approval only." +msgstr "O registro neste site/hub requer aprovação." + +#: ../../mod/register.php:148 +msgid "Register at another affiliated site/hub" +msgstr "Registre em um outro site/hub afiliado" + +#: ../../mod/register.php:156 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Este site excedeu o número máximo de registros de novas contas. Por favor, tente novamente amanhã." + +#: ../../mod/register.php:167 +msgid "Terms of Service" +msgstr "Termos de Serviço" + +#: ../../mod/register.php:173 +#, php-format +msgid "I accept the %s for this website" +msgstr "Eu aceito os %s deste website." + +#: ../../mod/register.php:175 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Eu sou maior de 13 anos e aceito os %s deste website" + +#: ../../mod/register.php:194 +msgid "Membership on this site is by invitation only." +msgstr "Novas contas neste site se dão apenas por convite." + +#: ../../mod/register.php:195 +msgid "Please enter your invitation code" +msgstr "Por favor, digite o código do seu convite" + +#: ../../mod/register.php:198 +msgid "Your email address" +msgstr "Seu endereço de e-mail" + +#: ../../mod/register.php:199 +msgid "Choose a password" +msgstr "Escolha uma senha" + +#: ../../mod/register.php:200 +msgid "Please re-enter your password" +msgstr "Por favor, digite sua senha novamente" + +#: ../../mod/filer.php:49 +msgid "- select -" +msgstr "- selecionar -" + +#: ../../mod/manage.php:64 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Você criou %1$.0f de %2$.0f canais permitidos." + +#: ../../mod/manage.php:72 +msgid "Create a new channel" +msgstr "Criar um novo canal" + +#: ../../mod/manage.php:77 +msgid "Channel Manager" +msgstr "Administrador do canal" + +#: ../../mod/manage.php:78 +msgid "Current Channel" +msgstr "Canal atual" + +#: ../../mod/manage.php:80 +msgid "Attach to one of your channels by selecting it." +msgstr "Selecione um dos seus canais para utilizá-lo." + +#: ../../mod/manage.php:81 +msgid "Default Channel" +msgstr "Canal padrão" + +#: ../../mod/manage.php:82 +msgid "Make Default" +msgstr "Tornar padrão" + +#: ../../mod/invite.php:25 +msgid "Total invitation limit exceeded." +msgstr "Foi excedido o número total de convites." + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Não é um endereço de e-mail válido." + +#: ../../mod/invite.php:76 +msgid "Please join us on Red" +msgstr "Por favor, una-se a nós na Red" + +#: ../../mod/invite.php:87 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Você excedeu o limite de convites. Por favor, entre em contato com o administrador do site." + +#: ../../mod/invite.php:92 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Não foi possível enviar a mensagem." + +#: ../../mod/invite.php:96 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d mensagem enviada." +msgstr[1] "%d mensagens enviadas." + +#: ../../mod/invite.php:115 +msgid "You have no more invitations available" +msgstr "Você não possui mais convites disponíveis" + +#: ../../mod/invite.php:141 +msgid "Send invitations" +msgstr "Enviar convites." + +#: ../../mod/invite.php:142 +msgid "Enter email addresses, one per line:" +msgstr "Digite os endereços de e-mail, um por linha:" + +#: ../../mod/invite.php:144 +msgid "" +"You are cordially invited to join me and some other close friends on the Red" +" Matrix - a revolutionary new decentralised communication and information " +"tool." +msgstr "Você está convidado a juntar-se a mim e alguns outros amigos próximos na Red Matrix - uma revolucionária nova ferramenta para comunicação e informação descentralizada." + +#: ../../mod/invite.php:146 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Você deve informar este código de convite: $invite_code" + +#: ../../mod/invite.php:147 +msgid "Please visit my channel at" +msgstr "Por favor, visite o meu canal em" + +#: ../../mod/invite.php:151 +msgid "" +"Once you have registered (on ANY Red Matrix site - they are all inter-" +"connected), please connect with my Red Matrix channel address:" +msgstr "Após você se registrar (em qualquer site da Red Matrix - eles são todos interconectados!), peço que conecte-se comigo usando o endereço do meu canal:" + +#: ../../mod/invite.php:153 +msgid "Click the [Register] link on the following page to join." +msgstr "Clique no link [Registrar] na seguinte página para participar." + +#: ../../mod/invite.php:155 +msgid "" +"For more information about the Red Matrix Project and why it has the " +"potential to change the internet as we know it, please visit " +"http://getzot.com" +msgstr "Para maiores informações sobre o Projeto Red Matrix e porque ele tem potencial para mudar a Internet como a conhecemos, por favor visite: http://getzot.com" + +#: ../../mod/wall_upload.php:34 +msgid "Wall Photos" +msgstr "Fotos do mural" + +#: ../../mod/common.php:10 +msgid "No channel." +msgstr "Nenhum canal." + +#: ../../mod/common.php:39 +msgid "Common connections" +msgstr "Conexões em comum" + +#: ../../mod/common.php:44 +msgid "No connections in common." +msgstr "Nenhuma conexão em comum." + +#: ../../mod/regmod.php:12 +msgid "Please login." +msgstr "Por favor, autentique-se." + +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" +msgstr "Escolha uma pasta de links onde guardar" + +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" +msgstr "Guardar link" + +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" +msgstr "URL do link guardado" + +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "Ou digite o nome para uma nova pasta de links" + +#: ../../boot.php:1259 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "A atualização %s falhou. Veja os logs de erro." + +#: ../../boot.php:1262 +#, php-format +msgid "Update Error at %s" +msgstr "Erro de atualização em %s" + +#: ../../boot.php:1426 +msgid "" +"Create an account to access services and applications within the Red Matrix" +msgstr "Crie uma conta para acessar serviços e aplicações na Red Matrix" + +#: ../../boot.php:1454 +msgid "Password" +msgstr "Senha" + +#: ../../boot.php:1455 +msgid "Remember me" +msgstr "Lembrar de mim" + +#: ../../boot.php:1460 +msgid "Forgot your password?" +msgstr "Esqueceu a sua senha?" + +#: ../../boot.php:1525 +msgid "permission denied" +msgstr "permissão negada" + +#: ../../boot.php:1526 +msgid "Got Zot?" +msgstr "Já tem Zot?" + +#: ../../boot.php:1956 +msgid "toggle mobile" +msgstr "alternar para interface móvel" -#: ../../view/theme/apw/php/config.php:259 -#: ../../view/theme/blogga/php/config.php:69 -#: ../../view/theme/blogga/view/theme/blog/config.php:69 #: ../../view/theme/redbasic/php/config.php:102 msgid "Theme settings" msgstr "Configurações de tema" -#: ../../view/theme/apw/php/config.php:260 #: ../../view/theme/redbasic/php/config.php:103 msgid "Set scheme" msgstr "Definir esquema" -#: ../../view/theme/apw/php/config.php:261 -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set font-size for posts and comments" -msgstr "Definir o tamanho da fonte para publicações e comentários" - -#: ../../view/theme/apw/php/config.php:262 -msgid "Set font face" -msgstr "Definir a face da fonte" - -#: ../../view/theme/apw/php/config.php:263 -msgid "Set iconset" -msgstr "Definir o conjunto de ícones" - -#: ../../view/theme/apw/php/config.php:264 -msgid "Set big shadow size, default 15px 15px 15px" -msgstr "Definir o tamanho da sombra grande, padrão 15px 15px 15px" - -#: ../../view/theme/apw/php/config.php:265 -msgid "Set small shadow size, default 5px 5px 5px" -msgstr "Definir o tamanho da sombra pequena, padrão 5px 5px 5px" - -#: ../../view/theme/apw/php/config.php:266 -msgid "Set shadow colour, default #000" -msgstr "Definir a cor da sombra, padrão #000" - -#: ../../view/theme/apw/php/config.php:267 -msgid "Set radius size, default 5px" -msgstr "Definir o tamanho do raio de curvatura, padrão 5px" - -#: ../../view/theme/apw/php/config.php:268 -msgid "Set line-height for posts and comments" -msgstr "Definir a altura da linha para publicações e comentários" - -#: ../../view/theme/apw/php/config.php:269 -msgid "Set background image" -msgstr "Definir a imagem do pano de fundo" - -#: ../../view/theme/apw/php/config.php:270 -msgid "Set background attachment" -msgstr "Definir o anexo de pano de fundo" - -#: ../../view/theme/apw/php/config.php:271 -msgid "Set background colour" -msgstr "Definir a cor do pano de fundo" - -#: ../../view/theme/apw/php/config.php:272 -msgid "Set section background image" -msgstr "Definir a imagem de fundo de seção" - -#: ../../view/theme/apw/php/config.php:273 -msgid "Set section background colour" -msgstr "Definir a cor de fundo de seção" - -#: ../../view/theme/apw/php/config.php:274 -msgid "Set colour of items - use hex" -msgstr "Definir a cor dos itens - use hex" - -#: ../../view/theme/apw/php/config.php:275 -msgid "Set colour of links - use hex" -msgstr "Definir a cor dos links - use hex" - -#: ../../view/theme/apw/php/config.php:276 -msgid "Set max-width for items. Default 400px" -msgstr "Definir a largura máxima para itens. Padrão 400px" - -#: ../../view/theme/apw/php/config.php:277 -msgid "Set min-width for items. Default 240px" -msgstr "Definir a largura mínima para itens. Padrão 240px" - -#: ../../view/theme/apw/php/config.php:278 -msgid "Set the generic content wrapper width. Default 48%" -msgstr "Definir a largura do envólucro para conteúdo genérico. Padrão 48%" - -#: ../../view/theme/apw/php/config.php:279 -msgid "Set colour of fonts - use hex" -msgstr "Definir a cor das fontes - use hex" - -#: ../../view/theme/apw/php/config.php:280 -msgid "Set background-size element" -msgstr "Definir o elemento background-size" - -#: ../../view/theme/apw/php/config.php:281 -msgid "Item opacity" -msgstr "Opacidade de itens" - -#: ../../view/theme/apw/php/config.php:282 -msgid "Display post previews only" -msgstr "Exibir apenas a pré-visualização de publicações" - -#: ../../view/theme/apw/php/config.php:283 -msgid "Display side bar on channel page" -msgstr "Exibir a barra lateral na página do canal" - -#: ../../view/theme/apw/php/config.php:284 -msgid "Colour of the navigation bar" -msgstr "Cor da barra de navegação" - -#: ../../view/theme/apw/php/config.php:285 -msgid "Item float" -msgstr "Flutuação de item" - -#: ../../view/theme/apw/php/config.php:286 -msgid "Left offset of the section element" -msgstr "Deslocamento esquerdo do elemento de seção" - -#: ../../view/theme/apw/php/config.php:287 -msgid "Right offset of the section element" -msgstr "Deslocamento direito do elemento de seção" - -#: ../../view/theme/apw/php/config.php:288 -msgid "Section width" -msgstr "largura de seção" - -#: ../../view/theme/apw/php/config.php:289 -msgid "Left offset of the aside" -msgstr "Deslocamento esquerdo do aparte" - -#: ../../view/theme/apw/php/config.php:290 -msgid "Right offset of the aside element" -msgstr "Deslocamento direito do aparte" - -#: ../../view/theme/blogga/php/config.php:47 -#: ../../view/theme/blogga/view/theme/blog/config.php:47 -msgid "None" -msgstr "Nenhum" - -#: ../../view/theme/blogga/php/config.php:70 -#: ../../view/theme/blogga/view/theme/blog/config.php:70 -msgid "Header image" -msgstr "Imagem de cabeçalho" - -#: ../../view/theme/blogga/php/config.php:71 -#: ../../view/theme/blogga/view/theme/blog/config.php:71 -msgid "Header image only on profile pages" -msgstr "Imagem de cabeçalho apenas em páginas de perfil" - #: ../../view/theme/redbasic/php/config.php:104 msgid "Narrow navbar" msgstr "Barra de navegação estreita" @@ -7580,6 +7524,10 @@ msgstr "Definir a cor para ícones de itens quando que o mouse está sobre eles" msgid "Set font-size for the entire application" msgstr "Definir o tamanho da fonte para a aplicação como um todo" +#: ../../view/theme/redbasic/php/config.php:124 +msgid "Set font-size for posts and comments" +msgstr "Definir o tamanho da fonte para publicações e comentários" + #: ../../view/theme/redbasic/php/config.php:125 msgid "Set font-colour for posts and comments" msgstr "Definir a cor da fonte para publicações e comentários" @@ -7619,42 +7567,3 @@ msgstr "Álbuns de fotos desleixados" #: ../../view/theme/redbasic/php/config.php:133 msgid "Are you a clean desk or a messy desk person?" msgstr "Sua mesa é do tipo limpinha ou bagunçada?" - -#: ../../boot.php:1260 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "A atualização %s falhou. Veja os logs de erro." - -#: ../../boot.php:1263 -#, php-format -msgid "Update Error at %s" -msgstr "Erro de atualização em %s" - -#: ../../boot.php:1427 -msgid "" -"Create an account to access services and applications within the Red Matrix" -msgstr "Crie uma conta para acessar serviços e aplicações na Red Matrix" - -#: ../../boot.php:1455 -msgid "Password" -msgstr "Senha" - -#: ../../boot.php:1456 -msgid "Remember me" -msgstr "Lembrar de mim" - -#: ../../boot.php:1461 -msgid "Forgot your password?" -msgstr "Esqueceu a sua senha?" - -#: ../../boot.php:1526 -msgid "permission denied" -msgstr "permissão negada" - -#: ../../boot.php:1527 -msgid "Got Zot?" -msgstr "Já tem Zot?" - -#: ../../boot.php:1957 -msgid "toggle mobile" -msgstr "alternar para interface móvel" diff --git a/view/pt-br/strings.php b/view/pt-br/strings.php index 7ee579fae..3fe5db2e2 100644 --- a/view/pt-br/strings.php +++ b/view/pt-br/strings.php @@ -5,126 +5,292 @@ function string_plural_select_pt_br($n){ return ($n > 1);; }} ; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'"; -$a->strings["Profile Photos"] = "Fotos do perfil"; -$a->strings["Matrix"] = "Matriz"; -$a->strings["Channel Home"] = "Página inicial do canal"; -$a->strings["Profile"] = "Perfil"; -$a->strings["Photos"] = "Fotos"; -$a->strings["Events"] = "Eventos"; -$a->strings["Directory"] = "Diretório"; -$a->strings["Embedded content"] = "Conteúdo incorporado"; -$a->strings["Embedding disabled"] = "A incorporação está desabilitada"; -$a->strings["created a new post"] = "criou uma nova publicação"; -$a->strings["commented on %s's post"] = "comentou a publicação de %s"; -$a->strings["Connect"] = "Conectar"; -$a->strings["New window"] = "Nova janela"; -$a->strings["Open the selected location in a different window or browser tab"] = "Abre a localização selecionada em outra aba ou janela"; -$a->strings["New Page"] = "Nova página"; -$a->strings["Edit"] = "Editar"; -$a->strings["View"] = "Ver"; -$a->strings["Preview"] = "Pré-visualizar"; -$a->strings["Actions"] = "Ações"; -$a->strings["Page Link"] = "Link da página"; -$a->strings["Title"] = "Título"; -$a->strings["Created"] = "Criado"; -$a->strings["Edited"] = "Editado"; -$a->strings["Can view my \"public\" stream and posts"] = "Pode ver meus fluxo e publicações \"públicos\""; -$a->strings["Can view my \"public\" channel profile"] = "Pode ver o perfil \"público\" do meu canal"; -$a->strings["Can view my \"public\" photo albums"] = "Pode ver meus álbuns de fotos \"públicos\""; -$a->strings["Can view my \"public\" address book"] = "Pode ver meu livro de endereços \"público\""; -$a->strings["Can view my \"public\" file storage"] = "Pode ver meu armazenamento de arquivos \"público\""; -$a->strings["Can view my \"public\" pages"] = "Pode ver minhas páginas \"públicas\""; -$a->strings["Can send me their channel stream and posts"] = "Pode me enviar seu fluxo e publicações"; -$a->strings["Can post on my channel page (\"wall\")"] = "Pode publicar na página do meu canal (\"mural\")"; -$a->strings["Can comment on my posts"] = "Pode comentar minhas publicações"; -$a->strings["Can send me private mail messages"] = "Pode me enviar mensagens privadas"; -$a->strings["Can post photos to my photo albums"] = "Pode publicar fotos nos meus álbuns de fotos"; -$a->strings["Can forward to all my channel contacts via post @mentions"] = "Pode encaminhar para todos os contatos do meu canal via @menções na publicação"; -$a->strings["Advanced - useful for creating group forum channels"] = "Avançado - útil para criar canais de fóruns de grupos"; -$a->strings["Can chat with me (when available)"] = "Pode conversar comigo (quando disponívei)"; -$a->strings["Can write to my \"public\" file storage"] = "Pode escrever em meu armazenamento de arquivos \"público\""; -$a->strings["Can edit my \"public\" pages"] = "Pode editar minhas páginas \"públicas\""; -$a->strings["Can source my \"public\" posts in derived channels"] = "Pode usar minhas publicações \"públicas\" como fonte para canais derivados"; -$a->strings["Somewhat advanced - very useful in open communities"] = "Avançado - muito útil em comunidades abertas"; -$a->strings["Can administer my channel resources"] = "Pode administrar os recursos do meu canal"; -$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Extremamente avançado. Não mexa nisso a não ser que saiba o que está fazendo"; -$a->strings["Not a valid email address"] = "Não é um endereço de e-mail válido"; -$a->strings["Your email domain is not among those allowed on this site"] = "O domínio do seu e-mail não está entre os permitidos neste site"; -$a->strings["Your email address is already registered at this site."] = "O seu endereço de e-mail já está registrado neste site."; -$a->strings["An invitation is required."] = "É necessário um convite."; -$a->strings["Invitation could not be verified."] = "Não foi possível verificar o convite."; -$a->strings["Please enter the required information."] = "Por favor, forneça a informação solicitada."; -$a->strings["Failed to store account information."] = "Não foi possível armazenar a informação da conta."; -$a->strings["Registration request at %s"] = "Solicitação de registro em %s"; -$a->strings["Administrator"] = "Administrador"; -$a->strings["your registration password"] = "sua senha de registro"; -$a->strings["Registration details for %s"] = "Detalhes do registro de %s"; -$a->strings["Account approved."] = "A conta foi aprovada."; -$a->strings["Registration revoked for %s"] = "O registro de %s foi revogado"; -$a->strings["Permission denied."] = "Permissão negada."; -$a->strings["Image exceeds website size limit of %lu bytes"] = "A imagem excede o limite de tamanho do site, que é de %"; -$a->strings["Image file is empty."] = "O arquivo de imagem está vazio."; -$a->strings["Unable to process image"] = "Não foi possível processar a imagem"; -$a->strings["Photo storage failed."] = "Não foi possível armazenar a foto."; -$a->strings["Photo Albums"] = "Álbuns de fotos"; -$a->strings["Upload New Photos"] = "Enviar novas fotos"; -$a->strings["Visible to everybody"] = "Visível para todos"; -$a->strings["Show"] = "Exibir"; -$a->strings["Don't show"] = "Não exibir"; -$a->strings["Permissions"] = "Permissões"; -$a->strings["Close"] = "Fechar"; -$a->strings[" and "] = " e "; -$a->strings["public profile"] = "perfil público"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s mudou %2\$s para “%3\$s”"; -$a->strings["Visit %1\$s's %2\$s"] = "Visite o %2\$s de %1\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s atualizou %2\$s, alterando %3\$s."; -$a->strings["Public Timeline"] = "Linha do tempo pública"; -$a->strings["Item was not found."] = "O item não foi encontrado."; -$a->strings["No source file."] = "Nenhum arquivo de origem."; -$a->strings["Cannot locate file to replace"] = "Não foi possível locar o arquivo a ser substituído"; -$a->strings["Cannot locate file to revise/update"] = "Não foi possível localizar o arquivo a ser revisado/atualizado"; -$a->strings["File exceeds size limit of %d"] = "O arquivo excedeu o tamanho limite de %d"; -$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Você atingiu o seu limite de %1$.0f Mbytes de armazenamento de anexos."; -$a->strings["File upload failed. Possible system limit or action terminated."] = "Não foi possível enviar o arquivo. Provável limite do sistema ou a ação foi encerrada."; -$a->strings["Stored file could not be verified. Upload failed."] = "Não foi possível verificar o arquivo armazenado. Falha no envio."; -$a->strings["Path not available."] = "O caminho não está disponível."; -$a->strings["Empty pathname"] = "O nome do caminho está em branco"; -$a->strings["duplicate filename or path"] = "nome de arquivo ou caminho duplicado"; -$a->strings["Path not found."] = "Caminho não encontrado."; -$a->strings["mkdir failed."] = "mkdir falhou."; -$a->strings["database storage failed."] = "armazenamento de banco de dados falhou."; -$a->strings["Logged out."] = "Você saiu."; -$a->strings["Failed authentication"] = "Não foi possível autenticar"; -$a->strings["Login failed."] = "Não foi possível entrar."; +$a->strings["Channel is blocked on this site."] = "O canal está bloqueado neste site."; +$a->strings["Channel location missing."] = "A localização do canal foi perdida"; +$a->strings["Response from remote channel was incomplete."] = "A resposta do canal remoto está incompleta."; +$a->strings["Channel was deleted and no longer exists."] = "O canal foi deletado e não existe mais."; +$a->strings["Channel discovery failed."] = "A descoberta de canais falhou."; +$a->strings["local account not found."] = "a conta local não foi encontrada."; +$a->strings["Cannot connect to yourself."] = "Não é possível conectar-se consigo mesmo."; +$a->strings["Edit File properties"] = "Editar propriedades do arquivo"; $a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; $a->strings["Starts:"] = "Início:"; $a->strings["Finishes:"] = "Fim:"; $a->strings["Location:"] = "Localização:"; +$a->strings["Categories"] = "Categorias"; +$a->strings["App Category"] = "Categoria de aplicativos"; +$a->strings["System"] = "Sistema"; +$a->strings["Personal"] = "Pessoal"; +$a->strings["Connect"] = "Conectar"; +$a->strings["Ignore/Hide"] = "Ignorar/Ocultar"; +$a->strings["Suggestions"] = "Sugestões"; +$a->strings["See more..."] = "Veja mais..."; +$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Você tem %1$.0f de %2$.0f conexões permitidas."; +$a->strings["Add New Connection"] = "Adicionar nova conexão"; +$a->strings["Enter the channel address"] = "Digite o endereço do canal"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Por exemplo: joao@exemplo.com, http://exemplo.com/maria"; +$a->strings["Notes"] = "Notas"; +$a->strings["Save"] = "Salvar"; +$a->strings["Remove term"] = "Remover termo"; +$a->strings["Saved Searches"] = "Pesquisas salvas"; +$a->strings["add"] = "adicionar"; +$a->strings["Saved Folders"] = "Pastas salvas"; +$a->strings["Everything"] = "Tudo"; +$a->strings["Archives"] = "Arquivos"; +$a->strings["Refresh"] = "Atualizar"; +$a->strings["Me"] = "Eu"; +$a->strings["Best Friends"] = "Melhores amigos"; +$a->strings["Friends"] = "Amigos"; +$a->strings["Co-workers"] = "Colegas de trabalho"; +$a->strings["Former Friends"] = "Amigos afastados"; +$a->strings["Acquaintances"] = "Conhecidos"; +$a->strings["Everybody"] = "Todos"; +$a->strings["Account settings"] = "Configurações da conta"; +$a->strings["Channel settings"] = "Configurações do canal"; +$a->strings["Additional features"] = "Recursos adicionais"; +$a->strings["Feature settings"] = "Configurações dos recursos"; +$a->strings["Display settings"] = "Configurações de exibição"; +$a->strings["Connected apps"] = "Aplicações conectadas"; +$a->strings["Export channel"] = "Exportar o canal"; +$a->strings["Automatic Permissions (Advanced)"] = "Permissões automáticas (avançado)"; +$a->strings["Premium Channel Settings"] = "Configurações de canal premium"; +$a->strings["Channel Sources"] = "Fontes do canal"; +$a->strings["Settings"] = "Configurações"; +$a->strings["Check Mail"] = "Checar mensagens"; +$a->strings["New Message"] = "Nova mensagem"; +$a->strings["Chat Rooms"] = "Salas de bate-papo"; +$a->strings["Bookmarked Chatrooms"] = "Salas de bate-papo guardadas"; +$a->strings["Suggested Chatrooms"] = "Salas de bate-papo sugeridas"; +$a->strings["Public Timeline"] = "Linha do tempo pública"; +$a->strings["Logout"] = "Sair"; +$a->strings["End this session"] = "Encerrar essa sessão"; +$a->strings["Home"] = "Ver canal"; +$a->strings["Your posts and conversations"] = "Suas publicações e conversas"; +$a->strings["View Profile"] = "Ver perfil"; +$a->strings["Your profile page"] = "A página do seu perfil"; +$a->strings["Edit Profiles"] = "Editar perfis"; +$a->strings["Manage/Edit profiles"] = "Administrar/Editar perfis"; +$a->strings["Photos"] = "Fotos"; +$a->strings["Your photos"] = "Suas fotos"; +$a->strings["Files"] = "Arquivos"; +$a->strings["Your files"] = "Seus arquivos"; +$a->strings["Chat"] = "Bate-papo"; +$a->strings["Your chatrooms"] = "Suas salas de bate-papo"; +$a->strings["Events"] = "Eventos"; +$a->strings["Your events"] = "Seus eventos"; +$a->strings["Bookmarks"] = "Links guardados"; +$a->strings["Your bookmarks"] = "Seus links guardados"; +$a->strings["Webpages"] = "Páginas web"; +$a->strings["Your webpages"] = "Suas páginas web"; +$a->strings["Login"] = "Entrar"; +$a->strings["Sign in"] = "Entrar"; +$a->strings["%s - click to logout"] = "%s - clique para sair"; +$a->strings["Click to authenticate to your home hub"] = "Clique para se autenticar com seu hub de origem"; +$a->strings["Home Page"] = "Página inicial"; +$a->strings["Register"] = "Registrar"; +$a->strings["Create an account"] = "Criar uma conta"; +$a->strings["Help"] = "Ajuda"; +$a->strings["Help and documentation"] = "Ajuda e documentação"; +$a->strings["Apps"] = "Aplicações"; +$a->strings["Addon applications, utilities, games"] = "Aplicações adicionais, utilitários, jogos"; +$a->strings["Search"] = "Pesquisar"; +$a->strings["Search site content"] = "Pesquisar o conteúdo do site"; +$a->strings["Directory"] = "Diretório"; +$a->strings["Channel Locator"] = "Localizador de canais"; +$a->strings["Matrix"] = "Matriz"; +$a->strings["Your matrix"] = "Sua matriz"; +$a->strings["Mark all matrix notifications seen"] = "Marcar todas as notificações da matriz como vistas"; +$a->strings["Channel Home"] = "Página inicial do canal"; +$a->strings["Channel home"] = "Página inicial do canal"; +$a->strings["Mark all channel notifications seen"] = "Marcar todas as notificações de canais como vistas"; +$a->strings["Connections"] = "Conexões"; +$a->strings["Notices"] = "Notificações"; +$a->strings["Notifications"] = "Notificações"; +$a->strings["See all notifications"] = "Ver todas as notificações"; +$a->strings["Mark all system notifications seen"] = "Marcar todas as notificações de sistema como vistas"; +$a->strings["Mail"] = "Mensagens"; +$a->strings["Private mail"] = "Mensagens privadas"; +$a->strings["See all private messages"] = "Ver todas as mensagens privadas"; +$a->strings["Mark all private messages seen"] = "Marcar todas as mensagens privadas como vistas"; +$a->strings["Inbox"] = "Recebidas"; +$a->strings["Outbox"] = "Enviadas"; +$a->strings["Event Calendar"] = "Agenda de eventos"; +$a->strings["See all events"] = "Ver todos os eventos"; +$a->strings["Mark all events seen"] = "Marcar todos os eventos como vistos"; +$a->strings["Channel Select"] = "Seleção de canal"; +$a->strings["Manage Your Channels"] = "Gerencie os seus canais"; +$a->strings["Account/Channel Settings"] = "Configurações da conta/canal"; +$a->strings["Manage/Edit Friends and Connections"] = "Gerenciar/editar os amigos e as conexões"; +$a->strings["Admin"] = "Admin"; +$a->strings["Site Setup and Configuration"] = "Configuração do site"; +$a->strings["Nothing new here"] = "Nada de novo aqui"; +$a->strings["Please wait..."] = "Por favor, aguarde..."; +$a->strings["Embedded content"] = "Conteúdo incorporado"; +$a->strings["Embedding disabled"] = "A incorporação está desabilitada"; $a->strings["Image/photo"] = "Imagem/foto"; $a->strings["Encrypted content"] = "Conteúdo criptografado"; $a->strings["QR code"] = "código QR"; $a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s escreveu a seguinte %2\$s %3\$s"; $a->strings["post"] = "publicação"; $a->strings["$1 wrote:"] = "$1 escreveu:"; -$a->strings["Private Message"] = "Mensagem privada"; -$a->strings["Delete"] = "Excluir"; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes poderão ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente."; +$a->strings["Default privacy group for new contacts"] = "Grupo de privacidade padrão para novos contatos"; +$a->strings["All Channels"] = "Todos os canais"; +$a->strings["edit"] = "editar"; +$a->strings["Collections"] = "Coleções"; +$a->strings["Edit collection"] = "Editar coleção"; +$a->strings["Create a new collection"] = "Criar uma nova coleção"; +$a->strings["Channels not in any collection"] = "Canais que não estão em nenhuma coleção"; +$a->strings["photo"] = "foto"; +$a->strings["event"] = "evento"; +$a->strings["channel"] = "canal"; +$a->strings["status"] = "status"; +$a->strings["comment"] = "comentário"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gosta de %3\$s de %2\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s não gosta de %3\$s de %2\$s"; +$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s agora está conectado com %2\$s"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s cutucou %2\$s"; +$a->strings["poked"] = "cutucado"; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s atualmente está %2\$s"; $a->strings["Select"] = "Selecionar"; +$a->strings["Delete"] = "Excluir"; +$a->strings["Private Message"] = "Mensagem privada"; +$a->strings["Message is verified"] = "A mensagem foi verificada"; +$a->strings["View %s's profile @ %s"] = "Ver o perfil de %s's @ %s"; +$a->strings["Categories:"] = "Categorias:"; +$a->strings["Filed under:"] = "Armazenado sob:"; +$a->strings[" from %s"] = "de %s"; +$a->strings["last edited: %s"] = "última edição: %s"; +$a->strings["Expires: %s"] = "Expira: %s"; +$a->strings["View in context"] = "Ver no contexto"; +$a->strings["Please wait"] = "Por favor, espere"; +$a->strings["remove"] = "remover"; +$a->strings["Loading..."] = "Carregando..."; +$a->strings["Delete Selected Items"] = "Excluir os itens selecionados"; +$a->strings["View Source"] = "Ver a fonte"; +$a->strings["Follow Thread"] = "Acompanhar a discussão"; +$a->strings["View Status"] = "Ver status"; +$a->strings["View Photos"] = "Ver fotos"; +$a->strings["Matrix Activity"] = "Atividade na matriz"; +$a->strings["Edit Contact"] = "Editar contato"; +$a->strings["Send PM"] = "Enviar MP"; +$a->strings["Poke"] = "Cutucar"; +$a->strings["%s likes this."] = "%s gostou disso."; +$a->strings["%s doesn't like this."] = "%s não gostou disso."; +$a->strings["%2\$d people like this."] = array( + 0 => "", + 1 => "%2\$d pessoas gostaram disso.", +); +$a->strings["%2\$d people don't like this."] = array( + 0 => "", + 1 => "%2\$d pessoas não gostaram disso.", +); +$a->strings["and"] = "e"; +$a->strings[", and %d other people"] = array( + 0 => "", + 1 => ", e mais %d outras pessoas", +); +$a->strings["%s like this."] = "%s gostou disso."; +$a->strings["%s don't like this."] = "%s não gostou disso."; +$a->strings["Visible to everybody"] = "Visível para todos"; +$a->strings["Please enter a link URL:"] = "Por favor, digite uma URL:"; +$a->strings["Please enter a video link/URL:"] = "Por favor, digite o link/URL do vídeo:"; +$a->strings["Please enter an audio link/URL:"] = "Por favor, digite o link/URL do áudio:"; +$a->strings["Tag term:"] = "Etiqueta:"; +$a->strings["Save to Folder:"] = "Salvar para a pasta:"; +$a->strings["Where are you right now?"] = "Onde você está agora?"; +$a->strings["Expires YYYY-MM-DD HH:MM"] = "Expira YYYY-MM-DD HH:MM"; +$a->strings["Preview"] = "Pré-visualizar"; +$a->strings["Share"] = "Compartilhar"; +$a->strings["Page link title"] = "Título do link da página"; +$a->strings["Post as"] = "Publicar como"; +$a->strings["Upload photo"] = "Enviar foto"; +$a->strings["upload photo"] = "enviar foto"; +$a->strings["Attach file"] = "Anexar arquivo"; +$a->strings["attach file"] = "anexar arquivo"; +$a->strings["Insert web link"] = "Inserir link web"; +$a->strings["web link"] = "link web"; +$a->strings["Insert video link"] = "Inserir link de vídeo"; +$a->strings["video link"] = "link de vídeo"; +$a->strings["Insert audio link"] = "Inserir link de áudio"; +$a->strings["audio link"] = "link de áudio"; +$a->strings["Set your location"] = "Definir sua localização"; +$a->strings["set location"] = "definir localização"; +$a->strings["Clear browser location"] = "Limpar a localização do navegador"; +$a->strings["clear location"] = "limpar a localização"; +$a->strings["Set title"] = "Definir o título"; +$a->strings["Categories (comma-separated list)"] = "Categorias (lista separada por vírgulas)"; +$a->strings["Permission settings"] = "Configurações de permissão"; +$a->strings["permissions"] = "permissões"; +$a->strings["Public post"] = "Publicação pública"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Por exemplo: joao@exemplo.com, maria@exemplo.com"; +$a->strings["Set expiration date"] = "Definir data de expiração"; +$a->strings["Encrypt text"] = "Encriptar texto"; +$a->strings["OK"] = "Ok"; +$a->strings["Cancel"] = "Cancelar"; +$a->strings["Discover"] = "Descubra"; +$a->strings["Imported public streams"] = "Fluxos públicos importados"; +$a->strings["Commented Order"] = "Recentes e comentados"; +$a->strings["Sort by Comment Date"] = "Ordenar pela data do último comentário"; +$a->strings["Posted Order"] = "Recentemente publicados"; +$a->strings["Sort by Post Date"] = "Ordenar pela data da publicação"; +$a->strings["Posts that mention or involve you"] = "Publicações que mencionam ou envolvem você"; +$a->strings["New"] = "Novo"; +$a->strings["Activity Stream - by date"] = "Fluxo de atividades - por data"; +$a->strings["Starred"] = "Estrelados"; +$a->strings["Favourite Posts"] = "Publicações favoritas"; +$a->strings["Spam"] = "Spam"; +$a->strings["Posts flagged as SPAM"] = "Publicações marcadas como SPAM"; +$a->strings["Channel"] = "Canal"; +$a->strings["Status Messages and Posts"] = "Mensagens de status e publicações"; +$a->strings["About"] = "Sobre"; +$a->strings["Profile Details"] = "Detalhes do perfil"; +$a->strings["Photo Albums"] = "Álbuns de fotos"; +$a->strings["Files and Storage"] = "Arquivos e armazenamento"; +$a->strings["Chatrooms"] = "Salas de bate-papo"; +$a->strings["Events and Calendar"] = "Eventos e calendário"; +$a->strings["Saved Bookmarks"] = "Links guardados"; +$a->strings["Manage Webpages"] = "Administrar páginas web"; +$a->strings["Default"] = "Default"; +$a->strings["No recipient provided."] = "Falta o destinatário."; +$a->strings["[no subject]"] = "[sem assunto]"; +$a->strings["Unable to determine sender."] = "Não foi possível determinar o remetente."; +$a->strings["Stored post could not be verified."] = "Não foi possível verificar a publicação armazenada."; +$a->strings[" and "] = " e "; +$a->strings["public profile"] = "perfil público"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s mudou %2\$s para “%3\$s”"; +$a->strings["Visit %1\$s's %2\$s"] = "Visite o %2\$s de %1\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s atualizou %2\$s, alterando %3\$s."; +$a->strings["view full size"] = "ver na tela inteira"; +$a->strings["%1\$s's bookmarks"] = "Links guardados de %1\$s"; +$a->strings["Tags"] = "Etiquetas"; +$a->strings["Keywords"] = "Palavras-chave"; +$a->strings["have"] = "tenho"; +$a->strings["has"] = "tem"; +$a->strings["want"] = "quero"; +$a->strings["wants"] = "quer"; +$a->strings["like"] = "gostei"; +$a->strings["likes"] = "gosta"; +$a->strings["dislike"] = "não gostei"; +$a->strings["dislikes"] = "desgosta"; +$a->strings["Edit"] = "Editar"; $a->strings["save to folder"] = "salvar na pasta"; -$a->strings["Like"] = "Gostou"; -$a->strings["Likes"] = "Gosta de"; -$a->strings["Dislike"] = "Desgostou"; -$a->strings["Dislikes"] = "Não gosta de"; +$a->strings["View all"] = "Ver tudo"; +$a->strings["__ctx:noun__ Like"] = array( + 0 => "gostou", + 1 => "gostaram", +); +$a->strings["__ctx:noun__ Dislike"] = array( + 0 => "desgostou", + 1 => "desgostaram", +); $a->strings["add star"] = "destacar"; $a->strings["remove star"] = "remover destaque"; $a->strings["toggle star status"] = "alternar destaque"; $a->strings["starred"] = "destacado"; -$a->strings["Message is verified"] = "A mensagem foi verificada"; $a->strings["add tag"] = "adicionar etiqueta"; $a->strings["I like this (toggle)"] = "Eu gostei disso (alterna)"; -$a->strings["like"] = "gostei"; $a->strings["I don't like this (toggle)"] = "Eu não gostei disso (alterna)"; -$a->strings["dislike"] = "não gostei"; $a->strings["Share this"] = "Compartilhar isso"; $a->strings["share"] = "compartilhar"; $a->strings["View %s's profile - %s"] = "Ver o perfil de %s - %s"; @@ -132,11 +298,10 @@ $a->strings["to"] = "para"; $a->strings["via"] = "via"; $a->strings["Wall-to-Wall"] = "Mural-para-mural"; $a->strings["via Wall-To-Wall:"] = "via Mural-para-mural"; -$a->strings[" from %s"] = "de %s"; -$a->strings["last edited: %s"] = "última edição: %s"; -$a->strings["Expires: %s"] = "Expira: %s"; $a->strings["Bookmark Links"] = "Guardar links"; -$a->strings["Please wait"] = "Por favor, espere"; +$a->strings["__ctx:noun__ Likes"] = "Gostaram"; +$a->strings["__ctx:noun__ Dislikes"] = "Desgostaram"; +$a->strings["Close"] = "Fechar"; $a->strings["%d comment"] = array( 0 => "%d comentário", 1 => "%d comentários", @@ -153,22 +318,171 @@ $a->strings["Code"] = "Código"; $a->strings["Image"] = "Imagem"; $a->strings["Link"] = "Link"; $a->strings["Video"] = "Vídeo"; -$a->strings["Encrypt text"] = "Encriptar texto"; -$a->strings["%1\$s's bookmarks"] = "Links guardados de %1\$s"; -$a->strings["Missing room name"] = "Nome da sala vazio"; -$a->strings["Duplicate room name"] = "Nome da sala duplicado"; -$a->strings["Invalid room specifier."] = "Especificador de sala inválido."; -$a->strings["Room not found."] = "A sala não foi encontrada."; -$a->strings["Room is full"] = "A sala está cheia"; -$a->strings["Tags"] = "Etiquetas"; -$a->strings["Keywords"] = "Palavras-chave"; -$a->strings["have"] = "tenho"; -$a->strings["has"] = "tem"; -$a->strings["want"] = "quero"; -$a->strings["wants"] = "quer"; -$a->strings["likes"] = "gosta"; -$a->strings["dislikes"] = "desgosta"; -$a->strings["Default"] = "Default"; +$a->strings["Permission denied"] = "Permissão negada"; +$a->strings["(Unknown)"] = "(Desconhecido)"; +$a->strings["Item not found."] = "O item não foi encontrado."; +$a->strings["Permission denied."] = "Permissão negada."; +$a->strings["Collection not found."] = "A coleção não foi encontrada."; +$a->strings["Collection is empty."] = "A coleção está vazia."; +$a->strings["Collection: %s"] = "Coleção: %s"; +$a->strings["Connection: %s"] = "Conexão: %s"; +$a->strings["Connection not found."] = "A conexão não foi encontrada."; +$a->strings["Sort Options"] = "Opções de ordenação"; +$a->strings["Alphabetic"] = "Alfabética"; +$a->strings["Reverse Alphabetic"] = "Alfabética reversa"; +$a->strings["Newest to Oldest"] = "Das mais recentes para as mais antigas"; +$a->strings["Enable Safe Search"] = "Habilitar busca tranquila"; +$a->strings["Disable Safe Search"] = "Desabilitar busca tranquila"; +$a->strings["Safe Mode"] = "Modo tranquilo"; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão."; +$a->strings["created a new post"] = "criou uma nova publicação"; +$a->strings["commented on %s's post"] = "comentou a publicação de %s"; +$a->strings["Red Matrix Notification"] = "Notificação da Red Matrix"; +$a->strings["redmatrix"] = "redmatrix"; +$a->strings["Thank You,"] = "Obrigado(a),"; +$a->strings["%s Administrator"] = "Administrador de %s"; +$a->strings["%s "] = "%s "; +$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Notify] Nova mensagem recebida em %s"; +$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s te enviou uma nova mensagem privada em %3\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s enviou %2\$s para você."; +$a->strings["a private message"] = "uma mensagem privada"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Por favor, visite %s para ver e/ou responder as suas mensagens privadas."; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s comentou em [zrl=%3\$s]um/a %4\$s[/zrl]"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s comentou em [zrl=%3\$s]%5\$s de %4\$s[/zrl]"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s comentou em [zrl=%3\$s]seu %4\$s[/zrl]"; +$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notify] Comentário na conversa #%1\$d por %2\$s"; +$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s comentou em um item/conversa que você acompanha."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Por favor, visite %s para ver e/ou responder a conversa."; +$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Notify] %s publicou no mural do seu perfil"; +$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s publicou no mural do seu perfil em %3\$s"; +$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s publicou no [zrl=%3\$s]seu mural[/zrl]"; +$a->strings["[Red:Notify] %s tagged you"] = "[Red:Notify] %s etiquetou você"; +$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s mencionou você em %3\$s"; +$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]mencionou você[/zrl]."; +$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Notify] %1\$s cutucou você"; +$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s cutucou você em %3\$s"; +$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]cutucou você[/zrl]."; +$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Notify] %s etiquetou a sua publicação"; +$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s marcou seu post em %3\$s"; +$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s marcou [zrl=%3\$s]seu post[/zrl]"; +$a->strings["[Red:Notify] Introduction received"] = "[Red:Notify] Você recebeu uma apresentação"; +$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, você recebeu uma nova solicitação de conexão de '%2\$s' em %3\$s"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, você recebeu [zrl=%2\$s]uma nova solicitação de conexão[/zrl] de %3\$s."; +$a->strings["You may visit their profile at %s"] = "Você pode visitar seu perfil em %s"; +$a->strings["Please visit %s to approve or reject the connection request."] = "Por favor, visite %s para aprovar ou rejeitar a solicitação."; +$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Notify] Foi recebida uma sugestão de amizade"; +$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, você recebeu uma sugestão de amizade de '%2\$s' em %3\$s"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, você recebeu [zrl=%2\$s]uma sugestão de amizade[/zrl] com %3\$s de %4\$s."; +$a->strings["Name:"] = "Nome:"; +$a->strings["Photo:"] = "Foto:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Por favor, visite %s para aprovar ou rejeitar a sugestão."; +$a->strings["Item was not found."] = "O item não foi encontrado."; +$a->strings["No source file."] = "Nenhum arquivo de origem."; +$a->strings["Cannot locate file to replace"] = "Não foi possível locar o arquivo a ser substituído"; +$a->strings["Cannot locate file to revise/update"] = "Não foi possível localizar o arquivo a ser revisado/atualizado"; +$a->strings["File exceeds size limit of %d"] = "O arquivo excedeu o tamanho limite de %d"; +$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Você atingiu o seu limite de %1$.0f Mbytes de armazenamento de anexos."; +$a->strings["File upload failed. Possible system limit or action terminated."] = "Não foi possível enviar o arquivo. Provável limite do sistema ou a ação foi encerrada."; +$a->strings["Stored file could not be verified. Upload failed."] = "Não foi possível verificar o arquivo armazenado. Falha no envio."; +$a->strings["Path not available."] = "O caminho não está disponível."; +$a->strings["Empty pathname"] = "O nome do caminho está em branco"; +$a->strings["duplicate filename or path"] = "nome de arquivo ou caminho duplicado"; +$a->strings["Path not found."] = "Caminho não encontrado."; +$a->strings["mkdir failed."] = "mkdir falhou."; +$a->strings["database storage failed."] = "armazenamento de banco de dados falhou."; +$a->strings["New Page"] = "Nova página"; +$a->strings["View"] = "Ver"; +$a->strings["Actions"] = "Ações"; +$a->strings["Page Link"] = "Link da página"; +$a->strings["Title"] = "Título"; +$a->strings["Created"] = "Criado"; +$a->strings["Edited"] = "Editado"; +$a->strings["Profile Photos"] = "Fotos do perfil"; +$a->strings["Image exceeds website size limit of %lu bytes"] = "A imagem excede o limite de tamanho do site, que é de %"; +$a->strings["Image file is empty."] = "O arquivo de imagem está vazio."; +$a->strings["Unable to process image"] = "Não foi possível processar a imagem"; +$a->strings["Photo storage failed."] = "Não foi possível armazenar a foto."; +$a->strings["Upload New Photos"] = "Enviar novas fotos"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'"; +$a->strings["Male"] = "Masculino"; +$a->strings["Female"] = "Feminino"; +$a->strings["Currently Male"] = "Atualmente masculino"; +$a->strings["Currently Female"] = "Atualmente feminino"; +$a->strings["Mostly Male"] = "Masculino a maior parte do tempo"; +$a->strings["Mostly Female"] = "Feminino a maior parte do tempo"; +$a->strings["Transgender"] = "Transgênero"; +$a->strings["Intersex"] = "Intersexuado"; +$a->strings["Transsexual"] = "Transexual"; +$a->strings["Hermaphrodite"] = "Hermafrodita"; +$a->strings["Neuter"] = "Neutro"; +$a->strings["Non-specific"] = "Não específico"; +$a->strings["Other"] = "Outro"; +$a->strings["Undecided"] = "Indeciso"; +$a->strings["Males"] = "Homens"; +$a->strings["Females"] = "Mulheres"; +$a->strings["Gay"] = "Gays"; +$a->strings["Lesbian"] = "Lésbicas"; +$a->strings["No Preference"] = "Sem preferência"; +$a->strings["Bisexual"] = "Bissexuais"; +$a->strings["Autosexual"] = "Autossexuais"; +$a->strings["Abstinent"] = "Abstinentes"; +$a->strings["Virgin"] = "Virgens"; +$a->strings["Deviant"] = "Desviantes"; +$a->strings["Fetish"] = "Fetiches"; +$a->strings["Oodles"] = "Abundância"; +$a->strings["Nonsexual"] = "Não sexuais"; +$a->strings["Single"] = "Solteiro(a)"; +$a->strings["Lonely"] = "Solitário(a)"; +$a->strings["Available"] = "Disponível"; +$a->strings["Unavailable"] = "Não disponível"; +$a->strings["Has crush"] = "Tem uma paixão"; +$a->strings["Infatuated"] = "Apaixonado"; +$a->strings["Dating"] = "Saindo com alguém"; +$a->strings["Unfaithful"] = "Infiel"; +$a->strings["Sex Addict"] = "Viciado(a) em sexo"; +$a->strings["Friends/Benefits"] = "Amigos com benefícios"; +$a->strings["Casual"] = "Casual"; +$a->strings["Engaged"] = "Envolvido(a)"; +$a->strings["Married"] = "Casado(a)"; +$a->strings["Imaginarily married"] = "Casado imaginariamente"; +$a->strings["Partners"] = "Parceiros"; +$a->strings["Cohabiting"] = "Coabitando"; +$a->strings["Common law"] = "Direito comum"; +$a->strings["Happy"] = "Feliz"; +$a->strings["Not looking"] = "Não estou procurando"; +$a->strings["Swinger"] = "Swinger"; +$a->strings["Betrayed"] = "Traído(a)"; +$a->strings["Separated"] = "Separado(a)"; +$a->strings["Unstable"] = "Instável"; +$a->strings["Divorced"] = "Divorciado(a)"; +$a->strings["Imaginarily divorced"] = "Divorciado imaginariamente"; +$a->strings["Widowed"] = "Viúvo(a)"; +$a->strings["Uncertain"] = "Incerto(a)"; +$a->strings["It's complicated"] = "É complicado"; +$a->strings["Don't care"] = "Não importa"; +$a->strings["Ask me"] = "Pergunte-me"; +$a->strings["Click here to upgrade."] = "Clique aqui para atualizar."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Essa ação excede o limite definido para o seu plano de assinatura."; +$a->strings["This action is not available under your subscription plan."] = "Essa ação não está disponível para o seu plano de assinatura."; +$a->strings["Visible to everybody"] = "Visível para todos"; +$a->strings["Show"] = "Exibir"; +$a->strings["Don't show"] = "Não exibir"; +$a->strings["Permissions"] = "Permissões"; +$a->strings["Not a valid email address"] = "Não é um endereço de e-mail válido"; +$a->strings["Your email domain is not among those allowed on this site"] = "O domínio do seu e-mail não está entre os permitidos neste site"; +$a->strings["Your email address is already registered at this site."] = "O seu endereço de e-mail já está registrado neste site."; +$a->strings["An invitation is required."] = "É necessário um convite."; +$a->strings["Invitation could not be verified."] = "Não foi possível verificar o convite."; +$a->strings["Please enter the required information."] = "Por favor, forneça a informação solicitada."; +$a->strings["Failed to store account information."] = "Não foi possível armazenar a informação da conta."; +$a->strings["Registration request at %s"] = "Solicitação de registro em %s"; +$a->strings["Administrator"] = "Administrador"; +$a->strings["your registration password"] = "sua senha de registro"; +$a->strings["Registration details for %s"] = "Detalhes do registro de %s"; +$a->strings["Account approved."] = "A conta foi aprovada."; +$a->strings["Registration revoked for %s"] = "O registro de %s foi revogado"; +$a->strings["New window"] = "Nova janela"; +$a->strings["Open the selected location in a different window or browser tab"] = "Abre a localização selecionada em outra aba ou janela"; $a->strings["Unknown | Not categorised"] = "Desconhecido | Não categorizado"; $a->strings["Block immediately"] = "Bloquear imediatamente"; $a->strings["Shady, spammer, self-marketer"] = "Suspeito, spammer, propagandista"; @@ -191,6 +505,13 @@ $a->strings["Zot!"] = "Zot!"; $a->strings["LinkedIn"] = "LinkedIn"; $a->strings["XMPP/IM"] = "XMPP/MI"; $a->strings["MySpace"] = "MySpace"; +$a->strings["Profile"] = "Perfil"; +$a->strings["Update"] = "Atualizar"; +$a->strings["Install"] = "Instalar"; +$a->strings["Unknown"] = "Desconhecidos"; +$a->strings["Logged out."] = "Você saiu."; +$a->strings["Failed authentication"] = "Não foi possível autenticar"; +$a->strings["Login failed."] = "Não foi possível entrar."; $a->strings["prev"] = "anterior"; $a->strings["first"] = "primeiro"; $a->strings["last"] = "último"; @@ -203,10 +524,7 @@ $a->strings["%d Connection"] = array( 1 => "%d conexões", ); $a->strings["View Connections"] = "Ver conexões"; -$a->strings["Search"] = "Pesquisar"; -$a->strings["Save"] = "Salvar"; $a->strings["poke"] = "cutucar"; -$a->strings["poked"] = "cutucado"; $a->strings["ping"] = "pingar"; $a->strings["pinged"] = "pingou"; $a->strings["prod"] = "espetar"; @@ -267,201 +585,17 @@ $a->strings["Select a page layout: "] = "Selecione um layout de página:"; $a->strings["default"] = "default"; $a->strings["Page content type: "] = "Tipo de conteúdo da página: "; $a->strings["Select an alternate language"] = "Selecione um idioma alternativo"; -$a->strings["photo"] = "foto"; -$a->strings["event"] = "evento"; -$a->strings["status"] = "status"; -$a->strings["comment"] = "comentário"; $a->strings["activity"] = "atividade"; $a->strings["Design"] = "Design"; $a->strings["Blocks"] = "Blocos"; $a->strings["Menus"] = "Menus"; $a->strings["Layouts"] = "Layouts"; $a->strings["Pages"] = "Páginas"; -$a->strings["%d invitation available"] = array( - 0 => "%d convite disponível", - 1 => "%d convites disponíveis", -); -$a->strings["Advanced"] = "Avançado"; -$a->strings["Find Channels"] = "Pesquisar canais"; -$a->strings["Enter name or interest"] = "Digite um nome ou interesse"; -$a->strings["Connect/Follow"] = "Conectar/Acompanhar"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Por exemplo: José da Silva, Pescaria"; -$a->strings["Find"] = "Pesquisar"; -$a->strings["Channel Suggestions"] = "Sugestões de canais"; -$a->strings["Random Profile"] = "Perfil aleatório"; -$a->strings["Invite Friends"] = "Convidar amigos"; -$a->strings["Exammple: name=fred and country=iceland"] = "Exemplo: name=raoni and country=peru"; -$a->strings["Advanced Find"] = "Busca avançada"; -$a->strings["Saved Folders"] = "Pastas salvas"; -$a->strings["Everything"] = "Tudo"; -$a->strings["Categories"] = "Categorias"; -$a->strings["%d connection in common"] = array( - 0 => "%d conexão em comum", - 1 => "%d conexões em comum", -); -$a->strings["channel"] = "canal"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gosta de %3\$s de %2\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s não gosta de %3\$s de %2\$s"; -$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s agora está conectado com %2\$s"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s cutucou %2\$s"; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s atualmente está %2\$s"; -$a->strings["View %s's profile @ %s"] = "Ver o perfil de %s's @ %s"; -$a->strings["Categories:"] = "Categorias:"; -$a->strings["Filed under:"] = "Armazenado sob:"; -$a->strings["View in context"] = "Ver no contexto"; -$a->strings["remove"] = "remover"; -$a->strings["Loading..."] = "Carregando..."; -$a->strings["Delete Selected Items"] = "Excluir os itens selecionados"; -$a->strings["View Source"] = "Ver a fonte"; -$a->strings["Follow Thread"] = "Acompanhar a discussão"; -$a->strings["View Status"] = "Ver status"; -$a->strings["View Profile"] = "Ver perfil"; -$a->strings["View Photos"] = "Ver fotos"; -$a->strings["Matrix Activity"] = "Atividade na matriz"; -$a->strings["Edit Contact"] = "Editar contato"; -$a->strings["Send PM"] = "Enviar MP"; -$a->strings["Poke"] = "Cutucar"; -$a->strings["%s likes this."] = "%s gostou disso."; -$a->strings["%s doesn't like this."] = "%s não gostou disso."; -$a->strings["%2\$d people like this."] = array( - 0 => "", - 1 => "%2\$d pessoas gostaram disso.", -); -$a->strings["%2\$d people don't like this."] = array( - 0 => "", - 1 => "%2\$d pessoas não gostaram disso.", -); -$a->strings["and"] = "e"; -$a->strings[", and %d other people"] = array( - 0 => "", - 1 => ", e mais %d outras pessoas", -); -$a->strings["%s like this."] = "%s gostou disso."; -$a->strings["%s don't like this."] = "%s não gostou disso."; -$a->strings["Visible to everybody"] = "Visível para todos"; -$a->strings["Please enter a link URL:"] = "Por favor, digite uma URL:"; -$a->strings["Please enter a video link/URL:"] = "Por favor, digite o link/URL do vídeo:"; -$a->strings["Please enter an audio link/URL:"] = "Por favor, digite o link/URL do áudio:"; -$a->strings["Tag term:"] = "Etiqueta:"; -$a->strings["Save to Folder:"] = "Salvar para a pasta:"; -$a->strings["Where are you right now?"] = "Onde você está agora?"; -$a->strings["Expires YYYY-MM-DD HH:MM"] = "Expira YYYY-MM-DD HH:MM"; -$a->strings["Share"] = "Compartilhar"; -$a->strings["Page link title"] = "Título do link da página"; -$a->strings["Post as"] = "Publicar como"; -$a->strings["Upload photo"] = "Enviar foto"; -$a->strings["upload photo"] = "enviar foto"; -$a->strings["Attach file"] = "Anexar arquivo"; -$a->strings["attach file"] = "anexar arquivo"; -$a->strings["Insert web link"] = "Inserir link web"; -$a->strings["web link"] = "link web"; -$a->strings["Insert video link"] = "Inserir link de vídeo"; -$a->strings["video link"] = "link de vídeo"; -$a->strings["Insert audio link"] = "Inserir link de áudio"; -$a->strings["audio link"] = "link de áudio"; -$a->strings["Set your location"] = "Definir sua localização"; -$a->strings["set location"] = "definir localização"; -$a->strings["Clear browser location"] = "Limpar a localização do navegador"; -$a->strings["clear location"] = "limpar a localização"; -$a->strings["Set title"] = "Definir o título"; -$a->strings["Categories (comma-separated list)"] = "Categorias (lista separada por vírgulas)"; -$a->strings["Permission settings"] = "Configurações de permissão"; -$a->strings["permissions"] = "permissões"; -$a->strings["Public post"] = "Publicação pública"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Por exemplo: joao@exemplo.com, maria@exemplo.com"; -$a->strings["Set expiration date"] = "Definir data de expiração"; -$a->strings["OK"] = "Ok"; -$a->strings["Cancel"] = "Cancelar"; -$a->strings["Discover"] = "Descubra"; -$a->strings["Imported public streams"] = "Fluxos públicos importados"; -$a->strings["Commented Order"] = "Recentes e comentados"; -$a->strings["Sort by Comment Date"] = "Ordenar pela data do último comentário"; -$a->strings["Posted Order"] = "Recentemente publicados"; -$a->strings["Sort by Post Date"] = "Ordenar pela data da publicação"; -$a->strings["Personal"] = "Pessoal"; -$a->strings["Posts that mention or involve you"] = "Publicações que mencionam ou envolvem você"; -$a->strings["New"] = "Novo"; -$a->strings["Activity Stream - by date"] = "Fluxo de atividades - por data"; -$a->strings["Starred"] = "Estrelados"; -$a->strings["Favourite Posts"] = "Publicações favoritas"; -$a->strings["Spam"] = "Spam"; -$a->strings["Posts flagged as SPAM"] = "Publicações marcadas como SPAM"; -$a->strings["Channel"] = "Canal"; -$a->strings["Status Messages and Posts"] = "Mensagens de status e publicações"; -$a->strings["About"] = "Sobre"; -$a->strings["Profile Details"] = "Detalhes do perfil"; -$a->strings["Files"] = "Arquivos"; -$a->strings["Files and Storage"] = "Arquivos e armazenamento"; -$a->strings["Chatrooms"] = "Salas de bate-papo"; -$a->strings["Events and Calendar"] = "Eventos e calendário"; -$a->strings["Bookmarks"] = "Links guardados"; -$a->strings["Saved Bookmarks"] = "Links guardados"; -$a->strings["Webpages"] = "Páginas web"; -$a->strings["Manage Webpages"] = "Administrar páginas web"; -$a->strings["Miscellaneous"] = "Miscelânea"; -$a->strings["year"] = "ano"; -$a->strings["month"] = "mês"; -$a->strings["day"] = "dia"; -$a->strings["never"] = "nunca"; -$a->strings["less than a second ago"] = "menos de um segundo atrás"; -$a->strings["years"] = "anos"; -$a->strings["months"] = "meses"; -$a->strings["week"] = "semana"; -$a->strings["weeks"] = "semanas"; -$a->strings["days"] = "dias"; -$a->strings["hour"] = "hora"; -$a->strings["hours"] = "horas"; -$a->strings["minute"] = "minuto"; -$a->strings["minutes"] = "minutos"; -$a->strings["second"] = "segundo"; -$a->strings["seconds"] = "segundos"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s atrás"; -$a->strings["Sort Options"] = "Opções de ordenação"; -$a->strings["Alphabetic"] = "Alfabética"; -$a->strings["Reverse Alphabetic"] = "Alfabética reversa"; -$a->strings["Newest to Oldest"] = "Das mais recentes para as mais antigas"; -$a->strings["Enable Safe Search"] = "Habilitar busca tranquila"; -$a->strings["Disable Safe Search"] = "Desabilitar busca tranquila"; -$a->strings["Safe Mode"] = "Modo tranquilo"; -$a->strings["Red Matrix Notification"] = "Notificação da Red Matrix"; -$a->strings["redmatrix"] = "redmatrix"; -$a->strings["Thank You,"] = "Obrigado(a),"; -$a->strings["%s Administrator"] = "Administrador de %s"; -$a->strings["%s "] = "%s "; -$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Notify] Nova mensagem recebida em %s"; -$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s te enviou uma nova mensagem privada em %3\$s."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s enviou %2\$s para você."; -$a->strings["a private message"] = "uma mensagem privada"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Por favor, visite %s para ver e/ou responder as suas mensagens privadas."; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s comentou em [zrl=%3\$s]um/a %4\$s[/zrl]"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s comentou em [zrl=%3\$s]%5\$s de %4\$s[/zrl]"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s comentou em [zrl=%3\$s]seu %4\$s[/zrl]"; -$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notify] Comentário na conversa #%1\$d por %2\$s"; -$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s comentou em um item/conversa que você acompanha."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Por favor, visite %s para ver e/ou responder a conversa."; -$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Notify] %s publicou no mural do seu perfil"; -$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s publicou no mural do seu perfil em %3\$s"; -$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s publicou no [zrl=%3\$s]seu mural[/zrl]"; -$a->strings["[Red:Notify] %s tagged you"] = "[Red:Notify] %s etiquetou você"; -$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s mencionou você em %3\$s"; -$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]mencionou você[/zrl]."; -$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Notify] %1\$s cutucou você"; -$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s cutucou você em %3\$s"; -$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]cutucou você[/zrl]."; -$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Notify] %s etiquetou a sua publicação"; -$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s marcou seu post em %3\$s"; -$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s marcou [zrl=%3\$s]seu post[/zrl]"; -$a->strings["[Red:Notify] Introduction received"] = "[Red:Notify] Você recebeu uma apresentação"; -$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, você recebeu uma nova solicitação de conexão de '%2\$s' em %3\$s"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, você recebeu [zrl=%2\$s]uma nova solicitação de conexão[/zrl] de %3\$s."; -$a->strings["You may visit their profile at %s"] = "Você pode visitar seu perfil em %s"; -$a->strings["Please visit %s to approve or reject the connection request."] = "Por favor, visite %s para aprovar ou rejeitar a solicitação."; -$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Notify] Foi recebida uma sugestão de amizade"; -$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, você recebeu uma sugestão de amizade de '%2\$s' em %3\$s"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, você recebeu [zrl=%2\$s]uma sugestão de amizade[/zrl] com %3\$s de %4\$s."; -$a->strings["Name:"] = "Nome:"; -$a->strings["Photo:"] = "Foto:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Por favor, visite %s para aprovar ou rejeitar a sugestão."; +$a->strings["Missing room name"] = "Nome da sala vazio"; +$a->strings["Duplicate room name"] = "Nome da sala duplicado"; +$a->strings["Invalid room specifier."] = "Especificador de sala inválido."; +$a->strings["Room not found."] = "A sala não foi encontrada."; +$a->strings["Room is full"] = "A sala está cheia"; $a->strings["General Features"] = "Recursos gerais"; $a->strings["Content Expiration"] = "Expiração de conteúdo"; $a->strings["Remove posts/comments and/or private messages at a future time"] = "Remover publicações/comentários e/ou mensagens privadas num momento futuro."; @@ -482,7 +616,6 @@ $a->strings["Richtext Editor"] = "Editor richtext"; $a->strings["Enable richtext editor"] = "Habilita o editor richtext"; $a->strings["Post Preview"] = "Pré-visualizar a publicação"; $a->strings["Allow previewing posts and comments before publishing them"] = "Permite visualizar publicações e comentários antes de publicá-los"; -$a->strings["Channel Sources"] = "Fontes do canal"; $a->strings["Automatically import channel content from other channels or feeds"] = "Importar automaticamente conteúdo de outros canais ou fontes"; $a->strings["Even More Encryption"] = "Mais encriptação ainda"; $a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permitir encriptação opcional de conteúdo, ponta-a-ponta com uma chave secreta compartilhada"; @@ -491,7 +624,6 @@ $a->strings["Search by Date"] = "Pesquisar por data"; $a->strings["Ability to select posts by date ranges"] = "capacidade de selecionar publicações por intervalos de datas"; $a->strings["Collections Filter"] = "Filtros de coleções"; $a->strings["Enable widget to display Network posts only from selected collections"] = "Habilita widget para exibir publicações da rede apenas para determinadas coleções"; -$a->strings["Saved Searches"] = "Pesquisas salvas"; $a->strings["Save search terms for re-use"] = "Termos de pesquisa salvos para reutilização"; $a->strings["Network Personal Tab"] = "Aba de interações na rede"; $a->strings["Enable tab to display only Network posts that you've interacted on"] = "Habilita uma aba para exibir apenas publicações da rede com as quais você interagiu"; @@ -515,22 +647,66 @@ $a->strings["Star Posts"] = "Destacar publicações"; $a->strings["Ability to mark special posts with a star indicator"] = "Possibilidade de marcar publicações em destaque com uma estrela indicadora"; $a->strings["Tag Cloud"] = "Nuvem de etiquetas"; $a->strings["Provide a personal tag cloud on your channel page"] = "Fornece uma nuvem de etiquetas pessoais à página do seu canal"; -$a->strings["Channel is blocked on this site."] = "O canal está bloqueado neste site."; -$a->strings["Channel location missing."] = "A localização do canal foi perdida"; -$a->strings["Response from remote channel was incomplete."] = "A resposta do canal remoto está incompleta."; -$a->strings["Channel was deleted and no longer exists."] = "O canal foi deletado e não existe mais."; -$a->strings["Channel discovery failed."] = "A descoberta de canais falhou."; -$a->strings["local account not found."] = "a conta local não foi encontrada."; -$a->strings["Cannot connect to yourself."] = "Não é possível conectar-se consigo mesmo."; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes poderão ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente."; -$a->strings["Default privacy group for new contacts"] = "Grupo de privacidade padrão para novos contatos"; -$a->strings["All Channels"] = "Todos os canais"; -$a->strings["edit"] = "editar"; -$a->strings["Collections"] = "Coleções"; -$a->strings["Edit collection"] = "Editar coleção"; -$a->strings["Create a new collection"] = "Criar uma nova coleção"; -$a->strings["Channels not in any collection"] = "Canais que não estão em nenhuma coleção"; -$a->strings["add"] = "adicionar"; +$a->strings["Can view my \"public\" stream and posts"] = "Pode ver meus fluxo e publicações \"públicos\""; +$a->strings["Can view my \"public\" channel profile"] = "Pode ver o perfil \"público\" do meu canal"; +$a->strings["Can view my \"public\" photo albums"] = "Pode ver meus álbuns de fotos \"públicos\""; +$a->strings["Can view my \"public\" address book"] = "Pode ver meu livro de endereços \"público\""; +$a->strings["Can view my \"public\" file storage"] = "Pode ver meu armazenamento de arquivos \"público\""; +$a->strings["Can view my \"public\" pages"] = "Pode ver minhas páginas \"públicas\""; +$a->strings["Can send me their channel stream and posts"] = "Pode me enviar seu fluxo e publicações"; +$a->strings["Can post on my channel page (\"wall\")"] = "Pode publicar na página do meu canal (\"mural\")"; +$a->strings["Can comment on my posts"] = "Pode comentar minhas publicações"; +$a->strings["Can send me private mail messages"] = "Pode me enviar mensagens privadas"; +$a->strings["Can post photos to my photo albums"] = "Pode publicar fotos nos meus álbuns de fotos"; +$a->strings["Can forward to all my channel contacts via post @mentions"] = "Pode encaminhar para todos os contatos do meu canal via @menções na publicação"; +$a->strings["Advanced - useful for creating group forum channels"] = "Avançado - útil para criar canais de fóruns de grupos"; +$a->strings["Can chat with me (when available)"] = "Pode conversar comigo (quando disponívei)"; +$a->strings["Can write to my \"public\" file storage"] = "Pode escrever em meu armazenamento de arquivos \"público\""; +$a->strings["Can edit my \"public\" pages"] = "Pode editar minhas páginas \"públicas\""; +$a->strings["Can source my \"public\" posts in derived channels"] = "Pode usar minhas publicações \"públicas\" como fonte para canais derivados"; +$a->strings["Somewhat advanced - very useful in open communities"] = "Avançado - muito útil em comunidades abertas"; +$a->strings["Can administer my channel resources"] = "Pode administrar os recursos do meu canal"; +$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Extremamente avançado. Não mexa nisso a não ser que saiba o que está fazendo"; +$a->strings["Invalid data packet"] = "Pacote de dados inválido"; +$a->strings["Unable to verify channel signature"] = "Não foi possível verificar a assinatura do canal"; +$a->strings["Unable to verify site signature for %s"] = "Não foi possível verificar a assinatura do site para %s"; +$a->strings["%d invitation available"] = array( + 0 => "%d convite disponível", + 1 => "%d convites disponíveis", +); +$a->strings["Advanced"] = "Avançado"; +$a->strings["Find Channels"] = "Pesquisar canais"; +$a->strings["Enter name or interest"] = "Digite um nome ou interesse"; +$a->strings["Connect/Follow"] = "Conectar/Acompanhar"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Por exemplo: José da Silva, Pescaria"; +$a->strings["Find"] = "Pesquisar"; +$a->strings["Channel Suggestions"] = "Sugestões de canais"; +$a->strings["Random Profile"] = "Perfil aleatório"; +$a->strings["Invite Friends"] = "Convidar amigos"; +$a->strings["Exammple: name=fred and country=iceland"] = "Exemplo: name=raoni and country=peru"; +$a->strings["Advanced Find"] = "Busca avançada"; +$a->strings["%d connection in common"] = array( + 0 => "%d conexão em comum", + 1 => "%d conexões em comum", +); +$a->strings["Miscellaneous"] = "Miscelânea"; +$a->strings["year"] = "ano"; +$a->strings["month"] = "mês"; +$a->strings["day"] = "dia"; +$a->strings["never"] = "nunca"; +$a->strings["less than a second ago"] = "menos de um segundo atrás"; +$a->strings["years"] = "anos"; +$a->strings["months"] = "meses"; +$a->strings["week"] = "semana"; +$a->strings["weeks"] = "semanas"; +$a->strings["days"] = "dias"; +$a->strings["hour"] = "hora"; +$a->strings["hours"] = "horas"; +$a->strings["minute"] = "minuto"; +$a->strings["minutes"] = "minutos"; +$a->strings["second"] = "segundo"; +$a->strings["seconds"] = "segundos"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s atrás"; $a->strings["Unable to obtain identity information from database"] = "Não foi possível obter a informação da identidade a partir do banco de dados"; $a->strings["Empty name"] = "O nome está em branco"; $a->strings["Name too long"] = "O nome é muito grande"; @@ -540,7 +716,6 @@ $a->strings["Reserved nickname. Please choose another."] = "Apelido reservado. P $a->strings["Nickname has unsupported characters or is already being used on this site."] = "O apelido possui caracteres não suportados ou já está sendo usado nesse site."; $a->strings["Unable to retrieve created identity"] = "Não foi possível recuperar a identidade criada"; $a->strings["Default Profile"] = "Perfil padrão"; -$a->strings["Friends"] = "Amigos"; $a->strings["Requested channel is not available."] = "Canal solicitado não está disponível."; $a->strings["Requested profile is not available."] = "O perfil solicitado não está disponível."; $a->strings["Change profile photo"] = "Mudar a foto do perfil"; @@ -587,14 +762,6 @@ $a->strings["Film/dance/culture/entertainment:"] = "Filmes/dança/cultura/entret $a->strings["Love/Romance:"] = "Amor/romance:"; $a->strings["Work/employment:"] = "Trabalho/emprego:"; $a->strings["School/education:"] = "Escola/educação:"; -$a->strings["Permission denied"] = "Permissão negada"; -$a->strings["(Unknown)"] = "(Desconhecido)"; -$a->strings["Item not found."] = "O item não foi encontrado."; -$a->strings["Collection not found."] = "A coleção não foi encontrada."; -$a->strings["Collection is empty."] = "A coleção está vazia."; -$a->strings["Collection: %s"] = "Coleção: %s"; -$a->strings["Connection: %s"] = "Conexão: %s"; -$a->strings["Connection not found."] = "A conexão não foi encontrada."; $a->strings["Delete this item?"] = "Excluir este item?"; $a->strings["show fewer"] = "exibir menos"; $a->strings["+ Show More"] = "+ Exibir Mais"; @@ -623,172 +790,103 @@ $a->strings["about a year"] = "aproximadamente um ano"; $a->strings["%d years"] = "%d anos"; $a->strings[" "] = " "; $a->strings["timeago.numbers"] = "timeago.numbers"; -$a->strings["No recipient provided."] = "Falta o destinatário."; -$a->strings["[no subject]"] = "[sem assunto]"; -$a->strings["Unable to determine sender."] = "Não foi possível determinar o remetente."; -$a->strings["Stored post could not be verified."] = "Não foi possível verificar a publicação armazenada."; -$a->strings["Logout"] = "Sair"; -$a->strings["End this session"] = "Encerrar essa sessão"; -$a->strings["Home"] = "Ver canal"; -$a->strings["Your posts and conversations"] = "Suas publicações e conversas"; -$a->strings["Your profile page"] = "A página do seu perfil"; -$a->strings["Edit Profiles"] = "Editar perfis"; -$a->strings["Manage/Edit profiles"] = "Administrar/Editar perfis"; -$a->strings["Your photos"] = "Suas fotos"; -$a->strings["Your files"] = "Seus arquivos"; -$a->strings["Chat"] = "Bate-papo"; -$a->strings["Your chatrooms"] = "Suas salas de bate-papo"; -$a->strings["Your events"] = "Seus eventos"; -$a->strings["Your bookmarks"] = "Seus links guardados"; -$a->strings["Your webpages"] = "Suas páginas web"; -$a->strings["Login"] = "Entrar"; -$a->strings["Sign in"] = "Entrar"; -$a->strings["%s - click to logout"] = "%s - clique para sair"; -$a->strings["Click to authenticate to your home hub"] = "Clique para se autenticar com seu hub de origem"; -$a->strings["Home Page"] = "Página inicial"; -$a->strings["Register"] = "Registrar"; -$a->strings["Create an account"] = "Criar uma conta"; -$a->strings["Help"] = "Ajuda"; -$a->strings["Help and documentation"] = "Ajuda e documentação"; -$a->strings["Apps"] = "Aplicações"; -$a->strings["Addon applications, utilities, games"] = "Aplicações adicionais, utilitários, jogos"; -$a->strings["Search site content"] = "Pesquisar o conteúdo do site"; -$a->strings["Channel Locator"] = "Localizador de canais"; -$a->strings["Your matrix"] = "Sua matriz"; -$a->strings["Mark all matrix notifications seen"] = "Marcar todas as notificações da matriz como vistas"; -$a->strings["Channel home"] = "Página inicial do canal"; -$a->strings["Mark all channel notifications seen"] = "Marcar todas as notificações de canais como vistas"; -$a->strings["Connections"] = "Conexões"; -$a->strings["Notices"] = "Notificações"; -$a->strings["Notifications"] = "Notificações"; -$a->strings["See all notifications"] = "Ver todas as notificações"; -$a->strings["Mark all system notifications seen"] = "Marcar todas as notificações de sistema como vistas"; -$a->strings["Mail"] = "Mensagens"; -$a->strings["Private mail"] = "Mensagens privadas"; -$a->strings["See all private messages"] = "Ver todas as mensagens privadas"; -$a->strings["Mark all private messages seen"] = "Marcar todas as mensagens privadas como vistas"; -$a->strings["Inbox"] = "Recebidas"; -$a->strings["Outbox"] = "Enviadas"; -$a->strings["New Message"] = "Nova mensagem"; -$a->strings["Event Calendar"] = "Agenda de eventos"; -$a->strings["See all events"] = "Ver todos os eventos"; -$a->strings["Mark all events seen"] = "Marcar todos os eventos como vistos"; -$a->strings["Channel Select"] = "Seleção de canal"; -$a->strings["Manage Your Channels"] = "Gerencie os seus canais"; -$a->strings["Settings"] = "Configurações"; -$a->strings["Account/Channel Settings"] = "Configurações da conta/canal"; -$a->strings["Manage/Edit Friends and Connections"] = "Gerenciar/editar os amigos e as conexões"; -$a->strings["Admin"] = "Admin"; -$a->strings["Site Setup and Configuration"] = "Configuração do site"; -$a->strings["Nothing new here"] = "Nada de novo aqui"; -$a->strings["Please wait..."] = "Por favor, aguarde..."; -$a->strings["view full size"] = "ver na tela inteira"; -$a->strings["Click here to upgrade."] = "Clique aqui para atualizar."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Essa ação excede o limite definido para o seu plano de assinatura."; -$a->strings["This action is not available under your subscription plan."] = "Essa ação não está disponível para o seu plano de assinatura."; -$a->strings["Male"] = "Masculino"; -$a->strings["Female"] = "Feminino"; -$a->strings["Currently Male"] = "Atualmente masculino"; -$a->strings["Currently Female"] = "Atualmente feminino"; -$a->strings["Mostly Male"] = "Masculino a maior parte do tempo"; -$a->strings["Mostly Female"] = "Feminino a maior parte do tempo"; -$a->strings["Transgender"] = "Transgênero"; -$a->strings["Intersex"] = "Intersexuado"; -$a->strings["Transsexual"] = "Transexual"; -$a->strings["Hermaphrodite"] = "Hermafrodita"; -$a->strings["Neuter"] = "Neutro"; -$a->strings["Non-specific"] = "Não específico"; -$a->strings["Other"] = "Outro"; -$a->strings["Undecided"] = "Indeciso"; -$a->strings["Males"] = "Homens"; -$a->strings["Females"] = "Mulheres"; -$a->strings["Gay"] = "Gays"; -$a->strings["Lesbian"] = "Lésbicas"; -$a->strings["No Preference"] = "Sem preferência"; -$a->strings["Bisexual"] = "Bissexuais"; -$a->strings["Autosexual"] = "Autossexuais"; -$a->strings["Abstinent"] = "Abstinentes"; -$a->strings["Virgin"] = "Virgens"; -$a->strings["Deviant"] = "Desviantes"; -$a->strings["Fetish"] = "Fetiches"; -$a->strings["Oodles"] = "Abundância"; -$a->strings["Nonsexual"] = "Não sexuais"; -$a->strings["Single"] = "Solteiro(a)"; -$a->strings["Lonely"] = "Solitário(a)"; -$a->strings["Available"] = "Disponível"; -$a->strings["Unavailable"] = "Não disponível"; -$a->strings["Has crush"] = "Tem uma paixão"; -$a->strings["Infatuated"] = "Apaixonado"; -$a->strings["Dating"] = "Saindo com alguém"; -$a->strings["Unfaithful"] = "Infiel"; -$a->strings["Sex Addict"] = "Viciado(a) em sexo"; -$a->strings["Friends/Benefits"] = "Amigos com benefícios"; -$a->strings["Casual"] = "Casual"; -$a->strings["Engaged"] = "Envolvido(a)"; -$a->strings["Married"] = "Casado(a)"; -$a->strings["Imaginarily married"] = "Casado imaginariamente"; -$a->strings["Partners"] = "Parceiros"; -$a->strings["Cohabiting"] = "Coabitando"; -$a->strings["Common law"] = "Direito comum"; -$a->strings["Happy"] = "Feliz"; -$a->strings["Not looking"] = "Não estou procurando"; -$a->strings["Swinger"] = "Swinger"; -$a->strings["Betrayed"] = "Traído(a)"; -$a->strings["Separated"] = "Separado(a)"; -$a->strings["Unstable"] = "Instável"; -$a->strings["Divorced"] = "Divorciado(a)"; -$a->strings["Imaginarily divorced"] = "Divorciado imaginariamente"; -$a->strings["Widowed"] = "Viúvo(a)"; -$a->strings["Uncertain"] = "Incerto(a)"; -$a->strings["It's complicated"] = "É complicado"; -$a->strings["Don't care"] = "Não importa"; -$a->strings["Ask me"] = "Pergunte-me"; -$a->strings["Edit File properties"] = "Editar propriedades do arquivo"; -$a->strings["Invalid data packet"] = "Pacote de dados inválido"; -$a->strings["Unable to verify channel signature"] = "Não foi possível verificar a assinatura do canal"; -$a->strings["Unable to verify site signature for %s"] = "Não foi possível verificar a assinatura do site para %s"; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão."; -$a->strings["App Category"] = "Categoria de aplicativos"; -$a->strings["System"] = "Sistema"; -$a->strings["Featured"] = "Destacado"; -$a->strings["Ignore/Hide"] = "Ignorar/Ocultar"; -$a->strings["Suggestions"] = "Sugestões"; -$a->strings["See more..."] = "Veja mais..."; -$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Você tem %1$.0f de %2$.0f conexões permitidas."; -$a->strings["Add New Connection"] = "Adicionar nova conexão"; -$a->strings["Enter the channel address"] = "Digite o endereço do canal"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Por exemplo: joao@exemplo.com, http://exemplo.com/maria"; -$a->strings["Notes"] = "Notas"; -$a->strings["Remove term"] = "Remover termo"; -$a->strings["Archives"] = "Arquivos"; -$a->strings["Refresh"] = "Atualizar"; -$a->strings["Me"] = "Eu"; -$a->strings["Best Friends"] = "Melhores amigos"; -$a->strings["Co-workers"] = "Colegas de trabalho"; -$a->strings["Former Friends"] = "Amigos afastados"; -$a->strings["Acquaintances"] = "Conhecidos"; -$a->strings["Everybody"] = "Todos"; -$a->strings["Account settings"] = "Configurações da conta"; -$a->strings["Channel settings"] = "Configurações do canal"; -$a->strings["Additional features"] = "Recursos adicionais"; -$a->strings["Feature settings"] = "Configurações dos recursos"; -$a->strings["Display settings"] = "Configurações de exibição"; -$a->strings["Connected apps"] = "Aplicações conectadas"; -$a->strings["Export channel"] = "Exportar o canal"; -$a->strings["Automatic Permissions (Advanced)"] = "Permissões automáticas (avançado)"; -$a->strings["Premium Channel Settings"] = "Configurações de canal premium"; -$a->strings["Check Mail"] = "Checar mensagens"; -$a->strings["Chat Rooms"] = "Salas de bate-papo"; -$a->strings["Bookmarked Chatrooms"] = "Salas de bate-papo guardadas"; -$a->strings["Suggested Chatrooms"] = "Salas de bate-papo sugeridas"; -$a->strings["Mood"] = "Humor"; -$a->strings["Set your current mood and tell your friends"] = "Marque seu humor atual e compartilhe com seus amigos"; +$a->strings["Channel not found."] = "O canal não foi encontrado."; +$a->strings["Welcome to %s"] = "Bem-vindo(a) a %s"; +$a->strings["Channel added."] = "Canal adicionado."; +$a->strings["Public access denied."] = "Acesso público negado."; +$a->strings["Age: "] = "Idade: "; +$a->strings["Gender: "] = "Gênero: "; +$a->strings["Status: "] = "Status:"; +$a->strings["Sexual Preference: "] = "Preferência sexual:"; +$a->strings["Homepage: "] = "Website:"; +$a->strings["Hometown: "] = "Cidade natal:"; +$a->strings["About: "] = "Sobre:"; +$a->strings["Keywords: "] = "Palavras-chave:"; +$a->strings["Not found."] = "Não encontrado."; +$a->strings["network"] = "+ rede"; +$a->strings["Authorize application connection"] = "Autorizar a conexão com a aplicação"; +$a->strings["Return to your app and insert this Securty Code:"] = "Volte para a sua aplicação e digite este código de segurança:"; +$a->strings["Please login to continue."] = "Por favor, autentique-se para continuar."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?"; +$a->strings["Yes"] = "Sim"; +$a->strings["No"] = "Não"; +$a->strings["Item not found"] = "O item não foi encontrado"; +$a->strings["Edit Layout"] = "Editar layout"; +$a->strings["Delete layout?"] = "Deletar layout?"; +$a->strings["Insert YouTube video"] = "Inserir vídeo do YouTube"; +$a->strings["Insert Vorbis [.ogg] video"] = "Inserir vídeo Vorbis (.ogg)"; +$a->strings["Insert Vorbis [.ogg] audio"] = "Inserir áudio Vorbis (.ogg)"; +$a->strings["Delete Layout"] = "Deletar layout"; +$a->strings["Hub not found."] = "O hub não foi encontrado."; +$a->strings["Fetching URL returns error: %1\$s"] = "Carregar o URL retorna o erro: %1\$s"; +$a->strings["Tag removed"] = "A etiqueta foi removida"; +$a->strings["Remove Item Tag"] = "Remover a etiqueta de item"; +$a->strings["Select a tag to remove: "] = "Selecione uma etiqueta para remover: "; +$a->strings["Remove"] = "Remover"; +$a->strings["Add a Channel"] = "Adicionar um canal"; +$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."] = "Um canal é uma coleção sua de páginas relacionadas. Um canal pode ser usado para um perfil de rede social, um blog, grupos de conversação e fóruns, páginas de celebridades, e muito mais. Você pode criar tantos canais quanto seu provedor de serviço permita."; +$a->strings["Channel Name"] = "Nome do canal"; +$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Exemplos: \"Beto Salinas\", \"Elis e seus Cavalos\", \"Futebol\", \"Grupo de aviadores\""; +$a->strings["Choose a short nickname"] = "Escolha um apelido curto"; +$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Seu apelido será usado para criar um endereço para o canal de fácil memorização (como um endereço de email), que você poderá compartilhar com outros."; +$a->strings["Or import an existing channel from another location"] = "Ou importe um canal existente de outro local"; +$a->strings["Create"] = "Criar"; +$a->strings["Public Sites"] = "Sites públicos"; +$a->strings["The listed sites allow public registration into the Red Matrix. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "Os sites listados permitem ao público geral registrar contas na Red Matrix. Todos os sites na matrix são interligados, portanto ser membro em qualquer um deles te torna membro na matrix como um todo. Alguns sites podem solicitar uma assinatura ou prover planos em níveis. Os links para cada provedor podem fornecer mais detalhes."; +$a->strings["Site URL"] = "URL do site"; +$a->strings["Access Type"] = "Tipo de acesso"; +$a->strings["Registration Policy"] = "Política de registro"; +$a->strings["Location"] = "Localização"; +$a->strings["[Embedded content - reload page to view]"] = "[Conteúdo incorporado - recarregue a página para ver]"; +$a->strings["Collection created."] = "A coleção foi criada."; +$a->strings["Could not create collection."] = "Não foi possível criar a coleção."; +$a->strings["Collection updated."] = "Coleção atualizada"; +$a->strings["Create a collection of channels."] = "Criar uma coleção de canais."; +$a->strings["Collection Name: "] = "Nome da coleção:"; +$a->strings["Members are visible to other channels"] = "Membros são visíveis para outros canais"; +$a->strings["Collection removed."] = "Coleção removida."; +$a->strings["Unable to remove collection."] = "Não foi possível remover a coleção."; +$a->strings["Collection Editor"] = "Editor de coleção"; +$a->strings["Members"] = "Membros"; +$a->strings["All Connected Channels"] = "Todas os canais conectados"; +$a->strings["Click on a channel to add or remove."] = "Clique em um canal para adicionar ou remover."; +$a->strings["Thing updated"] = "A coisa foi atualizada"; +$a->strings["Object store: failed"] = "Armazenamento do objeto: falhou"; +$a->strings["Thing added"] = "A coisa foi adicionada"; +$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +$a->strings["Show Thing"] = "Exibir coisa"; +$a->strings["item not found."] = "o item não foi encontrado"; +$a->strings["Edit Thing"] = "Editar coisa"; +$a->strings["Select a profile"] = "Selecione um perfil"; +$a->strings["Select a category of stuff. e.g. I ______ something"] = "Escolha uma categoria de coisas. e.g. Eu ______ algo"; +$a->strings["Post an activity"] = "Publique uma atividade"; +$a->strings["Only sends to viewers of the applicable profile"] = "Envia apenas para a audiência do perfil aplicável"; +$a->strings["Name of thing e.g. something"] = "Nome da coisa e.g. coisinha"; +$a->strings["URL of thing (optional)"] = "URL da coisa (opcional)"; +$a->strings["URL for photo of thing (optional)"] = "URL para foto da coisa (opcional)"; +$a->strings["Add Thing to your Profile"] = "Adicionar a coisa ao seu perfil"; +$a->strings["Invalid request identifier."] = "Identificador de solicitação inválido"; +$a->strings["Discard"] = "Descartar"; +$a->strings["Ignore"] = "Ignorar"; +$a->strings["No more system notifications."] = "Sem novas notificações do sistema."; +$a->strings["System Notifications"] = "Notificações do sistema"; +$a->strings["Invalid item."] = "Item inválido."; +$a->strings["Page not found."] = "Página não encontrada."; +$a->strings["Messages"] = "Mensagens"; +$a->strings["Conversation removed."] = "A conversa foi removida."; +$a->strings["No messages."] = "Nenhuma mensagem."; +$a->strings["Delete message"] = "Excluir a mensagem"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["Edit post"] = "Editar a publicação"; +$a->strings["Finding:"] = "Pesquisando:"; +$a->strings["next page"] = "próxima página"; +$a->strings["previous page"] = "página anterior"; +$a->strings["No entries (some entries may be hidden)."] = "Nenhuma entrada (algumas entradas podem estar escondidas)."; $a->strings["Menu not found."] = "O menu não foi encontrado."; $a->strings["Menu element updated."] = "O elemento de menu foi atualizado."; $a->strings["Unable to update menu element."] = "Não foi possível atualizar o elemento de menu."; $a->strings["Menu element added."] = "O elemento de menu foi adicionado."; $a->strings["Unable to add menu element."] = "Não foi possível adicionar o elemento de menu."; -$a->strings["Not found."] = "Não encontrado."; $a->strings["Manage Menu Elements"] = "Administrar elementos de menu"; $a->strings["Edit menu"] = "Editar menu"; $a->strings["Edit element"] = "Editar elemento"; @@ -807,183 +905,77 @@ $a->strings["Use Red magic-auth if available"] = "Usar Red magic-auth s $a->strings["Open link in new window"] = "Abrir link em uma nova janela"; $a->strings["Order in list"] = "Ordem na lista"; $a->strings["Higher numbers will sink to bottom of listing"] = "Números mais altos descem para o fim da lista"; -$a->strings["Create"] = "Criar"; $a->strings["Menu item not found."] = "O item de menu não foi encontrado."; $a->strings["Menu item deleted."] = "O item de menu foi deletado."; $a->strings["Menu item could not be deleted."] = "Não foi possível deletar o item de menu."; $a->strings["Edit Menu Element"] = "Editar elemento de menu"; $a->strings["Modify"] = "Modificar"; -$a->strings["sent you a private message"] = "lhe enviou uma mensagem privada"; -$a->strings["added your channel"] = "adicionou seu canal"; -$a->strings["posted an event"] = "publicou um evento"; -$a->strings["network"] = "+ rede"; -$a->strings["Theme settings updated."] = "As configurações de tema foram atualizadas."; -$a->strings["Site"] = "Site"; -$a->strings["Accounts"] = "Contas"; -$a->strings["Channels"] = "Canais"; -$a->strings["Plugins"] = "Plugins"; -$a->strings["Themes"] = "Temas"; -$a->strings["Server"] = "Servidor"; -$a->strings["DB updates"] = "Atualizações do Banco de Dados"; -$a->strings["Logs"] = "Logs"; -$a->strings["Plugin Features"] = "Recursos dos plugins"; -$a->strings["User registrations waiting for confirmation"] = "Registros de usuário aguardando confirmação"; -$a->strings["Message queues"] = "Filas de mensagem"; -$a->strings["Administration"] = "Administração"; -$a->strings["Summary"] = "Resumo"; -$a->strings["Registered users"] = "Usuários registrados"; -$a->strings["Pending registrations"] = "Registros pendentes"; -$a->strings["Version"] = "Versão"; -$a->strings["Active plugins"] = "Plugins ativos"; -$a->strings["Site settings updated."] = "As configurações de site foram atualizadas."; -$a->strings["No special theme for mobile devices"] = "Sem tema especial para aparelhos móveis"; -$a->strings["No special theme for accessibility"] = "Sem tema especial para acessibilidade"; -$a->strings["No"] = "Não"; -$a->strings["Yes - with approval"] = "Sim - pendente aprovação"; -$a->strings["Yes"] = "Sim"; -$a->strings["My site is not a public server"] = "Meu site não é um servidor público"; -$a->strings["My site has paid access only"] = "Meu site oferece somente acesso pago"; -$a->strings["My site has free access only"] = "Meu site oferece somente acesso gratuito"; -$a->strings["My site offers free accounts with optional paid upgrades"] = "Meu site oferece contas gratuitas com recursos adicionais pagos"; -$a->strings["Registration"] = "Registro"; -$a->strings["File upload"] = "Carregamento de arquivos"; -$a->strings["Policies"] = "Políticas"; -$a->strings["Site name"] = "Nome do site"; -$a->strings["Banner/Logo"] = "Cartaz/Logo"; -$a->strings["Administrator Information"] = "Informações do Administrador"; -$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Informações de contato com administradores do site. Exibida na página siteinfo. BBCode pode ser usado aqui."; -$a->strings["System language"] = "Idioma do sistema"; -$a->strings["System theme"] = "Tema do sistema"; -$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema padrão do sistema - pode ser sobrescrito por perfis de usuário - mudar configurações do tema"; -$a->strings["Mobile system theme"] = "Tema do sistema móvel"; -$a->strings["Theme for mobile devices"] = "Tema para dispositivos móveis"; -$a->strings["Accessibility system theme"] = "Tema do sistema acessível"; -$a->strings["Accessibility theme"] = "Tema acessível"; -$a->strings["Channel to use for this website's static pages"] = "Canal a utilizar para as páginas estáticas desse website"; -$a->strings["Site Channel"] = "Canal do site"; -$a->strings["Maximum image size"] = "Tamanho máximo de imagens"; -$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Tamanho máximo em bytes de imagens carregadas. O padrão é 0, significando sem limites."; -$a->strings["Does this site allow new member registration?"] = "Este site permite o registro de novos membros?"; -$a->strings["Which best describes the types of account offered by this hub?"] = "Qual descreve melhor os tipos de conta oferecidas por este hub?"; -$a->strings["Register text"] = "Texto de registro"; -$a->strings["Will be displayed prominently on the registration page."] = "Será exibido proeminentemente na página de registro."; -$a->strings["Accounts abandoned after x days"] = "Contas abandonadas após x dias"; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Não gastará recursos do sistema coletando de sites externos para contas abandonadas. Use 0 para sem limite de tempo."; -$a->strings["Allowed friend domains"] = "Domínios permitidos para amigos"; -$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Lista, separada por vírgulas, de domínios permitidos para estabelecer amizades com este site. Wildcards são aceitas. Vazio para permitir qualquer domínio"; -$a->strings["Allowed email domains"] = "Domínios permitidos de e-mail"; -$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"] = "Lista, separada por vírgulas, de domínios permitidos em endereços de e-mail para registros nesse site. Wildcards são aceitas. Vazio para permitir qualquer domínio"; -$a->strings["Block public"] = "Bloquear público"; -$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Marque para bloquear o acesso público a todas as páginas pessoais que seriam públicas, a não ser que se esteja autenticado."; -$a->strings["Force publish"] = "Forçar publicação"; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Marque para forçar todos os perfis neste site a aparecerem listados no diretório do site."; -$a->strings["Disable discovery tab"] = "Desabilitar a aba \"Descubra\""; -$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Remove da visualização de rede a aba com conteúdos públicos obtidos de fontes escolhidas para esse site."; -$a->strings["No login on Homepage"] = "Sem formulário de autenticação na página inicial"; -$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Marque para esconder o formulário de autenticação da página inicial do seu site quando visitantes chegarem sem estar autenticados (e.g. quando você inclui os conteúdos da página inicial através do canal do site)."; -$a->strings["Proxy user"] = "Usuário do proxy"; -$a->strings["Proxy URL"] = "URL do proxy"; -$a->strings["Network timeout"] = "Timeout da rede"; -$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valor em segundos. Use 0 para ilimitado (não recomendado)."; -$a->strings["Delivery interval"] = "Intervalo de entrega"; -$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."] = "Atrase os processos de entrega em segundo plano por este número de segundos para reduzir a carga do sistema. Recomendado: 4-5 para hosts compartilhados, 2-3 para servidores virtuais privados. 0-1 para grandes servidores dedicados."; -$a->strings["Poll interval"] = "Intervalo de coleta"; -$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Atrase os processos de coleta em segundo plano por este número de segundos para reduzir a carga do sistema. Se 0, use o intervalo de entrega."; -$a->strings["Maximum Load Average"] = "Carga média máxima"; -$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carga máxima do sistema antes de adiar processos de entrega e coleta - padrão 50."; -$a->strings["No server found"] = "Nenhum servidor foi encontrado"; -$a->strings["ID"] = "ID"; -$a->strings["for channel"] = "para o canal"; -$a->strings["on server"] = "no servidor"; -$a->strings["Status"] = "Status"; -$a->strings["Update has been marked successful"] = "A atualização foi designada bem sucedida"; -$a->strings["Executing %s failed. Check system logs."] = "Execução de %s falhou. Verifique os logs do sistema."; -$a->strings["Update %s was successfully applied."] = "A atualização %s foi aplicada com sucesso."; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "A atualização %s não retornou um status. Situação incerta quando ao seu sucesso."; -$a->strings["Update function %s could not be found."] = "A função de atualização %s não foi encontrada."; -$a->strings["No failed updates."] = "Nenhuma falha nas atualizações."; -$a->strings["Failed Updates"] = "Falha nas atualizações"; -$a->strings["Mark success (if update was manually applied)"] = "Marque sucesso (se a atualização foi aplicada manualmente)"; -$a->strings["Attempt to execute this update step automatically"] = "Tente executar este passo da atualização automaticamente"; -$a->strings["%s user blocked/unblocked"] = array( - 0 => "%s usuário foi bloqueado/desbloqueado", - 1 => "%s usuários foram bloqueados/desbloqueados", -); -$a->strings["%s user deleted"] = array( - 0 => "%s usuário foi deletado", - 1 => "%s usuários foram deletados", -); -$a->strings["Account not found"] = "A conta não foi encontrada"; -$a->strings["User '%s' deleted"] = "O usuário/a '%s' foi deletado/a"; -$a->strings["User '%s' unblocked"] = "O usuário/a '%s' foi desbloqueado/a"; -$a->strings["User '%s' blocked"] = "O usuário/a '%s' foi bloqueado/a"; -$a->strings["Users"] = "Usuários"; -$a->strings["select all"] = "selecionar tudo"; -$a->strings["User registrations waiting for confirm"] = "Registros de usuário aguardando confirmação"; -$a->strings["Request date"] = "Data de requisição"; -$a->strings["No registrations."] = "Nenhum registro."; -$a->strings["Approve"] = "Aprovar"; -$a->strings["Deny"] = "Negar"; -$a->strings["Block"] = "Bloquear"; -$a->strings["Unblock"] = "Desbloquear"; -$a->strings["Register date"] = "Data de registro"; -$a->strings["Last login"] = "Última autenticação"; -$a->strings["Expires"] = "Expira"; -$a->strings["Service Class"] = "Classe de serviço"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Os usuários selecionados serão deletados!\\n\\nTudo o que esses usuários postaram neste site será permanentemente deletado!\\n\\nTem certeza?"; -$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?"] = "O/A usuário/a {0} será deletado/a!\\n\\nTudo o que esse/a usuário/a postou neste site será permanentemente deletado!\\n\\nTem certeza?"; -$a->strings["%s channel censored/uncensored"] = array( - 0 => "%s canal censurado/descensurado", - 1 => "%s canais censurados/descensurados", -); -$a->strings["%s channel deleted"] = array( - 0 => "%s canal deletado", - 1 => "%s canais deletados", -); -$a->strings["Channel not found"] = "Canal não encontrado"; -$a->strings["Channel '%s' deleted"] = "Canal '%s' deletado"; -$a->strings["Channel '%s' uncensored"] = "Canal '%s' não censurado"; -$a->strings["Channel '%s' censored"] = "Canal '%s' censurado"; -$a->strings["Censor"] = "Censurar"; -$a->strings["Uncensor"] = "Não censurar"; -$a->strings["UID"] = "UID"; -$a->strings["Name"] = "Nome"; -$a->strings["Address"] = "Endereço"; -$a->strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Os canais selecionados serão deletados!\\n\\nTudo que foi postado nesses canais nesse site será permanentemente deletado!\\n\\nVocê tem certeza?"; -$a->strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "O canal {0} será deletado!\\n\\nTudo o que foi postado nesse canal nesse site será permanentemente deletado!\\n\\nVocê tem certeza?"; -$a->strings["Plugin %s disabled."] = "Plugin %s desabilitado."; -$a->strings["Plugin %s enabled."] = "Plugin %s habilitado."; -$a->strings["Disable"] = "Desabilitar"; -$a->strings["Enable"] = "Habilitar"; -$a->strings["Toggle"] = "Alternar"; -$a->strings["Author: "] = "Autor:"; -$a->strings["Maintainer: "] = "Mantenedor:"; -$a->strings["No themes found."] = "Nenhum tema foi encontrado."; -$a->strings["Screenshot"] = "Captura de tela"; -$a->strings["[Experimental]"] = "[Experimental]"; -$a->strings["[Unsupported]"] = "[Desassistido]"; -$a->strings["Log settings updated."] = "As configurações de log foram atualizadas."; -$a->strings["Clear"] = "Limpar"; -$a->strings["Debugging"] = "Depuração"; -$a->strings["Log file"] = "Arquivo de log"; -$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "É necessário que o servidor web possa escrever neste arquivo. Relativo ao diretório raiz da Red."; -$a->strings["Log level"] = "Nível do log"; -$a->strings["Poke/Prod"] = "Cutucar/Espetar"; -$a->strings["poke, prod or do other things to somebody"] = "Cutucar, espetar ou fazer outras coisas a alguém"; -$a->strings["Recipient"] = "Destinatário"; -$a->strings["Choose what you wish to do to recipient"] = "Escolha o que você deseja fazer com seu alvo"; -$a->strings["Make this post private"] = "Torne esta publicação privada"; -$a->strings["Authorize application connection"] = "Autorizar a conexão com a aplicação"; -$a->strings["Return to your app and insert this Securty Code:"] = "Volte para a sua aplicação e digite este código de segurança:"; -$a->strings["Please login to continue."] = "Por favor, autentique-se para continuar."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?"; -$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Autenticação remota bloqueada. Você está autenticado neste site localmente. Por favor, saia e tente novamente."; -$a->strings["Welcome %s. Remote authentication successful."] = "Bem vindo %s. Autenticação remota realizada com sucesso."; -$a->strings["Item not available."] = "O item não está disponível."; -$a->strings["Fetching URL returns error: %1\$s"] = "Carregar o URL retorna o erro: %1\$s"; -$a->strings["Invalid item."] = "Item inválido."; -$a->strings["Channel not found."] = "O canal não foi encontrado."; -$a->strings["Page not found."] = "Página não encontrada."; +$a->strings["Continue"] = "Continuar"; +$a->strings["Premium Channel Setup"] = "Configuração de canal premium"; +$a->strings["Enable premium channel connection restrictions"] = "Habilitar restrições de canal premium para conexão"; +$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Por favor, insira suas restrições ou condições, como um recibo de depósito, normas de conduta, etc."; +$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Este canal pode exigir passos adicionais ou compreensão das seguintes condições antes de conectar:"; +$a->strings["Potential connections will then see the following text before proceeding:"] = "Tentativas de conexões verão então o seguinte texto antes de prosseguir:"; +$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Ao prosseguir, eu certifico que cumpri todas as instruções exibidas nesta página."; +$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Nenhuma instrução foi especificada pelo dono do canal.)"; +$a->strings["Restricted or Premium Channel"] = "Canal restrito ou premium"; +$a->strings["Unable to locate original post."] = "Não foi possível localizar a publicação original."; +$a->strings["Empty post discarded."] = "A publicação em branco foi descartada."; +$a->strings["Executable content type not permitted to this channel."] = "Conteúdo de tipo executável não permitido para este canal."; +$a->strings["System error. Post not saved."] = "Erro no sistema. A publicação não foi salva."; +$a->strings["You have reached your limit of %1$.0f top level posts."] = "Você atingiu o seu limite de %1$.0f publicações de novos tópicos."; +$a->strings["You have reached your limit of %1$.0f webpages."] = "Você atingiu o seu limite de %1$.0f páginas web."; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nenhuma sugestão disponível. Se este site é novo, por favor tente novamente em 24 horas."; +$a->strings["No such group"] = "Este grupo não existe"; +$a->strings["Search Results For:"] = "Resultados da busca por:"; +$a->strings["Collection is empty"] = "A coleção está vazia"; +$a->strings["Collection: "] = "Coleção:"; +$a->strings["Connection: "] = "Conexão:"; +$a->strings["Invalid connection."] = "Conexão inválida."; +$a->strings["Version %s"] = "Versão %s"; +$a->strings["Installed plugins/addons/apps:"] = "Plugins/complementos/aplicações instalados:"; +$a->strings["No installed plugins/addons/apps"] = "Nenhum plugin/complemento/aplicação instalado"; +$a->strings["Red"] = "Red"; +$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralised privacy enhanced websites."] = "Este é um hub da Red Matrix - uma rede global cooperativa de websites descentralizados com privacidade aprimorada."; +$a->strings["Running at web location"] = "Sendo executado no endereço web"; +$a->strings["Please visit GetZot.com to learn more about the Red Matrix."] = "Para aprender mais sobre a Red Matrix, visite GetZot.com."; +$a->strings["Bug reports and issues: please visit"] = "Relatos e acompanhamentos de erros podem ser encontrados em"; +$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Sugestões, elogios, etc - mande um e-mail para \"redmatrix\" arrôba librelist ponto com"; +$a->strings["Site Administrators"] = "Administradores do site"; +$a->strings["Bookmark added"] = "O link foi guardado"; +$a->strings["My Bookmarks"] = "Meus links guardados"; +$a->strings["My Connections Bookmarks"] = "Links guardados das minhas conexões"; +$a->strings["You must be logged in to see this page."] = "Você precisa estar autenticado para ver esta página."; +$a->strings["Insufficient permissions. Request redirected to profile page."] = "Permissões insuficientes. Requisição redirecionada para a página de perfil."; +$a->strings["Layout updated."] = "Layout atualizado."; +$a->strings["Edit System Page Description"] = "Editar descrição de página do sistema"; +$a->strings["Layout not found."] = "Layout não encontrado."; +$a->strings["Module Name:"] = "Nome do módulo:"; +$a->strings["Layout Help"] = "Ajuda de layout"; +$a->strings["Unable to find your hub."] = "Não foi possível localizar seu hub."; +$a->strings["Post successful."] = "Publicado com sucesso."; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está acompanhando %3\$s de %2\$s"; +$a->strings["toggle full screen mode"] = "alternar o mode de tela inteira"; +$a->strings["invalid target signature"] = "assinatura do destino inválida"; +$a->strings["Failed to create source. No channel selected."] = "Falha ao criar a fonte. Nenhum canal selecionado."; +$a->strings["Source created."] = "A fonte foi criada."; +$a->strings["Source updated."] = "A fonte foi atualizada."; +$a->strings["*"] = "*"; +$a->strings["Manage remote sources of content for your channel."] = "Administrar as fontes remotas de conteúdo para o seu canal."; +$a->strings["New Source"] = "Nova fonte"; +$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importar todo ou uma seleção do conteúdo do seguinte canal para este canal, e distribuí-lo de acordo com as configurações do seu canal."; +$a->strings["Only import content with these words (one per line)"] = "Importar apenas conteúd com estas palavras (uma por linha)"; +$a->strings["Leave blank to import all public content"] = "Deixe em branco para importar todo o conteúdo público"; +$a->strings["Source not found."] = "A fonte não foi encontrada."; +$a->strings["Edit Source"] = "Editar fonte"; +$a->strings["Delete Source"] = "Deletar fonte"; +$a->strings["Source removed"] = "A fonte foi removida."; +$a->strings["Unable to remove source."] = "Não foi possível remover a fonte."; +$a->strings["Invalid profile identifier."] = "Identificador de perfil inválido."; +$a->strings["Profile Visibility Editor"] = "Editor de visibilidade do perfil"; +$a->strings["Click on a contact to add or remove."] = "Clique em um contato para adicionar ou remover."; +$a->strings["Visible To"] = "Visível para"; +$a->strings["All Connections"] = "Todas as conexões"; $a->strings["Image uploaded but image cropping failed."] = "A imagem foi enviada, mas não foi possível cortá-la."; $a->strings["Image resize failed."] = "Falha ao modificar o tamanho da imagem."; $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Se a nova foto não aparecer imediatamente, recarregue a página segurando a tecla \"shift\" ou limpe o cache do navegador, "; @@ -1004,172 +996,31 @@ $a->strings["Image uploaded successfully."] = "A imagem foi enviada com sucesso. $a->strings["Image upload failed."] = "Não foi possível enviar a imagem."; $a->strings["Image size reduction [%s] failed."] = "Não foi possível reduzir o tamanho da imagem [%s]."; $a->strings["Block Name"] = "Nome do bloco"; -$a->strings["Profile not found."] = "O perfil não foi encontrado."; -$a->strings["Profile deleted."] = "O perfil foi excluído."; -$a->strings["Profile-"] = "Perfil-"; -$a->strings["New profile created."] = "O novo perfil foi criado."; -$a->strings["Profile unavailable to clone."] = "O perfil não está disponível para clonagem."; -$a->strings["Profile Name is required."] = "É obrigatório informar o nome do perfil."; -$a->strings["Marital Status"] = "Estado civil"; -$a->strings["Romantic Partner"] = "Parceiro/a romântico/a"; -$a->strings["Work/Employment"] = "Trabalho/Emprego"; -$a->strings["Religion"] = "Religião"; -$a->strings["Political Views"] = "Posição política"; -$a->strings["Gender"] = "Gênero"; -$a->strings["Sexual Preference"] = "Preferência sexual"; -$a->strings["Homepage"] = "Página web"; -$a->strings["Interests"] = "Interesses"; -$a->strings["Location"] = "Localização"; -$a->strings["Profile updated."] = "O perfil foi atualizado."; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Esconder sua lista de contatos/amigos dos visitantes no seu perfil?"; -$a->strings["Edit Profile Details"] = "Editar os detalhes do perfil"; -$a->strings["View this profile"] = "Ver este perfil"; -$a->strings["Change Profile Photo"] = "Mudar a foto do perfil"; -$a->strings["Create a new profile using these settings"] = "Criar um novo perfil usando estas configurações"; -$a->strings["Clone this profile"] = "Clonar este perfil"; -$a->strings["Delete this profile"] = "Excluir este perfil"; -$a->strings["Profile Name:"] = "Nome do perfil:"; -$a->strings["Your Full Name:"] = "Seu nome completo:"; -$a->strings["Title/Description:"] = "Título/Descrição:"; -$a->strings["Your Gender:"] = "Seu gênero:"; -$a->strings["Birthday (%s):"] = "Aniversário (%s):"; -$a->strings["Street Address:"] = "Endereço:"; -$a->strings["Locality/City:"] = "Localidade/Cidade:"; -$a->strings["Postal/Zip Code:"] = "CEP:"; -$a->strings["Country:"] = "País:"; -$a->strings["Region/State:"] = "Região/Estado:"; -$a->strings[" Marital Status:"] = "Estado civil :"; -$a->strings["Who: (if applicable)"] = "Quem: (se aplicável)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com"; -$a->strings["Since [date]:"] = "Desde [data]:"; -$a->strings["Homepage URL:"] = "Endereço do website:"; -$a->strings["Religious Views:"] = "Orientação religiosa:"; -$a->strings["Keywords:"] = "Palavras-chave:"; -$a->strings["Example: fishing photography software"] = "Exemplo: pesca fotografia software"; -$a->strings["Used in directory listings"] = "Usado em listas de diretório"; -$a->strings["Tell us about yourself..."] = "Fale um pouco sobre você..."; -$a->strings["Hobbies/Interests"] = "Hobbies/Interesses"; -$a->strings["Contact information and Social Networks"] = "Informações de contato e redes sociais"; -$a->strings["My other channels"] = "Meus outros canais"; -$a->strings["Musical interests"] = "Interesses musicais"; -$a->strings["Books, literature"] = "Livros, literatura"; -$a->strings["Television"] = "Televisão"; -$a->strings["Film/dance/culture/entertainment"] = "Filme/dança/cultura/entretenimento"; -$a->strings["Love/romance"] = "Amor/romance"; -$a->strings["Work/employment"] = "Trabalho/emprego"; -$a->strings["School/education"] = "Escola/educação"; -$a->strings["This is your public profile.
    It may be visible to anybody using the internet."] = "Este é o seu perfil público.
    Ele pode estar visível para qualquer um que acesse a Internet."; -$a->strings["Age: "] = "Idade: "; -$a->strings["Edit/Manage Profiles"] = "Editar/Administrar perfis"; -$a->strings["Add profile things"] = "Adicionar coisas ao perfil"; -$a->strings["Include desirable objects in your profile"] = "Inclua objetos desejáveis no seu perfil"; -$a->strings["Bookmark added"] = "O link foi guardado"; -$a->strings["My Bookmarks"] = "Meus links guardados"; -$a->strings["My Connections Bookmarks"] = "Links guardados das minhas conexões"; -$a->strings["Invalid profile identifier."] = "Identificador de perfil inválido."; -$a->strings["Profile Visibility Editor"] = "Editor de visibilidade do perfil"; -$a->strings["Click on a contact to add or remove."] = "Clique em um contato para adicionar ou remover."; -$a->strings["Visible To"] = "Visível para"; -$a->strings["All Connections"] = "Todas as conexões"; -$a->strings["Public Sites"] = "Sites públicos"; -$a->strings["The listed sites allow public registration into the Red Matrix. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "Os sites listados permitem ao público geral registrar contas na Red Matrix. Todos os sites na matrix são interligados, portanto ser membro em qualquer um deles te torna membro na matrix como um todo. Alguns sites podem solicitar uma assinatura ou prover planos em níveis. Os links para cada provedor podem fornecer mais detalhes."; -$a->strings["Site URL"] = "URL do site"; -$a->strings["Access Type"] = "Tipo de acesso"; -$a->strings["Registration Policy"] = "Política de registro"; -$a->strings["You must be logged in to see this page."] = "Você precisa estar autenticado para ver esta página."; -$a->strings["Insufficient permissions. Request redirected to profile page."] = "Permissões insuficientes. Requisição redirecionada para a página de perfil."; -$a->strings["toggle full screen mode"] = "alternar o mode de tela inteira"; -$a->strings["Select a bookmark folder"] = "Escolha uma pasta de links onde guardar"; -$a->strings["Save Bookmark"] = "Guardar link"; -$a->strings["URL of bookmark"] = "URL do link guardado"; -$a->strings["Description"] = "Descrição"; -$a->strings["Or enter new bookmark folder name"] = "Ou digite o nome para uma nova pasta de links"; -$a->strings["Room not found"] = "Sala não encontrada"; -$a->strings["Leave Room"] = "Sair da sala"; -$a->strings["Delete This Room"] = "Deletar esta sala"; -$a->strings["I am away right now"] = "Eu estou ausente no momento"; -$a->strings["I am online"] = "Eu estou online"; -$a->strings["Bookmark this room"] = "Guarde esta sala"; -$a->strings["New Chatroom"] = "Nova sala de bate-papo"; -$a->strings["Chatroom Name"] = "Nome da sala de bate-papo"; -$a->strings["%1\$s's Chatrooms"] = "Salas de bate-papo de %1\$s"; -$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Número máximo de novos registros neste site excedido por hoje. Por favor, tente novamente amanhã."; -$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Por favor, indique a aceitação dos Termos de Serviço. Falha ao registrar."; -$a->strings["Passwords do not match."] = "Senhas não conferem."; -$a->strings["Registration successful. Please check your email for validation instructions."] = "O registro foi bem sucedido. Por favor, verifique seu e-mail para confirmar o registro."; -$a->strings["Your registration is pending approval by the site owner."] = "A aprovação do seu registro está pendente junto ao administrador do site."; -$a->strings["Your registration can not be processed."] = "Não foi possível processar o seu registro."; -$a->strings["Registration on this site/hub is by approval only."] = "O registro neste site/hub requer aprovação."; -$a->strings["Register at another affiliated site/hub"] = "Registre em um outro site/hub afiliado"; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este site excedeu o número máximo de registros de novas contas. Por favor, tente novamente amanhã."; -$a->strings["Terms of Service"] = "Termos de Serviço"; -$a->strings["I accept the %s for this website"] = "Eu aceito os %s deste website."; -$a->strings["I am over 13 years of age and accept the %s for this website"] = "Eu sou maior de 13 anos e aceito os %s deste website"; -$a->strings["Membership on this site is by invitation only."] = "Novas contas neste site se dão apenas por convite."; -$a->strings["Please enter your invitation code"] = "Por favor, digite o código do seu convite"; -$a->strings["Your email address"] = "Seu endereço de e-mail"; -$a->strings["Choose a password"] = "Escolha uma senha"; -$a->strings["Please re-enter your password"] = "Por favor, digite sua senha novamente"; -$a->strings["Away"] = "Ausente"; -$a->strings["Online"] = "Online"; -$a->strings["Please login."] = "Por favor, autentique-se."; -$a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"] = "Red Matrix - Visitantes: Usuário: {seu endereço de e-mail}, Senha: +++"; -$a->strings["Remove This Channel"] = "Remover este canal"; -$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Isso irá remover completamente este canal da rede. Uma vez que seja feito não será possível recuperá-lo."; -$a->strings["Please enter your password for verification:"] = "Por favor, digite a sua senha para verificação:"; -$a->strings["Remove this channel and all its clones from the network"] = "Remover este canal e todos os seus clones da rede"; -$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Por padrão, apenas a instância do canal localizada neste hub será removida da rede"; -$a->strings["Remove Channel"] = "Remover canal"; -$a->strings["No channel."] = "Nenhum canal."; -$a->strings["Common connections"] = "Conexões em comum"; -$a->strings["No connections in common."] = "Nenhuma conexão em comum."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Encontramos um problema ao entrar com a OpenID fornecida. Por favor, verifique se digitou corretamente a ID."; -$a->strings["The error message was:"] = "A mensagem de erro foi:"; -$a->strings["Authentication failed."] = "A autenticação falhou."; -$a->strings["Remote Authentication"] = "Autenticação remota"; -$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Entre o endereço do seu canal (e.g. canal@exemplo.com)"; -$a->strings["Authenticate"] = "Autenticar"; -$a->strings["Continue"] = "Continuar"; -$a->strings["Premium Channel Setup"] = "Configuração de canal premium"; -$a->strings["Enable premium channel connection restrictions"] = "Habilitar restrições de canal premium para conexão"; -$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Por favor, insira suas restrições ou condições, como um recibo de depósito, normas de conduta, etc."; -$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Este canal pode exigir passos adicionais ou compreensão das seguintes condições antes de conectar:"; -$a->strings["Potential connections will then see the following text before proceeding:"] = "Tentativas de conexões verão então o seguinte texto antes de prosseguir:"; -$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Ao prosseguir, eu certifico que cumpri todas as instruções exibidas nesta página."; -$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Nenhuma instrução foi especificada pelo dono do canal.)"; -$a->strings["Restricted or Premium Channel"] = "Canal restrito ou premium"; -$a->strings["No such group"] = "Este grupo não existe"; -$a->strings["Search Results For:"] = "Resultados da busca por:"; -$a->strings["Collection is empty"] = "A coleção está vazia"; -$a->strings["Collection: "] = "Coleção:"; -$a->strings["Connection: "] = "Conexão:"; -$a->strings["Invalid connection."] = "Conexão inválida."; +$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Autenticação remota bloqueada. Você está autenticado neste site localmente. Por favor, saia e tente novamente."; +$a->strings["Welcome %s. Remote authentication successful."] = "Bem vindo %s. Autenticação remota realizada com sucesso."; +$a->strings["Permission Denied."] = "Permissão negada."; +$a->strings["File not found."] = "O arquivo não foi encontrado."; +$a->strings["Edit file permissions"] = "Editar permissões do arquivo"; +$a->strings["Set/edit permissions"] = "Definir/editar permissões"; +$a->strings["Include all files and sub folders"] = "Incluir todos os arquivos e subpastas"; +$a->strings["Return to file list"] = "Retornar à lista de arquivos"; +$a->strings["Copy/paste this code to attach file to a post"] = "Copiar/colar este código para anexar um arquivo a uma publicação"; +$a->strings["Copy/paste this URL to link file from a web page"] = "Copiar/colar este URL para linkar para o arquivo em uma página web"; +$a->strings["Download"] = "Baixar"; +$a->strings["Used: "] = "Utilizado:"; +$a->strings["[directory]"] = "[diretório]"; +$a->strings["Limit: "] = "Limite:"; +$a->strings["Remote privacy information not available."] = "Não existe informação disponível sobre a privacidade remota."; +$a->strings["Visible to:"] = "Visível para:"; +$a->strings["Contact not found."] = "O contato não foi encontrado."; +$a->strings["Friend suggestion sent."] = "Sugestão de amizade enviada."; +$a->strings["Suggest Friends"] = "Sugerir amigos"; +$a->strings["Suggest a friend for %s"] = "Sugerir um amigo para %s"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s etiquetou %3\$s de %2\$s com %4\$s"; $a->strings["Could not access contact record."] = "Não foi possível acessar o registro do contato."; $a->strings["Could not locate selected profile."] = "Não foi possível localizar o perfil selecionado."; $a->strings["Connection updated."] = "A conexão foi atualizada."; $a->strings["Failed to update connection record."] = "Não foi possível atualizar o registro da conexão."; -$a->strings["Blocked"] = "Bloqueado"; -$a->strings["Ignored"] = "Ignorado"; -$a->strings["Hidden"] = "Oculto"; -$a->strings["Archived"] = "Arquivado"; -$a->strings["All"] = "Todos"; -$a->strings["Unconnected"] = "Não conectado"; -$a->strings["Suggest new connections"] = "Sugerir novas conexões"; -$a->strings["New Connections"] = "Novas conexões"; -$a->strings["Show pending (new) connections"] = "Exibir conexões pendentes (novas)"; -$a->strings["Show all connections"] = "Exibir todas as conexões"; -$a->strings["Unblocked"] = "Não bloqueado"; -$a->strings["Only show unblocked connections"] = "Exibir apenas conexões não bloqueadas"; -$a->strings["Only show blocked connections"] = "Exibir apenas conexões bloqueadas"; -$a->strings["Only show ignored connections"] = "Exibir apenas conexões ignoradas"; -$a->strings["Only show archived connections"] = "Exibir apenas conexões arquivadas"; -$a->strings["Only show hidden connections"] = "Exibir apenas conexões ocultas"; -$a->strings["Only show one-way connections"] = "Exibir apenas conexões de mão única"; -$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -$a->strings["Edit contact"] = "Editar o contato"; -$a->strings["Search your connections"] = "Pesquisar em suas conexões"; -$a->strings["Finding: "] = "Pesquisando: "; -$a->strings["Edit post"] = "Editar a publicação"; $a->strings["Could not access address book record."] = "Não foi possível acessar o registro do contato."; $a->strings["Refresh failed - channel is currently unavailable."] = "A atualização falhou - o canal está indisponível no momento."; $a->strings["Channel has been unblocked"] = "O canal foi desbloqueado"; @@ -1189,9 +1040,10 @@ $a->strings["Refresh Permissions"] = "Atualizar permissões"; $a->strings["Fetch updated permissions"] = "Buscar as permissões atualizadas"; $a->strings["Recent Activity"] = "Atividades recentes"; $a->strings["View recent posts and comments"] = "Exibir publicações e comentários recentes"; +$a->strings["Unblock"] = "Desbloquear"; +$a->strings["Block"] = "Bloquear"; $a->strings["Block or Unblock this connection"] = "Bloquear ou desbloquear esta conexão"; $a->strings["Unignore"] = "Não ignorar"; -$a->strings["Ignore"] = "Ignorar"; $a->strings["Ignore or Unignore this connection"] = "Ignorar ou deixar de ignorar esta conexão"; $a->strings["Unarchive"] = "Não arquivar"; $a->strings["Archive"] = "Arquivar"; @@ -1200,7 +1052,6 @@ $a->strings["Unhide"] = "Não ocultar"; $a->strings["Hide"] = "Ocultar"; $a->strings["Hide or Unhide this connection"] = "Ocultar ou deixar de ocultar esta conexão"; $a->strings["Delete this connection"] = "Deletar esta conexão"; -$a->strings["Unknown"] = "Desconhecidos"; $a->strings["Approve this connection"] = "Aprovar esta conexão"; $a->strings["Accept connection to allow communication"] = "Aceite a conexão para permitir comunicação"; $a->strings["Automatic Permissions Settings"] = "Configurações de permissão automáticas"; @@ -1241,31 +1092,18 @@ $a->strings["Currently archived"] = "Atualmente arquivado"; $a->strings["Currently pending"] = "Atualmente pendente"; $a->strings["Hide this contact from others"] = "Esconda este contato dos demais"; $a->strings["Replies/likes to your public posts may still be visible"] = "Respostas/reações às suas publicações públicas podem continuar visíveis."; -$a->strings["No potential page delegates located."] = "Nenhum potencial delegado para páginas localizado."; -$a->strings["Delegate Page Management"] = "Delegar administração de página"; -$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."] = "Delegados podem administrar todos os aspectos desta conta/página exceto pelas configurações básicas da conta. Por favor, não delegue sua conta pessoal para alguém que você não confie completamente."; -$a->strings["Existing Page Managers"] = "Atuais administradores da página"; -$a->strings["Existing Page Delegates"] = "Atuais delegados da página"; -$a->strings["Potential Delegates"] = "Potenciais delegados"; -$a->strings["Remove"] = "Remover"; -$a->strings["Add"] = "Adicionar"; -$a->strings["No entries."] = "Sem entradas."; -$a->strings["Public access denied."] = "Acesso público negado."; -$a->strings["Gender: "] = "Gênero: "; -$a->strings["Finding:"] = "Pesquisando:"; -$a->strings["next page"] = "próxima página"; -$a->strings["previous page"] = "página anterior"; -$a->strings["No entries (some entries may be hidden)."] = "Nenhuma entrada (algumas entradas podem estar escondidas)."; -$a->strings["Status: "] = "Status:"; -$a->strings["Sexual Preference: "] = "Preferência sexual:"; -$a->strings["Homepage: "] = "Website:"; -$a->strings["Hometown: "] = "Cidade natal:"; -$a->strings["About: "] = "Sobre:"; -$a->strings["Keywords: "] = "Palavras-chave:"; $a->strings["This site is not a directory server"] = "Este site não é um servidor de diretório"; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Encontramos um problema ao entrar com a OpenID fornecida. Por favor, verifique se digitou corretamente a ID."; +$a->strings["The error message was:"] = "A mensagem de erro foi:"; +$a->strings["Authentication failed."] = "A autenticação falhou."; +$a->strings["Remote Authentication"] = "Autenticação remota"; +$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Entre o endereço do seu canal (e.g. canal@exemplo.com)"; +$a->strings["Authenticate"] = "Autenticar"; +$a->strings["Item not available."] = "O item não está disponível."; +$a->strings["Item is not editable"] = "O item não está editável"; +$a->strings["Delete item?"] = "Deletar item?"; $a->strings["Name is required"] = "O nome é obrigatório"; $a->strings["Key and Secret are required"] = "A chave e o segredo são obrigatórios"; -$a->strings["Update"] = "Atualizar"; $a->strings["Passwords do not match. Password unchanged."] = "As senhas não correspondem. A senha não foi modificada."; $a->strings["Empty passwords are not allowed. Password unchanged."] = "Não é permitido uma senha em branco. A senha não foi modificada."; $a->strings["Password changed."] = "A senha foi modificada."; @@ -1275,6 +1113,7 @@ $a->strings["Protected email address. Cannot change to that email."] = "Endereç $a->strings["System failure storing new email. Please try again."] = "Falha do sistema ao armazenar novo e-mail. Por favor, tente novamente."; $a->strings["Settings updated."] = "As configurações foram atualizadas."; $a->strings["Add application"] = "Adicionar aplicação"; +$a->strings["Name"] = "Nome"; $a->strings["Name of application"] = "Nome da aplicação"; $a->strings["Consumer Key"] = "Chave de consumidor"; $a->strings["Automatically generated - change if desired. Max length 20"] = "Gerado automaticamente - troque se desejável. Comprimento máximo 20"; @@ -1302,6 +1141,7 @@ $a->strings["Off"] = "Desligado"; $a->strings["On"] = "Ligado"; $a->strings["Additional Features"] = "Recursos adicionais"; $a->strings["Connector Settings"] = "Configurações do conector"; +$a->strings["No special theme for mobile devices"] = "Sem tema especial para aparelhos móveis"; $a->strings["Display Settings"] = "Configurações de exibição"; $a->strings["Display Theme:"] = "Tema do perfil:"; $a->strings["Mobile Theme:"] = "Tema móvel:"; @@ -1447,36 +1287,6 @@ $a->strings["The database configuration file \".htconfig.php\" could not be writ $a->strings["Errors encountered creating database tables."] = "Foram encontrados erros durante a criação das tabelas do banco de dados."; $a->strings["

    What next

    "] = "

    Próximos passos

    "; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o coletor."; -$a->strings["Item not found"] = "O item não foi encontrado"; -$a->strings["Edit Block"] = "Editar bloco"; -$a->strings["Delete block?"] = "Deletar bloco?"; -$a->strings["Insert YouTube video"] = "Inserir vídeo do YouTube"; -$a->strings["Insert Vorbis [.ogg] video"] = "Inserir vídeo Vorbis (.ogg)"; -$a->strings["Insert Vorbis [.ogg] audio"] = "Inserir áudio Vorbis (.ogg)"; -$a->strings["Delete Block"] = "Deletar bloco"; -$a->strings["Layout updated."] = "Layout atualizado."; -$a->strings["Edit System Page Description"] = "Editar descrição de página do sistema"; -$a->strings["Layout not found."] = "Layout não encontrado."; -$a->strings["Module Name:"] = "Nome do módulo:"; -$a->strings["Layout Help"] = "Ajuda de layout"; -$a->strings["Edit Layout"] = "Editar layout"; -$a->strings["Delete layout?"] = "Deletar layout?"; -$a->strings["Delete Layout"] = "Deletar layout"; -$a->strings["Item is not editable"] = "O item não está editável"; -$a->strings["Delete item?"] = "Deletar item?"; -$a->strings["Edit Webpage"] = "Editar página web"; -$a->strings["Delete webpage?"] = "Deletar página web?"; -$a->strings["Delete Webpage"] = "Deletar página web"; -$a->strings["Version %s"] = "Versão %s"; -$a->strings["Installed plugins/addons/apps:"] = "Plugins/complementos/aplicações instalados:"; -$a->strings["No installed plugins/addons/apps"] = "Nenhum plugin/complemento/aplicação instalado"; -$a->strings["Red"] = "Red"; -$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralised privacy enhanced websites."] = "Este é um hub da Red Matrix - uma rede global cooperativa de websites descentralizados com privacidade aprimorada."; -$a->strings["Running at web location"] = "Sendo executado no endereço web"; -$a->strings["Please visit GetZot.com to learn more about the Red Matrix."] = "Para aprender mais sobre a Red Matrix, visite GetZot.com."; -$a->strings["Bug reports and issues: please visit"] = "Relatos e acompanhamentos de erros podem ser encontrados em"; -$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Sugestões, elogios, etc - mande um e-mail para \"redmatrix\" arrôba librelist ponto com"; -$a->strings["Site Administrators"] = "Administradores do site"; $a->strings["Event title and start time are required."] = "O título do evento e a hora de início são obrigatórios."; $a->strings["l, F j"] = "l, F j"; $a->strings["Edit event"] = "Editar o evento"; @@ -1493,204 +1303,6 @@ $a->strings["Adjust for viewer timezone"] = "Ajustar para o fuso horário do vis $a->strings["Description:"] = "Descrição:"; $a->strings["Title:"] = "Título:"; $a->strings["Share this event"] = "Compartilhar este evento"; -$a->strings["Failed to create source. No channel selected."] = "Falha ao criar a fonte. Nenhum canal selecionado."; -$a->strings["Source created."] = "A fonte foi criada."; -$a->strings["Source updated."] = "A fonte foi atualizada."; -$a->strings["*"] = "*"; -$a->strings["Manage remote sources of content for your channel."] = "Administrar as fontes remotas de conteúdo para o seu canal."; -$a->strings["New Source"] = "Nova fonte"; -$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importar todo ou uma seleção do conteúdo do seguinte canal para este canal, e distribuí-lo de acordo com as configurações do seu canal."; -$a->strings["Only import content with these words (one per line)"] = "Importar apenas conteúd com estas palavras (uma por linha)"; -$a->strings["Leave blank to import all public content"] = "Deixe em branco para importar todo o conteúdo público"; -$a->strings["Channel Name"] = "Nome do canal"; -$a->strings["Source not found."] = "A fonte não foi encontrada."; -$a->strings["Edit Source"] = "Editar fonte"; -$a->strings["Delete Source"] = "Deletar fonte"; -$a->strings["Source removed"] = "A fonte foi removida."; -$a->strings["Unable to remove source."] = "Não foi possível remover a fonte."; -$a->strings["- select -"] = "- selecionar -"; -$a->strings["Permission Denied."] = "Permissão negada."; -$a->strings["File not found."] = "O arquivo não foi encontrado."; -$a->strings["Edit file permissions"] = "Editar permissões do arquivo"; -$a->strings["Set/edit permissions"] = "Definir/editar permissões"; -$a->strings["Include all files and sub folders"] = "Incluir todos os arquivos e subpastas"; -$a->strings["Return to file list"] = "Retornar à lista de arquivos"; -$a->strings["Copy/paste this code to attach file to a post"] = "Copiar/colar este código para anexar um arquivo a uma publicação"; -$a->strings["Copy/paste this URL to link file from a web page"] = "Copiar/colar este URL para linkar para o arquivo em uma página web"; -$a->strings["Download"] = "Baixar"; -$a->strings["Used: "] = "Utilizado:"; -$a->strings["[directory]"] = "[diretório]"; -$a->strings["Limit: "] = "Limite:"; -$a->strings["Channel added."] = "Canal adicionado."; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está acompanhando %3\$s de %2\$s"; -$a->strings["Contact not found."] = "O contato não foi encontrado."; -$a->strings["Friend suggestion sent."] = "Sugestão de amizade enviada."; -$a->strings["Suggest Friends"] = "Sugerir amigos"; -$a->strings["Suggest a friend for %s"] = "Sugerir um amigo para %s"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nenhuma sugestão disponível. Se este site é novo, por favor tente novamente em 24 horas."; -$a->strings["Collection created."] = "A coleção foi criada."; -$a->strings["Could not create collection."] = "Não foi possível criar a coleção."; -$a->strings["Collection updated."] = "Coleção atualizada"; -$a->strings["Create a collection of channels."] = "Criar uma coleção de canais."; -$a->strings["Collection Name: "] = "Nome da coleção:"; -$a->strings["Members are visible to other channels"] = "Membros são visíveis para outros canais"; -$a->strings["Collection removed."] = "Coleção removida."; -$a->strings["Unable to remove collection."] = "Não foi possível remover a coleção."; -$a->strings["Collection Editor"] = "Editor de coleção"; -$a->strings["Members"] = "Membros"; -$a->strings["All Connected Channels"] = "Todas os canais conectados"; -$a->strings["Click on a channel to add or remove."] = "Clique em um canal para adicionar ou remover."; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s etiquetou %3\$s de %2\$s com %4\$s"; -$a->strings["Help:"] = "Ajuda:"; -$a->strings["Not Found"] = "Não encontrada"; -$a->strings["Tag removed"] = "A etiqueta foi removida"; -$a->strings["Remove Item Tag"] = "Remover a etiqueta de item"; -$a->strings["Select a tag to remove: "] = "Selecione uma etiqueta para remover: "; -$a->strings["Welcome to %s"] = "Bem-vindo(a) a %s"; -$a->strings["Thing updated"] = "A coisa foi atualizada"; -$a->strings["Object store: failed"] = "Armazenamento do objeto: falhou"; -$a->strings["Thing added"] = "A coisa foi adicionada"; -$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -$a->strings["Show Thing"] = "Exibir coisa"; -$a->strings["item not found."] = "o item não foi encontrado"; -$a->strings["Edit Thing"] = "Editar coisa"; -$a->strings["Select a profile"] = "Selecione um perfil"; -$a->strings["Select a category of stuff. e.g. I ______ something"] = "Escolha uma categoria de coisas. e.g. Eu ______ algo"; -$a->strings["Post an activity"] = "Publique uma atividade"; -$a->strings["Only sends to viewers of the applicable profile"] = "Envia apenas para a audiência do perfil aplicável"; -$a->strings["Name of thing e.g. something"] = "Nome da coisa e.g. coisinha"; -$a->strings["URL of thing (optional)"] = "URL da coisa (opcional)"; -$a->strings["URL for photo of thing (optional)"] = "URL para foto da coisa (opcional)"; -$a->strings["Add Thing to your Profile"] = "Adicionar a coisa ao seu perfil"; -$a->strings["Nothing to import."] = "Nada a importar."; -$a->strings["Unable to download data from old server"] = "Não foi possível descarregar os dados do servidor antigo"; -$a->strings["Imported file is empty."] = "O arquivo importado está vazio."; -$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Não foi possível criar um identificador de canal duplicado neste sistema. A importação falhou."; -$a->strings["Channel clone failed. Import failed."] = "Clonagem do canal falhou. A importação falhou."; -$a->strings["Cloned channel not found. Import failed."] = "Canal a clonar não encontrado. A importação falhou."; -$a->strings["Import completed."] = "A importação foi completada."; -$a->strings["You must be logged in to use this feature."] = "Você precisa estar autenticado para usar este recurso."; -$a->strings["Import Channel"] = "Importar canal"; -$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."] = "Use este formulário para importar um canal existente de um servidor/hub diferente. Você pode obter a identidade do canal do servidor/hub antigo pela rede, ou fornecer um arquivo de exportação. Somente a identidade e as conexões/relacionamentos serão importados. Importação de conteúdos ainda não está disponível."; -$a->strings["File to Upload"] = "Arquivo a carregar"; -$a->strings["Or provide the old server/hub details"] = "Ou forneça os detalhes do antigo servidor/hub"; -$a->strings["Your old identity address (xyz@example.com)"] = "O endereço da sua velha identidade (xyz@exemplo.com)"; -$a->strings["Your old login email address"] = "O endereço de e-mail da sua antiga conta"; -$a->strings["Your old login password"] = "A senha dua sua antiga conta"; -$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."] = "Para qualquer das opções, por favor escolha se deseja fazer deste hub seu novo endereço primário, ou se o velho local deve continuar com esse papel. Você será capaz de publicar a partir de ambos os locais, mas somente um pode estar designado como local primário para arquivos, fotos e mídia."; -$a->strings["Make this hub my primary location"] = "Faça deste hub meu local primário"; -$a->strings["Total invitation limit exceeded."] = "Foi excedido o número total de convites."; -$a->strings["%s : Not a valid email address."] = "%s : Não é um endereço de e-mail válido."; -$a->strings["Please join us on Red"] = "Por favor, una-se a nós na Red"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Você excedeu o limite de convites. Por favor, entre em contato com o administrador do site."; -$a->strings["%s : Message delivery failed."] = "%s : Não foi possível enviar a mensagem."; -$a->strings["%d message sent."] = array( - 0 => "%d mensagem enviada.", - 1 => "%d mensagens enviadas.", -); -$a->strings["You have no more invitations available"] = "Você não possui mais convites disponíveis"; -$a->strings["Send invitations"] = "Enviar convites."; -$a->strings["Enter email addresses, one per line:"] = "Digite os endereços de e-mail, um por linha:"; -$a->strings["Your message:"] = "Sua mensagem:"; -$a->strings["You are cordially invited to join me and some other close friends on the Red Matrix - a revolutionary new decentralised communication and information tool."] = "Você está convidado a juntar-se a mim e alguns outros amigos próximos na Red Matrix - uma revolucionária nova ferramenta para comunicação e informação descentralizada."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Você deve informar este código de convite: \$invite_code"; -$a->strings["Please visit my channel at"] = "Por favor, visite o meu canal em"; -$a->strings["Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:"] = "Após você se registrar (em qualquer site da Red Matrix - eles são todos interconectados!), peço que conecte-se comigo usando o endereço do meu canal:"; -$a->strings["Click the [Register] link on the following page to join."] = "Clique no link [Registrar] na seguinte página para participar."; -$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"] = "Para maiores informações sobre o Projeto Red Matrix e porque ele tem potencial para mudar a Internet como a conhecemos, por favor visite: http://getzot.com"; -$a->strings["Unable to locate original post."] = "Não foi possível localizar a publicação original."; -$a->strings["Empty post discarded."] = "A publicação em branco foi descartada."; -$a->strings["Executable content type not permitted to this channel."] = "Conteúdo de tipo executável não permitido para este canal."; -$a->strings["System error. Post not saved."] = "Erro no sistema. A publicação não foi salva."; -$a->strings["You have reached your limit of %1$.0f top level posts."] = "Você atingiu o seu limite de %1$.0f publicações de novos tópicos."; -$a->strings["You have reached your limit of %1$.0f webpages."] = "Você atingiu o seu limite de %1$.0f páginas web."; -$a->strings["[Embedded content - reload page to view]"] = "[Conteúdo incorporado - recarregue a página para ver]"; -$a->strings["Help with this feature"] = "Ajuda com este recurso"; -$a->strings["Layout Name"] = "Nome do layout"; -$a->strings["Remote privacy information not available."] = "Não existe informação disponível sobre a privacidade remota."; -$a->strings["Visible to:"] = "Visível para:"; -$a->strings["No connections."] = "Nenhuma conexão."; -$a->strings["Visit %s's profile [%s]"] = "Ver o perfil de %s [%s]"; -$a->strings["View Connnections"] = "Ver conexões"; -$a->strings["No valid account found."] = "Não foi encontrada uma conta válida."; -$a->strings["Password reset request issued. Check your email."] = "A solicitação de restauração de senha foi encaminhada. Verifique seu e-mail."; -$a->strings["Site Member (%s)"] = "Membro do site (%s)"; -$a->strings["Password reset requested at %s"] = "Foi feita uma solicitação de restauração de senha em %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi restaurada."; -$a->strings["Password Reset"] = "Reiniciar a senha"; -$a->strings["Your password has been reset as requested."] = "Sua senha foi restaurada, conforme solicitado."; -$a->strings["Your new password is"] = "Sua nova senha é"; -$a->strings["Save or copy your new password - and then"] = "Salve ou copie a sua nova senha e, então"; -$a->strings["click here to login"] = "clique aqui para entrar"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Sua senha pode ser alterada na página de Configurações após você entrar em sua conta."; -$a->strings["Your password has changed at %s"] = "Sua senha foi modificada em %s"; -$a->strings["Forgot your Password?"] = "Esqueceu a sua senha?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Digite o seu endereço de e-mail e clique em 'Restaurar' para prosseguir com a restauração da sua senha. Após isso, verifique seu e-mail para mais instruções."; -$a->strings["Email Address"] = "Endereço de e-mail"; -$a->strings["Reset"] = "Restaurar"; -$a->strings["Hub not found."] = "O hub não foi encontrado."; -$a->strings["Total votes"] = "Votos totais"; -$a->strings["Average Rating"] = "Média das avaliações"; -$a->strings["Unable to lookup recipient."] = "Não foi possível encontrar o destinatário."; -$a->strings["Unable to communicate with requested channel."] = "Não foi possível comunicar com o canal solicitado."; -$a->strings["Cannot verify requested channel."] = "Não foi possível verificar o canal requisitado."; -$a->strings["Selected channel has private message restrictions. Send failed."] = "O canal solicitado tem restrições a mensagens privadas. Falha no envio."; -$a->strings["Messages"] = "Mensagens"; -$a->strings["Message deleted."] = "A mensagem foi excluída."; -$a->strings["Message recalled."] = "Mensagem retirada."; -$a->strings["Send Private Message"] = "Enviar mensagem privada"; -$a->strings["To:"] = "Para:"; -$a->strings["Subject:"] = "Assunto:"; -$a->strings["Message not found."] = "Mensagem não encontrada."; -$a->strings["Delete message"] = "Excluir a mensagem"; -$a->strings["Recall message"] = "Retirar mensagem"; -$a->strings["Message has been recalled."] = "A mensagem foi retirada."; -$a->strings["Private Conversation"] = "Conversa privada"; -$a->strings["Delete conversation"] = "Excluir conversa"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Comunicação segura indisponível. Você talvez consiga responder pela página de perfil do remetente."; -$a->strings["Send Reply"] = "Enviar resposta"; -$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Você criou %1$.0f de %2$.0f canais permitidos."; -$a->strings["Create a new channel"] = "Criar um novo canal"; -$a->strings["Channel Manager"] = "Administrador do canal"; -$a->strings["Current Channel"] = "Canal atual"; -$a->strings["Attach to one of your channels by selecting it."] = "Selecione um dos seus canais para utilizá-lo."; -$a->strings["Default Channel"] = "Canal padrão"; -$a->strings["Make Default"] = "Tornar padrão"; -$a->strings["Wall Photos"] = "Fotos do mural"; -$a->strings["Profile Match"] = "Correspondência de perfil"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nenhuma palavra-chave para combinar. Por favor, adicione palavras-chave ao seu perfil padrão."; -$a->strings["is interested in:"] = "se interessa por:"; -$a->strings["No matches"] = "Nenhuma correspondência"; -$a->strings["Menu updated."] = "Menu atualizado."; -$a->strings["Unable to update menu."] = "Não foi possível atualizar o menu."; -$a->strings["Menu created."] = "O menu foi criado."; -$a->strings["Unable to create menu."] = "Não foi possível criar o menu."; -$a->strings["Manage Menus"] = "Administrar menus"; -$a->strings["Drop"] = "Descartar"; -$a->strings["Create a new menu"] = "Criar um novo menu"; -$a->strings["Delete this menu"] = "Deletar este menu"; -$a->strings["Edit menu contents"] = "Editar os conteúdos do menu"; -$a->strings["Edit this menu"] = "Editar este menu"; -$a->strings["New Menu"] = "Novo menu"; -$a->strings["Menu name"] = "Nome do menu"; -$a->strings["Must be unique, only seen by you"] = "Deve ser único, exibido somente para você"; -$a->strings["Menu title"] = "Título do menu"; -$a->strings["Menu title as seen by others"] = "Título do menu quando visto por outros"; -$a->strings["Allow bookmarks"] = "Habilitar links guardados"; -$a->strings["Menu may be used to store saved bookmarks"] = "O menu pode ser utilizado para armazenar links guardados"; -$a->strings["Menu deleted."] = "Menu deletado."; -$a->strings["Menu could not be deleted."] = "Não foi possível deletar o menu."; -$a->strings["Edit Menu"] = "Editar menu"; -$a->strings["Add or remove entries to this menu"] = "Adicionar ou remover entradas deste menu"; -$a->strings["Conversation removed."] = "A conversa foi removida."; -$a->strings["No messages."] = "Nenhuma mensagem."; -$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -$a->strings["Add a Channel"] = "Adicionar um canal"; -$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."] = "Um canal é uma coleção sua de páginas relacionadas. Um canal pode ser usado para um perfil de rede social, um blog, grupos de conversação e fóruns, páginas de celebridades, e muito mais. Você pode criar tantos canais quanto seu provedor de serviço permita."; -$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Exemplos: \"Beto Salinas\", \"Elis e seus Cavalos\", \"Futebol\", \"Grupo de aviadores\""; -$a->strings["Choose a short nickname"] = "Escolha um apelido curto"; -$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Seu apelido será usado para criar um endereço para o canal de fácil memorização (como um endereço de email), que você poderá compartilhar com outros."; -$a->strings["Or import an existing channel from another location"] = "Ou importe um canal existente de outro local"; $a->strings["Page owner information could not be retrieved."] = "As informações do dono da pagina não puderam ser obtidas."; $a->strings["Album not found."] = "O álbum não foi encontrado."; $a->strings["Delete Album"] = "Excluir o álbum"; @@ -1722,52 +1334,431 @@ $a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #cam $a->strings["In This Photo:"] = "Nesta foto:"; $a->strings["View Album"] = "Ver álbum"; $a->strings["Recent Photos"] = "Fotos recentes"; -$a->strings["Invalid request identifier."] = "Identificador de solicitação inválido"; -$a->strings["Discard"] = "Descartar"; -$a->strings["No more system notifications."] = "Sem novas notificações do sistema."; -$a->strings["System Notifications"] = "Notificações do sistema"; -$a->strings["Unable to find your hub."] = "Não foi possível localizar seu hub."; -$a->strings["Post successful."] = "Publicado com sucesso."; -$a->strings["invalid target signature"] = "assinatura do destino inválida"; +$a->strings["Help:"] = "Ajuda:"; +$a->strings["Not Found"] = "Não encontrada"; +$a->strings["sent you a private message"] = "lhe enviou uma mensagem privada"; +$a->strings["added your channel"] = "adicionou seu canal"; +$a->strings["posted an event"] = "publicou um evento"; +$a->strings["No valid account found."] = "Não foi encontrada uma conta válida."; +$a->strings["Password reset request issued. Check your email."] = "A solicitação de restauração de senha foi encaminhada. Verifique seu e-mail."; +$a->strings["Site Member (%s)"] = "Membro do site (%s)"; +$a->strings["Password reset requested at %s"] = "Foi feita uma solicitação de restauração de senha em %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi restaurada."; +$a->strings["Password Reset"] = "Reiniciar a senha"; +$a->strings["Your password has been reset as requested."] = "Sua senha foi restaurada, conforme solicitado."; +$a->strings["Your new password is"] = "Sua nova senha é"; +$a->strings["Save or copy your new password - and then"] = "Salve ou copie a sua nova senha e, então"; +$a->strings["click here to login"] = "clique aqui para entrar"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Sua senha pode ser alterada na página de Configurações após você entrar em sua conta."; +$a->strings["Your password has changed at %s"] = "Sua senha foi modificada em %s"; +$a->strings["Forgot your Password?"] = "Esqueceu a sua senha?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Digite o seu endereço de e-mail e clique em 'Restaurar' para prosseguir com a restauração da sua senha. Após isso, verifique seu e-mail para mais instruções."; +$a->strings["Email Address"] = "Endereço de e-mail"; +$a->strings["Reset"] = "Restaurar"; +$a->strings["Remove This Channel"] = "Remover este canal"; +$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Isso irá remover completamente este canal da rede. Uma vez que seja feito não será possível recuperá-lo."; +$a->strings["Please enter your password for verification:"] = "Por favor, digite a sua senha para verificação:"; +$a->strings["Remove this channel and all its clones from the network"] = "Remover este canal e todos os seus clones da rede"; +$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Por padrão, apenas a instância do canal localizada neste hub será removida da rede"; +$a->strings["Remove Channel"] = "Remover canal"; +$a->strings["No potential page delegates located."] = "Nenhum potencial delegado para páginas localizado."; +$a->strings["Delegate Page Management"] = "Delegar administração de página"; +$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."] = "Delegados podem administrar todos os aspectos desta conta/página exceto pelas configurações básicas da conta. Por favor, não delegue sua conta pessoal para alguém que você não confie completamente."; +$a->strings["Existing Page Managers"] = "Atuais administradores da página"; +$a->strings["Existing Page Delegates"] = "Atuais delegados da página"; +$a->strings["Potential Delegates"] = "Potenciais delegados"; +$a->strings["Add"] = "Adicionar"; +$a->strings["No entries."] = "Sem entradas."; +$a->strings["Help with this feature"] = "Ajuda com este recurso"; +$a->strings["Layout Name"] = "Nome do layout"; +$a->strings["Blocked"] = "Bloqueado"; +$a->strings["Ignored"] = "Ignorado"; +$a->strings["Hidden"] = "Oculto"; +$a->strings["Archived"] = "Arquivado"; +$a->strings["All"] = "Todos"; +$a->strings["Unconnected"] = "Não conectado"; +$a->strings["Suggest new connections"] = "Sugerir novas conexões"; +$a->strings["New Connections"] = "Novas conexões"; +$a->strings["Show pending (new) connections"] = "Exibir conexões pendentes (novas)"; +$a->strings["Show all connections"] = "Exibir todas as conexões"; +$a->strings["Unblocked"] = "Não bloqueado"; +$a->strings["Only show unblocked connections"] = "Exibir apenas conexões não bloqueadas"; +$a->strings["Only show blocked connections"] = "Exibir apenas conexões bloqueadas"; +$a->strings["Only show ignored connections"] = "Exibir apenas conexões ignoradas"; +$a->strings["Only show archived connections"] = "Exibir apenas conexões arquivadas"; +$a->strings["Only show hidden connections"] = "Exibir apenas conexões ocultas"; +$a->strings["Only show one-way connections"] = "Exibir apenas conexões de mão única"; +$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +$a->strings["Edit contact"] = "Editar o contato"; +$a->strings["Search your connections"] = "Pesquisar em suas conexões"; +$a->strings["Finding: "] = "Pesquisando: "; +$a->strings["Nothing to import."] = "Nada a importar."; +$a->strings["Unable to download data from old server"] = "Não foi possível descarregar os dados do servidor antigo"; +$a->strings["Imported file is empty."] = "O arquivo importado está vazio."; +$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Não foi possível criar um identificador de canal duplicado neste sistema. A importação falhou."; +$a->strings["Channel clone failed. Import failed."] = "Clonagem do canal falhou. A importação falhou."; +$a->strings["Cloned channel not found. Import failed."] = "Canal a clonar não encontrado. A importação falhou."; +$a->strings["Import completed."] = "A importação foi completada."; +$a->strings["You must be logged in to use this feature."] = "Você precisa estar autenticado para usar este recurso."; +$a->strings["Import Channel"] = "Importar canal"; +$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."] = "Use este formulário para importar um canal existente de um servidor/hub diferente. Você pode obter a identidade do canal do servidor/hub antigo pela rede, ou fornecer um arquivo de exportação. Somente a identidade e as conexões/relacionamentos serão importados. Importação de conteúdos ainda não está disponível."; +$a->strings["File to Upload"] = "Arquivo a carregar"; +$a->strings["Or provide the old server/hub details"] = "Ou forneça os detalhes do antigo servidor/hub"; +$a->strings["Your old identity address (xyz@example.com)"] = "O endereço da sua velha identidade (xyz@exemplo.com)"; +$a->strings["Your old login email address"] = "O endereço de e-mail da sua antiga conta"; +$a->strings["Your old login password"] = "A senha dua sua antiga conta"; +$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."] = "Para qualquer das opções, por favor escolha se deseja fazer deste hub seu novo endereço primário, ou se o velho local deve continuar com esse papel. Você será capaz de publicar a partir de ambos os locais, mas somente um pode estar designado como local primário para arquivos, fotos e mídia."; +$a->strings["Make this hub my primary location"] = "Faça deste hub meu local primário"; +$a->strings["Mood"] = "Humor"; +$a->strings["Set your current mood and tell your friends"] = "Marque seu humor atual e compartilhe com seus amigos"; +$a->strings["Room not found"] = "Sala não encontrada"; +$a->strings["Leave Room"] = "Sair da sala"; +$a->strings["Delete This Room"] = "Deletar esta sala"; +$a->strings["I am away right now"] = "Eu estou ausente no momento"; +$a->strings["I am online"] = "Eu estou online"; +$a->strings["Bookmark this room"] = "Guarde esta sala"; +$a->strings["New Chatroom"] = "Nova sala de bate-papo"; +$a->strings["Chatroom Name"] = "Nome da sala de bate-papo"; +$a->strings["%1\$s's Chatrooms"] = "Salas de bate-papo de %1\$s"; +$a->strings["Edit Block"] = "Editar bloco"; +$a->strings["Delete block?"] = "Deletar bloco?"; +$a->strings["Delete Block"] = "Deletar bloco"; +$a->strings["Profile Match"] = "Correspondência de perfil"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nenhuma palavra-chave para combinar. Por favor, adicione palavras-chave ao seu perfil padrão."; +$a->strings["is interested in:"] = "se interessa por:"; +$a->strings["No matches"] = "Nenhuma correspondência"; +$a->strings["Away"] = "Ausente"; +$a->strings["Online"] = "Online"; +$a->strings["Edit Webpage"] = "Editar página web"; +$a->strings["Delete webpage?"] = "Deletar página web?"; +$a->strings["Delete Webpage"] = "Deletar página web"; +$a->strings["Profile not found."] = "O perfil não foi encontrado."; +$a->strings["Profile deleted."] = "O perfil foi excluído."; +$a->strings["Profile-"] = "Perfil-"; +$a->strings["New profile created."] = "O novo perfil foi criado."; +$a->strings["Profile unavailable to clone."] = "O perfil não está disponível para clonagem."; +$a->strings["Profile Name is required."] = "É obrigatório informar o nome do perfil."; +$a->strings["Marital Status"] = "Estado civil"; +$a->strings["Romantic Partner"] = "Parceiro/a romântico/a"; +$a->strings["Likes"] = "Gosta de"; +$a->strings["Dislikes"] = "Não gosta de"; +$a->strings["Work/Employment"] = "Trabalho/Emprego"; +$a->strings["Religion"] = "Religião"; +$a->strings["Political Views"] = "Posição política"; +$a->strings["Gender"] = "Gênero"; +$a->strings["Sexual Preference"] = "Preferência sexual"; +$a->strings["Homepage"] = "Página web"; +$a->strings["Interests"] = "Interesses"; +$a->strings["Address"] = "Endereço"; +$a->strings["Profile updated."] = "O perfil foi atualizado."; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Esconder sua lista de contatos/amigos dos visitantes no seu perfil?"; +$a->strings["Edit Profile Details"] = "Editar os detalhes do perfil"; +$a->strings["View this profile"] = "Ver este perfil"; +$a->strings["Change Profile Photo"] = "Mudar a foto do perfil"; +$a->strings["Create a new profile using these settings"] = "Criar um novo perfil usando estas configurações"; +$a->strings["Clone this profile"] = "Clonar este perfil"; +$a->strings["Delete this profile"] = "Excluir este perfil"; +$a->strings["Profile Name:"] = "Nome do perfil:"; +$a->strings["Your Full Name:"] = "Seu nome completo:"; +$a->strings["Title/Description:"] = "Título/Descrição:"; +$a->strings["Your Gender:"] = "Seu gênero:"; +$a->strings["Birthday (%s):"] = "Aniversário (%s):"; +$a->strings["Street Address:"] = "Endereço:"; +$a->strings["Locality/City:"] = "Localidade/Cidade:"; +$a->strings["Postal/Zip Code:"] = "CEP:"; +$a->strings["Country:"] = "País:"; +$a->strings["Region/State:"] = "Região/Estado:"; +$a->strings[" Marital Status:"] = "Estado civil :"; +$a->strings["Who: (if applicable)"] = "Quem: (se aplicável)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com"; +$a->strings["Since [date]:"] = "Desde [data]:"; +$a->strings["Homepage URL:"] = "Endereço do website:"; +$a->strings["Religious Views:"] = "Orientação religiosa:"; +$a->strings["Keywords:"] = "Palavras-chave:"; +$a->strings["Example: fishing photography software"] = "Exemplo: pesca fotografia software"; +$a->strings["Used in directory listings"] = "Usado em listas de diretório"; +$a->strings["Tell us about yourself..."] = "Fale um pouco sobre você..."; +$a->strings["Hobbies/Interests"] = "Hobbies/Interesses"; +$a->strings["Contact information and Social Networks"] = "Informações de contato e redes sociais"; +$a->strings["My other channels"] = "Meus outros canais"; +$a->strings["Musical interests"] = "Interesses musicais"; +$a->strings["Books, literature"] = "Livros, literatura"; +$a->strings["Television"] = "Televisão"; +$a->strings["Film/dance/culture/entertainment"] = "Filme/dança/cultura/entretenimento"; +$a->strings["Love/romance"] = "Amor/romance"; +$a->strings["Work/employment"] = "Trabalho/emprego"; +$a->strings["School/education"] = "Escola/educação"; +$a->strings["This is your public profile.
    It may be visible to anybody using the internet."] = "Este é o seu perfil público.
    Ele pode estar visível para qualquer um que acesse a Internet."; +$a->strings["Edit/Manage Profiles"] = "Editar/Administrar perfis"; +$a->strings["Add profile things"] = "Adicionar coisas ao perfil"; +$a->strings["Include desirable objects in your profile"] = "Inclua objetos desejáveis no seu perfil"; +$a->strings["Menu updated."] = "Menu atualizado."; +$a->strings["Unable to update menu."] = "Não foi possível atualizar o menu."; +$a->strings["Menu created."] = "O menu foi criado."; +$a->strings["Unable to create menu."] = "Não foi possível criar o menu."; +$a->strings["Manage Menus"] = "Administrar menus"; +$a->strings["Drop"] = "Descartar"; +$a->strings["Create a new menu"] = "Criar um novo menu"; +$a->strings["Delete this menu"] = "Deletar este menu"; +$a->strings["Edit menu contents"] = "Editar os conteúdos do menu"; +$a->strings["Edit this menu"] = "Editar este menu"; +$a->strings["New Menu"] = "Novo menu"; +$a->strings["Menu name"] = "Nome do menu"; +$a->strings["Must be unique, only seen by you"] = "Deve ser único, exibido somente para você"; +$a->strings["Menu title"] = "Título do menu"; +$a->strings["Menu title as seen by others"] = "Título do menu quando visto por outros"; +$a->strings["Allow bookmarks"] = "Habilitar links guardados"; +$a->strings["Menu may be used to store saved bookmarks"] = "O menu pode ser utilizado para armazenar links guardados"; +$a->strings["Menu deleted."] = "Menu deletado."; +$a->strings["Menu could not be deleted."] = "Não foi possível deletar o menu."; +$a->strings["Edit Menu"] = "Editar menu"; +$a->strings["Add or remove entries to this menu"] = "Adicionar ou remover entradas deste menu"; $a->strings["OpenID protocol error. No ID returned."] = "Erro do protocolo OpenID. Nenhuma ID retornada."; -$a->strings["Schema Default"] = "Padrão do esquema"; -$a->strings["Sans-Serif"] = "Sans-Serif"; -$a->strings["Monospace"] = "Monoespaçada"; +$a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"] = "Red Matrix - Visitantes: Usuário: {seu endereço de e-mail}, Senha: +++"; +$a->strings["Unable to lookup recipient."] = "Não foi possível encontrar o destinatário."; +$a->strings["Unable to communicate with requested channel."] = "Não foi possível comunicar com o canal solicitado."; +$a->strings["Cannot verify requested channel."] = "Não foi possível verificar o canal requisitado."; +$a->strings["Selected channel has private message restrictions. Send failed."] = "O canal solicitado tem restrições a mensagens privadas. Falha no envio."; +$a->strings["Message deleted."] = "A mensagem foi excluída."; +$a->strings["Message recalled."] = "Mensagem retirada."; +$a->strings["Send Private Message"] = "Enviar mensagem privada"; +$a->strings["To:"] = "Para:"; +$a->strings["Subject:"] = "Assunto:"; +$a->strings["Your message:"] = "Sua mensagem:"; +$a->strings["Message not found."] = "Mensagem não encontrada."; +$a->strings["Recall message"] = "Retirar mensagem"; +$a->strings["Message has been recalled."] = "A mensagem foi retirada."; +$a->strings["Private Conversation"] = "Conversa privada"; +$a->strings["Delete conversation"] = "Excluir conversa"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Comunicação segura indisponível. Você talvez consiga responder pela página de perfil do remetente."; +$a->strings["Send Reply"] = "Enviar resposta"; +$a->strings["App installed."] = "Aplicativo instalado"; +$a->strings["Malformed app."] = "Aplicativo malformado."; +$a->strings["Embed code"] = "Embarcar código"; +$a->strings["Create App"] = "Criar aplicativo"; +$a->strings["Name of app"] = "Nome do aplicativo"; +$a->strings["Location (URL) of app"] = "Endereço (URL) do aplicativo"; +$a->strings["Description"] = "Descrição"; +$a->strings["Photo icon URL"] = "URL da foto de ícone"; +$a->strings["80 x 80 pixels - optional"] = "80 x 80 pixels - opcional"; +$a->strings["Version ID"] = "ID da versão"; +$a->strings["Price of app"] = "Preço do aplicativo"; +$a->strings["Location (URL) to purchase app"] = "Endereço (URL) para comprar o aplicativo"; +$a->strings["Poke/Prod"] = "Cutucar/Espetar"; +$a->strings["poke, prod or do other things to somebody"] = "Cutucar, espetar ou fazer outras coisas a alguém"; +$a->strings["Recipient"] = "Destinatário"; +$a->strings["Choose what you wish to do to recipient"] = "Escolha o que você deseja fazer com seu alvo"; +$a->strings["Make this post private"] = "Torne esta publicação privada"; +$a->strings["No connections."] = "Nenhuma conexão."; +$a->strings["Visit %s's profile [%s]"] = "Ver o perfil de %s [%s]"; +$a->strings["View Connnections"] = "Ver conexões"; +$a->strings["Theme settings updated."] = "As configurações de tema foram atualizadas."; +$a->strings["Site"] = "Site"; +$a->strings["Accounts"] = "Contas"; +$a->strings["Channels"] = "Canais"; +$a->strings["Plugins"] = "Plugins"; +$a->strings["Themes"] = "Temas"; +$a->strings["Server"] = "Servidor"; +$a->strings["DB updates"] = "Atualizações do Banco de Dados"; +$a->strings["Logs"] = "Logs"; +$a->strings["Plugin Features"] = "Recursos dos plugins"; +$a->strings["User registrations waiting for confirmation"] = "Registros de usuário aguardando confirmação"; +$a->strings["Message queues"] = "Filas de mensagem"; +$a->strings["Administration"] = "Administração"; +$a->strings["Summary"] = "Resumo"; +$a->strings["Registered users"] = "Usuários registrados"; +$a->strings["Pending registrations"] = "Registros pendentes"; +$a->strings["Version"] = "Versão"; +$a->strings["Active plugins"] = "Plugins ativos"; +$a->strings["Site settings updated."] = "As configurações de site foram atualizadas."; +$a->strings["No special theme for accessibility"] = "Sem tema especial para acessibilidade"; +$a->strings["Yes - with approval"] = "Sim - pendente aprovação"; +$a->strings["My site is not a public server"] = "Meu site não é um servidor público"; +$a->strings["My site has paid access only"] = "Meu site oferece somente acesso pago"; +$a->strings["My site has free access only"] = "Meu site oferece somente acesso gratuito"; +$a->strings["My site offers free accounts with optional paid upgrades"] = "Meu site oferece contas gratuitas com recursos adicionais pagos"; +$a->strings["Registration"] = "Registro"; +$a->strings["File upload"] = "Carregamento de arquivos"; +$a->strings["Policies"] = "Políticas"; +$a->strings["Site name"] = "Nome do site"; +$a->strings["Banner/Logo"] = "Cartaz/Logo"; +$a->strings["Administrator Information"] = "Informações do Administrador"; +$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Informações de contato com administradores do site. Exibida na página siteinfo. BBCode pode ser usado aqui."; +$a->strings["System language"] = "Idioma do sistema"; +$a->strings["System theme"] = "Tema do sistema"; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema padrão do sistema - pode ser sobrescrito por perfis de usuário - mudar configurações do tema"; +$a->strings["Mobile system theme"] = "Tema do sistema móvel"; +$a->strings["Theme for mobile devices"] = "Tema para dispositivos móveis"; +$a->strings["Accessibility system theme"] = "Tema do sistema acessível"; +$a->strings["Accessibility theme"] = "Tema acessível"; +$a->strings["Channel to use for this website's static pages"] = "Canal a utilizar para as páginas estáticas desse website"; +$a->strings["Site Channel"] = "Canal do site"; +$a->strings["Maximum image size"] = "Tamanho máximo de imagens"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Tamanho máximo em bytes de imagens carregadas. O padrão é 0, significando sem limites."; +$a->strings["Does this site allow new member registration?"] = "Este site permite o registro de novos membros?"; +$a->strings["Which best describes the types of account offered by this hub?"] = "Qual descreve melhor os tipos de conta oferecidas por este hub?"; +$a->strings["Register text"] = "Texto de registro"; +$a->strings["Will be displayed prominently on the registration page."] = "Será exibido proeminentemente na página de registro."; +$a->strings["Accounts abandoned after x days"] = "Contas abandonadas após x dias"; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Não gastará recursos do sistema coletando de sites externos para contas abandonadas. Use 0 para sem limite de tempo."; +$a->strings["Allowed friend domains"] = "Domínios permitidos para amigos"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Lista, separada por vírgulas, de domínios permitidos para estabelecer amizades com este site. Wildcards são aceitas. Vazio para permitir qualquer domínio"; +$a->strings["Allowed email domains"] = "Domínios permitidos de e-mail"; +$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"] = "Lista, separada por vírgulas, de domínios permitidos em endereços de e-mail para registros nesse site. Wildcards são aceitas. Vazio para permitir qualquer domínio"; +$a->strings["Block public"] = "Bloquear público"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Marque para bloquear o acesso público a todas as páginas pessoais que seriam públicas, a não ser que se esteja autenticado."; +$a->strings["Force publish"] = "Forçar publicação"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Marque para forçar todos os perfis neste site a aparecerem listados no diretório do site."; +$a->strings["Disable discovery tab"] = "Desabilitar a aba \"Descubra\""; +$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Remove da visualização de rede a aba com conteúdos públicos obtidos de fontes escolhidas para esse site."; +$a->strings["No login on Homepage"] = "Sem formulário de autenticação na página inicial"; +$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Marque para esconder o formulário de autenticação da página inicial do seu site quando visitantes chegarem sem estar autenticados (e.g. quando você inclui os conteúdos da página inicial através do canal do site)."; +$a->strings["Proxy user"] = "Usuário do proxy"; +$a->strings["Proxy URL"] = "URL do proxy"; +$a->strings["Network timeout"] = "Timeout da rede"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valor em segundos. Use 0 para ilimitado (não recomendado)."; +$a->strings["Delivery interval"] = "Intervalo de entrega"; +$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."] = "Atrase os processos de entrega em segundo plano por este número de segundos para reduzir a carga do sistema. Recomendado: 4-5 para hosts compartilhados, 2-3 para servidores virtuais privados. 0-1 para grandes servidores dedicados."; +$a->strings["Poll interval"] = "Intervalo de coleta"; +$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Atrase os processos de coleta em segundo plano por este número de segundos para reduzir a carga do sistema. Se 0, use o intervalo de entrega."; +$a->strings["Maximum Load Average"] = "Carga média máxima"; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carga máxima do sistema antes de adiar processos de entrega e coleta - padrão 50."; +$a->strings["No server found"] = "Nenhum servidor foi encontrado"; +$a->strings["ID"] = "ID"; +$a->strings["for channel"] = "para o canal"; +$a->strings["on server"] = "no servidor"; +$a->strings["Status"] = "Status"; +$a->strings["Update has been marked successful"] = "A atualização foi designada bem sucedida"; +$a->strings["Executing %s failed. Check system logs."] = "Execução de %s falhou. Verifique os logs do sistema."; +$a->strings["Update %s was successfully applied."] = "A atualização %s foi aplicada com sucesso."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "A atualização %s não retornou um status. Situação incerta quando ao seu sucesso."; +$a->strings["Update function %s could not be found."] = "A função de atualização %s não foi encontrada."; +$a->strings["No failed updates."] = "Nenhuma falha nas atualizações."; +$a->strings["Failed Updates"] = "Falha nas atualizações"; +$a->strings["Mark success (if update was manually applied)"] = "Marque sucesso (se a atualização foi aplicada manualmente)"; +$a->strings["Attempt to execute this update step automatically"] = "Tente executar este passo da atualização automaticamente"; +$a->strings["%s user blocked/unblocked"] = array( + 0 => "%s usuário foi bloqueado/desbloqueado", + 1 => "%s usuários foram bloqueados/desbloqueados", +); +$a->strings["%s user deleted"] = array( + 0 => "%s usuário foi deletado", + 1 => "%s usuários foram deletados", +); +$a->strings["Account not found"] = "A conta não foi encontrada"; +$a->strings["User '%s' deleted"] = "O usuário/a '%s' foi deletado/a"; +$a->strings["User '%s' unblocked"] = "O usuário/a '%s' foi desbloqueado/a"; +$a->strings["User '%s' blocked"] = "O usuário/a '%s' foi bloqueado/a"; +$a->strings["Users"] = "Usuários"; +$a->strings["select all"] = "selecionar tudo"; +$a->strings["User registrations waiting for confirm"] = "Registros de usuário aguardando confirmação"; +$a->strings["Request date"] = "Data de requisição"; +$a->strings["No registrations."] = "Nenhum registro."; +$a->strings["Approve"] = "Aprovar"; +$a->strings["Deny"] = "Negar"; +$a->strings["Register date"] = "Data de registro"; +$a->strings["Last login"] = "Última autenticação"; +$a->strings["Expires"] = "Expira"; +$a->strings["Service Class"] = "Classe de serviço"; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Os usuários selecionados serão deletados!\\n\\nTudo o que esses usuários postaram neste site será permanentemente deletado!\\n\\nTem certeza?"; +$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?"] = "O/A usuário/a {0} será deletado/a!\\n\\nTudo o que esse/a usuário/a postou neste site será permanentemente deletado!\\n\\nTem certeza?"; +$a->strings["%s channel censored/uncensored"] = array( + 0 => "%s canal censurado/descensurado", + 1 => "%s canais censurados/descensurados", +); +$a->strings["%s channel deleted"] = array( + 0 => "%s canal deletado", + 1 => "%s canais deletados", +); +$a->strings["Channel not found"] = "Canal não encontrado"; +$a->strings["Channel '%s' deleted"] = "Canal '%s' deletado"; +$a->strings["Channel '%s' uncensored"] = "Canal '%s' não censurado"; +$a->strings["Channel '%s' censored"] = "Canal '%s' censurado"; +$a->strings["Censor"] = "Censurar"; +$a->strings["Uncensor"] = "Não censurar"; +$a->strings["UID"] = "UID"; +$a->strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Os canais selecionados serão deletados!\\n\\nTudo que foi postado nesses canais nesse site será permanentemente deletado!\\n\\nVocê tem certeza?"; +$a->strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "O canal {0} será deletado!\\n\\nTudo o que foi postado nesse canal nesse site será permanentemente deletado!\\n\\nVocê tem certeza?"; +$a->strings["Plugin %s disabled."] = "Plugin %s desabilitado."; +$a->strings["Plugin %s enabled."] = "Plugin %s habilitado."; +$a->strings["Disable"] = "Desabilitar"; +$a->strings["Enable"] = "Habilitar"; +$a->strings["Toggle"] = "Alternar"; +$a->strings["Author: "] = "Autor:"; +$a->strings["Maintainer: "] = "Mantenedor:"; +$a->strings["No themes found."] = "Nenhum tema foi encontrado."; +$a->strings["Screenshot"] = "Captura de tela"; +$a->strings["[Experimental]"] = "[Experimental]"; +$a->strings["[Unsupported]"] = "[Desassistido]"; +$a->strings["Log settings updated."] = "As configurações de log foram atualizadas."; +$a->strings["Clear"] = "Limpar"; +$a->strings["Debugging"] = "Depuração"; +$a->strings["Log file"] = "Arquivo de log"; +$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "É necessário que o servidor web possa escrever neste arquivo. Relativo ao diretório raiz da Red."; +$a->strings["Log level"] = "Nível do log"; +$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Número máximo de novos registros neste site excedido por hoje. Por favor, tente novamente amanhã."; +$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Por favor, indique a aceitação dos Termos de Serviço. Falha ao registrar."; +$a->strings["Passwords do not match."] = "Senhas não conferem."; +$a->strings["Registration successful. Please check your email for validation instructions."] = "O registro foi bem sucedido. Por favor, verifique seu e-mail para confirmar o registro."; +$a->strings["Your registration is pending approval by the site owner."] = "A aprovação do seu registro está pendente junto ao administrador do site."; +$a->strings["Your registration can not be processed."] = "Não foi possível processar o seu registro."; +$a->strings["Registration on this site/hub is by approval only."] = "O registro neste site/hub requer aprovação."; +$a->strings["Register at another affiliated site/hub"] = "Registre em um outro site/hub afiliado"; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este site excedeu o número máximo de registros de novas contas. Por favor, tente novamente amanhã."; +$a->strings["Terms of Service"] = "Termos de Serviço"; +$a->strings["I accept the %s for this website"] = "Eu aceito os %s deste website."; +$a->strings["I am over 13 years of age and accept the %s for this website"] = "Eu sou maior de 13 anos e aceito os %s deste website"; +$a->strings["Membership on this site is by invitation only."] = "Novas contas neste site se dão apenas por convite."; +$a->strings["Please enter your invitation code"] = "Por favor, digite o código do seu convite"; +$a->strings["Your email address"] = "Seu endereço de e-mail"; +$a->strings["Choose a password"] = "Escolha uma senha"; +$a->strings["Please re-enter your password"] = "Por favor, digite sua senha novamente"; +$a->strings["- select -"] = "- selecionar -"; +$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Você criou %1$.0f de %2$.0f canais permitidos."; +$a->strings["Create a new channel"] = "Criar um novo canal"; +$a->strings["Channel Manager"] = "Administrador do canal"; +$a->strings["Current Channel"] = "Canal atual"; +$a->strings["Attach to one of your channels by selecting it."] = "Selecione um dos seus canais para utilizá-lo."; +$a->strings["Default Channel"] = "Canal padrão"; +$a->strings["Make Default"] = "Tornar padrão"; +$a->strings["Total invitation limit exceeded."] = "Foi excedido o número total de convites."; +$a->strings["%s : Not a valid email address."] = "%s : Não é um endereço de e-mail válido."; +$a->strings["Please join us on Red"] = "Por favor, una-se a nós na Red"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Você excedeu o limite de convites. Por favor, entre em contato com o administrador do site."; +$a->strings["%s : Message delivery failed."] = "%s : Não foi possível enviar a mensagem."; +$a->strings["%d message sent."] = array( + 0 => "%d mensagem enviada.", + 1 => "%d mensagens enviadas.", +); +$a->strings["You have no more invitations available"] = "Você não possui mais convites disponíveis"; +$a->strings["Send invitations"] = "Enviar convites."; +$a->strings["Enter email addresses, one per line:"] = "Digite os endereços de e-mail, um por linha:"; +$a->strings["You are cordially invited to join me and some other close friends on the Red Matrix - a revolutionary new decentralised communication and information tool."] = "Você está convidado a juntar-se a mim e alguns outros amigos próximos na Red Matrix - uma revolucionária nova ferramenta para comunicação e informação descentralizada."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Você deve informar este código de convite: \$invite_code"; +$a->strings["Please visit my channel at"] = "Por favor, visite o meu canal em"; +$a->strings["Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:"] = "Após você se registrar (em qualquer site da Red Matrix - eles são todos interconectados!), peço que conecte-se comigo usando o endereço do meu canal:"; +$a->strings["Click the [Register] link on the following page to join."] = "Clique no link [Registrar] na seguinte página para participar."; +$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"] = "Para maiores informações sobre o Projeto Red Matrix e porque ele tem potencial para mudar a Internet como a conhecemos, por favor visite: http://getzot.com"; +$a->strings["Wall Photos"] = "Fotos do mural"; +$a->strings["No channel."] = "Nenhum canal."; +$a->strings["Common connections"] = "Conexões em comum"; +$a->strings["No connections in common."] = "Nenhuma conexão em comum."; +$a->strings["Please login."] = "Por favor, autentique-se."; +$a->strings["Select a bookmark folder"] = "Escolha uma pasta de links onde guardar"; +$a->strings["Save Bookmark"] = "Guardar link"; +$a->strings["URL of bookmark"] = "URL do link guardado"; +$a->strings["Or enter new bookmark folder name"] = "Ou digite o nome para uma nova pasta de links"; +$a->strings["Update %s failed. See error logs."] = "A atualização %s falhou. Veja os logs de erro."; +$a->strings["Update Error at %s"] = "Erro de atualização em %s"; +$a->strings["Create an account to access services and applications within the Red Matrix"] = "Crie uma conta para acessar serviços e aplicações na Red Matrix"; +$a->strings["Password"] = "Senha"; +$a->strings["Remember me"] = "Lembrar de mim"; +$a->strings["Forgot your password?"] = "Esqueceu a sua senha?"; +$a->strings["permission denied"] = "permissão negada"; +$a->strings["Got Zot?"] = "Já tem Zot?"; +$a->strings["toggle mobile"] = "alternar para interface móvel"; $a->strings["Theme settings"] = "Configurações de tema"; $a->strings["Set scheme"] = "Definir esquema"; -$a->strings["Set font-size for posts and comments"] = "Definir o tamanho da fonte para publicações e comentários"; -$a->strings["Set font face"] = "Definir a face da fonte"; -$a->strings["Set iconset"] = "Definir o conjunto de ícones"; -$a->strings["Set big shadow size, default 15px 15px 15px"] = "Definir o tamanho da sombra grande, padrão 15px 15px 15px"; -$a->strings["Set small shadow size, default 5px 5px 5px"] = "Definir o tamanho da sombra pequena, padrão 5px 5px 5px"; -$a->strings["Set shadow colour, default #000"] = "Definir a cor da sombra, padrão #000"; -$a->strings["Set radius size, default 5px"] = "Definir o tamanho do raio de curvatura, padrão 5px"; -$a->strings["Set line-height for posts and comments"] = "Definir a altura da linha para publicações e comentários"; -$a->strings["Set background image"] = "Definir a imagem do pano de fundo"; -$a->strings["Set background attachment"] = "Definir o anexo de pano de fundo"; -$a->strings["Set background colour"] = "Definir a cor do pano de fundo"; -$a->strings["Set section background image"] = "Definir a imagem de fundo de seção"; -$a->strings["Set section background colour"] = "Definir a cor de fundo de seção"; -$a->strings["Set colour of items - use hex"] = "Definir a cor dos itens - use hex"; -$a->strings["Set colour of links - use hex"] = "Definir a cor dos links - use hex"; -$a->strings["Set max-width for items. Default 400px"] = "Definir a largura máxima para itens. Padrão 400px"; -$a->strings["Set min-width for items. Default 240px"] = "Definir a largura mínima para itens. Padrão 240px"; -$a->strings["Set the generic content wrapper width. Default 48%"] = "Definir a largura do envólucro para conteúdo genérico. Padrão 48%"; -$a->strings["Set colour of fonts - use hex"] = "Definir a cor das fontes - use hex"; -$a->strings["Set background-size element"] = "Definir o elemento background-size"; -$a->strings["Item opacity"] = "Opacidade de itens"; -$a->strings["Display post previews only"] = "Exibir apenas a pré-visualização de publicações"; -$a->strings["Display side bar on channel page"] = "Exibir a barra lateral na página do canal"; -$a->strings["Colour of the navigation bar"] = "Cor da barra de navegação"; -$a->strings["Item float"] = "Flutuação de item"; -$a->strings["Left offset of the section element"] = "Deslocamento esquerdo do elemento de seção"; -$a->strings["Right offset of the section element"] = "Deslocamento direito do elemento de seção"; -$a->strings["Section width"] = "largura de seção"; -$a->strings["Left offset of the aside"] = "Deslocamento esquerdo do aparte"; -$a->strings["Right offset of the aside element"] = "Deslocamento direito do aparte"; -$a->strings["None"] = "Nenhum"; -$a->strings["Header image"] = "Imagem de cabeçalho"; -$a->strings["Header image only on profile pages"] = "Imagem de cabeçalho apenas em páginas de perfil"; $a->strings["Narrow navbar"] = "Barra de navegação estreita"; $a->strings["Navigation bar background colour"] = "Cor de fundo da barra de navegação"; $a->strings["Navigation bar gradient top colour"] = "Cor no topo de gradiente da barra de navegação"; @@ -1788,6 +1779,7 @@ $a->strings["Set the indent for comments"] = "Definir a indentação de comentá $a->strings["Set the basic colour for item icons"] = "Definir a cor básica para ícones de itens"; $a->strings["Set the hover colour for item icons"] = "Definir a cor para ícones de itens quando que o mouse está sobre eles"; $a->strings["Set font-size for the entire application"] = "Definir o tamanho da fonte para a aplicação como um todo"; +$a->strings["Set font-size for posts and comments"] = "Definir o tamanho da fonte para publicações e comentários"; $a->strings["Set font-colour for posts and comments"] = "Definir a cor da fonte para publicações e comentários"; $a->strings["Set radius of corners"] = "Definir o raio de curvatura dos cantos"; $a->strings["Set shadow depth of photos"] = "Definir a profundidade de sombra das fotos"; @@ -1798,12 +1790,3 @@ $a->strings["Set size of conversation author photo"] = "Definir o tamanho da fot $a->strings["Set size of followup author photos"] = "Definir o tamanho da foto dos autores de comentários"; $a->strings["Sloppy photo albums"] = "Álbuns de fotos desleixados"; $a->strings["Are you a clean desk or a messy desk person?"] = "Sua mesa é do tipo limpinha ou bagunçada?"; -$a->strings["Update %s failed. See error logs."] = "A atualização %s falhou. Veja os logs de erro."; -$a->strings["Update Error at %s"] = "Erro de atualização em %s"; -$a->strings["Create an account to access services and applications within the Red Matrix"] = "Crie uma conta para acessar serviços e aplicações na Red Matrix"; -$a->strings["Password"] = "Senha"; -$a->strings["Remember me"] = "Lembrar de mim"; -$a->strings["Forgot your password?"] = "Esqueceu a sua senha?"; -$a->strings["permission denied"] = "permissão negada"; -$a->strings["Got Zot?"] = "Já tem Zot?"; -$a->strings["toggle mobile"] = "alternar para interface móvel"; From bc389ff9341d8efec367b2b07c2d1b55be11b8d0 Mon Sep 17 00:00:00 2001 From: Alexandre Hannud Abdo Date: Fri, 23 May 2014 10:16:03 -0300 Subject: [PATCH 121/147] Language selection: case-insensitive and system language Fixed ignoring HTTP_ACCEPT_LANGUAGE tags that had uppercase characters. Fixed defining a->language too soon to ever get the system lang --- include/language.php | 3 +-- index.php | 5 ++--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/include/language.php b/include/language.php index cfaa855dd..855d94505 100644 --- a/include/language.php +++ b/include/language.php @@ -43,8 +43,6 @@ function get_browser_language() { arsort($langs, SORT_NUMERIC); } } - else - $langs['en'] = 1; return $langs; } @@ -65,6 +63,7 @@ function get_best_language() { if(isset($langs) && count($langs)) { foreach ($langs as $lang => $v) { + $lang = strtolower($lang); if(file_exists("view/$lang") && is_dir("view/$lang")) { $preferred = $lang; break; diff --git a/index.php b/index.php index 5f0ff9834..5a9ec1026 100755 --- a/index.php +++ b/index.php @@ -27,9 +27,6 @@ $a->install = ((file_exists('.htconfig.php') && filesize('.htconfig.php')) ? fal @include(".htconfig.php"); -$a->language = get_best_language(); - - /** * * Try to open the database; @@ -54,6 +51,7 @@ if(! $a->install) { load_hooks(); call_hooks('init_1'); + $a->language = get_best_language(); load_translation_table($a->language); // Force the cookie to be secure (https only) if this site is SSL enabled. Must be done before session_start(). @@ -69,6 +67,7 @@ if(! $a->install) { } else { // load translations but do not check plugins as we have no database + $a->language = get_best_language(); load_translation_table($a->language,true); } From 626eab99f8affc59f3578dabf4fd2ad97abd62e4 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 23 May 2014 14:52:55 -0700 Subject: [PATCH 122/147] add profile photo app because it is sometimes hard to find. Also doc updates --- app/pphoto.apd | 4 + app/pphoto.png | Bin 0 -> 10229 bytes doc/html/apw_2php_2style_8php.html | 4 +- doc/html/bbcode_8php.html | 18 + doc/html/bbcode_8php.js | 1 + doc/html/boot_8php.html | 48 +- doc/html/boot_8php.js | 1 + doc/html/classItem.html | 2 +- doc/html/dba__driver_8php.html | 4 +- .../dir_d41ce877eb409a4791b288730010abe2.html | 2 + .../dir_d41ce877eb409a4791b288730010abe2.js | 1 + doc/html/extract_8php.html | 4 +- doc/html/features_8php.html | 2 +- doc/html/files.html | 259 +- doc/html/globals_0x61.html | 36 + doc/html/globals_0x62.html | 5 +- doc/html/globals_0x70.html | 3 + doc/html/globals_0x74.html | 9 +- doc/html/globals_func_0x61.html | 36 + doc/html/globals_func_0x62.html | 5 +- doc/html/globals_func_0x70.html | 3 + doc/html/globals_func_0x74.html | 4 +- doc/html/globals_vars_0x74.html | 3 + doc/html/identity_8php.html | 4 +- doc/html/include_2apps_8php.html | 279 + doc/html/include_2apps_8php.js | 11 + doc/html/items_8php.html | 4 +- doc/html/language_8php.html | 39 +- doc/html/language_8php.js | 4 +- doc/html/navtree.js | 16 +- doc/html/navtreeindex0.js | 66 +- doc/html/navtreeindex1.js | 58 +- doc/html/navtreeindex2.js | 12 +- doc/html/navtreeindex3.js | 108 +- doc/html/navtreeindex4.js | 50 +- doc/html/navtreeindex5.js | 76 +- doc/html/navtreeindex6.js | 220 +- doc/html/navtreeindex7.js | 198 +- doc/html/navtreeindex8.js | 116 +- doc/html/photo__driver_8php.html | 2 +- doc/html/php2po_8php.html | 2 +- doc/html/php_2theme__init_8php.html | 2 +- doc/html/plugin_8php.html | 2 +- doc/html/search/all_61.js | 15 +- doc/html/search/all_62.js | 3 +- doc/html/search/all_70.js | 1 + doc/html/search/all_74.js | 7 +- doc/html/search/files_61.js | 1 + doc/html/search/functions_61.js | 12 + doc/html/search/functions_62.js | 1 + doc/html/search/functions_70.js | 1 + doc/html/search/functions_74.js | 4 +- doc/html/search/variables_74.js | 1 + doc/html/text_8php.html | 8 +- doc/html/typo_8php.html | 2 +- util/messages.po | 8842 +++++++++-------- version.inc | 2 +- 57 files changed, 5648 insertions(+), 4975 deletions(-) create mode 100644 app/pphoto.apd create mode 100644 app/pphoto.png diff --git a/app/pphoto.apd b/app/pphoto.apd new file mode 100644 index 000000000..e7da9cf9c --- /dev/null +++ b/app/pphoto.apd @@ -0,0 +1,4 @@ +url: $baseurl/profile_photo +requires: local_user +name: Profile Photo +photo: $baseurl/app/pphoto.png diff --git a/app/pphoto.png b/app/pphoto.png new file mode 100644 index 0000000000000000000000000000000000000000..eda371e8b42db326476e1b7bc8941bf444aac773 GIT binary patch literal 10229 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 literal 0 HcmV?d00001 diff --git a/doc/html/apw_2php_2style_8php.html b/doc/html/apw_2php_2style_8php.html index 8ddc74cd4..2bb6b5153 100644 --- a/doc/html/apw_2php_2style_8php.html +++ b/doc/html/apw_2php_2style_8php.html @@ -246,7 +246,7 @@ Variables
    - +
    {{$app.name}}
    +{{if $purchase}} + +{{/if}} {{if $install || $update || $delete }}
    {{if $install}}{{/if}} +{{if $edit}}{{/if}} {{if $delete}}{{/if}}
    {{/if}} diff --git a/view/tpl/app_select.tpl b/view/tpl/app_select.tpl index d6eb2c31a..4cd945388 100644 --- a/view/tpl/app_select.tpl +++ b/view/tpl/app_select.tpl @@ -3,6 +3,9 @@
    -

    Referenced by admin_page_channels(), admin_page_channels_post(), admin_page_users(), admin_page_users_post(), all_friends(), build_sync_packet(), chat_message(), chatroom_list(), check_item_source(), check_list_permissions(), common_friends(), common_friends_zcid(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), 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(), get_things(), get_words(), 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(), list_post_dates(), load_contact_links(), load_pconfig(), local_dir_update(), 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(), pdl_selector(), perm_is_allowed(), photo_init(), poke_init(), 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(), tag_deliver(), tagadelic(), tagblock(), tgroup_check(), widget_archive(), widget_follow(), widget_item(), widget_tagcloud(), and zot_feed().

    +

    Referenced by admin_page_channels(), admin_page_channels_post(), admin_page_users(), admin_page_users_post(), all_friends(), app_destroy(), app_install(), app_installed(), app_list(), build_sync_packet(), chat_message(), chatroom_list(), check_item_source(), check_list_permissions(), common_friends(), common_friends_zcid(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), 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(), get_things(), get_words(), 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(), list_post_dates(), load_contact_links(), load_pconfig(), local_dir_update(), 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(), pdl_selector(), perm_is_allowed(), photo_init(), poke_init(), 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(), tag_deliver(), tagadelic(), tagblock(), tgroup_check(), widget_archive(), widget_follow(), widget_item(), widget_tagcloud(), and zot_feed().

    @@ -260,7 +260,7 @@ Variables
    -

    Referenced by Template\_replcb_for(), Template\_replcb_if(), account_remove(), acl_init(), activity_sanitise(), admin_page_channels(), admin_page_themes(), aes_encapsulate(), argv(), array_sanitise(), attach_change_permissions(), attach_delete(), attach_store(), autoname(), bb_parse_crypt(), bbcode(), block_content(), blocks_content(), bookmark_add(), bookmarks_content(), build_sync_packet(), change_channel(), channel_content(), chat_content(), chat_message(), chat_post(), chatroom_create(), chatroom_enter(), chatsvc_content(), chatsvc_init(), chatsvc_post(), check_config(), check_form_security_token(), check_item_source(), check_list_permissions(), check_webbie(), RedDirectory\childExists(), cloud_init(), common_init(), construct_page(), conversation(), RedDirectory\createFile(), photo_gd\cropImage(), photo_imagick\cropImage(), datesel(), datesel_format(), decode_tags(), deliver_run(), dir_tagadelic(), directory_content(), directory_run(), dirprofile_init(), display_content(), downgrade_accounts(), email_header_encode(), encode_item(), encode_mail(), event_store(), expand_groups(), expire_run(), externals_run(), feature_enabled(), fetch_post_tags(), filer_content(), find_xchan_in_array(), findpeople_widget(), fix_private_photos(), fix_system_urls(), photo_gd\flip(), fsuggest_post(), get_all_perms(), get_item_elements(), get_mail_elements(), get_mentions(), get_online_status(), get_profile_elements(), get_system_apps(), get_terms_oftype(), get_theme_uid(), RedDirectory\getChild(), RedDirectory\getDir(), RedDirectory\getQuotaInfo(), gprobe_run(), hostxrd_init(), ids_to_querystr(), import_author_rss(), import_author_xchan(), import_author_zot(), import_directory_keywords(), import_directory_profile(), import_post(), import_site(), import_xchan(), invite_content(), invite_post(), item_post(), items_fetch(), json_decode_plus(), json_return_and_die(), layouts_content(), legal_webbie(), FKOAuth1\loginUser(), magic_init(), mail_post(), manage_content(), match_content(), menu_content(), menu_delete_id(), menu_fetch(), menu_render(), mimetype_select(), nav(), navbar_complete(), network_content(), new_channel_init(), new_contact(), notification(), notifier_run(), oembed_fetch_url(), onedirsync_run(), onepoll_run(), openid_content(), page_content(), parse_app_description(), parse_xml_string(), pdledit_content(), perm_is_allowed(), photos_list_photos(), photos_post(), ping_init(), poco_load(), poller_run(), post_init(), post_post(), preg_heart(), print_template(), private_messages_list(), proc_run(), process_channel_sync_delivery(), process_mail_delivery(), profile_init(), profile_load(), profile_photo_post(), prune_hub_reinstalls(), public_recips(), RedFile\put(), dba_mysql\q(), dba_mysqli\q(), randprof_init(), red_item_new(), RedCollectionData(), RedFileData(), remote_online_status(), remove_community_tag(), rpost_content(), photo_driver\save(), search_ac_init(), send_status_notifications(), share_init(), site_default_perms(), smilies(), sources_content(), sslify_init(), photo_driver\store(), string_splitter(), stringify_array_elms(), sync_directories(), tag_deliver(), tagadelic(), tagrm_content(), tagrm_post(), theme_status(), thing_content(), timesel(), toggle_theme(), update_directory_entry(), update_imported_item(), upgrade_bool_message(), upgrade_message(), valid_email(), RedBasicAuth\validateUserPass(), webpages_content(), what_next(), widget_affinity(), widget_bookmarkedchats(), widget_suggestedchats(), widget_suggestions(), xchan_query(), xmlify(), zfinger_init(), zot_process_response(), zot_refresh(), zot_register_hub(), and zotfeed_init().

    +

    Referenced by Template\_replcb_for(), Template\_replcb_if(), account_remove(), acl_init(), activity_sanitise(), admin_page_channels(), admin_page_themes(), aes_encapsulate(), app_decode(), app_install(), app_store(), app_update(), argv(), array_sanitise(), attach_change_permissions(), attach_delete(), attach_store(), autoname(), bb_parse_crypt(), bbcode(), block_content(), blocks_content(), bookmark_add(), bookmarks_content(), build_sync_packet(), change_channel(), channel_content(), chat_content(), chat_message(), chat_post(), chatroom_create(), chatroom_enter(), chatsvc_content(), chatsvc_init(), chatsvc_post(), check_config(), check_form_security_token(), check_item_source(), check_list_permissions(), check_webbie(), RedDirectory\childExists(), cloud_init(), common_init(), construct_page(), conversation(), RedDirectory\createFile(), photo_gd\cropImage(), photo_imagick\cropImage(), datesel(), datesel_format(), decode_tags(), deliver_run(), dir_tagadelic(), directory_content(), directory_run(), dirprofile_init(), display_content(), downgrade_accounts(), email_header_encode(), encode_item(), encode_mail(), event_store(), expand_groups(), expire_run(), externals_run(), feature_enabled(), fetch_post_tags(), filer_content(), find_xchan_in_array(), findpeople_widget(), fix_private_photos(), fix_system_urls(), photo_gd\flip(), fsuggest_post(), get_all_perms(), get_item_elements(), get_mail_elements(), get_mentions(), get_online_status(), get_profile_elements(), get_system_apps(), get_terms_oftype(), get_theme_uid(), RedDirectory\getChild(), RedDirectory\getDir(), RedDirectory\getQuotaInfo(), gprobe_run(), hostxrd_init(), ids_to_querystr(), import_author_rss(), import_author_xchan(), import_author_zot(), import_directory_keywords(), import_directory_profile(), import_post(), import_site(), import_xchan(), invite_content(), invite_post(), item_post(), items_fetch(), json_decode_plus(), json_return_and_die(), layouts_content(), legal_webbie(), FKOAuth1\loginUser(), magic_init(), mail_post(), manage_content(), match_content(), menu_content(), menu_delete_id(), menu_fetch(), menu_render(), mimetype_select(), nav(), navbar_complete(), network_content(), new_channel_init(), new_contact(), notification(), notifier_run(), oembed_fetch_url(), onedirsync_run(), onepoll_run(), openid_content(), page_content(), parse_app_description(), parse_xml_string(), pdledit_content(), perm_is_allowed(), photos_list_photos(), photos_post(), ping_init(), poco_load(), poller_run(), post_init(), post_post(), preg_heart(), print_template(), private_messages_list(), proc_run(), process_channel_sync_delivery(), process_mail_delivery(), profile_init(), profile_load(), profile_photo_post(), prune_hub_reinstalls(), public_recips(), RedFile\put(), dba_mysql\q(), dba_mysqli\q(), randprof_init(), red_item_new(), RedCollectionData(), RedFileData(), remote_online_status(), remove_community_tag(), rpost_content(), photo_driver\save(), search_ac_init(), send_status_notifications(), share_init(), site_default_perms(), smilies(), sources_content(), sslify_init(), photo_driver\store(), string_splitter(), stringify_array_elms(), sync_directories(), tag_deliver(), tagadelic(), tagrm_content(), tagrm_post(), theme_status(), thing_content(), timesel(), toggle_theme(), update_directory_entry(), update_imported_item(), upgrade_bool_message(), upgrade_message(), valid_email(), RedBasicAuth\validateUserPass(), webpages_content(), what_next(), widget_affinity(), widget_bookmarkedchats(), widget_suggestedchats(), widget_suggestions(), xchan_query(), xmlify(), zfinger_init(), zot_process_response(), zot_refresh(), zot_register_hub(), and zotfeed_init().

    diff --git a/doc/html/bbcode_8php.html b/doc/html/bbcode_8php.html index cc3dfe354..0a8e77351 100644 --- a/doc/html/bbcode_8php.html +++ b/doc/html/bbcode_8php.html @@ -125,6 +125,8 @@ Functions if(!function_exists('bb_extract_images'))
    if(!function_exists('bb_replace_images')) bb_parse_crypt ($match)   + bb_parse_app ($match) +   bb_qr ($match)    bb_ShareAttributes ($match) @@ -157,6 +159,22 @@ Functions
    +
    + + +
    +
    + + + + + + + + +
    bb_parse_app ( $match)
    +
    +
    diff --git a/doc/html/bbcode_8php.js b/doc/html/bbcode_8php.js index c3bd2dc6f..816f65396 100644 --- a/doc/html/bbcode_8php.js +++ b/doc/html/bbcode_8php.js @@ -1,6 +1,7 @@ var bbcode_8php = [ [ "bb_location", "bbcode_8php.html#a3435c82a6c7693557800cdeb6848d0bd", null ], + [ "bb_parse_app", "bbcode_8php.html#abb02f1044ff1c635d12af690d0f2cfa2", null ], [ "bb_parse_crypt", "bbcode_8php.html#a851f5aafefe52474201b83f9fd65931f", null ], [ "bb_qr", "bbcode_8php.html#a98d0eecc620c19561639f06cfbe8e74c", null ], [ "bb_sanitize_style", "bbcode_8php.html#a3a989cbf308a32468d171d83e9c51d1e", null ], diff --git a/doc/html/boot_8php.html b/doc/html/boot_8php.html index c58e7006c..25ece3ece 100644 --- a/doc/html/boot_8php.html +++ b/doc/html/boot_8php.html @@ -204,7 +204,7 @@ Variables   const ZOT_REVISION 1   -const DB_UPDATE_VERSION 1107 +const DB_UPDATE_VERSION 1112   const EOL '<br />' . "\r\n"   @@ -446,7 +446,7 @@ Variables   const DROPITEM_PHASE2 2   -const MAX_LIKERS 75 +const MAX_LIKERS 10   const ZCURL_TIMEOUT (-1)   @@ -532,6 +532,8 @@ Variables   const TERM_OBJ_THING 6   +const TERM_OBJ_APP 7 +  const NAMESPACE_ZOT 'http://purl.org/zot'   const NAMESPACE_DFRN 'http://purl.org/macgirvin/dfrn/1.0' @@ -744,7 +746,7 @@ Variables
    -

    Referenced by App\__construct(), _well_known_init(), achievements_content(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_users(), admin_post(), api_get_user(), attach_init(), block_content(), blocks_content(), channel_init(), chat_content(), chat_init(), cloud_init(), common_init(), connect_init(), connections_content(), connedit_content(), connedit_init(), contactgroup_content(), dirsearch_content(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), feed_init(), filestorage_content(), group_content(), group_post(), help_content(), importelm_post(), item_content(), layouts_content(), like_content(), lockview_content(), mail_content(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), new_channel_init(), notes_init(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), online_init(), page_content(), pdledit_content(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), profile_init(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), queue_run(), rbmark_content(), register_init(), regmod_content(), rpost_content(), settings_init(), settings_post(), setup_init(), share_init(), sources_content(), 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(), xref_init(), and zotfeed_init().

    +

    Referenced by App\__construct(), _well_known_init(), achievements_content(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_users(), admin_post(), api_get_user(), apps_content(), attach_init(), block_content(), blocks_content(), channel_init(), chat_content(), chat_init(), cloud_init(), common_init(), connect_init(), connections_content(), connedit_content(), connedit_init(), contactgroup_content(), dirsearch_content(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), feed_init(), filestorage_content(), group_content(), group_post(), help_content(), importelm_post(), item_content(), layouts_content(), like_content(), lockview_content(), mail_content(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), new_channel_init(), notes_init(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), online_init(), page_content(), pdledit_content(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), profile_init(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), queue_run(), rbmark_content(), register_init(), regmod_content(), rpost_content(), settings_init(), settings_post(), setup_init(), share_init(), sources_content(), 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(), xref_init(), and zotfeed_init().

    @@ -762,7 +764,7 @@ Variables
    -

    Referenced by App\__construct(), _well_known_init(), achievements_content(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_users(), admin_post(), api_get_user(), api_statuses_destroy(), api_statuses_repeat(), api_statuses_show(), attach_init(), block_content(), block_init(), blocks_content(), channel_init(), chat_content(), chat_init(), cloud_init(), common_init(), connect_init(), connections_content(), connections_post(), connedit_content(), connedit_init(), connedit_post(), contactgroup_content(), dirsearch_content(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), feed_init(), filestorage_content(), get_online_status(), group_content(), group_post(), help_content(), importelm_post(), item_content(), layouts_content(), like_content(), lockview_content(), mail_content(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), new_channel_init(), notes_init(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), online_init(), page_content(), page_init(), pdledit_content(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), profile_init(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), queue_run(), rbmark_content(), register_init(), regmod_content(), rpost_content(), settings_post(), setup_init(), share_init(), sources_content(), starred_init(), subthread_content(), tagger_content(), thing_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(), widget_collections(), widget_mailmenu(), widget_settings_menu(), xref_init(), and zotfeed_init().

    +

    Referenced by App\__construct(), _well_known_init(), achievements_content(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_users(), admin_post(), api_get_user(), api_statuses_destroy(), api_statuses_repeat(), api_statuses_show(), apps_content(), attach_init(), block_content(), block_init(), blocks_content(), channel_init(), chat_content(), chat_init(), cloud_init(), common_init(), connect_init(), connections_content(), connections_post(), connedit_content(), connedit_init(), connedit_post(), contactgroup_content(), dirsearch_content(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), feed_init(), filestorage_content(), get_online_status(), group_content(), group_post(), help_content(), importelm_post(), item_content(), layouts_content(), like_content(), lockview_content(), mail_content(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), new_channel_init(), notes_init(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), online_init(), page_content(), page_init(), pdledit_content(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), profile_init(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), queue_run(), rbmark_content(), register_init(), regmod_content(), rpost_content(), settings_post(), setup_init(), share_init(), sources_content(), starred_init(), subthread_content(), tagger_content(), thing_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(), widget_collections(), widget_mailmenu(), widget_settings_menu(), xref_init(), and zotfeed_init().

    @@ -984,7 +986,7 @@ Variables
    -

    Referenced by FriendicaSmarty\__construct(), FriendicaSmartyEngine\__construct(), abook_toggle_flag(), allowed_public_recips(), api_apply_template(), api_format_items(), api_get_user(), api_statuses_home_timeline(), api_statuses_repeat(), api_statuses_user_timeline(), api_user(), argc(), argv(), atom_entry(), authenticate_success(), avatar_img(), bbcode(), best_link_url(), blogtheme_imgurl(), build_sync_packet(), call_hooks(), can_comment_on_post(), categories_widget(), change_channel(), channel_remove(), check_form_security_token(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), check_htaccess(), cli_suggest_run(), comanche_get_channel_id(), comanche_replace_region(), comanche_widget(), common_friends_visitor_widget(), connedit_content(), contact_block(), contact_select(), create_identity(), current_theme(), deliver_run(), design_tools(), dir_tagblock(), drop_item(), editpost_content(), event_store(), externals_run(), fileas_widget(), findpeople_widget(), fix_attached_photo_permissions(), fix_private_photos(), format_event_diaspora(), RedBrowser\generateDirectoryIndex(), get_account_id(), get_best_language(), get_birthdays(), get_events(), get_feed_for(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_observer_hash(), get_plink(), get_theme_config_file(), get_theme_screenshot(), gprobe_run(), group_select(), guess_image_type(), handle_tag(), head_add_css(), head_add_js(), head_get_css(), head_get_js(), head_remove_css(), head_remove_js(), RedBrowser\htmlActionsPanel(), identity_selector(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_xchan(), info(), insert_hook(), is_developer(), is_site_admin(), item_message_id(), item_photo_menu(), item_redir_and_replace_images(), item_store(), item_store_update(), items_fetch(), load_contact_links(), load_hooks(), local_dir_update(), login(), FKOAuth1\loginUser(), manage_content(), map_scope(), menu_add_item(), menu_edit_item(), nav_set_selected(), new_contact(), notice(), notification(), notifier_run(), oembed_fetch_url(), oembed_format_object(), oembed_iframe(), onedirsync_run(), onepoll_run(), page_content(), parse_app_description(), photos_album_widget(), photos_content(), ping_init(), poco_load(), poller_run(), post_activity_item(), preg_heart(), prepare_body(), proc_run(), process_delivery(), profile_activity(), profile_sidebar(), public_permissions_sql(), register_page_template(), replace_macros(), rmagic_init(), rpost_callback(), scale_external_images(), search(), searchbox(), send_message(), send_reg_approval_email(), send_status_notifications(), send_verification_email(), service_class_allows(), service_class_fetch(), smilies(), tag_deliver(), terminate_friendship(), tgroup_check(), theme_include(), tryzrlvideo(), tt(), update_suggestions(), user_allow(), vcard_from_xchan(), wfinger_init(), what_next(), widget_archive(), widget_categories(), widget_chatroom_list(), widget_collections(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_mailmenu(), widget_menu_preview(), widget_photo_albums(), widget_profile(), widget_savedsearch(), widget_settings_menu(), widget_tagcloud(), widget_tagcloud_wall(), widget_vcard(), z_fetch_url(), and zot_finger().

    +

    Referenced by FriendicaSmarty\__construct(), FriendicaSmartyEngine\__construct(), abook_toggle_flag(), allowed_public_recips(), api_apply_template(), api_format_items(), api_get_user(), api_statuses_home_timeline(), api_statuses_repeat(), api_statuses_user_timeline(), api_user(), app_render(), app_store(), argc(), argv(), atom_entry(), authenticate_success(), avatar_img(), bbcode(), best_link_url(), blogtheme_imgurl(), build_sync_packet(), call_hooks(), can_comment_on_post(), categories_widget(), change_channel(), channel_remove(), check_form_security_token(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), check_htaccess(), cli_suggest_run(), comanche_get_channel_id(), comanche_replace_region(), comanche_widget(), common_friends_visitor_widget(), connedit_content(), contact_block(), contact_select(), create_identity(), current_theme(), deliver_run(), design_tools(), dir_tagblock(), drop_item(), editpost_content(), event_store(), externals_run(), fileas_widget(), findpeople_widget(), fix_attached_photo_permissions(), fix_private_photos(), format_event_diaspora(), RedBrowser\generateDirectoryIndex(), get_account_id(), get_best_language(), get_birthdays(), get_events(), get_feed_for(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_observer_hash(), get_plink(), get_theme_config_file(), get_theme_screenshot(), gprobe_run(), group_select(), guess_image_type(), handle_tag(), head_add_css(), head_add_js(), head_get_css(), head_get_js(), head_remove_css(), head_remove_js(), RedBrowser\htmlActionsPanel(), identity_selector(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_xchan(), info(), insert_hook(), is_developer(), is_site_admin(), item_message_id(), item_photo_menu(), item_redir_and_replace_images(), item_store(), item_store_update(), items_fetch(), load_contact_links(), load_hooks(), local_dir_update(), login(), FKOAuth1\loginUser(), manage_content(), map_scope(), menu_add_item(), menu_edit_item(), nav_set_selected(), new_contact(), notice(), notification(), notifier_run(), oembed_fetch_url(), oembed_format_object(), oembed_iframe(), onedirsync_run(), onepoll_run(), page_content(), parse_app_description(), photos_album_widget(), photos_content(), ping_init(), poco_load(), poller_run(), post_activity_item(), preg_heart(), prepare_body(), proc_run(), process_delivery(), profile_activity(), profile_sidebar(), public_permissions_sql(), register_page_template(), replace_macros(), rmagic_init(), rpost_callback(), scale_external_images(), search(), searchbox(), send_message(), send_reg_approval_email(), send_status_notifications(), send_verification_email(), service_class_allows(), service_class_fetch(), smilies(), tag_deliver(), terminate_friendship(), tgroup_check(), theme_include(), tryzrlvideo(), tt(), update_suggestions(), user_allow(), vcard_from_xchan(), wfinger_init(), what_next(), widget_archive(), widget_categories(), widget_chatroom_list(), widget_collections(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_mailmenu(), widget_menu_preview(), widget_photo_albums(), widget_profile(), widget_savedsearch(), widget_settings_menu(), widget_tagcloud(), widget_tagcloud_wall(), widget_vcard(), z_fetch_url(), and zot_finger().

    @@ -1046,7 +1048,7 @@ Variables
    -

    Referenced by advanced_profile(), api_statuses_user_timeline(), attach_by_hash(), attach_by_hash_nodata(), attach_mkdir(), attach_store(), block_content(), bookmarks_content(), chat_content(), chatsvc_content(), chatsvc_init(), chatsvc_post(), cloud_init(), comanche_menu(), common_content(), common_friends_visitor_widget(), contact_block(), dir_safe_mode(), directory_content(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_post(), get_public_feed(), importelm_post(), item_content(), item_permissions_sql(), magic_init(), mitem_content(), new_contact(), notice(), permissions_sql(), photo_init(), photos_content(), photos_post(), ping_init(), prepare_body(), profile_content(), profile_sidebar(), search_content(), RedBrowser\set_writeable(), stream_perms_xchans(), suggest_content(), tagger_content(), thing_init(), toggle_safesearch_init(), viewconnections_content(), vote_content(), vote_post(), wall_attach_post(), widget_archive(), widget_bookmarkedchats(), widget_categories(), widget_item(), widget_photo_albums(), widget_suggestedchats(), widget_suggestions(), widget_tagcloud_wall(), and z_readdir().

    +

    Referenced by advanced_profile(), api_statuses_user_timeline(), app_store(), app_update(), attach_by_hash(), attach_by_hash_nodata(), attach_mkdir(), attach_store(), block_content(), bookmarks_content(), chat_content(), chatsvc_content(), chatsvc_init(), chatsvc_post(), cloud_init(), comanche_menu(), common_content(), common_friends_visitor_widget(), contact_block(), dir_safe_mode(), directory_content(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_post(), get_public_feed(), importelm_post(), item_content(), item_permissions_sql(), magic_init(), mitem_content(), new_contact(), notice(), permissions_sql(), photo_init(), photos_content(), photos_post(), ping_init(), prepare_body(), profile_content(), profile_sidebar(), search_content(), RedBrowser\set_writeable(), stream_perms_xchans(), suggest_content(), tagger_content(), thing_init(), toggle_safesearch_init(), viewconnections_content(), vote_content(), vote_post(), wall_attach_post(), widget_archive(), widget_bookmarkedchats(), widget_categories(), widget_item(), widget_photo_albums(), widget_suggestedchats(), widget_suggestions(), widget_tagcloud_wall(), and z_readdir().

    @@ -1064,7 +1066,7 @@ Variables
    -

    Referenced by admin_page_channels(), admin_page_channels_post(), admin_page_dbsync(), admin_page_hubloc(), admin_page_hubloc_post(), 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_content(), channel_remove(), chanview_content(), chat_content(), chat_post(), chatsvc_content(), check_form_security_token_redirectOnErr(), connect_post(), connections_post(), connedit_content(), connedit_post(), delegate_content(), directory_content(), display_content(), drop_item(), events_post(), filerm_content(), filestorage_content(), follow_init(), group_content(), group_post(), home_init(), import_post(), item_post(), login_content(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_post(), mood_init(), network_content(), new_channel_post(), new_contact(), notifications_post(), notify_init(), openid_content(), pdledit_post(), photos_post(), post_init(), profile_photo_post(), profiles_init(), randprof_init(), rbmark_content(), rbmark_post(), register_post(), removeme_content(), rmagic_init(), rmagic_post(), rpost_content(), search_content(), settings_post(), sources_content(), sources_post(), sslify_init(), tagrm_content(), tagrm_post(), toggle_mobile_init(), toggle_safesearch_init(), wfinger_init(), xref_init(), and zid_init().

    +

    Referenced by admin_page_channels(), admin_page_channels_post(), admin_page_dbsync(), admin_page_hubloc(), admin_page_hubloc_post(), 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(), appman_post(), authenticate_success(), channel_content(), channel_remove(), chanview_content(), chat_content(), chat_post(), chatsvc_content(), check_form_security_token_redirectOnErr(), connect_post(), connections_post(), connedit_content(), connedit_post(), delegate_content(), directory_content(), display_content(), drop_item(), events_post(), filerm_content(), filestorage_content(), follow_init(), group_content(), group_post(), home_init(), import_post(), item_post(), login_content(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_post(), mood_init(), network_content(), new_channel_post(), new_contact(), notifications_post(), notify_init(), openid_content(), pdledit_post(), photos_post(), post_init(), profile_photo_post(), profiles_init(), randprof_init(), rbmark_content(), rbmark_post(), register_post(), removeme_content(), rmagic_init(), rmagic_post(), rpost_content(), search_content(), settings_post(), sources_content(), sources_post(), sslify_init(), tagrm_content(), tagrm_post(), toggle_mobile_init(), toggle_safesearch_init(), wfinger_init(), xref_init(), and zid_init().

    @@ -1115,7 +1117,7 @@ Variables
    -

    Referenced by admin_page_dbsync(), admin_page_logs_post(), admin_page_plugins(), admin_page_site_post(), admin_page_themes(), admin_post(), bookmarks_init(), connections_post(), connedit_content(), connedit_post(), directory_content(), dirprofile_init(), filestorage_content(), follow_init(), fsuggest_post(), group_content(), group_post(), item_post(), lostpass_content(), lostpass_post(), mail_content(), match_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_post(), network_content(), oexchange_content(), openid_content(), pdledit_post(), post_init(), profile_photo_post(), profiles_init(), profiles_post(), register_post(), regmod_content(), settings_post(), sources_content(), sources_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(), appman_post(), bookmarks_init(), connections_post(), connedit_content(), connedit_post(), directory_content(), dirprofile_init(), filestorage_content(), follow_init(), fsuggest_post(), group_content(), group_post(), item_post(), lostpass_content(), lostpass_post(), mail_content(), match_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_post(), network_content(), oexchange_content(), openid_content(), pdledit_post(), post_init(), profile_photo_post(), profiles_init(), profiles_post(), register_post(), regmod_content(), settings_post(), sources_content(), sources_post(), suggest_content(), tagrm_post(), thing_init(), user_allow(), and viewconnections_content().

    @@ -1164,7 +1166,7 @@ Variables @@ -1233,7 +1235,7 @@ Variables
    -

    Referenced by Conversation\__construct(), acl_init(), api_content(), api_get_user(), api_post(), api_user(), apw_form(), best_link_url(), blocks_content(), bookmarks_content(), bookmarks_init(), App\build_pagehead(), build_sync_packet(), change_channel(), channel_content(), channel_init(), channel_remove(), chanview_content(), chat_content(), chat_init(), chat_post(), cloud_init(), comanche_get_channel_id(), common_friends_visitor_widget(), connect_content(), connect_post(), connections_content(), connections_init(), connections_post(), connedit_content(), connedit_init(), connedit_post(), contact_block(), contact_select(), contactgroup_content(), conversation(), current_theme(), delegate_content(), directory_content(), dirprofile_init(), display_content(), drop_item(), drop_items(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), fbrowser_content(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), filestorage_post(), findpeople_widget(), follow_content(), follow_init(), fsuggest_content(), fsuggest_post(), RedBrowser\generateDirectoryIndex(), get_birthdays(), Item\get_comment_box(), get_events(), get_online_status(), Item\get_template_data(), get_theme_uid(), group_content(), group_get_members(), group_post(), group_select(), group_side(), handle_tag(), home_init(), identity_selector(), invite_content(), invite_post(), item_content(), item_permissions_sql(), item_photo_menu(), item_post(), item_store(), item_store_update(), items_fetch(), layouts_content(), lockview_content(), login(), login_content(), magic_init(), mail_content(), mail_post(), manage_content(), match_content(), menu_add_item(), menu_content(), menu_edit_item(), menu_post(), message_content(), mimetype_select(), mitem_content(), mitem_init(), mitem_post(), mood_content(), mood_init(), nav(), navbar_complete(), network_content(), network_init(), new_contact(), notes_init(), notifications_content(), notifications_post(), notify_content(), notify_init(), oexchange_content(), parse_app_description(), pdledit_content(), pdledit_post(), 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_init(), profile_photo_post(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), profperm_init(), rbmark_content(), redbasic_form(), regmod_content(), removeme_content(), removeme_post(), rmagic_init(), rpost_content(), search(), search_ac_init(), search_content(), searchbox(), service_class_allows(), service_class_fetch(), Conversation\set_mode(), settings_init(), settings_post(), share_init(), smilies(), sources_content(), sources_post(), starred_init(), stream_perms_api_uids(), stream_perms_xchans(), 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_content(), viewconnections_init(), viewsrc_content(), webpages_content(), widget_affinity(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_mailmenu(), widget_notes(), widget_profile(), widget_savedsearch(), widget_settings_menu(), widget_suggestions(), z_input_filter(), zid_init(), and zping_content().

    +

    Referenced by Conversation\__construct(), acl_init(), api_content(), api_get_user(), api_post(), api_user(), app_render(), appman_content(), appman_post(), apps_content(), apw_form(), best_link_url(), blocks_content(), bookmarks_content(), bookmarks_init(), App\build_pagehead(), build_sync_packet(), change_channel(), channel_content(), channel_init(), channel_remove(), chanview_content(), chat_content(), chat_init(), chat_post(), cloud_init(), comanche_get_channel_id(), common_friends_visitor_widget(), connect_content(), connect_post(), connections_content(), connections_init(), connections_post(), connedit_content(), connedit_init(), connedit_post(), contact_block(), contact_select(), contactgroup_content(), conversation(), current_theme(), delegate_content(), directory_content(), dirprofile_init(), display_content(), drop_item(), drop_items(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), fbrowser_content(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), filestorage_post(), findpeople_widget(), follow_content(), follow_init(), fsuggest_content(), fsuggest_post(), RedBrowser\generateDirectoryIndex(), get_birthdays(), Item\get_comment_box(), get_events(), get_online_status(), Item\get_template_data(), get_theme_uid(), group_content(), group_get_members(), group_post(), group_select(), group_side(), handle_tag(), home_init(), identity_selector(), invite_content(), invite_post(), item_content(), item_permissions_sql(), item_photo_menu(), item_post(), item_store(), item_store_update(), items_fetch(), layouts_content(), lockview_content(), login(), login_content(), magic_init(), mail_content(), mail_post(), manage_content(), match_content(), menu_add_item(), menu_content(), menu_edit_item(), menu_post(), message_content(), mimetype_select(), mitem_content(), mitem_init(), mitem_post(), mood_content(), mood_init(), nav(), navbar_complete(), network_content(), network_init(), new_contact(), notes_init(), notifications_content(), notifications_post(), notify_content(), notify_init(), oexchange_content(), parse_app_description(), pdledit_content(), pdledit_post(), 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_init(), profile_photo_post(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), profperm_init(), rbmark_content(), redbasic_form(), regmod_content(), removeme_content(), removeme_post(), rmagic_init(), rpost_content(), search(), search_ac_init(), search_content(), searchbox(), service_class_allows(), service_class_fetch(), Conversation\set_mode(), settings_init(), settings_post(), share_init(), smilies(), sources_content(), sources_post(), starred_init(), stream_perms_api_uids(), stream_perms_xchans(), 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_content(), viewconnections_init(), viewsrc_content(), webpages_content(), widget_affinity(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_mailmenu(), widget_notes(), widget_profile(), widget_savedsearch(), widget_settings_menu(), widget_suggestions(), z_input_filter(), zid_init(), and zping_content().

    @@ -1285,7 +1287,7 @@ Variables
    -

    Referenced by achievements_content(), admin_content(), admin_page_channels(), admin_page_channels_post(), admin_page_hubloc(), admin_page_plugins(), admin_page_themes(), admin_page_users(), admin_page_users_post(), api_content(), api_post(), attach_init(), block_content(), blocks_content(), bookmarks_content(), channel_content(), channel_init(), chanview_content(), chat_content(), chat_init(), chatroom_enter(), check_form_security_token_redirectOnErr(), common_content(), common_init(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_post(), delegate_content(), directory_content(), dirprofile_init(), display_content(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), filestorage_content(), filestorage_post(), follow_init(), fsuggest_content(), fsuggest_post(), group_add(), group_content(), group_post(), home_content(), import_content(), import_post(), importelm_post(), invite_content(), invite_post(), item_content(), item_post(), layouts_content(), like_content(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), match_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_content(), network_content(), network_init(), new_channel_content(), new_channel_post(), notifications_content(), notifications_post(), oexchange_content(), openid_content(), page_content(), pdledit_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(), sources_content(), sources_post(), subthread_content(), suggest_content(), thing_content(), thing_init(), user_deny(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), and xchan_content().

    +

    Referenced by achievements_content(), admin_content(), admin_page_channels(), admin_page_channels_post(), admin_page_hubloc(), admin_page_plugins(), admin_page_themes(), admin_page_users(), admin_page_users_post(), api_content(), api_post(), appman_content(), appman_post(), attach_init(), block_content(), blocks_content(), bookmarks_content(), channel_content(), channel_init(), chanview_content(), chat_content(), chat_init(), chatroom_enter(), check_form_security_token_redirectOnErr(), common_content(), common_init(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_post(), delegate_content(), directory_content(), dirprofile_init(), display_content(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), filestorage_content(), filestorage_post(), follow_init(), fsuggest_content(), fsuggest_post(), group_add(), group_content(), group_post(), home_content(), import_content(), import_post(), importelm_post(), invite_content(), invite_post(), item_content(), item_post(), layouts_content(), like_content(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), match_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_content(), network_content(), network_init(), new_channel_content(), new_channel_post(), notifications_content(), notifications_post(), oexchange_content(), openid_content(), page_content(), pdledit_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(), sources_content(), sources_post(), subthread_content(), suggest_content(), thing_content(), thing_init(), user_deny(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), and xchan_content().

    @@ -1385,7 +1387,7 @@ Variables
    -

    Referenced by FriendicaSmarty\__construct(), App\__construct(), acl_init(), admin_page_channels_post(), 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(), bookmark_add(), App\build_pagehead(), channel_content(), chatsvc_content(), check_form_security_token(), cloud_init(), connections_content(), connections_post(), connedit_content(), construct_page(), consume_feed(), conversation(), create_account(), create_identity(), current_theme(), current_theme_url(), del_pconfig(), del_xconfig(), delegate_content(), detect_language(), directory_content(), dirprofile_init(), dirsearch_content(), display_content(), encode_rel_links(), events_content(), events_post(), feed_init(), filerm_content(), filestorage_post(), get_atom_elements(), get_browser_language(), get_item_elements(), get_my_address(), get_my_url(), get_plink(), get_public_feed(), Item\get_template_data(), group_add(), group_rmv(), group_side(), home_content(), import_post(), import_xchan(), info(), invite_post(), item_post(), item_store(), item_store_update(), lang_selector(), load_contact_links(), local_user(), lostpass_content(), magic_init(), mail_content(), mail_post(), mail_store(), mood_content(), mood_init(), nav(), navbar_complete(), network_content(), new_channel_content(), new_cookie(), notice(), oexchange_content(), openid_content(), parse_url_content(), photo_upload(), photos_content(), photos_post(), ping_init(), poco_init(), poco_load(), poke_content(), poke_init(), post_activity_item(), post_init(), printable(), probe_content(), proc_run(), process_delivery(), profile_photo_post(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_post(), rbmark_content(), rbmark_post(), red_item_new(), ref_session_read(), register_content(), register_post(), App\register_template_engine(), regmod_content(), remote_user(), removeme_post(), rpost_content(), script_path(), search_ac_init(), search_content(), search_init(), 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(), widget_affinity(), widget_categories(), widget_filer(), widget_savedsearch(), widget_tagcloud(), xchan_content(), z_fetch_url(), z_post_url(), and zfinger_init().

    +

    Referenced by FriendicaSmarty\__construct(), App\__construct(), acl_init(), admin_page_channels_post(), 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(), app_store(), app_update(), attach_store(), authenticate_success(), bbcode(), bbtoevent(), best_link_url(), bookmark_add(), App\build_pagehead(), channel_content(), chatsvc_content(), check_form_security_token(), cloud_init(), connections_content(), connections_post(), connedit_content(), construct_page(), consume_feed(), conversation(), create_account(), create_identity(), current_theme(), current_theme_url(), del_pconfig(), del_xconfig(), delegate_content(), detect_language(), directory_content(), dirprofile_init(), dirsearch_content(), display_content(), encode_rel_links(), events_content(), events_post(), feed_init(), filerm_content(), filestorage_post(), get_atom_elements(), get_browser_language(), get_item_elements(), get_my_address(), get_my_url(), get_plink(), get_public_feed(), Item\get_template_data(), group_add(), group_rmv(), group_side(), home_content(), import_post(), import_xchan(), info(), invite_post(), item_post(), item_store(), item_store_update(), lang_selector(), load_contact_links(), local_user(), lostpass_content(), magic_init(), mail_content(), mail_post(), mail_store(), mood_content(), mood_init(), nav(), navbar_complete(), network_content(), new_channel_content(), new_cookie(), notice(), oexchange_content(), openid_content(), parse_url_content(), photo_upload(), photos_content(), photos_post(), ping_init(), poco_init(), poco_load(), poke_content(), poke_init(), post_activity_item(), post_init(), printable(), probe_content(), proc_run(), process_delivery(), profile_photo_post(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_post(), rbmark_content(), rbmark_post(), red_item_new(), ref_session_read(), register_content(), register_post(), App\register_template_engine(), regmod_content(), remote_user(), removeme_post(), rpost_content(), script_path(), search_ac_init(), search_content(), search_init(), 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(), widget_affinity(), widget_categories(), widget_filer(), widget_savedsearch(), widget_tagcloud(), xchan_content(), z_fetch_url(), z_post_url(), and zfinger_init().

    @@ -1419,7 +1421,7 @@ Variables
    -

    Referenced by allowed_public_recips(), authenticate_success(), bb_parse_crypt(), bbcode(), blocks_content(), chanlink_cid(), chanlink_hash(), chanlink_url(), channel_content(), channel_remove(), chat_content(), chat_post(), chatsvc_content(), check_config(), connect_post(), connections_content(), connections_post(), conversation(), create_identity(), deliver_run(), directory_content(), dirprofile_init(), display_content(), event_store(), externals_run(), filestorage_content(), find_upstream_directory(), follow_init(), format_categories(), format_filer(), RedBrowser\getAssetUrl(), group_post(), handle_tag(), App\head_get_icon(), head_get_icon(), home_init(), hostxrd_init(), import_post(), import_xchan(), invite_content(), item_post(), item_store(), layouts_content(), login_content(), lostpass_content(), lostpass_post(), magic_init(), magiclink_url(), mail_post(), manage_content(), menu_content(), menu_post(), mitem_content(), mitem_post(), mood_init(), nav(), navbar_complete(), network_content(), new_channel_post(), notification(), notifications_post(), notifier_run(), openid_content(), pagelist_widget(), parse_app_description(), pdledit_post(), photo_upload(), photos_album_widget(), photos_albums_list(), photos_create_item(), photos_list_photos(), post_activity_item(), post_init(), post_post(), profile_activity(), profile_sidebar(), public_recips(), pubsites_content(), rbmark_content(), rbmark_post(), register_post(), removeme_content(), rmagic_init(), rmagic_post(), rpost_content(), script_path(), search_content(), searchbox(), send_reg_approval_email(), send_verification_email(), setup_content(), setup_post(), siteinfo_content(), siteinfo_init(), sources_content(), sources_post(), sslify(), sync_directories(), tagger_content(), theme_attachments(), thing_init(), toggle_safesearch_init(), update_suggestions(), user_allow(), vcard_from_xchan(), webpages_content(), wfinger_init(), widget_archive(), widget_chatroom_list(), widget_dirtags(), widget_filer(), widget_savedsearch(), widget_suggestions(), xref_init(), zfinger_init(), zid_init(), zot_build_packet(), zot_fetch(), zot_new_uid(), and zot_refresh().

    +

    Referenced by allowed_public_recips(), app_render(), app_store(), app_update(), appman_post(), authenticate_success(), bb_parse_crypt(), bbcode(), blocks_content(), chanlink_cid(), chanlink_hash(), chanlink_url(), channel_content(), channel_remove(), chat_content(), chat_post(), chatsvc_content(), check_config(), connect_post(), connections_content(), connections_post(), conversation(), create_identity(), deliver_run(), directory_content(), dirprofile_init(), display_content(), event_store(), externals_run(), filestorage_content(), find_upstream_directory(), follow_init(), format_categories(), format_filer(), RedBrowser\getAssetUrl(), group_post(), handle_tag(), App\head_get_icon(), head_get_icon(), home_init(), hostxrd_init(), import_post(), import_xchan(), invite_content(), item_post(), item_store(), layouts_content(), login_content(), lostpass_content(), lostpass_post(), magic_init(), magiclink_url(), mail_post(), manage_content(), menu_content(), menu_post(), mitem_content(), mitem_post(), mood_init(), nav(), navbar_complete(), network_content(), new_channel_post(), notification(), notifications_post(), notifier_run(), openid_content(), pagelist_widget(), parse_app_description(), pdledit_post(), photo_upload(), photos_album_widget(), photos_albums_list(), photos_create_item(), photos_list_photos(), post_activity_item(), post_init(), post_post(), profile_activity(), profile_sidebar(), public_recips(), pubsites_content(), rbmark_content(), rbmark_post(), register_post(), removeme_content(), rmagic_init(), rmagic_post(), rpost_content(), script_path(), search_content(), searchbox(), send_reg_approval_email(), send_verification_email(), setup_content(), setup_post(), siteinfo_content(), siteinfo_init(), sources_content(), sources_post(), sslify(), sync_directories(), tagger_content(), theme_attachments(), thing_init(), toggle_safesearch_init(), update_suggestions(), user_allow(), vcard_from_xchan(), webpages_content(), wfinger_init(), widget_archive(), widget_chatroom_list(), widget_dirtags(), widget_filer(), widget_savedsearch(), widget_suggestions(), xref_init(), zfinger_init(), zid_init(), zot_build_packet(), zot_fetch(), zot_new_uid(), and zot_refresh().

    @@ -2217,7 +2219,7 @@ Variables
    - +
    const DB_UPDATE_VERSION 1107const DB_UPDATE_VERSION 1112
    @@ -2373,7 +2375,7 @@ Variables
    -

    Referenced by achievements_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_site_post(), admin_page_users(), api_content(), api_post(), attach_init(), block_content(), blocks_content(), bookmarks_content(), bookmarks_init(), channel_content(), channel_init(), chanview_content(), chat_content(), chat_init(), chatroom_enter(), check_account_email(), check_account_invite(), check_form_security_std_err_msg(), check_htaccess(), check_keys(), check_php(), check_store(), common_content(), common_init(), connect_init(), connections_content(), connections_post(), connedit_content(), connedit_post(), delegate_content(), directory_content(), dirprofile_init(), display_content(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), filestorage_content(), filestorage_post(), follow_init(), format_like(), fsuggest_content(), fsuggest_post(), group_add(), group_content(), group_post(), home_content(), import_post(), import_xchan(), importelm_post(), invite_content(), invite_post(), item_content(), item_post(), layouts_content(), like_content(), load_database(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), match_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_content(), network_content(), network_init(), new_channel_content(), new_channel_post(), notifications_content(), notifications_post(), oexchange_content(), openid_content(), page_content(), pdledit_content(), pdledit_post(), photos_content(), photos_post(), poke_content(), post_init(), post_post(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), pubsites_content(), register_content(), register_post(), regmod_content(), rmagic_post(), search_content(), settings_post(), setup_content(), sources_content(), sources_post(), subthread_content(), suggest_content(), tagrm_post(), thing_content(), thing_init(), user_allow(), user_deny(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), and xchan_content().

    +

    Referenced by achievements_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_site_post(), admin_page_users(), api_content(), api_post(), appman_content(), appman_post(), attach_init(), block_content(), blocks_content(), bookmarks_content(), bookmarks_init(), channel_content(), channel_init(), chanview_content(), chat_content(), chat_init(), chatroom_enter(), check_account_email(), check_account_invite(), check_form_security_std_err_msg(), check_htaccess(), check_keys(), check_php(), check_store(), common_content(), common_init(), connect_init(), connections_content(), connections_post(), connedit_content(), connedit_post(), delegate_content(), directory_content(), dirprofile_init(), display_content(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), filestorage_content(), filestorage_post(), follow_init(), format_like(), fsuggest_content(), fsuggest_post(), group_add(), group_content(), group_post(), home_content(), import_post(), import_xchan(), importelm_post(), invite_content(), invite_post(), item_content(), item_post(), layouts_content(), like_content(), load_database(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), match_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_content(), network_content(), network_init(), new_channel_content(), new_channel_post(), notifications_content(), notifications_post(), oexchange_content(), openid_content(), page_content(), pdledit_content(), pdledit_post(), photos_content(), photos_post(), poke_content(), post_init(), post_post(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), pubsites_content(), register_content(), register_post(), regmod_content(), rmagic_post(), search_content(), settings_post(), setup_content(), sources_content(), sources_post(), subthread_content(), suggest_content(), tagrm_post(), thing_content(), thing_init(), user_allow(), user_deny(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), and xchan_content().

    @@ -3124,12 +3126,14 @@ Variables
    - +
    const MAX_LIKERS 75const MAX_LIKERS 10

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

    +

    Referenced by Item\get_template_data().

    +
    @@ -4522,6 +4526,18 @@ Variables

    Referenced by conversation(), decode_tags(), encode_item_terms(), fetch_post_tags(), format_term_for_display(), get_atom_elements(), get_mentions(), handle_tag(), item_getfeedtags(), tag_deliver(), and tgroup_check().

    + + + +
    +
    + + + + +
    const TERM_OBJ_APP 7
    +
    +
    diff --git a/doc/html/boot_8php.js b/doc/html/boot_8php.js index 8ba7af424..7f6e15c6e 100644 --- a/doc/html/boot_8php.js +++ b/doc/html/boot_8php.js @@ -264,6 +264,7 @@ var boot_8php = [ "TERM_FILE", "boot_8php.html#afb97615e985a013799839b68b99018d7", null ], [ "TERM_HASHTAG", "boot_8php.html#a2750985ec445617d7e82ae3098c91e3f", null ], [ "TERM_MENTION", "boot_8php.html#ae37444eaa42705185080ccf3e670cbc2", null ], + [ "TERM_OBJ_APP", "boot_8php.html#ace6d70ac290397ddd40e561fd0831858", null ], [ "TERM_OBJ_CHANNEL", "boot_8php.html#a8892374789fd261eb32a7969d934a14a", null ], [ "TERM_OBJ_OBJECT", "boot_8php.html#a882b666adfe21f035a0f8c02806066d6", null ], [ "TERM_OBJ_PHOTO", "boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd", null ], diff --git a/doc/html/classItem.html b/doc/html/classItem.html index 2fccecd96..131cf6d82 100644 --- a/doc/html/classItem.html +++ b/doc/html/classItem.html @@ -180,7 +180,7 @@ Protected Member Functions Private Member Functions  get_template ()   - set_template ($t) + set_template ($t)    is_toplevel ()   diff --git a/doc/html/dba__driver_8php.html b/doc/html/dba__driver_8php.html index 9ce6da914..e9c29d516 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(), achievements_content(), acl_init(), add_source_route(), admin_page_users(), allowed_public_recips(), api_direct_messages_new(), api_get_user(), api_status_show(), api_statuses_destroy(), api_statuses_mentions(), api_user(), api_users_show(), attach_by_hash(), attach_by_hash_nodata(), attach_change_permissions(), attach_count_files(), attach_delete(), attach_list_files(), attach_mkdir(), attach_store(), authenticate_success(), block_content(), blocks_content(), bookmark_add(), bookmarks_init(), build_sync_packet(), call_hooks(), categories_widget(), change_channel(), channel_content(), channel_remove(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), chat_message(), chat_post(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatroom_leave(), chatsvc_content(), chatsvc_post(), check_account_email(), check_account_invite(), check_item_source(), check_webbie(), Cache\clear(), comanche_block(), common_friends(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_post(), consume_feed(), contact_remove(), contactgroup_content(), count_common_friends(), create_account(), create_identity(), RedDirectory\createFile(), dbesc_array_cb(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), dir_query_build(), directory_run(), dirsearch_content(), display_content(), downgrade_accounts(), editlayout_content(), editpost_content(), editwebpage_content(), event_store(), events_content(), events_post(), externals_run(), fbrowser_content(), feed_init(), fetch_post_tags(), file_tag_file_query(), filerm_content(), filestorage_content(), fix_attached_photo_permissions(), fix_private_photos(), fix_system_urls(), fsuggest_post(), Cache\get(), RedFile\get(), get_all_perms(), get_birthdays(), get_channel_by_nick(), get_cloudpath(), get_config_from_storage(), get_events(), get_item_elements(), get_online_status(), RedDirectory\getDir(), RedDirectory\getLastModified(), 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(), home_content(), import_author_rss(), import_author_zot(), 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(), layouts_content(), like_content(), load_config(), load_plugin(), load_xconfig(), local_dir_update(), lockview_content(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_store(), match_openid(), member_of(), menu_add_item(), menu_create(), menu_delete(), menu_edit(), menu_edit_item(), menu_fetch(), menu_list(), msearch_post(), network_content(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), FKOAuthDataStore\new_request_token(), notification(), notifier_run(), notify_init(), oauth_get_client(), oembed_fetch_url(), onedirsync_run(), onepoll_run(), openid_content(), 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(), plugin_is_installed(), 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(), process_profile_delivery(), profile_init(), profile_load(), profile_photo_post(), profile_photo_set_profile_perms(), profiles_init(), profiles_post(), profperm_content(), prune_hub_reinstalls(), public_permissions_sql(), public_recips(), RedFile\put(), queue_run(), rconnect_url(), red_zrl_callback(), red_zrlify_img_callback(), RedCollectionData(), RedFileData(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), register_hook(), register_post(), remote_online_status(), remove_all_xchan_resources(), remove_community_tag(), remove_queue_item(), rmagic_init(), rmagic_post(), photo_driver\save(), search_ac_init(), search_content(), send_message(), send_reg_approval_email(), send_status_notifications(), Cache\set(), set_config(), set_pconfig(), set_xconfig(), RedFile\setName(), settings_post(), siteinfo_init(), sources_content(), sources_post(), photo_driver\store(), store_item_tag(), stream_perms_xchans(), stringify_array_elms(), subthread_content(), suggest_init(), sync_directories(), tag_deliver(), tagger_content(), tagrm_post(), term_query(), tgroup_check(), thing_content(), thing_init(), tryzrlaudio(), tryzrlvideo(), uninstall_plugin(), unregister_hook(), update_directory_entry(), update_modtime(), update_queue_time(), update_remote_id(), user_allow(), user_deny(), RedBasicAuth\validateUserPass(), vcard_from_xchan(), vote_post(), webpages_content(), wfinger_init(), widget_bookmarkedchats(), widget_item(), widget_savedsearch(), xchan_content(), xchan_mail_query(), xchan_query(), xrd_init(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hublocs(), zot_gethub(), zot_process_response(), zot_refresh(), and zotfeed_init().

    +

    Referenced by account_verify_password(), achievements_content(), acl_init(), add_source_route(), admin_page_users(), allowed_public_recips(), api_direct_messages_new(), api_get_user(), api_status_show(), api_statuses_destroy(), api_statuses_mentions(), api_user(), api_users_show(), app_destroy(), app_installed(), app_store(), app_update(), appman_content(), attach_by_hash(), attach_by_hash_nodata(), attach_change_permissions(), attach_count_files(), attach_delete(), attach_list_files(), attach_mkdir(), attach_store(), authenticate_success(), block_content(), blocks_content(), bookmark_add(), bookmarks_init(), build_sync_packet(), call_hooks(), categories_widget(), change_channel(), channel_content(), channel_remove(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), chat_message(), chat_post(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatroom_leave(), chatsvc_content(), chatsvc_post(), check_account_email(), check_account_invite(), check_item_source(), check_webbie(), Cache\clear(), comanche_block(), common_friends(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_post(), consume_feed(), contact_remove(), contactgroup_content(), count_common_friends(), create_account(), create_identity(), RedDirectory\createFile(), dbesc_array_cb(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), dir_query_build(), directory_run(), dirsearch_content(), display_content(), downgrade_accounts(), editlayout_content(), editpost_content(), editwebpage_content(), event_store(), events_content(), events_post(), externals_run(), fbrowser_content(), feed_init(), fetch_post_tags(), file_tag_file_query(), filerm_content(), filestorage_content(), fix_attached_photo_permissions(), fix_private_photos(), fix_system_urls(), fsuggest_post(), Cache\get(), RedFile\get(), get_all_perms(), get_birthdays(), get_channel_by_nick(), get_cloudpath(), get_config_from_storage(), get_events(), get_item_elements(), get_online_status(), RedDirectory\getDir(), RedDirectory\getLastModified(), 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(), home_content(), import_author_rss(), import_author_zot(), 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(), layouts_content(), like_content(), load_config(), load_plugin(), load_xconfig(), local_dir_update(), lockview_content(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_store(), match_openid(), member_of(), menu_add_item(), menu_create(), menu_delete(), menu_edit(), menu_edit_item(), menu_fetch(), menu_list(), msearch_post(), network_content(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), FKOAuthDataStore\new_request_token(), notification(), notifier_run(), notify_init(), oauth_get_client(), oembed_fetch_url(), onedirsync_run(), onepoll_run(), openid_content(), 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(), plugin_is_installed(), 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(), process_profile_delivery(), profile_init(), profile_load(), profile_photo_post(), profile_photo_set_profile_perms(), profiles_init(), profiles_post(), profperm_content(), prune_hub_reinstalls(), public_permissions_sql(), public_recips(), RedFile\put(), queue_run(), rconnect_url(), red_zrl_callback(), red_zrlify_img_callback(), RedCollectionData(), RedFileData(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), register_hook(), register_post(), remote_online_status(), remove_all_xchan_resources(), remove_community_tag(), remove_queue_item(), rmagic_init(), rmagic_post(), photo_driver\save(), search_ac_init(), search_content(), send_message(), send_reg_approval_email(), send_status_notifications(), Cache\set(), set_config(), set_pconfig(), set_xconfig(), RedFile\setName(), settings_post(), siteinfo_init(), sources_content(), sources_post(), photo_driver\store(), store_item_tag(), stream_perms_xchans(), stringify_array_elms(), subthread_content(), suggest_init(), sync_directories(), tag_deliver(), tagger_content(), tagrm_post(), term_query(), tgroup_check(), thing_content(), thing_init(), tryzrlaudio(), tryzrlvideo(), uninstall_plugin(), unregister_hook(), update_directory_entry(), update_modtime(), update_queue_time(), update_remote_id(), user_allow(), user_deny(), RedBasicAuth\validateUserPass(), vcard_from_xchan(), vote_post(), webpages_content(), wfinger_init(), widget_bookmarkedchats(), widget_item(), widget_savedsearch(), xchan_content(), xchan_mail_query(), xchan_query(), xrd_init(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hublocs(), zot_gethub(), zot_process_response(), zot_refresh(), and zotfeed_init().

    @@ -318,7 +318,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(), achievements_content(), acl_init(), add_source_route(), admin_content(), admin_page_channels(), admin_page_channels_post(), admin_page_dbsync(), admin_page_hubloc(), admin_page_hubloc_post(), admin_page_summary(), admin_page_users(), admin_page_users_post(), all_friends(), 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_destroy(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_user(), api_users_show(), attach_by_hash(), attach_by_hash_nodata(), attach_change_permissions(), attach_count_files(), attach_delete(), attach_init(), attach_list_files(), attach_mkdir(), attach_store(), authenticate_success(), block_content(), blocks_content(), bookmark_add(), bookmarks_init(), build_sync_packet(), call_hooks(), categories_widget(), change_channel(), chanman_remove_everything_from_network(), channel_content(), channel_remove(), channel_total(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), chat_content(), chat_message(), chat_post(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatroom_leave(), chatroom_list(), chatsvc_content(), chatsvc_init(), chatsvc_post(), check_account_email(), check_account_invite(), check_config(), check_item_source(), check_webbie(), Cache\clear(), collect_recipients(), comanche_block(), common_friends(), common_friends_zcid(), common_init(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_init(), connedit_post(), consume_feed(), contact_block(), contact_profile_assign(), contact_remove(), contact_select(), contactgroup_content(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), create_account(), create_identity(), RedDirectory\createDirectory(), RedDirectory\createFile(), current_theme(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), dir_parse_query(), dir_tagadelic(), directory_content(), directory_run(), dirprofile_init(), dirsearch_content(), display_content(), downgrade_accounts(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), encode_item(), event_store(), events_content(), expand_groups(), expire_run(), externals_run(), fbrowser_content(), feed_init(), fetch_post_tags(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), first_post_date(), fix_attached_photo_permissions(), fix_private_photos(), fix_system_urls(), fsuggest_content(), fsuggest_post(), Cache\get(), RedFile\get(), get_all_perms(), get_birthdays(), get_channel_by_nick(), get_cloudpath(), get_config_from_storage(), get_events(), get_item_elements(), get_online_status(), get_sys_channel(), get_things(), get_words(), RedDirectory\getDir(), RedDirectory\getLastModified(), RedDirectory\getQuotaInfo(), 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(), home_content(), identity_basic_export(), identity_check_service_class(), identity_selector(), import_author_rss(), import_author_zot(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), invite_post(), is_sys_channel(), item_check_service_class(), item_content(), item_expire(), item_message_id(), item_post(), item_store(), item_store_update(), items_fetch(), layout_select(), layouts_content(), like_content(), list_public_sites(), load_config(), load_contact_links(), load_hooks(), load_pconfig(), load_plugin(), load_translation_table(), load_xconfig(), local_dir_update(), lockview_content(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_store(), manage_content(), match_content(), match_openid(), 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(), mimetype_select(), mini_group_select(), mitem_content(), mood_init(), msearch_post(), network_content(), 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(), oembed_fetch_url(), onedirsync_run(), onepoll_run(), openid_content(), page_content(), pagelist_widget(), pdl_selector(), 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(), plugin_is_installed(), 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(), process_profile_delivery(), profile_init(), profile_load(), profile_photo_post(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), prune_hub_reinstalls(), public_recips(), RedFile\put(), queue_run(), random_profile(), rconnect_url(), red_zrl_callback(), red_zrlify_img_callback(), RedChannelList(), RedCollectionData(), RedFileData(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), register_content(), register_hook(), register_post(), reload_plugins(), remote_online_status(), remove_all_xchan_resources(), remove_community_tag(), remove_queue_item(), retain_item(), rmagic_init(), rmagic_post(), photo_driver\save(), search_ac_init(), search_content(), 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(), RedFile\setName(), settings_post(), setup_content(), share_init(), siteinfo_content(), siteinfo_init(), sitelist_init(), sources_content(), sources_post(), starred_init(), photo_driver\store(), store_item_tag(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), suggest_init(), suggestion_query(), sync_directories(), tag_deliver(), tagadelic(), tagger_content(), tagrm_content(), tagrm_post(), tgroup_check(), thing_content(), thing_init(), tryzrlaudio(), tryzrlvideo(), uninstall_plugin(), unregister_hook(), update_directory_entry(), update_modtime(), update_queue_time(), update_remote_id(), update_suggestions(), user_allow(), user_deny(), RedBasicAuth\validateUserPass(), vcard_from_xchan(), viewconnections_content(), viewsrc_content(), vote_content(), vote_init(), vote_post(), webpages_content(), wfinger_init(), widget_bookmarkedchats(), widget_filer(), widget_follow(), widget_item(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), xchan_content(), xchan_mail_query(), xchan_query(), xrd_init(), z_input_filter(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hublocs(), 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(), achievements_content(), acl_init(), add_source_route(), admin_content(), admin_page_channels(), admin_page_channels_post(), admin_page_dbsync(), admin_page_hubloc(), admin_page_hubloc_post(), admin_page_summary(), admin_page_users(), admin_page_users_post(), all_friends(), 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_destroy(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_user(), api_users_show(), app_destroy(), app_installed(), app_list(), app_store(), app_update(), appman_content(), attach_by_hash(), attach_by_hash_nodata(), attach_change_permissions(), attach_count_files(), attach_delete(), attach_init(), attach_list_files(), attach_mkdir(), attach_store(), authenticate_success(), block_content(), blocks_content(), bookmark_add(), bookmarks_init(), build_sync_packet(), call_hooks(), categories_widget(), change_channel(), chanman_remove_everything_from_network(), channel_content(), channel_remove(), channel_total(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), chat_content(), chat_message(), chat_post(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatroom_leave(), chatroom_list(), chatsvc_content(), chatsvc_init(), chatsvc_post(), check_account_email(), check_account_invite(), check_config(), check_item_source(), check_webbie(), Cache\clear(), collect_recipients(), comanche_block(), common_friends(), common_friends_zcid(), common_init(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_init(), connedit_post(), consume_feed(), contact_block(), contact_profile_assign(), contact_remove(), contact_select(), contactgroup_content(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), create_account(), create_identity(), RedDirectory\createDirectory(), RedDirectory\createFile(), current_theme(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), dir_parse_query(), dir_tagadelic(), directory_content(), directory_run(), dirprofile_init(), dirsearch_content(), display_content(), downgrade_accounts(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), encode_item(), event_store(), events_content(), expand_groups(), expire_run(), externals_run(), fbrowser_content(), feed_init(), fetch_post_tags(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), first_post_date(), fix_attached_photo_permissions(), fix_private_photos(), fix_system_urls(), fsuggest_content(), fsuggest_post(), Cache\get(), RedFile\get(), get_all_perms(), get_birthdays(), get_channel_by_nick(), get_cloudpath(), get_config_from_storage(), get_events(), get_item_elements(), get_online_status(), get_sys_channel(), get_things(), get_words(), RedDirectory\getDir(), RedDirectory\getLastModified(), RedDirectory\getQuotaInfo(), 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(), home_content(), identity_basic_export(), identity_check_service_class(), identity_selector(), import_author_rss(), import_author_zot(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), invite_post(), is_sys_channel(), item_check_service_class(), item_content(), item_expire(), item_message_id(), item_post(), item_store(), item_store_update(), items_fetch(), layout_select(), layouts_content(), like_content(), list_public_sites(), load_config(), load_contact_links(), load_hooks(), load_pconfig(), load_plugin(), load_translation_table(), load_xconfig(), local_dir_update(), lockview_content(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_store(), manage_content(), match_content(), match_openid(), 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(), mimetype_select(), mini_group_select(), mitem_content(), mood_init(), msearch_post(), network_content(), 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(), oembed_fetch_url(), onedirsync_run(), onepoll_run(), openid_content(), page_content(), pagelist_widget(), pdl_selector(), 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(), plugin_is_installed(), 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(), process_profile_delivery(), profile_init(), profile_load(), profile_photo_post(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), prune_hub_reinstalls(), public_recips(), RedFile\put(), queue_run(), random_profile(), rconnect_url(), red_zrl_callback(), red_zrlify_img_callback(), RedChannelList(), RedCollectionData(), RedFileData(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), register_content(), register_hook(), register_post(), reload_plugins(), remote_online_status(), remove_all_xchan_resources(), remove_community_tag(), remove_queue_item(), retain_item(), rmagic_init(), rmagic_post(), photo_driver\save(), search_ac_init(), search_content(), 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(), RedFile\setName(), settings_post(), setup_content(), share_init(), siteinfo_content(), siteinfo_init(), sitelist_init(), sources_content(), sources_post(), starred_init(), photo_driver\store(), store_item_tag(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), suggest_init(), suggestion_query(), sync_directories(), tag_deliver(), tagadelic(), tagger_content(), tagrm_content(), tagrm_post(), tgroup_check(), thing_content(), thing_init(), tryzrlaudio(), tryzrlvideo(), uninstall_plugin(), unregister_hook(), update_directory_entry(), update_modtime(), update_queue_time(), update_remote_id(), update_suggestions(), user_allow(), user_deny(), RedBasicAuth\validateUserPass(), vcard_from_xchan(), viewconnections_content(), viewsrc_content(), vote_content(), vote_init(), vote_post(), webpages_content(), wfinger_init(), widget_bookmarkedchats(), widget_filer(), widget_follow(), widget_item(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), xchan_content(), xchan_mail_query(), xchan_query(), xrd_init(), z_input_filter(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hublocs(), 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 9a7a37a17..2f368800e 100644 --- a/doc/html/dir_d41ce877eb409a4791b288730010abe2.html +++ b/doc/html/dir_d41ce877eb409a4791b288730010abe2.html @@ -114,6 +114,8 @@ Files   file  api.php   +file  appman.php +  file  apps.php   file  attach.php diff --git a/doc/html/dir_d41ce877eb409a4791b288730010abe2.js b/doc/html/dir_d41ce877eb409a4791b288730010abe2.js index eed058e44..684879136 100644 --- a/doc/html/dir_d41ce877eb409a4791b288730010abe2.js +++ b/doc/html/dir_d41ce877eb409a4791b288730010abe2.js @@ -5,6 +5,7 @@ var dir_d41ce877eb409a4791b288730010abe2 = [ "acl.php", "acl_8php.html", "acl_8php" ], [ "admin.php", "admin_8php.html", "admin_8php" ], [ "api.php", "mod_2api_8php.html", "mod_2api_8php" ], + [ "appman.php", "appman_8php.html", "appman_8php" ], [ "apps.php", "mod_2apps_8php.html", "mod_2apps_8php" ], [ "attach.php", "mod_2attach_8php.html", "mod_2attach_8php" ], [ "block.php", "block_8php.html", "block_8php" ], diff --git a/doc/html/extract_8php.html b/doc/html/extract_8php.html index 123430af5..eaa8e007f 100644 --- a/doc/html/extract_8php.html +++ b/doc/html/extract_8php.html @@ -132,7 +132,7 @@ Variables
    -

    Referenced by _well_known_init(), activity_sanitise(), api_rss_extra(), api_statuses_user_timeline(), array_sanitise(), attach_mkdir(), attach_store(), bookmark_add(), chat_message(), chat_post(), chatroom_create(), chatroom_destroy(), chatsvc_post(), check_account_admin(), check_account_email(), check_account_invite(), check_account_password(), check_list_permissions(), check_webbie(), connect_content(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_block(), contact_select(), conversation(), create_account(), create_identity(), dbesc_array(), directory_content(), drop_item(), event_store(), externals_run(), feature_enabled(), find_xchan_in_array(), format_like(), get_all_perms(), get_atom_elements(), get_cloudpath(), 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(), hostxrd_init(), ids_to_querystr(), import_author_rss(), import_author_xchan(), import_directory_profile(), import_post(), import_site(), import_xchan(), item_getfeedattach(), item_store(), item_store_update(), items_fetch(), like_content(), like_puller(), load_database(), 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(), openid_content(), parse_url_content(), pdl_selector(), perm_is_allowed(), photo_upload(), photos_album_get_db_idstr(), photos_create_item(), ping_init(), po2php_run(), poke_init(), post_activity_item(), post_init(), post_post(), proc_run(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), process_profile_delivery(), profile_activity(), profile_sidebar(), profiles_content(), redbasic_form(), register_page_template(), register_post(), remove_community_tag(), replace_macros(), rmagic_post(), 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(), tag_deliver(), tagger_content(), tagrm_content(), tagrm_post(), theme_attachments(), theme_content(), thing_init(), translate_system_apps(), validate_channelname(), wfinger_init(), widget_affinity(), widget_archive(), widget_clock(), widget_item(), widget_photo(), widget_suggestions(), widget_tagcloud_wall(), xchan_mail_query(), xchan_query(), xml2array(), xrd_init(), zfinger_init(), zid(), zid_init(), zot_fetch(), zot_gethub(), zot_import(), zot_process_response(), and zot_register_hub().

    +

    Referenced by _well_known_init(), activity_sanitise(), api_rss_extra(), api_statuses_user_timeline(), app_store(), app_update(), appman_post(), array_sanitise(), attach_mkdir(), attach_store(), bookmark_add(), chat_message(), chat_post(), chatroom_create(), chatroom_destroy(), chatsvc_post(), check_account_admin(), check_account_email(), check_account_invite(), check_account_password(), check_list_permissions(), check_webbie(), connect_content(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_block(), contact_select(), conversation(), create_account(), create_identity(), dbesc_array(), directory_content(), drop_item(), event_store(), externals_run(), feature_enabled(), find_xchan_in_array(), format_like(), get_all_perms(), get_atom_elements(), get_cloudpath(), 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(), hostxrd_init(), ids_to_querystr(), import_author_rss(), import_author_xchan(), import_directory_profile(), import_post(), import_site(), import_xchan(), item_getfeedattach(), item_store(), item_store_update(), items_fetch(), like_content(), like_puller(), load_database(), 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(), openid_content(), parse_url_content(), pdl_selector(), perm_is_allowed(), photo_upload(), photos_album_get_db_idstr(), photos_create_item(), ping_init(), po2php_run(), poke_init(), post_activity_item(), post_init(), post_post(), proc_run(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), process_profile_delivery(), profile_activity(), profile_sidebar(), profiles_content(), redbasic_form(), register_page_template(), register_post(), remove_community_tag(), replace_macros(), rmagic_post(), 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(), tag_deliver(), tagger_content(), tagrm_content(), tagrm_post(), theme_attachments(), theme_content(), thing_init(), translate_system_apps(), validate_channelname(), wfinger_init(), widget_affinity(), widget_archive(), widget_clock(), widget_item(), widget_photo(), widget_suggestions(), widget_tagcloud_wall(), xchan_mail_query(), xchan_query(), xml2array(), xrd_init(), zfinger_init(), zid(), zid_init(), zot_fetch(), zot_gethub(), zot_import(), zot_process_response(), and zot_register_hub().

    @@ -160,7 +160,7 @@ Variables
    -

    Referenced by Template\_build_nodes(), Template\_replcb_node(), admin_page_themes(), attribute_contains(), base64url_decode(), base64url_encode(), bb_tag_preg_replace(), bb_translate_video(), bbtoevent(), bbtovcal(), bookmarks_init(), chanlink_hash(), chanlink_url(), comanche_parser(), comanche_region(), comanche_webpage(), construct_page(), datetime_convert(), day_translate(), detect_language(), diaspora2bb(), diaspora_ol(), diaspora_ul(), dir_parse_query(), dir_query_build(), expand_acl(), file_tag_decode(), file_tag_encode(), file_tag_file_query(), fix_mce_lf(), fix_private_photos(), format_categories(), format_filer(), format_hashtags(), format_term_for_display(), get_bb_tag_pos(), get_intltext_template(), get_language_name(), get_markup_template(), get_tags(), html2bb_video(), info(), is_a_date_arg(), is_foreigner(), is_member(), json_decode_plus(), legal_webbie(), linkify(), magic_link(), mail_content(), network_to_name(), normalise_openid(), notice(), notifier_run(), oembed_iframe(), oembed_replacecb(), oexchange_content(), parse_xml_string(), photos_post(), poco_load(), prepare_body(), print_template(), printable(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), protect_sprintf(), purify_html(), qp(), random_string(), Template\replace(), replace_macros(), FriendicaSmartyEngine\replace_macros(), Template\replace_macros(), scale_external_images(), search(), searchbox(), siteinfo_content(), smilies(), sslify(), string_splitter(), strip_zids(), stripdcode_br_cb(), t(), template_escape(), template_unescape(), term_query(), theme_attachments(), unamp(), undo_post_tagging(), unxmlify(), Template\var_replace(), webfinger(), webfinger_dfrn(), x(), z_fetch_url(), z_input_filter(), z_post_url(), zfinger_init(), and zid().

    +

    Referenced by Template\_build_nodes(), Template\_replcb_node(), admin_page_themes(), app_decode(), attribute_contains(), base64url_decode(), base64url_encode(), bb_tag_preg_replace(), bb_translate_video(), bbtoevent(), bbtovcal(), bookmarks_init(), chanlink_hash(), chanlink_url(), comanche_parser(), comanche_region(), comanche_webpage(), construct_page(), datetime_convert(), day_translate(), detect_language(), diaspora2bb(), diaspora_ol(), diaspora_ul(), dir_parse_query(), dir_query_build(), expand_acl(), file_tag_decode(), file_tag_encode(), file_tag_file_query(), fix_mce_lf(), fix_private_photos(), format_categories(), format_filer(), format_hashtags(), format_term_for_display(), get_bb_tag_pos(), get_intltext_template(), get_language_name(), get_markup_template(), get_tags(), html2bb_video(), info(), is_a_date_arg(), is_foreigner(), is_member(), json_decode_plus(), legal_webbie(), linkify(), magic_link(), mail_content(), network_to_name(), normalise_openid(), notice(), notifier_run(), oembed_iframe(), oembed_replacecb(), oexchange_content(), parse_xml_string(), photos_post(), poco_load(), prepare_body(), print_template(), printable(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), protect_sprintf(), purify_html(), qp(), random_string(), Template\replace(), replace_macros(), FriendicaSmartyEngine\replace_macros(), Template\replace_macros(), scale_external_images(), search(), searchbox(), siteinfo_content(), smilies(), sslify(), string_splitter(), strip_zids(), stripdcode_br_cb(), t(), template_escape(), template_unescape(), term_query(), theme_attachments(), unamp(), undo_post_tagging(), unxmlify(), Template\var_replace(), webfinger(), webfinger_dfrn(), x(), z_fetch_url(), z_input_filter(), z_post_url(), zfinger_init(), and zid().

    diff --git a/doc/html/features_8php.html b/doc/html/features_8php.html index c6ae11acd..c81ac0bc4 100644 --- a/doc/html/features_8php.html +++ b/doc/html/features_8php.html @@ -142,7 +142,7 @@ Functions diff --git a/doc/html/files.html b/doc/html/files.html index a22db8174..8db54bf54 100644 --- a/doc/html/files.html +++ b/doc/html/files.html @@ -201,135 +201,136 @@ $(document).ready(function(){initNavTree('files.html','');}); |o*acl.php |o*admin.php |o*api.php -|o*apps.php -|o*attach.php -|o*block.php -|o*blocks.php -|o*bookmarks.php -|o*chanman.php -|o*channel.php -|o*chanview.php -|o*chat.php -|o*chatsvc.php -|o*cloud.php -|o*common.php -|o*connect.php -|o*connections.php -|o*connedit.php -|o*contactgroup.php -|o*delegate.php -|o*directory.php -|o*dirprofile.php -|o*dirsearch.php -|o*display.php -|o*editblock.php -|o*editlayout.php -|o*editpost.php -|o*editwebpage.php -|o*events.php -|o*fbrowser.php -|o*feed.php -|o*filer.php -|o*filerm.php -|o*filestorage.php -|o*follow.php -|o*fsuggest.php -|o*group.php -|o*help.php -|o*home.php -|o*hostxrd.php -|o*import.php -|o*importelm.php -|o*invite.php -|o*item.php -|o*lang.php -|o*layouts.php -|o*like.php -|o*lockview.php -|o*login.php -|o*lostpass.php -|o*magic.php -|o*mail.php -|o*manage.php -|o*match.php -|o*menu.php -|o*message.php -|o*mitem.php -|o*mood.php -|o*msearch.php -|o*network.php -|o*new_channel.php -|o*notes.php -|o*notifications.php -|o*notify.php -|o*oembed.php -|o*oexchange.php -|o*online.php -|o*openid.php -|o*opensearch.php -|o*page.php -|o*parse_url.php -|o*pdledit.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*pubsites.php -|o*randprof.php -|o*rbmark.php -|o*register.php -|o*regmod.php -|o*removeme.php -|o*rmagic.php -|o*rpost.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*sources.php -|o*sslify.php -|o*starred.php -|o*subthread.php -|o*suggest.php -|o*tagger.php -|o*tagrm.php -|o*thing.php -|o*toggle_mobile.php -|o*toggle_safesearch.php -|o*uexport.php -|o*update_channel.php -|o*update_display.php -|o*update_network.php -|o*update_search.php -|o*view.php -|o*viewconnections.php -|o*viewsrc.php -|o*vote.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*xref.php -|o*zfinger.php -|o*zotfeed.php -|\*zping.php +|o*appman.php +|o*apps.php +|o*attach.php +|o*block.php +|o*blocks.php +|o*bookmarks.php +|o*chanman.php +|o*channel.php +|o*chanview.php +|o*chat.php +|o*chatsvc.php +|o*cloud.php +|o*common.php +|o*connect.php +|o*connections.php +|o*connedit.php +|o*contactgroup.php +|o*delegate.php +|o*directory.php +|o*dirprofile.php +|o*dirsearch.php +|o*display.php +|o*editblock.php +|o*editlayout.php +|o*editpost.php +|o*editwebpage.php +|o*events.php +|o*fbrowser.php +|o*feed.php +|o*filer.php +|o*filerm.php +|o*filestorage.php +|o*follow.php +|o*fsuggest.php +|o*group.php +|o*help.php +|o*home.php +|o*hostxrd.php +|o*import.php +|o*importelm.php +|o*invite.php +|o*item.php +|o*lang.php +|o*layouts.php +|o*like.php +|o*lockview.php +|o*login.php +|o*lostpass.php +|o*magic.php +|o*mail.php +|o*manage.php +|o*match.php +|o*menu.php +|o*message.php +|o*mitem.php +|o*mood.php +|o*msearch.php +|o*network.php +|o*new_channel.php +|o*notes.php +|o*notifications.php +|o*notify.php +|o*oembed.php +|o*oexchange.php +|o*online.php +|o*openid.php +|o*opensearch.php +|o*page.php +|o*parse_url.php +|o*pdledit.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*pubsites.php +|o*randprof.php +|o*rbmark.php +|o*register.php +|o*regmod.php +|o*removeme.php +|o*rmagic.php +|o*rpost.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*sources.php +|o*sslify.php +|o*starred.php +|o*subthread.php +|o*suggest.php +|o*tagger.php +|o*tagrm.php +|o*thing.php +|o*toggle_mobile.php +|o*toggle_safesearch.php +|o*uexport.php +|o*update_channel.php +|o*update_display.php +|o*update_network.php +|o*update_search.php +|o*view.php +|o*viewconnections.php +|o*viewsrc.php +|o*vote.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*xref.php +|o*zfinger.php +|o*zotfeed.php +|\*zping.php o+util |o+fpostit ||\*fpostit.php diff --git a/doc/html/globals_0x61.html b/doc/html/globals_0x61.html index aff176b31..08e4c8ab3 100644 --- a/doc/html/globals_0x61.html +++ b/doc/html/globals_0x61.html @@ -561,9 +561,45 @@ $(document).ready(function(){initNavTree('globals_0x61.html','');});
  • api_users_show() : api.php
  • +
  • app_decode() +: apps.php +
  • +
  • app_destroy() +: apps.php +
  • +
  • app_encode() +: apps.php +
  • +
  • app_install() +: apps.php +
  • +
  • app_installed() +: apps.php +
  • +
  • app_list() +: apps.php +
  • +
  • app_name_compare() +: apps.php +
  • +
  • app_render() +: apps.php +
  • +
  • app_store() +: apps.php +
  • +
  • app_update() +: apps.php +
  • appdirpath() : boot.php
  • +
  • appman_content() +: appman.php +
  • +
  • appman_post() +: appman.php +
  • apps_content() : apps.php
  • diff --git a/doc/html/globals_0x62.html b/doc/html/globals_0x62.html index 0a25805ff..038121491 100644 --- a/doc/html/globals_0x62.html +++ b/doc/html/globals_0x62.html @@ -156,6 +156,9 @@ $(document).ready(function(){initNavTree('globals_0x62.html','');});
  • bb_location() : bbcode.php
  • +
  • bb_parse_app() +: bbcode.php +
  • bb_parse_crypt() : bbcode.php
  • @@ -220,7 +223,7 @@ $(document).ready(function(){initNavTree('globals_0x62.html','');}); : theme.php
  • blogtheme_form() -: config.php +: config.php
  • blogtheme_imgurl() : theme.php diff --git a/doc/html/globals_0x70.html b/doc/html/globals_0x70.html index b4a85d829..46c4002ee 100644 --- a/doc/html/globals_0x70.html +++ b/doc/html/globals_0x70.html @@ -189,6 +189,9 @@ $(document).ready(function(){initNavTree('globals_0x70.html','');});
  • paginate() : text.php
  • +
  • papp_encode() +: apps.php +
  • parse_app_description() : apps.php
  • diff --git a/doc/html/globals_0x74.html b/doc/html/globals_0x74.html index cd2a6d2bf..54d7ac4b9 100644 --- a/doc/html/globals_0x74.html +++ b/doc/html/globals_0x74.html @@ -145,7 +145,7 @@ $(document).ready(function(){initNavTree('globals_0x74.html','');});

    - t -

    diff --git a/doc/html/globals_func_0x61.html b/doc/html/globals_func_0x61.html index a5b25bf26..8564aac27 100644 --- a/doc/html/globals_func_0x61.html +++ b/doc/html/globals_func_0x61.html @@ -416,9 +416,45 @@ $(document).ready(function(){initNavTree('globals_func_0x61.html','');});
  • api_users_show() : api.php
  • +
  • app_decode() +: apps.php +
  • +
  • app_destroy() +: apps.php +
  • +
  • app_encode() +: apps.php +
  • +
  • app_install() +: apps.php +
  • +
  • app_installed() +: apps.php +
  • +
  • app_list() +: apps.php +
  • +
  • app_name_compare() +: apps.php +
  • +
  • app_render() +: apps.php +
  • +
  • app_store() +: apps.php +
  • +
  • app_update() +: apps.php +
  • appdirpath() : boot.php
  • +
  • appman_content() +: appman.php +
  • +
  • appman_post() +: appman.php +
  • apps_content() : apps.php
  • diff --git a/doc/html/globals_func_0x62.html b/doc/html/globals_func_0x62.html index dbd73fc49..eea71bca0 100644 --- a/doc/html/globals_func_0x62.html +++ b/doc/html/globals_func_0x62.html @@ -155,6 +155,9 @@ $(document).ready(function(){initNavTree('globals_func_0x62.html','');});
  • bb_location() : bbcode.php
  • +
  • bb_parse_app() +: bbcode.php +
  • bb_parse_crypt() : bbcode.php
  • @@ -219,7 +222,7 @@ $(document).ready(function(){initNavTree('globals_func_0x62.html','');}); : theme.php
  • blogtheme_form() -: config.php +: config.php
  • blogtheme_imgurl() : theme.php diff --git a/doc/html/globals_func_0x70.html b/doc/html/globals_func_0x70.html index 95797aecc..5cd804825 100644 --- a/doc/html/globals_func_0x70.html +++ b/doc/html/globals_func_0x70.html @@ -155,6 +155,9 @@ $(document).ready(function(){initNavTree('globals_func_0x70.html','');});
  • paginate() : text.php
  • +
  • papp_encode() +: apps.php +
  • parse_app_description() : apps.php
  • diff --git a/doc/html/globals_func_0x74.html b/doc/html/globals_func_0x74.html index eac17b23b..d3bf2b66c 100644 --- a/doc/html/globals_func_0x74.html +++ b/doc/html/globals_func_0x74.html @@ -144,7 +144,7 @@ $(document).ready(function(){initNavTree('globals_func_0x74.html','');});

    - t -

    diff --git a/doc/html/globals_vars_0x74.html b/doc/html/globals_vars_0x74.html index 5700fcc09..724de6f17 100644 --- a/doc/html/globals_vars_0x74.html +++ b/doc/html/globals_vars_0x74.html @@ -154,6 +154,9 @@ $(document).ready(function(){initNavTree('globals_vars_0x74.html','');});
  • TERM_MENTION : boot.php
  • +
  • TERM_OBJ_APP +: boot.php +
  • TERM_OBJ_CHANNEL : boot.php
  • diff --git a/doc/html/identity_8php.html b/doc/html/identity_8php.html index d37e1ad8d..0fc9a7fa6 100644 --- a/doc/html/identity_8php.html +++ b/doc/html/identity_8php.html @@ -304,7 +304,7 @@ Functions
    Returns
    string
    -

    Referenced by avatar_img(), import_profile_photo(), openid_content(), parse_app_description(), and photo_init().

    +

    Referenced by app_render(), app_store(), app_update(), avatar_img(), import_profile_photo(), openid_content(), parse_app_description(), and photo_init().

    @@ -776,7 +776,7 @@ Functions
    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 chanview_content(), chatsvc_content(), conversation(), dirprofile_init(), format_categories(), format_hashtags(), get_plink(), localize_item(), match_content(), menu_render(), new_contact(), oembed_fetch_url(), parse_app_description(), tryzrlaudio(), tryzrlvideo(), widget_bookmarkedchats(), widget_photo(), and widget_suggestedchats().

    +

    Referenced by app_render(), chanview_content(), chatsvc_content(), conversation(), dirprofile_init(), format_categories(), format_hashtags(), get_plink(), localize_item(), match_content(), menu_render(), new_contact(), oembed_fetch_url(), parse_app_description(), tryzrlaudio(), tryzrlvideo(), widget_bookmarkedchats(), widget_photo(), and widget_suggestedchats().

    diff --git a/doc/html/include_2apps_8php.html b/doc/html/include_2apps_8php.html index df74b3f02..9f8ab7072 100644 --- a/doc/html/include_2apps_8php.html +++ b/doc/html/include_2apps_8php.html @@ -114,12 +114,273 @@ $(document).ready(function(){initNavTree('include_2apps_8php.html','');}); Functions  get_system_apps ()   + app_name_compare ($a, $b) +   parse_app_description ($f)    translate_system_apps (&$arr)   + app_render ($papp, $mode= 'view') +  + app_install ($uid, $app) +  + app_destroy ($uid, $app) +  + app_installed ($uid, $app) +  + app_list ($uid) +  + app_decode ($s) +  + app_store ($arr) +  + app_update ($arr) +  + app_encode ($app, $embed=false) +  + papp_encode ($papp) + 

    Function Documentation

    + +
    +
    + + + + + + + + +
    app_decode ( $s)
    +
    + +

    Referenced by appman_post().

    + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + +
    app_destroy ( $uid,
     $app 
    )
    +
    + +

    Referenced by appman_post().

    + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + +
    app_encode ( $app,
     $embed = false 
    )
    +
    + +

    Referenced by appman_content(), and apps_content().

    + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + +
    app_install ( $uid,
     $app 
    )
    +
    + +

    Referenced by appman_post().

    + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + +
    app_installed ( $uid,
     $app 
    )
    +
    + +

    Referenced by app_install(), app_render(), and appman_post().

    + +
    +
    + +
    +
    + + + + + + + + +
    app_list ( $uid)
    +
    + +

    Referenced by apps_content().

    + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + +
    app_name_compare ( $a,
     $b 
    )
    +
    + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + +
    app_render ( $papp,
     $mode = 'view' 
    )
    +
    +

    modes: view: normal mode for viewing an app via bbcode from a conversation or page provides install/update button if you're logged in locally list: normal mode for viewing an app on the app page no buttons are shown edit: viewing the app page in editing mode provides a delete button

    + +

    Referenced by apps_content().

    + +
    +
    + +
    +
    + + + + + + + + +
    app_store ( $arr)
    +
    + +

    Referenced by app_install().

    + +
    +
    + +
    +
    + + + + + + + + +
    app_update ( $arr)
    +
    + +

    Referenced by app_install().

    + +
    +
    @@ -136,6 +397,24 @@ Functions

    Referenced by apps_content().

    +
    +
    + +
    +
    + + + + + + + + +
    papp_encode ( $papp)
    +
    + +

    Referenced by app_render().

    +
    diff --git a/doc/html/include_2apps_8php.js b/doc/html/include_2apps_8php.js index 5586d32a8..1be75a9e0 100644 --- a/doc/html/include_2apps_8php.js +++ b/doc/html/include_2apps_8php.js @@ -1,6 +1,17 @@ var include_2apps_8php = [ + [ "app_decode", "include_2apps_8php.html#ad5f6f1443725386cc7af5ed34a5fe185", null ], + [ "app_destroy", "include_2apps_8php.html#a6b472df85ed875e7ae75642cece5206f", null ], + [ "app_encode", "include_2apps_8php.html#a1cb5c016510e39bcdc1d1c096d51c5c7", null ], + [ "app_install", "include_2apps_8php.html#a72756e1601489eb77971eeda011446d0", null ], + [ "app_installed", "include_2apps_8php.html#a1adcd1aff4d36ad0277daca9f3d2bbe2", null ], + [ "app_list", "include_2apps_8php.html#a01cabfb33b2d0d843cf3bf4e3d3f0ab0", null ], + [ "app_name_compare", "include_2apps_8php.html#ab93a3310b7de99ee90f673518eccb658", null ], + [ "app_render", "include_2apps_8php.html#a1b2e737f477a2e0d9d11ef14adc5aa66", null ], + [ "app_store", "include_2apps_8php.html#a15626f24069c18816f7cdaf4735f58f9", null ], + [ "app_update", "include_2apps_8php.html#aeab6a62d2f3dfaa86ed043a006305f46", null ], [ "get_system_apps", "include_2apps_8php.html#ae64f72eb4f126e03b4eb65ed1702a3ca", null ], + [ "papp_encode", "include_2apps_8php.html#ad6ba3f254003f69f8f3f94ca5bda0680", null ], [ "parse_app_description", "include_2apps_8php.html#a32fe4ed9666228fd4b67dc487cc57a83", null ], [ "translate_system_apps", "include_2apps_8php.html#a48289d5cc44b7638191738106ac5d030", null ] ]; \ No newline at end of file diff --git a/doc/html/items_8php.html b/doc/html/items_8php.html index 24d268052..e0d8563b3 100644 --- a/doc/html/items_8php.html +++ b/doc/html/items_8php.html @@ -158,9 +158,9 @@ Functions    encode_item_terms ($terms)   - termtype ($t) + termtype ($t)   - decode_tags ($t) + decode_tags ($t)    activity_sanitise ($arr)   diff --git a/doc/html/language_8php.html b/doc/html/language_8php.html index 7561f213e..9a42b854a 100644 --- a/doc/html/language_8php.html +++ b/doc/html/language_8php.html @@ -127,11 +127,11 @@ Functions    load_translation_table ($lang, $install=false)   - t ($s) - translate string if translation exists. More...
    -  - tt ($singular, $plural, $count) -  + t ($s, $ctx= '') + translate string if translation exists. More...
    +  + tt ($singular, $plural, $count, $ctx= '') +   string_plural_select_default ($n)    detect_language ($s) @@ -338,7 +338,7 @@ Functions - +
    @@ -346,8 +346,18 @@ Functions - + + + + + + + + + + +
    t (  $s)$s,
     $ctx = '' 
    )
    @@ -355,17 +365,18 @@ Functions

    translate string if translation exists.

    Parameters
    - + +
    sstring that should get translated
    $sstring that should get translated
    $ctxoptional context to appear in po file
    Returns
    translated string if exsists, otherwise s
    -

    Referenced by achievements_content(), acl_init(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), 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(), alt_pager(), api_content(), api_post(), api_statuses_public_timeline(), apps_content(), apw_form(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_init(), attach_list_files(), attach_mkdir(), attach_store(), bbcode(), block_content(), blocks_content(), blogtheme_form(), bookmark_add(), bookmarks_content(), bookmarks_init(), categories_widget(), channel_content(), channel_init(), chanview_content(), chat_content(), chat_init(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatsvc_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(), check_store(), cloud_init(), common_content(), common_friends_visitor_widget(), common_init(), connect_content(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_block(), contact_poll_interval(), contact_reputation(), conversation(), create_account(), create_identity(), datesel_format(), day_translate(), delegate_content(), design_tools(), dir_safe_mode(), dir_sort_links(), dir_tagblock(), directory_content(), dirprofile_init(), dirsearch_content(), display_content(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), fbrowser_content(), fileas_widget(), filer_content(), filestorage_content(), filestorage_post(), findpeople_widget(), follow_init(), format_categories(), format_event_diaspora(), format_event_html(), format_filer(), 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(), help_content(), home_content(), RedBrowser\htmlActionsPanel(), identity_check_service_class(), import_author_rss(), import_channel_photo(), import_content(), import_post(), import_xchan(), dba_driver\install(), invite_content(), invite_post(), item_check_service_class(), item_content(), item_photo_menu(), item_post(), item_post_type(), items_fetch(), lang_selector(), layout_select(), layouts_content(), like_content(), load_database(), localize_item(), lockview_content(), login(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), manual_config(), marital_selector(), match_content(), menu_content(), menu_post(), menu_render(), message_content(), mimetype_select(), 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(), notice(), notification(), notifications_content(), notifications_post(), notify_content(), obj_verbs(), oembed_bbcode2html(), oembed_iframe(), oexchange_content(), openid_content(), page_content(), pagelist_widget(), paginate(), pdl_selector(), pdledit_content(), pdledit_post(), photo_upload(), photos_album_widget(), photos_content(), photos_init(), photos_post(), ping_init(), poke_content(), poke_init(), populate_acl(), post_activity_item(), post_init(), probe_content(), profile_activity(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), pubsites_content(), rbmark_content(), rbmark_post(), redbasic_form(), register_content(), register_post(), regmod_content(), relative_date(), removeme_content(), rmagic_content(), rmagic_post(), rpost_content(), scale_external_images(), search(), search_content(), searchbox(), select_timezone(), send_message(), send_reg_approval_email(), send_verification_email(), settings_post(), setup_content(), sexpref_selector(), siteinfo_content(), sources_content(), sources_post(), subthread_content(), suggest_content(), tagblock(), tagger_content(), tagrm_content(), tagrm_post(), theme_attachments(), thing_content(), thing_init(), timezone_cmp(), translate_system_apps(), update_channel_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(), vote_content(), wall_upload_post(), webpages_content(), what_next(), widget_affinity(), widget_appselect(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), widget_tagcloud(), writepages_widget(), xchan_content(), z_readdir(), and zfinger_init().

    +

    Referenced by achievements_content(), acl_init(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), 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(), alt_pager(), api_content(), api_post(), api_statuses_public_timeline(), app_render(), app_store(), app_update(), appman_content(), appman_post(), apps_content(), apw_form(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_init(), attach_list_files(), attach_mkdir(), attach_store(), bbcode(), block_content(), blocks_content(), blogtheme_form(), bookmark_add(), bookmarks_content(), bookmarks_init(), categories_widget(), channel_content(), channel_init(), chanview_content(), chat_content(), chat_init(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatsvc_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(), check_store(), cloud_init(), common_content(), common_friends_visitor_widget(), common_init(), connect_content(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_block(), contact_poll_interval(), contact_reputation(), conversation(), create_account(), create_identity(), datesel_format(), day_translate(), delegate_content(), design_tools(), dir_safe_mode(), dir_sort_links(), dir_tagblock(), directory_content(), dirprofile_init(), dirsearch_content(), display_content(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), fbrowser_content(), fileas_widget(), filer_content(), filestorage_content(), filestorage_post(), findpeople_widget(), follow_init(), format_categories(), format_event_diaspora(), format_event_html(), format_filer(), 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(), help_content(), home_content(), RedBrowser\htmlActionsPanel(), identity_check_service_class(), import_author_rss(), import_channel_photo(), import_content(), import_post(), import_xchan(), dba_driver\install(), invite_content(), invite_post(), item_check_service_class(), item_content(), item_photo_menu(), item_post(), item_post_type(), items_fetch(), lang_selector(), layout_select(), layouts_content(), like_content(), load_database(), localize_item(), lockview_content(), login(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), manual_config(), marital_selector(), match_content(), menu_content(), menu_post(), menu_render(), message_content(), mimetype_select(), 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(), notice(), notification(), notifications_content(), notifications_post(), notify_content(), obj_verbs(), oembed_bbcode2html(), oembed_iframe(), oexchange_content(), openid_content(), page_content(), pagelist_widget(), paginate(), pdl_selector(), pdledit_content(), pdledit_post(), photo_upload(), photos_album_widget(), photos_content(), photos_init(), photos_post(), ping_init(), poke_content(), poke_init(), populate_acl(), post_activity_item(), post_init(), probe_content(), profile_activity(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), pubsites_content(), rbmark_content(), rbmark_post(), redbasic_form(), register_content(), register_post(), regmod_content(), relative_date(), removeme_content(), rmagic_content(), rmagic_post(), rpost_content(), scale_external_images(), search(), search_content(), searchbox(), select_timezone(), send_message(), send_reg_approval_email(), send_verification_email(), settings_post(), setup_content(), sexpref_selector(), siteinfo_content(), sources_content(), sources_post(), subthread_content(), suggest_content(), tagblock(), tagger_content(), tagrm_content(), tagrm_post(), theme_attachments(), thing_content(), thing_init(), timezone_cmp(), translate_system_apps(), update_channel_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(), vote_content(), wall_upload_post(), webpages_content(), what_next(), widget_affinity(), widget_appselect(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), widget_tagcloud(), writepages_widget(), xchan_content(), z_readdir(), and zfinger_init().

    - +
    @@ -385,7 +396,13 @@ Functions - + + + + + + + diff --git a/doc/html/language_8php.js b/doc/html/language_8php.js index 260cbb417..23b8a292a 100644 --- a/doc/html/language_8php.js +++ b/doc/html/language_8php.js @@ -8,6 +8,6 @@ var language_8php = [ "pop_lang", "language_8php.html#a78bd204955ec4cc3a9ac651285a1689d", null ], [ "push_lang", "language_8php.html#ac9142ef1d01a235c760deb0f16643f5a", null ], [ "string_plural_select_default", "language_8php.html#a151e5b4689aef86a12642cbb7a00bfe0", null ], - [ "t", "language_8php.html#aae0c3638fb476ae1e31f8d242f5dac04", null ], - [ "tt", "language_8php.html#ae310fb3880484ee1cc4faefe0c63c06d", null ] + [ "t", "language_8php.html#ac6ae482ee54fa2764d5c2e77305aeb96", null ], + [ "tt", "language_8php.html#a686bcafa6b0d5c86d37b38a1db5b6997", null ] ]; \ No newline at end of file diff --git a/doc/html/navtree.js b/doc/html/navtree.js index a332533cb..b510e92ee 100644 --- a/doc/html/navtree.js +++ b/doc/html/navtree.js @@ -36,14 +36,14 @@ var NAVTREE = var NAVTREEINDEX = [ "BS-Default_8php.html", -"boot_8php.html#a7176c0f9f1c98421b97735d892cf6252", -"classApp.html#ac1d80a14492acc932715d54567d8a589", -"classphoto__driver.html#abc9f73ad90923772d52b9fcc4eb117dd", -"filestorage_8php.html#a61bb1be78472555df4ce619f51014040", -"include_2api_8php.html#adfc035ee6303c1d8ba5336a4ead2bd53", -"md_config.html", -"profiles_8php.html#a46975783b8b8d70402d51487eb1f0b00", -"theme_2apw_2php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864" +"boot_8php.html#a6df1102664f64b274810db85197c2755", +"classApp.html#ab47de68fa39806d1fb0976407e188b77", +"classphoto__driver.html#a6eee8e36eaf9339f4faf80ddd43162da", +"filer_8php.html#a5fd5d7e61b2f9c43cb5f110c89dc4274", +"include_2api_8php.html#ad24ce1bf20867add4c9211a8eaf93f22", +"lockview_8php.html#a851e26ab9a1008df5c5ebebea31e9b44", +"post__to__red_8php.html#af5fd50e2c42ede85f8a9e8d9ee3cf540", +"text_8php.html#acedb584f65114a33f389efb796172a91" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/doc/html/navtreeindex0.js b/doc/html/navtreeindex0.js index e12d66ea5..b422ae623 100644 --- a/doc/html/navtreeindex0.js +++ b/doc/html/navtreeindex0.js @@ -69,6 +69,9 @@ var NAVTREEINDEX0 = "admin_8php.html#af81f081851791cd15e49e8ff6722dc27":[5,0,1,3,18], "admin_8php.html#afef415e4011607fbb665610441595015":[5,0,1,3,0], "annotated.html":[4,0], +"appman_8php.html":[5,0,1,5], +"appman_8php.html#a2979acbe47ffaecfa19b9eabfbfbde39":[5,0,1,5,1], +"appman_8php.html#af48805ac2f6f123f2681a8ae1c6f123f":[5,0,1,5,0], "apw_2php_2style_8php.html":[5,0,3,1,0,1,2], "apw_2php_2style_8php.html#a07adb491994deb72a00a975b431d3e30":[5,0,3,1,0,1,2,2], "apw_2php_2style_8php.html#a109bbd7f4add27541707b191b73ef84a":[5,0,3,1,0,1,2,8], @@ -99,25 +102,26 @@ var NAVTREEINDEX0 = "bb2diaspora_8php.html#ad0abe1a7ee50aa0736a233df0a422eba":[5,0,0,10,1], "bb2diaspora_8php.html#adc92ccda5f85ed27e64fcc17712c89cc":[5,0,0,10,4], "bbcode_8php.html":[5,0,0,11], -"bbcode_8php.html#a009f61aaf78771737ed0765c8463911b":[5,0,0,11,8], -"bbcode_8php.html#a064dcfd9767df6f53be1a0e11ceeb15d":[5,0,0,11,7], -"bbcode_8php.html#a1c69e021d5e0aef97d6966bf3169c86a":[5,0,0,11,4], -"bbcode_8php.html#a2be26414a367118143cc89e2d58e7377":[5,0,0,11,5], +"bbcode_8php.html#a009f61aaf78771737ed0765c8463911b":[5,0,0,11,9], +"bbcode_8php.html#a064dcfd9767df6f53be1a0e11ceeb15d":[5,0,0,11,8], +"bbcode_8php.html#a1c69e021d5e0aef97d6966bf3169c86a":[5,0,0,11,5], +"bbcode_8php.html#a2be26414a367118143cc89e2d58e7377":[5,0,0,11,6], "bbcode_8php.html#a3435c82a6c7693557800cdeb6848d0bd":[5,0,0,11,0], -"bbcode_8php.html#a39de4de32a9456d1ca914d0dc52bd322":[5,0,0,11,12], -"bbcode_8php.html#a3a989cbf308a32468d171d83e9c51d1e":[5,0,0,11,3], -"bbcode_8php.html#a5165a5221a52cf1bc1d7812ebd2069c7":[5,0,0,11,10], -"bbcode_8php.html#a55b0cb6973f1ec731de0e726bcc0efa7":[5,0,0,11,11], -"bbcode_8php.html#a7cc811ff1939a508cfb54f39c1d584d7":[5,0,0,11,9], -"bbcode_8php.html#a851f5aafefe52474201b83f9fd65931f":[5,0,0,11,1], -"bbcode_8php.html#a8911e027907820df3db03b4f76724b50":[5,0,0,11,6], -"bbcode_8php.html#a98d0eecc620c19561639f06cfbe8e74c":[5,0,0,11,2], -"bbcode_8php.html#aa92f119341f4c69dcef2768a013079b8":[5,0,0,11,13], -"block_8php.html":[5,0,1,7], -"block_8php.html#a8a82a470acdfbc7a8e749509caeeea45":[5,0,1,7,0], -"block_8php.html#a9b61c96044ed2a068f18c10370a78d5c":[5,0,1,7,1], -"blocks_8php.html":[5,0,1,8], -"blocks_8php.html#a2531a8fd51db3cecb2eb20c002c66e12":[5,0,1,8,0], +"bbcode_8php.html#a39de4de32a9456d1ca914d0dc52bd322":[5,0,0,11,13], +"bbcode_8php.html#a3a989cbf308a32468d171d83e9c51d1e":[5,0,0,11,4], +"bbcode_8php.html#a5165a5221a52cf1bc1d7812ebd2069c7":[5,0,0,11,11], +"bbcode_8php.html#a55b0cb6973f1ec731de0e726bcc0efa7":[5,0,0,11,12], +"bbcode_8php.html#a7cc811ff1939a508cfb54f39c1d584d7":[5,0,0,11,10], +"bbcode_8php.html#a851f5aafefe52474201b83f9fd65931f":[5,0,0,11,2], +"bbcode_8php.html#a8911e027907820df3db03b4f76724b50":[5,0,0,11,7], +"bbcode_8php.html#a98d0eecc620c19561639f06cfbe8e74c":[5,0,0,11,3], +"bbcode_8php.html#aa92f119341f4c69dcef2768a013079b8":[5,0,0,11,14], +"bbcode_8php.html#abb02f1044ff1c635d12af690d0f2cfa2":[5,0,0,11,1], +"block_8php.html":[5,0,1,8], +"block_8php.html#a8a82a470acdfbc7a8e749509caeeea45":[5,0,1,8,0], +"block_8php.html#a9b61c96044ed2a068f18c10370a78d5c":[5,0,1,8,1], +"blocks_8php.html":[5,0,1,9], +"blocks_8php.html#a2531a8fd51db3cecb2eb20c002c66e12":[5,0,1,9,0], "blogga_2php_2theme_8php.html":[5,0,3,1,1,0,2], "blogga_2php_2theme_8php.html#aa55c1cb1f05087b5002ecb633b550b1b":[5,0,3,1,1,0,2,0], "blogga_2view_2theme_2blog_2theme_8php.html":[5,0,3,1,1,1,0,0,2], @@ -140,9 +144,9 @@ var NAVTREEINDEX0 = "boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3":[5,0,4,213], "boot_8php.html#a0a98dd0110dc6c8e24cefc8ae74d5562":[5,0,4,69], "boot_8php.html#a0b73e2548d6f9beb9c93211f488e336a":[5,0,4,177], -"boot_8php.html#a0c59dde058efebbc66520d136cbd1631":[5,0,4,273], -"boot_8php.html#a0cc8dc76bd10ac0ec81bac08a46f82fe":[5,0,4,269], -"boot_8php.html#a0d877df1e20bae765e1708be50f6b503":[5,0,4,272], +"boot_8php.html#a0c59dde058efebbc66520d136cbd1631":[5,0,4,274], +"boot_8php.html#a0cc8dc76bd10ac0ec81bac08a46f82fe":[5,0,4,270], +"boot_8php.html#a0d877df1e20bae765e1708be50f6b503":[5,0,4,273], "boot_8php.html#a0e4701c9742c3ef88f02ac450a042a84":[5,0,4,21], "boot_8php.html#a0e57f846e6d47a308feced0f7274f178":[5,0,4,61], "boot_8php.html#a0e6db7e365f2b041a828b93786f694bc":[5,0,4,15], @@ -158,9 +162,9 @@ var NAVTREEINDEX0 = "boot_8php.html#a17cf72338b040891781a4bcbdd9a8595":[5,0,4,149], "boot_8php.html#a181c111f4b6c14d091dfd3bf0d0a22cd":[5,0,4,176], "boot_8php.html#a18a400fa45e5632811b33041d8c048bf":[5,0,4,143], -"boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2":[5,0,4,281], +"boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2":[5,0,4,282], "boot_8php.html#a1ba00027b718db732f30fc0e2c3e0abc":[5,0,4,249], -"boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f":[5,0,4,283], +"boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f":[5,0,4,284], "boot_8php.html#a1d6e7f4c08bb68e4a424326a811bdd86":[5,0,4,180], "boot_8php.html#a1da180f961f49a11573cac4ff6c62c05":[5,0,4,78], "boot_8php.html#a1db4f0009c9cb4e107eab0f914a3c8dc":[5,0,4,228], @@ -189,11 +193,11 @@ var NAVTREEINDEX0 = "boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49":[5,0,4,123], "boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd":[5,0,4,162], "boot_8php.html#a36003bebe4ce860c6652bcc3e09b2214":[5,0,4,210], -"boot_8php.html#a36b31575f992a10b5927b76efba9362e":[5,0,4,287], +"boot_8php.html#a36b31575f992a10b5927b76efba9362e":[5,0,4,288], "boot_8php.html#a38f6c7fe33b5434a24b4314567753dfa":[5,0,4,184], "boot_8php.html#a3ad9cc5d4354be741fa1de12b96e9955":[5,0,4,112], "boot_8php.html#a3b56bfc6a0dd159070e316ddac3b7456":[5,0,4,117], -"boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af":[5,0,4,286], +"boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af":[5,0,4,287], "boot_8php.html#a3d6d4fc5fafcc9156811669158541caf":[5,0,4,224], "boot_8php.html#a3e0930933fb2c0bf8211cc7ab4e1c3b4":[5,0,4,12], "boot_8php.html#a3e2ea123d29a72012db1241f96280b0e":[5,0,4,62], @@ -207,7 +211,7 @@ var NAVTREEINDEX0 = "boot_8php.html#a44ae1542a805ffd7f826fb511db07374":[5,0,4,157], "boot_8php.html#a44d069c8a1cfcc6d2007c506a17ff28f":[5,0,4,73], "boot_8php.html#a458e19af801bc4b0d1f1ce1a6d9e857e":[5,0,4,163], -"boot_8php.html#a45b12aefab9675baffc7a07a09486db8":[5,0,4,270], +"boot_8php.html#a45b12aefab9675baffc7a07a09486db8":[5,0,4,271], "boot_8php.html#a49f2a70b3b43aa904223a8d19e986a47":[5,0,4,182], "boot_8php.html#a4a12ce5de39789b0361e308d89925a20":[5,0,4,108], "boot_8php.html#a4a49b29838ef2c45ab3556b52baec6a4":[5,0,4,241], @@ -223,7 +227,7 @@ var NAVTREEINDEX0 = "boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209":[5,0,4,33], "boot_8php.html#a56fd673eaa7014150297ce1162502db5":[5,0,4,198], "boot_8php.html#a57eee7352714c004d36c26dda74af73e":[5,0,4,236], -"boot_8php.html#a5a681a672e007cdc22b43345d71f07c6":[5,0,4,284], +"boot_8php.html#a5a681a672e007cdc22b43345d71f07c6":[5,0,4,285], "boot_8php.html#a5ab6181607a090bcdbaa13b15b85aba1":[5,0,4,19], "boot_8php.html#a5ae728ac966ea1d3525a19e7fec59434":[5,0,4,63], "boot_8php.html#a5b043b7fdcfd4e8c9c3747574afc6caa":[5,0,4,188], @@ -235,7 +239,7 @@ var NAVTREEINDEX0 = "boot_8php.html#a6252d8eca67c689d9035ec6da544cf46":[5,0,4,24], "boot_8php.html#a62c832a95e38b1fa23e6cef39521b7d5":[5,0,4,77], "boot_8php.html#a639f079bf28f7bbb2769fee651d76dd8":[5,0,4,106], -"boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd":[5,0,4,266], +"boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd":[5,0,4,267], "boot_8php.html#a6626f383c3d2d459f731ab8b4f237d16":[5,0,4,174], "boot_8php.html#a6788e99021ec8ffb0fa94d651f22a322":[5,0,4,145], "boot_8php.html#a68d1d5bc9c7ccb663dc671b48c66df11":[5,0,4,148], @@ -245,9 +249,5 @@ var NAVTREEINDEX0 = "boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2":[5,0,4,240], "boot_8php.html#a6b31dd451bc6c37fe7c9c766ff385aaf":[5,0,4,234], "boot_8php.html#a6b9909db6a7ec80ec6fdd40ba74014dd":[5,0,4,103], -"boot_8php.html#a6c5e9e293c8242dcb9bc2c3ea2fee2c9":[5,0,4,95], -"boot_8php.html#a6df1102664f64b274810db85197c2755":[5,0,4,222], -"boot_8php.html#a6e57d913634d033b4d5ad72d99fd3e9d":[5,0,4,132], -"boot_8php.html#a6ee7a72d558d1851bbb9e3cdde377932":[5,0,4,216], -"boot_8php.html#a7037bcbca223395c06bc67f65024de7a":[5,0,4,104] +"boot_8php.html#a6c5e9e293c8242dcb9bc2c3ea2fee2c9":[5,0,4,95] }; diff --git a/doc/html/navtreeindex1.js b/doc/html/navtreeindex1.js index 855d8d8fe..6493fad16 100644 --- a/doc/html/navtreeindex1.js +++ b/doc/html/navtreeindex1.js @@ -1,5 +1,9 @@ var NAVTREEINDEX1 = { +"boot_8php.html#a6df1102664f64b274810db85197c2755":[5,0,4,222], +"boot_8php.html#a6e57d913634d033b4d5ad72d99fd3e9d":[5,0,4,132], +"boot_8php.html#a6ee7a72d558d1851bbb9e3cdde377932":[5,0,4,216], +"boot_8php.html#a7037bcbca223395c06bc67f65024de7a":[5,0,4,104], "boot_8php.html#a7176c0f9f1c98421b97735d892cf6252":[5,0,4,252], "boot_8php.html#a718a801b0be6cbaef5e519516da12721":[5,0,4,167], "boot_8php.html#a719c7f3972d5f9268f37a41c76cd4ef6":[5,0,4,28], @@ -7,7 +11,7 @@ var NAVTREEINDEX1 = "boot_8php.html#a749144d8dd9c1366596a0213c277d050":[5,0,4,138], "boot_8php.html#a74bf27f7564c9a37975e7b37d973dcab":[5,0,4,74], "boot_8php.html#a75a90b0eadd0df510f7e63210733634d":[5,0,4,2], -"boot_8php.html#a75fc600186b13c3b25e661afefb5eac8":[5,0,4,274], +"boot_8php.html#a75fc600186b13c3b25e661afefb5eac8":[5,0,4,275], "boot_8php.html#a768f00b7d66be0daf7ef4eea2e862006":[5,0,4,4], "boot_8php.html#a774f0f792ebfec1e774c5a17bb9d5966":[5,0,4,76], "boot_8php.html#a781916f83fcc8ff1035649afa45f0292":[5,0,4,89], @@ -31,8 +35,8 @@ var NAVTREEINDEX1 = "boot_8php.html#a852d4036a3bed66af1534d014c4ecde2":[5,0,4,220], "boot_8php.html#a8663f32171568489dbb2a01dd00371f8":[5,0,4,128], "boot_8php.html#a87b0f279f8413c7e4d805c5d85f20d34":[5,0,4,120], -"boot_8php.html#a882b666adfe21f035a0f8c02806066d6":[5,0,4,265], -"boot_8php.html#a8892374789fd261eb32a7969d934a14a":[5,0,4,264], +"boot_8php.html#a882b666adfe21f035a0f8c02806066d6":[5,0,4,266], +"boot_8php.html#a8892374789fd261eb32a7969d934a14a":[5,0,4,265], "boot_8php.html#a8905fde0a5b7882bdc083b20d9b34701":[5,0,4,187], "boot_8php.html#a899d24fd074594ceebbf72e1feff335f":[5,0,4,16], "boot_8php.html#a8a60cc38bb567765fd926fef70205f16":[5,0,4,100], @@ -41,13 +45,13 @@ var NAVTREEINDEX1 = "boot_8php.html#a8c9dce0ef27b35397e29298eb966f7f7":[5,0,4,131], "boot_8php.html#a8da836617174eed9fc2ac8054125354b":[5,0,4,125], "boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce":[5,0,4,245], -"boot_8php.html#a8fdcc4ffb365a3267bd02ce8a8d466d6":[5,0,4,282], +"boot_8php.html#a8fdcc4ffb365a3267bd02ce8a8d466d6":[5,0,4,283], "boot_8php.html#a9255af5ae9c887520091ea04763c1a88":[5,0,4,31], "boot_8php.html#a926cad0b3d8b9d9ee5da1898fc063ba3":[5,0,4,11], "boot_8php.html#a93823d15ae07548a4c49de88d325cd26":[5,0,4,152], "boot_8php.html#a939de9a99278f4fd7dcd0ee67f243f08":[5,0,4,129], "boot_8php.html#a949116d9a295b214293006c060ca4848":[5,0,4,127], -"boot_8php.html#a9690d73434125ce594a1f5e7c2a4f7c0":[5,0,4,277], +"boot_8php.html#a9690d73434125ce594a1f5e7c2a4f7c0":[5,0,4,278], "boot_8php.html#a96ad56755a21e1361dbd7bf93c9e7ff4":[5,0,4,250], "boot_8php.html#a97769915c9f14adc4f8ab1ea2cecfd90":[5,0,4,17], "boot_8php.html#a981d46380f9f23c308bac1f9cb00dc5b":[5,0,4,201], @@ -56,8 +60,8 @@ var NAVTREEINDEX1 = "boot_8php.html#a9cbab4ee728e9a8b4ce952bae643044e":[5,0,4,5], "boot_8php.html#a9cc986b4f9dd6558cbb2e25aadbfd964":[5,0,4,231], "boot_8php.html#a9d01ef178b72b145016cca1393415bc4":[5,0,4,202], -"boot_8php.html#a9ea1290e00c6d40684892047f2c778a9":[5,0,4,280], -"boot_8php.html#a9eeb8989272d5ff804a616898bb13659":[5,0,4,267], +"boot_8php.html#a9ea1290e00c6d40684892047f2c778a9":[5,0,4,281], +"boot_8php.html#a9eeb8989272d5ff804a616898bb13659":[5,0,4,268], "boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f":[5,0,4,230], "boot_8php.html#aa17a4f9c63f5cbc5c06f1066b6aebc42":[5,0,4,190], "boot_8php.html#aa1e828bbbcba170265eb2668d8daf42e":[5,0,4,25], @@ -87,11 +91,11 @@ var NAVTREEINDEX1 = "boot_8php.html#ab724491497ab2618b23a01d5da60aec0":[5,0,4,204], "boot_8php.html#ab79b8b4555cae20d03f8200666d89d63":[5,0,4,7], "boot_8php.html#ab7d65a7e7417825a4db62906bb600729":[5,0,4,99], -"boot_8php.html#ab9dca53455cd157d3c6ba2bdecdbd22d":[5,0,4,276], +"boot_8php.html#ab9dca53455cd157d3c6ba2bdecdbd22d":[5,0,4,277], "boot_8php.html#aba208673515cbb8a55e5fa4a1da99fda":[5,0,4,37], "boot_8php.html#abbf5ac24eb8aeedb862f618ee0d21e86":[5,0,4,246], "boot_8php.html#abc0a90a1a77f5b668aa7e4b57d1776a7":[5,0,4,3], -"boot_8php.html#abd7bb40da9cc073297e49736b338ca07":[5,0,4,271], +"boot_8php.html#abd7bb40da9cc073297e49736b338ca07":[5,0,4,272], "boot_8php.html#abdcdfc873ace4e0902177bad934de0c0":[5,0,4,66], "boot_8php.html#abeb4d86e17cefa8584f1244e2183b0e1":[5,0,4,116], "boot_8php.html#abedd940e664017c61b48c6efa31d0cb8":[5,0,4,98], @@ -103,7 +107,7 @@ var NAVTREEINDEX1 = "boot_8php.html#ac5e74f899f6e98d8e91b14ba1c08bc08":[5,0,4,26], "boot_8php.html#ac608a34f3bc180e7724192e0fd31f9b0":[5,0,4,35], "boot_8php.html#ac8400313df2c831653f9036f71ebd86d":[5,0,4,56], -"boot_8php.html#ac86615ddc0763a00f5311c90e991730c":[5,0,4,278], +"boot_8php.html#ac86615ddc0763a00f5311c90e991730c":[5,0,4,279], "boot_8php.html#ac890557fedc5b5a3b1d996249b1e1a20":[5,0,4,122], "boot_8php.html#ac99fc4d040764eac1736bec6973556fe":[5,0,4,124], "boot_8php.html#aca08bc4f1554ba877500f6abcc99e1e8":[5,0,4,200], @@ -111,8 +115,9 @@ var NAVTREEINDEX1 = "boot_8php.html#aca5e42678e178c6b9034610d66666fd7":[5,0,4,13], "boot_8php.html#acc4e0c910af066148b810e5fde55fff1":[5,0,4,8], "boot_8php.html#acca19aae62e1a6951a856b945de20d67":[5,0,4,175], -"boot_8php.html#accd6f36cc9f40225cbd720e4d12a7c6e":[5,0,4,279], +"boot_8php.html#accd6f36cc9f40225cbd720e4d12a7c6e":[5,0,4,280], "boot_8php.html#acd877c405b06b348b37b6f7e62a211e9":[5,0,4,232], +"boot_8php.html#ace6d70ac290397ddd40e561fd0831858":[5,0,4,264], "boot_8php.html#ace83842dbeb84f7ed9ac59a9f57a7c32":[5,0,4,207], "boot_8php.html#aced60c7285192e80b7c4757e45a7f1e3":[5,0,4,65], "boot_8php.html#ad0876e837cf3fad8a26417e315f6e2c8":[5,0,4,155], @@ -134,9 +139,9 @@ var NAVTREEINDEX1 = "boot_8php.html#ae3cef7b63e25e7bafea3fcf6b99fad0e":[5,0,4,183], "boot_8php.html#ae4861de36017fe399c1839f778bad9f5":[5,0,4,158], "boot_8php.html#ae94f7c7c0909629a75aed1c41f10bc95":[5,0,4,191], -"boot_8php.html#aea392cb26ed617f3a8cde648385b5df0":[5,0,4,275], +"boot_8php.html#aea392cb26ed617f3a8cde648385b5df0":[5,0,4,276], "boot_8php.html#aea7fc57a4d8e9dcb42f2601b0b9b761c":[5,0,4,27], -"boot_8php.html#aead84fa27d7516b855220fe004964a45":[5,0,4,268], +"boot_8php.html#aead84fa27d7516b855220fe004964a45":[5,0,4,269], "boot_8php.html#aeb1039302affcbe7e8872c01c08c88f8":[5,0,4,50], "boot_8php.html#aec36f8fcd4cb14a52934590b3d6666b4":[5,0,4,229], "boot_8php.html#aecaa1b6945b317ba8f1daf4af2aed8e6":[5,0,4,258], @@ -162,19 +167,19 @@ var NAVTREEINDEX1 = "boot_8php.html#afe084c30a1810c10442edb4fbcbc0086":[5,0,4,82], "boot_8php.html#afe63ae69ba55299f813766e54df06ede":[5,0,4,150], "boot_8php.html#afe88b920aa285982edb817a0dd44eb37":[5,0,4,14], -"boot_8php.html#afef254290febac854c85fc698d9483a6":[5,0,4,285], +"boot_8php.html#afef254290febac854c85fc698d9483a6":[5,0,4,286], "boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7":[5,0,4,223], "boxy_8php.html":[5,0,3,1,3,1,0], "cache_8php.html":[5,0,0,13], -"channel_8php.html":[5,0,1,11], -"channel_8php.html#a9c6a6179e0e626398ebecc6151905ef1":[5,0,1,11,0], -"channel_8php.html#ac7c8c7845741baadf87fae6bc279f3dc":[5,0,1,11,1], -"chanview_8php.html":[5,0,1,12], -"chanview_8php.html#a4192c6da888c8c1165851acf9ad4cb8b":[5,0,1,12,0], -"chatsvc_8php.html":[5,0,1,14], -"chatsvc_8php.html#a28d248b056fa47452e28ed01130e9116":[5,0,1,14,1], -"chatsvc_8php.html#a7032784215e1f6747cf385a6598770f9":[5,0,1,14,0], -"chatsvc_8php.html#a7c9a9b9c24a2b02eed8efd6b09632d03":[5,0,1,14,2], +"channel_8php.html":[5,0,1,12], +"channel_8php.html#a9c6a6179e0e626398ebecc6151905ef1":[5,0,1,12,0], +"channel_8php.html#ac7c8c7845741baadf87fae6bc279f3dc":[5,0,1,12,1], +"chanview_8php.html":[5,0,1,13], +"chanview_8php.html#a4192c6da888c8c1165851acf9ad4cb8b":[5,0,1,13,0], +"chatsvc_8php.html":[5,0,1,15], +"chatsvc_8php.html#a28d248b056fa47452e28ed01130e9116":[5,0,1,15,1], +"chatsvc_8php.html#a7032784215e1f6747cf385a6598770f9":[5,0,1,15,0], +"chatsvc_8php.html#a7c9a9b9c24a2b02eed8efd6b09632d03":[5,0,1,15,2], "choklet_8php.html":[5,0,3,0,0], "classApp.html":[4,0,5], "classApp.html#a037049cba88dfc6ff94f4b5b779e3fd3":[4,0,5,56], @@ -244,10 +249,5 @@ var NAVTREEINDEX1 = "classApp.html#aab23c59172310fd30f2d60dc039d3eea":[4,0,5,13], "classApp.html#aab4a685d15a363bb1d7edbbc20bfb94e":[4,0,5,38], "classApp.html#ab35b01a366a2ea95725e97af278f87ab":[4,0,5,86], -"classApp.html#ab3da757abe5cb45bf88f07cc51a73b58":[4,0,5,35], -"classApp.html#ab47de68fa39806d1fb0976407e188b77":[4,0,5,71], -"classApp.html#abe0e4fa91097f7a6588e1213a834121c":[4,0,5,37], -"classApp.html#abea5a4f77dcd53c928dc4eed86616637":[4,0,5,19], -"classApp.html#abf46a653d8499e7c253cc1be894a6d83":[4,0,5,17], -"classApp.html#ac1a8b2cd40609b231a560201a08852ba":[4,0,5,52] +"classApp.html#ab3da757abe5cb45bf88f07cc51a73b58":[4,0,5,35] }; diff --git a/doc/html/navtreeindex2.js b/doc/html/navtreeindex2.js index 4ef5a3f93..41daa6fc8 100644 --- a/doc/html/navtreeindex2.js +++ b/doc/html/navtreeindex2.js @@ -1,5 +1,10 @@ var NAVTREEINDEX2 = { +"classApp.html#ab47de68fa39806d1fb0976407e188b77":[4,0,5,71], +"classApp.html#abe0e4fa91097f7a6588e1213a834121c":[4,0,5,37], +"classApp.html#abea5a4f77dcd53c928dc4eed86616637":[4,0,5,19], +"classApp.html#abf46a653d8499e7c253cc1be894a6d83":[4,0,5,17], +"classApp.html#ac1a8b2cd40609b231a560201a08852ba":[4,0,5,52], "classApp.html#ac1d80a14492acc932715d54567d8a589":[4,0,5,46], "classApp.html#ac6e6b1c7d6df408580ff79977fcfa656":[4,0,5,54], "classApp.html#ac73dc90e4764497e2f1b7e6612c8fb88":[4,0,5,43], @@ -244,10 +249,5 @@ var NAVTREEINDEX2 = "classphoto__driver.html#a56634842b071b96502716e9843ea5361":[4,0,19,19], "classphoto__driver.html#a5864fae7d8389372955a8e78cec527ac":[4,0,19,16], "classphoto__driver.html#a642a8d0c4ad5f887c99c6af77cee287b":[4,0,19,22], -"classphoto__driver.html#a6c6c16dbc4f517ce799f9143ed61f0e3":[4,0,19,9], -"classphoto__driver.html#a6eee8e36eaf9339f4faf80ddd43162da":[4,0,19,23], -"classphoto__driver.html#a7c78b5a01afe61ba3895ac07f4869b55":[4,0,19,25], -"classphoto__driver.html#a97289aef3be43d9435ca3717ef10b8ab":[4,0,19,12], -"classphoto__driver.html#aa2efb5b2a6af3fd67e3f1c2b9852a5ba":[4,0,19,6], -"classphoto__driver.html#ab98da263bd7341fc132c4fb6fc76e8d5":[4,0,19,8] +"classphoto__driver.html#a6c6c16dbc4f517ce799f9143ed61f0e3":[4,0,19,9] }; diff --git a/doc/html/navtreeindex3.js b/doc/html/navtreeindex3.js index 6d04cadf5..10f929267 100644 --- a/doc/html/navtreeindex3.js +++ b/doc/html/navtreeindex3.js @@ -1,5 +1,10 @@ var NAVTREEINDEX3 = { +"classphoto__driver.html#a6eee8e36eaf9339f4faf80ddd43162da":[4,0,19,23], +"classphoto__driver.html#a7c78b5a01afe61ba3895ac07f4869b55":[4,0,19,25], +"classphoto__driver.html#a97289aef3be43d9435ca3717ef10b8ab":[4,0,19,12], +"classphoto__driver.html#aa2efb5b2a6af3fd67e3f1c2b9852a5ba":[4,0,19,6], +"classphoto__driver.html#ab98da263bd7341fc132c4fb6fc76e8d5":[4,0,19,8], "classphoto__driver.html#abc9f73ad90923772d52b9fcc4eb117dd":[4,0,19,11], "classphoto__driver.html#ac6e85f8e507cab4e755ed7acdec401ae":[4,0,19,0], "classphoto__driver.html#acc30486acee9e89e32701f44a1738117":[4,0,19,10], @@ -37,8 +42,8 @@ var NAVTREEINDEX3 = "cli__startup_8php.html#adfdde63686e33ccd4851fa5edc4fc70b":[5,0,0,16,0], "cli__suggest_8php.html":[5,0,0,17], "cli__suggest_8php.html#a8f3a60fc96f4bec7d3837c4efc7725f2":[5,0,0,17,0], -"cloud_8php.html":[5,0,1,15], -"cloud_8php.html#a1b79a6fe0454bc76673ad9aef55bf02d":[5,0,1,15,0], +"cloud_8php.html":[5,0,1,16], +"cloud_8php.html#a1b79a6fe0454bc76673ad9aef55bf02d":[5,0,1,16,0], "comanche_8php.html":[5,0,0,18], "comanche_8php.html#a028f004d5b8c23d6367816d899e17cfe":[5,0,0,18,5], "comanche_8php.html#a1a208fdb40dd83d6298caec4290ee922":[5,0,0,18,3], @@ -50,23 +55,23 @@ var NAVTREEINDEX3 = "comanche_8php.html#ae9fe1ce574db3dd0931eada80234f82a":[5,0,0,18,6], "comanche_8php.html#aed39ecad69234f3ddf61f0dedb49a58e":[5,0,0,18,1], "comanche_8php.html#af7150df735e5ff9d467994cd6f769c6e":[5,0,0,18,8], -"common_8php.html":[5,0,1,16], -"common_8php.html#ab63408f39abef7a6915186e8dabc5a96":[5,0,1,16,0], -"common_8php.html#aca62f113655809f41f49042ce9b123c2":[5,0,1,16,1], -"connect_8php.html":[5,0,1,17], -"connect_8php.html#a417ec27afe33f21a929667a665e32ee2":[5,0,1,17,2], -"connect_8php.html#a489f0a66c660de6ec4d6917b27674f07":[5,0,1,17,0], -"connect_8php.html#ad46a38f32fd7a3d324b1fa26373efa36":[5,0,1,17,1], -"connections_8php.html":[5,0,1,18], -"connections_8php.html#a1224058db8e3fb56463eb312f98e561d":[5,0,1,18,3], -"connections_8php.html#a15af118efee9c948b6f8294e54a73bb2":[5,0,1,18,0], -"connections_8php.html#a1f23623f802af7bd35e95b0e94e5d558":[5,0,1,18,2], -"connections_8php.html#aec2e457420fce3e3bf6a9f48e36df25c":[5,0,1,18,1], -"connedit_8php.html":[5,0,1,19], -"connedit_8php.html#a234c48426b652bf4d37053f2af329ac5":[5,0,1,19,3], -"connedit_8php.html#a4da871e075597a09a8b374b9171dd92e":[5,0,1,19,2], -"connedit_8php.html#a707ea7e63cf9674025b1d6b081ae74f5":[5,0,1,19,0], -"connedit_8php.html#a795acb3d9d841f55c255d7611681ab67":[5,0,1,19,1], +"common_8php.html":[5,0,1,17], +"common_8php.html#ab63408f39abef7a6915186e8dabc5a96":[5,0,1,17,0], +"common_8php.html#aca62f113655809f41f49042ce9b123c2":[5,0,1,17,1], +"connect_8php.html":[5,0,1,18], +"connect_8php.html#a417ec27afe33f21a929667a665e32ee2":[5,0,1,18,2], +"connect_8php.html#a489f0a66c660de6ec4d6917b27674f07":[5,0,1,18,0], +"connect_8php.html#ad46a38f32fd7a3d324b1fa26373efa36":[5,0,1,18,1], +"connections_8php.html":[5,0,1,19], +"connections_8php.html#a1224058db8e3fb56463eb312f98e561d":[5,0,1,19,3], +"connections_8php.html#a15af118efee9c948b6f8294e54a73bb2":[5,0,1,19,0], +"connections_8php.html#a1f23623f802af7bd35e95b0e94e5d558":[5,0,1,19,2], +"connections_8php.html#aec2e457420fce3e3bf6a9f48e36df25c":[5,0,1,19,1], +"connedit_8php.html":[5,0,1,20], +"connedit_8php.html#a234c48426b652bf4d37053f2af329ac5":[5,0,1,20,3], +"connedit_8php.html#a4da871e075597a09a8b374b9171dd92e":[5,0,1,20,2], +"connedit_8php.html#a707ea7e63cf9674025b1d6b081ae74f5":[5,0,1,20,0], +"connedit_8php.html#a795acb3d9d841f55c255d7611681ab67":[5,0,1,20,1], "contact__selectors_8php.html":[5,0,0,21], "contact__selectors_8php.html#a2c743d2eb526eb758d943a1490162d75":[5,0,0,21,1], "contact__selectors_8php.html#a9839e8fdaac7ffb37bf1420493f5c28f":[5,0,0,21,0], @@ -77,8 +82,8 @@ var NAVTREEINDEX3 = "contact__widgets_8php.html#a1eda66319d170f60a8d07c7ece95533b":[5,0,0,22,2], "contact__widgets_8php.html#a552f8544528cec0c995cea7287ea9d65":[5,0,0,22,1], "contact__widgets_8php.html#a57e73ebcfd62bb5d8c7a7b9e663726d6":[5,0,0,22,3], -"contactgroup_8php.html":[5,0,1,20], -"contactgroup_8php.html#a18c7391b1b25debaf98c9dba639caab3":[5,0,1,20,0], +"contactgroup_8php.html":[5,0,1,21], +"contactgroup_8php.html#a18c7391b1b25debaf98c9dba639caab3":[5,0,1,21,0], "conversation_8php.html":[5,0,0,23], "conversation_8php.html#a0891aaa4492cba2b51eda12fe01957f3":[5,0,0,23,7], "conversation_8php.html#a0ee05f15255fb1cc3d89f30bc378a654":[5,0,0,23,9], @@ -149,8 +154,8 @@ var NAVTREEINDEX3 = "dba__driver_8php.html#af531546fac5f0836a8557a4f6dfee930":[5,0,0,0,0,4], "dba__mysql_8php.html":[5,0,0,0,1], "dba__mysqli_8php.html":[5,0,0,0,2], -"delegate_8php.html":[5,0,1,21], -"delegate_8php.html#a943eea8996ef348eb845c498f9f354dd":[5,0,1,21,0], +"delegate_8php.html":[5,0,1,22], +"delegate_8php.html#a943eea8996ef348eb845c498f9f354dd":[5,0,1,22,0], "deliver_8php.html":[5,0,0,28], "deliver_8php.html#a397afcb9afecf0c1816b0951189dd346":[5,0,0,28,0], "dir_032dd9e2cfe278a2cfa5eb9547448eb9.html":[5,0,3,1,3,0], @@ -185,16 +190,16 @@ var NAVTREEINDEX3 = "dir_d44c64559bbebec7f509842c48db8b23.html":[5,0,0], "dir_d520c5cf583201d9437764f209363c22.html":[5,0,3,1,0], "dir_f19da925ee886ec38f19b0e8c19779bc.html":[5,0,3,1,0,0], -"dirprofile_8php.html":[5,0,1,23], -"dirprofile_8php.html#a3e1d30d3d93863ff5615f2df4ac7f052":[5,0,1,23,0], -"dirsearch_8php.html":[5,0,1,24], -"dirsearch_8php.html#a3e51964ae3f5ff147403407b65324752":[5,0,1,24,3], -"dirsearch_8php.html#a52bcac49b0e35cc8c6b70066143c2ee2":[5,0,1,24,1], -"dirsearch_8php.html#a7d4cd9890d5ed23c3efc58e2a778a305":[5,0,1,24,0], -"dirsearch_8php.html#a985d410a170549429857af6ff2673149":[5,0,1,24,4], -"dirsearch_8php.html#aa1fb04e1de4f25b63349ac78f94ceb4c":[5,0,1,24,2], -"display_8php.html":[5,0,1,25], -"display_8php.html#a37137c98d47bf3306f4c2bb9f5b60de0":[5,0,1,25,0], +"dirprofile_8php.html":[5,0,1,24], +"dirprofile_8php.html#a3e1d30d3d93863ff5615f2df4ac7f052":[5,0,1,24,0], +"dirsearch_8php.html":[5,0,1,25], +"dirsearch_8php.html#a3e51964ae3f5ff147403407b65324752":[5,0,1,25,3], +"dirsearch_8php.html#a52bcac49b0e35cc8c6b70066143c2ee2":[5,0,1,25,1], +"dirsearch_8php.html#a7d4cd9890d5ed23c3efc58e2a778a305":[5,0,1,25,0], +"dirsearch_8php.html#a985d410a170549429857af6ff2673149":[5,0,1,25,4], +"dirsearch_8php.html#aa1fb04e1de4f25b63349ac78f94ceb4c":[5,0,1,25,2], +"display_8php.html":[5,0,1,26], +"display_8php.html#a37137c98d47bf3306f4c2bb9f5b60de0":[5,0,1,26,0], "docblox__errorchecker_8php.html":[5,0,2,3], "docblox__errorchecker_8php.html#a1659f0a629d408e0f849dbe4ee061e62":[5,0,2,3,3], "docblox__errorchecker_8php.html#a21b4bbe5aae2d85db33affc7126a67ec":[5,0,2,3,2], @@ -207,14 +212,14 @@ var NAVTREEINDEX3 = "docblox__errorchecker_8php.html#ab66bc0493d25f39bf8b4dcbb429f04e6":[5,0,2,3,4], "docblox__errorchecker_8php.html#ae9562cf60aa693114603d27b55d2185f":[5,0,2,3,1], "docblox__errorchecker_8php.html#af4ca738a05beffe9c8c23e1f7aea3c2d":[5,0,2,3,10], -"editblock_8php.html":[5,0,1,26], -"editblock_8php.html#abbe8f55de06967bc8d79d620509a49e6":[5,0,1,26,0], -"editlayout_8php.html":[5,0,1,27], -"editlayout_8php.html#aa877e4157a26b099de904164181dd386":[5,0,1,27,0], -"editpost_8php.html":[5,0,1,28], -"editpost_8php.html#a34011690864d122680c802e9e748ccfb":[5,0,1,28,0], -"editwebpage_8php.html":[5,0,1,29], -"editwebpage_8php.html#a375e945255fad79a71036528f7480650":[5,0,1,29,0], +"editblock_8php.html":[5,0,1,27], +"editblock_8php.html#abbe8f55de06967bc8d79d620509a49e6":[5,0,1,27,0], +"editlayout_8php.html":[5,0,1,28], +"editlayout_8php.html#aa877e4157a26b099de904164181dd386":[5,0,1,28,0], +"editpost_8php.html":[5,0,1,29], +"editpost_8php.html#a34011690864d122680c802e9e748ccfb":[5,0,1,29,0], +"editwebpage_8php.html":[5,0,1,30], +"editwebpage_8php.html#a375e945255fad79a71036528f7480650":[5,0,1,30,0], "enotify_8php.html":[5,0,0,31], "enotify_8php.html#a3e9a9355b243777c488d2a9883908dfc":[5,0,0,31,1], "event_8php.html":[5,0,0,32], @@ -225,9 +230,9 @@ var NAVTREEINDEX3 = "event_8php.html#a32ba1b9ddf7a744a9a1512b052e5f850":[5,0,0,32,2], "event_8php.html#a89ef533faf345db8d64a58d4856bde3a":[5,0,0,32,3], "event_8php.html#abb74206cf42d694307c3d7abb7af9869":[5,0,0,32,4], -"events_8php.html":[5,0,1,30], -"events_8php.html#a1d293fb217ae6bc9e3858c4b32e363ec":[5,0,1,30,0], -"events_8php.html#ab3e8a8f901175f8e40a8089eea45c075":[5,0,1,30,1], +"events_8php.html":[5,0,1,31], +"events_8php.html#a1d293fb217ae6bc9e3858c4b32e363ec":[5,0,1,31,0], +"events_8php.html#ab3e8a8f901175f8e40a8089eea45c075":[5,0,1,31,1], "expire_8php.html":[5,0,0,33], "expire_8php.html#a444e45c9b67727b27db4c779fd51a298":[5,0,0,33,0], "externals_8php.html":[5,0,0,34], @@ -237,17 +242,12 @@ var NAVTREEINDEX3 = "extract_8php.html#a50b05cf2e02ef0b67fcad97106dd7634":[5,0,2,4,2], "extract_8php.html#a63bb4c41bc532baacf6a4976cfaa0feb":[5,0,2,4,0], "extract_8php.html#a9590b15215a21e9b42eb546aeef79704":[5,0,2,4,1], -"fbrowser_8php.html":[5,0,1,31], -"fbrowser_8php.html#aee476addcf7a3e0fe9454f7dfd5a56c4":[5,0,1,31,0], +"fbrowser_8php.html":[5,0,1,32], +"fbrowser_8php.html#aee476addcf7a3e0fe9454f7dfd5a56c4":[5,0,1,32,0], "features_8php.html":[5,0,0,35], "features_8php.html#a52b5bdfb61b256713efecf7a7b20b0c0":[5,0,0,35,0], "features_8php.html#ae73c5b03b01c7284ed7e7e0e774e975c":[5,0,0,35,1], -"feed_8php.html":[5,0,1,32], -"feed_8php.html#af86137700b56f33d1d5f25c8dec22c04":[5,0,1,32,0], -"filer_8php.html":[5,0,1,33], -"filer_8php.html#a5fd5d7e61b2f9c43cb5f110c89dc4274":[5,0,1,33,0], -"filerm_8php.html":[5,0,1,34], -"filerm_8php.html#ae2eb28d2054fa2c37e38689882172208":[5,0,1,34,0], -"files.html":[5,0], -"filestorage_8php.html":[5,0,1,35] +"feed_8php.html":[5,0,1,33], +"feed_8php.html#af86137700b56f33d1d5f25c8dec22c04":[5,0,1,33,0], +"filer_8php.html":[5,0,1,34] }; diff --git a/doc/html/navtreeindex4.js b/doc/html/navtreeindex4.js index 85b883d39..062e1b954 100644 --- a/doc/html/navtreeindex4.js +++ b/doc/html/navtreeindex4.js @@ -1,7 +1,12 @@ var NAVTREEINDEX4 = { -"filestorage_8php.html#a61bb1be78472555df4ce619f51014040":[5,0,1,35,0], -"filestorage_8php.html#ad3b64e3ece9831f9d3a9f00c0ae983cd":[5,0,1,35,1], +"filer_8php.html#a5fd5d7e61b2f9c43cb5f110c89dc4274":[5,0,1,34,0], +"filerm_8php.html":[5,0,1,35], +"filerm_8php.html#ae2eb28d2054fa2c37e38689882172208":[5,0,1,35,0], +"files.html":[5,0], +"filestorage_8php.html":[5,0,1,36], +"filestorage_8php.html#a61bb1be78472555df4ce619f51014040":[5,0,1,36,0], +"filestorage_8php.html#ad3b64e3ece9831f9d3a9f00c0ae983cd":[5,0,1,36,1], "fpostit_8php.html":[5,0,2,0,0], "fpostit_8php.html#a3f3ae3ae61578b5671673914fd894443":[5,0,2,0,0,0], "fpostit_8php.html#a501b5ca82f287509fc691c88524064c1":[5,0,2,0,0,1], @@ -22,9 +27,9 @@ var NAVTREEINDEX4 = "friendica-to-smarty-tpl_8py.html#aecf730e0884bb4ddc6c0deb1ef85f8eb":[5,0,2,5,4], "friendica-to-smarty-tpl_8py.html#af6b2c793958aae2aadc294577431f749":[5,0,2,5,3], "friendica__smarty_8php.html":[5,0,0,37], -"fsuggest_8php.html":[5,0,1,37], -"fsuggest_8php.html#a61ecfe10ce937ed526614f8fd3de3c7d":[5,0,1,37,1], -"fsuggest_8php.html#aa6c49ed4b50a387f1845f36844dd7998":[5,0,1,37,0], +"fsuggest_8php.html":[5,0,1,38], +"fsuggest_8php.html#a61ecfe10ce937ed526614f8fd3de3c7d":[5,0,1,38,1], +"fsuggest_8php.html#aa6c49ed4b50a387f1845f36844dd7998":[5,0,1,38,0], "full_8php.html":[5,0,3,0,2], "full_8php.html#a3987f5547ceb7e36a210a66a06241a5a":[5,0,3,0,2,0], "functions.html":[4,3,0], @@ -50,8 +55,8 @@ var NAVTREEINDEX4 = "functions_0x76.html":[4,3,0,19], "functions_8php.html":[5,0,3,1,0,1,1], "functions_8php.html#adefe514c95680928b3aae250cbc3c663":[5,0,3,1,0,1,1,0], -"functions_func.html":[4,3,1,0], "functions_func.html":[4,3,1], +"functions_func.html":[4,3,1,0], "functions_func_0x61.html":[4,3,1,1], "functions_func_0x62.html":[4,3,1,2], "functions_func_0x63.html":[4,3,1,3], @@ -152,15 +157,15 @@ var NAVTREEINDEX4 = "gprobe_8php.html":[5,0,0,38], "gprobe_8php.html#adf72cb0a70b5b9d99fdec1cc60e18ed1":[5,0,0,38,0], "greenthumbnails_8php.html":[5,0,3,1,0,2,3], -"help_8php.html":[5,0,1,39], -"help_8php.html#a06b2a51aaabed99e53a9b639047c4ce4":[5,0,1,39,1], -"help_8php.html#af055e15f600ffa6fbca9386fdf715224":[5,0,1,39,0], +"help_8php.html":[5,0,1,40], +"help_8php.html#a06b2a51aaabed99e53a9b639047c4ce4":[5,0,1,40,1], +"help_8php.html#af055e15f600ffa6fbca9386fdf715224":[5,0,1,40,0], "hierarchy.html":[4,2], -"home_8php.html":[5,0,1,40], -"home_8php.html#aa1cf697851a646755baf537f75334c46":[5,0,1,40,0], -"home_8php.html#ac4642c38b6f23a8d065dd4a75c620bde":[5,0,1,40,1], -"hostxrd_8php.html":[5,0,1,41], -"hostxrd_8php.html#aa37ffc8e7900bc76c4828bd25916db92":[5,0,1,41,0], +"home_8php.html":[5,0,1,41], +"home_8php.html#aa1cf697851a646755baf537f75334c46":[5,0,1,41,0], +"home_8php.html#ac4642c38b6f23a8d065dd4a75c620bde":[5,0,1,41,1], +"hostxrd_8php.html":[5,0,1,42], +"hostxrd_8php.html#aa37ffc8e7900bc76c4828bd25916db92":[5,0,1,42,0], "html2bbcode_8php.html":[5,0,0,40], "html2bbcode_8php.html#a39c662b19d318990fee2ba795a55d7a7":[5,0,0,40,3], "html2bbcode_8php.html#a5ad726995ac4070213abdb3bd09f4837":[5,0,0,40,1], @@ -201,11 +206,11 @@ var NAVTREEINDEX4 = "identity_8php.html#ae2b140df652a55ca11bb6a99005fce35":[5,0,0,43,16], "identity_8php.html#ae381db3d43f8e7c1da8b15d14ecf5312":[5,0,0,43,7], "identity_8php.html#af2802bc13a00a17b867bba7978ba8f58":[5,0,0,43,24], -"import_8php.html":[5,0,1,42], -"import_8php.html#af17fef0410518f7eac205d0ea416eaa2":[5,0,1,42,1], -"import_8php.html#afdf25ed70096d5dbf4f6d0ca79fea184":[5,0,1,42,0], -"importelm_8php.html":[5,0,1,43], -"importelm_8php.html#a1a4f71e6d76ace6add5e9659845f5e5f":[5,0,1,43,0], +"import_8php.html":[5,0,1,43], +"import_8php.html#af17fef0410518f7eac205d0ea416eaa2":[5,0,1,43,1], +"import_8php.html#afdf25ed70096d5dbf4f6d0ca79fea184":[5,0,1,43,0], +"importelm_8php.html":[5,0,1,44], +"importelm_8php.html#a1a4f71e6d76ace6add5e9659845f5e5f":[5,0,1,44,0], "include_2api_8php.html":[5,0,0,5], "include_2api_8php.html#a0991f72554f821255397d615e76f3203":[5,0,0,5,12], "include_2api_8php.html#a176c448d79c211ad41c2bbe3124658f5":[5,0,0,5,5], @@ -244,10 +249,5 @@ var NAVTREEINDEX4 = "include_2api_8php.html#abe8e929e93f7ab134b1cb1fb30f19a76":[5,0,0,5,48], "include_2api_8php.html#ac2c2b18c426d697d11a830bca146be8a":[5,0,0,5,30], "include_2api_8php.html#ac5a64cc81d70ff3cf866093ea9721d23":[5,0,0,5,24], -"include_2api_8php.html#acafd2899309a005fcb725289173dc7fe":[5,0,0,5,22], -"include_2api_8php.html#ad24ce1bf20867add4c9211a8eaf93f22":[5,0,0,5,40], -"include_2api_8php.html#ad2b0192f3006918bea895de8074bf8d2":[5,0,0,5,11], -"include_2api_8php.html#ad4c29f43418f6110f85a6b3998239ab4":[5,0,0,5,33], -"include_2api_8php.html#ad4d1634df6b35126552324683caaffa2":[5,0,0,5,43], -"include_2api_8php.html#ade742525b2e41c82b090799ef3c51d5e":[5,0,0,5,36] +"include_2api_8php.html#acafd2899309a005fcb725289173dc7fe":[5,0,0,5,22] }; diff --git a/doc/html/navtreeindex5.js b/doc/html/navtreeindex5.js index 6d45fd7fd..378356389 100644 --- a/doc/html/navtreeindex5.js +++ b/doc/html/navtreeindex5.js @@ -1,5 +1,10 @@ var NAVTREEINDEX5 = { +"include_2api_8php.html#ad24ce1bf20867add4c9211a8eaf93f22":[5,0,0,5,40], +"include_2api_8php.html#ad2b0192f3006918bea895de8074bf8d2":[5,0,0,5,11], +"include_2api_8php.html#ad4c29f43418f6110f85a6b3998239ab4":[5,0,0,5,33], +"include_2api_8php.html#ad4d1634df6b35126552324683caaffa2":[5,0,0,5,43], +"include_2api_8php.html#ade742525b2e41c82b090799ef3c51d5e":[5,0,0,5,36], "include_2api_8php.html#adfc035ee6303c1d8ba5336a4ead2bd53":[5,0,0,5,14], "include_2api_8php.html#ae0fa388479cace9c5a7a45b571ab42f8":[5,0,0,5,41], "include_2api_8php.html#ae82608c317421f27446465aa6724733d":[5,0,0,5,20], @@ -11,9 +16,20 @@ var NAVTREEINDEX5 = "include_2api_8php.html#afe534f826e4282b72d66e8cadca7bb73":[5,0,0,5,26], "include_2api_8php.html#aff322705cc6084b329003fc8eab0aad0":[5,0,0,5,27], "include_2apps_8php.html":[5,0,0,6], -"include_2apps_8php.html#a32fe4ed9666228fd4b67dc487cc57a83":[5,0,0,6,1], -"include_2apps_8php.html#a48289d5cc44b7638191738106ac5d030":[5,0,0,6,2], -"include_2apps_8php.html#ae64f72eb4f126e03b4eb65ed1702a3ca":[5,0,0,6,0], +"include_2apps_8php.html#a01cabfb33b2d0d843cf3bf4e3d3f0ab0":[5,0,0,6,5], +"include_2apps_8php.html#a15626f24069c18816f7cdaf4735f58f9":[5,0,0,6,8], +"include_2apps_8php.html#a1adcd1aff4d36ad0277daca9f3d2bbe2":[5,0,0,6,4], +"include_2apps_8php.html#a1b2e737f477a2e0d9d11ef14adc5aa66":[5,0,0,6,7], +"include_2apps_8php.html#a1cb5c016510e39bcdc1d1c096d51c5c7":[5,0,0,6,2], +"include_2apps_8php.html#a32fe4ed9666228fd4b67dc487cc57a83":[5,0,0,6,12], +"include_2apps_8php.html#a48289d5cc44b7638191738106ac5d030":[5,0,0,6,13], +"include_2apps_8php.html#a6b472df85ed875e7ae75642cece5206f":[5,0,0,6,1], +"include_2apps_8php.html#a72756e1601489eb77971eeda011446d0":[5,0,0,6,3], +"include_2apps_8php.html#ab93a3310b7de99ee90f673518eccb658":[5,0,0,6,6], +"include_2apps_8php.html#ad5f6f1443725386cc7af5ed34a5fe185":[5,0,0,6,0], +"include_2apps_8php.html#ad6ba3f254003f69f8f3f94ca5bda0680":[5,0,0,6,11], +"include_2apps_8php.html#ae64f72eb4f126e03b4eb65ed1702a3ca":[5,0,0,6,10], +"include_2apps_8php.html#aeab6a62d2f3dfaa86ed043a006305f46":[5,0,0,6,9], "include_2attach_8php.html":[5,0,0,7], "include_2attach_8php.html#a0d07c5b83d3d54e186f752e571847b36":[5,0,0,7,0], "include_2attach_8php.html#a3634af95f11a023dd8e882c3c7a3600d":[5,0,0,7,5], @@ -143,16 +159,16 @@ var NAVTREEINDEX5 = "interfaceITemplateEngine.html":[4,0,18], "interfaceITemplateEngine.html#aaa7381c8becc3d1c1790b53988a0f243":[4,0,18,1], "interfaceITemplateEngine.html#aaf2698adbf46c073c24b162fe1b1c442":[4,0,18,0], -"invite_8php.html":[5,0,1,44], -"invite_8php.html#a244385b28cfd021d308715f01158bfd9":[5,0,1,44,0], -"invite_8php.html#aeb0881c0f93c8e8552e5ed756ce6e5a5":[5,0,1,44,1], -"item_8php.html":[5,0,1,45], -"item_8php.html#a3daae7944f737bd30412a0d042207c0f":[5,0,1,45,0], -"item_8php.html#a5b1b36cb301a94b38150074f0d424e74":[5,0,1,45,3], -"item_8php.html#a693cd09805755ab85bbb5ecae69a48c3":[5,0,1,45,5], -"item_8php.html#a764bbb2e9a885a86fb23d0b5e4a09221":[5,0,1,45,4], -"item_8php.html#a7b63a9d0cd02096e17dcf11f4afa7c10":[5,0,1,45,1], -"item_8php.html#aa22feef4de326e1d7078dedd892e615c":[5,0,1,45,2], +"invite_8php.html":[5,0,1,45], +"invite_8php.html#a244385b28cfd021d308715f01158bfd9":[5,0,1,45,0], +"invite_8php.html#aeb0881c0f93c8e8552e5ed756ce6e5a5":[5,0,1,45,1], +"item_8php.html":[5,0,1,46], +"item_8php.html#a3daae7944f737bd30412a0d042207c0f":[5,0,1,46,0], +"item_8php.html#a5b1b36cb301a94b38150074f0d424e74":[5,0,1,46,3], +"item_8php.html#a693cd09805755ab85bbb5ecae69a48c3":[5,0,1,46,5], +"item_8php.html#a764bbb2e9a885a86fb23d0b5e4a09221":[5,0,1,46,4], +"item_8php.html#a7b63a9d0cd02096e17dcf11f4afa7c10":[5,0,1,46,1], +"item_8php.html#aa22feef4de326e1d7078dedd892e615c":[5,0,1,46,2], "items_8php.html":[5,0,0,46], "items_8php.html#a004e89d86b0f29b2c4da20108ecc4091":[5,0,0,46,61], "items_8php.html#a016dd86c827d08db89061ea81d15c6cb":[5,0,0,46,3], @@ -216,38 +232,22 @@ var NAVTREEINDEX5 = "items_8php.html#af6237605c60d69abdd959ddbbee3420c":[5,0,0,46,54], "items_8php.html#af94c281016c6c912d06e064113336c5c":[5,0,0,46,43], "items_8php.html#afbcf26dfcf8a83fff952aa858c1b7b67":[5,0,0,46,23], -"lang_8php.html":[5,0,1,46], -"lang_8php.html#a4c5c1140f51a638f224275cd618c2f37":[5,0,1,46,0], +"lang_8php.html":[5,0,1,47], +"lang_8php.html#a4c5c1140f51a638f224275cd618c2f37":[5,0,1,47,0], "language_8php.html":[5,0,0,47], "language_8php.html#a151e5b4689aef86a12642cbb7a00bfe0":[5,0,0,47,7], "language_8php.html#a43e6ddba9df019c9ac3ab4c94c444ae7":[5,0,0,47,3], "language_8php.html#a632da17c7ac0d2dc1a00a4706870194b":[5,0,0,47,0], +"language_8php.html#a686bcafa6b0d5c86d37b38a1db5b6997":[5,0,0,47,9], "language_8php.html#a78bd204955ec4cc3a9ac651285a1689d":[5,0,0,47,5], "language_8php.html#a7e9904c730bb24ddcb0ff50fc96f6b05":[5,0,0,47,4], "language_8php.html#a980dee1d8715a98ab02e36b59facf8ed":[5,0,0,47,1], -"language_8php.html#aae0c3638fb476ae1e31f8d242f5dac04":[5,0,0,47,8], +"language_8php.html#ac6ae482ee54fa2764d5c2e77305aeb96":[5,0,0,47,8], "language_8php.html#ac9142ef1d01a235c760deb0f16643f5a":[5,0,0,47,6], "language_8php.html#ace67d6cad57da08d030ad9dc9b8c836e":[5,0,0,47,2], -"language_8php.html#ae310fb3880484ee1cc4faefe0c63c06d":[5,0,0,47,9], -"layouts_8php.html":[5,0,1,47], -"layouts_8php.html#a6e0193759ad9eef76d3df2db24237b50":[5,0,1,47,0], -"like_8php.html":[5,0,1,48], -"like_8php.html#a9d7dd268f21c21e9d29dd2aca2dd9538":[5,0,1,48,0], -"lockview_8php.html":[5,0,1,49], -"lockview_8php.html#a851e26ab9a1008df5c5ebebea31e9b44":[5,0,1,49,0], -"login_8php.html":[5,0,1,50], -"login_8php.html#a1d69ca88eb9005a7026e128b9a645904":[5,0,1,50,0], -"lostpass_8php.html":[5,0,1,51], -"lostpass_8php.html#a0314d94e48c789b1b3a201d740c9eab3":[5,0,1,51,0], -"lostpass_8php.html#a8ed35ba71a4404eaf4903da61d0321cc":[5,0,1,51,1], -"magic_8php.html":[5,0,1,52], -"magic_8php.html#acea2cc792849ca2d71d4b689f66518bf":[5,0,1,52,0], -"mail_8php.html":[5,0,1,53], -"mail_8php.html#a3c7c485fc69f92371e8b20936040eca1":[5,0,1,53,0], -"mail_8php.html#acfc2cc0bf4e0b178207758384977f25a":[5,0,1,53,1], -"manage_8php.html":[5,0,1,54], -"manage_8php.html#a2bca247b5296827638959138367db4f5":[5,0,1,54,0], -"match_8php.html":[5,0,1,55], -"match_8php.html#a1dd853e959b9e70c1911bb2fb5f5130d":[5,0,1,55,0], -"md_README.html":[2] +"layouts_8php.html":[5,0,1,48], +"layouts_8php.html#a6e0193759ad9eef76d3df2db24237b50":[5,0,1,48,0], +"like_8php.html":[5,0,1,49], +"like_8php.html#a9d7dd268f21c21e9d29dd2aca2dd9538":[5,0,1,49,0], +"lockview_8php.html":[5,0,1,50] }; diff --git a/doc/html/navtreeindex6.js b/doc/html/navtreeindex6.js index 836a46aee..fc98a8ea8 100644 --- a/doc/html/navtreeindex6.js +++ b/doc/html/navtreeindex6.js @@ -1,5 +1,21 @@ var NAVTREEINDEX6 = { +"lockview_8php.html#a851e26ab9a1008df5c5ebebea31e9b44":[5,0,1,50,0], +"login_8php.html":[5,0,1,51], +"login_8php.html#a1d69ca88eb9005a7026e128b9a645904":[5,0,1,51,0], +"lostpass_8php.html":[5,0,1,52], +"lostpass_8php.html#a0314d94e48c789b1b3a201d740c9eab3":[5,0,1,52,0], +"lostpass_8php.html#a8ed35ba71a4404eaf4903da61d0321cc":[5,0,1,52,1], +"magic_8php.html":[5,0,1,53], +"magic_8php.html#acea2cc792849ca2d71d4b689f66518bf":[5,0,1,53,0], +"mail_8php.html":[5,0,1,54], +"mail_8php.html#a3c7c485fc69f92371e8b20936040eca1":[5,0,1,54,0], +"mail_8php.html#acfc2cc0bf4e0b178207758384977f25a":[5,0,1,54,1], +"manage_8php.html":[5,0,1,55], +"manage_8php.html#a2bca247b5296827638959138367db4f5":[5,0,1,55,0], +"match_8php.html":[5,0,1,56], +"match_8php.html#a1dd853e959b9e70c1911bb2fb5f5130d":[5,0,1,56,0], +"md_README.html":[2], "md_config.html":[0], "md_fresh.html":[1], "minimal_8php.html":[5,0,3,0,3], @@ -10,69 +26,69 @@ var NAVTREEINDEX6 = "minimalisticdarkness_8php.html#a6e5d97615c6faef5dbffe04b8024ceaf":[5,0,3,1,0,2,4,0], "minimalisticdarkness_8php.html#a70bb13be8f23ec47839da81e0796f1cb":[5,0,3,1,0,2,4,2], "minimalisticdarkness_8php.html#a7e6c3d4efde4e9a2de32308081372c6b":[5,0,3,1,0,2,4,1], -"mitem_8php.html":[5,0,1,58], -"mitem_8php.html#a6ee694cca4b551a20d7c7a94b5243ec1":[5,0,1,58,2], -"mitem_8php.html#a7a31b702ecad18eeb6a38b243ff0037e":[5,0,1,58,0], -"mitem_8php.html#a9627cd857cafdf04e4fc0ae48c8e8518":[5,0,1,58,1], +"mitem_8php.html":[5,0,1,59], +"mitem_8php.html#a6ee694cca4b551a20d7c7a94b5243ec1":[5,0,1,59,2], +"mitem_8php.html#a7a31b702ecad18eeb6a38b243ff0037e":[5,0,1,59,0], +"mitem_8php.html#a9627cd857cafdf04e4fc0ae48c8e8518":[5,0,1,59,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_2apps_8php.html":[5,0,1,5], -"mod_2apps_8php.html#a546016cb960d0b110ee8e489dfa6c27c":[5,0,1,5,0], -"mod_2attach_8php.html":[5,0,1,6], -"mod_2attach_8php.html#aa88eb5ad87aa1036a30e70339cc6c1b1":[5,0,1,6,0], -"mod_2bookmarks_8php.html":[5,0,1,9], -"mod_2bookmarks_8php.html#a6b7942f3d27e40f0f47c88704127b9b3":[5,0,1,9,1], -"mod_2bookmarks_8php.html#a774364b1c8404529581083631703527a":[5,0,1,9,0], -"mod_2chanman_8php.html":[5,0,1,10], -"mod_2chat_8php.html":[5,0,1,13], -"mod_2chat_8php.html#a8b0b8bee6fef6477e8c64c5e951b1b4f":[5,0,1,13,0], -"mod_2chat_8php.html#a999d594745597c656c9760253ae297ad":[5,0,1,13,2], -"mod_2chat_8php.html#aa9ae4782e9baef0b7314ab9527c2707e":[5,0,1,13,1], -"mod_2directory_8php.html":[5,0,1,22], -"mod_2directory_8php.html#a5ee59c213508b6b9787612a8219cb5bf":[5,0,1,22,1], -"mod_2directory_8php.html#aac79396570d759da2efac24fcedf5b44":[5,0,1,22,0], -"mod_2follow_8php.html":[5,0,1,36], -"mod_2follow_8php.html#a171f5b19f50d7738adc3b2e96ec6018a":[5,0,1,36,1], -"mod_2follow_8php.html#a4c540ea4e9f5c581c1a53516ac585592":[5,0,1,36,0], -"mod_2group_8php.html":[5,0,1,38], -"mod_2group_8php.html#a07a64f6c65b0080d8190b3d9728a7a83":[5,0,1,38,0], -"mod_2group_8php.html#aed1f009b1221348021bb34761160ef35":[5,0,1,38,1], -"mod_2menu_8php.html":[5,0,1,56], -"mod_2menu_8php.html#a6fed23af14d71a78a4153c8363a685cf":[5,0,1,56,0], -"mod_2menu_8php.html#aaa491ef173868fe002aece4632bcf393":[5,0,1,56,1], -"mod_2message_8php.html":[5,0,1,57], -"mod_2message_8php.html#ac72dfed3ce08fcb331d66b37edc6e15f":[5,0,1,57,0], -"mod_2network_8php.html":[5,0,1,61], -"mod_2network_8php.html#a180fce90ad11d7e0e45be094da7149ec":[5,0,1,61,1], -"mod_2network_8php.html#a43f2f29b90c5e29072c561934bc8f8b4":[5,0,1,61,0], -"mod_2notify_8php.html":[5,0,1,65], -"mod_2notify_8php.html#a94f9a6a9d4b5fd704baafff0c34f41ae":[5,0,1,65,1], -"mod_2notify_8php.html#acdf3851688ebd6d6a575eb84ef9febe3":[5,0,1,65,0], -"mod_2oembed_8php.html":[5,0,1,66], -"mod_2oembed_8php.html#a9145025aaf057fb5d3f9f7011e5e1014":[5,0,1,66,0], -"mod_2photos_8php.html":[5,0,1,75], -"mod_2photos_8php.html#a062bed4d04d14fee8a53f4c9be673080":[5,0,1,75,2], -"mod_2photos_8php.html#aa87382611a66ec5effdb2d78f13f5812":[5,0,1,75,0], -"mod_2photos_8php.html#ab950295cd77626f5fe65331a87693014":[5,0,1,75,1], -"mod_2probe_8php.html":[5,0,1,82], -"mod_2probe_8php.html#a1f1db3fa6038e451e737964c94bf5e99":[5,0,1,82,0], +"mod_2apps_8php.html":[5,0,1,6], +"mod_2apps_8php.html#a546016cb960d0b110ee8e489dfa6c27c":[5,0,1,6,0], +"mod_2attach_8php.html":[5,0,1,7], +"mod_2attach_8php.html#aa88eb5ad87aa1036a30e70339cc6c1b1":[5,0,1,7,0], +"mod_2bookmarks_8php.html":[5,0,1,10], +"mod_2bookmarks_8php.html#a6b7942f3d27e40f0f47c88704127b9b3":[5,0,1,10,1], +"mod_2bookmarks_8php.html#a774364b1c8404529581083631703527a":[5,0,1,10,0], +"mod_2chanman_8php.html":[5,0,1,11], +"mod_2chat_8php.html":[5,0,1,14], +"mod_2chat_8php.html#a8b0b8bee6fef6477e8c64c5e951b1b4f":[5,0,1,14,0], +"mod_2chat_8php.html#a999d594745597c656c9760253ae297ad":[5,0,1,14,2], +"mod_2chat_8php.html#aa9ae4782e9baef0b7314ab9527c2707e":[5,0,1,14,1], +"mod_2directory_8php.html":[5,0,1,23], +"mod_2directory_8php.html#a5ee59c213508b6b9787612a8219cb5bf":[5,0,1,23,1], +"mod_2directory_8php.html#aac79396570d759da2efac24fcedf5b44":[5,0,1,23,0], +"mod_2follow_8php.html":[5,0,1,37], +"mod_2follow_8php.html#a171f5b19f50d7738adc3b2e96ec6018a":[5,0,1,37,1], +"mod_2follow_8php.html#a4c540ea4e9f5c581c1a53516ac585592":[5,0,1,37,0], +"mod_2group_8php.html":[5,0,1,39], +"mod_2group_8php.html#a07a64f6c65b0080d8190b3d9728a7a83":[5,0,1,39,0], +"mod_2group_8php.html#aed1f009b1221348021bb34761160ef35":[5,0,1,39,1], +"mod_2menu_8php.html":[5,0,1,57], +"mod_2menu_8php.html#a6fed23af14d71a78a4153c8363a685cf":[5,0,1,57,0], +"mod_2menu_8php.html#aaa491ef173868fe002aece4632bcf393":[5,0,1,57,1], +"mod_2message_8php.html":[5,0,1,58], +"mod_2message_8php.html#ac72dfed3ce08fcb331d66b37edc6e15f":[5,0,1,58,0], +"mod_2network_8php.html":[5,0,1,62], +"mod_2network_8php.html#a180fce90ad11d7e0e45be094da7149ec":[5,0,1,62,1], +"mod_2network_8php.html#a43f2f29b90c5e29072c561934bc8f8b4":[5,0,1,62,0], +"mod_2notify_8php.html":[5,0,1,66], +"mod_2notify_8php.html#a94f9a6a9d4b5fd704baafff0c34f41ae":[5,0,1,66,1], +"mod_2notify_8php.html#acdf3851688ebd6d6a575eb84ef9febe3":[5,0,1,66,0], +"mod_2oembed_8php.html":[5,0,1,67], +"mod_2oembed_8php.html#a9145025aaf057fb5d3f9f7011e5e1014":[5,0,1,67,0], +"mod_2photos_8php.html":[5,0,1,76], +"mod_2photos_8php.html#a062bed4d04d14fee8a53f4c9be673080":[5,0,1,76,2], +"mod_2photos_8php.html#aa87382611a66ec5effdb2d78f13f5812":[5,0,1,76,0], +"mod_2photos_8php.html#ab950295cd77626f5fe65331a87693014":[5,0,1,76,1], +"mod_2probe_8php.html":[5,0,1,83], +"mod_2probe_8php.html#a1f1db3fa6038e451e737964c94bf5e99":[5,0,1,83,0], "mod__chanview_8php.html":[5,0,3,1,0,0,0], "mod__import_8php.html":[5,0,3,0,4], "mod__import_8php.html#a8db1899eeeb44dabd0904065b63627bb":[5,0,3,0,4,0], -"mood_8php.html":[5,0,1,59], -"mood_8php.html#a721b9b6703b3234a005641c92d409b8f":[5,0,1,59,0], -"mood_8php.html#a7ae136dd7476865b4828136175db5022":[5,0,1,59,1], -"msearch_8php.html":[5,0,1,60], -"msearch_8php.html#ac80d2a6c0a92e79eec7efbbccd74d9a8":[5,0,1,60,0], +"mood_8php.html":[5,0,1,60], +"mood_8php.html#a721b9b6703b3234a005641c92d409b8f":[5,0,1,60,0], +"mood_8php.html#a7ae136dd7476865b4828136175db5022":[5,0,1,60,1], +"msearch_8php.html":[5,0,1,61], +"msearch_8php.html#ac80d2a6c0a92e79eec7efbbccd74d9a8":[5,0,1,61,0], "mytheme_2php_2style_8php.html":[5,0,3,1,2,0,1], "mytheme_2php_2theme_8php.html":[5,0,3,1,2,0,2], "mytheme_2php_2theme_8php.html#a6ce5df8ece6acc09c1fddaccbeb244e8":[5,0,3,1,2,0,2,0], "namespaceFriendica.html":[3,0,1], "namespaceFriendica.html":[4,0,1], -"namespaceacl__selectors.html":[4,0,0], "namespaceacl__selectors.html":[3,0,0], +"namespaceacl__selectors.html":[4,0,0], "namespacefriendica-to-smarty-tpl.html":[4,0,2], "namespacefriendica-to-smarty-tpl.html":[3,0,2], "namespacemembers.html":[3,1,0], @@ -86,61 +102,61 @@ var NAVTREEINDEX6 = "nav_8php.html":[5,0,0,50], "nav_8php.html#a43be0df73b90647ea70947ce004e231e":[5,0,0,50,0], "nav_8php.html#ac3c920ce3ea5b0d9e0678ee37155f06a":[5,0,0,50,1], -"new__channel_8php.html":[5,0,1,62], -"new__channel_8php.html#a180b0646957db8290482f02454ad7f23":[5,0,1,62,2], -"new__channel_8php.html#a1ad7f99e4366a32942c6b954aba3a164":[5,0,1,62,1], -"new__channel_8php.html#ae585191610f79da129492482ce8e2fee":[5,0,1,62,0], +"new__channel_8php.html":[5,0,1,63], +"new__channel_8php.html#a180b0646957db8290482f02454ad7f23":[5,0,1,63,2], +"new__channel_8php.html#a1ad7f99e4366a32942c6b954aba3a164":[5,0,1,63,1], +"new__channel_8php.html#ae585191610f79da129492482ce8e2fee":[5,0,1,63,0], "none_8php.html":[5,0,3,0,5], -"notes_8php.html":[5,0,1,63], -"notes_8php.html#a4dbd7b1f906440746af48b484d66535a":[5,0,1,63,0], -"notifications_8php.html":[5,0,1,64], -"notifications_8php.html#a5baffec7b2e625c9f9cefbc097550d33":[5,0,1,64,1], -"notifications_8php.html#aadd0b5525bd8c283a5d8a37982bbfe62":[5,0,1,64,0], +"notes_8php.html":[5,0,1,64], +"notes_8php.html#a4dbd7b1f906440746af48b484d66535a":[5,0,1,64,0], +"notifications_8php.html":[5,0,1,65], +"notifications_8php.html#a5baffec7b2e625c9f9cefbc097550d33":[5,0,1,65,1], +"notifications_8php.html#aadd0b5525bd8c283a5d8a37982bbfe62":[5,0,1,65,0], "notifier_8php.html":[5,0,0,52], "notifier_8php.html#a568c502f626cff95e344c0748938b85d":[5,0,0,52,0], "notred_8php.html":[5,0,3,1,3,1,3], "oauth_8php.html":[5,0,0,54], "oauth_8php.html#a7a32a5990f113ac9465b03b29175cf16":[5,0,0,54,3], "oauth_8php.html#ad343cab37aa860d2d14dc86b7f5ca0c6":[5,0,0,54,2], -"oexchange_8php.html":[5,0,1,67], -"oexchange_8php.html#a2d8b785cd7d041a4e6274f5af370cf26":[5,0,1,67,0], -"oexchange_8php.html#ac8e2e469ddc3db984b0c1b44558aca59":[5,0,1,67,1], +"oexchange_8php.html":[5,0,1,68], +"oexchange_8php.html#a2d8b785cd7d041a4e6274f5af370cf26":[5,0,1,68,0], +"oexchange_8php.html#ac8e2e469ddc3db984b0c1b44558aca59":[5,0,1,68,1], "olddefault_8php.html":[5,0,3,1,0,2,5], "onedirsync_8php.html":[5,0,0,56], "onedirsync_8php.html#a411aedd47c57476099647961e6a86691":[5,0,0,56,0], "onepoll_8php.html":[5,0,0,57], "onepoll_8php.html#a72753b2fdec79b37c7f432035c91fb6d":[5,0,0,57,0], -"online_8php.html":[5,0,1,68], -"online_8php.html#a80e107c84eb722b0ca11d0413b96f9f7":[5,0,1,68,0], -"openid_8php.html":[5,0,1,69], -"openid_8php.html#a9a13827dbcf61ae4e45f0b6b33a88f43":[5,0,1,69,0], -"opensearch_8php.html":[5,0,1,70], -"opensearch_8php.html#ad13034877a496565ac7d99e9fc6f55e9":[5,0,1,70,0], -"page_8php.html":[5,0,1,71], -"page_8php.html#a4d89800c0366a239191b1692c09635cf":[5,0,1,71,1], -"page_8php.html#a91a5f649f68406149108bded1dc90b22":[5,0,1,71,0], +"online_8php.html":[5,0,1,69], +"online_8php.html#a80e107c84eb722b0ca11d0413b96f9f7":[5,0,1,69,0], +"openid_8php.html":[5,0,1,70], +"openid_8php.html#a9a13827dbcf61ae4e45f0b6b33a88f43":[5,0,1,70,0], +"opensearch_8php.html":[5,0,1,71], +"opensearch_8php.html#ad13034877a496565ac7d99e9fc6f55e9":[5,0,1,71,0], +"page_8php.html":[5,0,1,72], +"page_8php.html#a4d89800c0366a239191b1692c09635cf":[5,0,1,72,1], +"page_8php.html#a91a5f649f68406149108bded1dc90b22":[5,0,1,72,0], "page__widgets_8php.html":[5,0,0,58], "page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f":[5,0,0,58,1], "page__widgets_8php.html#a39d547771c5f12a17c097436c82f0fa2":[5,0,0,58,0], "pages.html":[], -"parse__url_8php.html":[5,0,1,72], -"parse__url_8php.html#a05a9e8944380ba3cf6bbf5893dd4b74b":[5,0,1,72,2], -"parse__url_8php.html#a25635549f2c22955d72465f4d2e58993":[5,0,1,72,3], -"parse__url_8php.html#a496f4e3836154f6f32b8e805a7160d3a":[5,0,1,72,1], -"parse__url_8php.html#aa7dd8f961bea042d62726ed909e4a868":[5,0,1,72,0], +"parse__url_8php.html":[5,0,1,73], +"parse__url_8php.html#a05a9e8944380ba3cf6bbf5893dd4b74b":[5,0,1,73,2], +"parse__url_8php.html#a25635549f2c22955d72465f4d2e58993":[5,0,1,73,3], +"parse__url_8php.html#a496f4e3836154f6f32b8e805a7160d3a":[5,0,1,73,1], +"parse__url_8php.html#aa7dd8f961bea042d62726ed909e4a868":[5,0,1,73,0], "passion_8php.html":[5,0,3,1,0,2,6], "passionwide_8php.html":[5,0,3,1,0,2,7], -"pdledit_8php.html":[5,0,1,73], -"pdledit_8php.html#a59cb550f6b7a4e7d8196fbc9de601619":[5,0,1,73,0], -"pdledit_8php.html#a81da3c955d0e3db55d148a31483104c7":[5,0,1,73,1], +"pdledit_8php.html":[5,0,1,74], +"pdledit_8php.html#a59cb550f6b7a4e7d8196fbc9de601619":[5,0,1,74,0], +"pdledit_8php.html#a81da3c955d0e3db55d148a31483104c7":[5,0,1,74,1], "permissions_8php.html":[5,0,0,59], "permissions_8php.html#a040fd3d3b8517658b1668ae0cd093972":[5,0,0,59,2], "permissions_8php.html#a0f5bd9f7f4c8fb7ba4b2c1ed048b4dc7":[5,0,0,59,0], "permissions_8php.html#a67ada9ed51e77885b6b0f6a28cee1835":[5,0,0,59,3], "permissions_8php.html#aa8b7b102c653649d7a71b5a1c044d90d":[5,0,0,59,4], "permissions_8php.html#aeca9b280f3dc3358c89976d81d690008":[5,0,0,59,1], -"photo_8php.html":[5,0,1,74], -"photo_8php.html#a582779d24882b0d31ee909a91d70a448":[5,0,1,74,0], +"photo_8php.html":[5,0,1,75], +"photo_8php.html#a582779d24882b0d31ee909a91d70a448":[5,0,1,75,0], "photo__driver_8php.html":[5,0,0,1,0], "photo__driver_8php.html#a1d0bc7161dec0d177b7d3bbe4421af9a":[5,0,0,1,0,2], "photo__driver_8php.html#a243cee492ce443afb6a7d77d54b6c4aa":[5,0,0,1,0,1], @@ -161,11 +177,11 @@ var NAVTREEINDEX6 = "php_2default_8php.html#a3987f5547ceb7e36a210a66a06241a5a":[5,0,3,0,1,0], "php_2theme__init_8php.html":[5,0,3,0,6], "php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864":[5,0,3,0,6,0], -"php_8php.html":[5,0,1,76], -"php_8php.html#adb7164dfed9a4ecbe2e168e1e78f12f6":[5,0,1,76,0], +"php_8php.html":[5,0,1,77], +"php_8php.html#adb7164dfed9a4ecbe2e168e1e78f12f6":[5,0,1,77,0], "pine_8php.html":[5,0,3,1,0,2,8], -"ping_8php.html":[5,0,1,77], -"ping_8php.html#a77217b1b190b4c5d8770867b45f0c0a1":[5,0,1,77,0], +"ping_8php.html":[5,0,1,78], +"ping_8php.html#a77217b1b190b4c5d8770867b45f0c0a1":[5,0,1,78,0], "plugin_8php.html":[5,0,0,61], "plugin_8php.html#a030cec6793b909c439c0336ba39b1571":[5,0,0,61,22], "plugin_8php.html#a093a9cb98f51e3643634bd8bc6ed6e76":[5,0,0,61,25], @@ -200,16 +216,16 @@ var NAVTREEINDEX6 = "plugin_8php.html#aff0178bd8d0b34a94d5efddc883edd35":[5,0,0,61,5], "po2php_8php.html":[5,0,2,7], "po2php_8php.html#a3b75e36f913198299e99559b175cd8b4":[5,0,2,7,0], -"poco_8php.html":[5,0,1,78], -"poco_8php.html#a53def16f75e3d41f1d2bb7cfa4905498":[5,0,1,78,0], -"poke_8php.html":[5,0,1,79], -"poke_8php.html#a9725aab97b3983e6a98bd81c4efe7d3b":[5,0,1,79,1], -"poke_8php.html#ac9190563a8da9c07a16f9dcd71cf6993":[5,0,1,79,0], +"poco_8php.html":[5,0,1,79], +"poco_8php.html#a53def16f75e3d41f1d2bb7cfa4905498":[5,0,1,79,0], +"poke_8php.html":[5,0,1,80], +"poke_8php.html#a9725aab97b3983e6a98bd81c4efe7d3b":[5,0,1,80,1], +"poke_8php.html#ac9190563a8da9c07a16f9dcd71cf6993":[5,0,1,80,0], "poller_8php.html":[5,0,0,62], "poller_8php.html#a5f12df3a4738124b6c039971e87e76da":[5,0,0,62,0], -"post_8php.html":[5,0,1,80], -"post_8php.html#af4b48181ce773ef0cdfc972441445c34":[5,0,1,80,0], -"post_8php.html#af59e6a1dc22d19d9257b01cd7ccedb75":[5,0,1,80,1], +"post_8php.html":[5,0,1,81], +"post_8php.html#af4b48181ce773ef0cdfc972441445c34":[5,0,1,81,0], +"post_8php.html#af59e6a1dc22d19d9257b01cd7ccedb75":[5,0,1,81,1], "post__to__red_8php.html":[5,0,2,1,0,0], "post__to__red_8php.html#a085c250d4ceff5e4f10052f3d2039823":[5,0,2,1,0,0,16], "post__to__red_8php.html#a0f139dea77a94c98f26007963eea639c":[5,0,2,1,0,0,12], @@ -233,21 +249,5 @@ var NAVTREEINDEX6 = "post__to__red_8php.html#ae6f3a2c0561cbeacda5be565b06de8a7":[5,0,2,1,0,0,6], "post__to__red_8php.html#aeec4125719184e7b097b3b9fba3101b5":[5,0,2,1,0,0,0], "post__to__red_8php.html#af2713018a2dc97e88f121fc6215beb66":[5,0,2,1,0,0,18], -"post__to__red_8php.html#af3e7ebd361d4ed7cb6d43209970cd94a":[5,0,2,1,0,0,23], -"post__to__red_8php.html#af5fd50e2c42ede85f8a9e8d9ee3cf540":[5,0,2,1,0,0,11], -"pretheme_8php.html":[5,0,1,81], -"pretheme_8php.html#af5660943ee99db5fd75182316522eafe":[5,0,1,81,0], -"profile_8php.html":[5,0,1,83], -"profile_8php.html#a3775cf6eef6587e5143133356a7b76c0":[5,0,1,83,0], -"profile_8php.html#ab5d0246be0552e2182a585c1206d22a5":[5,0,1,83,1], -"profile__photo_8php.html":[5,0,1,84], -"profile__photo_8php.html#a140631c56438fbfacb61a1eb43067d02":[5,0,1,84,0], -"profile__photo_8php.html#a4b80234074bd603221aa5364f330e479":[5,0,1,84,1], -"profile__photo_8php.html#a561103564199da56e58061a4196eb102":[5,0,1,84,2], -"profile__selectors_8php.html":[5,0,0,64], -"profile__selectors_8php.html#a3b50b3ea4ea4bdbebebfffc5d1b157c7":[5,0,0,64,2], -"profile__selectors_8php.html#a7473dd095987e1cdcc79d4f0bb5e6798":[5,0,0,64,1], -"profile__selectors_8php.html#ae2b2c087e6530c61c0b256fd26d52355":[5,0,0,64,0], -"profiles_8php.html":[5,0,1,85], -"profiles_8php.html#a36f71405ad536228f8bb84a551b23f7e":[5,0,1,85,1] +"post__to__red_8php.html#af3e7ebd361d4ed7cb6d43209970cd94a":[5,0,2,1,0,0,23] }; diff --git a/doc/html/navtreeindex7.js b/doc/html/navtreeindex7.js index 3711d858a..2c5307803 100644 --- a/doc/html/navtreeindex7.js +++ b/doc/html/navtreeindex7.js @@ -1,22 +1,38 @@ var NAVTREEINDEX7 = { -"profiles_8php.html#a46975783b8b8d70402d51487eb1f0b00":[5,0,1,85,0], -"profiles_8php.html#ab0362c81b1d3b0b12a772b9fac446e04":[5,0,1,85,2], -"profperm_8php.html":[5,0,1,86], -"profperm_8php.html#a17fb64ec05edee1dc94d95438807d6c6":[5,0,1,86,1], -"profperm_8php.html#aef015787de2373d9fb3fe3f814fb5023":[5,0,1,86,0], -"pubsites_8php.html":[5,0,1,87], -"pubsites_8php.html#af614e279aab54065345bda6b03eafdf0":[5,0,1,87,0], +"post__to__red_8php.html#af5fd50e2c42ede85f8a9e8d9ee3cf540":[5,0,2,1,0,0,11], +"pretheme_8php.html":[5,0,1,82], +"pretheme_8php.html#af5660943ee99db5fd75182316522eafe":[5,0,1,82,0], +"profile_8php.html":[5,0,1,84], +"profile_8php.html#a3775cf6eef6587e5143133356a7b76c0":[5,0,1,84,0], +"profile_8php.html#ab5d0246be0552e2182a585c1206d22a5":[5,0,1,84,1], +"profile__photo_8php.html":[5,0,1,85], +"profile__photo_8php.html#a140631c56438fbfacb61a1eb43067d02":[5,0,1,85,0], +"profile__photo_8php.html#a4b80234074bd603221aa5364f330e479":[5,0,1,85,1], +"profile__photo_8php.html#a561103564199da56e58061a4196eb102":[5,0,1,85,2], +"profile__selectors_8php.html":[5,0,0,64], +"profile__selectors_8php.html#a3b50b3ea4ea4bdbebebfffc5d1b157c7":[5,0,0,64,2], +"profile__selectors_8php.html#a7473dd095987e1cdcc79d4f0bb5e6798":[5,0,0,64,1], +"profile__selectors_8php.html#ae2b2c087e6530c61c0b256fd26d52355":[5,0,0,64,0], +"profiles_8php.html":[5,0,1,86], +"profiles_8php.html#a36f71405ad536228f8bb84a551b23f7e":[5,0,1,86,1], +"profiles_8php.html#a46975783b8b8d70402d51487eb1f0b00":[5,0,1,86,0], +"profiles_8php.html#ab0362c81b1d3b0b12a772b9fac446e04":[5,0,1,86,2], +"profperm_8php.html":[5,0,1,87], +"profperm_8php.html#a17fb64ec05edee1dc94d95438807d6c6":[5,0,1,87,1], +"profperm_8php.html#aef015787de2373d9fb3fe3f814fb5023":[5,0,1,87,0], +"pubsites_8php.html":[5,0,1,88], +"pubsites_8php.html#af614e279aab54065345bda6b03eafdf0":[5,0,1,88,0], "queue_8php.html":[5,0,0,66], "queue_8php.html#af8c93de86d866c3200174c8450a0f341":[5,0,0,66,0], "queue__fn_8php.html":[5,0,0,67], "queue__fn_8php.html#a4c2876181f75a4a61e85b7f00dfdbba1":[5,0,0,67,1], "queue__fn_8php.html#a8fe71e981399bbf5d000a6ca42f57b24":[5,0,0,67,0], -"randprof_8php.html":[5,0,1,88], -"randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090":[5,0,1,88,0], -"rbmark_8php.html":[5,0,1,89], -"rbmark_8php.html#a43fec4960b50926251574762cc491f76":[5,0,1,89,0], -"rbmark_8php.html#ac5a66aa8599fa5dc702bae396d8d1f8c":[5,0,1,89,1], +"randprof_8php.html":[5,0,1,89], +"randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090":[5,0,1,89,0], +"rbmark_8php.html":[5,0,1,90], +"rbmark_8php.html#a43fec4960b50926251574762cc491f76":[5,0,1,90,0], +"rbmark_8php.html#ac5a66aa8599fa5dc702bae396d8d1f8c":[5,0,1,90,1], "redbasic_2php_2style_8php.html":[5,0,3,1,3,0,1], "redbasic_2php_2style_8php.html#a01c151bf47f7da2b979aaa4cb868da4c":[5,0,3,1,3,0,1,0], "redbasic_2php_2style_8php.html#ab3afb90d611eca90819f597a2c0bb459":[5,0,3,1,3,0,1,1], @@ -27,28 +43,28 @@ var NAVTREEINDEX7 = "reddav_8php.html#a5df0d09893f2e65dc5cf6bbab6cfb266":[5,0,0,68,5], "reddav_8php.html#a9f531641dfb4e43cd88ac1a9ae7e2088":[5,0,0,68,6], "reddav_8php.html#ae92ea0df1993f6a7bcd1b6efa6c1fb66":[5,0,0,68,4], -"register_8php.html":[5,0,1,90], -"register_8php.html#a0e91f57f111407ea8d3223a05022bb2a":[5,0,1,90,0], -"register_8php.html#a51731dcc1917c58a790eb1c0f6132271":[5,0,1,90,2], -"register_8php.html#ae20c0cd40f738d6295de58b9202c83d5":[5,0,1,90,1], -"regmod_8php.html":[5,0,1,91], -"regmod_8php.html#a7953df4e32e63946565e90cdd5d50409":[5,0,1,91,0], -"removeme_8php.html":[5,0,1,92], -"removeme_8php.html#a065a589caa2aa84c60f7073a28f0ad9c":[5,0,1,92,0], -"removeme_8php.html#a7be08738beca44bb98a79e01cdb2ee88":[5,0,1,92,1], -"rmagic_8php.html":[5,0,1,93], -"rmagic_8php.html#a3e28db1e5cfa7e5c2617f90222c1caef":[5,0,1,93,0], -"rmagic_8php.html#a869de069d081b3c4e98b957d06bbf08f":[5,0,1,93,2], -"rmagic_8php.html#a95455edd43f1bff39446a57388cdde16":[5,0,1,93,1], -"rpost_8php.html":[5,0,1,94], -"rpost_8php.html#a8190354d789000806d9879aea276728f":[5,0,1,94,0], -"rsd__xml_8php.html":[5,0,1,95], -"rsd__xml_8php.html#a740cd02fa15e5a53f8547fac73f0ab82":[5,0,1,95,0], -"search_8php.html":[5,0,1,96], -"search_8php.html#ab2568591359edde5b483a6cd9a24b2cc":[5,0,1,96,0], -"search_8php.html#acf19fd30f07f495781ca0d7a0a08b435":[5,0,1,96,1], -"search__ac_8php.html":[5,0,1,97], -"search__ac_8php.html#a14f90c83a3f2be095e9e2992a8d66138":[5,0,1,97,0], +"register_8php.html":[5,0,1,91], +"register_8php.html#a0e91f57f111407ea8d3223a05022bb2a":[5,0,1,91,0], +"register_8php.html#a51731dcc1917c58a790eb1c0f6132271":[5,0,1,91,2], +"register_8php.html#ae20c0cd40f738d6295de58b9202c83d5":[5,0,1,91,1], +"regmod_8php.html":[5,0,1,92], +"regmod_8php.html#a7953df4e32e63946565e90cdd5d50409":[5,0,1,92,0], +"removeme_8php.html":[5,0,1,93], +"removeme_8php.html#a065a589caa2aa84c60f7073a28f0ad9c":[5,0,1,93,0], +"removeme_8php.html#a7be08738beca44bb98a79e01cdb2ee88":[5,0,1,93,1], +"rmagic_8php.html":[5,0,1,94], +"rmagic_8php.html#a3e28db1e5cfa7e5c2617f90222c1caef":[5,0,1,94,0], +"rmagic_8php.html#a869de069d081b3c4e98b957d06bbf08f":[5,0,1,94,2], +"rmagic_8php.html#a95455edd43f1bff39446a57388cdde16":[5,0,1,94,1], +"rpost_8php.html":[5,0,1,95], +"rpost_8php.html#a8190354d789000806d9879aea276728f":[5,0,1,95,0], +"rsd__xml_8php.html":[5,0,1,96], +"rsd__xml_8php.html#a740cd02fa15e5a53f8547fac73f0ab82":[5,0,1,96,0], +"search_8php.html":[5,0,1,97], +"search_8php.html#ab2568591359edde5b483a6cd9a24b2cc":[5,0,1,97,0], +"search_8php.html#acf19fd30f07f495781ca0d7a0a08b435":[5,0,1,97,1], +"search__ac_8php.html":[5,0,1,98], +"search__ac_8php.html#a14f90c83a3f2be095e9e2992a8d66138":[5,0,1,98,0], "security_8php.html":[5,0,0,69], "security_8php.html#a15e0f8f511cc06192db63387f97238b3":[5,0,0,69,11], "security_8php.html#a20f8b9851f23ee8894b8925584ef6821":[5,0,0,69,2], @@ -73,37 +89,37 @@ var NAVTREEINDEX7 = "session_8php.html#ac95373f4966862a028033dd2f94d4da1":[5,0,0,70,3], "session_8php.html#af0100a2642a5268594bbd5742a03d885":[5,0,0,70,9], "session_8php.html#af230b86bfff7db66c3bdd7e0bbc24052":[5,0,0,70,2], -"settings_8php.html":[5,0,1,98], -"settings_8php.html#a39abc76ff5459c57e3b957664f273f18":[5,0,1,98,0], -"settings_8php.html#a3a4cde287482fced008583f54ba2a722":[5,0,1,98,1], -"settings_8php.html#aa7ee94d88ac088edb04ccf3a26de3586":[5,0,1,98,2], -"setup_8php.html":[5,0,1,99], -"setup_8php.html#a0c3f3b671381f6dccd924b8ecdfc56c4":[5,0,1,99,2], -"setup_8php.html#a13cf286774149a0a7bd8adb8179cec75":[5,0,1,99,14], -"setup_8php.html#a14d208682a88632290c895d20da6e7d6":[5,0,1,99,5], -"setup_8php.html#a267555abd17290e659b4bf44b885e4e0":[5,0,1,99,13], -"setup_8php.html#a2b375ddc555140236fc500135de99371":[5,0,1,99,10], -"setup_8php.html#a5ad92c0857d1dadd6b60a9a557159c9f":[5,0,1,99,3], -"setup_8php.html#a69a450e06dd3771fb51d3e4b0266a35e":[5,0,1,99,1], -"setup_8php.html#a8652788e8589778c5f81634a9d5b9429":[5,0,1,99,8], -"setup_8php.html#a88247384a96e14516f474d7af6a465c1":[5,0,1,99,12], -"setup_8php.html#aa3bbb111780da70ba35cc23a306f2c76":[5,0,1,99,4], -"setup_8php.html#ab4b71369a25021d59247c917e98d8246":[5,0,1,99,7], -"setup_8php.html#abe405d227ba7232971964a706d4f3bce":[5,0,1,99,11], -"setup_8php.html#ad2e0375a9ab87ebe6e78124ee125054a":[5,0,1,99,9], -"setup_8php.html#addb24714bc2542aa4f4215e98fe48432":[5,0,1,99,16], -"setup_8php.html#ae8e4d9279a61de74d5f39962cb7b6ca1":[5,0,1,99,0], -"setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58":[5,0,1,99,15], -"setup_8php.html#afd8b0b3ade1507c45325caf377bf459d":[5,0,1,99,6], -"share_8php.html":[5,0,1,100], -"share_8php.html#afeb26046bdd02567ecd29ab5f188b249":[5,0,1,100,0], -"siteinfo_8php.html":[5,0,1,101], -"siteinfo_8php.html#a3efbd0bd6564af19ec0a9ce0294e59d0":[5,0,1,101,1], -"siteinfo_8php.html#a70c09bfb6dd1c86a125a35f62ed53656":[5,0,1,101,0], -"sitelist_8php.html":[5,0,1,102], -"sitelist_8php.html#a665a59bf60f780b40f32c909f4a473b1":[5,0,1,102,0], -"smilies_8php.html":[5,0,1,103], -"smilies_8php.html#ab43b1e9f33a700a830aff14c7b3a617f":[5,0,1,103,0], +"settings_8php.html":[5,0,1,99], +"settings_8php.html#a39abc76ff5459c57e3b957664f273f18":[5,0,1,99,0], +"settings_8php.html#a3a4cde287482fced008583f54ba2a722":[5,0,1,99,1], +"settings_8php.html#aa7ee94d88ac088edb04ccf3a26de3586":[5,0,1,99,2], +"setup_8php.html":[5,0,1,100], +"setup_8php.html#a0c3f3b671381f6dccd924b8ecdfc56c4":[5,0,1,100,2], +"setup_8php.html#a13cf286774149a0a7bd8adb8179cec75":[5,0,1,100,14], +"setup_8php.html#a14d208682a88632290c895d20da6e7d6":[5,0,1,100,5], +"setup_8php.html#a267555abd17290e659b4bf44b885e4e0":[5,0,1,100,13], +"setup_8php.html#a2b375ddc555140236fc500135de99371":[5,0,1,100,10], +"setup_8php.html#a5ad92c0857d1dadd6b60a9a557159c9f":[5,0,1,100,3], +"setup_8php.html#a69a450e06dd3771fb51d3e4b0266a35e":[5,0,1,100,1], +"setup_8php.html#a8652788e8589778c5f81634a9d5b9429":[5,0,1,100,8], +"setup_8php.html#a88247384a96e14516f474d7af6a465c1":[5,0,1,100,12], +"setup_8php.html#aa3bbb111780da70ba35cc23a306f2c76":[5,0,1,100,4], +"setup_8php.html#ab4b71369a25021d59247c917e98d8246":[5,0,1,100,7], +"setup_8php.html#abe405d227ba7232971964a706d4f3bce":[5,0,1,100,11], +"setup_8php.html#ad2e0375a9ab87ebe6e78124ee125054a":[5,0,1,100,9], +"setup_8php.html#addb24714bc2542aa4f4215e98fe48432":[5,0,1,100,16], +"setup_8php.html#ae8e4d9279a61de74d5f39962cb7b6ca1":[5,0,1,100,0], +"setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58":[5,0,1,100,15], +"setup_8php.html#afd8b0b3ade1507c45325caf377bf459d":[5,0,1,100,6], +"share_8php.html":[5,0,1,101], +"share_8php.html#afeb26046bdd02567ecd29ab5f188b249":[5,0,1,101,0], +"siteinfo_8php.html":[5,0,1,102], +"siteinfo_8php.html#a3efbd0bd6564af19ec0a9ce0294e59d0":[5,0,1,102,1], +"siteinfo_8php.html#a70c09bfb6dd1c86a125a35f62ed53656":[5,0,1,102,0], +"sitelist_8php.html":[5,0,1,103], +"sitelist_8php.html#a665a59bf60f780b40f32c909f4a473b1":[5,0,1,103,0], +"smilies_8php.html":[5,0,1,104], +"smilies_8php.html#ab43b1e9f33a700a830aff14c7b3a617f":[5,0,1,104,0], "socgraph_8php.html":[5,0,0,71], "socgraph_8php.html#a16ac51c505d72987ed8d6d6aed0e8586":[5,0,0,71,0], "socgraph_8php.html#a5ef8bef37161df53718a21e93d02fbd6":[5,0,0,71,6], @@ -114,28 +130,28 @@ var NAVTREEINDEX7 = "socgraph_8php.html#ac343a846241d36cdf046b08f3396cfe9":[5,0,0,71,2], "socgraph_8php.html#af175807406d94407a5e11742a3287746":[5,0,0,71,5], "socgraph_8php.html#af29d056beec10b4e38e5209c92452894":[5,0,0,71,3], -"sources_8php.html":[5,0,1,104], -"sources_8php.html#ac442ccef080ab95772d8929fcafcb4b7":[5,0,1,104,0], -"sources_8php.html#ac73298ff162ce7b2de8dcaf3d3305b1e":[5,0,1,104,1], +"sources_8php.html":[5,0,1,105], +"sources_8php.html#ac442ccef080ab95772d8929fcafcb4b7":[5,0,1,105,0], +"sources_8php.html#ac73298ff162ce7b2de8dcaf3d3305b1e":[5,0,1,105,1], "spam_8php.html":[5,0,0,72], "spam_8php.html#a05861201147b9a538d006f0269255cf9":[5,0,0,72,1], "spam_8php.html#ab8fd81a82c9622cbebb8ceab6b310ca6":[5,0,0,72,0], -"sslify_8php.html":[5,0,1,105], -"sslify_8php.html#a75b11e54a3d1fc83e7d4c0e8b4dab316":[5,0,1,105,0], -"starred_8php.html":[5,0,1,106], -"starred_8php.html#a63024fb418c678e49fd535e3752d349a":[5,0,1,106,0], -"subthread_8php.html":[5,0,1,107], -"subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3":[5,0,1,107,0], -"suggest_8php.html":[5,0,1,108], -"suggest_8php.html#a58748a8235d4523f8333847f3e42dd91":[5,0,1,108,0], -"suggest_8php.html#a696acf1dd8070e479adcc80c63c6718c":[5,0,1,108,1], +"sslify_8php.html":[5,0,1,106], +"sslify_8php.html#a75b11e54a3d1fc83e7d4c0e8b4dab316":[5,0,1,106,0], +"starred_8php.html":[5,0,1,107], +"starred_8php.html#a63024fb418c678e49fd535e3752d349a":[5,0,1,107,0], +"subthread_8php.html":[5,0,1,108], +"subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3":[5,0,1,108,0], +"suggest_8php.html":[5,0,1,109], +"suggest_8php.html#a58748a8235d4523f8333847f3e42dd91":[5,0,1,109,0], +"suggest_8php.html#a696acf1dd8070e479adcc80c63c6718c":[5,0,1,109,1], "system__unavailable_8php.html":[5,0,0,73], "system__unavailable_8php.html#a73751a6bcc17ad3ca503496e2fb020fa":[5,0,0,73,0], -"tagger_8php.html":[5,0,1,109], -"tagger_8php.html#a0e4a3eb177d1684553c547503d67161c":[5,0,1,109,0], -"tagrm_8php.html":[5,0,1,110], -"tagrm_8php.html#a1702f40aa53a2fa93deade1f609abe78":[5,0,1,110,1], -"tagrm_8php.html#adfd4ea5b4d7fc6d9c9e042af5cd7d49a":[5,0,1,110,0], +"tagger_8php.html":[5,0,1,110], +"tagger_8php.html#a0e4a3eb177d1684553c547503d67161c":[5,0,1,110,0], +"tagrm_8php.html":[5,0,1,111], +"tagrm_8php.html#a1702f40aa53a2fa93deade1f609abe78":[5,0,1,111,1], +"tagrm_8php.html#adfd4ea5b4d7fc6d9c9e042af5cd7d49a":[5,0,1,111,0], "taxonomy_8php.html":[5,0,0,74], "taxonomy_8php.html#a03f55ee46c5f496e42f3d29db8d09cce":[5,0,0,74,9], "taxonomy_8php.html#a088371f4bc19155b2291508f5cd63332":[5,0,0,74,0], @@ -233,21 +249,5 @@ var NAVTREEINDEX7 = "text_8php.html#ac19d2b33a58372a357a43d51eed19162":[5,0,0,76,56], "text_8php.html#ac1dbf2e37e8069bea2c0f557fdbf203e":[5,0,0,76,37], "text_8php.html#ac2ff88e800f74b22e9cc091c10809c54":[5,0,0,76,76], -"text_8php.html#ace3c98538c63e09b70a363210b414112":[5,0,0,76,21], -"text_8php.html#acedb584f65114a33f389efb796172a91":[5,0,0,76,2], -"text_8php.html#ad6432621d0fafcbcf3d3b9b49bef7784":[5,0,0,76,13], -"text_8php.html#ad855a32bee22c3f3b9734e3a334b96f2":[5,0,0,76,64], -"text_8php.html#adba17ec946f4285285dc100f7860bf51":[5,0,0,76,51], -"text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8":[5,0,0,76,38], -"text_8php.html#ae2126da85966da0e79c6bcbac63b0bda":[5,0,0,76,66], -"text_8php.html#ae4282a39492caa23ccbc2ce98e54f110":[5,0,0,76,18], -"text_8php.html#ae4df74296fbe55051ed3c035e55205e5":[5,0,0,76,57], -"text_8php.html#af8a3e3a66a7b862d4510f145d2e13186":[5,0,0,76,0], -"text_8php.html#af9c9ac3f74c82dc60acfa404d0e9dc53":[5,0,0,76,77], -"text_8php.html#afc998d2796a6b2a08e96f7cc061e7221":[5,0,0,76,62], -"text_8php.html#afdc69fe3f6c09e35e46304dcea63ae28":[5,0,0,76,22], -"text_8php.html#afe18627c4983ee5f7c940a0992818cd5":[5,0,0,76,12], -"text_8php.html#afe54312607d92f7ce9593f5760831f80":[5,0,0,76,58], -"text_8php.html#afe9f178d264d44a94dc1292aaf0fd585":[5,0,0,76,53], -"theme_2apw_2php_2theme__init_8php.html":[5,0,3,1,0,1,4] +"text_8php.html#ace3c98538c63e09b70a363210b414112":[5,0,0,76,21] }; diff --git a/doc/html/navtreeindex8.js b/doc/html/navtreeindex8.js index 968c3a84e..70f9c17d1 100644 --- a/doc/html/navtreeindex8.js +++ b/doc/html/navtreeindex8.js @@ -1,5 +1,21 @@ var NAVTREEINDEX8 = { +"text_8php.html#acedb584f65114a33f389efb796172a91":[5,0,0,76,2], +"text_8php.html#ad6432621d0fafcbcf3d3b9b49bef7784":[5,0,0,76,13], +"text_8php.html#ad855a32bee22c3f3b9734e3a334b96f2":[5,0,0,76,64], +"text_8php.html#adba17ec946f4285285dc100f7860bf51":[5,0,0,76,51], +"text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8":[5,0,0,76,38], +"text_8php.html#ae2126da85966da0e79c6bcbac63b0bda":[5,0,0,76,66], +"text_8php.html#ae4282a39492caa23ccbc2ce98e54f110":[5,0,0,76,18], +"text_8php.html#ae4df74296fbe55051ed3c035e55205e5":[5,0,0,76,57], +"text_8php.html#af8a3e3a66a7b862d4510f145d2e13186":[5,0,0,76,0], +"text_8php.html#af9c9ac3f74c82dc60acfa404d0e9dc53":[5,0,0,76,77], +"text_8php.html#afc998d2796a6b2a08e96f7cc061e7221":[5,0,0,76,62], +"text_8php.html#afdc69fe3f6c09e35e46304dcea63ae28":[5,0,0,76,22], +"text_8php.html#afe18627c4983ee5f7c940a0992818cd5":[5,0,0,76,12], +"text_8php.html#afe54312607d92f7ce9593f5760831f80":[5,0,0,76,58], +"text_8php.html#afe9f178d264d44a94dc1292aaf0fd585":[5,0,0,76,53], +"theme_2apw_2php_2theme__init_8php.html":[5,0,3,1,0,1,4], "theme_2apw_2php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864":[5,0,3,1,0,1,4,0], "theme_2blogga_2php_2default_8php.html":[5,0,3,1,1,0,1], "theme_2blogga_2php_2default_8php.html#a1230ab83d4ec9785d8f3a966f33dc5f3":[5,0,3,1,1,0,1,2], @@ -13,13 +29,13 @@ var NAVTREEINDEX8 = "theme_2mytheme_2php_2default_8php.html":[5,0,3,1,2,0,0], "theme_2mytheme_2php_2default_8php.html#a3987f5547ceb7e36a210a66a06241a5a":[5,0,3,1,2,0,0,0], "theme_2redbasic_2php_2theme__init_8php.html":[5,0,3,1,3,0,3], -"thing_8php.html":[5,0,1,111], -"thing_8php.html#a24a35f1e64029a67fdbea94a776ae04b":[5,0,1,111,0], -"thing_8php.html#a8be23b1d475ec3d9291999221c674c80":[5,0,1,111,1], -"toggle__mobile_8php.html":[5,0,1,112], -"toggle__mobile_8php.html#aca53ade8971802b45c31e722b22c6254":[5,0,1,112,0], -"toggle__safesearch_8php.html":[5,0,1,113], -"toggle__safesearch_8php.html#a23d5cfb2727a266e44993ffbf5595a79":[5,0,1,113,0], +"thing_8php.html":[5,0,1,112], +"thing_8php.html#a24a35f1e64029a67fdbea94a776ae04b":[5,0,1,112,0], +"thing_8php.html#a8be23b1d475ec3d9291999221c674c80":[5,0,1,112,1], +"toggle__mobile_8php.html":[5,0,1,113], +"toggle__mobile_8php.html#aca53ade8971802b45c31e722b22c6254":[5,0,1,113,0], +"toggle__safesearch_8php.html":[5,0,1,114], +"toggle__safesearch_8php.html#a23d5cfb2727a266e44993ffbf5595a79":[5,0,1,114,0], "tpldebug_8php.html":[5,0,2,8], "tpldebug_8php.html#a44778457a6c02554812fbfad19d32ba3":[5,0,2,8,0], "tpldebug_8php.html#a5358407d65f2ca826f96356a6642d149":[5,0,2,8,1], @@ -33,16 +49,16 @@ var NAVTREEINDEX8 = "typohelper_8php.html":[5,0,2,10], "typohelper_8php.html#a7542d95618011800c61773127fa625cf":[5,0,2,10,0], "typohelper_8php.html#ab6fd357fb5b2a3ba8aab9e8b98c6a805":[5,0,2,10,1], -"uexport_8php.html":[5,0,1,114], -"uexport_8php.html#a118920137dedebe0581623a2e57e7b0d":[5,0,1,114,0], -"update__channel_8php.html":[5,0,1,115], -"update__channel_8php.html#aca52a9da500f0db2f0a8666af5bc06ba":[5,0,1,115,0], -"update__display_8php.html":[5,0,1,116], -"update__display_8php.html#aa36ac524059e209d5d75a03c16206246":[5,0,1,116,0], -"update__network_8php.html":[5,0,1,117], -"update__network_8php.html#a8abf5b9f65af6a27ee2f9d7207ed1b41":[5,0,1,117,0], -"update__search_8php.html":[5,0,1,118], -"update__search_8php.html#ace4c3a23fa7d6922399e27c297a6ba52":[5,0,1,118,0], +"uexport_8php.html":[5,0,1,115], +"uexport_8php.html#a118920137dedebe0581623a2e57e7b0d":[5,0,1,115,0], +"update__channel_8php.html":[5,0,1,116], +"update__channel_8php.html#aca52a9da500f0db2f0a8666af5bc06ba":[5,0,1,116,0], +"update__display_8php.html":[5,0,1,117], +"update__display_8php.html#aa36ac524059e209d5d75a03c16206246":[5,0,1,117,0], +"update__network_8php.html":[5,0,1,118], +"update__network_8php.html#a8abf5b9f65af6a27ee2f9d7207ed1b41":[5,0,1,118,0], +"update__search_8php.html":[5,0,1,119], +"update__search_8php.html#ace4c3a23fa7d6922399e27c297a6ba52":[5,0,1,119,0], "updatetpl_8py.html":[5,0,2,11], "updatetpl_8py.html#a52a85ffa6b6d63d840b185a133478c12":[5,0,2,11,5], "updatetpl_8py.html#a79c20eb62d568c999b56eb08530355d3":[5,0,2,11,2], @@ -70,27 +86,27 @@ var NAVTREEINDEX8 = "view_2theme_2redbasic_2php_2config_8php.html#a8574a41fa9735ee391ba57ab24b93793":[5,0,3,1,3,0,0,0], "view_2theme_2redbasic_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d":[5,0,3,1,3,0,0,1], "view_2theme_2redbasic_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6":[5,0,3,1,3,0,0,2], -"view_8php.html":[5,0,1,119], -"view_8php.html#ac168f6c61a91ba2063f13b441c0ae96e":[5,0,1,119,0], -"viewconnections_8php.html":[5,0,1,120], -"viewconnections_8php.html#a00163d50b17568f7b0e48b1ca9ab7330":[5,0,1,120,1], -"viewconnections_8php.html#ab6c4d983e97b3a8a879567ff76507776":[5,0,1,120,0], -"viewsrc_8php.html":[5,0,1,121], -"viewsrc_8php.html#a6eff3d0c1d7d14b335c4edb785cd60a4":[5,0,1,121,0], -"vote_8php.html":[5,0,1,122], -"vote_8php.html#a57a9516ee1b923b224e66dcc47377fb2":[5,0,1,122,2], -"vote_8php.html#a6aa67489bf458ca5e3206e46dac68596":[5,0,1,122,0], -"vote_8php.html#ae0c6610f40afbbc1f4fe6494c51fbab2":[5,0,1,122,1], -"wall__attach_8php.html":[5,0,1,123], -"wall__attach_8php.html#a7385e970e93228d082f0fd7254f6e653":[5,0,1,123,0], -"wall__upload_8php.html":[5,0,1,124], -"wall__upload_8php.html#a7cbe204244cf9e0380ee932263a74d8f":[5,0,1,124,0], -"webfinger_8php.html":[5,0,1,125], -"webfinger_8php.html#a17dd28db6d390194bf9ecb809739d1d3":[5,0,1,125,0], -"webpages_8php.html":[5,0,1,126], -"webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d":[5,0,1,126,0], -"wfinger_8php.html":[5,0,1,127], -"wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3":[5,0,1,127,0], +"view_8php.html":[5,0,1,120], +"view_8php.html#ac168f6c61a91ba2063f13b441c0ae96e":[5,0,1,120,0], +"viewconnections_8php.html":[5,0,1,121], +"viewconnections_8php.html#a00163d50b17568f7b0e48b1ca9ab7330":[5,0,1,121,1], +"viewconnections_8php.html#ab6c4d983e97b3a8a879567ff76507776":[5,0,1,121,0], +"viewsrc_8php.html":[5,0,1,122], +"viewsrc_8php.html#a6eff3d0c1d7d14b335c4edb785cd60a4":[5,0,1,122,0], +"vote_8php.html":[5,0,1,123], +"vote_8php.html#a57a9516ee1b923b224e66dcc47377fb2":[5,0,1,123,2], +"vote_8php.html#a6aa67489bf458ca5e3206e46dac68596":[5,0,1,123,0], +"vote_8php.html#ae0c6610f40afbbc1f4fe6494c51fbab2":[5,0,1,123,1], +"wall__attach_8php.html":[5,0,1,124], +"wall__attach_8php.html#a7385e970e93228d082f0fd7254f6e653":[5,0,1,124,0], +"wall__upload_8php.html":[5,0,1,125], +"wall__upload_8php.html#a7cbe204244cf9e0380ee932263a74d8f":[5,0,1,125,0], +"webfinger_8php.html":[5,0,1,126], +"webfinger_8php.html#a17dd28db6d390194bf9ecb809739d1d3":[5,0,1,126,0], +"webpages_8php.html":[5,0,1,127], +"webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d":[5,0,1,127,0], +"wfinger_8php.html":[5,0,1,128], +"wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3":[5,0,1,128,0], "widedarkness_8php.html":[5,0,3,1,0,2,10], "widgets_8php.html":[5,0,0,77], "widgets_8php.html#a08035db02ff6a23260146b4c64153422":[5,0,0,77,11], @@ -123,14 +139,14 @@ var NAVTREEINDEX8 = "widgets_8php.html#ae4ced69d83dbdd9e6b51660d9eba8653":[5,0,0,77,28], "widgets_8php.html#af37fdad3b2e861d860a4a8c4d8a76c0b":[5,0,0,77,4], "widgets_8php.html#afa2e55a78f95667a6da082efac7fec74":[5,0,0,77,17], -"xchan_8php.html":[5,0,1,128], -"xchan_8php.html#a9853348bf1a35c644460221ba75edc2d":[5,0,1,128,0], -"xrd_8php.html":[5,0,1,129], -"xrd_8php.html#aee3cf087968e4a0ff3a87de16eb23270":[5,0,1,129,0], -"xref_8php.html":[5,0,1,130], -"xref_8php.html#a9bee399213b8de8226b0d60834307473":[5,0,1,130,0], -"zfinger_8php.html":[5,0,1,131], -"zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0":[5,0,1,131,0], +"xchan_8php.html":[5,0,1,129], +"xchan_8php.html#a9853348bf1a35c644460221ba75edc2d":[5,0,1,129,0], +"xrd_8php.html":[5,0,1,130], +"xrd_8php.html#aee3cf087968e4a0ff3a87de16eb23270":[5,0,1,130,0], +"xref_8php.html":[5,0,1,131], +"xref_8php.html#a9bee399213b8de8226b0d60834307473":[5,0,1,131,0], +"zfinger_8php.html":[5,0,1,132], +"zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0":[5,0,1,132,0], "zot_8php.html":[5,0,0,78], "zot_8php.html#a083aec6c900d244e1bfc1406f9461465":[5,0,0,78,13], "zot_8php.html#a20750dd2c36961013fd382fb34e1366c":[5,0,0,78,6], @@ -160,8 +176,8 @@ var NAVTREEINDEX8 = "zot_8php.html#adfeb9400ae6b726beec89f8f1e8fde72":[5,0,0,78,2], "zot_8php.html#ae7cec2b417b5858fd4a41070f843d1d7":[5,0,0,78,20], "zot_8php.html#aeea071f17e306fe3d0c488551906bfab":[5,0,0,78,22], -"zotfeed_8php.html":[5,0,1,132], -"zotfeed_8php.html#a24dfc23d366e7f840cf2847d0c1c8eac":[5,0,1,132,0], -"zping_8php.html":[5,0,1,133], -"zping_8php.html#a4d3a6b0b8b04ed6469015823e615ee75":[5,0,1,133,0] +"zotfeed_8php.html":[5,0,1,133], +"zotfeed_8php.html#a24dfc23d366e7f840cf2847d0c1c8eac":[5,0,1,133,0], +"zping_8php.html":[5,0,1,134], +"zping_8php.html#a4d3a6b0b8b04ed6469015823e615ee75":[5,0,1,134,0] }; diff --git a/doc/html/photo__driver_8php.html b/doc/html/photo__driver_8php.html index d87778ad8..fb26cabbd 100644 --- a/doc/html/photo__driver_8php.html +++ b/doc/html/photo__driver_8php.html @@ -232,7 +232,7 @@ Functions
     $count $count,
     $ctx = '' 
    diff --git a/doc/html/php2po_8php.html b/doc/html/php2po_8php.html index be585c290..c6611927f 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(), aes_encapsulate(), aes_unencapsulate(), bb_sanitize_style(), build_sync_packet(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_poll_interval(), contact_reputation(), dirprofile_init(), dirsearch_content(), RedBrowser\generateDirectoryIndex(), get_plugin_info(), get_theme_info(), get_things(), guess_image_type(), import_directory_profile(), item_photo_menu(), item_store_update(), load_config(), load_pconfig(), load_xconfig(), local_dir_update(), mail_post(), mood_content(), new_contact(), FKOAuthDataStore\new_request_token(), obj_verb_selector(), openid_content(), parse_app_description(), 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(), settings_post(), sslify_init(), startup(), tt(), vote_post(), x(), zfinger_init(), and zot_refresh().

    +

    Referenced by App\__construct(), Template\_get_var(), Template\_replcb_for(), activity_sanitise(), aes_encapsulate(), aes_unencapsulate(), app_render(), bb_sanitize_style(), build_sync_packet(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_poll_interval(), contact_reputation(), dirprofile_init(), dirsearch_content(), RedBrowser\generateDirectoryIndex(), get_plugin_info(), get_theme_info(), get_things(), guess_image_type(), import_directory_profile(), item_photo_menu(), item_store_update(), load_config(), load_pconfig(), load_xconfig(), local_dir_update(), mail_post(), mood_content(), new_contact(), FKOAuthDataStore\new_request_token(), obj_verb_selector(), openid_content(), parse_app_description(), 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(), settings_post(), sslify_init(), startup(), tt(), vote_post(), x(), zfinger_init(), and zot_refresh().

    diff --git a/doc/html/php_2theme__init_8php.html b/doc/html/php_2theme__init_8php.html index abbb14abc..843cb644b 100644 --- a/doc/html/php_2theme__init_8php.html +++ b/doc/html/php_2theme__init_8php.html @@ -127,7 +127,7 @@ Variables

    Those who require this feature will know what to do with it. Those who don't, won't. Eventually this functionality needs to be provided by a module such that permissions can be enforced. At the moment it's more of a proof of concept; but sufficient for our immediate needs.

    -

    Referenced by admin_page_channels(), api_call(), api_user(), attach_mkdir(), attach_store(), bbcode(), blocks_content(), bookmark_add(), bookmarks_content(), build_sync_packet(), channel_content(), channel_init(), channel_remove(), chat_content(), chat_init(), chat_post(), chatroom_create(), chatroom_destroy(), cloud_init(), connections_init(), connections_post(), connedit_content(), connedit_init(), connedit_post(), conversation(), design_tools(), directory_run(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), feed_init(), filestorage_content(), fix_attached_file_permissions(), fix_system_urls(), get_feed_for(), get_public_feed(), handle_tag(), home_init(), RedBrowser\htmlActionsPanel(), import_post(), importelm_post(), invite_content(), item_photo_menu(), item_post(), item_store(), item_store_update(), items_fetch(), layouts_content(), magic_init(), mail_content(), mail_post(), menu_add_item(), menu_edit_item(), message_content(), mitem_content(), mitem_post(), mood_init(), nav(), network_content(), network_init(), new_contact(), notifier_run(), parse_app_description(), photo_upload(), photos_albums_list(), photos_content(), photos_create_item(), photos_list_photos(), ping_init(), poke_init(), post_activity_item(), post_to_red_delete_comment(), post_to_red_delete_post(), post_to_red_displayAdminContent(), post_to_red_post(), probe_content(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), profile_init(), profile_photo_init(), profile_photo_post(), profiles_post(), profperm_init(), rbmark_content(), rbmark_post(), rpost_content(), send_message(), settings_post(), sources_post(), tagger_content(), thing_init(), uexport_init(), update_remote_id(), wall_attach_post(), wall_upload_post(), webpages_content(), wfinger_init(), widget_settings_menu(), zot_build_packet(), zot_finger(), and zot_refresh().

    +

    Referenced by admin_page_channels(), api_call(), api_user(), appman_content(), attach_mkdir(), attach_store(), bbcode(), blocks_content(), bookmark_add(), bookmarks_content(), build_sync_packet(), channel_content(), channel_init(), channel_remove(), chat_content(), chat_init(), chat_post(), chatroom_create(), chatroom_destroy(), cloud_init(), connections_init(), connections_post(), connedit_content(), connedit_init(), connedit_post(), conversation(), design_tools(), directory_run(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), feed_init(), filestorage_content(), fix_attached_file_permissions(), fix_system_urls(), get_feed_for(), get_public_feed(), handle_tag(), home_init(), RedBrowser\htmlActionsPanel(), import_post(), importelm_post(), invite_content(), item_photo_menu(), item_post(), item_store(), item_store_update(), items_fetch(), layouts_content(), magic_init(), mail_content(), mail_post(), menu_add_item(), menu_edit_item(), message_content(), mitem_content(), mitem_post(), mood_init(), nav(), network_content(), network_init(), new_contact(), notifier_run(), parse_app_description(), photo_upload(), photos_albums_list(), photos_content(), photos_create_item(), photos_list_photos(), ping_init(), poke_init(), post_activity_item(), post_to_red_delete_comment(), post_to_red_delete_post(), post_to_red_displayAdminContent(), post_to_red_post(), probe_content(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), profile_init(), profile_photo_init(), profile_photo_post(), profiles_post(), profperm_init(), rbmark_content(), rbmark_post(), rpost_content(), send_message(), settings_post(), sources_post(), tagger_content(), thing_init(), uexport_init(), update_remote_id(), wall_attach_post(), wall_upload_post(), webpages_content(), wfinger_init(), widget_settings_menu(), zot_build_packet(), zot_finger(), and zot_refresh().

    diff --git a/doc/html/plugin_8php.html b/doc/html/plugin_8php.html index 4423d57f4..f121bdbee 100644 --- a/doc/html/plugin_8php.html +++ b/doc/html/plugin_8php.html @@ -292,7 +292,7 @@ Functions
    -

    Referenced by admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_plugins(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), alt_pager(), api_apply_template(), api_content(), apps_content(), apw_form(), blocks_content(), blogtheme_form(), App\build_pagehead(), categories_widget(), channel_content(), chanview_content(), chat_content(), check_php(), common_content(), common_friends_visitor_widget(), connect_content(), connections_content(), connedit_content(), construct_page(), contact_block(), conversation(), delegate_content(), design_tools(), dir_safe_mode(), dir_sort_links(), directory_content(), dirprofile_init(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), fbrowser_content(), field_timezone(), fileas_widget(), filer_content(), filestorage_content(), findpeople_widget(), format_categories(), format_filer(), get_birthdays(), Item\get_comment_box(), get_events(), get_feed_for(), group_content(), group_side(), help_content(), hostxrd_init(), identity_selector(), import_content(), invite_content(), lang_selector(), layouts_content(), login(), lostpass_content(), mail_content(), manage_content(), match_content(), menu_content(), menu_render(), message_content(), micropro(), mini_group_select(), mitem_content(), mood_content(), nav(), network_content(), new_channel_content(), notification(), notifications_content(), notify_content(), oembed_format_object(), oexchange_init(), opensearch_init(), pagelist_widget(), pdledit_content(), photos_album_widget(), photos_content(), poco_init(), poke_content(), populate_acl(), profile_sidebar(), profiles_content(), rbmark_content(), redbasic_form(), register_content(), removeme_content(), rmagic_content(), rpost_content(), search_content(), setup_content(), siteinfo_content(), sources_content(), suggest_content(), theme_attachments(), thing_content(), vcard_from_xchan(), viewconnections_content(), vote_content(), webpages_content(), widget_affinity(), widget_appselect(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), writepages_widget(), and xrd_init().

    +

    Referenced by admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_plugins(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), alt_pager(), api_apply_template(), api_content(), app_render(), appman_content(), apps_content(), apw_form(), blocks_content(), blogtheme_form(), App\build_pagehead(), categories_widget(), channel_content(), chanview_content(), chat_content(), check_php(), common_content(), common_friends_visitor_widget(), connect_content(), connections_content(), connedit_content(), construct_page(), contact_block(), conversation(), delegate_content(), design_tools(), dir_safe_mode(), dir_sort_links(), directory_content(), dirprofile_init(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), fbrowser_content(), field_timezone(), fileas_widget(), filer_content(), filestorage_content(), findpeople_widget(), format_categories(), format_filer(), get_birthdays(), Item\get_comment_box(), get_events(), get_feed_for(), group_content(), group_side(), help_content(), hostxrd_init(), identity_selector(), import_content(), invite_content(), lang_selector(), layouts_content(), login(), lostpass_content(), mail_content(), manage_content(), match_content(), menu_content(), menu_render(), message_content(), micropro(), mini_group_select(), mitem_content(), mood_content(), nav(), network_content(), new_channel_content(), notification(), notifications_content(), notify_content(), oembed_format_object(), oexchange_init(), opensearch_init(), pagelist_widget(), pdledit_content(), photos_album_widget(), photos_content(), poco_init(), poke_content(), populate_acl(), profile_sidebar(), profiles_content(), rbmark_content(), redbasic_form(), register_content(), removeme_content(), rmagic_content(), rpost_content(), search_content(), setup_content(), siteinfo_content(), sources_content(), suggest_content(), theme_attachments(), thing_content(), vcard_from_xchan(), viewconnections_content(), vote_content(), webpages_content(), widget_affinity(), widget_appselect(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), writepages_widget(), and xrd_init().

    diff --git a/doc/html/search/all_61.js b/doc/html/search/all_61.js index 5b7126181..9cfefb2d0 100644 --- a/doc/html/search/all_61.js +++ b/doc/html/search/all_61.js @@ -152,9 +152,22 @@ var searchData= ['api_5fuser',['api_user',['../include_2api_8php.html#afb99daa6b731bf497b81f2128084852c',1,'api.php']]], ['api_5fusers_5fshow',['api_users_show',['../include_2api_8php.html#abe8e929e93f7ab134b1cb1fb30f19a76',1,'api.php']]], ['app',['App',['../classApp.html',1,'']]], + ['app_5fdecode',['app_decode',['../include_2apps_8php.html#ad5f6f1443725386cc7af5ed34a5fe185',1,'apps.php']]], + ['app_5fdestroy',['app_destroy',['../include_2apps_8php.html#a6b472df85ed875e7ae75642cece5206f',1,'apps.php']]], + ['app_5fencode',['app_encode',['../include_2apps_8php.html#a1cb5c016510e39bcdc1d1c096d51c5c7',1,'apps.php']]], + ['app_5finstall',['app_install',['../include_2apps_8php.html#a72756e1601489eb77971eeda011446d0',1,'apps.php']]], + ['app_5finstalled',['app_installed',['../include_2apps_8php.html#a1adcd1aff4d36ad0277daca9f3d2bbe2',1,'apps.php']]], + ['app_5flist',['app_list',['../include_2apps_8php.html#a01cabfb33b2d0d843cf3bf4e3d3f0ab0',1,'apps.php']]], + ['app_5fname_5fcompare',['app_name_compare',['../include_2apps_8php.html#ab93a3310b7de99ee90f673518eccb658',1,'apps.php']]], + ['app_5frender',['app_render',['../include_2apps_8php.html#a1b2e737f477a2e0d9d11ef14adc5aa66',1,'apps.php']]], + ['app_5fstore',['app_store',['../include_2apps_8php.html#a15626f24069c18816f7cdaf4735f58f9',1,'apps.php']]], + ['app_5fupdate',['app_update',['../include_2apps_8php.html#aeab6a62d2f3dfaa86ed043a006305f46',1,'apps.php']]], ['appdirpath',['appdirpath',['../boot_8php.html#a75a90b0eadd0df510f7e63210733634d',1,'boot.php']]], - ['apps_2ephp',['apps.php',['../mod_2apps_8php.html',1,'']]], + ['appman_2ephp',['appman.php',['../appman_8php.html',1,'']]], + ['appman_5fcontent',['appman_content',['../appman_8php.html#af48805ac2f6f123f2681a8ae1c6f123f',1,'appman.php']]], + ['appman_5fpost',['appman_post',['../appman_8php.html#a2979acbe47ffaecfa19b9eabfbfbde39',1,'appman.php']]], ['apps_2ephp',['apps.php',['../include_2apps_8php.html',1,'']]], + ['apps_2ephp',['apps.php',['../mod_2apps_8php.html',1,'']]], ['apps_5fcontent',['apps_content',['../mod_2apps_8php.html#a546016cb960d0b110ee8e489dfa6c27c',1,'apps.php']]], ['apw_5fform',['apw_form',['../view_2theme_2apw_2php_2config_8php.html#ad59fc09da66b66267f9753c8b2dd68d0',1,'config.php']]], ['apw_5finit',['apw_init',['../apw_2php_2theme_8php.html#a42167c539043a39a6b83c252d05f1e89',1,'theme.php']]], diff --git a/doc/html/search/all_62.js b/doc/html/search/all_62.js index 606f913d2..50e7ad7af 100644 --- a/doc/html/search/all_62.js +++ b/doc/html/search/all_62.js @@ -7,6 +7,7 @@ var searchData= ['bb2diaspora',['bb2diaspora',['../bb2diaspora_8php.html#a4f10e0876b27373c762bc1abbe745f5c',1,'bb2diaspora.php']]], ['bb2diaspora_2ephp',['bb2diaspora.php',['../bb2diaspora_8php.html',1,'']]], ['bb_5flocation',['bb_location',['../bbcode_8php.html#a3435c82a6c7693557800cdeb6848d0bd',1,'bbcode.php']]], + ['bb_5fparse_5fapp',['bb_parse_app',['../bbcode_8php.html#abb02f1044ff1c635d12af690d0f2cfa2',1,'bbcode.php']]], ['bb_5fparse_5fcrypt',['bb_parse_crypt',['../bbcode_8php.html#a851f5aafefe52474201b83f9fd65931f',1,'bbcode.php']]], ['bb_5fqr',['bb_qr',['../bbcode_8php.html#a98d0eecc620c19561639f06cfbe8e74c',1,'bbcode.php']]], ['bb_5fsanitize_5fstyle',['bb_sanitize_style',['../bbcode_8php.html#a3a989cbf308a32468d171d83e9c51d1e',1,'bbcode.php']]], @@ -34,8 +35,8 @@ var searchData= ['blogtheme_5fform',['blogtheme_form',['../view_2theme_2blogga_2php_2config_8php.html#a8a311a402d3e746ce53fadc38e4b2d27',1,'blogtheme_form(&$a, $headimg, $headimghome): config.php'],['../view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#a8a311a402d3e746ce53fadc38e4b2d27',1,'blogtheme_form(&$a, $headimg, $headimghome): config.php']]], ['blogtheme_5fimgurl',['blogtheme_imgurl',['../blogga_2view_2theme_2blog_2theme_8php.html#af634a3f721c5e238530d0636d33230ec',1,'theme.php']]], ['bookmark_5fadd',['bookmark_add',['../include_2bookmarks_8php.html#aef1cb2968c41c759f2d106e1088ca323',1,'bookmarks.php']]], - ['bookmarks_2ephp',['bookmarks.php',['../include_2bookmarks_8php.html',1,'']]], ['bookmarks_2ephp',['bookmarks.php',['../mod_2bookmarks_8php.html',1,'']]], + ['bookmarks_2ephp',['bookmarks.php',['../include_2bookmarks_8php.html',1,'']]], ['bookmarks_5fcontent',['bookmarks_content',['../mod_2bookmarks_8php.html#a774364b1c8404529581083631703527a',1,'bookmarks.php']]], ['bookmarks_5finit',['bookmarks_init',['../mod_2bookmarks_8php.html#a6b7942f3d27e40f0f47c88704127b9b3',1,'bookmarks.php']]], ['boot_2ephp',['boot.php',['../boot_8php.html',1,'']]], diff --git a/doc/html/search/all_70.js b/doc/html/search/all_70.js index 890d027f2..473511b21 100644 --- a/doc/html/search/all_70.js +++ b/doc/html/search/all_70.js @@ -17,6 +17,7 @@ var searchData= ['page_5fwidgets_2ephp',['page_widgets.php',['../page__widgets_8php.html',1,'']]], ['pagelist_5fwidget',['pagelist_widget',['../page__widgets_8php.html#a39d547771c5f12a17c097436c82f0fa2',1,'page_widgets.php']]], ['paginate',['paginate',['../text_8php.html#afe9f178d264d44a94dc1292aaf0fd585',1,'text.php']]], + ['papp_5fencode',['papp_encode',['../include_2apps_8php.html#ad6ba3f254003f69f8f3f94ca5bda0680',1,'apps.php']]], ['parse_5fapp_5fdescription',['parse_app_description',['../include_2apps_8php.html#a32fe4ed9666228fd4b67dc487cc57a83',1,'apps.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_74.js b/doc/html/search/all_74.js index 3958c9360..9332a32bb 100644 --- a/doc/html/search/all_74.js +++ b/doc/html/search/all_74.js @@ -1,6 +1,6 @@ var searchData= [ - ['t',['t',['../language_8php.html#aae0c3638fb476ae1e31f8d242f5dac04',1,'language.php']]], + ['t',['t',['../language_8php.html#ac6ae482ee54fa2764d5c2e77305aeb96',1,'language.php']]], ['tag_5fdeliver',['tag_deliver',['../items_8php.html#ab1bce4261bcf75ad62753b498a144d17',1,'items.php']]], ['tag_5fsort_5flength',['tag_sort_length',['../text_8php.html#ac2ff88e800f74b22e9cc091c10809c54',1,'text.php']]], ['tagadelic',['tagadelic',['../taxonomy_8php.html#aaf90ba8b839d6459065f39a4f1109b8a',1,'taxonomy.php']]], @@ -22,6 +22,7 @@ var searchData= ['term_5ffile',['TERM_FILE',['../boot_8php.html#afb97615e985a013799839b68b99018d7',1,'boot.php']]], ['term_5fhashtag',['TERM_HASHTAG',['../boot_8php.html#a2750985ec445617d7e82ae3098c91e3f',1,'boot.php']]], ['term_5fmention',['TERM_MENTION',['../boot_8php.html#ae37444eaa42705185080ccf3e670cbc2',1,'boot.php']]], + ['term_5fobj_5fapp',['TERM_OBJ_APP',['../boot_8php.html#ace6d70ac290397ddd40e561fd0831858',1,'boot.php']]], ['term_5fobj_5fchannel',['TERM_OBJ_CHANNEL',['../boot_8php.html#a8892374789fd261eb32a7969d934a14a',1,'boot.php']]], ['term_5fobj_5fobject',['TERM_OBJ_OBJECT',['../boot_8php.html#a882b666adfe21f035a0f8c02806066d6',1,'boot.php']]], ['term_5fobj_5fphoto',['TERM_OBJ_PHOTO',['../boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd',1,'boot.php']]], @@ -48,8 +49,8 @@ var searchData= ['theme_5fcontent',['theme_content',['../view_2theme_2apw_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d',1,'theme_content(&$a): config.php'],['../view_2theme_2blogga_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d',1,'theme_content(&$a): config.php'],['../view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d',1,'theme_content(&$a): config.php'],['../view_2theme_2redbasic_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d',1,'theme_content(&$a): config.php']]], ['theme_5finclude',['theme_include',['../plugin_8php.html#a65fedcffbe03562ef844cabee37d34e2',1,'plugin.php']]], ['theme_5finit_2ephp',['theme_init.php',['../theme_2redbasic_2php_2theme__init_8php.html',1,'']]], - ['theme_5finit_2ephp',['theme_init.php',['../php_2theme__init_8php.html',1,'']]], ['theme_5finit_2ephp',['theme_init.php',['../theme_2apw_2php_2theme__init_8php.html',1,'']]], + ['theme_5finit_2ephp',['theme_init.php',['../php_2theme__init_8php.html',1,'']]], ['theme_5finit_2ephp',['theme_init.php',['../theme_2blogga_2php_2theme__init_8php.html',1,'']]], ['theme_5fpost',['theme_post',['../view_2theme_2apw_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6',1,'theme_post(&$a): config.php'],['../view_2theme_2blogga_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6',1,'theme_post(&$a): config.php'],['../view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6',1,'theme_post(&$a): config.php'],['../view_2theme_2redbasic_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6',1,'theme_post(&$a): config.php']]], ['theme_5fstatus',['theme_status',['../admin_8php.html#ad4f74f33944a98b56d2c8c7601f124a4',1,'admin.php']]], @@ -70,7 +71,7 @@ var searchData= ['tryoembed',['tryoembed',['../bbcode_8php.html#a55b0cb6973f1ec731de0e726bcc0efa7',1,'bbcode.php']]], ['tryzrlaudio',['tryzrlaudio',['../bbcode_8php.html#a39de4de32a9456d1ca914d0dc52bd322',1,'bbcode.php']]], ['tryzrlvideo',['tryzrlvideo',['../bbcode_8php.html#aa92f119341f4c69dcef2768a013079b8',1,'bbcode.php']]], - ['tt',['tt',['../language_8php.html#ae310fb3880484ee1cc4faefe0c63c06d',1,'language.php']]], + ['tt',['tt',['../language_8php.html#a686bcafa6b0d5c86d37b38a1db5b6997',1,'language.php']]], ['typo_2ephp',['typo.php',['../typo_8php.html',1,'']]], ['typohelper_2ephp',['typohelper.php',['../typohelper_8php.html',1,'']]] ]; diff --git a/doc/html/search/files_61.js b/doc/html/search/files_61.js index 448932f47..eb415f4db 100644 --- a/doc/html/search/files_61.js +++ b/doc/html/search/files_61.js @@ -8,6 +8,7 @@ var searchData= ['admin_2ephp',['admin.php',['../admin_8php.html',1,'']]], ['api_2ephp',['api.php',['../mod_2api_8php.html',1,'']]], ['api_2ephp',['api.php',['../include_2api_8php.html',1,'']]], + ['appman_2ephp',['appman.php',['../appman_8php.html',1,'']]], ['apps_2ephp',['apps.php',['../mod_2apps_8php.html',1,'']]], ['apps_2ephp',['apps.php',['../include_2apps_8php.html',1,'']]], ['attach_2ephp',['attach.php',['../mod_2attach_8php.html',1,'']]], diff --git a/doc/html/search/functions_61.js b/doc/html/search/functions_61.js index 86cf33a1f..0eed6df8a 100644 --- a/doc/html/search/functions_61.js +++ b/doc/html/search/functions_61.js @@ -94,7 +94,19 @@ var searchData= ['api_5fstatusnet_5fversion',['api_statusnet_version',['../include_2api_8php.html#a8969e8d9c683f12ba17dcd4b059e020d',1,'api.php']]], ['api_5fuser',['api_user',['../include_2api_8php.html#afb99daa6b731bf497b81f2128084852c',1,'api.php']]], ['api_5fusers_5fshow',['api_users_show',['../include_2api_8php.html#abe8e929e93f7ab134b1cb1fb30f19a76',1,'api.php']]], + ['app_5fdecode',['app_decode',['../include_2apps_8php.html#ad5f6f1443725386cc7af5ed34a5fe185',1,'apps.php']]], + ['app_5fdestroy',['app_destroy',['../include_2apps_8php.html#a6b472df85ed875e7ae75642cece5206f',1,'apps.php']]], + ['app_5fencode',['app_encode',['../include_2apps_8php.html#a1cb5c016510e39bcdc1d1c096d51c5c7',1,'apps.php']]], + ['app_5finstall',['app_install',['../include_2apps_8php.html#a72756e1601489eb77971eeda011446d0',1,'apps.php']]], + ['app_5finstalled',['app_installed',['../include_2apps_8php.html#a1adcd1aff4d36ad0277daca9f3d2bbe2',1,'apps.php']]], + ['app_5flist',['app_list',['../include_2apps_8php.html#a01cabfb33b2d0d843cf3bf4e3d3f0ab0',1,'apps.php']]], + ['app_5fname_5fcompare',['app_name_compare',['../include_2apps_8php.html#ab93a3310b7de99ee90f673518eccb658',1,'apps.php']]], + ['app_5frender',['app_render',['../include_2apps_8php.html#a1b2e737f477a2e0d9d11ef14adc5aa66',1,'apps.php']]], + ['app_5fstore',['app_store',['../include_2apps_8php.html#a15626f24069c18816f7cdaf4735f58f9',1,'apps.php']]], + ['app_5fupdate',['app_update',['../include_2apps_8php.html#aeab6a62d2f3dfaa86ed043a006305f46',1,'apps.php']]], ['appdirpath',['appdirpath',['../boot_8php.html#a75a90b0eadd0df510f7e63210733634d',1,'boot.php']]], + ['appman_5fcontent',['appman_content',['../appman_8php.html#af48805ac2f6f123f2681a8ae1c6f123f',1,'appman.php']]], + ['appman_5fpost',['appman_post',['../appman_8php.html#a2979acbe47ffaecfa19b9eabfbfbde39',1,'appman.php']]], ['apps_5fcontent',['apps_content',['../mod_2apps_8php.html#a546016cb960d0b110ee8e489dfa6c27c',1,'apps.php']]], ['apw_5fform',['apw_form',['../view_2theme_2apw_2php_2config_8php.html#ad59fc09da66b66267f9753c8b2dd68d0',1,'config.php']]], ['apw_5finit',['apw_init',['../apw_2php_2theme_8php.html#a42167c539043a39a6b83c252d05f1e89',1,'theme.php']]], diff --git a/doc/html/search/functions_62.js b/doc/html/search/functions_62.js index b898ce20d..89de2a05c 100644 --- a/doc/html/search/functions_62.js +++ b/doc/html/search/functions_62.js @@ -4,6 +4,7 @@ var searchData= ['base64url_5fencode',['base64url_encode',['../text_8php.html#a070384ec000fd65043fce11d5392d241',1,'text.php']]], ['bb2diaspora',['bb2diaspora',['../bb2diaspora_8php.html#a4f10e0876b27373c762bc1abbe745f5c',1,'bb2diaspora.php']]], ['bb_5flocation',['bb_location',['../bbcode_8php.html#a3435c82a6c7693557800cdeb6848d0bd',1,'bbcode.php']]], + ['bb_5fparse_5fapp',['bb_parse_app',['../bbcode_8php.html#abb02f1044ff1c635d12af690d0f2cfa2',1,'bbcode.php']]], ['bb_5fparse_5fcrypt',['bb_parse_crypt',['../bbcode_8php.html#a851f5aafefe52474201b83f9fd65931f',1,'bbcode.php']]], ['bb_5fqr',['bb_qr',['../bbcode_8php.html#a98d0eecc620c19561639f06cfbe8e74c',1,'bbcode.php']]], ['bb_5fsanitize_5fstyle',['bb_sanitize_style',['../bbcode_8php.html#a3a989cbf308a32468d171d83e9c51d1e',1,'bbcode.php']]], diff --git a/doc/html/search/functions_70.js b/doc/html/search/functions_70.js index 7f5cf54ce..79be32810 100644 --- a/doc/html/search/functions_70.js +++ b/doc/html/search/functions_70.js @@ -4,6 +4,7 @@ var searchData= ['page_5finit',['page_init',['../page_8php.html#a4d89800c0366a239191b1692c09635cf',1,'page.php']]], ['pagelist_5fwidget',['pagelist_widget',['../page__widgets_8php.html#a39d547771c5f12a17c097436c82f0fa2',1,'page_widgets.php']]], ['paginate',['paginate',['../text_8php.html#afe9f178d264d44a94dc1292aaf0fd585',1,'text.php']]], + ['papp_5fencode',['papp_encode',['../include_2apps_8php.html#ad6ba3f254003f69f8f3f94ca5bda0680',1,'apps.php']]], ['parse_5fapp_5fdescription',['parse_app_description',['../include_2apps_8php.html#a32fe4ed9666228fd4b67dc487cc57a83',1,'apps.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_74.js b/doc/html/search/functions_74.js index a5e9f0f39..e2cbe51a5 100644 --- a/doc/html/search/functions_74.js +++ b/doc/html/search/functions_74.js @@ -1,6 +1,6 @@ var searchData= [ - ['t',['t',['../language_8php.html#aae0c3638fb476ae1e31f8d242f5dac04',1,'language.php']]], + ['t',['t',['../language_8php.html#ac6ae482ee54fa2764d5c2e77305aeb96',1,'language.php']]], ['tag_5fdeliver',['tag_deliver',['../items_8php.html#ab1bce4261bcf75ad62753b498a144d17',1,'items.php']]], ['tag_5fsort_5flength',['tag_sort_length',['../text_8php.html#ac2ff88e800f74b22e9cc091c10809c54',1,'text.php']]], ['tagadelic',['tagadelic',['../taxonomy_8php.html#aaf90ba8b839d6459065f39a4f1109b8a',1,'taxonomy.php']]], @@ -35,5 +35,5 @@ var searchData= ['tryoembed',['tryoembed',['../bbcode_8php.html#a55b0cb6973f1ec731de0e726bcc0efa7',1,'bbcode.php']]], ['tryzrlaudio',['tryzrlaudio',['../bbcode_8php.html#a39de4de32a9456d1ca914d0dc52bd322',1,'bbcode.php']]], ['tryzrlvideo',['tryzrlvideo',['../bbcode_8php.html#aa92f119341f4c69dcef2768a013079b8',1,'bbcode.php']]], - ['tt',['tt',['../language_8php.html#ae310fb3880484ee1cc4faefe0c63c06d',1,'language.php']]] + ['tt',['tt',['../language_8php.html#a686bcafa6b0d5c86d37b38a1db5b6997',1,'language.php']]] ]; diff --git a/doc/html/search/variables_74.js b/doc/html/search/variables_74.js index 61edce925..26e76153c 100644 --- a/doc/html/search/variables_74.js +++ b/doc/html/search/variables_74.js @@ -5,6 +5,7 @@ var searchData= ['term_5ffile',['TERM_FILE',['../boot_8php.html#afb97615e985a013799839b68b99018d7',1,'boot.php']]], ['term_5fhashtag',['TERM_HASHTAG',['../boot_8php.html#a2750985ec445617d7e82ae3098c91e3f',1,'boot.php']]], ['term_5fmention',['TERM_MENTION',['../boot_8php.html#ae37444eaa42705185080ccf3e670cbc2',1,'boot.php']]], + ['term_5fobj_5fapp',['TERM_OBJ_APP',['../boot_8php.html#ace6d70ac290397ddd40e561fd0831858',1,'boot.php']]], ['term_5fobj_5fchannel',['TERM_OBJ_CHANNEL',['../boot_8php.html#a8892374789fd261eb32a7969d934a14a',1,'boot.php']]], ['term_5fobj_5fobject',['TERM_OBJ_OBJECT',['../boot_8php.html#a882b666adfe21f035a0f8c02806066d6',1,'boot.php']]], ['term_5fobj_5fphoto',['TERM_OBJ_PHOTO',['../boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd',1,'boot.php']]], diff --git a/doc/html/text_8php.html b/doc/html/text_8php.html index a104988d9..b5f78146c 100644 --- a/doc/html/text_8php.html +++ b/doc/html/text_8php.html @@ -694,7 +694,7 @@ Variables
    Returns
    string
    -

    Referenced by admin_page_logs(), bookmark_add(), chatsvc_post(), connect_post(), create_identity(), events_post(), fsuggest_post(), get_atom_elements(), item_post(), mail_post(), mail_store(), menu_add_item(), menu_create(), menu_edit(), menu_edit_item(), network_content(), notes_init(), pdledit_post(), poco_load(), printable(), profiles_post(), rbmark_content(), rbmark_post(), thing_init(), and z_input_filter().

    +

    Referenced by admin_page_logs(), app_store(), app_update(), appman_post(), bookmark_add(), chatsvc_post(), connect_post(), create_identity(), events_post(), fsuggest_post(), get_atom_elements(), item_post(), mail_post(), mail_store(), menu_add_item(), menu_create(), menu_edit(), menu_edit_item(), network_content(), notes_init(), pdledit_post(), poco_load(), printable(), profiles_post(), rbmark_content(), rbmark_post(), thing_init(), and z_input_filter().

    @@ -1298,7 +1298,7 @@ Variables
    -

    Referenced by RedDirectory\__construct(), RedFile\__construct(), account_remove(), account_verify_password(), Item\add_child(), Conversation\add_thread(), admin_content(), admin_page_hubloc_post(), admin_post(), advanced_profile(), aes_encapsulate(), allowed_public_recips(), api_call(), api_channel_stream(), api_export_basic(), api_favorites(), api_get_user(), api_login(), api_oauth_request_token(), api_statuses_destroy(), api_statuses_mediap(), api_statuses_repeat(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), attach_mkdir(), avatar_img(), base64url_decode(), blog_install(), blog_uninstall(), bookmark_add(), bookmarks_init(), build_sync_packet(), chanman_remove_everything_from_network(), channel_remove(), chanview_content(), chat_post(), check_config(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), RedDirectory\childExists(), cloud_init(), connedit_post(), consume_feed(), conversation(), create_account(), create_identity(), RedDirectory\createDirectory(), RedDirectory\createFile(), cronhooks_run(), datetime_convert(), delete_imported_item(), deliver_run(), detect_language(), dir_parse_query(), directory_content(), directory_run(), dirprofile_init(), downgrade_accounts(), email_send(), encode_item(), expire_run(), externals_run(), feed_init(), fetch_lrdd_template(), filer_content(), filerm_content(), fix_private_photos(), fix_system_urls(), RedFile\get(), get_atom_elements(), get_item_elements(), get_language_name(), Conversation\get_template_data(), RedDirectory\getChild(), RedDirectory\getChildren(), RedDirectory\getDir(), RedDirectory\getName(), RedFile\getName(), group_content(), guess_image_type(), head_set_icon(), http_status_exit(), import_author_rss(), import_author_zot(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), item_post(), item_store(), item_store_update(), like_content(), limit_body_size(), load_plugin(), local_dir_update(), localize_item(), RedDirectory\log(), RedBasicAuth\log(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_token(), magic_init(), mail_post(), mail_store(), menu_edit(), mini_group_select(), mood_init(), FKOAuthDataStore\new_access_token(), new_contact(), new_keypair(), FKOAuthDataStore\new_request_token(), notes_init(), notification(), notifier_run(), onedirsync_run(), onepoll_run(), openid_content(), parse_app_description(), 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(), profile_photo_set_profile_perms(), profile_sidebar(), prune_hub_reinstalls(), public_recips(), RedFile\put(), dba_mysql\q(), dba_mysqli\q(), q(), queue_run(), rbmark_post(), red_item_new(), RedChannelList(), RedCollectionData(), RedFileData(), 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(), RedFile\setName(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), sync_directories(), tag_deliver(), tagger_content(), tgroup_check(), uninstall_plugin(), unload_plugin(), update_directory_entry(), update_imported_item(), update_queue_time(), RedBasicAuth\validateUserPass(), webfinger(), webfinger_dfrn(), xml2array(), xml_status(), z_fetch_url(), z_post_url(), zfinger_init(), zid_init(), zot_build_packet(), zot_feed(), zot_fetch(), zot_finger(), zot_gethub(), zot_import(), zot_process_response(), zot_refresh(), zot_register_hub(), and zotfeed_init().

    +

    Referenced by RedDirectory\__construct(), RedFile\__construct(), account_remove(), account_verify_password(), Item\add_child(), Conversation\add_thread(), admin_content(), admin_page_hubloc_post(), admin_post(), advanced_profile(), aes_encapsulate(), allowed_public_recips(), api_call(), api_channel_stream(), api_export_basic(), api_favorites(), api_get_user(), api_login(), api_oauth_request_token(), api_statuses_destroy(), api_statuses_mediap(), api_statuses_repeat(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), appman_content(), attach_mkdir(), avatar_img(), base64url_decode(), blog_install(), blog_uninstall(), bookmark_add(), bookmarks_init(), build_sync_packet(), chanman_remove_everything_from_network(), channel_remove(), chanview_content(), chat_post(), check_config(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), RedDirectory\childExists(), cloud_init(), connedit_post(), consume_feed(), conversation(), create_account(), create_identity(), RedDirectory\createDirectory(), RedDirectory\createFile(), cronhooks_run(), datetime_convert(), delete_imported_item(), deliver_run(), detect_language(), dir_parse_query(), directory_content(), directory_run(), dirprofile_init(), downgrade_accounts(), email_send(), encode_item(), expire_run(), externals_run(), feed_init(), fetch_lrdd_template(), filer_content(), filerm_content(), fix_private_photos(), fix_system_urls(), RedFile\get(), get_atom_elements(), get_item_elements(), get_language_name(), Conversation\get_template_data(), RedDirectory\getChild(), RedDirectory\getChildren(), RedDirectory\getDir(), RedDirectory\getName(), RedFile\getName(), group_content(), guess_image_type(), head_set_icon(), http_status_exit(), import_author_rss(), import_author_zot(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), item_post(), item_store(), item_store_update(), like_content(), limit_body_size(), load_plugin(), local_dir_update(), localize_item(), RedDirectory\log(), RedBasicAuth\log(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_token(), magic_init(), mail_post(), mail_store(), menu_edit(), mini_group_select(), mood_init(), FKOAuthDataStore\new_access_token(), new_contact(), new_keypair(), FKOAuthDataStore\new_request_token(), notes_init(), notification(), notifier_run(), onedirsync_run(), onepoll_run(), openid_content(), 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(), profile_photo_set_profile_perms(), profile_sidebar(), prune_hub_reinstalls(), public_recips(), RedFile\put(), dba_mysql\q(), dba_mysqli\q(), q(), queue_run(), rbmark_post(), red_item_new(), RedChannelList(), RedCollectionData(), RedFileData(), 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(), RedFile\setName(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), sync_directories(), tag_deliver(), tagger_content(), tgroup_check(), uninstall_plugin(), unload_plugin(), update_directory_entry(), update_imported_item(), update_queue_time(), RedBasicAuth\validateUserPass(), webfinger(), webfinger_dfrn(), xml2array(), xml_status(), z_fetch_url(), z_post_url(), zfinger_init(), zid_init(), zot_build_packet(), zot_feed(), zot_fetch(), zot_finger(), zot_gethub(), zot_import(), zot_process_response(), zot_refresh(), zot_register_hub(), and zotfeed_init().

    @@ -1720,7 +1720,7 @@ Variables @@ -1785,7 +1785,7 @@ Variables
    Returns
    string substituted string
    -

    Referenced by admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_plugins(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), alt_pager(), api_apply_template(), api_content(), apps_content(), apw_form(), blocks_content(), blogtheme_form(), App\build_pagehead(), categories_widget(), channel_content(), chanview_content(), chat_content(), check_config(), check_php(), common_content(), common_friends_visitor_widget(), connect_content(), connections_content(), connedit_content(), construct_page(), contact_block(), conversation(), delegate_content(), design_tools(), dir_safe_mode(), dir_sort_links(), directory_content(), dirprofile_init(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), fbrowser_content(), field_timezone(), fileas_widget(), filer_content(), filestorage_content(), findpeople_widget(), format_categories(), format_filer(), get_birthdays(), Item\get_comment_box(), get_events(), get_feed_for(), group_content(), group_side(), help_content(), hostxrd_init(), identity_selector(), import_content(), invite_content(), lang_selector(), layouts_content(), login(), lostpass_content(), lostpass_post(), mail_content(), manage_content(), match_content(), menu_content(), menu_render(), message_content(), micropro(), mini_group_select(), mitem_content(), mood_content(), nav(), network_content(), new_channel_content(), notification(), notifications_content(), notify_content(), oembed_format_object(), oexchange_init(), opensearch_init(), pagelist_widget(), pdledit_content(), photos_album_widget(), photos_content(), poco_init(), poke_content(), populate_acl(), profile_sidebar(), profiles_content(), rbmark_content(), redbasic_form(), register_content(), removeme_content(), rmagic_content(), rpost_content(), search_content(), send_reg_approval_email(), send_verification_email(), setup_content(), setup_post(), siteinfo_content(), sources_content(), suggest_content(), theme_attachments(), thing_content(), user_allow(), vcard_from_xchan(), viewconnections_content(), vote_content(), webpages_content(), widget_affinity(), widget_appselect(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), writepages_widget(), and xrd_init().

    +

    Referenced by admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_plugins(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), alt_pager(), api_apply_template(), api_content(), app_render(), appman_content(), apps_content(), apw_form(), blocks_content(), blogtheme_form(), App\build_pagehead(), categories_widget(), channel_content(), chanview_content(), chat_content(), check_config(), check_php(), common_content(), common_friends_visitor_widget(), connect_content(), connections_content(), connedit_content(), construct_page(), contact_block(), conversation(), delegate_content(), design_tools(), dir_safe_mode(), dir_sort_links(), directory_content(), dirprofile_init(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), fbrowser_content(), field_timezone(), fileas_widget(), filer_content(), filestorage_content(), findpeople_widget(), format_categories(), format_filer(), get_birthdays(), Item\get_comment_box(), get_events(), get_feed_for(), group_content(), group_side(), help_content(), hostxrd_init(), identity_selector(), import_content(), invite_content(), lang_selector(), layouts_content(), login(), lostpass_content(), lostpass_post(), mail_content(), manage_content(), match_content(), menu_content(), menu_render(), message_content(), micropro(), mini_group_select(), mitem_content(), mood_content(), nav(), network_content(), new_channel_content(), notification(), notifications_content(), notify_content(), oembed_format_object(), oexchange_init(), opensearch_init(), pagelist_widget(), pdledit_content(), photos_album_widget(), photos_content(), poco_init(), poke_content(), populate_acl(), profile_sidebar(), profiles_content(), rbmark_content(), redbasic_form(), register_content(), removeme_content(), rmagic_content(), rpost_content(), search_content(), send_reg_approval_email(), send_verification_email(), setup_content(), setup_post(), siteinfo_content(), sources_content(), suggest_content(), theme_attachments(), thing_content(), user_allow(), vcard_from_xchan(), viewconnections_content(), vote_content(), webpages_content(), widget_affinity(), widget_appselect(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), writepages_widget(), and xrd_init().

    diff --git a/doc/html/typo_8php.html b/doc/html/typo_8php.html index 529a23a22..7c1f1bfd6 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(), achievements_content(), acl_init(), admin_content(), admin_page_channels(), admin_page_channels_post(), admin_page_dbsync(), admin_page_hubloc(), admin_page_hubloc_post(), 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(), 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(), apw_form(), atom_entry(), attribute_contains(), authenticate_success(), avatar_img(), bb_sanitize_style(), bbcode(), best_link_url(), block_content(), block_init(), blocks_content(), blog_init(), blogtheme_display_item(), blogtheme_form(), blogtheme_imgurl(), bookmarks_content(), bookmarks_init(), build_sync_packet(), cal(), call_hooks(), categories_widget(), channel_content(), channel_init(), channel_remove(), chanview_content(), chat_content(), chat_init(), chat_post(), chatsvc_content(), chatsvc_init(), chatsvc_post(), 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(), cloud_init(), comanche_parser(), comanche_replace_region(), comanche_widget(), common_content(), common_friends_visitor_widget(), common_init(), connect_content(), connect_init(), connect_post(), connections_clone(), connections_content(), connections_init(), connections_post(), connedit_clone(), connedit_content(), connedit_init(), connedit_post(), construct_page(), contact_block(), contact_select(), conversation(), create_identity(), current_theme(), current_theme_url(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), deliver_run(), directory_content(), directory_init(), dirsearch_init(), display_content(), dlogger(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), ev_compare(), event_store(), events_content(), events_post(), expand_acl(), expand_groups(), externals_run(), fbrowser_content(), fileas_widget(), filer_content(), filerm_content(), filestorage_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_custom_nav(), get_events(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_pconfig(), get_plink(), Item\get_template_data(), get_theme_screenshot(), get_xconfig(), gprobe_run(), group_content(), group_post(), group_select(), guess_image_type(), handle_tag(), head_get_icon(), head_remove_css(), head_remove_js(), head_set_icon(), help_content(), home_content(), home_init(), hostxrd_init(), import_channel_photo(), import_post(), import_profile_photo(), info(), insert_hook(), invite_content(), invite_post(), is_developer(), is_site_admin(), item_photo_menu(), item_post(), items_fetch(), lang_selector(), layouts_content(), like_content(), 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(), magic_init(), mail_content(), mail_post(), manual_config(), match_content(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_init(), msearch_post(), mytheme_init(), nav(), nav_set_selected(), network_content(), network_init(), new_contact(), notice(), notification(), notifications_content(), notifications_post(), notifier_run(), notify_content(), notify_init(), oembed_fetch_url(), oembed_format_object(), oembed_iframe(), oexchange_content(), oexchange_init(), onedirsync_run(), onepoll_run(), openid_content(), 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(), preg_heart(), prepare_body(), probe_content(), proc_run(), profile_activity(), profile_content(), profile_create_sidebar(), profile_init(), profile_load(), profile_photo_init(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_init(), push_lang(), queue_run(), randprof_init(), rbmark_content(), rbmark_post(), red_item_new(), redbasic_form(), register_content(), regmod_content(), relative_date(), removeme_content(), removeme_post(), replace_macros(), rmagic_post(), rpost_content(), scale_external_images(), search(), search_ac_init(), search_content(), search_init(), searchbox(), send_message(), service_class_allows(), service_class_fetch(), set_config(), Conversation\set_mode(), set_pconfig(), set_xconfig(), settings_init(), settings_post(), setup_content(), setup_post(), share_init(), siteinfo_content(), siteinfo_init(), smilies(), sources_post(), subthread_content(), suggest_content(), t(), tag_deliver(), tag_sort_length(), tagger_content(), tagrm_content(), tagrm_post(), tags_sort(), terminate_friendship(), tgroup_check(), theme_admin(), theme_content(), theme_include(), thing_init(), timezone_cmp(), toggle_mobile_init(), tt(), uexport_init(), update_channel_content(), update_display_content(), update_network_content(), update_search_content(), update_suggestions(), user_allow(), vcard_from_xchan(), viewconnections_content(), viewconnections_init(), viewsrc_content(), vote_content(), vote_init(), vote_post(), wall_upload_post(), webpages_content(), wfinger_init(), what_next(), widget_archive(), widget_categories(), widget_chatroom_list(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_item(), widget_mailmenu(), widget_photo_albums(), widget_profile(), widget_savedsearch(), widget_settings_menu(), widget_tagcloud(), widget_tagcloud_wall(), xrd_init(), z_fetch_url(), z_path(), z_root(), zfinger_init(), zid_init(), zotfeed_init(), and zping_content().

    +

    Referenced by FriendicaSmarty\__construct(), Item\__construct(), FriendicaSmartyEngine\__construct(), Template\_replcb_if(), Template\_replcb_inc(), _well_known_init(), abook_toggle_flag(), achievements_content(), acl_init(), admin_content(), admin_page_channels(), admin_page_channels_post(), admin_page_dbsync(), admin_page_hubloc(), admin_page_hubloc_post(), 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(), 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(), app_name_compare(), appman_content(), apw_form(), atom_entry(), attribute_contains(), authenticate_success(), avatar_img(), bb_sanitize_style(), bbcode(), best_link_url(), block_content(), block_init(), blocks_content(), blog_init(), blogtheme_display_item(), blogtheme_form(), blogtheme_imgurl(), bookmarks_content(), bookmarks_init(), build_sync_packet(), cal(), call_hooks(), categories_widget(), channel_content(), channel_init(), channel_remove(), chanview_content(), chat_content(), chat_init(), chat_post(), chatsvc_content(), chatsvc_init(), chatsvc_post(), 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(), cloud_init(), comanche_parser(), comanche_replace_region(), comanche_widget(), common_content(), common_friends_visitor_widget(), common_init(), connect_content(), connect_init(), connect_post(), connections_clone(), connections_content(), connections_init(), connections_post(), connedit_clone(), connedit_content(), connedit_init(), connedit_post(), construct_page(), contact_block(), contact_select(), conversation(), create_identity(), current_theme(), current_theme_url(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), deliver_run(), directory_content(), directory_init(), dirsearch_init(), display_content(), dlogger(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), ev_compare(), event_store(), events_content(), events_post(), expand_acl(), expand_groups(), externals_run(), fbrowser_content(), fileas_widget(), filer_content(), filerm_content(), filestorage_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_custom_nav(), get_events(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_pconfig(), get_plink(), Item\get_template_data(), get_theme_screenshot(), get_xconfig(), gprobe_run(), group_content(), group_post(), group_select(), guess_image_type(), handle_tag(), head_get_icon(), head_remove_css(), head_remove_js(), head_set_icon(), help_content(), home_content(), home_init(), hostxrd_init(), import_channel_photo(), import_post(), import_profile_photo(), info(), insert_hook(), invite_content(), invite_post(), is_developer(), is_site_admin(), item_photo_menu(), item_post(), items_fetch(), lang_selector(), layouts_content(), like_content(), 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(), magic_init(), mail_content(), mail_post(), manual_config(), match_content(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_init(), msearch_post(), mytheme_init(), nav(), nav_set_selected(), network_content(), network_init(), new_contact(), notice(), notification(), notifications_content(), notifications_post(), notifier_run(), notify_content(), notify_init(), oembed_fetch_url(), oembed_format_object(), oembed_iframe(), oexchange_content(), oexchange_init(), onedirsync_run(), onepoll_run(), openid_content(), 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(), preg_heart(), prepare_body(), probe_content(), proc_run(), profile_activity(), profile_content(), profile_create_sidebar(), profile_init(), profile_load(), profile_photo_init(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_init(), push_lang(), queue_run(), randprof_init(), rbmark_content(), rbmark_post(), red_item_new(), redbasic_form(), register_content(), regmod_content(), relative_date(), removeme_content(), removeme_post(), replace_macros(), rmagic_post(), rpost_content(), scale_external_images(), search(), search_ac_init(), search_content(), search_init(), searchbox(), send_message(), service_class_allows(), service_class_fetch(), set_config(), Conversation\set_mode(), set_pconfig(), set_xconfig(), settings_init(), settings_post(), setup_content(), setup_post(), share_init(), siteinfo_content(), siteinfo_init(), smilies(), sources_post(), subthread_content(), suggest_content(), t(), tag_deliver(), tag_sort_length(), tagger_content(), tagrm_content(), tagrm_post(), tags_sort(), terminate_friendship(), tgroup_check(), theme_admin(), theme_content(), theme_include(), thing_init(), timezone_cmp(), toggle_mobile_init(), tt(), uexport_init(), update_channel_content(), update_display_content(), update_network_content(), update_search_content(), update_suggestions(), user_allow(), vcard_from_xchan(), viewconnections_content(), viewconnections_init(), viewsrc_content(), vote_content(), vote_init(), vote_post(), wall_upload_post(), webpages_content(), wfinger_init(), what_next(), widget_archive(), widget_categories(), widget_chatroom_list(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_item(), widget_mailmenu(), widget_photo_albums(), widget_profile(), widget_savedsearch(), widget_settings_menu(), widget_tagcloud(), widget_tagcloud_wall(), xrd_init(), z_fetch_url(), z_path(), z_root(), zfinger_init(), zid_init(), zotfeed_init(), and zping_content().

    diff --git a/util/messages.po b/util/messages.po index fd710f9fa..14e09fa4e 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2014-05-20.681\n" +"Project-Id-Version: 2014-05-23.684\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-21 05:30-0300\n" +"POT-Creation-Date: 2014-05-23 00:02-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,508 +17,145 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../include/follow.php:23 -msgid "Channel is blocked on this site." -msgstr "" - -#: ../../include/follow.php:28 -msgid "Channel location missing." -msgstr "" - -#: ../../include/follow.php:54 -msgid "Response from remote channel was incomplete." -msgstr "" - -#: ../../include/follow.php:85 -msgid "Channel was deleted and no longer exists." -msgstr "" - -#: ../../include/follow.php:132 -msgid "Channel discovery failed." -msgstr "" - -#: ../../include/follow.php:149 -msgid "local account not found." -msgstr "" - -#: ../../include/follow.php:158 -msgid "Cannot connect to yourself." -msgstr "" - -#: ../../include/reddav.php:1045 -msgid "Edit File properties" -msgstr "" - -#: ../../include/event.php:11 ../../include/bb2diaspora.php:433 -msgid "l F d, Y \\@ g:i A" -msgstr "" - -#: ../../include/event.php:20 ../../include/bb2diaspora.php:439 -msgid "Starts:" -msgstr "" - -#: ../../include/event.php:30 ../../include/bb2diaspora.php:447 -msgid "Finishes:" -msgstr "" - -#: ../../include/event.php:40 ../../include/bb2diaspora.php:455 -#: ../../include/identity.php:726 ../../mod/dirprofile.php:105 -#: ../../mod/directory.php:156 ../../mod/events.php:474 -msgid "Location:" -msgstr "" - -#: ../../include/widgets.php:29 ../../include/contact_widgets.php:92 -msgid "Categories" -msgstr "" - -#: ../../include/widgets.php:79 -msgid "App Category" -msgstr "" - -#: ../../include/widgets.php:80 -msgid "System" -msgstr "" - -#: ../../include/widgets.php:81 ../../include/conversation.php:1415 -msgid "Personal" -msgstr "" - -#: ../../include/widgets.php:127 ../../include/widgets.php:167 -#: ../../include/Contact.php:107 ../../include/identity.php:675 -#: ../../mod/dirprofile.php:164 ../../mod/directory.php:183 -#: ../../mod/suggest.php:51 ../../mod/match.php:62 -msgid "Connect" -msgstr "" - -#: ../../include/widgets.php:129 ../../mod/suggest.php:53 -msgid "Ignore/Hide" -msgstr "" - -#: ../../include/widgets.php:135 ../../mod/connections.php:266 -msgid "Suggestions" -msgstr "" - -#: ../../include/widgets.php:136 -msgid "See more..." -msgstr "" - -#: ../../include/widgets.php:158 +#: ../../include/dba/dba_driver.php:50 #, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." +msgid "Cannot locate DNS info for database server '%s'" msgstr "" -#: ../../include/widgets.php:164 -msgid "Add New Connection" +#: ../../include/photo/photo_driver.php:643 ../../include/photos.php:51 +#: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 +#: ../../mod/profile_photo.php:421 ../../mod/photos.php:91 +#: ../../mod/photos.php:655 ../../mod/photos.php:677 +msgid "Profile Photos" msgstr "" -#: ../../include/widgets.php:165 -msgid "Enter the channel address" +#: ../../include/apps.php:115 +msgid "Site Admin" msgstr "" -#: ../../include/widgets.php:166 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "" - -#: ../../include/widgets.php:183 -msgid "Notes" -msgstr "" - -#: ../../include/widgets.php:185 ../../include/text.php:815 -#: ../../include/text.php:829 ../../mod/filer.php:50 ../../mod/rbmark.php:28 -#: ../../mod/rbmark.php:98 -msgid "Save" -msgstr "" - -#: ../../include/widgets.php:255 -msgid "Remove term" -msgstr "" - -#: ../../include/widgets.php:264 ../../include/features.php:52 -msgid "Saved Searches" -msgstr "" - -#: ../../include/widgets.php:265 ../../include/group.php:290 -msgid "add" -msgstr "" - -#: ../../include/widgets.php:295 ../../include/features.php:66 -#: ../../include/contact_widgets.php:58 -msgid "Saved Folders" -msgstr "" - -#: ../../include/widgets.php:298 ../../include/contact_widgets.php:61 -#: ../../include/contact_widgets.php:95 -msgid "Everything" -msgstr "" - -#: ../../include/widgets.php:334 -msgid "Archives" -msgstr "" - -#: ../../include/widgets.php:396 -msgid "Refresh" -msgstr "" - -#: ../../include/widgets.php:397 ../../mod/connedit.php:428 -msgid "Me" -msgstr "" - -#: ../../include/widgets.php:398 ../../mod/connedit.php:430 -msgid "Best Friends" -msgstr "" - -#: ../../include/widgets.php:399 ../../include/profile_selectors.php:42 -#: ../../include/identity.php:342 ../../mod/connedit.php:431 -msgid "Friends" -msgstr "" - -#: ../../include/widgets.php:400 -msgid "Co-workers" -msgstr "" - -#: ../../include/widgets.php:401 ../../mod/connedit.php:432 -msgid "Former Friends" -msgstr "" - -#: ../../include/widgets.php:402 ../../mod/connedit.php:433 -msgid "Acquaintances" -msgstr "" - -#: ../../include/widgets.php:403 -msgid "Everybody" -msgstr "" - -#: ../../include/widgets.php:435 -msgid "Account settings" -msgstr "" - -#: ../../include/widgets.php:441 -msgid "Channel settings" -msgstr "" - -#: ../../include/widgets.php:447 -msgid "Additional features" -msgstr "" - -#: ../../include/widgets.php:453 -msgid "Feature settings" -msgstr "" - -#: ../../include/widgets.php:459 -msgid "Display settings" -msgstr "" - -#: ../../include/widgets.php:465 -msgid "Connected apps" -msgstr "" - -#: ../../include/widgets.php:471 -msgid "Export channel" -msgstr "" - -#: ../../include/widgets.php:483 -msgid "Automatic Permissions (Advanced)" -msgstr "" - -#: ../../include/widgets.php:493 -msgid "Premium Channel Settings" -msgstr "" - -#: ../../include/widgets.php:502 ../../include/features.php:43 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "" - -#: ../../include/widgets.php:513 ../../include/nav.php:186 -#: ../../mod/admin.php:976 ../../mod/admin.php:1181 -msgid "Settings" -msgstr "" - -#: ../../include/widgets.php:530 -msgid "Check Mail" -msgstr "" - -#: ../../include/widgets.php:535 ../../include/nav.php:177 -msgid "New Message" -msgstr "" - -#: ../../include/widgets.php:611 -msgid "Chat Rooms" -msgstr "" - -#: ../../include/widgets.php:629 -msgid "Bookmarked Chatrooms" -msgstr "" - -#: ../../include/widgets.php:647 -msgid "Suggested Chatrooms" -msgstr "" - -#: ../../include/api.php:1016 -msgid "Public Timeline" -msgstr "" - -#: ../../include/nav.php:77 ../../include/nav.php:96 ../../boot.php:1450 -msgid "Logout" -msgstr "" - -#: ../../include/nav.php:77 ../../include/nav.php:96 -msgid "End this session" -msgstr "" - -#: ../../include/nav.php:80 ../../include/nav.php:130 -msgid "Home" -msgstr "" - -#: ../../include/nav.php:80 -msgid "Your posts and conversations" -msgstr "" - -#: ../../include/nav.php:81 ../../include/conversation.php:937 -#: ../../mod/connedit.php:351 ../../mod/connedit.php:465 -msgid "View Profile" -msgstr "" - -#: ../../include/nav.php:81 -msgid "Your profile page" -msgstr "" - -#: ../../include/nav.php:83 -msgid "Edit Profiles" -msgstr "" - -#: ../../include/nav.php:83 -msgid "Manage/Edit profiles" -msgstr "" - -#: ../../include/nav.php:84 ../../include/conversation.php:1501 -#: ../../include/apps.php:110 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "" - -#: ../../include/nav.php:84 -msgid "Your photos" -msgstr "" - -#: ../../include/nav.php:85 ../../include/conversation.php:1510 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "" - -#: ../../include/nav.php:85 -msgid "Your files" -msgstr "" - -#: ../../include/nav.php:86 -msgid "Chat" -msgstr "" - -#: ../../include/nav.php:86 -msgid "Your chatrooms" -msgstr "" - -#: ../../include/nav.php:87 ../../include/nav.php:180 -#: ../../include/conversation.php:1532 ../../include/apps.php:111 -#: ../../mod/events.php:366 -msgid "Events" -msgstr "" - -#: ../../include/nav.php:87 -msgid "Your events" -msgstr "" - -#: ../../include/nav.php:88 ../../include/conversation.php:1540 +#: ../../include/apps.php:116 ../../include/conversation.php:1540 +#: ../../include/nav.php:88 msgid "Bookmarks" msgstr "" -#: ../../include/nav.php:88 -msgid "Your bookmarks" +#: ../../include/apps.php:117 +msgid "Address Book" msgstr "" -#: ../../include/nav.php:90 ../../include/conversation.php:1551 -#: ../../mod/webpages.php:79 -msgid "Webpages" -msgstr "" - -#: ../../include/nav.php:90 -msgid "Your webpages" -msgstr "" - -#: ../../include/nav.php:94 ../../boot.php:1451 +#: ../../include/apps.php:118 ../../include/nav.php:94 ../../boot.php:1451 msgid "Login" msgstr "" -#: ../../include/nav.php:94 -msgid "Sign in" +#: ../../include/apps.php:119 ../../include/nav.php:184 +msgid "Channel Select" msgstr "" -#: ../../include/nav.php:111 -#, php-format -msgid "%s - click to logout" +#: ../../include/apps.php:120 ../../include/nav.php:158 +msgid "Matrix" msgstr "" -#: ../../include/nav.php:116 -msgid "Click to authenticate to your home hub" +#: ../../include/apps.php:121 ../../include/nav.php:186 +#: ../../include/widgets.php:513 ../../mod/admin.php:976 +#: ../../mod/admin.php:1181 +msgid "Settings" msgstr "" -#: ../../include/nav.php:130 -msgid "Home Page" +#: ../../include/apps.php:122 ../../include/conversation.php:1510 +#: ../../include/nav.php:85 ../../mod/fbrowser.php:114 +msgid "Files" msgstr "" -#: ../../include/nav.php:134 ../../mod/register.php:206 ../../boot.php:1427 -msgid "Register" +#: ../../include/apps.php:123 ../../include/conversation.php:1551 +#: ../../include/nav.php:90 ../../mod/webpages.php:79 +msgid "Webpages" msgstr "" -#: ../../include/nav.php:134 -msgid "Create an account" +#: ../../include/apps.php:124 ../../include/nav.php:161 +msgid "Channel Home" msgstr "" -#: ../../include/nav.php:139 ../../include/apps.php:113 ../../mod/help.php:60 -#: ../../mod/help.php:65 -msgid "Help" +#: ../../include/apps.php:125 ../../include/identity.php:942 +#: ../../include/identity.php:1031 ../../mod/profperm.php:112 +msgid "Profile" msgstr "" -#: ../../include/nav.php:139 -msgid "Help and documentation" +#: ../../include/apps.php:126 ../../include/conversation.php:1501 +#: ../../include/nav.php:84 ../../mod/fbrowser.php:25 +msgid "Photos" msgstr "" -#: ../../include/nav.php:142 ../../mod/apps.php:17 ../../mod/apps.php:35 -msgid "Apps" +#: ../../include/apps.php:127 ../../include/conversation.php:1532 +#: ../../include/nav.php:87 ../../include/nav.php:180 ../../mod/events.php:366 +msgid "Events" msgstr "" -#: ../../include/nav.php:142 -msgid "Addon applications, utilities, games" -msgstr "" - -#: ../../include/nav.php:144 ../../include/text.php:813 -#: ../../include/text.php:827 ../../mod/search.php:29 -msgid "Search" -msgstr "" - -#: ../../include/nav.php:144 -msgid "Search site content" -msgstr "" - -#: ../../include/nav.php:147 ../../include/apps.php:112 +#: ../../include/apps.php:128 ../../include/nav.php:147 #: ../../mod/directory.php:210 msgid "Directory" msgstr "" -#: ../../include/nav.php:147 -msgid "Channel Locator" +#: ../../include/apps.php:129 ../../include/nav.php:139 ../../mod/help.php:60 +#: ../../mod/help.php:65 +msgid "Help" msgstr "" -#: ../../include/nav.php:158 ../../include/apps.php:107 -msgid "Matrix" -msgstr "" - -#: ../../include/nav.php:158 -msgid "Your matrix" -msgstr "" - -#: ../../include/nav.php:159 -msgid "Mark all matrix notifications seen" -msgstr "" - -#: ../../include/nav.php:161 ../../include/apps.php:108 -msgid "Channel Home" -msgstr "" - -#: ../../include/nav.php:161 -msgid "Channel home" -msgstr "" - -#: ../../include/nav.php:162 -msgid "Mark all channel notifications seen" -msgstr "" - -#: ../../include/nav.php:165 ../../include/nav.php:188 -#: ../../mod/connections.php:385 -msgid "Connections" -msgstr "" - -#: ../../include/nav.php:168 -msgid "Notices" -msgstr "" - -#: ../../include/nav.php:168 -msgid "Notifications" -msgstr "" - -#: ../../include/nav.php:169 -msgid "See all notifications" -msgstr "" - -#: ../../include/nav.php:170 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "" - -#: ../../include/nav.php:172 +#: ../../include/apps.php:130 ../../include/nav.php:172 msgid "Mail" msgstr "" -#: ../../include/nav.php:172 -msgid "Private mail" +#: ../../include/apps.php:131 ../../mod/mood.php:138 +msgid "Mood" msgstr "" -#: ../../include/nav.php:173 -msgid "See all private messages" +#: ../../include/apps.php:132 ../../include/conversation.php:942 +msgid "Poke" msgstr "" -#: ../../include/nav.php:174 -msgid "Mark all private messages seen" +#: ../../include/apps.php:133 ../../include/nav.php:86 +msgid "Chat" msgstr "" -#: ../../include/nav.php:175 -msgid "Inbox" +#: ../../include/apps.php:134 ../../include/text.php:813 +#: ../../include/text.php:827 ../../include/nav.php:144 +#: ../../mod/search.php:29 +msgid "Search" msgstr "" -#: ../../include/nav.php:176 -msgid "Outbox" +#: ../../include/apps.php:206 ../../mod/settings.php:79 +#: ../../mod/settings.php:541 +msgid "Update" msgstr "" -#: ../../include/nav.php:180 -msgid "Event Calendar" +#: ../../include/apps.php:206 +msgid "Install" msgstr "" -#: ../../include/nav.php:181 -msgid "See all events" +#: ../../include/apps.php:210 +msgid "Purchase" msgstr "" -#: ../../include/nav.php:182 -msgid "Mark all events seen" +#: ../../include/apps.php:212 ../../include/page_widgets.php:8 +#: ../../include/page_widgets.php:36 ../../include/ItemObject.php:96 +#: ../../include/menu.php:42 ../../mod/blocks.php:94 +#: ../../mod/connections.php:392 ../../mod/settings.php:577 +#: ../../mod/editblock.php:111 ../../mod/editlayout.php:106 +#: ../../mod/editpost.php:112 ../../mod/editwebpage.php:143 +#: ../../mod/filestorage.php:174 ../../mod/thing.php:235 +#: ../../mod/layouts.php:112 ../../mod/menu.php:59 ../../mod/webpages.php:119 +msgid "Edit" msgstr "" -#: ../../include/nav.php:184 -msgid "Channel Select" +#: ../../include/apps.php:213 ../../include/conversation.php:632 +#: ../../include/ItemObject.php:108 ../../mod/admin.php:757 +#: ../../mod/admin.php:886 ../../mod/connedit.php:398 +#: ../../mod/settings.php:578 ../../mod/filestorage.php:175 +#: ../../mod/group.php:176 ../../mod/thing.php:236 ../../mod/photos.php:1043 +msgid "Delete" msgstr "" -#: ../../include/nav.php:184 -msgid "Manage Your Channels" -msgstr "" - -#: ../../include/nav.php:186 -msgid "Account/Channel Settings" -msgstr "" - -#: ../../include/nav.php:188 -msgid "Manage/Edit Friends and Connections" -msgstr "" - -#: ../../include/nav.php:195 ../../mod/admin.php:117 -msgid "Admin" -msgstr "" - -#: ../../include/nav.php:195 -msgid "Site Setup and Configuration" -msgstr "" - -#: ../../include/nav.php:220 -msgid "Nothing new here" -msgstr "" - -#: ../../include/nav.php:225 -msgid "Please wait..." +#: ../../include/apps.php:288 ../../include/apps.php:338 +#: ../../mod/connedit.php:434 +msgid "Unknown" msgstr "" #: ../../include/oembed.php:171 @@ -529,565 +166,288 @@ msgstr "" msgid "Embedding disabled" msgstr "" -#: ../../include/bbcode.php:128 ../../include/bbcode.php:642 -#: ../../include/bbcode.php:645 ../../include/bbcode.php:650 -#: ../../include/bbcode.php:653 ../../include/bbcode.php:656 -#: ../../include/bbcode.php:659 ../../include/bbcode.php:664 -#: ../../include/bbcode.php:667 ../../include/bbcode.php:672 -#: ../../include/bbcode.php:675 ../../include/bbcode.php:678 -#: ../../include/bbcode.php:681 -msgid "Image/photo" +#: ../../include/notify.php:23 +msgid "created a new post" msgstr "" -#: ../../include/bbcode.php:163 ../../include/bbcode.php:692 -msgid "Encrypted content" -msgstr "" - -#: ../../include/bbcode.php:179 -msgid "QR code" -msgstr "" - -#: ../../include/bbcode.php:228 +#: ../../include/notify.php:24 #, php-format -msgid "%1$s wrote the following %2$s %3$s" +msgid "commented on %s's post" msgstr "" -#: ../../include/bbcode.php:230 -msgid "post" +#: ../../include/Contact.php:107 ../../include/identity.php:675 +#: ../../include/widgets.php:127 ../../include/widgets.php:167 +#: ../../mod/directory.php:183 ../../mod/dirprofile.php:164 +#: ../../mod/suggest.php:51 ../../mod/match.php:62 +msgid "Connect" msgstr "" -#: ../../include/bbcode.php:610 ../../include/bbcode.php:630 -msgid "$1 wrote:" +#: ../../include/Contact.php:123 +msgid "New window" msgstr "" -#: ../../include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." +#: ../../include/Contact.php:124 +msgid "Open the selected location in a different window or browser tab" msgstr "" -#: ../../include/group.php:223 -msgid "Default privacy group for new contacts" +#: ../../include/page_widgets.php:6 +msgid "New Page" msgstr "" -#: ../../include/group.php:242 ../../mod/admin.php:762 -msgid "All Channels" +#: ../../include/page_widgets.php:39 ../../mod/blocks.php:97 +#: ../../mod/layouts.php:116 ../../mod/webpages.php:122 +msgid "View" msgstr "" -#: ../../include/group.php:264 -msgid "edit" -msgstr "" - -#: ../../include/group.php:285 -msgid "Collections" -msgstr "" - -#: ../../include/group.php:286 -msgid "Edit collection" -msgstr "" - -#: ../../include/group.php:287 -msgid "Create a new collection" -msgstr "" - -#: ../../include/group.php:288 -msgid "Channels not in any collection" -msgstr "" - -#: ../../include/conversation.php:117 ../../include/text.php:1705 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:45 ../../mod/like.php:111 -msgid "photo" -msgstr "" - -#: ../../include/conversation.php:120 ../../include/text.php:1708 -#: ../../mod/tagger.php:49 -msgid "event" -msgstr "" - -#: ../../include/conversation.php:123 -msgid "channel" -msgstr "" - -#: ../../include/conversation.php:145 ../../include/text.php:1711 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:53 ../../mod/like.php:111 -msgid "status" -msgstr "" - -#: ../../include/conversation.php:147 ../../include/text.php:1713 -#: ../../mod/tagger.php:55 -msgid "comment" -msgstr "" - -#: ../../include/conversation.php:161 ../../mod/like.php:142 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "" - -#: ../../include/conversation.php:164 ../../mod/like.php:144 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "" - -#: ../../include/conversation.php:201 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "" - -#: ../../include/conversation.php:236 -#, php-format -msgid "%1$s poked %2$s" -msgstr "" - -#: ../../include/conversation.php:240 ../../include/text.php:895 -msgid "poked" -msgstr "" - -#: ../../include/conversation.php:258 ../../mod/mood.php:63 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "" - -#: ../../include/conversation.php:631 ../../include/ItemObject.php:114 -msgid "Select" -msgstr "" - -#: ../../include/conversation.php:632 ../../include/ItemObject.php:108 -#: ../../include/apps.php:156 ../../mod/group.php:176 ../../mod/thing.php:236 -#: ../../mod/filestorage.php:175 ../../mod/connedit.php:398 -#: ../../mod/settings.php:578 ../../mod/photos.php:1043 -#: ../../mod/admin.php:757 ../../mod/admin.php:886 -msgid "Delete" -msgstr "" - -#: ../../include/conversation.php:639 ../../include/ItemObject.php:89 -#: ../../mod/photos.php:846 -msgid "Private Message" -msgstr "" - -#: ../../include/conversation.php:646 ../../include/ItemObject.php:182 -msgid "Message is verified" -msgstr "" - -#: ../../include/conversation.php:666 -#, php-format -msgid "View %s's profile @ %s" -msgstr "" - -#: ../../include/conversation.php:680 -msgid "Categories:" -msgstr "" - -#: ../../include/conversation.php:681 -msgid "Filed under:" -msgstr "" - -#: ../../include/conversation.php:690 ../../include/ItemObject.php:247 -#, php-format -msgid " from %s" -msgstr "" - -#: ../../include/conversation.php:693 ../../include/ItemObject.php:250 -#, php-format -msgid "last edited: %s" -msgstr "" - -#: ../../include/conversation.php:694 ../../include/ItemObject.php:251 -#, php-format -msgid "Expires: %s" -msgstr "" - -#: ../../include/conversation.php:709 -msgid "View in context" -msgstr "" - -#: ../../include/conversation.php:711 ../../include/conversation.php:1127 -#: ../../include/ItemObject.php:290 ../../mod/editlayout.php:115 -#: ../../mod/editpost.php:121 ../../mod/photos.php:974 -#: ../../mod/editblock.php:120 ../../mod/editwebpage.php:152 -#: ../../mod/mail.php:222 ../../mod/mail.php:336 -msgid "Please wait" -msgstr "" - -#: ../../include/conversation.php:838 -msgid "remove" -msgstr "" - -#: ../../include/conversation.php:842 -msgid "Loading..." -msgstr "" - -#: ../../include/conversation.php:843 -msgid "Delete Selected Items" -msgstr "" - -#: ../../include/conversation.php:934 -msgid "View Source" -msgstr "" - -#: ../../include/conversation.php:935 -msgid "Follow Thread" -msgstr "" - -#: ../../include/conversation.php:936 -msgid "View Status" -msgstr "" - -#: ../../include/conversation.php:938 -msgid "View Photos" -msgstr "" - -#: ../../include/conversation.php:939 -msgid "Matrix Activity" -msgstr "" - -#: ../../include/conversation.php:940 -msgid "Edit Contact" -msgstr "" - -#: ../../include/conversation.php:941 -msgid "Send PM" -msgstr "" - -#: ../../include/conversation.php:942 -msgid "Poke" -msgstr "" - -#: ../../include/conversation.php:998 -#, php-format -msgid "%s likes this." -msgstr "" - -#: ../../include/conversation.php:998 -#, php-format -msgid "%s doesn't like this." -msgstr "" - -#: ../../include/conversation.php:1002 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1004 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1010 -msgid "and" -msgstr "" - -#: ../../include/conversation.php:1013 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1014 -#, php-format -msgid "%s like this." -msgstr "" - -#: ../../include/conversation.php:1014 -#, php-format -msgid "%s don't like this." -msgstr "" - -#: ../../include/conversation.php:1071 -msgid "Visible to everybody" -msgstr "" - -#: ../../include/conversation.php:1072 ../../mod/mail.php:171 -#: ../../mod/mail.php:269 -msgid "Please enter a link URL:" -msgstr "" - -#: ../../include/conversation.php:1073 -msgid "Please enter a video link/URL:" -msgstr "" - -#: ../../include/conversation.php:1074 -msgid "Please enter an audio link/URL:" -msgstr "" - -#: ../../include/conversation.php:1075 -msgid "Tag term:" -msgstr "" - -#: ../../include/conversation.php:1076 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "" - -#: ../../include/conversation.php:1077 -msgid "Where are you right now?" -msgstr "" - -#: ../../include/conversation.php:1078 ../../mod/editpost.php:52 -#: ../../mod/mail.php:172 ../../mod/mail.php:270 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "" - -#: ../../include/conversation.php:1088 ../../include/ItemObject.php:588 -#: ../../include/page_widgets.php:40 ../../mod/editlayout.php:135 -#: ../../mod/webpages.php:123 ../../mod/editpost.php:140 -#: ../../mod/photos.php:994 ../../mod/editblock.php:141 -#: ../../mod/editwebpage.php:175 +#: ../../include/page_widgets.php:40 ../../include/conversation.php:1088 +#: ../../include/ItemObject.php:588 ../../mod/editblock.php:141 +#: ../../mod/editlayout.php:135 ../../mod/editpost.php:140 +#: ../../mod/editwebpage.php:175 ../../mod/webpages.php:123 +#: ../../mod/photos.php:994 msgid "Preview" msgstr "" -#: ../../include/conversation.php:1102 ../../mod/photos.php:973 -#: ../../mod/layouts.php:113 -msgid "Share" +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:124 +msgid "Actions" msgstr "" -#: ../../include/conversation.php:1104 ../../mod/editwebpage.php:139 -msgid "Page link title" +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:125 +msgid "Page Link" msgstr "" -#: ../../include/conversation.php:1107 -msgid "Post as" +#: ../../include/page_widgets.php:43 ../../mod/webpages.php:126 +msgid "Title" msgstr "" -#: ../../include/conversation.php:1108 ../../mod/editlayout.php:107 -#: ../../mod/editpost.php:113 ../../mod/editblock.php:112 -#: ../../mod/editwebpage.php:144 ../../mod/mail.php:219 ../../mod/mail.php:332 -msgid "Upload photo" +#: ../../include/page_widgets.php:44 ../../mod/webpages.php:127 +msgid "Created" msgstr "" -#: ../../include/conversation.php:1109 -msgid "upload photo" +#: ../../include/page_widgets.php:45 ../../mod/webpages.php:128 +msgid "Edited" msgstr "" -#: ../../include/conversation.php:1110 ../../mod/editlayout.php:108 -#: ../../mod/editpost.php:114 ../../mod/editblock.php:113 -#: ../../mod/editwebpage.php:145 ../../mod/mail.php:220 ../../mod/mail.php:333 -msgid "Attach file" +#: ../../include/permissions.php:13 +msgid "Can view my \"public\" stream and posts" msgstr "" -#: ../../include/conversation.php:1111 -msgid "attach file" +#: ../../include/permissions.php:14 +msgid "Can view my \"public\" channel profile" msgstr "" -#: ../../include/conversation.php:1112 ../../mod/editlayout.php:109 -#: ../../mod/editpost.php:115 ../../mod/editblock.php:114 -#: ../../mod/editwebpage.php:146 ../../mod/mail.php:221 ../../mod/mail.php:334 -msgid "Insert web link" +#: ../../include/permissions.php:15 +msgid "Can view my \"public\" photo albums" msgstr "" -#: ../../include/conversation.php:1113 -msgid "web link" +#: ../../include/permissions.php:16 +msgid "Can view my \"public\" address book" msgstr "" -#: ../../include/conversation.php:1114 -msgid "Insert video link" +#: ../../include/permissions.php:17 +msgid "Can view my \"public\" file storage" msgstr "" -#: ../../include/conversation.php:1115 -msgid "video link" +#: ../../include/permissions.php:18 +msgid "Can view my \"public\" pages" msgstr "" -#: ../../include/conversation.php:1116 -msgid "Insert audio link" +#: ../../include/permissions.php:21 +msgid "Can send me their channel stream and posts" msgstr "" -#: ../../include/conversation.php:1117 -msgid "audio link" +#: ../../include/permissions.php:22 +msgid "Can post on my channel page (\"wall\")" msgstr "" -#: ../../include/conversation.php:1118 ../../mod/editlayout.php:113 -#: ../../mod/editpost.php:119 ../../mod/editblock.php:118 -#: ../../mod/editwebpage.php:150 -msgid "Set your location" +#: ../../include/permissions.php:23 +msgid "Can comment on my posts" msgstr "" -#: ../../include/conversation.php:1119 -msgid "set location" +#: ../../include/permissions.php:24 +msgid "Can send me private mail messages" msgstr "" -#: ../../include/conversation.php:1120 ../../mod/editlayout.php:114 -#: ../../mod/editpost.php:120 ../../mod/editblock.php:119 -#: ../../mod/editwebpage.php:151 -msgid "Clear browser location" +#: ../../include/permissions.php:25 +msgid "Can post photos to my photo albums" msgstr "" -#: ../../include/conversation.php:1121 -msgid "clear location" +#: ../../include/permissions.php:26 +msgid "Can forward to all my channel contacts via post @mentions" msgstr "" -#: ../../include/conversation.php:1123 ../../mod/editlayout.php:126 -#: ../../mod/editpost.php:132 ../../mod/editblock.php:132 -#: ../../mod/editwebpage.php:167 -msgid "Set title" +#: ../../include/permissions.php:26 +msgid "Advanced - useful for creating group forum channels" msgstr "" -#: ../../include/conversation.php:1126 ../../mod/editlayout.php:129 -#: ../../mod/editpost.php:134 ../../mod/editblock.php:135 -#: ../../mod/editwebpage.php:169 -msgid "Categories (comma-separated list)" +#: ../../include/permissions.php:27 +msgid "Can chat with me (when available)" msgstr "" -#: ../../include/conversation.php:1128 ../../mod/editlayout.php:116 -#: ../../mod/editpost.php:122 ../../mod/editblock.php:121 -#: ../../mod/editwebpage.php:153 -msgid "Permission settings" +#: ../../include/permissions.php:28 +msgid "Can write to my \"public\" file storage" msgstr "" -#: ../../include/conversation.php:1129 -msgid "permissions" +#: ../../include/permissions.php:29 +msgid "Can edit my \"public\" pages" msgstr "" -#: ../../include/conversation.php:1136 ../../mod/editlayout.php:123 -#: ../../mod/editpost.php:129 ../../mod/editblock.php:129 -#: ../../mod/editwebpage.php:162 -msgid "Public post" +#: ../../include/permissions.php:31 +msgid "Can source my \"public\" posts in derived channels" msgstr "" -#: ../../include/conversation.php:1138 ../../mod/editlayout.php:130 -#: ../../mod/editpost.php:135 ../../mod/editblock.php:136 -#: ../../mod/editwebpage.php:170 -msgid "Example: bob@example.com, mary@example.com" +#: ../../include/permissions.php:31 +msgid "Somewhat advanced - very useful in open communities" msgstr "" -#: ../../include/conversation.php:1151 ../../mod/editlayout.php:140 -#: ../../mod/editpost.php:146 ../../mod/editblock.php:146 -#: ../../mod/editwebpage.php:180 ../../mod/mail.php:226 ../../mod/mail.php:339 -msgid "Set expiration date" +#: ../../include/permissions.php:33 +msgid "Can administer my channel resources" msgstr "" -#: ../../include/conversation.php:1153 ../../include/ItemObject.php:591 -#: ../../mod/editpost.php:148 ../../mod/mail.php:228 ../../mod/mail.php:341 -msgid "Encrypt text" +#: ../../include/permissions.php:33 +msgid "Extremely advanced. Leave this alone unless you know what you are doing" msgstr "" -#: ../../include/conversation.php:1155 ../../mod/editpost.php:150 -msgid "OK" +#: ../../include/account.php:23 +msgid "Not a valid email address" msgstr "" -#: ../../include/conversation.php:1156 ../../mod/tagrm.php:11 -#: ../../mod/tagrm.php:94 ../../mod/editpost.php:151 -#: ../../mod/settings.php:516 ../../mod/settings.php:542 -#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117 -msgid "Cancel" +#: ../../include/account.php:25 +msgid "Your email domain is not among those allowed on this site" msgstr "" -#: ../../include/conversation.php:1392 -msgid "Discover" +#: ../../include/account.php:31 +msgid "Your email address is already registered at this site." msgstr "" -#: ../../include/conversation.php:1395 -msgid "Imported public streams" +#: ../../include/account.php:64 +msgid "An invitation is required." msgstr "" -#: ../../include/conversation.php:1400 -msgid "Commented Order" +#: ../../include/account.php:68 +msgid "Invitation could not be verified." msgstr "" -#: ../../include/conversation.php:1403 -msgid "Sort by Comment Date" +#: ../../include/account.php:119 +msgid "Please enter the required information." msgstr "" -#: ../../include/conversation.php:1407 -msgid "Posted Order" +#: ../../include/account.php:187 +msgid "Failed to store account information." msgstr "" -#: ../../include/conversation.php:1410 -msgid "Sort by Post Date" +#: ../../include/account.php:273 +#, php-format +msgid "Registration request at %s" msgstr "" -#: ../../include/conversation.php:1418 -msgid "Posts that mention or involve you" +#: ../../include/account.php:275 ../../include/account.php:302 +#: ../../include/account.php:359 +msgid "Administrator" msgstr "" -#: ../../include/conversation.php:1424 ../../mod/connections.php:211 -#: ../../mod/connections.php:224 ../../mod/menu.php:61 -msgid "New" +#: ../../include/account.php:297 +msgid "your registration password" msgstr "" -#: ../../include/conversation.php:1427 -msgid "Activity Stream - by date" +#: ../../include/account.php:300 ../../include/account.php:357 +#, php-format +msgid "Registration details for %s" msgstr "" -#: ../../include/conversation.php:1433 -msgid "Starred" +#: ../../include/account.php:366 +msgid "Account approved." msgstr "" -#: ../../include/conversation.php:1436 -msgid "Favourite Posts" +#: ../../include/account.php:400 +#, php-format +msgid "Registration revoked for %s" msgstr "" -#: ../../include/conversation.php:1443 -msgid "Spam" +#: ../../include/photos.php:15 ../../include/attach.php:119 +#: ../../include/attach.php:166 ../../include/attach.php:229 +#: ../../include/attach.php:243 ../../include/attach.php:283 +#: ../../include/attach.php:297 ../../include/attach.php:322 +#: ../../include/attach.php:513 ../../include/attach.php:585 +#: ../../include/items.php:3645 ../../include/chat.php:116 +#: ../../mod/mood.php:119 ../../mod/mitem.php:73 ../../mod/achievements.php:27 +#: ../../mod/poke.php:128 ../../mod/api.php:26 ../../mod/api.php:31 +#: ../../mod/authtest.php:13 ../../mod/profile.php:64 ../../mod/profile.php:72 +#: ../../mod/block.php:22 ../../mod/block.php:72 +#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 +#: ../../mod/blocks.php:29 ../../mod/blocks.php:44 ../../mod/profiles.php:152 +#: ../../mod/profiles.php:453 ../../mod/bookmarks.php:46 +#: ../../mod/channel.php:89 ../../mod/channel.php:193 +#: ../../mod/channel.php:236 ../../mod/chat.php:90 ../../mod/chat.php:95 +#: ../../mod/register.php:68 ../../mod/regmod.php:18 ../../mod/common.php:35 +#: ../../mod/network.php:12 ../../mod/connections.php:169 +#: ../../mod/connedit.php:221 ../../mod/delegate.php:6 ../../mod/page.php:30 +#: ../../mod/page.php:80 ../../mod/settings.php:492 ../../mod/setup.php:203 +#: ../../mod/editblock.php:34 ../../mod/pdledit.php:21 +#: ../../mod/editlayout.php:48 ../../mod/editpost.php:13 +#: ../../mod/editwebpage.php:44 ../../mod/editwebpage.php:83 +#: ../../mod/events.php:140 ../../mod/sources.php:66 ../../mod/appman.php:62 +#: ../../mod/filestorage.php:10 ../../mod/filestorage.php:59 +#: ../../mod/filestorage.php:75 ../../mod/filestorage.php:98 +#: ../../mod/fsuggest.php:78 ../../mod/suggest.php:26 ../../mod/group.php:9 +#: ../../mod/thing.php:247 ../../mod/thing.php:263 ../../mod/thing.php:298 +#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/item.php:179 +#: ../../mod/item.php:187 ../../mod/item.php:872 ../../mod/layouts.php:27 +#: ../../mod/layouts.php:39 ../../mod/viewconnections.php:22 +#: ../../mod/viewconnections.php:27 ../../mod/viewsrc.php:12 +#: ../../mod/mail.php:108 ../../mod/manage.php:6 ../../mod/menu.php:44 +#: ../../mod/webpages.php:40 ../../mod/message.php:16 +#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97 +#: ../../mod/photos.php:68 ../../mod/photos.php:526 +#: ../../mod/notifications.php:66 ../../index.php:187 ../../index.php:362 +msgid "Permission denied." msgstr "" -#: ../../include/conversation.php:1446 -msgid "Posts flagged as SPAM" +#: ../../include/photos.php:89 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" msgstr "" -#: ../../include/conversation.php:1480 ../../mod/admin.php:890 -msgid "Channel" +#: ../../include/photos.php:96 +msgid "Image file is empty." msgstr "" -#: ../../include/conversation.php:1483 -msgid "Status Messages and Posts" +#: ../../include/photos.php:123 ../../mod/profile_photo.php:216 +msgid "Unable to process image" msgstr "" -#: ../../include/conversation.php:1492 -msgid "About" +#: ../../include/photos.php:186 +msgid "Photo storage failed." msgstr "" -#: ../../include/conversation.php:1495 -msgid "Profile Details" -msgstr "" - -#: ../../include/conversation.php:1504 ../../include/photos.php:311 +#: ../../include/photos.php:311 ../../include/conversation.php:1504 msgid "Photo Albums" msgstr "" -#: ../../include/conversation.php:1513 -msgid "Files and Storage" +#: ../../include/photos.php:315 ../../mod/photos.php:693 +#: ../../mod/photos.php:1190 +msgid "Upload New Photos" msgstr "" -#: ../../include/conversation.php:1522 ../../include/conversation.php:1525 -msgid "Chatrooms" +#: ../../include/acl_selectors.php:238 +msgid "Visible to everybody" msgstr "" -#: ../../include/conversation.php:1535 -msgid "Events and Calendar" +#: ../../include/acl_selectors.php:239 +msgid "Show" msgstr "" -#: ../../include/conversation.php:1543 -msgid "Saved Bookmarks" +#: ../../include/acl_selectors.php:240 +msgid "Don't show" msgstr "" -#: ../../include/conversation.php:1554 -msgid "Manage Webpages" +#: ../../include/acl_selectors.php:246 ../../mod/chat.php:209 +#: ../../mod/filestorage.php:126 ../../mod/photos.php:606 +#: ../../mod/photos.php:949 +msgid "Permissions" msgstr "" -#: ../../include/comanche.php:35 ../../view/theme/redbasic/php/config.php:84 -msgid "Default" -msgstr "" - -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "" - -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "" - -#: ../../include/message.php:42 -msgid "Unable to determine sender." -msgstr "" - -#: ../../include/message.php:143 -msgid "Stored post could not be verified." +#: ../../include/acl_selectors.php:247 ../../include/ItemObject.php:285 +msgid "Close" msgstr "" #: ../../include/activities.php:39 @@ -1113,548 +473,8 @@ msgstr "" msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" -#: ../../include/network.php:652 -msgid "view full size" -msgstr "" - -#: ../../include/bookmarks.php:42 -#, php-format -msgid "%1$s's bookmarks" -msgstr "" - -#: ../../include/taxonomy.php:210 -msgid "Tags" -msgstr "" - -#: ../../include/taxonomy.php:227 -msgid "Keywords" -msgstr "" - -#: ../../include/taxonomy.php:252 -msgid "have" -msgstr "" - -#: ../../include/taxonomy.php:252 -msgid "has" -msgstr "" - -#: ../../include/taxonomy.php:253 -msgid "want" -msgstr "" - -#: ../../include/taxonomy.php:253 -msgid "wants" -msgstr "" - -#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:205 -msgid "like" -msgstr "" - -#: ../../include/taxonomy.php:254 -msgid "likes" -msgstr "" - -#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:206 -msgid "dislike" -msgstr "" - -#: ../../include/taxonomy.php:255 -msgid "dislikes" -msgstr "" - -#: ../../include/ItemObject.php:96 ../../include/page_widgets.php:8 -#: ../../include/page_widgets.php:36 ../../include/menu.php:42 -#: ../../mod/editlayout.php:106 ../../mod/webpages.php:119 -#: ../../mod/thing.php:235 ../../mod/blocks.php:94 -#: ../../mod/filestorage.php:174 ../../mod/editpost.php:112 -#: ../../mod/settings.php:577 ../../mod/layouts.php:112 -#: ../../mod/connections.php:392 ../../mod/editblock.php:111 -#: ../../mod/editwebpage.php:143 ../../mod/menu.php:59 -msgid "Edit" -msgstr "" - -#: ../../include/ItemObject.php:118 -msgid "save to folder" -msgstr "" - -#: ../../include/ItemObject.php:130 ../../include/ItemObject.php:142 -msgid "View all" -msgstr "" - -#: ../../include/ItemObject.php:134 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/ItemObject.php:139 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/ItemObject.php:167 -msgid "add star" -msgstr "" - -#: ../../include/ItemObject.php:168 -msgid "remove star" -msgstr "" - -#: ../../include/ItemObject.php:169 -msgid "toggle star status" -msgstr "" - -#: ../../include/ItemObject.php:173 -msgid "starred" -msgstr "" - -#: ../../include/ItemObject.php:190 -msgid "add tag" -msgstr "" - -#: ../../include/ItemObject.php:205 ../../mod/photos.php:971 -msgid "I like this (toggle)" -msgstr "" - -#: ../../include/ItemObject.php:206 ../../mod/photos.php:972 -msgid "I don't like this (toggle)" -msgstr "" - -#: ../../include/ItemObject.php:208 -msgid "Share this" -msgstr "" - -#: ../../include/ItemObject.php:208 -msgid "share" -msgstr "" - -#: ../../include/ItemObject.php:232 ../../include/ItemObject.php:233 -#, php-format -msgid "View %s's profile - %s" -msgstr "" - -#: ../../include/ItemObject.php:234 -msgid "to" -msgstr "" - -#: ../../include/ItemObject.php:235 -msgid "via" -msgstr "" - -#: ../../include/ItemObject.php:236 -msgid "Wall-to-Wall" -msgstr "" - -#: ../../include/ItemObject.php:237 -msgid "via Wall-To-Wall:" -msgstr "" - -#: ../../include/ItemObject.php:271 -msgid "Bookmark Links" -msgstr "" - -#: ../../include/ItemObject.php:279 -msgctxt "noun" -msgid "Likes" -msgstr "" - -#: ../../include/ItemObject.php:280 -msgctxt "noun" -msgid "Dislikes" -msgstr "" - -#: ../../include/ItemObject.php:285 ../../include/acl_selectors.php:247 -msgid "Close" -msgstr "" - -#: ../../include/ItemObject.php:311 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/ItemObject.php:312 ../../include/contact_widgets.php:130 -#: ../../include/js_strings.php:7 -msgid "show more" -msgstr "" - -#: ../../include/ItemObject.php:576 ../../mod/photos.php:990 -#: ../../mod/photos.php:1077 -msgid "This is you" -msgstr "" - -#: ../../include/ItemObject.php:578 ../../include/js_strings.php:6 -#: ../../mod/photos.php:992 ../../mod/photos.php:1079 -msgid "Comment" -msgstr "" - -#: ../../include/ItemObject.php:579 ../../mod/group.php:81 -#: ../../mod/thing.php:283 ../../mod/thing.php:326 ../../mod/connect.php:92 -#: ../../mod/pdledit.php:58 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/filestorage.php:135 -#: ../../mod/fsuggest.php:108 ../../mod/connedit.php:476 -#: ../../mod/settings.php:515 ../../mod/settings.php:627 -#: ../../mod/settings.php:655 ../../mod/settings.php:679 -#: ../../mod/settings.php:751 ../../mod/settings.php:929 -#: ../../mod/setup.php:307 ../../mod/setup.php:350 ../../mod/events.php:481 -#: ../../mod/photos.php:565 ../../mod/photos.php:670 ../../mod/photos.php:953 -#: ../../mod/photos.php:993 ../../mod/photos.php:1080 ../../mod/import.php:387 -#: ../../mod/mood.php:142 ../../mod/chat.php:177 ../../mod/chat.php:211 -#: ../../mod/profiles.php:506 ../../mod/mail.php:223 ../../mod/mail.php:335 -#: ../../mod/appman.php:91 ../../mod/poke.php:166 ../../mod/admin.php:441 -#: ../../mod/admin.php:750 ../../mod/admin.php:884 ../../mod/admin.php:1017 -#: ../../mod/admin.php:1216 ../../mod/admin.php:1303 ../../mod/invite.php:156 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "" - -#: ../../include/ItemObject.php:580 -msgid "Bold" -msgstr "" - -#: ../../include/ItemObject.php:581 -msgid "Italic" -msgstr "" - -#: ../../include/ItemObject.php:582 -msgid "Underline" -msgstr "" - -#: ../../include/ItemObject.php:583 -msgid "Quote" -msgstr "" - -#: ../../include/ItemObject.php:584 -msgid "Code" -msgstr "" - -#: ../../include/ItemObject.php:585 -msgid "Image" -msgstr "" - -#: ../../include/ItemObject.php:586 -msgid "Link" -msgstr "" - -#: ../../include/ItemObject.php:587 -msgid "Video" -msgstr "" - -#: ../../include/items.php:306 ../../mod/group.php:68 -#: ../../mod/subthread.php:49 ../../mod/profperm.php:23 ../../mod/like.php:63 -#: ../../index.php:361 -msgid "Permission denied" -msgstr "" - -#: ../../include/items.php:830 -msgid "(Unknown)" -msgstr "" - -#: ../../include/items.php:3583 ../../mod/home.php:63 ../../mod/thing.php:78 -#: ../../mod/filestorage.php:18 ../../mod/viewsrc.php:18 -#: ../../mod/display.php:32 ../../mod/admin.php:159 ../../mod/admin.php:921 -#: ../../mod/admin.php:1124 -msgid "Item not found." -msgstr "" - -#: ../../include/items.php:3645 ../../include/attach.php:119 -#: ../../include/attach.php:166 ../../include/attach.php:229 -#: ../../include/attach.php:243 ../../include/attach.php:283 -#: ../../include/attach.php:297 ../../include/attach.php:322 -#: ../../include/attach.php:513 ../../include/attach.php:585 -#: ../../include/photos.php:15 ../../include/chat.php:116 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/editlayout.php:48 ../../mod/webpages.php:40 -#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97 -#: ../../mod/group.php:9 ../../mod/thing.php:247 ../../mod/thing.php:263 -#: ../../mod/thing.php:298 ../../mod/notifications.php:66 -#: ../../mod/block.php:22 ../../mod/block.php:72 ../../mod/message.php:16 -#: ../../mod/mitem.php:73 ../../mod/item.php:179 ../../mod/item.php:187 -#: ../../mod/item.php:872 ../../mod/suggest.php:26 ../../mod/network.php:12 -#: ../../mod/bookmarks.php:46 ../../mod/channel.php:89 -#: ../../mod/channel.php:193 ../../mod/channel.php:236 -#: ../../mod/pdledit.php:21 ../../mod/sources.php:66 -#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 -#: ../../mod/blocks.php:29 ../../mod/blocks.php:44 -#: ../../mod/filestorage.php:10 ../../mod/filestorage.php:59 -#: ../../mod/filestorage.php:75 ../../mod/filestorage.php:98 -#: ../../mod/authtest.php:13 ../../mod/fsuggest.php:78 -#: ../../mod/connedit.php:221 ../../mod/viewsrc.php:12 -#: ../../mod/achievements.php:27 ../../mod/editpost.php:13 -#: ../../mod/settings.php:492 ../../mod/setup.php:203 ../../mod/events.php:140 -#: ../../mod/photos.php:68 ../../mod/photos.php:526 ../../mod/delegate.php:6 -#: ../../mod/layouts.php:27 ../../mod/layouts.php:39 -#: ../../mod/connections.php:169 ../../mod/page.php:30 ../../mod/page.php:80 -#: ../../mod/mood.php:119 ../../mod/chat.php:90 ../../mod/chat.php:95 -#: ../../mod/editblock.php:34 ../../mod/editwebpage.php:44 -#: ../../mod/editwebpage.php:83 ../../mod/profiles.php:152 -#: ../../mod/profiles.php:453 ../../mod/menu.php:44 ../../mod/mail.php:108 -#: ../../mod/appman.php:58 ../../mod/poke.php:128 -#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 -#: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/register.php:68 -#: ../../mod/manage.php:6 ../../mod/invite.php:13 ../../mod/invite.php:104 -#: ../../mod/common.php:35 ../../mod/regmod.php:18 ../../index.php:187 -#: ../../index.php:362 -msgid "Permission denied." -msgstr "" - -#: ../../include/items.php:4007 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "" - -#: ../../include/items.php:4022 -msgid "Collection is empty." -msgstr "" - -#: ../../include/items.php:4029 -#, php-format -msgid "Collection: %s" -msgstr "" - -#: ../../include/items.php:4040 -#, php-format -msgid "Connection: %s" -msgstr "" - -#: ../../include/items.php:4043 -msgid "Connection not found." -msgstr "" - -#: ../../include/dir_fns.php:36 -msgid "Sort Options" -msgstr "" - -#: ../../include/dir_fns.php:37 -msgid "Alphabetic" -msgstr "" - -#: ../../include/dir_fns.php:38 -msgid "Reverse Alphabetic" -msgstr "" - -#: ../../include/dir_fns.php:39 -msgid "Newest to Oldest" -msgstr "" - -#: ../../include/dir_fns.php:51 -msgid "Enable Safe Search" -msgstr "" - -#: ../../include/dir_fns.php:53 -msgid "Disable Safe Search" -msgstr "" - -#: ../../include/dir_fns.php:55 -msgid "Safe Mode" -msgstr "" - -#: ../../include/security.php:301 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "" - -#: ../../include/notify.php:23 -msgid "created a new post" -msgstr "" - -#: ../../include/notify.php:24 -#, php-format -msgid "commented on %s's post" -msgstr "" - -#: ../../include/enotify.php:41 -msgid "Red Matrix Notification" -msgstr "" - -#: ../../include/enotify.php:42 -msgid "redmatrix" -msgstr "" - -#: ../../include/enotify.php:44 -msgid "Thank You," -msgstr "" - -#: ../../include/enotify.php:46 -#, php-format -msgid "%s Administrator" -msgstr "" - -#: ../../include/enotify.php:81 -#, php-format -msgid "%s " -msgstr "" - -#: ../../include/enotify.php:85 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "" - -#: ../../include/enotify.php:87 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "" - -#: ../../include/enotify.php:88 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "" - -#: ../../include/enotify.php:88 -msgid "a private message" -msgstr "" - -#: ../../include/enotify.php:89 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "" - -#: ../../include/enotify.php:144 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "" - -#: ../../include/enotify.php:152 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "" - -#: ../../include/enotify.php:161 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "" - -#: ../../include/enotify.php:172 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "" - -#: ../../include/enotify.php:173 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "" - -#: ../../include/enotify.php:176 ../../include/enotify.php:191 -#: ../../include/enotify.php:217 ../../include/enotify.php:236 -#: ../../include/enotify.php:250 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "" - -#: ../../include/enotify.php:182 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "" - -#: ../../include/enotify.php:184 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "" - -#: ../../include/enotify.php:186 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "" - -#: ../../include/enotify.php:210 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "" - -#: ../../include/enotify.php:211 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "" - -#: ../../include/enotify.php:212 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "" - -#: ../../include/enotify.php:225 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "" - -#: ../../include/enotify.php:226 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "" - -#: ../../include/enotify.php:227 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "" - -#: ../../include/enotify.php:243 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "" - -#: ../../include/enotify.php:244 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "" - -#: ../../include/enotify.php:245 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "" - -#: ../../include/enotify.php:257 -msgid "[Red:Notify] Introduction received" -msgstr "" - -#: ../../include/enotify.php:258 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "" - -#: ../../include/enotify.php:259 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "" - -#: ../../include/enotify.php:263 ../../include/enotify.php:282 -#, php-format -msgid "You may visit their profile at %s" -msgstr "" - -#: ../../include/enotify.php:265 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "" - -#: ../../include/enotify.php:272 -msgid "[Red:Notify] Friend suggestion received" -msgstr "" - -#: ../../include/enotify.php:273 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "" - -#: ../../include/enotify.php:274 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s." -msgstr "" - -#: ../../include/enotify.php:280 -msgid "Name:" -msgstr "" - -#: ../../include/enotify.php:281 -msgid "Photo:" -msgstr "" - -#: ../../include/enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." +#: ../../include/api.php:1016 +msgid "Public Timeline" msgstr "" #: ../../include/attach.php:224 ../../include/attach.php:278 @@ -1715,388 +535,174 @@ msgstr "" msgid "database storage failed." msgstr "" -#: ../../include/page_widgets.php:6 -msgid "New Page" +#: ../../include/auth.php:79 +msgid "Logged out." msgstr "" -#: ../../include/page_widgets.php:39 ../../mod/webpages.php:122 -#: ../../mod/blocks.php:97 ../../mod/layouts.php:116 -msgid "View" +#: ../../include/auth.php:198 +msgid "Failed authentication" msgstr "" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:124 -msgid "Actions" +#: ../../include/auth.php:213 ../../mod/openid.php:188 +msgid "Login failed." msgstr "" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:125 -msgid "Page Link" +#: ../../include/bb2diaspora.php:433 ../../include/event.php:11 +msgid "l F d, Y \\@ g:i A" msgstr "" -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:126 -msgid "Title" +#: ../../include/bb2diaspora.php:439 ../../include/event.php:20 +msgid "Starts:" msgstr "" -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:127 -msgid "Created" +#: ../../include/bb2diaspora.php:447 ../../include/event.php:30 +msgid "Finishes:" msgstr "" -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:128 -msgid "Edited" +#: ../../include/bb2diaspora.php:455 ../../include/event.php:40 +#: ../../include/identity.php:726 ../../mod/directory.php:156 +#: ../../mod/dirprofile.php:105 ../../mod/events.php:474 +msgid "Location:" msgstr "" -#: ../../include/photos.php:51 ../../include/photo/photo_driver.php:643 -#: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 -#: ../../mod/profile_photo.php:421 ../../mod/photos.php:91 -#: ../../mod/photos.php:655 ../../mod/photos.php:677 -msgid "Profile Photos" +#: ../../include/bbcode.php:128 ../../include/bbcode.php:642 +#: ../../include/bbcode.php:645 ../../include/bbcode.php:650 +#: ../../include/bbcode.php:653 ../../include/bbcode.php:656 +#: ../../include/bbcode.php:659 ../../include/bbcode.php:664 +#: ../../include/bbcode.php:667 ../../include/bbcode.php:672 +#: ../../include/bbcode.php:675 ../../include/bbcode.php:678 +#: ../../include/bbcode.php:681 +msgid "Image/photo" msgstr "" -#: ../../include/photos.php:89 +#: ../../include/bbcode.php:163 ../../include/bbcode.php:692 +msgid "Encrypted content" +msgstr "" + +#: ../../include/bbcode.php:179 +msgid "QR code" +msgstr "" + +#: ../../include/bbcode.php:228 #, php-format -msgid "Image exceeds website size limit of %lu bytes" +msgid "%1$s wrote the following %2$s %3$s" msgstr "" -#: ../../include/photos.php:96 -msgid "Image file is empty." +#: ../../include/bbcode.php:230 +msgid "post" msgstr "" -#: ../../include/photos.php:123 ../../mod/profile_photo.php:216 -msgid "Unable to process image" +#: ../../include/bbcode.php:610 ../../include/bbcode.php:630 +msgid "$1 wrote:" msgstr "" -#: ../../include/photos.php:186 -msgid "Photo storage failed." +#: ../../include/items.php:306 ../../mod/profperm.php:23 +#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:63 +#: ../../index.php:361 +msgid "Permission denied" msgstr "" -#: ../../include/photos.php:315 ../../mod/photos.php:693 -#: ../../mod/photos.php:1190 -msgid "Upload New Photos" +#: ../../include/items.php:830 +msgid "(Unknown)" msgstr "" -#: ../../include/dba/dba_driver.php:50 +#: ../../include/items.php:3583 ../../mod/admin.php:159 +#: ../../mod/admin.php:921 ../../mod/admin.php:1124 ../../mod/display.php:32 +#: ../../mod/filestorage.php:18 ../../mod/home.php:65 ../../mod/thing.php:78 +#: ../../mod/viewsrc.php:18 +msgid "Item not found." +msgstr "" + +#: ../../include/items.php:4007 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." +msgstr "" + +#: ../../include/items.php:4022 +msgid "Collection is empty." +msgstr "" + +#: ../../include/items.php:4029 #, php-format -msgid "Cannot locate DNS info for database server '%s'" +msgid "Collection: %s" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "" - -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "" - -#: ../../include/plugin.php:486 ../../include/plugin.php:488 -msgid "Click here to upgrade." -msgstr "" - -#: ../../include/plugin.php:494 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" - -#: ../../include/plugin.php:499 -msgid "This action is not available under your subscription plan." -msgstr "" - -#: ../../include/acl_selectors.php:238 -msgid "Visible to everybody" -msgstr "" - -#: ../../include/acl_selectors.php:239 -msgid "Show" -msgstr "" - -#: ../../include/acl_selectors.php:240 -msgid "Don't show" -msgstr "" - -#: ../../include/acl_selectors.php:246 ../../mod/filestorage.php:126 -#: ../../mod/photos.php:606 ../../mod/photos.php:949 ../../mod/chat.php:209 -msgid "Permissions" -msgstr "" - -#: ../../include/account.php:23 -msgid "Not a valid email address" -msgstr "" - -#: ../../include/account.php:25 -msgid "Your email domain is not among those allowed on this site" -msgstr "" - -#: ../../include/account.php:31 -msgid "Your email address is already registered at this site." -msgstr "" - -#: ../../include/account.php:64 -msgid "An invitation is required." -msgstr "" - -#: ../../include/account.php:68 -msgid "Invitation could not be verified." -msgstr "" - -#: ../../include/account.php:119 -msgid "Please enter the required information." -msgstr "" - -#: ../../include/account.php:187 -msgid "Failed to store account information." -msgstr "" - -#: ../../include/account.php:273 +#: ../../include/items.php:4040 #, php-format -msgid "Registration request at %s" +msgid "Connection: %s" msgstr "" -#: ../../include/account.php:275 ../../include/account.php:302 -#: ../../include/account.php:359 -msgid "Administrator" +#: ../../include/items.php:4043 +msgid "Connection not found." msgstr "" -#: ../../include/account.php:297 -msgid "your registration password" -msgstr "" - -#: ../../include/account.php:300 ../../include/account.php:357 +#: ../../include/bookmarks.php:42 #, php-format -msgid "Registration details for %s" +msgid "%1$s's bookmarks" msgstr "" -#: ../../include/account.php:366 -msgid "Account approved." +#: ../../include/chat.php:10 +msgid "Missing room name" msgstr "" -#: ../../include/account.php:400 -#, php-format -msgid "Registration revoked for %s" +#: ../../include/chat.php:19 +msgid "Duplicate room name" msgstr "" -#: ../../include/Contact.php:123 -msgid "New window" +#: ../../include/chat.php:68 ../../include/chat.php:76 +msgid "Invalid room specifier." msgstr "" -#: ../../include/Contact.php:124 -msgid "Open the selected location in a different window or browser tab" +#: ../../include/chat.php:105 +msgid "Room not found." +msgstr "" + +#: ../../include/chat.php:126 +msgid "Room is full" +msgstr "" + +#: ../../include/taxonomy.php:210 +msgid "Tags" +msgstr "" + +#: ../../include/taxonomy.php:227 +msgid "Keywords" +msgstr "" + +#: ../../include/taxonomy.php:252 +msgid "have" +msgstr "" + +#: ../../include/taxonomy.php:252 +msgid "has" +msgstr "" + +#: ../../include/taxonomy.php:253 +msgid "want" +msgstr "" + +#: ../../include/taxonomy.php:253 +msgid "wants" +msgstr "" + +#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:205 +msgid "like" +msgstr "" + +#: ../../include/taxonomy.php:254 +msgid "likes" +msgstr "" + +#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:206 +msgid "dislike" +msgstr "" + +#: ../../include/taxonomy.php:255 +msgid "dislikes" +msgstr "" + +#: ../../include/comanche.php:35 ../../view/theme/apw/php/config.php:185 +#: ../../view/theme/redbasic/php/config.php:84 +msgid "Default" msgstr "" #: ../../include/contact_selectors.php:30 @@ -2188,37 +794,6 @@ msgstr "" msgid "MySpace" msgstr "" -#: ../../include/apps.php:109 ../../include/identity.php:942 -#: ../../include/identity.php:1031 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "" - -#: ../../include/apps.php:151 ../../mod/settings.php:79 -#: ../../mod/settings.php:541 -msgid "Update" -msgstr "" - -#: ../../include/apps.php:151 -msgid "Install" -msgstr "" - -#: ../../include/apps.php:231 ../../include/apps.php:279 -#: ../../mod/connedit.php:434 -msgid "Unknown" -msgstr "" - -#: ../../include/auth.php:79 -msgid "Logged out." -msgstr "" - -#: ../../include/auth.php:198 -msgid "Failed authentication" -msgstr "" - -#: ../../include/auth.php:213 ../../mod/openid.php:188 -msgid "Login failed." -msgstr "" - #: ../../include/text.php:320 msgid "prev" msgstr "" @@ -2258,10 +833,20 @@ msgstr[1] "" msgid "View Connections" msgstr "" +#: ../../include/text.php:815 ../../include/text.php:829 +#: ../../include/widgets.php:185 ../../mod/rbmark.php:28 +#: ../../mod/rbmark.php:98 ../../mod/filer.php:50 +msgid "Save" +msgstr "" + #: ../../include/text.php:895 msgid "poke" msgstr "" +#: ../../include/text.php:895 ../../include/conversation.php:240 +msgid "poked" +msgstr "" + #: ../../include/text.php:896 msgid "ping" msgstr "" @@ -2502,6 +1087,28 @@ msgstr "" msgid "Select an alternate language" msgstr "" +#: ../../include/text.php:1705 ../../include/conversation.php:117 +#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 +#: ../../mod/tagger.php:45 ../../mod/like.php:111 +msgid "photo" +msgstr "" + +#: ../../include/text.php:1708 ../../include/conversation.php:120 +#: ../../mod/tagger.php:49 +msgid "event" +msgstr "" + +#: ../../include/text.php:1711 ../../include/conversation.php:145 +#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 +#: ../../mod/tagger.php:53 ../../mod/like.php:111 +msgid "status" +msgstr "" + +#: ../../include/text.php:1713 ../../include/conversation.php:147 +#: ../../mod/tagger.php:55 +msgid "comment" +msgstr "" + #: ../../include/text.php:1718 msgid "activity" msgstr "" @@ -2526,24 +1133,808 @@ msgstr "" msgid "Pages" msgstr "" -#: ../../include/chat.php:10 -msgid "Missing room name" +#: ../../include/contact_widgets.php:14 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:445 +msgid "Advanced" msgstr "" -#: ../../include/chat.php:19 -msgid "Duplicate room name" +#: ../../include/contact_widgets.php:22 +msgid "Find Channels" msgstr "" -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" msgstr "" -#: ../../include/chat.php:105 -msgid "Room not found." +#: ../../include/contact_widgets.php:24 +msgid "Connect/Follow" msgstr "" -#: ../../include/chat.php:126 -msgid "Room is full" +#: ../../include/contact_widgets.php:25 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "" + +#: ../../include/contact_widgets.php:26 ../../mod/connections.php:391 +#: ../../mod/directory.php:206 ../../mod/directory.php:211 +msgid "Find" +msgstr "" + +#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 +msgid "Channel Suggestions" +msgstr "" + +#: ../../include/contact_widgets.php:29 +msgid "Random Profile" +msgstr "" + +#: ../../include/contact_widgets.php:30 +msgid "Invite Friends" +msgstr "" + +#: ../../include/contact_widgets.php:32 +msgid "Exammple: name=fred and country=iceland" +msgstr "" + +#: ../../include/contact_widgets.php:33 +msgid "Advanced Find" +msgstr "" + +#: ../../include/contact_widgets.php:58 ../../include/features.php:66 +#: ../../include/widgets.php:295 +msgid "Saved Folders" +msgstr "" + +#: ../../include/contact_widgets.php:61 ../../include/contact_widgets.php:95 +#: ../../include/widgets.php:298 +msgid "Everything" +msgstr "" + +#: ../../include/contact_widgets.php:92 ../../include/widgets.php:29 +msgid "Categories" +msgstr "" + +#: ../../include/contact_widgets.php:125 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/contact_widgets.php:130 ../../include/ItemObject.php:312 +#: ../../include/js_strings.php:7 +msgid "show more" +msgstr "" + +#: ../../include/conversation.php:123 +msgid "channel" +msgstr "" + +#: ../../include/conversation.php:161 ../../mod/like.php:142 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "" + +#: ../../include/conversation.php:164 ../../mod/like.php:144 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "" + +#: ../../include/conversation.php:201 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "" + +#: ../../include/conversation.php:236 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: ../../include/conversation.php:258 ../../mod/mood.php:63 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "" + +#: ../../include/conversation.php:631 ../../include/ItemObject.php:114 +msgid "Select" +msgstr "" + +#: ../../include/conversation.php:639 ../../include/ItemObject.php:89 +#: ../../mod/photos.php:846 +msgid "Private Message" +msgstr "" + +#: ../../include/conversation.php:646 ../../include/ItemObject.php:182 +msgid "Message is verified" +msgstr "" + +#: ../../include/conversation.php:666 +#, php-format +msgid "View %s's profile @ %s" +msgstr "" + +#: ../../include/conversation.php:680 +msgid "Categories:" +msgstr "" + +#: ../../include/conversation.php:681 +msgid "Filed under:" +msgstr "" + +#: ../../include/conversation.php:690 ../../include/ItemObject.php:247 +#, php-format +msgid " from %s" +msgstr "" + +#: ../../include/conversation.php:693 ../../include/ItemObject.php:250 +#, php-format +msgid "last edited: %s" +msgstr "" + +#: ../../include/conversation.php:694 ../../include/ItemObject.php:251 +#, php-format +msgid "Expires: %s" +msgstr "" + +#: ../../include/conversation.php:709 +msgid "View in context" +msgstr "" + +#: ../../include/conversation.php:711 ../../include/conversation.php:1127 +#: ../../include/ItemObject.php:290 ../../mod/editblock.php:120 +#: ../../mod/editlayout.php:115 ../../mod/editpost.php:121 +#: ../../mod/editwebpage.php:152 ../../mod/mail.php:222 ../../mod/mail.php:336 +#: ../../mod/photos.php:974 +msgid "Please wait" +msgstr "" + +#: ../../include/conversation.php:838 +msgid "remove" +msgstr "" + +#: ../../include/conversation.php:842 +msgid "Loading..." +msgstr "" + +#: ../../include/conversation.php:843 +msgid "Delete Selected Items" +msgstr "" + +#: ../../include/conversation.php:934 +msgid "View Source" +msgstr "" + +#: ../../include/conversation.php:935 +msgid "Follow Thread" +msgstr "" + +#: ../../include/conversation.php:936 +msgid "View Status" +msgstr "" + +#: ../../include/conversation.php:937 ../../include/nav.php:81 +#: ../../mod/connedit.php:351 ../../mod/connedit.php:465 +msgid "View Profile" +msgstr "" + +#: ../../include/conversation.php:938 +msgid "View Photos" +msgstr "" + +#: ../../include/conversation.php:939 +msgid "Matrix Activity" +msgstr "" + +#: ../../include/conversation.php:940 +msgid "Edit Contact" +msgstr "" + +#: ../../include/conversation.php:941 +msgid "Send PM" +msgstr "" + +#: ../../include/conversation.php:998 +#, php-format +msgid "%s likes this." +msgstr "" + +#: ../../include/conversation.php:998 +#, php-format +msgid "%s doesn't like this." +msgstr "" + +#: ../../include/conversation.php:1002 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1004 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1010 +msgid "and" +msgstr "" + +#: ../../include/conversation.php:1013 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1014 +#, php-format +msgid "%s like this." +msgstr "" + +#: ../../include/conversation.php:1014 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: ../../include/conversation.php:1071 +msgid "Visible to everybody" +msgstr "" + +#: ../../include/conversation.php:1072 ../../mod/mail.php:171 +#: ../../mod/mail.php:269 +msgid "Please enter a link URL:" +msgstr "" + +#: ../../include/conversation.php:1073 +msgid "Please enter a video link/URL:" +msgstr "" + +#: ../../include/conversation.php:1074 +msgid "Please enter an audio link/URL:" +msgstr "" + +#: ../../include/conversation.php:1075 +msgid "Tag term:" +msgstr "" + +#: ../../include/conversation.php:1076 ../../mod/filer.php:49 +msgid "Save to Folder:" +msgstr "" + +#: ../../include/conversation.php:1077 +msgid "Where are you right now?" +msgstr "" + +#: ../../include/conversation.php:1078 ../../mod/editpost.php:52 +#: ../../mod/mail.php:172 ../../mod/mail.php:270 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "" + +#: ../../include/conversation.php:1102 ../../mod/layouts.php:113 +#: ../../mod/photos.php:973 +msgid "Share" +msgstr "" + +#: ../../include/conversation.php:1104 ../../mod/editwebpage.php:139 +msgid "Page link title" +msgstr "" + +#: ../../include/conversation.php:1107 +msgid "Post as" +msgstr "" + +#: ../../include/conversation.php:1108 ../../mod/editblock.php:112 +#: ../../mod/editlayout.php:107 ../../mod/editpost.php:113 +#: ../../mod/editwebpage.php:144 ../../mod/mail.php:219 ../../mod/mail.php:332 +msgid "Upload photo" +msgstr "" + +#: ../../include/conversation.php:1109 +msgid "upload photo" +msgstr "" + +#: ../../include/conversation.php:1110 ../../mod/editblock.php:113 +#: ../../mod/editlayout.php:108 ../../mod/editpost.php:114 +#: ../../mod/editwebpage.php:145 ../../mod/mail.php:220 ../../mod/mail.php:333 +msgid "Attach file" +msgstr "" + +#: ../../include/conversation.php:1111 +msgid "attach file" +msgstr "" + +#: ../../include/conversation.php:1112 ../../mod/editblock.php:114 +#: ../../mod/editlayout.php:109 ../../mod/editpost.php:115 +#: ../../mod/editwebpage.php:146 ../../mod/mail.php:221 ../../mod/mail.php:334 +msgid "Insert web link" +msgstr "" + +#: ../../include/conversation.php:1113 +msgid "web link" +msgstr "" + +#: ../../include/conversation.php:1114 +msgid "Insert video link" +msgstr "" + +#: ../../include/conversation.php:1115 +msgid "video link" +msgstr "" + +#: ../../include/conversation.php:1116 +msgid "Insert audio link" +msgstr "" + +#: ../../include/conversation.php:1117 +msgid "audio link" +msgstr "" + +#: ../../include/conversation.php:1118 ../../mod/editblock.php:118 +#: ../../mod/editlayout.php:113 ../../mod/editpost.php:119 +#: ../../mod/editwebpage.php:150 +msgid "Set your location" +msgstr "" + +#: ../../include/conversation.php:1119 +msgid "set location" +msgstr "" + +#: ../../include/conversation.php:1120 ../../mod/editblock.php:119 +#: ../../mod/editlayout.php:114 ../../mod/editpost.php:120 +#: ../../mod/editwebpage.php:151 +msgid "Clear browser location" +msgstr "" + +#: ../../include/conversation.php:1121 +msgid "clear location" +msgstr "" + +#: ../../include/conversation.php:1123 ../../mod/editblock.php:132 +#: ../../mod/editlayout.php:126 ../../mod/editpost.php:132 +#: ../../mod/editwebpage.php:167 +msgid "Set title" +msgstr "" + +#: ../../include/conversation.php:1126 ../../mod/editblock.php:135 +#: ../../mod/editlayout.php:129 ../../mod/editpost.php:134 +#: ../../mod/editwebpage.php:169 +msgid "Categories (comma-separated list)" +msgstr "" + +#: ../../include/conversation.php:1128 ../../mod/editblock.php:121 +#: ../../mod/editlayout.php:116 ../../mod/editpost.php:122 +#: ../../mod/editwebpage.php:153 +msgid "Permission settings" +msgstr "" + +#: ../../include/conversation.php:1129 +msgid "permissions" +msgstr "" + +#: ../../include/conversation.php:1136 ../../mod/editblock.php:129 +#: ../../mod/editlayout.php:123 ../../mod/editpost.php:129 +#: ../../mod/editwebpage.php:162 +msgid "Public post" +msgstr "" + +#: ../../include/conversation.php:1138 ../../mod/editblock.php:136 +#: ../../mod/editlayout.php:130 ../../mod/editpost.php:135 +#: ../../mod/editwebpage.php:170 +msgid "Example: bob@example.com, mary@example.com" +msgstr "" + +#: ../../include/conversation.php:1151 ../../mod/editblock.php:146 +#: ../../mod/editlayout.php:140 ../../mod/editpost.php:146 +#: ../../mod/editwebpage.php:180 ../../mod/mail.php:226 ../../mod/mail.php:339 +msgid "Set expiration date" +msgstr "" + +#: ../../include/conversation.php:1153 ../../include/ItemObject.php:591 +#: ../../mod/editpost.php:148 ../../mod/mail.php:228 ../../mod/mail.php:341 +msgid "Encrypt text" +msgstr "" + +#: ../../include/conversation.php:1155 ../../mod/editpost.php:150 +msgid "OK" +msgstr "" + +#: ../../include/conversation.php:1156 ../../mod/settings.php:516 +#: ../../mod/settings.php:542 ../../mod/editpost.php:151 +#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117 ../../mod/tagrm.php:11 +#: ../../mod/tagrm.php:94 +msgid "Cancel" +msgstr "" + +#: ../../include/conversation.php:1392 +msgid "Discover" +msgstr "" + +#: ../../include/conversation.php:1395 +msgid "Imported public streams" +msgstr "" + +#: ../../include/conversation.php:1400 +msgid "Commented Order" +msgstr "" + +#: ../../include/conversation.php:1403 +msgid "Sort by Comment Date" +msgstr "" + +#: ../../include/conversation.php:1407 +msgid "Posted Order" +msgstr "" + +#: ../../include/conversation.php:1410 +msgid "Sort by Post Date" +msgstr "" + +#: ../../include/conversation.php:1415 ../../include/widgets.php:81 +msgid "Personal" +msgstr "" + +#: ../../include/conversation.php:1418 +msgid "Posts that mention or involve you" +msgstr "" + +#: ../../include/conversation.php:1424 ../../mod/connections.php:211 +#: ../../mod/connections.php:224 ../../mod/menu.php:61 +msgid "New" +msgstr "" + +#: ../../include/conversation.php:1427 +msgid "Activity Stream - by date" +msgstr "" + +#: ../../include/conversation.php:1433 +msgid "Starred" +msgstr "" + +#: ../../include/conversation.php:1436 +msgid "Favourite Posts" +msgstr "" + +#: ../../include/conversation.php:1443 +msgid "Spam" +msgstr "" + +#: ../../include/conversation.php:1446 +msgid "Posts flagged as SPAM" +msgstr "" + +#: ../../include/conversation.php:1480 ../../mod/admin.php:890 +msgid "Channel" +msgstr "" + +#: ../../include/conversation.php:1483 +msgid "Status Messages and Posts" +msgstr "" + +#: ../../include/conversation.php:1492 +msgid "About" +msgstr "" + +#: ../../include/conversation.php:1495 +msgid "Profile Details" +msgstr "" + +#: ../../include/conversation.php:1513 +msgid "Files and Storage" +msgstr "" + +#: ../../include/conversation.php:1522 ../../include/conversation.php:1525 +msgid "Chatrooms" +msgstr "" + +#: ../../include/conversation.php:1535 +msgid "Events and Calendar" +msgstr "" + +#: ../../include/conversation.php:1543 +msgid "Saved Bookmarks" +msgstr "" + +#: ../../include/conversation.php:1554 +msgid "Manage Webpages" +msgstr "" + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "" + +#: ../../include/datetime.php:152 ../../include/datetime.php:284 +msgid "year" +msgstr "" + +#: ../../include/datetime.php:157 ../../include/datetime.php:285 +msgid "month" +msgstr "" + +#: ../../include/datetime.php:162 ../../include/datetime.php:287 +msgid "day" +msgstr "" + +#: ../../include/datetime.php:275 +msgid "never" +msgstr "" + +#: ../../include/datetime.php:281 +msgid "less than a second ago" +msgstr "" + +#: ../../include/datetime.php:284 +msgid "years" +msgstr "" + +#: ../../include/datetime.php:285 +msgid "months" +msgstr "" + +#: ../../include/datetime.php:286 +msgid "week" +msgstr "" + +#: ../../include/datetime.php:286 +msgid "weeks" +msgstr "" + +#: ../../include/datetime.php:287 +msgid "days" +msgstr "" + +#: ../../include/datetime.php:288 +msgid "hour" +msgstr "" + +#: ../../include/datetime.php:288 +msgid "hours" +msgstr "" + +#: ../../include/datetime.php:289 +msgid "minute" +msgstr "" + +#: ../../include/datetime.php:289 +msgid "minutes" +msgstr "" + +#: ../../include/datetime.php:290 +msgid "second" +msgstr "" + +#: ../../include/datetime.php:290 +msgid "seconds" +msgstr "" + +#: ../../include/datetime.php:299 +#, php-format +msgid "%1$d %2$s ago" +msgstr "" + +#: ../../include/dir_fns.php:36 +msgid "Sort Options" +msgstr "" + +#: ../../include/dir_fns.php:37 +msgid "Alphabetic" +msgstr "" + +#: ../../include/dir_fns.php:38 +msgid "Reverse Alphabetic" +msgstr "" + +#: ../../include/dir_fns.php:39 +msgid "Newest to Oldest" +msgstr "" + +#: ../../include/dir_fns.php:51 +msgid "Enable Safe Search" +msgstr "" + +#: ../../include/dir_fns.php:53 +msgid "Disable Safe Search" +msgstr "" + +#: ../../include/dir_fns.php:55 +msgid "Safe Mode" +msgstr "" + +#: ../../include/enotify.php:41 +msgid "Red Matrix Notification" +msgstr "" + +#: ../../include/enotify.php:42 +msgid "redmatrix" +msgstr "" + +#: ../../include/enotify.php:44 +msgid "Thank You," +msgstr "" + +#: ../../include/enotify.php:46 +#, php-format +msgid "%s Administrator" +msgstr "" + +#: ../../include/enotify.php:81 +#, php-format +msgid "%s " +msgstr "" + +#: ../../include/enotify.php:85 +#, php-format +msgid "[Red:Notify] New mail received at %s" +msgstr "" + +#: ../../include/enotify.php:87 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "" + +#: ../../include/enotify.php:88 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "" + +#: ../../include/enotify.php:88 +msgid "a private message" +msgstr "" + +#: ../../include/enotify.php:89 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "" + +#: ../../include/enotify.php:144 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +msgstr "" + +#: ../../include/enotify.php:152 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "" + +#: ../../include/enotify.php:161 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "" + +#: ../../include/enotify.php:172 +#, php-format +msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" +msgstr "" + +#: ../../include/enotify.php:173 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." +msgstr "" + +#: ../../include/enotify.php:176 ../../include/enotify.php:191 +#: ../../include/enotify.php:217 ../../include/enotify.php:236 +#: ../../include/enotify.php:250 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "" + +#: ../../include/enotify.php:182 +#, php-format +msgid "[Red:Notify] %s posted to your profile wall" +msgstr "" + +#: ../../include/enotify.php:184 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "" + +#: ../../include/enotify.php:186 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "" + +#: ../../include/enotify.php:210 +#, php-format +msgid "[Red:Notify] %s tagged you" +msgstr "" + +#: ../../include/enotify.php:211 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "" + +#: ../../include/enotify.php:212 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgstr "" + +#: ../../include/enotify.php:225 +#, php-format +msgid "[Red:Notify] %1$s poked you" +msgstr "" + +#: ../../include/enotify.php:226 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "" + +#: ../../include/enotify.php:227 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +msgstr "" + +#: ../../include/enotify.php:243 +#, php-format +msgid "[Red:Notify] %s tagged your post" +msgstr "" + +#: ../../include/enotify.php:244 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "" + +#: ../../include/enotify.php:245 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "" + +#: ../../include/enotify.php:257 +msgid "[Red:Notify] Introduction received" +msgstr "" + +#: ../../include/enotify.php:258 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgstr "" + +#: ../../include/enotify.php:259 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "" + +#: ../../include/enotify.php:263 ../../include/enotify.php:282 +#, php-format +msgid "You may visit their profile at %s" +msgstr "" + +#: ../../include/enotify.php:265 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "" + +#: ../../include/enotify.php:272 +msgid "[Red:Notify] Friend suggestion received" +msgstr "" + +#: ../../include/enotify.php:273 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "" + +#: ../../include/enotify.php:274 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s." +msgstr "" + +#: ../../include/enotify.php:280 +msgid "Name:" +msgstr "" + +#: ../../include/enotify.php:281 +msgid "Photo:" +msgstr "" + +#: ../../include/enotify.php:284 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." msgstr "" #: ../../include/features.php:23 @@ -2630,6 +2021,11 @@ msgstr "" msgid "Allow previewing posts and comments before publishing them" msgstr "" +#: ../../include/features.php:43 ../../include/widgets.php:502 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "" + #: ../../include/features.php:43 msgid "Automatically import channel content from other channels or feeds" msgstr "" @@ -2663,6 +2059,10 @@ msgstr "" msgid "Enable widget to display Network posts only from selected collections" msgstr "" +#: ../../include/features.php:52 ../../include/widgets.php:264 +msgid "Saved Searches" +msgstr "" + #: ../../include/features.php:52 msgid "Save search terms for re-use" msgstr "" @@ -2755,229 +2155,71 @@ msgstr "" msgid "Provide a personal tag cloud on your channel page" msgstr "" -#: ../../include/permissions.php:13 -msgid "Can view my \"public\" stream and posts" +#: ../../include/follow.php:23 +msgid "Channel is blocked on this site." msgstr "" -#: ../../include/permissions.php:14 -msgid "Can view my \"public\" channel profile" +#: ../../include/follow.php:28 +msgid "Channel location missing." msgstr "" -#: ../../include/permissions.php:15 -msgid "Can view my \"public\" photo albums" +#: ../../include/follow.php:54 +msgid "Response from remote channel was incomplete." msgstr "" -#: ../../include/permissions.php:16 -msgid "Can view my \"public\" address book" +#: ../../include/follow.php:85 +msgid "Channel was deleted and no longer exists." msgstr "" -#: ../../include/permissions.php:17 -msgid "Can view my \"public\" file storage" +#: ../../include/follow.php:132 +msgid "Channel discovery failed." msgstr "" -#: ../../include/permissions.php:18 -msgid "Can view my \"public\" pages" +#: ../../include/follow.php:149 +msgid "local account not found." msgstr "" -#: ../../include/permissions.php:21 -msgid "Can send me their channel stream and posts" +#: ../../include/follow.php:158 +msgid "Cannot connect to yourself." msgstr "" -#: ../../include/permissions.php:22 -msgid "Can post on my channel page (\"wall\")" +#: ../../include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." msgstr "" -#: ../../include/permissions.php:23 -msgid "Can comment on my posts" +#: ../../include/group.php:223 +msgid "Default privacy group for new contacts" msgstr "" -#: ../../include/permissions.php:24 -msgid "Can send me private mail messages" +#: ../../include/group.php:242 ../../mod/admin.php:762 +msgid "All Channels" msgstr "" -#: ../../include/permissions.php:25 -msgid "Can post photos to my photo albums" +#: ../../include/group.php:264 +msgid "edit" msgstr "" -#: ../../include/permissions.php:26 -msgid "Can forward to all my channel contacts via post @mentions" +#: ../../include/group.php:285 +msgid "Collections" msgstr "" -#: ../../include/permissions.php:26 -msgid "Advanced - useful for creating group forum channels" +#: ../../include/group.php:286 +msgid "Edit collection" msgstr "" -#: ../../include/permissions.php:27 -msgid "Can chat with me (when available)" +#: ../../include/group.php:287 +msgid "Create a new collection" msgstr "" -#: ../../include/permissions.php:28 -msgid "Can write to my \"public\" file storage" +#: ../../include/group.php:288 +msgid "Channels not in any collection" msgstr "" -#: ../../include/permissions.php:29 -msgid "Can edit my \"public\" pages" -msgstr "" - -#: ../../include/permissions.php:31 -msgid "Can source my \"public\" posts in derived channels" -msgstr "" - -#: ../../include/permissions.php:31 -msgid "Somewhat advanced - very useful in open communities" -msgstr "" - -#: ../../include/permissions.php:33 -msgid "Can administer my channel resources" -msgstr "" - -#: ../../include/permissions.php:33 -msgid "Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "" - -#: ../../include/zot.php:587 -msgid "Invalid data packet" -msgstr "" - -#: ../../include/zot.php:597 -msgid "Unable to verify channel signature" -msgstr "" - -#: ../../include/zot.php:794 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "" - -#: ../../include/contact_widgets.php:14 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:445 -msgid "Advanced" -msgstr "" - -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "" - -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "" - -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "" - -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "" - -#: ../../include/contact_widgets.php:26 ../../mod/directory.php:206 -#: ../../mod/directory.php:211 ../../mod/connections.php:391 -msgid "Find" -msgstr "" - -#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 -msgid "Channel Suggestions" -msgstr "" - -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "" - -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "" - -#: ../../include/contact_widgets.php:32 -msgid "Exammple: name=fred and country=iceland" -msgstr "" - -#: ../../include/contact_widgets.php:33 -msgid "Advanced Find" -msgstr "" - -#: ../../include/contact_widgets.php:125 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "" - -#: ../../include/datetime.php:152 ../../include/datetime.php:284 -msgid "year" -msgstr "" - -#: ../../include/datetime.php:157 ../../include/datetime.php:285 -msgid "month" -msgstr "" - -#: ../../include/datetime.php:162 ../../include/datetime.php:287 -msgid "day" -msgstr "" - -#: ../../include/datetime.php:275 -msgid "never" -msgstr "" - -#: ../../include/datetime.php:281 -msgid "less than a second ago" -msgstr "" - -#: ../../include/datetime.php:284 -msgid "years" -msgstr "" - -#: ../../include/datetime.php:285 -msgid "months" -msgstr "" - -#: ../../include/datetime.php:286 -msgid "week" -msgstr "" - -#: ../../include/datetime.php:286 -msgid "weeks" -msgstr "" - -#: ../../include/datetime.php:287 -msgid "days" -msgstr "" - -#: ../../include/datetime.php:288 -msgid "hour" -msgstr "" - -#: ../../include/datetime.php:288 -msgid "hours" -msgstr "" - -#: ../../include/datetime.php:289 -msgid "minute" -msgstr "" - -#: ../../include/datetime.php:289 -msgid "minutes" -msgstr "" - -#: ../../include/datetime.php:290 -msgid "second" -msgstr "" - -#: ../../include/datetime.php:290 -msgid "seconds" -msgstr "" - -#: ../../include/datetime.php:299 -#, php-format -msgid "%1$d %2$s ago" +#: ../../include/group.php:290 ../../include/widgets.php:265 +msgid "add" msgstr "" #: ../../include/identity.php:30 ../../mod/item.php:1244 @@ -3017,14 +2259,19 @@ msgstr "" msgid "Default Profile" msgstr "" +#: ../../include/identity.php:342 ../../include/profile_selectors.php:42 +#: ../../include/widgets.php:399 ../../mod/connedit.php:431 +msgid "Friends" +msgstr "" + #: ../../include/identity.php:509 msgid "Requested channel is not available." msgstr "" -#: ../../include/identity.php:557 ../../mod/webpages.php:8 -#: ../../mod/connect.php:13 ../../mod/blocks.php:10 -#: ../../mod/filestorage.php:40 ../../mod/achievements.php:8 -#: ../../mod/layouts.php:8 ../../mod/profile.php:16 +#: ../../include/identity.php:557 ../../mod/achievements.php:8 +#: ../../mod/profile.php:16 ../../mod/blocks.php:10 ../../mod/connect.php:13 +#: ../../mod/filestorage.php:40 ../../mod/layouts.php:8 +#: ../../mod/webpages.php:8 msgid "Requested profile is not available." msgstr "" @@ -3210,6 +2457,171 @@ msgstr "" msgid "School/education:" msgstr "" +#: ../../include/ItemObject.php:118 +msgid "save to folder" +msgstr "" + +#: ../../include/ItemObject.php:130 ../../include/ItemObject.php:142 +msgid "View all" +msgstr "" + +#: ../../include/ItemObject.php:134 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/ItemObject.php:139 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/ItemObject.php:167 +msgid "add star" +msgstr "" + +#: ../../include/ItemObject.php:168 +msgid "remove star" +msgstr "" + +#: ../../include/ItemObject.php:169 +msgid "toggle star status" +msgstr "" + +#: ../../include/ItemObject.php:173 +msgid "starred" +msgstr "" + +#: ../../include/ItemObject.php:190 +msgid "add tag" +msgstr "" + +#: ../../include/ItemObject.php:205 ../../mod/photos.php:971 +msgid "I like this (toggle)" +msgstr "" + +#: ../../include/ItemObject.php:206 ../../mod/photos.php:972 +msgid "I don't like this (toggle)" +msgstr "" + +#: ../../include/ItemObject.php:208 +msgid "Share this" +msgstr "" + +#: ../../include/ItemObject.php:208 +msgid "share" +msgstr "" + +#: ../../include/ItemObject.php:232 ../../include/ItemObject.php:233 +#, php-format +msgid "View %s's profile - %s" +msgstr "" + +#: ../../include/ItemObject.php:234 +msgid "to" +msgstr "" + +#: ../../include/ItemObject.php:235 +msgid "via" +msgstr "" + +#: ../../include/ItemObject.php:236 +msgid "Wall-to-Wall" +msgstr "" + +#: ../../include/ItemObject.php:237 +msgid "via Wall-To-Wall:" +msgstr "" + +#: ../../include/ItemObject.php:271 +msgid "Bookmark Links" +msgstr "" + +#: ../../include/ItemObject.php:279 +msgctxt "noun" +msgid "Likes" +msgstr "" + +#: ../../include/ItemObject.php:280 +msgctxt "noun" +msgid "Dislikes" +msgstr "" + +#: ../../include/ItemObject.php:311 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/ItemObject.php:576 ../../mod/photos.php:990 +#: ../../mod/photos.php:1077 +msgid "This is you" +msgstr "" + +#: ../../include/ItemObject.php:578 ../../include/js_strings.php:6 +#: ../../mod/photos.php:992 ../../mod/photos.php:1079 +msgid "Comment" +msgstr "" + +#: ../../include/ItemObject.php:579 ../../mod/mood.php:142 +#: ../../mod/admin.php:441 ../../mod/admin.php:750 ../../mod/admin.php:884 +#: ../../mod/admin.php:1017 ../../mod/admin.php:1216 ../../mod/admin.php:1303 +#: ../../mod/poke.php:166 ../../mod/profiles.php:506 ../../mod/chat.php:177 +#: ../../mod/chat.php:211 ../../mod/connect.php:92 ../../mod/connedit.php:476 +#: ../../mod/settings.php:515 ../../mod/settings.php:627 +#: ../../mod/settings.php:655 ../../mod/settings.php:679 +#: ../../mod/settings.php:751 ../../mod/settings.php:929 +#: ../../mod/setup.php:307 ../../mod/setup.php:350 ../../mod/pdledit.php:58 +#: ../../mod/events.php:481 ../../mod/sources.php:104 +#: ../../mod/sources.php:138 ../../mod/appman.php:95 +#: ../../mod/filestorage.php:135 ../../mod/fsuggest.php:108 +#: ../../mod/group.php:81 ../../mod/thing.php:283 ../../mod/thing.php:326 +#: ../../mod/import.php:387 ../../mod/invite.php:156 ../../mod/mail.php:223 +#: ../../mod/mail.php:335 ../../mod/photos.php:565 ../../mod/photos.php:670 +#: ../../mod/photos.php:953 ../../mod/photos.php:993 ../../mod/photos.php:1080 +#: ../../view/theme/apw/php/config.php:256 +#: ../../view/theme/blogga/php/config.php:67 +#: ../../view/theme/blogga/view/theme/blog/config.php:67 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "" + +#: ../../include/ItemObject.php:580 +msgid "Bold" +msgstr "" + +#: ../../include/ItemObject.php:581 +msgid "Italic" +msgstr "" + +#: ../../include/ItemObject.php:582 +msgid "Underline" +msgstr "" + +#: ../../include/ItemObject.php:583 +msgid "Quote" +msgstr "" + +#: ../../include/ItemObject.php:584 +msgid "Code" +msgstr "" + +#: ../../include/ItemObject.php:585 +msgid "Image" +msgstr "" + +#: ../../include/ItemObject.php:586 +msgid "Link" +msgstr "" + +#: ../../include/ItemObject.php:587 +msgid "Video" +msgstr "" + #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "" @@ -3327,409 +2739,623 @@ msgstr "" msgid "timeago.numbers" msgstr "" -#: ../../mod/home.php:50 ../../mod/block.php:39 ../../mod/chanview.php:77 -#: ../../mod/page.php:47 ../../mod/wall_upload.php:28 -msgid "Channel not found." +#: ../../include/message.php:18 +msgid "No recipient provided." msgstr "" -#: ../../mod/home.php:89 +#: ../../include/message.php:23 +msgid "[no subject]" +msgstr "" + +#: ../../include/message.php:42 +msgid "Unable to determine sender." +msgstr "" + +#: ../../include/message.php:143 +msgid "Stored post could not be verified." +msgstr "" + +#: ../../include/nav.php:77 ../../include/nav.php:96 ../../boot.php:1450 +msgid "Logout" +msgstr "" + +#: ../../include/nav.php:77 ../../include/nav.php:96 +msgid "End this session" +msgstr "" + +#: ../../include/nav.php:80 ../../include/nav.php:130 +msgid "Home" +msgstr "" + +#: ../../include/nav.php:80 +msgid "Your posts and conversations" +msgstr "" + +#: ../../include/nav.php:81 +msgid "Your profile page" +msgstr "" + +#: ../../include/nav.php:83 +msgid "Edit Profiles" +msgstr "" + +#: ../../include/nav.php:83 +msgid "Manage/Edit profiles" +msgstr "" + +#: ../../include/nav.php:84 +msgid "Your photos" +msgstr "" + +#: ../../include/nav.php:85 +msgid "Your files" +msgstr "" + +#: ../../include/nav.php:86 +msgid "Your chatrooms" +msgstr "" + +#: ../../include/nav.php:87 +msgid "Your events" +msgstr "" + +#: ../../include/nav.php:88 +msgid "Your bookmarks" +msgstr "" + +#: ../../include/nav.php:90 +msgid "Your webpages" +msgstr "" + +#: ../../include/nav.php:94 +msgid "Sign in" +msgstr "" + +#: ../../include/nav.php:111 #, php-format -msgid "Welcome to %s" +msgid "%s - click to logout" msgstr "" -#: ../../mod/follow.php:25 -msgid "Channel added." +#: ../../include/nav.php:116 +msgid "Click to authenticate to your home hub" msgstr "" -#: ../../mod/dirprofile.php:9 ../../mod/search.php:13 -#: ../../mod/directory.php:15 ../../mod/photos.php:443 ../../mod/display.php:9 -#: ../../mod/viewconnections.php:17 -msgid "Public access denied." +#: ../../include/nav.php:130 +msgid "Home Page" msgstr "" -#: ../../mod/dirprofile.php:92 ../../mod/directory.php:143 -#: ../../mod/profiles.php:561 -msgid "Age: " +#: ../../include/nav.php:134 ../../mod/register.php:206 ../../boot.php:1427 +msgid "Register" msgstr "" -#: ../../mod/dirprofile.php:95 ../../mod/directory.php:146 -msgid "Gender: " +#: ../../include/nav.php:134 +msgid "Create an account" msgstr "" -#: ../../mod/dirprofile.php:108 -msgid "Status: " +#: ../../include/nav.php:139 +msgid "Help and documentation" msgstr "" -#: ../../mod/dirprofile.php:109 -msgid "Sexual Preference: " +#: ../../include/nav.php:142 ../../include/widgets.php:79 +#: ../../mod/apps.php:17 ../../mod/apps.php:36 +msgid "Apps" msgstr "" -#: ../../mod/dirprofile.php:111 -msgid "Homepage: " +#: ../../include/nav.php:142 +msgid "Applications, utilities, links, games" msgstr "" -#: ../../mod/dirprofile.php:112 -msgid "Hometown: " +#: ../../include/nav.php:144 +msgid "Search site content" msgstr "" -#: ../../mod/dirprofile.php:114 -msgid "About: " +#: ../../include/nav.php:147 +msgid "Channel Locator" msgstr "" -#: ../../mod/dirprofile.php:162 -msgid "Keywords: " +#: ../../include/nav.php:158 +msgid "Your matrix" msgstr "" -#: ../../mod/dirprofile.php:175 ../../mod/mitem.php:78 ../../mod/xchan.php:27 -#: ../../mod/menu.php:120 -msgid "Not found." +#: ../../include/nav.php:159 +msgid "Mark all matrix notifications seen" msgstr "" -#: ../../mod/acl.php:239 -msgid "network" +#: ../../include/nav.php:161 +msgid "Channel home" msgstr "" -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" +#: ../../include/nav.php:162 +msgid "Mark all channel notifications seen" msgstr "" -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" +#: ../../include/nav.php:165 ../../include/nav.php:188 +#: ../../mod/connections.php:385 +msgid "Connections" msgstr "" -#: ../../mod/api.php:89 -msgid "Please login to continue." +#: ../../include/nav.php:168 +msgid "Notices" 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?" +#: ../../include/nav.php:168 +msgid "Notifications" msgstr "" -#: ../../mod/api.php:105 ../../mod/settings.php:879 ../../mod/settings.php:884 -#: ../../mod/settings.php:955 ../../mod/profiles.php:483 -#: ../../mod/admin.php:421 -msgid "Yes" +#: ../../include/nav.php:169 +msgid "See all notifications" msgstr "" -#: ../../mod/api.php:106 ../../mod/settings.php:879 ../../mod/settings.php:884 -#: ../../mod/settings.php:955 ../../mod/profiles.php:484 -#: ../../mod/admin.php:419 -msgid "No" +#: ../../include/nav.php:170 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" msgstr "" -#: ../../mod/editlayout.php:36 ../../mod/editpost.php:20 -#: ../../mod/editblock.php:8 ../../mod/editblock.php:27 -#: ../../mod/editblock.php:53 ../../mod/editwebpage.php:32 -msgid "Item not found" +#: ../../include/nav.php:172 +msgid "Private mail" msgstr "" -#: ../../mod/editlayout.php:72 -msgid "Edit Layout" +#: ../../include/nav.php:173 +msgid "See all private messages" msgstr "" -#: ../../mod/editlayout.php:82 -msgid "Delete layout?" +#: ../../include/nav.php:174 +msgid "Mark all private messages seen" msgstr "" -#: ../../mod/editlayout.php:110 ../../mod/editpost.php:116 -#: ../../mod/editblock.php:115 ../../mod/editwebpage.php:147 -msgid "Insert YouTube video" +#: ../../include/nav.php:175 +msgid "Inbox" msgstr "" -#: ../../mod/editlayout.php:111 ../../mod/editpost.php:117 -#: ../../mod/editblock.php:116 ../../mod/editwebpage.php:148 -msgid "Insert Vorbis [.ogg] video" +#: ../../include/nav.php:176 +msgid "Outbox" msgstr "" -#: ../../mod/editlayout.php:112 ../../mod/editpost.php:118 -#: ../../mod/editblock.php:117 ../../mod/editwebpage.php:149 -msgid "Insert Vorbis [.ogg] audio" +#: ../../include/nav.php:177 ../../include/widgets.php:535 +msgid "New Message" msgstr "" -#: ../../mod/editlayout.php:146 -msgid "Delete Layout" +#: ../../include/nav.php:180 +msgid "Event Calendar" msgstr "" -#: ../../mod/magic.php:70 -msgid "Hub not found." +#: ../../include/nav.php:181 +msgid "See all events" msgstr "" -#: ../../mod/probe.php:23 ../../mod/probe.php:29 +#: ../../include/nav.php:182 +msgid "Mark all events seen" +msgstr "" + +#: ../../include/nav.php:184 +msgid "Manage Your Channels" +msgstr "" + +#: ../../include/nav.php:186 +msgid "Account/Channel Settings" +msgstr "" + +#: ../../include/nav.php:188 +msgid "Manage/Edit Friends and Connections" +msgstr "" + +#: ../../include/nav.php:195 ../../mod/admin.php:117 +msgid "Admin" +msgstr "" + +#: ../../include/nav.php:195 +msgid "Site Setup and Configuration" +msgstr "" + +#: ../../include/nav.php:220 +msgid "Nothing new here" +msgstr "" + +#: ../../include/nav.php:224 +msgid "Please wait..." +msgstr "" + +#: ../../include/network.php:652 +msgid "view full size" +msgstr "" + +#: ../../include/plugin.php:486 ../../include/plugin.php:488 +msgid "Click here to upgrade." +msgstr "" + +#: ../../include/plugin.php:494 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: ../../include/plugin.php:499 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Male" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Female" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Males" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Females" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Gay" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "No Preference" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Virgin" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Deviant" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Fetish" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Oodles" +msgstr "" + +#: ../../include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Single" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Lonely" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Available" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Dating" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Casual" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Engaged" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Married" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Partners" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Happy" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Not looking" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Swinger" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Separated" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Unstable" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Divorced" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Widowed" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Don't care" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Ask me" +msgstr "" + +#: ../../include/reddav.php:1045 +msgid "Edit File properties" +msgstr "" + +#: ../../include/zot.php:587 +msgid "Invalid data packet" +msgstr "" + +#: ../../include/zot.php:597 +msgid "Unable to verify channel signature" +msgstr "" + +#: ../../include/zot.php:794 #, php-format -msgid "Fetching URL returns error: %1$s" +msgid "Unable to verify site signature for %s" msgstr "" -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "" - -#: ../../mod/tagrm.php:93 ../../mod/photos.php:908 ../../mod/delegate.php:130 -msgid "Remove" -msgstr "" - -#: ../../mod/new_channel.php:107 -msgid "Add a Channel" -msgstr "" - -#: ../../mod/new_channel.php:108 +#: ../../include/security.php:301 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." +"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/new_channel.php:110 ../../mod/sources.php:103 -#: ../../mod/sources.php:137 -msgid "Channel Name" +#: ../../include/widgets.php:80 +msgid "System" msgstr "" -#: ../../mod/new_channel.php:111 -msgid "" -"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " -"Group\" " +#: ../../include/widgets.php:82 +msgid "Create Personal App" msgstr "" -#: ../../mod/new_channel.php:112 -msgid "Choose a short nickname" +#: ../../include/widgets.php:83 +msgid "Edit Personal App" msgstr "" -#: ../../mod/new_channel.php:113 -msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." +#: ../../include/widgets.php:129 ../../mod/suggest.php:53 +msgid "Ignore/Hide" msgstr "" -#: ../../mod/new_channel.php:114 -msgid "" -"Or import an existing channel from another location" +#: ../../include/widgets.php:135 ../../mod/connections.php:266 +msgid "Suggestions" msgstr "" -#: ../../mod/new_channel.php:117 ../../mod/mitem.php:142 ../../mod/menu.php:84 -msgid "Create" +#: ../../include/widgets.php:136 +msgid "See more..." msgstr "" -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "" - -#: ../../mod/pubsites.php:19 -msgid "" -"The listed sites allow public registration into the Red Matrix. All sites in " -"the matrix are interlinked so membership on any of them conveys membership " -"in the matrix as a whole. Some sites may require subscription or provide " -"tiered service plans. The provider links may provide " -"additional details." -msgstr "" - -#: ../../mod/pubsites.php:25 -msgid "Site URL" -msgstr "" - -#: ../../mod/pubsites.php:25 -msgid "Access Type" -msgstr "" - -#: ../../mod/pubsites.php:25 -msgid "Registration Policy" -msgstr "" - -#: ../../mod/pubsites.php:25 ../../mod/profiles.php:344 -msgid "Location" -msgstr "" - -#: ../../mod/update_search.php:46 ../../mod/update_network.php:23 -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -msgid "[Embedded content - reload page to view]" -msgstr "" - -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "" - -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "" - -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "" - -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "" - -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "" - -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "" - -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "" - -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "" - -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "" - -#: ../../mod/group.php:196 -msgid "Members" -msgstr "" - -#: ../../mod/group.php:198 -msgid "All Connected Channels" -msgstr "" - -#: ../../mod/group.php:231 -msgid "Click on a channel to add or remove." -msgstr "" - -#: ../../mod/thing.php:98 -msgid "Thing updated" -msgstr "" - -#: ../../mod/thing.php:158 -msgid "Object store: failed" -msgstr "" - -#: ../../mod/thing.php:162 -msgid "Thing added" -msgstr "" - -#: ../../mod/thing.php:182 +#: ../../include/widgets.php:158 #, php-format -msgid "OBJ: %1$s %2$s %3$s" +msgid "You have %1$.0f of %2$.0f allowed connections." msgstr "" -#: ../../mod/thing.php:234 -msgid "Show Thing" +#: ../../include/widgets.php:164 +msgid "Add New Connection" msgstr "" -#: ../../mod/thing.php:241 -msgid "item not found." +#: ../../include/widgets.php:165 +msgid "Enter the channel address" msgstr "" -#: ../../mod/thing.php:269 -msgid "Edit Thing" +#: ../../include/widgets.php:166 +msgid "Example: bob@example.com, http://example.com/barbara" msgstr "" -#: ../../mod/thing.php:271 ../../mod/thing.php:318 -msgid "Select a profile" +#: ../../include/widgets.php:183 +msgid "Notes" msgstr "" -#: ../../mod/thing.php:273 ../../mod/thing.php:320 -msgid "Select a category of stuff. e.g. I ______ something" +#: ../../include/widgets.php:255 +msgid "Remove term" msgstr "" -#: ../../mod/thing.php:275 ../../mod/thing.php:321 -msgid "Post an activity" +#: ../../include/widgets.php:334 +msgid "Archives" msgstr "" -#: ../../mod/thing.php:275 ../../mod/thing.php:321 -msgid "Only sends to viewers of the applicable profile" +#: ../../include/widgets.php:396 +msgid "Refresh" msgstr "" -#: ../../mod/thing.php:277 ../../mod/thing.php:323 -msgid "Name of thing e.g. something" +#: ../../include/widgets.php:397 ../../mod/connedit.php:428 +msgid "Me" msgstr "" -#: ../../mod/thing.php:279 ../../mod/thing.php:324 -msgid "URL of thing (optional)" +#: ../../include/widgets.php:398 ../../mod/connedit.php:430 +msgid "Best Friends" msgstr "" -#: ../../mod/thing.php:281 ../../mod/thing.php:325 -msgid "URL for photo of thing (optional)" +#: ../../include/widgets.php:400 +msgid "Co-workers" msgstr "" -#: ../../mod/thing.php:316 -msgid "Add Thing to your Profile" +#: ../../include/widgets.php:401 ../../mod/connedit.php:432 +msgid "Former Friends" msgstr "" -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." +#: ../../include/widgets.php:402 ../../mod/connedit.php:433 +msgid "Acquaintances" msgstr "" -#: ../../mod/notifications.php:35 -msgid "Discard" +#: ../../include/widgets.php:403 +msgid "Everybody" msgstr "" -#: ../../mod/notifications.php:51 ../../mod/connedit.php:379 -#: ../../mod/connedit.php:516 -msgid "Ignore" +#: ../../include/widgets.php:435 +msgid "Account settings" msgstr "" -#: ../../mod/notifications.php:94 ../../mod/notify.php:54 -msgid "No more system notifications." +#: ../../include/widgets.php:441 +msgid "Channel settings" msgstr "" -#: ../../mod/notifications.php:98 ../../mod/notify.php:58 -msgid "System Notifications" +#: ../../include/widgets.php:447 +msgid "Additional features" msgstr "" -#: ../../mod/block.php:27 ../../mod/page.php:35 -msgid "Invalid item." +#: ../../include/widgets.php:453 +msgid "Feature settings" msgstr "" -#: ../../mod/block.php:75 ../../mod/help.php:72 ../../mod/page.php:83 -#: ../../mod/display.php:100 ../../index.php:237 -msgid "Page not found." +#: ../../include/widgets.php:459 +msgid "Display settings" msgstr "" -#: ../../mod/message.php:31 ../../mod/mail.php:121 -msgid "Messages" +#: ../../include/widgets.php:465 +msgid "Connected apps" msgstr "" -#: ../../mod/message.php:41 -msgid "Conversation removed." +#: ../../include/widgets.php:471 +msgid "Export channel" msgstr "" -#: ../../mod/message.php:56 -msgid "No messages." +#: ../../include/widgets.php:483 +msgid "Automatic Permissions (Advanced)" msgstr "" -#: ../../mod/message.php:72 ../../mod/mail.php:292 -msgid "Delete message" +#: ../../include/widgets.php:493 +msgid "Premium Channel Settings" msgstr "" -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" +#: ../../include/widgets.php:530 +msgid "Check Mail" msgstr "" -#: ../../mod/rpost.php:86 ../../mod/editpost.php:42 -msgid "Edit post" +#: ../../include/widgets.php:611 +msgid "Chat Rooms" msgstr "" -#: ../../mod/directory.php:207 -msgid "Finding:" +#: ../../include/widgets.php:629 +msgid "Bookmarked Chatrooms" msgstr "" -#: ../../mod/directory.php:215 -msgid "next page" +#: ../../include/widgets.php:647 +msgid "Suggested Chatrooms" msgstr "" -#: ../../mod/directory.php:215 -msgid "previous page" -msgstr "" - -#: ../../mod/directory.php:222 -msgid "No entries (some entries may be hidden)." +#: ../../mod/mood.php:139 +msgid "Set your current mood and tell your friends" msgstr "" #: ../../mod/mitem.php:14 ../../mod/menu.php:92 @@ -3752,6 +3378,11 @@ msgstr "" msgid "Unable to add menu element." msgstr "" +#: ../../mod/mitem.php:78 ../../mod/dirprofile.php:175 ../../mod/menu.php:120 +#: ../../mod/xchan.php:27 +msgid "Not found." +msgstr "" + #: ../../mod/mitem.php:96 msgid "Manage Menu Elements" msgstr "" @@ -3824,6 +3455,10 @@ msgstr "" msgid "Higher numbers will sink to bottom of listing" msgstr "" +#: ../../mod/mitem.php:142 ../../mod/menu.php:84 ../../mod/new_channel.php:117 +msgid "Create" +msgstr "" + #: ../../mod/mitem.php:154 msgid "Menu item not found." msgstr "" @@ -3844,288 +3479,719 @@ msgstr "" msgid "Modify" msgstr "" -#: ../../mod/connect.php:55 ../../mod/connect.php:103 -msgid "Continue" +#: ../../mod/ping.php:192 +msgid "sent you a private message" msgstr "" -#: ../../mod/connect.php:84 -msgid "Premium Channel Setup" +#: ../../mod/ping.php:250 +msgid "added your channel" msgstr "" -#: ../../mod/connect.php:86 -msgid "Enable premium channel connection restrictions" +#: ../../mod/ping.php:294 +msgid "posted an event" msgstr "" -#: ../../mod/connect.php:87 +#: ../../mod/acl.php:239 +msgid "network" +msgstr "" + +#: ../../mod/admin.php:52 +msgid "Theme settings updated." +msgstr "" + +#: ../../mod/admin.php:92 ../../mod/admin.php:440 +msgid "Site" +msgstr "" + +#: ../../mod/admin.php:93 +msgid "Accounts" +msgstr "" + +#: ../../mod/admin.php:94 ../../mod/admin.php:883 +msgid "Channels" +msgstr "" + +#: ../../mod/admin.php:95 ../../mod/admin.php:974 ../../mod/admin.php:1016 +msgid "Plugins" +msgstr "" + +#: ../../mod/admin.php:96 ../../mod/admin.php:1179 ../../mod/admin.php:1215 +msgid "Themes" +msgstr "" + +#: ../../mod/admin.php:97 ../../mod/admin.php:540 +msgid "Server" +msgstr "" + +#: ../../mod/admin.php:98 +msgid "DB updates" +msgstr "" + +#: ../../mod/admin.php:112 ../../mod/admin.php:119 ../../mod/admin.php:1302 +msgid "Logs" +msgstr "" + +#: ../../mod/admin.php:118 +msgid "Plugin Features" +msgstr "" + +#: ../../mod/admin.php:120 +msgid "User registrations waiting for confirmation" +msgstr "" + +#: ../../mod/admin.php:197 +msgid "Message queues" +msgstr "" + +#: ../../mod/admin.php:202 ../../mod/admin.php:439 ../../mod/admin.php:539 +#: ../../mod/admin.php:748 ../../mod/admin.php:882 ../../mod/admin.php:973 +#: ../../mod/admin.php:1015 ../../mod/admin.php:1178 ../../mod/admin.php:1214 +#: ../../mod/admin.php:1301 +msgid "Administration" +msgstr "" + +#: ../../mod/admin.php:203 +msgid "Summary" +msgstr "" + +#: ../../mod/admin.php:205 +msgid "Registered users" +msgstr "" + +#: ../../mod/admin.php:207 ../../mod/admin.php:543 +msgid "Pending registrations" +msgstr "" + +#: ../../mod/admin.php:208 +msgid "Version" +msgstr "" + +#: ../../mod/admin.php:210 ../../mod/admin.php:544 +msgid "Active plugins" +msgstr "" + +#: ../../mod/admin.php:360 +msgid "Site settings updated." +msgstr "" + +#: ../../mod/admin.php:389 ../../mod/settings.php:708 +msgid "No special theme for mobile devices" +msgstr "" + +#: ../../mod/admin.php:391 +msgid "No special theme for accessibility" +msgstr "" + +#: ../../mod/admin.php:419 ../../mod/api.php:106 ../../mod/profiles.php:484 +#: ../../mod/settings.php:879 ../../mod/settings.php:884 +#: ../../mod/settings.php:955 +msgid "No" +msgstr "" + +#: ../../mod/admin.php:420 +msgid "Yes - with approval" +msgstr "" + +#: ../../mod/admin.php:421 ../../mod/api.php:105 ../../mod/profiles.php:483 +#: ../../mod/settings.php:879 ../../mod/settings.php:884 +#: ../../mod/settings.php:955 +msgid "Yes" +msgstr "" + +#: ../../mod/admin.php:426 +msgid "My site is not a public server" +msgstr "" + +#: ../../mod/admin.php:427 +msgid "My site has paid access only" +msgstr "" + +#: ../../mod/admin.php:428 +msgid "My site has free access only" +msgstr "" + +#: ../../mod/admin.php:429 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "" + +#: ../../mod/admin.php:442 ../../mod/register.php:189 +msgid "Registration" +msgstr "" + +#: ../../mod/admin.php:443 +msgid "File upload" +msgstr "" + +#: ../../mod/admin.php:444 +msgid "Policies" +msgstr "" + +#: ../../mod/admin.php:449 +msgid "Site name" +msgstr "" + +#: ../../mod/admin.php:450 +msgid "Banner/Logo" +msgstr "" + +#: ../../mod/admin.php:451 +msgid "Administrator Information" +msgstr "" + +#: ../../mod/admin.php:451 msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" msgstr "" -#: ../../mod/connect.php:89 ../../mod/connect.php:109 +#: ../../mod/admin.php:452 +msgid "System language" +msgstr "" + +#: ../../mod/admin.php:453 +msgid "System theme" +msgstr "" + +#: ../../mod/admin.php:453 msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" +"Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -#: ../../mod/connect.php:90 +#: ../../mod/admin.php:454 +msgid "Mobile system theme" +msgstr "" + +#: ../../mod/admin.php:454 +msgid "Theme for mobile devices" +msgstr "" + +#: ../../mod/admin.php:455 +msgid "Accessibility system theme" +msgstr "" + +#: ../../mod/admin.php:455 +msgid "Accessibility theme" +msgstr "" + +#: ../../mod/admin.php:456 +msgid "Channel to use for this website's static pages" +msgstr "" + +#: ../../mod/admin.php:456 +msgid "Site Channel" +msgstr "" + +#: ../../mod/admin.php:458 +msgid "Maximum image size" +msgstr "" + +#: ../../mod/admin.php:458 msgid "" -"Potential connections will then see the following text before proceeding:" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." msgstr "" -#: ../../mod/connect.php:91 ../../mod/connect.php:112 +#: ../../mod/admin.php:459 +msgid "Does this site allow new member registration?" +msgstr "" + +#: ../../mod/admin.php:460 +msgid "Which best describes the types of account offered by this hub?" +msgstr "" + +#: ../../mod/admin.php:461 +msgid "Register text" +msgstr "" + +#: ../../mod/admin.php:461 +msgid "Will be displayed prominently on the registration page." +msgstr "" + +#: ../../mod/admin.php:462 +msgid "Accounts abandoned after x days" +msgstr "" + +#: ../../mod/admin.php:462 msgid "" -"By continuing, I certify that I have complied with any instructions provided " -"on this page." +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." msgstr "" -#: ../../mod/connect.php:100 -msgid "(No specific instructions have been provided by the channel owner.)" +#: ../../mod/admin.php:463 +msgid "Allowed friend domains" msgstr "" -#: ../../mod/connect.php:108 -msgid "Restricted or Premium Channel" +#: ../../mod/admin.php:463 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" msgstr "" -#: ../../mod/item.php:147 -msgid "Unable to locate original post." +#: ../../mod/admin.php:464 +msgid "Allowed email domains" msgstr "" -#: ../../mod/item.php:352 -msgid "Empty post discarded." +#: ../../mod/admin.php:464 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" msgstr "" -#: ../../mod/item.php:392 -msgid "Executable content type not permitted to this channel." +#: ../../mod/admin.php:465 +msgid "Block public" msgstr "" -#: ../../mod/item.php:806 -msgid "System error. Post not saved." +#: ../../mod/admin.php:465 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." msgstr "" -#: ../../mod/item.php:1249 +#: ../../mod/admin.php:466 +msgid "Force publish" +msgstr "" + +#: ../../mod/admin.php:466 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" + +#: ../../mod/admin.php:467 +msgid "Disable discovery tab" +msgstr "" + +#: ../../mod/admin.php:467 +msgid "" +"Remove the tab in the network view with public content pulled from sources " +"chosen for this site." +msgstr "" + +#: ../../mod/admin.php:468 +msgid "No login on Homepage" +msgstr "" + +#: ../../mod/admin.php:468 +msgid "" +"Check to hide the login form from your sites homepage when visitors arrive " +"who are not logged in (e.g. when you put the content of the homepage in via " +"the site channel)." +msgstr "" + +#: ../../mod/admin.php:470 +msgid "Proxy user" +msgstr "" + +#: ../../mod/admin.php:471 +msgid "Proxy URL" +msgstr "" + +#: ../../mod/admin.php:472 +msgid "Network timeout" +msgstr "" + +#: ../../mod/admin.php:472 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: ../../mod/admin.php:473 +msgid "Delivery interval" +msgstr "" + +#: ../../mod/admin.php:473 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "" + +#: ../../mod/admin.php:474 +msgid "Poll interval" +msgstr "" + +#: ../../mod/admin.php:474 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "" + +#: ../../mod/admin.php:475 +msgid "Maximum Load Average" +msgstr "" + +#: ../../mod/admin.php:475 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "" + +#: ../../mod/admin.php:531 +msgid "No server found" +msgstr "" + +#: ../../mod/admin.php:538 ../../mod/admin.php:762 +msgid "ID" +msgstr "" + +#: ../../mod/admin.php:538 +msgid "for channel" +msgstr "" + +#: ../../mod/admin.php:538 +msgid "on server" +msgstr "" + +#: ../../mod/admin.php:538 +msgid "Status" +msgstr "" + +#: ../../mod/admin.php:559 +msgid "Update has been marked successful" +msgstr "" + +#: ../../mod/admin.php:569 #, php-format -msgid "You have reached your limit of %1$.0f top level posts." +msgid "Executing %s failed. Check system logs." msgstr "" -#: ../../mod/item.php:1255 +#: ../../mod/admin.php:572 #, php-format -msgid "You have reached your limit of %1$.0f webpages." +msgid "Update %s was successfully applied." msgstr "" -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "" - -#: ../../mod/network.php:79 -msgid "No such group" -msgstr "" - -#: ../../mod/network.php:119 -msgid "Search Results For:" -msgstr "" - -#: ../../mod/network.php:173 -msgid "Collection is empty" -msgstr "" - -#: ../../mod/network.php:181 -msgid "Collection: " -msgstr "" - -#: ../../mod/network.php:194 -msgid "Connection: " -msgstr "" - -#: ../../mod/network.php:197 -msgid "Invalid connection." -msgstr "" - -#: ../../mod/siteinfo.php:57 +#: ../../mod/admin.php:576 #, php-format -msgid "Version %s" +msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: ../../mod/siteinfo.php:76 -msgid "Installed plugins/addons/apps:" -msgstr "" - -#: ../../mod/siteinfo.php:89 -msgid "No installed plugins/addons/apps" -msgstr "" - -#: ../../mod/siteinfo.php:97 -msgid "Red" -msgstr "" - -#: ../../mod/siteinfo.php:98 -msgid "" -"This is a hub of the Red Matrix - a global cooperative network of " -"decentralised privacy enhanced websites." -msgstr "" - -#: ../../mod/siteinfo.php:101 -msgid "Running at web location" -msgstr "" - -#: ../../mod/siteinfo.php:102 -msgid "" -"Please visit GetZot.com to learn more " -"about the Red Matrix." -msgstr "" - -#: ../../mod/siteinfo.php:103 -msgid "Bug reports and issues: please visit" -msgstr "" - -#: ../../mod/siteinfo.php:106 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" -msgstr "" - -#: ../../mod/siteinfo.php:108 -msgid "Site Administrators" -msgstr "" - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "" - -#: ../../mod/bookmarks.php:58 -msgid "My Bookmarks" -msgstr "" - -#: ../../mod/bookmarks.php:69 -msgid "My Connections Bookmarks" -msgstr "" - -#: ../../mod/channel.php:25 ../../mod/chat.php:19 -msgid "You must be logged in to see this page." -msgstr "" - -#: ../../mod/channel.php:86 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "" - -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "" - -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "" - -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "" - -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "" - -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59 -msgid "Layout Help" -msgstr "" - -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "" - -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "" - -#: ../../mod/subthread.php:103 +#: ../../mod/admin.php:579 #, php-format -msgid "%1$s is following %2$s's %3$s" +msgid "Update function %s could not be found." msgstr "" -#: ../../mod/chanview.php:93 -msgid "toggle full screen mode" +#: ../../mod/admin.php:594 +msgid "No failed updates." msgstr "" -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" +#: ../../mod/admin.php:598 +msgid "Failed Updates" msgstr "" -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." +#: ../../mod/admin.php:600 +msgid "Mark success (if update was manually applied)" msgstr "" -#: ../../mod/sources.php:45 -msgid "Source created." +#: ../../mod/admin.php:601 +msgid "Attempt to execute this update step automatically" msgstr "" -#: ../../mod/sources.php:57 -msgid "Source updated." +#: ../../mod/admin.php:627 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:634 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:665 +msgid "Account not found" msgstr "" -#: ../../mod/sources.php:82 -msgid "*" +#: ../../mod/admin.php:676 +#, php-format +msgid "User '%s' deleted" msgstr "" -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." +#: ../../mod/admin.php:685 +#, php-format +msgid "User '%s' unblocked" msgstr "" -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" +#: ../../mod/admin.php:685 +#, php-format +msgid "User '%s' blocked" msgstr "" -#: ../../mod/sources.php:101 ../../mod/sources.php:133 +#: ../../mod/admin.php:749 ../../mod/admin.php:761 +msgid "Users" +msgstr "" + +#: ../../mod/admin.php:751 ../../mod/admin.php:885 +msgid "select all" +msgstr "" + +#: ../../mod/admin.php:752 +msgid "User registrations waiting for confirm" +msgstr "" + +#: ../../mod/admin.php:753 +msgid "Request date" +msgstr "" + +#: ../../mod/admin.php:754 +msgid "No registrations." +msgstr "" + +#: ../../mod/admin.php:755 +msgid "Approve" +msgstr "" + +#: ../../mod/admin.php:756 +msgid "Deny" +msgstr "" + +#: ../../mod/admin.php:758 ../../mod/connedit.php:372 +#: ../../mod/connedit.php:515 +msgid "Block" +msgstr "" + +#: ../../mod/admin.php:759 ../../mod/connedit.php:372 +#: ../../mod/connedit.php:515 +msgid "Unblock" +msgstr "" + +#: ../../mod/admin.php:762 +msgid "Register date" +msgstr "" + +#: ../../mod/admin.php:762 +msgid "Last login" +msgstr "" + +#: ../../mod/admin.php:762 +msgid "Expires" +msgstr "" + +#: ../../mod/admin.php:762 +msgid "Service Class" +msgstr "" + +#: ../../mod/admin.php:764 msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" +#: ../../mod/admin.php:765 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" +#: ../../mod/admin.php:797 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channelss censored/uncensored" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:804 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:823 +msgid "Channel not found" msgstr "" -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." +#: ../../mod/admin.php:834 +#, php-format +msgid "Channel '%s' deleted" msgstr "" -#: ../../mod/sources.php:130 -msgid "Edit Source" +#: ../../mod/admin.php:844 +#, php-format +msgid "Channel '%s' uncensored" msgstr "" -#: ../../mod/sources.php:131 -msgid "Delete Source" +#: ../../mod/admin.php:844 +#, php-format +msgid "Channel '%s' censored" msgstr "" -#: ../../mod/sources.php:158 -msgid "Source removed" +#: ../../mod/admin.php:887 +msgid "Censor" msgstr "" -#: ../../mod/sources.php:160 -msgid "Unable to remove source." +#: ../../mod/admin.php:888 +msgid "Uncensor" msgstr "" -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." +#: ../../mod/admin.php:891 +msgid "UID" msgstr "" -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" +#: ../../mod/admin.php:891 ../../mod/settings.php:517 +#: ../../mod/settings.php:543 +msgid "Name" msgstr "" -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." +#: ../../mod/admin.php:891 ../../mod/profiles.php:337 +msgid "Address" msgstr "" -#: ../../mod/profperm.php:123 -msgid "Visible To" +#: ../../mod/admin.php:893 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../mod/profperm.php:139 ../../mod/connections.php:278 -msgid "All Connections" +#: ../../mod/admin.php:894 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../mod/admin.php:933 +#, php-format +msgid "Plugin %s disabled." +msgstr "" + +#: ../../mod/admin.php:937 +#, php-format +msgid "Plugin %s enabled." +msgstr "" + +#: ../../mod/admin.php:947 ../../mod/admin.php:1149 +msgid "Disable" +msgstr "" + +#: ../../mod/admin.php:949 ../../mod/admin.php:1151 +msgid "Enable" +msgstr "" + +#: ../../mod/admin.php:975 ../../mod/admin.php:1180 +msgid "Toggle" +msgstr "" + +#: ../../mod/admin.php:983 ../../mod/admin.php:1190 +msgid "Author: " +msgstr "" + +#: ../../mod/admin.php:984 ../../mod/admin.php:1191 +msgid "Maintainer: " +msgstr "" + +#: ../../mod/admin.php:1113 +msgid "No themes found." +msgstr "" + +#: ../../mod/admin.php:1172 +msgid "Screenshot" +msgstr "" + +#: ../../mod/admin.php:1220 +msgid "[Experimental]" +msgstr "" + +#: ../../mod/admin.php:1221 +msgid "[Unsupported]" +msgstr "" + +#: ../../mod/admin.php:1248 +msgid "Log settings updated." +msgstr "" + +#: ../../mod/admin.php:1304 +msgid "Clear" +msgstr "" + +#: ../../mod/admin.php:1310 +msgid "Debugging" +msgstr "" + +#: ../../mod/admin.php:1311 +msgid "Log file" +msgstr "" + +#: ../../mod/admin.php:1311 +msgid "" +"Must be writable by web server. Relative to your Red top-level directory." +msgstr "" + +#: ../../mod/admin.php:1312 +msgid "Log level" +msgstr "" + +#: ../../mod/poke.php:159 +msgid "Poke/Prod" +msgstr "" + +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" +msgstr "" + +#: ../../mod/poke.php:161 +msgid "Recipient" +msgstr "" + +#: ../../mod/poke.php:162 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: ../../mod/poke.php:165 +msgid "Make this post private" +msgstr "" + +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "" + +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "" + +#: ../../mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" +msgstr "" + +#: ../../mod/post.php:226 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please " +"logout and retry." +msgstr "" + +#: ../../mod/post.php:257 ../../mod/openid.php:72 ../../mod/openid.php:178 +#, php-format +msgid "Welcome %s. Remote authentication successful." +msgstr "" + +#: ../../mod/attach.php:9 +msgid "Item not available." +msgstr "" + +#: ../../mod/probe.php:23 ../../mod/probe.php:29 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "" + +#: ../../mod/block.php:27 ../../mod/page.php:35 +msgid "Invalid item." +msgstr "" + +#: ../../mod/block.php:39 ../../mod/chanview.php:77 ../../mod/page.php:47 +#: ../../mod/home.php:52 ../../mod/wall_upload.php:28 +msgid "Channel not found." +msgstr "" + +#: ../../mod/block.php:75 ../../mod/page.php:83 ../../mod/display.php:100 +#: ../../mod/help.php:72 ../../index.php:237 +msgid "Page not found." msgstr "" #: ../../mod/profile_photo.php:108 @@ -4212,111 +4278,709 @@ msgstr "" msgid "Block Name" msgstr "" -#: ../../mod/post.php:226 +#: ../../mod/profiles.php:18 ../../mod/profiles.php:138 +#: ../../mod/profiles.php:168 ../../mod/profiles.php:463 +msgid "Profile not found." +msgstr "" + +#: ../../mod/profiles.php:38 +msgid "Profile deleted." +msgstr "" + +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" +msgstr "" + +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." +msgstr "" + +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." +msgstr "" + +#: ../../mod/profiles.php:178 +msgid "Profile Name is required." +msgstr "" + +#: ../../mod/profiles.php:294 +msgid "Marital Status" +msgstr "" + +#: ../../mod/profiles.php:298 +msgid "Romantic Partner" +msgstr "" + +#: ../../mod/profiles.php:302 +msgid "Likes" +msgstr "" + +#: ../../mod/profiles.php:306 +msgid "Dislikes" +msgstr "" + +#: ../../mod/profiles.php:310 +msgid "Work/Employment" +msgstr "" + +#: ../../mod/profiles.php:313 +msgid "Religion" +msgstr "" + +#: ../../mod/profiles.php:317 +msgid "Political Views" +msgstr "" + +#: ../../mod/profiles.php:321 +msgid "Gender" +msgstr "" + +#: ../../mod/profiles.php:325 +msgid "Sexual Preference" +msgstr "" + +#: ../../mod/profiles.php:329 +msgid "Homepage" +msgstr "" + +#: ../../mod/profiles.php:333 +msgid "Interests" +msgstr "" + +#: ../../mod/profiles.php:344 ../../mod/pubsites.php:25 +msgid "Location" +msgstr "" + +#: ../../mod/profiles.php:427 +msgid "Profile updated." +msgstr "" + +#: ../../mod/profiles.php:482 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "" + +#: ../../mod/profiles.php:505 +msgid "Edit Profile Details" +msgstr "" + +#: ../../mod/profiles.php:507 +msgid "View this profile" +msgstr "" + +#: ../../mod/profiles.php:508 +msgid "Change Profile Photo" +msgstr "" + +#: ../../mod/profiles.php:509 +msgid "Create a new profile using these settings" +msgstr "" + +#: ../../mod/profiles.php:510 +msgid "Clone this profile" +msgstr "" + +#: ../../mod/profiles.php:511 +msgid "Delete this profile" +msgstr "" + +#: ../../mod/profiles.php:512 +msgid "Profile Name:" +msgstr "" + +#: ../../mod/profiles.php:513 +msgid "Your Full Name:" +msgstr "" + +#: ../../mod/profiles.php:514 +msgid "Title/Description:" +msgstr "" + +#: ../../mod/profiles.php:515 +msgid "Your Gender:" +msgstr "" + +#: ../../mod/profiles.php:516 +#, php-format +msgid "Birthday (%s):" +msgstr "" + +#: ../../mod/profiles.php:517 +msgid "Street Address:" +msgstr "" + +#: ../../mod/profiles.php:518 +msgid "Locality/City:" +msgstr "" + +#: ../../mod/profiles.php:519 +msgid "Postal/Zip Code:" +msgstr "" + +#: ../../mod/profiles.php:520 +msgid "Country:" +msgstr "" + +#: ../../mod/profiles.php:521 +msgid "Region/State:" +msgstr "" + +#: ../../mod/profiles.php:522 +msgid " Marital Status:" +msgstr "" + +#: ../../mod/profiles.php:523 +msgid "Who: (if applicable)" +msgstr "" + +#: ../../mod/profiles.php:524 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "" + +#: ../../mod/profiles.php:525 +msgid "Since [date]:" +msgstr "" + +#: ../../mod/profiles.php:527 +msgid "Homepage URL:" +msgstr "" + +#: ../../mod/profiles.php:530 +msgid "Religious Views:" +msgstr "" + +#: ../../mod/profiles.php:531 +msgid "Keywords:" +msgstr "" + +#: ../../mod/profiles.php:534 +msgid "Example: fishing photography software" +msgstr "" + +#: ../../mod/profiles.php:535 +msgid "Used in directory listings" +msgstr "" + +#: ../../mod/profiles.php:536 +msgid "Tell us about yourself..." +msgstr "" + +#: ../../mod/profiles.php:537 +msgid "Hobbies/Interests" +msgstr "" + +#: ../../mod/profiles.php:538 +msgid "Contact information and Social Networks" +msgstr "" + +#: ../../mod/profiles.php:539 +msgid "My other channels" +msgstr "" + +#: ../../mod/profiles.php:540 +msgid "Musical interests" +msgstr "" + +#: ../../mod/profiles.php:541 +msgid "Books, literature" +msgstr "" + +#: ../../mod/profiles.php:542 +msgid "Television" +msgstr "" + +#: ../../mod/profiles.php:543 +msgid "Film/dance/culture/entertainment" +msgstr "" + +#: ../../mod/profiles.php:544 +msgid "Love/romance" +msgstr "" + +#: ../../mod/profiles.php:545 +msgid "Work/employment" +msgstr "" + +#: ../../mod/profiles.php:546 +msgid "School/education" +msgstr "" + +#: ../../mod/profiles.php:551 msgid "" -"Remote authentication blocked. You are logged into this site locally. Please " -"logout and retry." +"This is your public profile.
    It may " +"be visible to anybody using the internet." msgstr "" -#: ../../mod/post.php:257 ../../mod/openid.php:72 ../../mod/openid.php:178 +#: ../../mod/profiles.php:561 ../../mod/directory.php:143 +#: ../../mod/dirprofile.php:92 +msgid "Age: " +msgstr "" + +#: ../../mod/profiles.php:600 +msgid "Edit/Manage Profiles" +msgstr "" + +#: ../../mod/profiles.php:601 +msgid "Add profile things" +msgstr "" + +#: ../../mod/profiles.php:602 +msgid "Include desirable objects in your profile" +msgstr "" + +#: ../../mod/bookmarks.php:38 +msgid "Bookmark added" +msgstr "" + +#: ../../mod/bookmarks.php:58 +msgid "My Bookmarks" +msgstr "" + +#: ../../mod/bookmarks.php:69 +msgid "My Connections Bookmarks" +msgstr "" + +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." +msgstr "" + +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" +msgstr "" + +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." +msgstr "" + +#: ../../mod/profperm.php:123 +msgid "Visible To" +msgstr "" + +#: ../../mod/profperm.php:139 ../../mod/connections.php:278 +msgid "All Connections" +msgstr "" + +#: ../../mod/pubsites.php:16 +msgid "Public Sites" +msgstr "" + +#: ../../mod/pubsites.php:19 +msgid "" +"The listed sites allow public registration into the Red Matrix. All sites in " +"the matrix are interlinked so membership on any of them conveys membership " +"in the matrix as a whole. Some sites may require subscription or provide " +"tiered service plans. The provider links may provide " +"additional details." +msgstr "" + +#: ../../mod/pubsites.php:25 +msgid "Site URL" +msgstr "" + +#: ../../mod/pubsites.php:25 +msgid "Access Type" +msgstr "" + +#: ../../mod/pubsites.php:25 +msgid "Registration Policy" +msgstr "" + +#: ../../mod/channel.php:25 ../../mod/chat.php:19 +msgid "You must be logged in to see this page." +msgstr "" + +#: ../../mod/channel.php:86 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "" + +#: ../../mod/chanview.php:93 +msgid "toggle full screen mode" +msgstr "" + +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" +msgstr "" + +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" +msgstr "" + +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" +msgstr "" + +#: ../../mod/rbmark.php:95 ../../mod/appman.php:89 +msgid "Description" +msgstr "" + +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "" + +#: ../../mod/chat.php:167 +msgid "Room not found" +msgstr "" + +#: ../../mod/chat.php:178 +msgid "Leave Room" +msgstr "" + +#: ../../mod/chat.php:179 +msgid "Delete This Room" +msgstr "" + +#: ../../mod/chat.php:180 +msgid "I am away right now" +msgstr "" + +#: ../../mod/chat.php:181 +msgid "I am online" +msgstr "" + +#: ../../mod/chat.php:183 +msgid "Bookmark this room" +msgstr "" + +#: ../../mod/chat.php:207 ../../mod/chat.php:229 +msgid "New Chatroom" +msgstr "" + +#: ../../mod/chat.php:208 +msgid "Chatroom Name" +msgstr "" + +#: ../../mod/chat.php:225 #, php-format -msgid "Welcome %s. Remote authentication successful." +msgid "%1$s's Chatrooms" msgstr "" -#: ../../mod/filestorage.php:68 -msgid "Permission Denied." +#: ../../mod/register.php:43 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." msgstr "" -#: ../../mod/filestorage.php:85 -msgid "File not found." +#: ../../mod/register.php:49 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." msgstr "" -#: ../../mod/filestorage.php:121 -msgid "Edit file permissions" +#: ../../mod/register.php:77 +msgid "Passwords do not match." msgstr "" -#: ../../mod/filestorage.php:129 -msgid "Set/edit permissions" +#: ../../mod/register.php:105 +msgid "" +"Registration successful. Please check your email for validation instructions." msgstr "" -#: ../../mod/filestorage.php:130 -msgid "Include all files and sub folders" +#: ../../mod/register.php:111 +msgid "Your registration is pending approval by the site owner." msgstr "" -#: ../../mod/filestorage.php:131 -msgid "Return to file list" +#: ../../mod/register.php:114 +msgid "Your registration can not be processed." msgstr "" -#: ../../mod/filestorage.php:133 -msgid "Copy/paste this code to attach file to a post" +#: ../../mod/register.php:147 +msgid "Registration on this site/hub is by approval only." msgstr "" -#: ../../mod/filestorage.php:134 -msgid "Copy/paste this URL to link file from a web page" +#: ../../mod/register.php:148 +msgid "Register at another affiliated site/hub" msgstr "" -#: ../../mod/filestorage.php:171 -msgid "Download" +#: ../../mod/register.php:156 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." msgstr "" -#: ../../mod/filestorage.php:177 -msgid "Used: " +#: ../../mod/register.php:167 +msgid "Terms of Service" msgstr "" -#: ../../mod/filestorage.php:178 -msgid "[directory]" -msgstr "" - -#: ../../mod/filestorage.php:180 -msgid "Limit: " -msgstr "" - -#: ../../mod/lockview.php:30 ../../mod/lockview.php:36 -msgid "Remote privacy information not available." -msgstr "" - -#: ../../mod/lockview.php:45 -msgid "Visible to:" -msgstr "" - -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "" - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "" - -#: ../../mod/fsuggest.php:99 +#: ../../mod/register.php:173 #, php-format -msgid "Suggest a friend for %s" +msgid "I accept the %s for this website" msgstr "" -#: ../../mod/tagger.php:98 +#: ../../mod/register.php:175 #, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" +msgid "I am over 13 years of age and accept the %s for this website" msgstr "" -#: ../../mod/connedit.php:64 ../../mod/connections.php:37 +#: ../../mod/register.php:194 +msgid "Membership on this site is by invitation only." +msgstr "" + +#: ../../mod/register.php:195 +msgid "Please enter your invitation code" +msgstr "" + +#: ../../mod/register.php:198 +msgid "Your email address" +msgstr "" + +#: ../../mod/register.php:199 +msgid "Choose a password" +msgstr "" + +#: ../../mod/register.php:200 +msgid "Please re-enter your password" +msgstr "" + +#: ../../mod/chatsvc.php:111 +msgid "Away" +msgstr "" + +#: ../../mod/chatsvc.php:115 +msgid "Online" +msgstr "" + +#: ../../mod/regmod.php:12 +msgid "Please login." +msgstr "" + +#: ../../mod/cloud.php:112 +msgid "Red Matrix - Guests: Username: {your email address}, Password: +++" +msgstr "" + +#: ../../mod/removeme.php:49 +msgid "Remove This Channel" +msgstr "" + +#: ../../mod/removeme.php:50 +msgid "" +"This will completely remove this channel from the network. Once this has " +"been done it is not recoverable." +msgstr "" + +#: ../../mod/removeme.php:51 +msgid "Please enter your password for verification:" +msgstr "" + +#: ../../mod/removeme.php:52 +msgid "Remove this channel and all its clones from the network" +msgstr "" + +#: ../../mod/removeme.php:52 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "" + +#: ../../mod/removeme.php:53 +msgid "Remove Channel" +msgstr "" + +#: ../../mod/common.php:10 +msgid "No channel." +msgstr "" + +#: ../../mod/common.php:39 +msgid "Common connections" +msgstr "" + +#: ../../mod/common.php:44 +msgid "No connections in common." +msgstr "" + +#: ../../mod/rmagic.php:38 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "" + +#: ../../mod/rmagic.php:38 +msgid "The error message was:" +msgstr "" + +#: ../../mod/rmagic.php:42 +msgid "Authentication failed." +msgstr "" + +#: ../../mod/rmagic.php:78 +msgid "Remote Authentication" +msgstr "" + +#: ../../mod/rmagic.php:79 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "" + +#: ../../mod/rmagic.php:80 +msgid "Authenticate" +msgstr "" + +#: ../../mod/connect.php:55 ../../mod/connect.php:103 +msgid "Continue" +msgstr "" + +#: ../../mod/connect.php:84 +msgid "Premium Channel Setup" +msgstr "" + +#: ../../mod/connect.php:86 +msgid "Enable premium channel connection restrictions" +msgstr "" + +#: ../../mod/connect.php:87 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "" + +#: ../../mod/connect.php:89 ../../mod/connect.php:109 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "" + +#: ../../mod/connect.php:90 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "" + +#: ../../mod/connect.php:91 ../../mod/connect.php:112 +msgid "" +"By continuing, I certify that I have complied with any instructions provided " +"on this page." +msgstr "" + +#: ../../mod/connect.php:100 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "" + +#: ../../mod/connect.php:108 +msgid "Restricted or Premium Channel" +msgstr "" + +#: ../../mod/network.php:79 +msgid "No such group" +msgstr "" + +#: ../../mod/network.php:119 +msgid "Search Results For:" +msgstr "" + +#: ../../mod/network.php:173 +msgid "Collection is empty" +msgstr "" + +#: ../../mod/network.php:181 +msgid "Collection: " +msgstr "" + +#: ../../mod/network.php:194 +msgid "Connection: " +msgstr "" + +#: ../../mod/network.php:197 +msgid "Invalid connection." +msgstr "" + +#: ../../mod/connections.php:37 ../../mod/connedit.php:64 msgid "Could not access contact record." msgstr "" -#: ../../mod/connedit.php:78 ../../mod/connections.php:51 +#: ../../mod/connections.php:51 ../../mod/connedit.php:78 msgid "Could not locate selected profile." msgstr "" -#: ../../mod/connedit.php:131 ../../mod/connections.php:94 +#: ../../mod/connections.php:94 ../../mod/connedit.php:131 msgid "Connection updated." msgstr "" -#: ../../mod/connedit.php:133 ../../mod/connections.php:96 +#: ../../mod/connections.php:96 ../../mod/connedit.php:133 msgid "Failed to update connection record." msgstr "" +#: ../../mod/connections.php:191 ../../mod/connections.php:291 +msgid "Blocked" +msgstr "" + +#: ../../mod/connections.php:196 ../../mod/connections.php:298 +msgid "Ignored" +msgstr "" + +#: ../../mod/connections.php:201 ../../mod/connections.php:312 +msgid "Hidden" +msgstr "" + +#: ../../mod/connections.php:206 ../../mod/connections.php:305 +msgid "Archived" +msgstr "" + +#: ../../mod/connections.php:230 ../../mod/connections.php:244 +msgid "All" +msgstr "" + +#: ../../mod/connections.php:239 ../../mod/connections.php:319 +msgid "Unconnected" +msgstr "" + +#: ../../mod/connections.php:269 +msgid "Suggest new connections" +msgstr "" + +#: ../../mod/connections.php:272 +msgid "New Connections" +msgstr "" + +#: ../../mod/connections.php:275 +msgid "Show pending (new) connections" +msgstr "" + +#: ../../mod/connections.php:281 +msgid "Show all connections" +msgstr "" + +#: ../../mod/connections.php:284 +msgid "Unblocked" +msgstr "" + +#: ../../mod/connections.php:287 +msgid "Only show unblocked connections" +msgstr "" + +#: ../../mod/connections.php:294 +msgid "Only show blocked connections" +msgstr "" + +#: ../../mod/connections.php:301 +msgid "Only show ignored connections" +msgstr "" + +#: ../../mod/connections.php:308 +msgid "Only show archived connections" +msgstr "" + +#: ../../mod/connections.php:315 +msgid "Only show hidden connections" +msgstr "" + +#: ../../mod/connections.php:322 +msgid "Only show one-way connections" +msgstr "" + +#: ../../mod/connections.php:367 +#, php-format +msgid "%1$s [%2$s]" +msgstr "" + +#: ../../mod/connections.php:368 +msgid "Edit contact" +msgstr "" + +#: ../../mod/connections.php:389 +msgid "Search your connections" +msgstr "" + +#: ../../mod/connections.php:390 +msgid "Finding: " +msgstr "" + +#: ../../mod/rpost.php:86 ../../mod/editpost.php:42 +msgid "Edit post" +msgstr "" + #: ../../mod/connedit.php:243 msgid "Could not access address book record." msgstr "" @@ -4396,16 +5060,6 @@ msgstr "" msgid "View recent posts and comments" msgstr "" -#: ../../mod/connedit.php:372 ../../mod/connedit.php:515 -#: ../../mod/admin.php:759 -msgid "Unblock" -msgstr "" - -#: ../../mod/connedit.php:372 ../../mod/connedit.php:515 -#: ../../mod/admin.php:758 -msgid "Block" -msgstr "" - #: ../../mod/connedit.php:375 msgid "Block or Unblock this connection" msgstr "" @@ -4414,6 +5068,11 @@ msgstr "" msgid "Unignore" msgstr "" +#: ../../mod/connedit.php:379 ../../mod/connedit.php:516 +#: ../../mod/notifications.php:51 +msgid "Ignore" +msgstr "" + #: ../../mod/connedit.php:382 msgid "Ignore or Unignore this connection" msgstr "" @@ -4620,48 +5279,99 @@ msgid "" "Replies/likes to your public posts may still be visible" msgstr "" +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "" + +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" +msgstr "" + +#: ../../mod/delegate.php:123 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "" + +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" +msgstr "" + +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "" + +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "" + +#: ../../mod/delegate.php:130 ../../mod/tagrm.php:93 ../../mod/photos.php:908 +msgid "Remove" +msgstr "" + +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "" + +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "" + +#: ../../mod/search.php:13 ../../mod/directory.php:15 +#: ../../mod/dirprofile.php:9 ../../mod/display.php:9 +#: ../../mod/viewconnections.php:17 ../../mod/photos.php:443 +msgid "Public access denied." +msgstr "" + +#: ../../mod/directory.php:146 ../../mod/dirprofile.php:95 +msgid "Gender: " +msgstr "" + +#: ../../mod/directory.php:207 +msgid "Finding:" +msgstr "" + +#: ../../mod/directory.php:215 +msgid "next page" +msgstr "" + +#: ../../mod/directory.php:215 +msgid "previous page" +msgstr "" + +#: ../../mod/directory.php:222 +msgid "No entries (some entries may be hidden)." +msgstr "" + +#: ../../mod/dirprofile.php:108 +msgid "Status: " +msgstr "" + +#: ../../mod/dirprofile.php:109 +msgid "Sexual Preference: " +msgstr "" + +#: ../../mod/dirprofile.php:111 +msgid "Homepage: " +msgstr "" + +#: ../../mod/dirprofile.php:112 +msgid "Hometown: " +msgstr "" + +#: ../../mod/dirprofile.php:114 +msgid "About: " +msgstr "" + +#: ../../mod/dirprofile.php:162 +msgid "Keywords: " +msgstr "" + #: ../../mod/dirsearch.php:21 msgid "This site is not a directory server" msgstr "" -#: ../../mod/rmagic.php:38 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "" - -#: ../../mod/rmagic.php:38 -msgid "The error message was:" -msgstr "" - -#: ../../mod/rmagic.php:42 -msgid "Authentication failed." -msgstr "" - -#: ../../mod/rmagic.php:78 -msgid "Remote Authentication" -msgstr "" - -#: ../../mod/rmagic.php:79 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "" - -#: ../../mod/rmagic.php:80 -msgid "Authenticate" -msgstr "" - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "" - -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "" - -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "" - #: ../../mod/settings.php:71 msgid "Name is required" msgstr "" @@ -4707,11 +5417,6 @@ msgstr "" msgid "Add application" msgstr "" -#: ../../mod/settings.php:517 ../../mod/settings.php:543 -#: ../../mod/admin.php:891 -msgid "Name" -msgstr "" - #: ../../mod/settings.php:517 msgid "Name of application" msgstr "" @@ -4821,10 +5526,6 @@ msgstr "" msgid "Connector Settings" msgstr "" -#: ../../mod/settings.php:708 ../../mod/admin.php:389 -msgid "No special theme for mobile devices" -msgstr "" - #: ../../mod/settings.php:749 msgid "Display Settings" msgstr "" @@ -5476,6 +6177,137 @@ msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" +#: ../../mod/editblock.php:8 ../../mod/editblock.php:27 +#: ../../mod/editblock.php:53 ../../mod/editlayout.php:36 +#: ../../mod/editpost.php:20 ../../mod/editwebpage.php:32 +msgid "Item not found" +msgstr "" + +#: ../../mod/editblock.php:77 +msgid "Edit Block" +msgstr "" + +#: ../../mod/editblock.php:87 +msgid "Delete block?" +msgstr "" + +#: ../../mod/editblock.php:115 ../../mod/editlayout.php:110 +#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:147 +msgid "Insert YouTube video" +msgstr "" + +#: ../../mod/editblock.php:116 ../../mod/editlayout.php:111 +#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:148 +msgid "Insert Vorbis [.ogg] video" +msgstr "" + +#: ../../mod/editblock.php:117 ../../mod/editlayout.php:112 +#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:149 +msgid "Insert Vorbis [.ogg] audio" +msgstr "" + +#: ../../mod/editblock.php:153 +msgid "Delete Block" +msgstr "" + +#: ../../mod/pdledit.php:13 +msgid "Layout updated." +msgstr "" + +#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +msgid "Edit System Page Description" +msgstr "" + +#: ../../mod/pdledit.php:48 +msgid "Layout not found." +msgstr "" + +#: ../../mod/pdledit.php:54 +msgid "Module Name:" +msgstr "" + +#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59 +msgid "Layout Help" +msgstr "" + +#: ../../mod/editlayout.php:72 +msgid "Edit Layout" +msgstr "" + +#: ../../mod/editlayout.php:82 +msgid "Delete layout?" +msgstr "" + +#: ../../mod/editlayout.php:146 +msgid "Delete Layout" +msgstr "" + +#: ../../mod/editpost.php:31 +msgid "Item is not editable" +msgstr "" + +#: ../../mod/editpost.php:53 +msgid "Delete item?" +msgstr "" + +#: ../../mod/editwebpage.php:106 +msgid "Edit Webpage" +msgstr "" + +#: ../../mod/editwebpage.php:116 +msgid "Delete webpage?" +msgstr "" + +#: ../../mod/editwebpage.php:187 +msgid "Delete Webpage" +msgstr "" + +#: ../../mod/siteinfo.php:57 +#, php-format +msgid "Version %s" +msgstr "" + +#: ../../mod/siteinfo.php:76 +msgid "Installed plugins/addons/apps:" +msgstr "" + +#: ../../mod/siteinfo.php:89 +msgid "No installed plugins/addons/apps" +msgstr "" + +#: ../../mod/siteinfo.php:97 +msgid "Red" +msgstr "" + +#: ../../mod/siteinfo.php:98 +msgid "" +"This is a hub of the Red Matrix - a global cooperative network of " +"decentralised privacy enhanced websites." +msgstr "" + +#: ../../mod/siteinfo.php:101 +msgid "Running at web location" +msgstr "" + +#: ../../mod/siteinfo.php:102 +msgid "" +"Please visit GetZot.com to learn more " +"about the Red Matrix." +msgstr "" + +#: ../../mod/siteinfo.php:103 +msgid "Bug reports and issues: please visit" +msgstr "" + +#: ../../mod/siteinfo.php:106 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" +msgstr "" + +#: ../../mod/siteinfo.php:108 +msgid "Site Administrators" +msgstr "" + #: ../../mod/events.php:72 msgid "Event title and start time are required." msgstr "" @@ -5513,8 +6345,8 @@ msgstr "" msgid "Event Starts:" msgstr "" -#: ../../mod/events.php:462 ../../mod/events.php:476 ../../mod/appman.php:83 -#: ../../mod/appman.php:84 +#: ../../mod/events.php:462 ../../mod/events.php:476 ../../mod/appman.php:87 +#: ../../mod/appman.php:88 msgid "Required" msgstr "" @@ -5542,6 +6374,891 @@ msgstr "" msgid "Share this event" msgstr "" +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." +msgstr "" + +#: ../../mod/sources.php:45 +msgid "Source created." +msgstr "" + +#: ../../mod/sources.php:57 +msgid "Source updated." +msgstr "" + +#: ../../mod/sources.php:82 +msgid "*" +msgstr "" + +#: ../../mod/sources.php:89 +msgid "Manage remote sources of content for your channel." +msgstr "" + +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" +msgstr "" + +#: ../../mod/sources.php:101 ../../mod/sources.php:133 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "" + +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Only import content with these words (one per line)" +msgstr "" + +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Leave blank to import all public content" +msgstr "" + +#: ../../mod/sources.php:103 ../../mod/sources.php:137 +#: ../../mod/new_channel.php:110 +msgid "Channel Name" +msgstr "" + +#: ../../mod/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." +msgstr "" + +#: ../../mod/sources.php:130 +msgid "Edit Source" +msgstr "" + +#: ../../mod/sources.php:131 +msgid "Delete Source" +msgstr "" + +#: ../../mod/sources.php:158 +msgid "Source removed" +msgstr "" + +#: ../../mod/sources.php:160 +msgid "Unable to remove source." +msgstr "" + +#: ../../mod/filer.php:49 +msgid "- select -" +msgstr "" + +#: ../../mod/appman.php:27 +msgid "App installed." +msgstr "" + +#: ../../mod/appman.php:35 +msgid "Malformed app." +msgstr "" + +#: ../../mod/appman.php:76 +msgid "Embed code" +msgstr "" + +#: ../../mod/appman.php:82 +msgid "Edit App" +msgstr "" + +#: ../../mod/appman.php:82 +msgid "Create App" +msgstr "" + +#: ../../mod/appman.php:87 +msgid "Name of app" +msgstr "" + +#: ../../mod/appman.php:88 +msgid "Location (URL) of app" +msgstr "" + +#: ../../mod/appman.php:90 +msgid "Photo icon URL" +msgstr "" + +#: ../../mod/appman.php:90 +msgid "80 x 80 pixels - optional" +msgstr "" + +#: ../../mod/appman.php:91 +msgid "Version ID" +msgstr "" + +#: ../../mod/appman.php:92 +msgid "Price of app" +msgstr "" + +#: ../../mod/appman.php:93 +msgid "Location (URL) to purchase app" +msgstr "" + +#: ../../mod/filestorage.php:68 +msgid "Permission Denied." +msgstr "" + +#: ../../mod/filestorage.php:85 +msgid "File not found." +msgstr "" + +#: ../../mod/filestorage.php:121 +msgid "Edit file permissions" +msgstr "" + +#: ../../mod/filestorage.php:129 +msgid "Set/edit permissions" +msgstr "" + +#: ../../mod/filestorage.php:130 +msgid "Include all files and sub folders" +msgstr "" + +#: ../../mod/filestorage.php:131 +msgid "Return to file list" +msgstr "" + +#: ../../mod/filestorage.php:133 +msgid "Copy/paste this code to attach file to a post" +msgstr "" + +#: ../../mod/filestorage.php:134 +msgid "Copy/paste this URL to link file from a web page" +msgstr "" + +#: ../../mod/filestorage.php:171 +msgid "Download" +msgstr "" + +#: ../../mod/filestorage.php:177 +msgid "Used: " +msgstr "" + +#: ../../mod/filestorage.php:178 +msgid "[directory]" +msgstr "" + +#: ../../mod/filestorage.php:180 +msgid "Limit: " +msgstr "" + +#: ../../mod/follow.php:25 +msgid "Channel added." +msgstr "" + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." +msgstr "" + +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "" + +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "" + +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "" + +#: ../../mod/suggest.php:35 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "" + +#: ../../mod/group.php:20 +msgid "Collection created." +msgstr "" + +#: ../../mod/group.php:26 +msgid "Could not create collection." +msgstr "" + +#: ../../mod/group.php:54 +msgid "Collection updated." +msgstr "" + +#: ../../mod/group.php:86 +msgid "Create a collection of channels." +msgstr "" + +#: ../../mod/group.php:87 ../../mod/group.php:183 +msgid "Collection Name: " +msgstr "" + +#: ../../mod/group.php:89 ../../mod/group.php:186 +msgid "Members are visible to other channels" +msgstr "" + +#: ../../mod/group.php:107 +msgid "Collection removed." +msgstr "" + +#: ../../mod/group.php:109 +msgid "Unable to remove collection." +msgstr "" + +#: ../../mod/group.php:182 +msgid "Collection Editor" +msgstr "" + +#: ../../mod/group.php:196 +msgid "Members" +msgstr "" + +#: ../../mod/group.php:198 +msgid "All Connected Channels" +msgstr "" + +#: ../../mod/group.php:231 +msgid "Click on a channel to add or remove." +msgstr "" + +#: ../../mod/tagger.php:98 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "" + +#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55 +msgid "Help:" +msgstr "" + +#: ../../mod/help.php:69 ../../index.php:234 +msgid "Not Found" +msgstr "" + +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "" + +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "" + +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "" + +#: ../../mod/home.php:91 +#, php-format +msgid "Welcome to %s" +msgstr "" + +#: ../../mod/thing.php:98 +msgid "Thing updated" +msgstr "" + +#: ../../mod/thing.php:158 +msgid "Object store: failed" +msgstr "" + +#: ../../mod/thing.php:162 +msgid "Thing added" +msgstr "" + +#: ../../mod/thing.php:182 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "" + +#: ../../mod/thing.php:234 +msgid "Show Thing" +msgstr "" + +#: ../../mod/thing.php:241 +msgid "item not found." +msgstr "" + +#: ../../mod/thing.php:269 +msgid "Edit Thing" +msgstr "" + +#: ../../mod/thing.php:271 ../../mod/thing.php:318 +msgid "Select a profile" +msgstr "" + +#: ../../mod/thing.php:273 ../../mod/thing.php:320 +msgid "Select a category of stuff. e.g. I ______ something" +msgstr "" + +#: ../../mod/thing.php:275 ../../mod/thing.php:321 +msgid "Post an activity" +msgstr "" + +#: ../../mod/thing.php:275 ../../mod/thing.php:321 +msgid "Only sends to viewers of the applicable profile" +msgstr "" + +#: ../../mod/thing.php:277 ../../mod/thing.php:323 +msgid "Name of thing e.g. something" +msgstr "" + +#: ../../mod/thing.php:279 ../../mod/thing.php:324 +msgid "URL of thing (optional)" +msgstr "" + +#: ../../mod/thing.php:281 ../../mod/thing.php:325 +msgid "URL for photo of thing (optional)" +msgstr "" + +#: ../../mod/thing.php:316 +msgid "Add Thing to your Profile" +msgstr "" + +#: ../../mod/import.php:36 +msgid "Nothing to import." +msgstr "" + +#: ../../mod/import.php:58 +msgid "Unable to download data from old server" +msgstr "" + +#: ../../mod/import.php:64 +msgid "Imported file is empty." +msgstr "" + +#: ../../mod/import.php:88 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "" + +#: ../../mod/import.php:106 +msgid "Channel clone failed. Import failed." +msgstr "" + +#: ../../mod/import.php:116 +msgid "Cloned channel not found. Import failed." +msgstr "" + +#: ../../mod/import.php:358 +msgid "Import completed." +msgstr "" + +#: ../../mod/import.php:371 +msgid "You must be logged in to use this feature." +msgstr "" + +#: ../../mod/import.php:376 +msgid "Import Channel" +msgstr "" + +#: ../../mod/import.php:377 +msgid "" +"Use this form to import an existing channel from a different server/hub. You " +"may retrieve the channel identity from the old server/hub via the network or " +"provide an export file. Only identity and connections/relationships will be " +"imported. Importation of content is not yet available." +msgstr "" + +#: ../../mod/import.php:378 +msgid "File to Upload" +msgstr "" + +#: ../../mod/import.php:379 +msgid "Or provide the old server/hub details" +msgstr "" + +#: ../../mod/import.php:380 +msgid "Your old identity address (xyz@example.com)" +msgstr "" + +#: ../../mod/import.php:381 +msgid "Your old login email address" +msgstr "" + +#: ../../mod/import.php:382 +msgid "Your old login password" +msgstr "" + +#: ../../mod/import.php:383 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be " +"able to post from either location, but only one can be marked as the primary " +"location for files, photos, and media." +msgstr "" + +#: ../../mod/import.php:384 +msgid "Make this hub my primary location" +msgstr "" + +#: ../../mod/invite.php:25 +msgid "Total invitation limit exceeded." +msgstr "" + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "" + +#: ../../mod/invite.php:76 +msgid "Please join us on Red" +msgstr "" + +#: ../../mod/invite.php:87 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "" + +#: ../../mod/invite.php:92 +#, php-format +msgid "%s : Message delivery failed." +msgstr "" + +#: ../../mod/invite.php:96 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/invite.php:115 +msgid "You have no more invitations available" +msgstr "" + +#: ../../mod/invite.php:141 +msgid "Send invitations" +msgstr "" + +#: ../../mod/invite.php:142 +msgid "Enter email addresses, one per line:" +msgstr "" + +#: ../../mod/invite.php:143 ../../mod/mail.php:216 ../../mod/mail.php:328 +msgid "Your message:" +msgstr "" + +#: ../../mod/invite.php:144 +msgid "" +"You are cordially invited to join me and some other close friends on the Red " +"Matrix - a revolutionary new decentralised communication and information " +"tool." +msgstr "" + +#: ../../mod/invite.php:146 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "" + +#: ../../mod/invite.php:147 +msgid "Please visit my channel at" +msgstr "" + +#: ../../mod/invite.php:151 +msgid "" +"Once you have registered (on ANY Red Matrix site - they are all inter-" +"connected), please connect with my Red Matrix channel address:" +msgstr "" + +#: ../../mod/invite.php:153 +msgid "Click the [Register] link on the following page to join." +msgstr "" + +#: ../../mod/invite.php:155 +msgid "" +"For more information about the Red Matrix Project and why it has the " +"potential to change the internet as we know it, please visit http://getzot." +"com" +msgstr "" + +#: ../../mod/item.php:147 +msgid "Unable to locate original post." +msgstr "" + +#: ../../mod/item.php:352 +msgid "Empty post discarded." +msgstr "" + +#: ../../mod/item.php:392 +msgid "Executable content type not permitted to this channel." +msgstr "" + +#: ../../mod/item.php:806 +msgid "System error. Post not saved." +msgstr "" + +#: ../../mod/item.php:1249 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "" + +#: ../../mod/item.php:1255 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "" + +#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 +#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 +msgid "[Embedded content - reload page to view]" +msgstr "" + +#: ../../mod/layouts.php:62 +msgid "Help with this feature" +msgstr "" + +#: ../../mod/layouts.php:84 +msgid "Layout Name" +msgstr "" + +#: ../../mod/lockview.php:30 ../../mod/lockview.php:36 +msgid "Remote privacy information not available." +msgstr "" + +#: ../../mod/lockview.php:45 +msgid "Visible to:" +msgstr "" + +#: ../../mod/viewconnections.php:58 +msgid "No connections." +msgstr "" + +#: ../../mod/viewconnections.php:70 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "" + +#: ../../mod/viewconnections.php:85 +msgid "View Connnections" +msgstr "" + +#: ../../mod/lostpass.php:15 +msgid "No valid account found." +msgstr "" + +#: ../../mod/lostpass.php:29 +msgid "Password reset request issued. Check your email." +msgstr "" + +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#, php-format +msgid "Site Member (%s)" +msgstr "" + +#: ../../mod/lostpass.php:40 +#, php-format +msgid "Password reset requested at %s" +msgstr "" + +#: ../../mod/lostpass.php:63 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "" + +#: ../../mod/lostpass.php:85 ../../boot.php:1461 +msgid "Password Reset" +msgstr "" + +#: ../../mod/lostpass.php:86 +msgid "Your password has been reset as requested." +msgstr "" + +#: ../../mod/lostpass.php:87 +msgid "Your new password is" +msgstr "" + +#: ../../mod/lostpass.php:88 +msgid "Save or copy your new password - and then" +msgstr "" + +#: ../../mod/lostpass.php:89 +msgid "click here to login" +msgstr "" + +#: ../../mod/lostpass.php:90 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "" + +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has changed at %s" +msgstr "" + +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "" + +#: ../../mod/lostpass.php:123 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "" + +#: ../../mod/lostpass.php:124 +msgid "Email Address" +msgstr "" + +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "" + +#: ../../mod/magic.php:70 +msgid "Hub not found." +msgstr "" + +#: ../../mod/vote.php:97 +msgid "Total votes" +msgstr "" + +#: ../../mod/vote.php:98 +msgid "Average Rating" +msgstr "" + +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." +msgstr "" + +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." +msgstr "" + +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." +msgstr "" + +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "" + +#: ../../mod/mail.php:121 ../../mod/message.php:31 +msgid "Messages" +msgstr "" + +#: ../../mod/mail.php:132 +msgid "Message deleted." +msgstr "" + +#: ../../mod/mail.php:149 +msgid "Message recalled." +msgstr "" + +#: ../../mod/mail.php:206 +msgid "Send Private Message" +msgstr "" + +#: ../../mod/mail.php:207 ../../mod/mail.php:323 +msgid "To:" +msgstr "" + +#: ../../mod/mail.php:212 ../../mod/mail.php:325 +msgid "Subject:" +msgstr "" + +#: ../../mod/mail.php:249 +msgid "Message not found." +msgstr "" + +#: ../../mod/mail.php:292 ../../mod/message.php:72 +msgid "Delete message" +msgstr "" + +#: ../../mod/mail.php:293 +msgid "Recall message" +msgstr "" + +#: ../../mod/mail.php:295 +msgid "Message has been recalled." +msgstr "" + +#: ../../mod/mail.php:312 +msgid "Private Conversation" +msgstr "" + +#: ../../mod/mail.php:316 +msgid "Delete conversation" +msgstr "" + +#: ../../mod/mail.php:318 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "" + +#: ../../mod/mail.php:322 +msgid "Send Reply" +msgstr "" + +#: ../../mod/manage.php:64 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "" + +#: ../../mod/manage.php:72 +msgid "Create a new channel" +msgstr "" + +#: ../../mod/manage.php:77 +msgid "Channel Manager" +msgstr "" + +#: ../../mod/manage.php:78 +msgid "Current Channel" +msgstr "" + +#: ../../mod/manage.php:80 +msgid "Attach to one of your channels by selecting it." +msgstr "" + +#: ../../mod/manage.php:81 +msgid "Default Channel" +msgstr "" + +#: ../../mod/manage.php:82 +msgid "Make Default" +msgstr "" + +#: ../../mod/wall_upload.php:34 +msgid "Wall Photos" +msgstr "" + +#: ../../mod/match.php:16 +msgid "Profile Match" +msgstr "" + +#: ../../mod/match.php:24 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "" + +#: ../../mod/match.php:61 +msgid "is interested in:" +msgstr "" + +#: ../../mod/match.php:69 +msgid "No matches" +msgstr "" + +#: ../../mod/menu.php:21 +msgid "Menu updated." +msgstr "" + +#: ../../mod/menu.php:25 +msgid "Unable to update menu." +msgstr "" + +#: ../../mod/menu.php:30 +msgid "Menu created." +msgstr "" + +#: ../../mod/menu.php:34 +msgid "Unable to create menu." +msgstr "" + +#: ../../mod/menu.php:57 +msgid "Manage Menus" +msgstr "" + +#: ../../mod/menu.php:60 +msgid "Drop" +msgstr "" + +#: ../../mod/menu.php:62 +msgid "Create a new menu" +msgstr "" + +#: ../../mod/menu.php:63 +msgid "Delete this menu" +msgstr "" + +#: ../../mod/menu.php:64 ../../mod/menu.php:109 +msgid "Edit menu contents" +msgstr "" + +#: ../../mod/menu.php:65 +msgid "Edit this menu" +msgstr "" + +#: ../../mod/menu.php:80 +msgid "New Menu" +msgstr "" + +#: ../../mod/menu.php:81 ../../mod/menu.php:110 +msgid "Menu name" +msgstr "" + +#: ../../mod/menu.php:81 ../../mod/menu.php:110 +msgid "Must be unique, only seen by you" +msgstr "" + +#: ../../mod/menu.php:82 ../../mod/menu.php:111 +msgid "Menu title" +msgstr "" + +#: ../../mod/menu.php:82 ../../mod/menu.php:111 +msgid "Menu title as seen by others" +msgstr "" + +#: ../../mod/menu.php:83 ../../mod/menu.php:112 +msgid "Allow bookmarks" +msgstr "" + +#: ../../mod/menu.php:83 ../../mod/menu.php:112 +msgid "Menu may be used to store saved bookmarks" +msgstr "" + +#: ../../mod/menu.php:98 +msgid "Menu deleted." +msgstr "" + +#: ../../mod/menu.php:100 +msgid "Menu could not be deleted." +msgstr "" + +#: ../../mod/menu.php:106 +msgid "Edit Menu" +msgstr "" + +#: ../../mod/menu.php:108 +msgid "Add or remove entries to this menu" +msgstr "" + +#: ../../mod/message.php:41 +msgid "Conversation removed." +msgstr "" + +#: ../../mod/message.php:56 +msgid "No messages." +msgstr "" + +#: ../../mod/message.php:74 +msgid "D, d M Y - g:i A" +msgstr "" + +#: ../../mod/new_channel.php:107 +msgid "Add a Channel" +msgstr "" + +#: ../../mod/new_channel.php:108 +msgid "" +"A channel is your own collection of related web pages. A channel can be used " +"to hold social network profiles, blogs, conversation groups and forums, " +"celebrity pages, and much more. You may create as many channels as your " +"service provider allows." +msgstr "" + +#: ../../mod/new_channel.php:111 +msgid "" +"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " +"Group\" " +msgstr "" + +#: ../../mod/new_channel.php:112 +msgid "Choose a short nickname" +msgstr "" + +#: ../../mod/new_channel.php:113 +msgid "" +"Your nickname will be used to create an easily remembered channel address " +"(like an email address) which you can share with others." +msgstr "" + +#: ../../mod/new_channel.php:114 +msgid "" +"Or import an existing channel from another location" +msgstr "" + #: ../../mod/photos.php:77 msgid "Page owner information could not be retrieved." msgstr "" @@ -5669,1767 +7386,199 @@ msgstr "" msgid "Recent Photos" msgstr "" -#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55 -msgid "Help:" +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." msgstr "" -#: ../../mod/help.php:69 ../../index.php:234 -msgid "Not Found" +#: ../../mod/notifications.php:35 +msgid "Discard" msgstr "" -#: ../../mod/ping.php:192 -msgid "sent you a private message" +#: ../../mod/notifications.php:94 ../../mod/notify.php:54 +msgid "No more system notifications." msgstr "" -#: ../../mod/ping.php:250 -msgid "added your channel" +#: ../../mod/notifications.php:98 ../../mod/notify.php:58 +msgid "System Notifications" msgstr "" -#: ../../mod/ping.php:294 -msgid "posted an event" +#: ../../mod/oexchange.php:23 +msgid "Unable to find your hub." msgstr "" -#: ../../mod/lostpass.php:15 -msgid "No valid account found." +#: ../../mod/oexchange.php:37 +msgid "Post successful." msgstr "" -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "" - -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 -#, php-format -msgid "Site Member (%s)" -msgstr "" - -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "" - -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "" - -#: ../../mod/lostpass.php:85 ../../boot.php:1461 -msgid "Password Reset" -msgstr "" - -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." -msgstr "" - -#: ../../mod/lostpass.php:87 -msgid "Your new password is" -msgstr "" - -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" -msgstr "" - -#: ../../mod/lostpass.php:89 -msgid "click here to login" -msgstr "" - -#: ../../mod/lostpass.php:90 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "" - -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has changed at %s" -msgstr "" - -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "" - -#: ../../mod/lostpass.php:123 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "" - -#: ../../mod/lostpass.php:124 -msgid "Email Address" -msgstr "" - -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "" - -#: ../../mod/removeme.php:49 -msgid "Remove This Channel" -msgstr "" - -#: ../../mod/removeme.php:50 -msgid "" -"This will completely remove this channel from the network. Once this has " -"been done it is not recoverable." -msgstr "" - -#: ../../mod/removeme.php:51 -msgid "Please enter your password for verification:" -msgstr "" - -#: ../../mod/removeme.php:52 -msgid "Remove this channel and all its clones from the network" -msgstr "" - -#: ../../mod/removeme.php:52 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "" - -#: ../../mod/removeme.php:53 -msgid "Remove Channel" -msgstr "" - -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "" - -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "" - -#: ../../mod/delegate.php:123 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "" - -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "" - -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "" - -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "" - -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "" - -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "" - -#: ../../mod/layouts.php:62 -msgid "Help with this feature" -msgstr "" - -#: ../../mod/layouts.php:84 -msgid "Layout Name" -msgstr "" - -#: ../../mod/connections.php:191 ../../mod/connections.php:291 -msgid "Blocked" -msgstr "" - -#: ../../mod/connections.php:196 ../../mod/connections.php:298 -msgid "Ignored" -msgstr "" - -#: ../../mod/connections.php:201 ../../mod/connections.php:312 -msgid "Hidden" -msgstr "" - -#: ../../mod/connections.php:206 ../../mod/connections.php:305 -msgid "Archived" -msgstr "" - -#: ../../mod/connections.php:230 ../../mod/connections.php:244 -msgid "All" -msgstr "" - -#: ../../mod/connections.php:239 ../../mod/connections.php:319 -msgid "Unconnected" -msgstr "" - -#: ../../mod/connections.php:269 -msgid "Suggest new connections" -msgstr "" - -#: ../../mod/connections.php:272 -msgid "New Connections" -msgstr "" - -#: ../../mod/connections.php:275 -msgid "Show pending (new) connections" -msgstr "" - -#: ../../mod/connections.php:281 -msgid "Show all connections" -msgstr "" - -#: ../../mod/connections.php:284 -msgid "Unblocked" -msgstr "" - -#: ../../mod/connections.php:287 -msgid "Only show unblocked connections" -msgstr "" - -#: ../../mod/connections.php:294 -msgid "Only show blocked connections" -msgstr "" - -#: ../../mod/connections.php:301 -msgid "Only show ignored connections" -msgstr "" - -#: ../../mod/connections.php:308 -msgid "Only show archived connections" -msgstr "" - -#: ../../mod/connections.php:315 -msgid "Only show hidden connections" -msgstr "" - -#: ../../mod/connections.php:322 -msgid "Only show one-way connections" -msgstr "" - -#: ../../mod/connections.php:367 -#, php-format -msgid "%1$s [%2$s]" -msgstr "" - -#: ../../mod/connections.php:368 -msgid "Edit contact" -msgstr "" - -#: ../../mod/connections.php:389 -msgid "Search your connections" -msgstr "" - -#: ../../mod/connections.php:390 -msgid "Finding: " -msgstr "" - -#: ../../mod/import.php:36 -msgid "Nothing to import." -msgstr "" - -#: ../../mod/import.php:58 -msgid "Unable to download data from old server" -msgstr "" - -#: ../../mod/import.php:64 -msgid "Imported file is empty." -msgstr "" - -#: ../../mod/import.php:88 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "" - -#: ../../mod/import.php:106 -msgid "Channel clone failed. Import failed." -msgstr "" - -#: ../../mod/import.php:116 -msgid "Cloned channel not found. Import failed." -msgstr "" - -#: ../../mod/import.php:358 -msgid "Import completed." -msgstr "" - -#: ../../mod/import.php:371 -msgid "You must be logged in to use this feature." -msgstr "" - -#: ../../mod/import.php:376 -msgid "Import Channel" -msgstr "" - -#: ../../mod/import.php:377 -msgid "" -"Use this form to import an existing channel from a different server/hub. You " -"may retrieve the channel identity from the old server/hub via the network or " -"provide an export file. Only identity and connections/relationships will be " -"imported. Importation of content is not yet available." -msgstr "" - -#: ../../mod/import.php:378 -msgid "File to Upload" -msgstr "" - -#: ../../mod/import.php:379 -msgid "Or provide the old server/hub details" -msgstr "" - -#: ../../mod/import.php:380 -msgid "Your old identity address (xyz@example.com)" -msgstr "" - -#: ../../mod/import.php:381 -msgid "Your old login email address" -msgstr "" - -#: ../../mod/import.php:382 -msgid "Your old login password" -msgstr "" - -#: ../../mod/import.php:383 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be " -"able to post from either location, but only one can be marked as the primary " -"location for files, photos, and media." -msgstr "" - -#: ../../mod/import.php:384 -msgid "Make this hub my primary location" -msgstr "" - -#: ../../mod/mood.php:138 -msgid "Mood" -msgstr "" - -#: ../../mod/mood.php:139 -msgid "Set your current mood and tell your friends" -msgstr "" - -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "" - -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "" - -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "" - -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "" - -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "" - -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "" - -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "" - -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "" - -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "" - -#: ../../mod/editblock.php:77 -msgid "Edit Block" -msgstr "" - -#: ../../mod/editblock.php:87 -msgid "Delete block?" -msgstr "" - -#: ../../mod/editblock.php:153 -msgid "Delete Block" -msgstr "" - -#: ../../mod/match.php:16 -msgid "Profile Match" -msgstr "" - -#: ../../mod/match.php:24 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "" - -#: ../../mod/match.php:61 -msgid "is interested in:" -msgstr "" - -#: ../../mod/match.php:69 -msgid "No matches" -msgstr "" - -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "" - -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "" - -#: ../../mod/editwebpage.php:106 -msgid "Edit Webpage" -msgstr "" - -#: ../../mod/editwebpage.php:116 -msgid "Delete webpage?" -msgstr "" - -#: ../../mod/editwebpage.php:187 -msgid "Delete Webpage" -msgstr "" - -#: ../../mod/profiles.php:18 ../../mod/profiles.php:138 -#: ../../mod/profiles.php:168 ../../mod/profiles.php:463 -msgid "Profile not found." -msgstr "" - -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "" - -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "" - -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "" - -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "" - -#: ../../mod/profiles.php:178 -msgid "Profile Name is required." -msgstr "" - -#: ../../mod/profiles.php:294 -msgid "Marital Status" -msgstr "" - -#: ../../mod/profiles.php:298 -msgid "Romantic Partner" -msgstr "" - -#: ../../mod/profiles.php:302 -msgid "Likes" -msgstr "" - -#: ../../mod/profiles.php:306 -msgid "Dislikes" -msgstr "" - -#: ../../mod/profiles.php:310 -msgid "Work/Employment" -msgstr "" - -#: ../../mod/profiles.php:313 -msgid "Religion" -msgstr "" - -#: ../../mod/profiles.php:317 -msgid "Political Views" -msgstr "" - -#: ../../mod/profiles.php:321 -msgid "Gender" -msgstr "" - -#: ../../mod/profiles.php:325 -msgid "Sexual Preference" -msgstr "" - -#: ../../mod/profiles.php:329 -msgid "Homepage" -msgstr "" - -#: ../../mod/profiles.php:333 -msgid "Interests" -msgstr "" - -#: ../../mod/profiles.php:337 ../../mod/admin.php:891 -msgid "Address" -msgstr "" - -#: ../../mod/profiles.php:427 -msgid "Profile updated." -msgstr "" - -#: ../../mod/profiles.php:482 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "" - -#: ../../mod/profiles.php:505 -msgid "Edit Profile Details" -msgstr "" - -#: ../../mod/profiles.php:507 -msgid "View this profile" -msgstr "" - -#: ../../mod/profiles.php:508 -msgid "Change Profile Photo" -msgstr "" - -#: ../../mod/profiles.php:509 -msgid "Create a new profile using these settings" -msgstr "" - -#: ../../mod/profiles.php:510 -msgid "Clone this profile" -msgstr "" - -#: ../../mod/profiles.php:511 -msgid "Delete this profile" -msgstr "" - -#: ../../mod/profiles.php:512 -msgid "Profile Name:" -msgstr "" - -#: ../../mod/profiles.php:513 -msgid "Your Full Name:" -msgstr "" - -#: ../../mod/profiles.php:514 -msgid "Title/Description:" -msgstr "" - -#: ../../mod/profiles.php:515 -msgid "Your Gender:" -msgstr "" - -#: ../../mod/profiles.php:516 -#, php-format -msgid "Birthday (%s):" -msgstr "" - -#: ../../mod/profiles.php:517 -msgid "Street Address:" -msgstr "" - -#: ../../mod/profiles.php:518 -msgid "Locality/City:" -msgstr "" - -#: ../../mod/profiles.php:519 -msgid "Postal/Zip Code:" -msgstr "" - -#: ../../mod/profiles.php:520 -msgid "Country:" -msgstr "" - -#: ../../mod/profiles.php:521 -msgid "Region/State:" -msgstr "" - -#: ../../mod/profiles.php:522 -msgid " Marital Status:" -msgstr "" - -#: ../../mod/profiles.php:523 -msgid "Who: (if applicable)" -msgstr "" - -#: ../../mod/profiles.php:524 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "" - -#: ../../mod/profiles.php:525 -msgid "Since [date]:" -msgstr "" - -#: ../../mod/profiles.php:527 -msgid "Homepage URL:" -msgstr "" - -#: ../../mod/profiles.php:530 -msgid "Religious Views:" -msgstr "" - -#: ../../mod/profiles.php:531 -msgid "Keywords:" -msgstr "" - -#: ../../mod/profiles.php:534 -msgid "Example: fishing photography software" -msgstr "" - -#: ../../mod/profiles.php:535 -msgid "Used in directory listings" -msgstr "" - -#: ../../mod/profiles.php:536 -msgid "Tell us about yourself..." -msgstr "" - -#: ../../mod/profiles.php:537 -msgid "Hobbies/Interests" -msgstr "" - -#: ../../mod/profiles.php:538 -msgid "Contact information and Social Networks" -msgstr "" - -#: ../../mod/profiles.php:539 -msgid "My other channels" -msgstr "" - -#: ../../mod/profiles.php:540 -msgid "Musical interests" -msgstr "" - -#: ../../mod/profiles.php:541 -msgid "Books, literature" -msgstr "" - -#: ../../mod/profiles.php:542 -msgid "Television" -msgstr "" - -#: ../../mod/profiles.php:543 -msgid "Film/dance/culture/entertainment" -msgstr "" - -#: ../../mod/profiles.php:544 -msgid "Love/romance" -msgstr "" - -#: ../../mod/profiles.php:545 -msgid "Work/employment" -msgstr "" - -#: ../../mod/profiles.php:546 -msgid "School/education" -msgstr "" - -#: ../../mod/profiles.php:551 -msgid "" -"This is your public profile.
    It may " -"be visible to anybody using the internet." -msgstr "" - -#: ../../mod/profiles.php:600 -msgid "Edit/Manage Profiles" -msgstr "" - -#: ../../mod/profiles.php:601 -msgid "Add profile things" -msgstr "" - -#: ../../mod/profiles.php:602 -msgid "Include desirable objects in your profile" -msgstr "" - -#: ../../mod/menu.php:21 -msgid "Menu updated." -msgstr "" - -#: ../../mod/menu.php:25 -msgid "Unable to update menu." -msgstr "" - -#: ../../mod/menu.php:30 -msgid "Menu created." -msgstr "" - -#: ../../mod/menu.php:34 -msgid "Unable to create menu." -msgstr "" - -#: ../../mod/menu.php:57 -msgid "Manage Menus" -msgstr "" - -#: ../../mod/menu.php:60 -msgid "Drop" -msgstr "" - -#: ../../mod/menu.php:62 -msgid "Create a new menu" -msgstr "" - -#: ../../mod/menu.php:63 -msgid "Delete this menu" -msgstr "" - -#: ../../mod/menu.php:64 ../../mod/menu.php:109 -msgid "Edit menu contents" -msgstr "" - -#: ../../mod/menu.php:65 -msgid "Edit this menu" -msgstr "" - -#: ../../mod/menu.php:80 -msgid "New Menu" -msgstr "" - -#: ../../mod/menu.php:81 ../../mod/menu.php:110 -msgid "Menu name" -msgstr "" - -#: ../../mod/menu.php:81 ../../mod/menu.php:110 -msgid "Must be unique, only seen by you" -msgstr "" - -#: ../../mod/menu.php:82 ../../mod/menu.php:111 -msgid "Menu title" -msgstr "" - -#: ../../mod/menu.php:82 ../../mod/menu.php:111 -msgid "Menu title as seen by others" -msgstr "" - -#: ../../mod/menu.php:83 ../../mod/menu.php:112 -msgid "Allow bookmarks" -msgstr "" - -#: ../../mod/menu.php:83 ../../mod/menu.php:112 -msgid "Menu may be used to store saved bookmarks" -msgstr "" - -#: ../../mod/menu.php:98 -msgid "Menu deleted." -msgstr "" - -#: ../../mod/menu.php:100 -msgid "Menu could not be deleted." -msgstr "" - -#: ../../mod/menu.php:106 -msgid "Edit Menu" -msgstr "" - -#: ../../mod/menu.php:108 -msgid "Add or remove entries to this menu" +#: ../../mod/zfinger.php:23 +msgid "invalid target signature" msgstr "" #: ../../mod/openid.php:26 msgid "OpenID protocol error. No ID returned." msgstr "" -#: ../../mod/cloud.php:112 -msgid "Red Matrix - Guests: Username: {your email address}, Password: +++" +#: ../../view/theme/apw/php/config.php:202 +#: ../../view/theme/apw/php/config.php:236 +msgid "Schema Default" msgstr "" -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." +#: ../../view/theme/apw/php/config.php:203 +msgid "Sans-Serif" msgstr "" -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "" - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "" - -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "" - -#: ../../mod/mail.php:132 -msgid "Message deleted." -msgstr "" - -#: ../../mod/mail.php:149 -msgid "Message recalled." -msgstr "" - -#: ../../mod/mail.php:206 -msgid "Send Private Message" -msgstr "" - -#: ../../mod/mail.php:207 ../../mod/mail.php:323 -msgid "To:" -msgstr "" - -#: ../../mod/mail.php:212 ../../mod/mail.php:325 -msgid "Subject:" -msgstr "" - -#: ../../mod/mail.php:216 ../../mod/mail.php:328 ../../mod/invite.php:143 -msgid "Your message:" -msgstr "" - -#: ../../mod/mail.php:249 -msgid "Message not found." -msgstr "" - -#: ../../mod/mail.php:293 -msgid "Recall message" -msgstr "" - -#: ../../mod/mail.php:295 -msgid "Message has been recalled." -msgstr "" - -#: ../../mod/mail.php:312 -msgid "Private Conversation" -msgstr "" - -#: ../../mod/mail.php:316 -msgid "Delete conversation" -msgstr "" - -#: ../../mod/mail.php:318 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "" - -#: ../../mod/mail.php:322 -msgid "Send Reply" -msgstr "" - -#: ../../mod/appman.php:27 -msgid "App installed." -msgstr "" - -#: ../../mod/appman.php:35 -msgid "Malformed app." -msgstr "" - -#: ../../mod/appman.php:72 -msgid "Embed code" -msgstr "" - -#: ../../mod/appman.php:78 -msgid "Create App" -msgstr "" - -#: ../../mod/appman.php:83 -msgid "Name of app" -msgstr "" - -#: ../../mod/appman.php:84 -msgid "Location (URL) of app" -msgstr "" - -#: ../../mod/appman.php:85 ../../mod/rbmark.php:95 -msgid "Description" -msgstr "" - -#: ../../mod/appman.php:86 -msgid "Photo icon URL" -msgstr "" - -#: ../../mod/appman.php:86 -msgid "80 x 80 pixels - optional" -msgstr "" - -#: ../../mod/appman.php:87 -msgid "Version ID" -msgstr "" - -#: ../../mod/appman.php:88 -msgid "Price of app" -msgstr "" - -#: ../../mod/appman.php:89 -msgid "Location (URL) to purchase app" -msgstr "" - -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "" - -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "" - -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "" - -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "" - -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "" - -#: ../../mod/viewconnections.php:58 -msgid "No connections." -msgstr "" - -#: ../../mod/viewconnections.php:70 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "" - -#: ../../mod/viewconnections.php:85 -msgid "View Connnections" -msgstr "" - -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "" - -#: ../../mod/admin.php:92 ../../mod/admin.php:440 -msgid "Site" -msgstr "" - -#: ../../mod/admin.php:93 -msgid "Accounts" -msgstr "" - -#: ../../mod/admin.php:94 ../../mod/admin.php:883 -msgid "Channels" -msgstr "" - -#: ../../mod/admin.php:95 ../../mod/admin.php:974 ../../mod/admin.php:1016 -msgid "Plugins" -msgstr "" - -#: ../../mod/admin.php:96 ../../mod/admin.php:1179 ../../mod/admin.php:1215 -msgid "Themes" -msgstr "" - -#: ../../mod/admin.php:97 ../../mod/admin.php:540 -msgid "Server" -msgstr "" - -#: ../../mod/admin.php:98 -msgid "DB updates" -msgstr "" - -#: ../../mod/admin.php:112 ../../mod/admin.php:119 ../../mod/admin.php:1302 -msgid "Logs" -msgstr "" - -#: ../../mod/admin.php:118 -msgid "Plugin Features" -msgstr "" - -#: ../../mod/admin.php:120 -msgid "User registrations waiting for confirmation" -msgstr "" - -#: ../../mod/admin.php:197 -msgid "Message queues" -msgstr "" - -#: ../../mod/admin.php:202 ../../mod/admin.php:439 ../../mod/admin.php:539 -#: ../../mod/admin.php:748 ../../mod/admin.php:882 ../../mod/admin.php:973 -#: ../../mod/admin.php:1015 ../../mod/admin.php:1178 ../../mod/admin.php:1214 -#: ../../mod/admin.php:1301 -msgid "Administration" -msgstr "" - -#: ../../mod/admin.php:203 -msgid "Summary" -msgstr "" - -#: ../../mod/admin.php:205 -msgid "Registered users" -msgstr "" - -#: ../../mod/admin.php:207 ../../mod/admin.php:543 -msgid "Pending registrations" -msgstr "" - -#: ../../mod/admin.php:208 -msgid "Version" -msgstr "" - -#: ../../mod/admin.php:210 ../../mod/admin.php:544 -msgid "Active plugins" -msgstr "" - -#: ../../mod/admin.php:360 -msgid "Site settings updated." -msgstr "" - -#: ../../mod/admin.php:391 -msgid "No special theme for accessibility" -msgstr "" - -#: ../../mod/admin.php:420 -msgid "Yes - with approval" -msgstr "" - -#: ../../mod/admin.php:426 -msgid "My site is not a public server" -msgstr "" - -#: ../../mod/admin.php:427 -msgid "My site has paid access only" -msgstr "" - -#: ../../mod/admin.php:428 -msgid "My site has free access only" -msgstr "" - -#: ../../mod/admin.php:429 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "" - -#: ../../mod/admin.php:442 ../../mod/register.php:189 -msgid "Registration" -msgstr "" - -#: ../../mod/admin.php:443 -msgid "File upload" -msgstr "" - -#: ../../mod/admin.php:444 -msgid "Policies" -msgstr "" - -#: ../../mod/admin.php:449 -msgid "Site name" -msgstr "" - -#: ../../mod/admin.php:450 -msgid "Banner/Logo" -msgstr "" - -#: ../../mod/admin.php:451 -msgid "Administrator Information" -msgstr "" - -#: ../../mod/admin.php:451 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "" - -#: ../../mod/admin.php:452 -msgid "System language" -msgstr "" - -#: ../../mod/admin.php:453 -msgid "System theme" -msgstr "" - -#: ../../mod/admin.php:453 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "" - -#: ../../mod/admin.php:454 -msgid "Mobile system theme" -msgstr "" - -#: ../../mod/admin.php:454 -msgid "Theme for mobile devices" -msgstr "" - -#: ../../mod/admin.php:455 -msgid "Accessibility system theme" -msgstr "" - -#: ../../mod/admin.php:455 -msgid "Accessibility theme" -msgstr "" - -#: ../../mod/admin.php:456 -msgid "Channel to use for this website's static pages" -msgstr "" - -#: ../../mod/admin.php:456 -msgid "Site Channel" -msgstr "" - -#: ../../mod/admin.php:458 -msgid "Maximum image size" -msgstr "" - -#: ../../mod/admin.php:458 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "" - -#: ../../mod/admin.php:459 -msgid "Does this site allow new member registration?" -msgstr "" - -#: ../../mod/admin.php:460 -msgid "Which best describes the types of account offered by this hub?" -msgstr "" - -#: ../../mod/admin.php:461 -msgid "Register text" -msgstr "" - -#: ../../mod/admin.php:461 -msgid "Will be displayed prominently on the registration page." -msgstr "" - -#: ../../mod/admin.php:462 -msgid "Accounts abandoned after x days" -msgstr "" - -#: ../../mod/admin.php:462 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "" - -#: ../../mod/admin.php:463 -msgid "Allowed friend domains" -msgstr "" - -#: ../../mod/admin.php:463 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "" - -#: ../../mod/admin.php:464 -msgid "Allowed email domains" -msgstr "" - -#: ../../mod/admin.php:464 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "" - -#: ../../mod/admin.php:465 -msgid "Block public" -msgstr "" - -#: ../../mod/admin.php:465 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "" - -#: ../../mod/admin.php:466 -msgid "Force publish" -msgstr "" - -#: ../../mod/admin.php:466 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "" - -#: ../../mod/admin.php:467 -msgid "Disable discovery tab" -msgstr "" - -#: ../../mod/admin.php:467 -msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." -msgstr "" - -#: ../../mod/admin.php:468 -msgid "No login on Homepage" -msgstr "" - -#: ../../mod/admin.php:468 -msgid "" -"Check to hide the login form from your sites homepage when visitors arrive " -"who are not logged in (e.g. when you put the content of the homepage in via " -"the site channel)." -msgstr "" - -#: ../../mod/admin.php:470 -msgid "Proxy user" -msgstr "" - -#: ../../mod/admin.php:471 -msgid "Proxy URL" -msgstr "" - -#: ../../mod/admin.php:472 -msgid "Network timeout" -msgstr "" - -#: ../../mod/admin.php:472 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" - -#: ../../mod/admin.php:473 -msgid "Delivery interval" -msgstr "" - -#: ../../mod/admin.php:473 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "" - -#: ../../mod/admin.php:474 -msgid "Poll interval" -msgstr "" - -#: ../../mod/admin.php:474 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "" - -#: ../../mod/admin.php:475 -msgid "Maximum Load Average" -msgstr "" - -#: ../../mod/admin.php:475 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "" - -#: ../../mod/admin.php:531 -msgid "No server found" -msgstr "" - -#: ../../mod/admin.php:538 ../../mod/admin.php:762 -msgid "ID" -msgstr "" - -#: ../../mod/admin.php:538 -msgid "for channel" -msgstr "" - -#: ../../mod/admin.php:538 -msgid "on server" -msgstr "" - -#: ../../mod/admin.php:538 -msgid "Status" -msgstr "" - -#: ../../mod/admin.php:559 -msgid "Update has been marked successful" -msgstr "" - -#: ../../mod/admin.php:569 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "" - -#: ../../mod/admin.php:572 -#, php-format -msgid "Update %s was successfully applied." -msgstr "" - -#: ../../mod/admin.php:576 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "" - -#: ../../mod/admin.php:579 -#, php-format -msgid "Update function %s could not be found." -msgstr "" - -#: ../../mod/admin.php:594 -msgid "No failed updates." -msgstr "" - -#: ../../mod/admin.php:598 -msgid "Failed Updates" -msgstr "" - -#: ../../mod/admin.php:600 -msgid "Mark success (if update was manually applied)" -msgstr "" - -#: ../../mod/admin.php:601 -msgid "Attempt to execute this update step automatically" -msgstr "" - -#: ../../mod/admin.php:627 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:634 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:665 -msgid "Account not found" -msgstr "" - -#: ../../mod/admin.php:676 -#, php-format -msgid "User '%s' deleted" -msgstr "" - -#: ../../mod/admin.php:685 -#, php-format -msgid "User '%s' unblocked" -msgstr "" - -#: ../../mod/admin.php:685 -#, php-format -msgid "User '%s' blocked" -msgstr "" - -#: ../../mod/admin.php:749 ../../mod/admin.php:761 -msgid "Users" -msgstr "" - -#: ../../mod/admin.php:751 ../../mod/admin.php:885 -msgid "select all" -msgstr "" - -#: ../../mod/admin.php:752 -msgid "User registrations waiting for confirm" -msgstr "" - -#: ../../mod/admin.php:753 -msgid "Request date" -msgstr "" - -#: ../../mod/admin.php:754 -msgid "No registrations." -msgstr "" - -#: ../../mod/admin.php:755 -msgid "Approve" -msgstr "" - -#: ../../mod/admin.php:756 -msgid "Deny" -msgstr "" - -#: ../../mod/admin.php:762 -msgid "Register date" -msgstr "" - -#: ../../mod/admin.php:762 -msgid "Last login" -msgstr "" - -#: ../../mod/admin.php:762 -msgid "Expires" -msgstr "" - -#: ../../mod/admin.php:762 -msgid "Service Class" -msgstr "" - -#: ../../mod/admin.php:764 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../mod/admin.php:765 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../mod/admin.php:797 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channelss censored/uncensored" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:804 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:823 -msgid "Channel not found" -msgstr "" - -#: ../../mod/admin.php:834 -#, php-format -msgid "Channel '%s' deleted" -msgstr "" - -#: ../../mod/admin.php:844 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "" - -#: ../../mod/admin.php:844 -#, php-format -msgid "Channel '%s' censored" -msgstr "" - -#: ../../mod/admin.php:887 -msgid "Censor" -msgstr "" - -#: ../../mod/admin.php:888 -msgid "Uncensor" -msgstr "" - -#: ../../mod/admin.php:891 -msgid "UID" -msgstr "" - -#: ../../mod/admin.php:893 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../mod/admin.php:894 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../mod/admin.php:933 -#, php-format -msgid "Plugin %s disabled." -msgstr "" - -#: ../../mod/admin.php:937 -#, php-format -msgid "Plugin %s enabled." -msgstr "" - -#: ../../mod/admin.php:947 ../../mod/admin.php:1149 -msgid "Disable" -msgstr "" - -#: ../../mod/admin.php:949 ../../mod/admin.php:1151 -msgid "Enable" -msgstr "" - -#: ../../mod/admin.php:975 ../../mod/admin.php:1180 -msgid "Toggle" -msgstr "" - -#: ../../mod/admin.php:983 ../../mod/admin.php:1190 -msgid "Author: " -msgstr "" - -#: ../../mod/admin.php:984 ../../mod/admin.php:1191 -msgid "Maintainer: " -msgstr "" - -#: ../../mod/admin.php:1113 -msgid "No themes found." -msgstr "" - -#: ../../mod/admin.php:1172 -msgid "Screenshot" -msgstr "" - -#: ../../mod/admin.php:1220 -msgid "[Experimental]" -msgstr "" - -#: ../../mod/admin.php:1221 -msgid "[Unsupported]" -msgstr "" - -#: ../../mod/admin.php:1248 -msgid "Log settings updated." -msgstr "" - -#: ../../mod/admin.php:1304 -msgid "Clear" -msgstr "" - -#: ../../mod/admin.php:1310 -msgid "Debugging" -msgstr "" - -#: ../../mod/admin.php:1311 -msgid "Log file" -msgstr "" - -#: ../../mod/admin.php:1311 -msgid "" -"Must be writable by web server. Relative to your Red top-level directory." -msgstr "" - -#: ../../mod/admin.php:1312 -msgid "Log level" -msgstr "" - -#: ../../mod/register.php:43 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "" - -#: ../../mod/register.php:49 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "" - -#: ../../mod/register.php:77 -msgid "Passwords do not match." -msgstr "" - -#: ../../mod/register.php:105 -msgid "" -"Registration successful. Please check your email for validation instructions." -msgstr "" - -#: ../../mod/register.php:111 -msgid "Your registration is pending approval by the site owner." -msgstr "" - -#: ../../mod/register.php:114 -msgid "Your registration can not be processed." -msgstr "" - -#: ../../mod/register.php:147 -msgid "Registration on this site/hub is by approval only." -msgstr "" - -#: ../../mod/register.php:148 -msgid "Register at another affiliated site/hub" -msgstr "" - -#: ../../mod/register.php:156 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "" - -#: ../../mod/register.php:167 -msgid "Terms of Service" -msgstr "" - -#: ../../mod/register.php:173 -#, php-format -msgid "I accept the %s for this website" -msgstr "" - -#: ../../mod/register.php:175 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "" - -#: ../../mod/register.php:194 -msgid "Membership on this site is by invitation only." -msgstr "" - -#: ../../mod/register.php:195 -msgid "Please enter your invitation code" -msgstr "" - -#: ../../mod/register.php:198 -msgid "Your email address" -msgstr "" - -#: ../../mod/register.php:199 -msgid "Choose a password" -msgstr "" - -#: ../../mod/register.php:200 -msgid "Please re-enter your password" -msgstr "" - -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "" - -#: ../../mod/manage.php:64 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "" - -#: ../../mod/manage.php:72 -msgid "Create a new channel" -msgstr "" - -#: ../../mod/manage.php:77 -msgid "Channel Manager" -msgstr "" - -#: ../../mod/manage.php:78 -msgid "Current Channel" -msgstr "" - -#: ../../mod/manage.php:80 -msgid "Attach to one of your channels by selecting it." -msgstr "" - -#: ../../mod/manage.php:81 -msgid "Default Channel" -msgstr "" - -#: ../../mod/manage.php:82 -msgid "Make Default" -msgstr "" - -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "" - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "" - -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "" - -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "" - -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "" - -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "" - -#: ../../mod/invite.php:141 -msgid "Send invitations" -msgstr "" - -#: ../../mod/invite.php:142 -msgid "Enter email addresses, one per line:" -msgstr "" - -#: ../../mod/invite.php:144 -msgid "" -"You are cordially invited to join me and some other close friends on the Red " -"Matrix - a revolutionary new decentralised communication and information " -"tool." -msgstr "" - -#: ../../mod/invite.php:146 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "" - -#: ../../mod/invite.php:147 -msgid "Please visit my channel at" -msgstr "" - -#: ../../mod/invite.php:151 -msgid "" -"Once you have registered (on ANY Red Matrix site - they are all inter-" -"connected), please connect with my Red Matrix channel address:" -msgstr "" - -#: ../../mod/invite.php:153 -msgid "Click the [Register] link on the following page to join." -msgstr "" - -#: ../../mod/invite.php:155 -msgid "" -"For more information about the Red Matrix Project and why it has the " -"potential to change the internet as we know it, please visit http://getzot." -"com" -msgstr "" - -#: ../../mod/wall_upload.php:34 -msgid "Wall Photos" -msgstr "" - -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "" - -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "" - -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "" - -#: ../../mod/regmod.php:12 -msgid "Please login." -msgstr "" - -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "" - -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "" - -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "" - -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "" - -#: ../../boot.php:1259 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "" - -#: ../../boot.php:1262 -#, php-format -msgid "Update Error at %s" -msgstr "" - -#: ../../boot.php:1426 -msgid "" -"Create an account to access services and applications within the Red Matrix" -msgstr "" - -#: ../../boot.php:1454 -msgid "Password" -msgstr "" - -#: ../../boot.php:1455 -msgid "Remember me" -msgstr "" - -#: ../../boot.php:1460 -msgid "Forgot your password?" -msgstr "" - -#: ../../boot.php:1525 -msgid "permission denied" -msgstr "" - -#: ../../boot.php:1526 -msgid "Got Zot?" -msgstr "" - -#: ../../boot.php:1956 -msgid "toggle mobile" +#: ../../view/theme/apw/php/config.php:204 +msgid "Monospace" msgstr "" +#: ../../view/theme/apw/php/config.php:259 +#: ../../view/theme/blogga/php/config.php:69 +#: ../../view/theme/blogga/view/theme/blog/config.php:69 #: ../../view/theme/redbasic/php/config.php:102 msgid "Theme settings" msgstr "" +#: ../../view/theme/apw/php/config.php:260 #: ../../view/theme/redbasic/php/config.php:103 msgid "Set scheme" msgstr "" +#: ../../view/theme/apw/php/config.php:261 +#: ../../view/theme/redbasic/php/config.php:124 +msgid "Set font-size for posts and comments" +msgstr "" + +#: ../../view/theme/apw/php/config.php:262 +msgid "Set font face" +msgstr "" + +#: ../../view/theme/apw/php/config.php:263 +msgid "Set iconset" +msgstr "" + +#: ../../view/theme/apw/php/config.php:264 +msgid "Set big shadow size, default 15px 15px 15px" +msgstr "" + +#: ../../view/theme/apw/php/config.php:265 +msgid "Set small shadow size, default 5px 5px 5px" +msgstr "" + +#: ../../view/theme/apw/php/config.php:266 +msgid "Set shadow colour, default #000" +msgstr "" + +#: ../../view/theme/apw/php/config.php:267 +msgid "Set radius size, default 5px" +msgstr "" + +#: ../../view/theme/apw/php/config.php:268 +msgid "Set line-height for posts and comments" +msgstr "" + +#: ../../view/theme/apw/php/config.php:269 +msgid "Set background image" +msgstr "" + +#: ../../view/theme/apw/php/config.php:270 +msgid "Set background attachment" +msgstr "" + +#: ../../view/theme/apw/php/config.php:271 +msgid "Set background colour" +msgstr "" + +#: ../../view/theme/apw/php/config.php:272 +msgid "Set section background image" +msgstr "" + +#: ../../view/theme/apw/php/config.php:273 +msgid "Set section background colour" +msgstr "" + +#: ../../view/theme/apw/php/config.php:274 +msgid "Set colour of items - use hex" +msgstr "" + +#: ../../view/theme/apw/php/config.php:275 +msgid "Set colour of links - use hex" +msgstr "" + +#: ../../view/theme/apw/php/config.php:276 +msgid "Set max-width for items. Default 400px" +msgstr "" + +#: ../../view/theme/apw/php/config.php:277 +msgid "Set min-width for items. Default 240px" +msgstr "" + +#: ../../view/theme/apw/php/config.php:278 +msgid "Set the generic content wrapper width. Default 48%" +msgstr "" + +#: ../../view/theme/apw/php/config.php:279 +msgid "Set colour of fonts - use hex" +msgstr "" + +#: ../../view/theme/apw/php/config.php:280 +msgid "Set background-size element" +msgstr "" + +#: ../../view/theme/apw/php/config.php:281 +msgid "Item opacity" +msgstr "" + +#: ../../view/theme/apw/php/config.php:282 +msgid "Display post previews only" +msgstr "" + +#: ../../view/theme/apw/php/config.php:283 +msgid "Display side bar on channel page" +msgstr "" + +#: ../../view/theme/apw/php/config.php:284 +msgid "Colour of the navigation bar" +msgstr "" + +#: ../../view/theme/apw/php/config.php:285 +msgid "Item float" +msgstr "" + +#: ../../view/theme/apw/php/config.php:286 +msgid "Left offset of the section element" +msgstr "" + +#: ../../view/theme/apw/php/config.php:287 +msgid "Right offset of the section element" +msgstr "" + +#: ../../view/theme/apw/php/config.php:288 +msgid "Section width" +msgstr "" + +#: ../../view/theme/apw/php/config.php:289 +msgid "Left offset of the aside" +msgstr "" + +#: ../../view/theme/apw/php/config.php:290 +msgid "Right offset of the aside element" +msgstr "" + +#: ../../view/theme/blogga/php/config.php:47 +#: ../../view/theme/blogga/view/theme/blog/config.php:47 +msgid "None" +msgstr "" + +#: ../../view/theme/blogga/php/config.php:70 +#: ../../view/theme/blogga/view/theme/blog/config.php:70 +msgid "Header image" +msgstr "" + +#: ../../view/theme/blogga/php/config.php:71 +#: ../../view/theme/blogga/view/theme/blog/config.php:71 +msgid "Header image only on profile pages" +msgstr "" + #: ../../view/theme/redbasic/php/config.php:104 msgid "Narrow navbar" msgstr "" @@ -7510,10 +7659,6 @@ msgstr "" msgid "Set font-size for the entire application" msgstr "" -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set font-size for posts and comments" -msgstr "" - #: ../../view/theme/redbasic/php/config.php:125 msgid "Set font-colour for posts and comments" msgstr "" @@ -7553,3 +7698,42 @@ msgstr "" #: ../../view/theme/redbasic/php/config.php:133 msgid "Are you a clean desk or a messy desk person?" msgstr "" + +#: ../../boot.php:1259 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "" + +#: ../../boot.php:1262 +#, php-format +msgid "Update Error at %s" +msgstr "" + +#: ../../boot.php:1426 +msgid "" +"Create an account to access services and applications within the Red Matrix" +msgstr "" + +#: ../../boot.php:1454 +msgid "Password" +msgstr "" + +#: ../../boot.php:1455 +msgid "Remember me" +msgstr "" + +#: ../../boot.php:1460 +msgid "Forgot your password?" +msgstr "" + +#: ../../boot.php:1525 +msgid "permission denied" +msgstr "" + +#: ../../boot.php:1526 +msgid "Got Zot?" +msgstr "" + +#: ../../boot.php:1956 +msgid "toggle mobile" +msgstr "" diff --git a/version.inc b/version.inc index 21f2b8fa8..26370f4b2 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-05-22.683 +2014-05-23.684 From 44533f330f8aee499d2ca6366d54b5ebf266e2bd Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 23 May 2014 14:53:37 -0700 Subject: [PATCH 123/147] doc additions --- doc/html/appman_8php.html | 155 ++++++++++++++++++++++++++++++++++++++ doc/html/appman_8php.js | 5 ++ 2 files changed, 160 insertions(+) create mode 100644 doc/html/appman_8php.html create mode 100644 doc/html/appman_8php.js diff --git a/doc/html/appman_8php.html b/doc/html/appman_8php.html new file mode 100644 index 000000000..a2a12d708 --- /dev/null +++ b/doc/html/appman_8php.html @@ -0,0 +1,155 @@ + + + + + + +The Red Matrix: mod/appman.php File Reference + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    + +
    +
    appman.php File Reference
    +
    +
    + + + + + + +

    +Functions

     appman_post (&$a)
     
     appman_content (&$a)
     
    +

    Function Documentation

    + +
    +
    + + + + + + + + +
    appman_content ($a)
    +
    + +
    +
    + +
    +
    + + + + + + + + +
    appman_post ($a)
    +
    + +
    +
    +
    +
    + diff --git a/doc/html/appman_8php.js b/doc/html/appman_8php.js new file mode 100644 index 000000000..b5e384400 --- /dev/null +++ b/doc/html/appman_8php.js @@ -0,0 +1,5 @@ +var appman_8php = +[ + [ "appman_content", "appman_8php.html#af48805ac2f6f123f2681a8ae1c6f123f", null ], + [ "appman_post", "appman_8php.html#a2979acbe47ffaecfa19b9eabfbfbde39", null ] +]; \ No newline at end of file From 059b6cd411e7034bd6b1b6de02dc34984259bd11 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 23 May 2014 15:30:22 -0700 Subject: [PATCH 124/147] add randprof app and do away with the universally hated chanview-iframe mode. It's gone. Please do not try and bring it back. We are not Diaspora and we have no desire to be like them. ("And they're all made out of ticky-tacky and they all look just the same"). Our profiles do not have to look the same and they won't anyway. We don't have to sugar coat the fact that some of the content in the matrix doesn't look like the rest of the content in the matrix. --- app/randprof.apd | 5 +++++ mod/chanview.php | 16 +++++++++------- mod/settings.php | 7 +++---- view/tpl/apps.tpl | 2 +- view/tpl/settings_display.tpl | 1 - 5 files changed, 18 insertions(+), 13 deletions(-) create mode 100644 app/randprof.apd diff --git a/app/randprof.apd b/app/randprof.apd new file mode 100644 index 000000000..30ff0236b --- /dev/null +++ b/app/randprof.apd @@ -0,0 +1,5 @@ +url: $baseurl/randprof +name: Random Channel +target: randprof + + diff --git a/mod/chanview.php b/mod/chanview.php index ca3410c8f..449a98bb1 100644 --- a/mod/chanview.php +++ b/mod/chanview.php @@ -84,15 +84,17 @@ function chanview_content(&$a) { $url = zid($url); // let somebody over-ride the iframed viewport presentation + // or let's just declare this a failed experiment. - if((! local_user()) || (get_pconfig(local_user(),'system','chanview_full'))) - goaway($url); +// if((! local_user()) || (get_pconfig(local_user(),'system','chanview_full'))) + + goaway($url); - $o = replace_macros(get_markup_template('chanview.tpl'),array( - '$url' => $url, - '$full' => t('toggle full screen mode') - )); +// $o = replace_macros(get_markup_template('chanview.tpl'),array( +// '$url' => $url, +// '$full' => t('toggle full screen mode') +// )); - return $o; +// return $o; } \ No newline at end of file diff --git a/mod/settings.php b/mod/settings.php index 3ab34f145..ad3eff261 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -150,12 +150,12 @@ function settings_post(&$a) { set_pconfig(local_user(),'system','mobile_theme',$mobile_theme); } - $chanview_full = ((x($_POST,'chanview_full')) ? intval($_POST['chanview_full']) : 0); +// $chanview_full = ((x($_POST,'chanview_full')) ? intval($_POST['chanview_full']) : 0); set_pconfig(local_user(),'system','update_interval', $browser_update); set_pconfig(local_user(),'system','itemspage', $itemspage); set_pconfig(local_user(),'system','no_smilies',$nosmile); - set_pconfig(local_user(),'system','chanview_full',$chanview_full); +// set_pconfig(local_user(),'system','chanview_full',$chanview_full); if ($theme == $a->channel['channel_theme']){ @@ -736,7 +736,7 @@ function settings_content(&$a) { $nosmile = get_pconfig(local_user(),'system','no_smilies'); $nosmile = (($nosmile===false)? '0': $nosmile); // default if not set: 0 - $chanview = intval(get_pconfig(local_user(),'system','chanview_full')); +// $chanview = intval(get_pconfig(local_user(),'system','chanview_full')); $theme_config = ""; if( ($themeconfigfile = get_theme_config_file($theme_selected)) != null){ @@ -757,7 +757,6 @@ function settings_content(&$a) { '$ajaxint' => array('browser_update', t("Update browser every xx seconds"), $browser_update, t('Minimum of 10 seconds, no maximum')), '$itemspage' => array('itemspage', t("Maximum number of conversations to load at any time:"), $itemspage, t('Maximum of 100 items')), '$nosmile' => array('nosmile', t("Don't show emoticons"), $nosmile, ''), - '$chanview_full' => array('chanview_full', t('Do not view remote profiles in frames'), $chanview, t('By default open in a sub-window of your own site')), '$layout_editor' => t('System Page Layout Editor - (advanced)'), '$theme_config' => $theme_config, )); diff --git a/view/tpl/apps.tpl b/view/tpl/apps.tpl index 02a6bd047..d8e538cb7 100755 --- a/view/tpl/apps.tpl +++ b/view/tpl/apps.tpl @@ -2,7 +2,7 @@ {{foreach $apps as $ap}} diff --git a/view/tpl/settings_display.tpl b/view/tpl/settings_display.tpl index 924b4b33f..a2038b930 100755 --- a/view/tpl/settings_display.tpl +++ b/view/tpl/settings_display.tpl @@ -9,7 +9,6 @@ {{include file="field_input.tpl" field=$ajaxint}} {{include file="field_input.tpl" field=$itemspage}} {{include file="field_checkbox.tpl" field=$nosmile}} -{{include file="field_checkbox.tpl" field=$chanview_full}}
    From da523fcfacffbf5456e6ab88a116787dea969000 Mon Sep 17 00:00:00 2001 From: friendica Date: Sat, 24 May 2014 03:28:25 -0700 Subject: [PATCH 125/147] app basic style --- version.inc | 2 +- view/theme/redbasic/css/style.css | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/version.inc b/version.inc index 26370f4b2..d00c90e8a 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-05-23.684 +2014-05-24.685 diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index f773264cc..fe4c93e66 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -535,6 +535,12 @@ aside li { font-size: 0.7em; } +.app-name { + width: 125px; + overflow: none; +} + + .pager { padding: 10px; text-align: center; From bf88720fae18f0ffc2824cf94c262e5dc9c907ec Mon Sep 17 00:00:00 2001 From: marijus Date: Sat, 24 May 2014 17:50:09 +0200 Subject: [PATCH 126/147] possible fix for empty commentbox colapsing on tool-button click --- view/js/main.js | 21 +++++++++------------ view/theme/redbasic/js/redbasic.js | 10 ++++++++++ view/tpl/comment_item.tpl | 2 +- 3 files changed, 20 insertions(+), 13 deletions(-) diff --git a/view/js/main.js b/view/js/main.js index b388ab940..2f695c77e 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -13,18 +13,15 @@ } function commentClose(obj,id) { - //$(document).on('click', function() { - if(obj.value == '') { - obj.value = aStr['comment']; - $("#comment-edit-text-" + id).removeClass("comment-edit-text-full"); - $("#comment-edit-text-" + id).addClass("comment-edit-text-empty"); - $("#mod-cmnt-wrap-" + id).hide(); - closeMenu("comment-tools-" + id); - return true; - } - return false; - //}); - + if(obj.value == '') { + obj.value = aStr['comment']; + $("#comment-edit-text-" + id).removeClass("comment-edit-text-full"); + $("#comment-edit-text-" + id).addClass("comment-edit-text-empty"); + $("#mod-cmnt-wrap-" + id).hide(); + closeMenu("comment-tools-" + id); + return true; + } + return false; } function showHideCommentBox(id) { diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index d981b0c11..d4349df61 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -1,3 +1,13 @@ +function commentCloseRed(obj,id) { + $(document).click(function() { + if(obj.value == '') { + obj.value = aStr['comment']; + $("#comment-edit-text-" + id).removeClass("comment-edit-text-full").addClass("comment-edit-text-empty"); + $("#comment-tools-" + id).hide(); + } + }); +} + $(document).ready(function() { $('#expand-aside').click(function() { diff --git a/view/tpl/comment_item.tpl b/view/tpl/comment_item.tpl index 121cf0995..7d7b22f74 100755 --- a/view/tpl/comment_item.tpl +++ b/view/tpl/comment_item.tpl @@ -10,7 +10,7 @@ - + {{if $qcomment}} - + {{if $qcomment}} - + {{if $qcomment}} From ad6d28731d975ed2e902e058cbb05a7e88d77ac9 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 25 May 2014 20:33:50 -0700 Subject: [PATCH 130/147] icon for randprof --- app/randprof.apd | 1 + app/randprof.png | Bin 0 -> 50762 bytes 2 files changed, 1 insertion(+) create mode 100644 app/randprof.png diff --git a/app/randprof.apd b/app/randprof.apd index 30ff0236b..9534c77f6 100644 --- a/app/randprof.apd +++ b/app/randprof.apd @@ -1,5 +1,6 @@ url: $baseurl/randprof name: Random Channel target: randprof +photo: $baseurl/app/randprof.png diff --git a/app/randprof.png b/app/randprof.png new file mode 100644 index 0000000000000000000000000000000000000000..3280ef8eee391e10ea044d8386f7ee24c7f79bd5 GIT binary patch literal 50762 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

    b>&;J3Z*Qn(?9!t2+Io4)K9A(|H{g}}gFQ^Qb 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 literal 0 HcmV?d00001 From 03e2d2ee8f048faa3328a2fdbb6c252726284db4 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 25 May 2014 22:25:13 -0700 Subject: [PATCH 131/147] missing "app installed" info msg --- mod/appman.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mod/appman.php b/mod/appman.php index 49adcd7fa..a782cb0eb 100644 --- a/mod/appman.php +++ b/mod/appman.php @@ -23,8 +23,10 @@ function appman_post(&$a) { ); $_REQUEST['appid'] = app_install(local_user(),$arr); + if(app_installed(local_user(),$arr)) info( t('App installed.') . EOL); + return; } @@ -38,6 +40,8 @@ function appman_post(&$a) { if($_POST['install']) { app_install(local_user(),$papp); + if(app_installed(local_user(),$papp)) + info( t('App installed.') . EOL); } if($_POST['delete']) { From 810515f1a10082ac7bc75550089ce9c40b44b003 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 25 May 2014 22:42:07 -0700 Subject: [PATCH 132/147] auto-highlight app embed code on click --- mod/appman.php | 2 +- view/tpl/field_textarea.tpl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/appman.php b/mod/appman.php index a782cb0eb..0cc108079 100644 --- a/mod/appman.php +++ b/mod/appman.php @@ -77,7 +77,7 @@ logger('content'); ); if($r) $app = $r[0]; - $embed = array('embed', t('Embed code'), app_encode($app,true),''); + $embed = array('embed', t('Embed code'), app_encode($app,true),'', 'onclick="this.select();"'); } diff --git a/view/tpl/field_textarea.tpl b/view/tpl/field_textarea.tpl index 98be8f138..b454045c0 100755 --- a/view/tpl/field_textarea.tpl +++ b/view/tpl/field_textarea.tpl @@ -1,5 +1,5 @@

    - + {{$field.3}}
    From 9fa929fab5c4c547951a0b42e7d56a94aea17564 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 25 May 2014 23:00:06 -0700 Subject: [PATCH 133/147] filter randprof results to avoid channels that are known to be deceased. --- include/Contact.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/Contact.php b/include/Contact.php index 540e1169d..0cd4be72c 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -510,7 +510,7 @@ function unmark_for_death($contact) { }} function random_profile() { - $r = q("select xchan_url from xchan where 1 order by rand() limit 1"); + $r = q("select xchan_url from xchan left join hubloc on hubloc_hash = xchan_hash where hubloc_connected > UTC_TIMESTAMP() - interval 30 day order by rand() limit 1"); if($r) return $r[0]['xchan_url']; return ''; From f6ee43c8837df4d82312ef7443504902f620f10c Mon Sep 17 00:00:00 2001 From: marijus Date: Mon, 26 May 2014 11:32:58 +0200 Subject: [PATCH 134/147] Collapsed textareas are like buttons. They should not grow/shrink in size if app font-size changes. --- view/css/conversation.css | 2 +- view/theme/redbasic/css/style.css | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/view/css/conversation.css b/view/css/conversation.css index 3fc82154b..1a614d2f0 100644 --- a/view/css/conversation.css +++ b/view/css/conversation.css @@ -16,7 +16,7 @@ } #profile-jot-text { - height: 3.4em; + height: 40px; padding: 8px; width: 100%; } diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index fe4c93e66..21f594132 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1847,11 +1847,11 @@ img.mail-list-sender-photo { } #profile-jot-text::-webkit-input-placeholder { - font-size:1.5em; + font-size:19px; } #profile-jot-text::-moz-placeholder { - font-size:1.5em; + font-size:19px; } #profile-jot-text:focus::-webkit-input-placeholder { @@ -1988,6 +1988,7 @@ img.mail-list-sender-photo { .comment-edit-text-empty { color: gray; + font-size: 11px; } .comment-edit-text-full { From 88bedec56c4c08988b6536e0e312ecfd883001bf Mon Sep 17 00:00:00 2001 From: 23n Date: Mon, 26 May 2014 18:50:54 +0200 Subject: [PATCH 135/147] divide autodate from item.app --- view/tpl/conv_item.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/tpl/conv_item.tpl b/view/tpl/conv_item.tpl index fe54ac377..0915172fb 100755 --- a/view/tpl/conv_item.tpl +++ b/view/tpl/conv_item.tpl @@ -26,7 +26,7 @@ {{$item.name}}{{if $item.owner_url}} {{$item.via}} {{$item.owner_name}}{{/if}}
    - {{if $item.verified}} {{/if}}{{if $item.location}}{{$item.location}}, {{/if}}{{$item.localtime}}{{if $item.editedtime}} {{$item.editedtime}}{{/if}}{{if $item.expiretime}} {{$item.expiretime}}{{/if}}{{if $item.app}}{{$item.str_app}}{{/if}} + {{if $item.verified}} {{/if}}{{if $item.location}}{{$item.location}}, {{/if}}{{$item.localtime}}{{if $item.editedtime}} {{$item.editedtime}}{{/if}}{{if $item.expiretime}} {{$item.expiretime}}{{/if}} {{if $item.app}}{{$item.str_app}}{{/if}}
    From 83ffad4b9dac914d9d4a5a9365ee23fb8f9d8483 Mon Sep 17 00:00:00 2001 From: marijus Date: Mon, 26 May 2014 22:34:43 +0200 Subject: [PATCH 136/147] fix one more bootstrap override regression --- view/theme/redbasic/css/style.css | 5 +---- view/theme/redbasic/php/style.php | 2 ++ view/tpl/comment_item.tpl | 2 +- view/tpl/jot.tpl | 2 +- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 21f594132..eeec051b5 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2267,7 +2267,7 @@ blockquote { .btn-default:hover, .btn-default:focus, .btn-default:active .btn-default.active { background-color: $editbuttons_bghover; - border-color: $editbuttons_bordercolour; + border-color: $editbuttons_bordercolourhover; color: $input_colourhover; text-decoration: $input_decohover; } @@ -2276,9 +2276,6 @@ blockquote { text-decoration: none; } -.btn-preview, .btn-preview:hover, .btn-preview:focus, .btn-preview:active { - margin-right: 1px; -} @media screen and (max-width: 767px) { aside#region_1 { diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index 881ddcf4f..14893d86d 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -167,6 +167,8 @@ if(! $a->install) { $editbuttons_bgcolour = "transparent"; if (! $editbuttons_bordercolour) $editbuttons_bordercolour = "#ccc"; + if (! $editbuttons_bordercolourhover) + $editbuttons_bordercolourhover = "#adadad"; if (! $editbuttons_colour) $editbuttons_colour = "#333"; if (! $editbuttons_bghover) diff --git a/view/tpl/comment_item.tpl b/view/tpl/comment_item.tpl index 0b89bb16a..13c827b77 100755 --- a/view/tpl/comment_item.tpl +++ b/view/tpl/comment_item.tpl @@ -54,7 +54,7 @@
    {{if $preview}} - {{/if}} diff --git a/view/tpl/jot.tpl b/view/tpl/jot.tpl index 2fd24d5ff..c4fdba0f5 100755 --- a/view/tpl/jot.tpl +++ b/view/tpl/jot.tpl @@ -81,7 +81,7 @@ {{/if}} {{if $preview}} - {{/if}} From c61da303dd7b1d082b03f7acbe7618b406cc941a Mon Sep 17 00:00:00 2001 From: marijus Date: Mon, 26 May 2014 22:40:33 +0200 Subject: [PATCH 137/147] fix one more bootstrap override regression - addendum --- view/theme/redbasic/php/style.php | 1 + 1 file changed, 1 insertion(+) diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index 14893d86d..950b43198 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -324,6 +324,7 @@ $options = array ( '$notif_itemhovercolour' => $notif_itemhovercolour, '$editbuttons_bgcolour' => $editbuttons_bgcolour, '$editbuttons_bordercolour' => $editbuttons_bordercolour, +'$editbuttons_bordercolourhover' => $editbuttons_bordercolourhover, '$editbuttons_colour' => $editbuttons_colour, '$editbuttons_bghover' => $editbuttons_bghover, '$dropdown_bgcolour' => $dropdown_bgcolour, From e81f31c41cff89722d3bb4e6ebb5ee830c9094d6 Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 26 May 2014 16:38:39 -0700 Subject: [PATCH 138/147] move some zot doco to our doc area and start on zot_structures --- doc/Zot---A-High-Level-Overview.md | 107 ++++++++ doc/zot.md | 400 +++++++++++++++++++++++++++++ doc/zot_structures.md | 63 +++++ version.inc | 2 +- 4 files changed, 571 insertions(+), 1 deletion(-) create mode 100644 doc/Zot---A-High-Level-Overview.md create mode 100644 doc/zot.md create mode 100644 doc/zot_structures.md diff --git a/doc/Zot---A-High-Level-Overview.md b/doc/Zot---A-High-Level-Overview.md new file mode 100644 index 000000000..07f353552 --- /dev/null +++ b/doc/Zot---A-High-Level-Overview.md @@ -0,0 +1,107 @@ +# Zot - A High Level Overview + +Here's a high level description of how zot works. + +In this example, "Indigo" is going to send a public message from his website at "podunk.edu". "Nickordo" is a recipient on another site ("example.com"). + + +Indigo first posts his message at podunk.edu. podunk.edu looks up who should receive the message and finds Nickordo. Nickordo usually posts from example.com so we add that destination to our list of recipients. We may also add other destinations for nickordo and anybody else that is following Indigo's posts. + +In this example we find that we only have one known recipient at one known location. + +We send a packet to example.com: + + { + "type":"notify", + "sender":{ + "guid":"kgVFf_1_SSbyqH-BNWjWuhAvJ2EhQBTUdw-Q1LwwssAntr8KTBgBSzNVzUm9_RwuDpxI6X8me_QQhZMf7RfjdA", + "guid_sig":"PT9-TApzpm7QtMxC63MjtdK2nUyxNI0tUoWlOYTFGke3kNdtxSzSvDV4uzq_7SSBtlrNnVMAFx2_1FDgyKawmqVtRPmT7QSXrKOL2oPzL8Hu_nnVVTs_0YOLQJJ0GYACOOK-R5874WuXLEept5-KYg0uShifsvhHnxnPIlDM9lWuZ1hSJTrk3NN9Ds6AKpyNRqf3DUdz81-Xvs8I2kj6y5vfFtm-FPKAqu77XP05r74vGaWbqb1r8zpWC7zxXakVVOHHC4plG6rLINjQzvdSFKCQb5R_xtGsPPfvuE24bv4fvN4ZG2ILvb6X4Dly37WW_HXBqBnUs24mngoTxFaPgNmz1nDQNYQu91-ekX4-BNaovjDx4tP379qIG3-NygHTjFoOMDVUvs-pOPi1kfaoMjmYF2mdZAmVYS2nNLWxbeUymkHXF8lT_iVsJSzyaRFJS1Iqn7zbvwH1iUBjD_pB9EmtNmnUraKrCU9eHES27xTwD-yaaH_GHNc1XwXNbhWJaPFAm35U8ki1Le4WbUVRluFx0qwVqlEF3ieGO84PMidrp51FPm83B_oGt80xpvf6P8Ht5WvVpytjMU8UG7-js8hAzWQeYiK05YTXk-78xg0AO6NoNe_RSRk05zYpF6KlA2yQ_My79rZBv9GFt4kUfIxNjd9OiV1wXdidO7Iaq_Q", + "url":"http:\/\/podunk.edu", + "url_sig":"T8Bp7j5DHHhQDCFcAHXfuhUfGk2P3inPbImwaXXF1xJd3TGgluoXyyKDx6WDm07x0hqbupoAoZB1qBP3_WfvWiJVAK4N1FD77EOYttUEHZ7L43xy5PCpojJQmkppGbPJc2jnTIc_F1vvGvw5fv8gBWZvPqTdb6LWF6FLrzwesZpi7j2rsioZ3wyUkqb5TDZaNNeWQrIEYXrEnWkRI_qTSOzx0dRTsGO6SpU1fPWuOOYMZG8Nh18nay0kLpxReuHCiCdxjXRVvk5k9rkcMbDBJcBovhiSioPKv_yJxcZVBATw3z3TTE95kGi4wxCEenxwhSpvouwa5b0hT7NS4Ay70QaxoKiLb3ZjhZaUUn4igCyZM0h6fllR5I6J_sAQxiMYD0v5ouIlb0u8YVMni93j3zlqMWdDUZ4WgTI7NNbo8ug9NQDHd92TPmSE1TytPTgya3tsFMzwyq0LZ0b-g-zSXWIES__jKQ7vAtIs9EwlPxqJXEDDniZ2AJ6biXRYgE2Kd6W_nmI7w31igwQTms3ecXe5ENI3ckEPUAq__llNnND7mxp5ZrdXzd5HHU9slXwDShYcW3yDeQLEwAVomTGSFpBrCX8W77n9hF3JClkWaeS4QcZ3xUtsSS81yLrp__ifFfQqx9_Be89WVyIOoF4oydr08EkZ8zwlAsbZLG7eLXY" + }, + "callback":"\/post", + "version":1, + "secret":"1eaa6613699be6ebb2adcefa5379c61a3678aa0df89025470fac871431b70467" + } + +This packet says the following: + +I'm Indigo and here is proof. I'm posting from podunk.edu and here is proof. I've got a package for you. The tracking number is "1eaa6613....". + +Example.com accepts this packet and says "whoa, hold on - I don't know you. I want to prove who you are." So Example.com connects to podunk.edu through a "well-known URL" that we use for this purpose and looks up the "guid" mentioned above. It should return a bunch of information, one item of which is a public key. Example.com uses this key to verify the signatures in the message to verify that indeed there is a person named Indigo at podunk.edu. We only need to do this once. (Note that Indigo can post from any location. All we have to do is prove that it's Indigo and that Indigo can prove that he's posting from another site.) + +Then example.com disconnects and flags that there's a message waiting at podunk.edu. Either immediately, or whenever the urge hits (depending on how important Indigo is to anybody on this site), example.com "calls" podunk.edu. It says something like this: + + { + "type":"pickup", + "url":"http:\/\/example.com", + "callback_sig":"teE1_fLIqfyeCuZY4iS7sNU8jUlUuqYOYBiHLarkC99I9K-uSr8DAwVW8ZPZRK-uYdxRMuKFb6cumF_Gt9XjecCPBM8HkoXHOi_VselzJkxPwor4ZPtWYWWaFtRfcAm794LrWjdz62zdESTQd2JJIZWbrli1sUhK801BF3n0Ye6-X1MWhy9EUTVlNimOeRipcuD_srMhUcAXOEbLlrugZ8ovy2YBe6YOXkS8jj0RSFjsOduXAoVhQmNpcobSYsDvaQS3e3MvE6-oXE602zGQhuNLr7DIMt9PCdAeQo-ZM-DHlZGCkGk4O2oQFCXFzGPqLUMWDACGJfTfIWGoh_EJqT_SD5b_Yi_Wk9S1lj7vb-lmxe5JuIf7ezWzHoBT8vswnZxPYlidH2i9wapdzij9il_qqcCWWHIp7q_XkY_Zj52Z4r4gdmiqM-8y1c_1SDX7hrJFRwqL_PKFbEvyi5nMWTEzqp55Tay5Woiv19STK_H_8ufFfD9AOkYnk6rIOMsk9dn3a5tAFpDRyRndXkBWAXwiJjiND2zjue7BFu7Ty40THXcfYRh1a5XrAXcaGeYuagg-8J9tAufu9_LY3qGazFg8kRBVMOn4M8DRKSIhKj7z4MnbYL0s09gREojy4jqWO3VkaOjP2jUGzoPuUDLasudE1ehWFq0K_MTQNavgmp8", + "callback":"http:\/\/example.com\/post", + "secret":"1eaa6613699be6ebb2adcefa5379c61a3678aa0df89025470fac871431b70467", + "secret_sig":"O7nB4_UJHBXi28Suwl9LBZF9hI_9KGVTgehnUlWF1oYMNRnBbVHB9lzUfAoalvp3STbU3xJbtD_S58tv6MfV7J5j2V_S1W5ex3dulmDGB8Pt_7Fe5mbEPmjQFcfv3Eg5dUjYIuDl0TDScfrHyImj7RZIWHbwd7wWVoMzzDa_o33klpYmKZCBvObCh55bRrlFkXZs_dRuOiPwkfX0C6_XES4OyOIYl45V30rdhmf-STrf4L9dKYy_axQ12RIwRcKychvVLwlUJn3bn9lgNXRRU_HTne-09OPcJbUOdcD3DkFoKOxMULBNKPHzsCau0ICYug7S0EP6LpCom_mW78s08LyVA1vYeFZjevBCiGecj57yIAQDYi6_rpWJfihYaWHRN0oqtScUR4Bdf0bQbEHxMs4zAtrOAxfyJCbi6U1pfnGgzXzB9ulOYGnVGNTF7Ey4K7FOZIBtk0ILY2JfvBUaVvVs8ttagOOHmhWhnbCvrnOFlkNdlce7zoJCSUJENUOCYmTRfwB_Jno5fAzRnrsYU3_Z-l1mzniU_OmUPz8mPEh7PwhkqAiVlyaM-q15gn7l2lAIDk9kp2X_iCme7v4V0ADN_DbpaI_0-6mPw5HLbKrCsA-sxlSMB4DO4lDCHYkauj0l25sbfroRWB_hax1O4Q0oWyOlVJLUqEC5nuUJCCE" + } + + +What this message says is: This is example.com, I have proof, and I'm here to pick up a package. Here's the tracking number, and here's proof that this is the tracking number you presumably sent to example.com. + +Good enough. Podunk.edu checks out the story and indeed, it is example.com, and yes, there's a package waiting with that tracking number. Here's the package... + + { + "success":1, + "pickup":{ + "notify":{ + "type":"notify", + "sender":{ + "guid":"kgVFf_1_SSbyqH-BNWjWuhAvJ2EhQBTUdw-Q1LwwssAntr8KTBgBSzNVzUm9_RwuDpxI6X8me_QQhZMf7RfjdA", + "guid_sig":"PT9-TApzpm7QtMxC63MjtdK2nUyxNI0tUoWlOYTFGke3kNdtxSzSvDV4uzq_7SSBtlrNnVMAFx2_1FDgyKawmqVtRPmT7QSXrKOL2oPzL8Hu_nnVVTs_0YOLQJJ0GYACOOK-R5874WuXLEept5-KYg0uShifsvhHnxnPIlDM9lWuZ1hSJTrk3NN9Ds6AKpyNRqf3DUdz81-Xvs8I2kj6y5vfFtm-FPKAqu77XP05r74vGaWbqb1r8zpWC7zxXakVVOHHC4plG6rLINjQzvdSFKCQb5R_xtGsPPfvuE24bv4fvN4ZG2ILvb6X4Dly37WW_HXBqBnUs24mngoTxFaPgNmz1nDQNYQu91-ekX4-BNaovjDx4tP379qIG3-NygHTjFoOMDVUvs-pOPi1kfaoMjmYF2mdZAmVYS2nNLWxbeUymkHXF8lT_iVsJSzyaRFJS1Iqn7zbvwH1iUBjD_pB9EmtNmnUraKrCU9eHES27xTwD-yaaH_GHNc1XwXNbhWJaPFAm35U8ki1Le4WbUVRluFx0qwVqlEF3ieGO84PMidrp51FPm83B_oGt80xpvf6P8Ht5WvVpytjMU8UG7-js8hAzWQeYiK05YTXk-78xg0AO6NoNe_RSRk05zYpF6KlA2yQ_My79rZBv9GFt4kUfIxNjd9OiV1wXdidO7Iaq_Q", + "url":"http:\/\/z.podunk.edu", + "url_sig":"T8Bp7j5DHHhQDCFcAHXfuhUfGk2P3inPbImwaXXF1xJd3TGgluoXyyKDx6WDm07x0hqbupoAoZB1qBP3_WfvWiJVAK4N1FD77EOYttUEHZ7L43xy5PCpojJQmkppGbPJc2jnTIc_F1vvGvw5fv8gBWZvPqTdb6LWF6FLrzwesZpi7j2rsioZ3wyUkqb5TDZaNNeWQrIEYXrEnWkRI_qTSOzx0dRTsGO6SpU1fPWuOOYMZG8Nh18nay0kLpxReuHCiCdxjXRVvk5k9rkcMbDBJcBovhiSioPKv_yJxcZVBATw3z3TTE95kGi4wxCEenxwhSpvouwa5b0hT7NS4Ay70QaxoKiLb3ZjhZaUUn4igCyZM0h6fllR5I6J_sAQxiMYD0v5ouIlb0u8YVMni93j3zlqMWdDUZ4WgTI7NNbo8ug9NQDHd92TPmSE1TytPTgya3tsFMzwyq0LZ0b-g-zSXWIES__jKQ7vAtIs9EwlPxqJXEDDniZ2AJ6biXRYgE2Kd6W_nmI7w31igwQTms3ecXe5ENI3ckEPUAq__llNnND7mxp5ZrdXzd5HHU9slXwDShYcW3yDeQLEwAVomTGSFpBrCX8W77n9hF3JClkWaeS4QcZ3xUtsSS81yLrp__ifFfQqx9_Be89WVyIOoF4oydr08EkZ8zwlAsbZLG7eLXY" + }, + "callback":"\/post", + "version":1, + "secret":"1eaa6613699be6ebb2adcefa5379c61a3678aa0df89025470fac871431b70467" + }, + "message":{ + "message_id":"10b049ce384cbb2da9467319bc98169ab36290b8bbb403aa0c0accd9cb072e76@podunk.edu", + "message_top":"10b049ce384cbb2da9467319bc98169ab36290b8bbb403aa0c0accd9cb072e76@podunk.edu", + "message_parent":"10b049ce384cbb2da9467319bc98169ab36290b8bbb403aa0c0accd9cb072e76@podunk.edu", + "created":"2012-11-20 04:04:16", + "edited":"2012-11-20 04:04:16", + "title":"", + "body":"Hi Nickordo", + "app":"", + "verb":"post", + "object_type":"", + "target_type":"", + "permalink":"", + "location":"", + "longlat":"", + "owner":{ + "name":"Indigo", + "address":"indigo@podunk.edu", + "url":"http:\/\/podunk.edu", + "photo":{ + "mimetype":"image\/jpeg", + "src":"http:\/\/podunk.edu\/photo\/profile\/m\/5" + }, + "guid":"kgVFf_1_SSbyqH-BNWjWuhAvJ2EhQBTUdw-Q1LwwssAntr8KTBgBSzNVzUm9_RwuDpxI6X8me_QQhZMf7RfjdA", + "guid_sig":"PT9-TApzpm7QtMxC63MjtdK2nUyxNI0tUoWlOYTFGke3kNdtxSzSvDV4uzq_7SSBtlrNnVMAFx2_1FDgyKawmqVtRPmT7QSXrKOL2oPzL8Hu_nnVVTs_0YOLQJJ0GYACOOK-R5874WuXLEept5-KYg0uShifsvhHnxnPIlDM9lWuZ1hSJTrk3NN9Ds6AKpyNRqf3DUdz81-Xvs8I2kj6y5vfFtm-FPKAqu77XP05r74vGaWbqb1r8zpWC7zxXakVVOHHC4plG6rLINjQzvdSFKCQb5R_xtGsPPfvuE24bv4fvN4ZG2ILvb6X4Dly37WW_HXBqBnUs24mngoTxFaPgNmz1nDQNYQu91-ekX4-BNaovjDx4tP379qIG3-NygHTjFoOMDVUvs-pOPi1kfaoMjmYF2mdZAmVYS2nNLWxbeUymkHXF8lT_iVsJSzyaRFJS1Iqn7zbvwH1iUBjD_pB9EmtNmnUraKrCU9eHES27xTwD-yaaH_GHNc1XwXNbhWJaPFAm35U8ki1Le4WbUVRluFx0qwVqlEF3ieGO84PMidrp51FPm83B_oGt80xpvf6P8Ht5WvVpytjMU8UG7-js8hAzWQeYiK05YTXk-78xg0AO6NoNe_RSRk05zYpF6KlA2yQ_My79rZBv9GFt4kUfIxNjd9OiV1wXdidO7Iaq_Q" + }, + "author":{ + "name":"Indigo", + "address":"indigo@podunk.edu", + "url":"http:\/\/podunk.edu", + "photo":{ + "mimetype":"image\/jpeg", + "src":"http:\/\/podunk.edu\/photo\/profile\/m\/5" + }, + "guid":"kgVFf_1_SSbyqH-BNWjWuhAvJ2EhQBTUdw-Q1LwwssAntr8KTBgBSzNVzUm9_RwuDpxI6X8me_QQhZMf7RfjdA", + "guid_sig":"PT9-TApzpm7QtMxC63MjtdK2nUyxNI0tUoWlOYTFGke3kNdtxSzSvDV4uzq_7SSBtlrNnVMAFx2_1FDgyKawmqVtRPmT7QSXrKOL2oPzL8Hu_nnVVTs_0YOLQJJ0GYACOOK-R5874WuXLEept5-KYg0uShifsvhHnxnPIlDM9lWuZ1hSJTrk3NN9Ds6AKpyNRqf3DUdz81-Xvs8I2kj6y5vfFtm-FPKAqu77XP05r74vGaWbqb1r8zpWC7zxXakVVOHHC4plG6rLINjQzvdSFKCQb5R_xtGsPPfvuE24bv4fvN4ZG2ILvb6X4Dly37WW_HXBqBnUs24mngoTxFaPgNmz1nDQNYQu91-ekX4-BNaovjDx4tP379qIG3-NygHTjFoOMDVUvs-pOPi1kfaoMjmYF2mdZAmVYS2nNLWxbeUymkHXF8lT_iVsJSzyaRFJS1Iqn7zbvwH1iUBjD_pB9EmtNmnUraKrCU9eHES27xTwD-yaaH_GHNc1XwXNbhWJaPFAm35U8ki1Le4WbUVRluFx0qwVqlEF3ieGO84PMidrp51FPm83B_oGt80xpvf6P8Ht5WvVpytjMU8UG7-js8hAzWQeYiK05YTXk-78xg0AO6NoNe_RSRk05zYpF6KlA2yQ_My79rZBv9GFt4kUfIxNjd9OiV1wXdidO7Iaq_Q" + } + } + } + } + + + +And that's the package (the original message). Example.com converts this into a form suitable for viewing by Nickordo and notifies Nickordo that there's a new message. Podunk.edu **might** discover that there are other packages waiting for example.com. If this happens it may also send any and all other waiting packages at this time. Each has the original tracking number attached. \ No newline at end of file diff --git a/doc/zot.md b/doc/zot.md new file mode 100644 index 000000000..d8b976517 --- /dev/null +++ b/doc/zot.md @@ -0,0 +1,400 @@ +Intro to Zot +============ + +Zot is a JSON-based web framework for implementing secure decentralised communications and services. + +It differs from many other communication protocols by building communications on top of a decentralised identity and authentication framework. + +The authentication component is similar to OpenID conceptually but is insulated from DNS-based identities. Where possible remote authentication is silent and invisible. This provides a mechanism for internet scale distributed access control which is unobtrusive. + +For example, + +Jaquelina wishes to share photos with Roberto from her blog at "jaquelina.com.xyz", but to nobody else. Roberto maintains his own family website at "roberto.com.xyz". Zot allows Jaquelina to create an access list containing "Roberto" and allow Roberto unhindered access to the photos but without allowing Roberto's brother Marco to see the photos. + +Roberto will only login once to his own website at roberto.com.xyz using his password. After this, no further passwords will be asked for. Marco may also have an account on roberto.com.xyz, but he is not allowed to see Jaquelina's photos. + + +Additionally, zot allows Roberto to use another site - gadfly.com.xyz, and after login to gadfly.com.xyz he can also access Jaquelina's private photos. Jaquelina does not have to do anything extra to allow this, as she has already given access rights of her private photos to Roberto - no matter what site he is logged into. + +Zot also allows basic messaging and communications with anybody else on the Zot network. + +In order to provide this functionality, zot creates a decentralised globally unique identifier for each node on the network. This global identifier is not linked inextricably to DNS, providing the requisite mobility. Many existing decentralised communications frameworks provide the communication aspect, but do not provide remote access control and authentication. Additionally most of these are based on 'webfinger' such that in our example, Roberto would only be recognised if he accessed Jaquelina's photos from roberto.com.xyz - but not from gadfly.com.xyz. + + +The primary issues zot addresses are + +* completely decentralised communications +* insulation from DNS based identity +* node mobility +* invisible or reduced "interaction" remote authentication +* high performance + +We will rely on DNS-based user@host addresses as a "user-friendly" mechanism to let people know where you are, specifically on a named host with a given username, and communication will be carried out to DNS entities using TCP and the web. + +But the underlying protocol will provide an abstraction layer on top of this, so that a communications node (e.g. "identity") can move to an alternate DNS location and (to the best of our ability) gracefully recover from site re-locations and/or maintain pre-existing communication relationships. A side effect of this requirement is the ability to communicate from alternate/multiple DNS locations and service providers and yet maintain a single online identity. + +We will call this overlay network the "grid". Servers attached to this network are known as "hubs" and may support any number of individual identities. + +An identity does not necessarily correspond to a person. It is just something which requires the ability to communicate within the grid. + +The ability to recover will be accomplished by communication to the original location when creating a new or replacement identity, or as a fallback from a stored file describing the identity and their contacts in the case where the old location no longer responds. + +At least on the short term, the mobility of existing content is not a top priority. This may or may not take place at a later stage. The most important things we want to keep are your identity and your friends. + +Addresses which are shared amongst people are user@host, and which describe the **current** local account credentials for a given identity. These are DNS based addresses and used as a seed to locate a given identity within the grid. The machine communications will bind this address to a globally unique ID. A single globally unique ID may be attached or bound to any number of DNS locations. Once an identity has been mapped or bound to a DNS location, communications will consist of just knowing the globally unique address, and what DNS (url) is being used currently (in order to call back and verify/complete the current communication). These concepts will be specified in better detail. + +In order for an identity to persist across locations, one must be able to provide or recover + +* the globally unique ID for that identity +* the private key assigned to that identity +* (if the original server no longer exists) an address book of contacts for that identity. + +This information will be exportable from the original server via API, and/or downloadable to disk or thumb-drive. + +We may also attempt to recover with even less information, but doing so is prone to account hijacking and will require that your contacts confirm the change. + +In order to implement high performance communications, the data transfer format for all aspects of zot is JSON. XML communications require way too much overhead. + +Bi-directional encryption is based on RSA 4096-bit keys expressed in DER/ASN.1 format using the PKCS#8 encoding variant, with AES-256-CBC used for block encryption of variable length or large items. + +Some aspects of well known "federation protocols" (webfinger, salmon, activitystreams, portablecontacts, etc.) may be used in zot, but we are not tied to them and will not be bound by them. The Red Matrix project is attempting some rather novel developments in decentralised communications and if there is any need to diverge from such "standard protocols" we will do so without question or hesitation. + +In order to create a globally unique ID, we will base it on a whirlpool hash of the identity URL of the origination node and a psuedo-random number, which should provide us with a 256 bit ID with an extremely low probability of collision (256 bits represents approximately 115 quattuorviginitillion or 1.16 X 10^77 unique numbers). This will be represented in communications as a base64url-encoded string. We will not depend on probabilities however and the ID must also be attached to a public key with public key cryptography used to provide an assurance of identity which has not been copied or somehow collided in whirlpool hash space. + +Basing this ID on DNS provides a globally unique seed, which would not be the case if it was based completely on psuedo-random number generation. + +We will refer to the encoded globally unique uid string as zot_uid + +As there may be more than one DNS location attached/bound to a given zot_uid identity, delivery processes should deliver to all of them - as we do not know for sure which hub instance may be accessed at any given time. However we will designate one DNS location as "primary" and which will be the preferred location to view web profile information. + +We must also provide the ability to change the primary to a new location. A look-up of information on the current primary location may provide a "forwarding pointer" which will tell us to update our records and move everything to the new location. There is also the possibility that the primary location is defunct and no longer responding. In that case, a location which has already been mapped to this zot_uid can seize control, and declare itself to be primary. In both cases the primary designation is automatically approved and moved. A request can also be made from a primary location which requests that another location be removed. + +In order to map a zot_uid to a second (or tertiary) location, we require a secure exchange which verifies that the new location is in possession of the private key for this zot_uid. Security of the private key is thus essential to avoid hijacking of identities. + +Communications will then require + +* zot_uid (string) +* uid_sig +* callback (current location zot endpoint url) +* callback_sig +* spec (int) + +passed with every communique. The spec is a revision number of the applicable zot spec so that communications can be maintained with hubs using older and perhaps incompatible protocol specifications. Communications are verified using a stored public key which was copied when the connection to this zot_uid was first established. + +Key revocation and replacement must take place from the primary hub. The exact form for this is still being worked out, but will likely be a notification to all other bound hubs to "phone home" (to the primary hub) and request a copy of the new key. This communique should be verified using a site or hub key; as the original identity key may have been compromised and cannot be trusted. + +In order to eliminate confusion, there should be exactly one canonical url for any hub, so that these can be indexed and referenced without ambiguity. + +So as to avoid ambiguity of scheme, it is strongly encouraged that all addresses to be https with a "browser valid" cert and a single valid host component (either www.domain.ext or domain.ext, but not both), which is used in all communications. Multiple URLs may be provided locally, but only one unique URL should be used for all zot communications within the grid. + +Test installation which do not connect to the public grid may use non-SSL, but all traffic flowing over public networks should be safe from session-hijacking, preferably with a "browser recognised" cert. + +Where possible, zot encourages the use of "batching" to minimise network traffic between two hubs. This means that site 'A' can send multiple messages to site 'B' in a single transaction, and also consolidate deliveries of identical messages to multiple recipients on the same hub. + +Messages themselves may or may not be encrypted in transit, depending on the private nature of the messages. SSL (strongly encouraged) provides unconditional encryption of the data stream, however there is little point in encrypting public communications which have been designated as having unrestricted visibility. The encryption of data storage and so-called "end-to-end encryption" is outside the scope of zot. It is presumed that hub operators will take adequate safeguards to ensure the security of their data stores and these are functions of application and site integrity as opposed to protocol integrity. + + +## Messages + +Given the constraints listed previously, a zot communique should therefore be a json array of individual messages. These can be mixed and combined within the same transmission. + +Each message then requires: + +* type +* (optional) recipient list + +Lack of a recipient list would indicate an unencrypted public or site level message. The recipient list would contain an array of zot_uid with an individual decryption key, and a common iv. The decryption key is encoded with the recipient identity's public key. The iv is encrypted with the sender's private key. + +All messages should be digitally signed by the sender. + +The type can be one of (this list is extensible): + +* post (or activity) +* mail +* identity +* authenticate + +Identity messages have no recipients and notify the system social graph of an identity update, which could be a new or deleted identity, a new or deleted location, or a change in primary hub. The signature for these messages uses system keys as opposed to identity-specific keys. + +Posts include many different types of activities, such as top-level posts, likes/dislikes, comments, tagging activities, etc. These types are indicated within the message sturcture. + +authenticate messages result in mutual authentication and browser redirect to protected resources on the remote hub such as the ability to post wall-to-wall messages and view private photo albums and events, etc. + +## Discovery + +A well-known url is used to probe a hub for zot capabilities and identity lookups, including the discovery of public keys, profile locations, profile photos, and primary hub location. + +The location for this service is /.well-known/zot-info - and must be available at the root of the chosen domain. + +To perform a lookup, a POST request is made to the discovery location with the following parameters: + +Required: + +address => an address on the target system such as "john" + +Optional + +target => the zot "guid" of the observer for evaluating permissions + +target_sig => an RSA signature (base64url encoded) of the guid + +key => The public key needed to verify the signature + +With no target provided, the permissions returned will be generic permissions +for unknown or unauthenticated observers + +Example of discovery packet for 'mike@zothub.com' + + { + + "success": true, + "guid": "sebQ-IC4rmFn9d9iu17m4BXO-kHuNutWo2ySjeV2SIW1LzksUkss12xVo3m3fykYxN5HMcc7gUZVYv26asx-Pg", + "guid_sig": "Llenlbl4zHo6-g4sa63MlQmTP5dRCrsPmXHHFmoCHG63BLq5CUZJRLS1vRrrr_MNxr7zob_Ykt_m5xPKe5H0_i4pDj-UdP8dPZqH2fqhhx00kuYL4YUMJ8gRr5eO17vsZQ3XxTcyKewtgeW0j7ytwMp6-hFVUx_Cq08MrXas429ZrjzaEwgTfxGnbgeQYQ0R5EXpHpEmoERnZx77VaEahftmdjAUx9R4YKAp13pGYadJOX5xnLfqofHQD8DyRHWeMJ4G1OfWPSOlXfRayrV_jhnFlZjMU7vOdQwHoCMoR5TFsRsHuzd-qepbvo3pzvQZRWnTNu6oPucgbf94p13QbalYRpBXKOxdTXJrGdESNhGvhtaZnpT9c1QVqC46jdfP0LOX2xrVdbvvG2JMWFv7XJUVjLSk_yjzY6or2VD4V6ztYcjpCi9d_WoNHruoxro_br1YO3KatySxJs-LQ7SOkQI60FpysfbphNyvYMkotwUFI59G08IGKTMu3-GPnV1wp7NOQD1yzJbGGEGSEEysmEP0SO9vnN45kp3MiqbffBGc1r4_YM4e7DPmqOGM94qksOcLOJk1HNESw2dQYWxWQTBXPfOJT6jW9_crGLMEOsZ3Jcss0XS9KzBUA2p_9osvvhUKuKXbNztqH0oZIWlg37FEVsDs_hUwUJpv2Ar09k4", + "key": "-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA7QCwvuEIwCHjhjbpz3Oc\ntyei/Pz9nDksNbsc44Cm8jxYGMXsTPFXDZYCcCB5rcAhPPdZSlzaPkv4vPVcMIrw\n5cdX0tvbwa3rNTng6uFE7qkt15D3YCTkwF0Y9FVZiZ2Ko+G23QeBt9wqb9dlDN1d\nuPmu9BLYXIT/JXoBwf0vjIPFM9WBi5W/EHGaiuqw7lt0qI7zDGw77yO5yehKE4cu\n7dt3SakrXphL70LGiZh2XGoLg9Gmpz98t+gvPAUEotAJxIUqnoiTA8jlxoiQjeRK\nHlJkwMOGmRNPS33awPos0kcSxAywuBbh2X3aSqUMjcbE4cGJ++/13zoa6RUZRObC\nZnaLYJxqYBh13/N8SfH7d005hecDxWnoYXeYuuMeT3a2hV0J84ztkJX5OoxIwk7S\nWmvBq4+m66usn6LNL+p5IAcs93KbvOxxrjtQrzohBXc6+elfLVSQ1Rr9g5xbgpub\npSc+hvzbB6p0tleDRzwAy9X16NI4DYiTj4nkmVjigNo9v2VPnAle5zSam86eiYLO\nt2u9YRqysMLPKevNdj3CIvst+BaGGQONlQalRdIcq8Lin+BhuX+1TBgqyav4XD9K\nd+JHMb1aBk/rFLI9/f2S3BJ1XqpbjXz7AbYlaCwKiJ836+HS8PmLKxwVOnpLMbfH\nPYM8k83Lip4bEKIyAuf02qkCAwEAAQ==\n-----END PUBLIC KEY-----\n", + "name": "Mike Macgirvin", + "name_updated": "2012-12-06 04:59:13", + "address": "mike@zothub.com", + "photo_mimetype": "image/jpeg", + "photo": "https://zothub.com/photo/profile/l/1", + "photo_updated": "2012-12-06 05:06:11", + "url": "https://zothub.com/channel/mike", + "connections_url": "https://zothub.com/poco/mike", + "target": "", + "target_sig": "", + "searchable": false, + "permissions": { + "view_stream": true, + "view_profile": true, + "view_photos": true, + "view_contacts": true, + "view_storage": true, + "view_pages": true, + "send_stream": false, + "post_wall": false, + "post_comments": false, + "post_mail": false, + "post_photos": false, + "tag_deliver": false, + "chat": false, + "write_storage": false, + "write_pages": false, + "delegate": false + }, + "profile": { + "description": "Freedom Fighter", + "birthday": "0000-05-14", + "next_birthday": "2013-05-14 00:00:00", + "gender": "Male", + "marital": "It's complicated", + "sexual": "Females", + "locale": "", + "region": "", + "postcode": "", + "country": "Australia" + }, + "locations": [ + { + "host": "zothub.com", + "address": "mike@zothub.com", + "primary": true, + "url": "https://zothub.com", + "url_sig": "eqkB_9Z8nduBYyyhaSQPPDN1AhSm5I4R0yfcFxPeFpuu17SYk7jKD7QzvmsyahM5Kq7vDW6VE8nx8kdFYpcNaurqw0_IKI2SWg15pGrhkZfrCnM-g6A6qbCv_gKCYqXvwpSMO8SMIO2mjQItbBrramSbWClUd2yO0ZAceq3Z_zhirCK1gNm6mGRJaDOCuuTQNb6D66TF80G8kGLklv0o8gBfxQTE12Gd0ThpUb5g6_1L3eDHcsArW_RWM2XnNPi_atGNyl9bS_eLI2TYq0fuxkEdcjjYx9Ka0-Ws-lXMGpTnynQNCaSFqy-Fe1aYF7X1JJVJIO01LX6cCs-kfSoz29ywnntj1I8ueYldLB6bUtu4t7eeo__4t2CUWd2PCZkY3PKcoOrrnm3TJP5_yVFV_VpjkcBCRj3skjoCwISPcGYrXDufJxfp6bayGKwgaCO6QoLPtqqjPGLFm-fbn8sVv3fYUDGilaR3sFNxdo9mQ3utxM291XE2Pd0jGgeUtpxZSRzBuhYeOybu9DPusID320QbgNcbEbEImO8DuGIxuVRartzEXQF4WSYRdraZzbOqCzmU0O55P836JAfrWjgxTQkXlYCic-DBk-iE75JeT72smCtZ4AOtoFWCjZAABCw42J7JELY9APixZXWriKtjy6JI0G9d3fs6r7SrXr1JMy0", + "callback": "https://zothub.com/post", + "sitekey": "-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA1IWXwd/BZuevq8jzNFoR\n3VkenduQH2RpR3Wy9n4+ZDpbrUKGJddUGm/zUeWEdKMVkgyllVA/xHdB7jdyKs1X\nuIet9mIdnzvhdLO/JFD5hgbNG2wpSBIUY6aSNeCFTzszqXmuSXMW5U0Ef5pCbzEA\nnhoCoGL1KAgPqyxnGKUlj7q2aDwC9IRNtAqNyFQL67oT91vOQxuMThjlDhbR/29Q\ncYR4i1RzyahgEPCnHCPkT2GbRrkAPjNZAdlnk9UesgP16o8QB3tE2j50TVrbVc/d\nYRbzC56QMPP9UgUsapNeSJBHji75Ip/E5Eg/kfJC/HEQgyCqjCGfb7XeUaeQ7lLO\nqc7CGuMP+Jqr/cE54/aSHg8boTwxkMp11Ykb+ng17fl57MHTM2RJ99qZ1KBkXezR\nuH1lyvjzeJPxEFr9rkUqc4GH74/AgfbgaFvQc8TS7ovEa5I/7Pg04m7vLSEYc6UF\nYJYxXKrzmZT2TDoKeJzaBBx5MFLhW19l68h9dQ8hJXIpTP0hJrpI+Sr6VUAEfFQC\ndIDRiFcgjz6j7T/x8anqh63/hpsyf2PMYph1+4/fxtSCWJdvf+9jCRM8F1IDfluX\n87gm+88KBNaklYpchmGIohbjivJyru41CsSLe0uinQFvA741W00w6JrcrOAX+hkS\nRQuK1dDVwGKoIY85KtTUiMcCAwEAAQ==\n-----END PUBLIC KEY-----\n" + } + ], + "site": { + "url": "https://zothub.com", + "directory_mode": "primary", + "directory_url": "https://zothub.com/dirsearch" + } + + } + + + +Discovery returns a JSON array with the following components: + +'success' => ('1' or '') Operation was successful if '1'. Otherwise an optional 'message' may be present indicating the source of error. + +'guid' => the guid of the address on the target system + +'guid_sig' => the base64url encoded RSA signature of the guid, signed with the private key associated with that guid. + +'key' => the public key associated with that guid + +'name' => channel name + +'name_updated' => MySQL style timestamp '2012-01-01 00:00:00' when the name was last changed (UTC) + +'address' => "webbie" or user@host address associated with this channel + +'photo' => URL of a profile photo for this channel (ideally 175x175) + +'photo_mimetype' => content-type of the profile photo + +'photo_updated' => MySQL style timestamp when photo was last updated (UTC) + +'url' => location of channel homepage + +'connections_url' => location of Portable Contacts (extended for zot) URL for this channel + +'target' => if a permissions target was specified, it is mirrored + +'target_sig' => if a permissions target was specified, the signature is mirrored. + +'searchable' => ('1' or '') '1' indicates this entry can be searched in a directory + +###Permissions + + +'permisssions' => extensible array of permissions appropriate to this target, values are '1' or '' + + Permissions may include: + +* view_stream + +* view_profile + +* view_photos + +* view_contacts + +* view_storage + +* view_pages + +* send_stream + +* post_wall + +* post_comments + +* post_mail + +* post_photos + +* tag_deliver + +* chat + +* write_storage + +* write_pages + +* delegate + + + +###Profile + + +'profile' => array of important profile fields + +* description + +* birthday YYYY-MM-DD , all fields are optional, any field (such as year) may be zero + +* next_birthday => MySQL datetime string representing the next upcoming birthday, converted from the channel's default timezone to UTC. + +* gender (free form) + +* marital (marital status) + +* sexual (preference) + +* locale (city) + +* region (state) + +* postcode + +* country + + +###Locations + + +'locations' => array of registered locations (DNS locations) this channel may be visible or may be posting from + +Each location is an array of + +'host' => DNS hostname, e.g. example.com + +'address' => the webbie or user@host identifier associated with this location + +'primary' => ('1' or '') whether or not this is the primary location for this channel where files and web pages are generally found + +'url' => url of the root of this DNS location e.g. https://example.com + +'url_sig' => base64url encoded RSA signature of the URL, signed with the channel private key + +'callback' => zot communications endpoint on this site, usually https://example.com/post + +'sitekey' => public key of this site/host + + +###Site + + +'site' => array providing the directory role of the site responding to this request + +'url' => url of this site e.g. https://example.com + +'directory_mode' => one of 'primary', 'secondary', 'normal', or 'standalone' + +'directory_url' => if this is a directory server or standalone, the URL for the directory search module + + + +Magic Auth +========== + + +So-called "magic auth" takes place by a special exchange. On the remote computer, a redirection is made to the zot endpoint with special GET parameters. + +Endpoint: https://example.com/post/name + +where 'name' is the left hand side of the channel webbie, for instance 'mike' where the webbie is 'mike@zothub.com' + +Additionally four parameters are supplied: + +* auth => the webbie of the person requesting access +* dest => the desired destination URL (urlencoded) +* sec => a random string which is also stored locally for use during the verification phase. +* version => the zot revision + +When this packet is received, a zot message is initiated to the auth identity: + + + { + "type":"auth_check", + "sender":{ + "guid":"kgVFf_1_SSbyqH-BNWjWuhAvJ2EhQBTUdw-Q1LwwssAntr8KTBgBSzNVzUm9_RwuDpxI6X8me_QQhZMf7RfjdA", + "guid_sig":"PT9-TApzpm7QtMxC63MjtdK2nUyxNI0tUoWlOYTFGke3kNdtxSzSvDV4uzq_7SSBtlrNnVMAFx2_1FDgyKawmqVtRPmT7QSXrKOL2oPzL8Hu_nnVVTs_0YOLQJJ0GYACOOK-R5874WuXLEept5-KYg0uShifsvhHnxnPIlDM9lWuZ1hSJTrk3NN9Ds6AKpyNRqf3DUdz81-Xvs8I2kj6y5vfFtm-FPKAqu77XP05r74vGaWbqb1r8zpWC7zxXakVVOHHC4plG6rLINjQzvdSFKCQb5R_xtGsPPfvuE24bv4fvN4ZG2ILvb6X4Dly37WW_HXBqBnUs24mngoTxFaPgNmz1nDQNYQu91-ekX4-BNaovjDx4tP379qIG3-NygHTjFoOMDVUvs-pOPi1kfaoMjmYF2mdZAmVYS2nNLWxbeUymkHXF8lT_iVsJSzyaRFJS1Iqn7zbvwH1iUBjD_pB9EmtNmnUraKrCU9eHES27xTwD-yaaH_GHNc1XwXNbhWJaPFAm35U8ki1Le4WbUVRluFx0qwVqlEF3ieGO84PMidrp51FPm83B_oGt80xpvf6P8Ht5WvVpytjMU8UG7-js8hAzWQeYiK05YTXk-78xg0AO6NoNe_RSRk05zYpF6KlA2yQ_My79rZBv9GFt4kUfIxNjd9OiV1wXdidO7Iaq_Q", + "url":"http:\/\/podunk.edu", + "url_sig":"T8Bp7j5DHHhQDCFcAHXfuhUfGk2P3inPbImwaXXF1xJd3TGgluoXyyKDx6WDm07x0hqbupoAoZB1qBP3_WfvWiJVAK4N1FD77EOYttUEHZ7L43xy5PCpojJQmkppGbPJc2jnTIc_F1vvGvw5fv8gBWZvPqTdb6LWF6FLrzwesZpi7j2rsioZ3wyUkqb5TDZaNNeWQrIEYXrEnWkRI_qTSOzx0dRTsGO6SpU1fPWuOOYMZG8Nh18nay0kLpxReuHCiCdxjXRVvk5k9rkcMbDBJcBovhiSioPKv_yJxcZVBATw3z3TTE95kGi4wxCEenxwhSpvouwa5b0hT7NS4Ay70QaxoKiLb3ZjhZaUUn4igCyZM0h6fllR5I6J_sAQxiMYD0v5ouIlb0u8YVMni93j3zlqMWdDUZ4WgTI7NNbo8ug9NQDHd92TPmSE1TytPTgya3tsFMzwyq0LZ0b-g-zSXWIES__jKQ7vAtIs9EwlPxqJXEDDniZ2AJ6biXRYgE2Kd6W_nmI7w31igwQTms3ecXe5ENI3ckEPUAq__llNnND7mxp5ZrdXzd5HHU9slXwDShYcW3yDeQLEwAVomTGSFpBrCX8W77n9hF3JClkWaeS4QcZ3xUtsSS81yLrp__ifFfQqx9_Be89WVyIOoF4oydr08EkZ8zwlAsbZLG7eLXY" + }, + "recipients":{ + { + "guid":"ZHSqb3yGar3TYV_o9S-JkD-6o_V4DhUcxtv0VeyX8Kj_ENHPI_M3SyAUucU835-mIayGMmTpqJz3ujPkcavVhA", + "guid_sig":"JsAAXigNghTkkbq8beGMJjj9LBKZn28hZ-pHSsoQuwYWvBJ2lSnfc4r9l--WgO6sucH-SR6RiBo78eWn1cZrh_cRMu3x3LLx4y-tjixg-oOOgtZakkBg4vmOhkKPkci0mFtzvUrpY4YHySqsWTuPwRx_vOlIYIGEY5bRXpnkNCoC8J4EJnRucDrgSARJvA8QQeQQL0H4mWEdGL7wlsZp_2VTC6nEMQ48Piu6Czu5ThvLggGPDbr7PEMUD2cZ0jE4SeaC040REYASq8IdXIEDMm6btSlGPuskNh3cD0AGzH2dMciFtWSjmMVuxBU59U1I6gHwcxYEV6BubWt_jQSfmA3EBiPhKLyu02cBMMiOvYIdJ3xmpGoMY1Cn__vhHnx_vEofFOIErb6nRzbD-pY49C28AOdBA5ffzLW3ss99d0A-6GxZmjsyYhgJu4tFUAa7JUl84tMbq28Tib0HW6qYo6QWw8K1HffxcTpHtwSL5Ifx0PAoGMJsGDZDD1y_r9a4vH5pjqmGrjL3RXJJUy-m4eLV5r7xMWXsxjqu3D8r04_dcw4hwwexpMT1Nwf8CTB0TKb8ElgeOpDFjYVgrqMYWP0XdhatcFtAJI7gsS-JtzsIwON9Kij66-VAkqy_z1IXI0ziyqV1yapSVYoUV1vMScRZ_nMqwiB5rEDx-XLfzko" + } + } + "callback":"\/post", + "version":1, + "secret":"1eaa6613699be6ebb2adcefa5379c61a3678aa0df89025470fac871431b70467", + "secret_sig":"eKV968b1sDkOVdSMi0tLRtOhQw4otA8yFKaVg6cA4I46_zlAQGbFptS-ODiZlSAqR7RiiZQv4E2uXCKar52dHo0vvNKbpOp_ezWYcwKRu1shvAlYytsflH5acnDWL-FKOOgz5zqLLZ6cKXFMoR1VJGG_Od-DKjSwajyV9uVzTry58Hz_w0W2pjxwQ-Xv11rab5R2O4kKSW77YzPG2R5E6Q7HN38FrLtyWD_ai3K9wlsFOpwdYC064dk66X7BZtcIbKtM6zKwMywcfJzvS5_0U5yc5GGbIY_lY6SViSfx9shOKyxkEKHfS29Ynk9ATYGnwO-jnlMqkJC7t149H-sI9hYWMkLuCzaeLP56k2B2TmtnYvE_vHNQjzVhTwuHCIRVr-p6nplQn_P3SkOpYqPi3k_tnnOLa2d3Wtga8ClEY90oLWFJC3j2UkBf_VEOBNcg-t5XO3T-j9O4Sbk96k1Qoalc-QlznbGx4bOVsGkRBBMiH4YUqiiWB_OkFHtdqv7dqGeC-u-B4u9IxzYst46vvmyA3O-Q4APSZ1RY8ITUH0jLTbh6EAV7Oki8pIbOg0t56p-8RlanOZqmFvR-grVSc7Ak1ZcD8NACmvidUpa1B7WEvRcOeffx9lype0bt5XenDnMyx6szevwxZIiM8qGM2lsSk4fu8HI9cW0mLywzZT0" + } + + +auth_check messages MUST be encrypted with AES256CBC. This message is sent to the origination site, which checks the 'secret' to see if it is the same as the 'sec' which it passed originally. It also checks the secret_sig which is the secret signed by the destination channel's private key and base64url encoded. If everything checks out, a json packet is returned: + + { + "success":1, + "confirm":"q0Ysovd1uQRsur2xG9Tg6bC23ynzw0191SkVd7CJcYoaePy6e_v0vnmPg2xBUtIaHpx_aSuhgAkd3aVjPeaVBmts6aakT6a_yAEy7l2rBydntu2tvrHhoVqRNOmw0Q1tI6hwobk1BgK9Pm0lwOeAo8Q98BqIJxf47yO9pATa0wktOg6a7LMogC2zkkhwOV5oEqjJfeHeo27TiHr1e2WaphfCusjmk27V_FAYTzw05HvW4SPCx55EeeTJYIwDfQwjLfP4aKV-I8HQCINt-2yxJvzH7Izy9AW-7rYU0Il_gW5hrhIS5MTM12GBXLVs2Ij1CCLXIs4cO0x6e8KEIKwIjf7iAu60JPmnb_fx4QgBlF2HLw9vXMwZokor8yktESoGl1nvf5VV5GHWSIKAur3KPS2Tb0ekNh-tIk9u-xob4d9eIf6tge_d3aq1LcAtrDBDLk8AD0bho5zrVuTmZ9k-lBVPr_DRHSV_dlpu088j3ThaBsuV1olHK3vLFRhYCDIO0CqqK5IuhqtRNnRaqhlNN6fQUHpXk2SwHiJ2W36RCYMTnno6ezFk_tN-RA2ly-FomNZoC5FPA9gFwoJR7ZmVFDmUeK3bW-zYTA5vu15lpBPnt7Up_5rZKkr0WQVbhWJmylqOuwuNWbn3SrMQ8rYFZ23Tv300cOfKVgRBaePWQb4" + } + +'confirm' in this case is the base64url encoded RSA signature of the concatenation of 'secret' with the base64url encoded whirlpool hash of the source guid and guid_sig; signed with the source channel private key. This prevents a man-in-the-middle from inserting a rogue success packet. Upon receipt and successful verification of this packet, the destination site will redirect to the original destination URL and indicate a successful remote login. + + diff --git a/doc/zot_structures.md b/doc/zot_structures.md new file mode 100644 index 000000000..44fc63c41 --- /dev/null +++ b/doc/zot_structures.md @@ -0,0 +1,63 @@ +Zot Structures +============== + +**Zot signatures** +All signed data in zot is accomplished by performing an RSA sign operation using the private key of the initiator. The binary result is then base64url encoded for transport. + +**Zot encryption** + +Encryption is currently provided by AES256CBC, though additional algorithms MAY be supported. A 32-octet key and 16-octet initialisation vector are randomly generated. The desired data is then encrypted using these generated strings and the result base64url encoded. Then we build an array: + + data: the base64url encoded encrypted data + alg: The chosen algorithm, in this case the string 'aes256cbc'. + key: The randomly generated key, RSA encrypted using the recipients public key, and the result base64url encoded + iv: The randomly generated IV, RDSA encrypted using the recipient's public key, and the result base64url encoded + + + +**The zot basic packet** + +Used for initiating a dialogue with another zot site. This packet MAY be encrypted. The presence of an array element 'iv' indicates encryption has been applied. When sending an 'auth_check' packet type, this packet MUST be encrypted, using the public key of the destination site (the site key, as opposed to a sender key). + + + { + "type":"notify", + "sender":{ + "guid":"kgVFf_1_SSbyqH-BNWjWuhAvJ2EhQBTUdw-Q1LwwssAntr8KTBgBSzNVzUm9_RwuDpxI6X8me_QQhZMf7RfjdA", + "guid_sig":"PT9-TApzpm7QtMxC63MjtdK2nUyxNI0tUoWlOYTFGke3kNdtxSzSvDV4uzq_7SSBtlrNnVMAFx2_1FDgyKawmqVtRPmT7QSXrKOL2oPzL8Hu_nnVVTs_0YOLQJJ0GYACOOK-R5874WuXLEept5-KYg0uShifsvhHnxnPIlDM9lWuZ1hSJTrk3NN9Ds6AKpyNRqf3DUdz81-Xvs8I2kj6y5vfFtm-FPKAqu77XP05r74vGaWbqb1r8zpWC7zxXakVVOHHC4plG6rLINjQzvdSFKCQb5R_xtGsPPfvuE24bv4fvN4ZG2ILvb6X4Dly37WW_HXBqBnUs24mngoTxFaPgNmz1nDQNYQu91-ekX4-BNaovjDx4tP379qIG3-NygHTjFoOMDVUvs-pOPi1kfaoMjmYF2mdZAmVYS2nNLWxbeUymkHXF8lT_iVsJSzyaRFJS1Iqn7zbvwH1iUBjD_pB9EmtNmnUraKrCU9eHES27xTwD-yaaH_GHNc1XwXNbhWJaPFAm35U8ki1Le4WbUVRluFx0qwVqlEF3ieGO84PMidrp51FPm83B_oGt80xpvf6P8Ht5WvVpytjMU8UG7-js8hAzWQeYiK05YTXk-78xg0AO6NoNe_RSRk05zYpF6KlA2yQ_My79rZBv9GFt4kUfIxNjd9OiV1wXdidO7Iaq_Q", + "url":"http:\/\/podunk.edu", + "url_sig":"T8Bp7j5DHHhQDCFcAHXfuhUfGk2P3inPbImwaXXF1xJd3TGgluoXyyKDx6WDm07x0hqbupoAoZB1qBP3_WfvWiJVAK4N1FD77EOYttUEHZ7L43xy5PCpojJQmkppGbPJc2jnTIc_F1vvGvw5fv8gBWZvPqTdb6LWF6FLrzwesZpi7j2rsioZ3wyUkqb5TDZaNNeWQrIEYXrEnWkRI_qTSOzx0dRTsGO6SpU1fPWuOOYMZG8Nh18nay0kLpxReuHCiCdxjXRVvk5k9rkcMbDBJcBovhiSioPKv_yJxcZVBATw3z3TTE95kGi4wxCEenxwhSpvouwa5b0hT7NS4Ay70QaxoKiLb3ZjhZaUUn4igCyZM0h6fllR5I6J_sAQxiMYD0v5ouIlb0u8YVMni93j3zlqMWdDUZ4WgTI7NNbo8ug9NQDHd92TPmSE1TytPTgya3tsFMzwyq0LZ0b-g-zSXWIES__jKQ7vAtIs9EwlPxqJXEDDniZ2AJ6biXRYgE2Kd6W_nmI7w31igwQTms3ecXe5ENI3ckEPUAq__llNnND7mxp5ZrdXzd5HHU9slXwDShYcW3yDeQLEwAVomTGSFpBrCX8W77n9hF3JClkWaeS4QcZ3xUtsSS81yLrp__ifFfQqx9_Be89WVyIOoF4oydr08EkZ8zwlAsbZLG7eLXY" + }, + "callback":"\/post", + "version":1, + "secret":"1eaa6613699be6ebb2adcefa5379c61a3678aa0df89025470fac871431b70467", + "secret_sig":"0uShifsvhHnxnPIlDM9lWuZ1hSJTrk3NN9Ds6AKpyNRqf3DUdz81-Xvs8I2kj6y5vfFtm-FPKAqu77XP05r74vGaWbqb1r8zpWC7zxXakVVOHHC4plG6rLINjQzvdSFKCQb5R_xtGsPPfvuE24bv4fvN4ZG2ILvb6X4Dly37WW_HXBqBnUs24mngoTxFaPgNmz1nDQNYQu91-ekX4-BNaovjDx4tP379qIG3-NygHTjFoOMDVUvs-pOPi1kfaoMjmYF2mdZAmVYS2nNLWxbeUymkHXF8lT_iVsJSzyaRFJS1Iqn7zbvwH1iUBjD_pB9EmtNmnUraKrCU9eHES27xTwD-yaaH_GHNc1XwXNbhWJaPFAm35U8ki1Le4WbUVRluFx0qwVqlEF3ieGO84PMidrp51FPm83B_oGt80xpvf6P8Ht5WvVpytjMU8UG7-js8hAzWQeYiK05YTXk-78xg0AO6NoNe_RSRk05zYpF6KlA2yQ_My79rZBv9GFt4kUfIxNjd9OiV1wXdidO7Iaq_Q" + } + + +Type: is the message type. One of 'notify', 'purge' refresh' 'force_refresh', 'auth_check', 'ping' or 'pickup'. The packet contents vary by message type. Here we will describe the 'notify' packet. + +Sender is an array of four components. + +The guid of the sender is typically a 64 character base64url encoded string. This is generated when an identity is created and an attempt is made that it be unique; though this isn't required. + +The guid_sig is the RSA signature of the guid, signed by the sender's private key. + +url is the base url of the location this post is originating from. + +url_sig is the RSA signature of url, signed by the sender's private key. + + +These four elements provide a portable identity. We can contact the URL provided and download a zot info packet to obtain the public key of the sender, and use that to verify the sender guid and the posting URL signatures. + + +callback is a string to be appended onto the url which identifies the zot communications endpoint on this system. It is typically the string "/post". + +version is the zot protocol identifier, to allow future protocol revisions to co-exist. + +secret is a 64-char string which is randomly generated by the sending site. + +secret_sig is the RSA signature of the secret, signed with the sender's private key. + + + diff --git a/version.inc b/version.inc index 276a5c563..179d2646e 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-05-25.686 +2014-05-26.687 From f67d54c542d6590ba99cb8505a01592fcd297b48 Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 26 May 2014 17:16:28 -0700 Subject: [PATCH 139/147] Still a bit of work on remote app install, but we can check that one off the list. --- doc/To-Do-Code.md | 2 -- doc/to_do_code.bb | 2 -- 2 files changed, 4 deletions(-) diff --git a/doc/To-Do-Code.md b/doc/To-Do-Code.md index fe5ec1842..b640a7ae8 100644 --- a/doc/To-Do-Code.md +++ b/doc/To-Do-Code.md @@ -3,8 +3,6 @@ Project Code To-Do List We need much more than this, but here are areas where developers can help. Please edit this page when items are finished. Another place for developers to start is with the issues list. -* Turn top-level Apps menu into an Apps page - which will probably require App plugins to have icons. Add documentation specifically to the plugin/addon documentation for creating apps. Add links to the App Store (which doesn't currently exist). - * Documentation - see [Red Documentation Project To-Do List](help/To-Do) * Infinite scroll to the directory pages diff --git a/doc/to_do_code.bb b/doc/to_do_code.bb index fc2c2082d..320cc32c0 100644 --- a/doc/to_do_code.bb +++ b/doc/to_do_code.bb @@ -2,8 +2,6 @@ We need much more than this, but here are areas where developers can help. Please edit this page when items are finished. Another place for developers to start is with the issues list. -[li]Turn top-level Apps menu into an Apps page - which will probably require App plugins to have icons. Add documentation specifically to the plugin/addon documentation for creating apps. Add links to the App Store (which doesn't currently exist).[/li] - [li]Documentation - see Red Documentation Project To-Do List[/li] [li]Infinite scroll to the directory pages[/li] From c0e1139a46c851845cb90f8df0b2f932df78a886 Mon Sep 17 00:00:00 2001 From: marijus Date: Tue, 27 May 2014 16:44:18 +0200 Subject: [PATCH 140/147] some fixes and cleanup --- view/css/conversation.css | 24 ++++-------------------- view/theme/redbasic/css/style.css | 6 ++---- view/tpl/conv_item.tpl | 4 ++-- 3 files changed, 8 insertions(+), 26 deletions(-) diff --git a/view/css/conversation.css b/view/css/conversation.css index 1a614d2f0..b32a08486 100644 --- a/view/css/conversation.css +++ b/view/css/conversation.css @@ -6,7 +6,7 @@ border: 0px; margin: 0px; padding: 8px; - height: 3.4em; + height: 39px; width: 70%; margin-bottom: 5px; } @@ -16,7 +16,7 @@ } #profile-jot-text { - height: 40px; + height: 39px; padding: 8px; width: 100%; } @@ -72,22 +72,6 @@ margin-right: 10px; } -.wallwall .wwto { - left: 50px; - margin: 0; - position: absolute; - width: 30px -} - -.wallwall .wwto img { - width: 30px !important; - height: 30px !important; -} - -.wallwall .wall-item-photo-end { - clear: both; -} - .wall-item-photo-wrapper { margin-top: 0px; margin-bottom: 20px; @@ -206,8 +190,8 @@ } .comment-edit-text-empty { - height: 2.8em; - overflow: auto; + height: 30px; + overflow: hidden; resize: none; } diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index eeec051b5..73a5917ac 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1847,11 +1847,11 @@ img.mail-list-sender-photo { } #profile-jot-text::-webkit-input-placeholder { - font-size:19px; + font-size:18px; } #profile-jot-text::-moz-placeholder { - font-size:19px; + font-size:18px; } #profile-jot-text:focus::-webkit-input-placeholder { @@ -2231,7 +2231,6 @@ blockquote { .nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{ border:1px solid $navtabs_borderc; - border-bottom:1px solid transparent; } .nav-tabs.nav-justified > li > a { @@ -2242,7 +2241,6 @@ blockquote { text-decoration: $navtabs_decohover; background-color: $navtabs_bgchover; border-color: transparent; - border-bottom-color: $navtabs_borderc; $navtabs_linkchover } diff --git a/view/tpl/conv_item.tpl b/view/tpl/conv_item.tpl index 0915172fb..bf371b05c 100755 --- a/view/tpl/conv_item.tpl +++ b/view/tpl/conv_item.tpl @@ -6,9 +6,9 @@ {{/if}}
    -
    +
    -
    +
    {{$item.name}}
    From b17f923abbfcc79ed80b8a8779681a77a77f0ecc Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 27 May 2014 16:49:47 -0700 Subject: [PATCH 141/147] give the cloud file list a bit of padding --- include/apps.php | 46 ++++++++++++++++--------------- include/reddav.php | 2 +- version.inc | 2 +- view/theme/redbasic/css/style.css | 3 ++ 4 files changed, 29 insertions(+), 24 deletions(-) diff --git a/include/apps.php b/include/apps.php index 6897669d6..a24d8e503 100644 --- a/include/apps.php +++ b/include/apps.php @@ -271,8 +271,9 @@ function app_store($arr) { $darray = array(); $ret = array('success' => false); - $darray['app_url'] = ((x($arr,'url')) ? $arr['url'] : ''); + $darray['app_url'] = ((x($arr,'url')) ? $arr['url'] : ''); $darray['app_channel'] = ((x($arr,'uid')) ? $arr['uid'] : 0); + if((! $darray['app_url']) || (! $darray['app_channel'])) return $ret; @@ -282,16 +283,16 @@ function app_store($arr) { } - $darray['app_id'] = ((x($arr,'guid')) ? $arr['guid'] : random_string(). '.' . get_app()->get_hostname()); - $darray['app_sig'] = ((x($arr,'sig')) ? $arr['sig'] : ''); - $darray['app_author'] = ((x($arr,'author')) ? $arr['author'] : get_observer_hash()); - $darray['app_name'] = ((x($arr,'name')) ? escape_tags($arr['name']) : t('Unknown')); - $darray['app_desc'] = ((x($arr,'desc')) ? escape_tags($arr['desc']) : ''); - $darray['app_photo'] = ((x($arr,'photo')) ? $arr['photo'] : z_root() . '/' . get_default_profile_photo(80)); - $darray['app_version'] = ((x($arr,'version')) ? escape_tags($arr['version']) : ''); - $darray['app_addr'] = ((x($arr,'addr')) ? escape_tags($arr['addr']) : ''); - $darray['app_price'] = ((x($arr,'price')) ? escape_tags($arr['price']) : ''); - $darray['app_page'] = ((x($arr,'page')) ? escape_tags($arr['page']) : ''); + $darray['app_id'] = ((x($arr,'guid')) ? $arr['guid'] : random_string(). '.' . get_app()->get_hostname()); + $darray['app_sig'] = ((x($arr,'sig')) ? $arr['sig'] : ''); + $darray['app_author'] = ((x($arr,'author')) ? $arr['author'] : get_observer_hash()); + $darray['app_name'] = ((x($arr,'name')) ? escape_tags($arr['name']) : t('Unknown')); + $darray['app_desc'] = ((x($arr,'desc')) ? escape_tags($arr['desc']) : ''); + $darray['app_photo'] = ((x($arr,'photo')) ? $arr['photo'] : z_root() . '/' . get_default_profile_photo(80)); + $darray['app_version'] = ((x($arr,'version')) ? escape_tags($arr['version']) : ''); + $darray['app_addr'] = ((x($arr,'addr')) ? escape_tags($arr['addr']) : ''); + $darray['app_price'] = ((x($arr,'price')) ? escape_tags($arr['price']) : ''); + $darray['app_page'] = ((x($arr,'page')) ? escape_tags($arr['page']) : ''); $darray['app_requires'] = ((x($arr,'requires')) ? escape_tags($arr['requires']) : ''); $r = q("insert into app ( app_id, app_sig, app_author, app_name, app_desc, app_url, app_photo, app_version, app_channel, app_addr, app_price, app_page, app_requires ) values ( '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, '%s', '%s', '%s', '%s' )", @@ -322,9 +323,10 @@ function app_update($arr) { $darray = array(); $ret = array('success' => false); - $darray['app_url'] = ((x($arr,'url')) ? $arr['url'] : ''); + $darray['app_url'] = ((x($arr,'url')) ? $arr['url'] : ''); $darray['app_channel'] = ((x($arr,'uid')) ? $arr['uid'] : 0); - $darray['app_id'] = ((x($arr,'guid')) ? $arr['guid'] : 0); + $darray['app_id'] = ((x($arr,'guid')) ? $arr['guid'] : 0); + if((! $darray['app_url']) || (! $darray['app_channel']) || (! $darray['app_id'])) return $ret; @@ -333,15 +335,15 @@ function app_update($arr) { $arr['photo'] = $x[1]; } - $darray['app_sig'] = ((x($arr,'sig')) ? $arr['sig'] : ''); - $darray['app_author'] = ((x($arr,'author')) ? $arr['author'] : get_observer_hash()); - $darray['app_name'] = ((x($arr,'name')) ? escape_tags($arr['name']) : t('Unknown')); - $darray['app_desc'] = ((x($arr,'desc')) ? escape_tags($arr['desc']) : ''); - $darray['app_photo'] = ((x($arr,'photo')) ? $arr['photo'] : z_root() . '/' . get_default_profile_photo(80)); - $darray['app_version'] = ((x($arr,'version')) ? escape_tags($arr['version']) : ''); - $darray['app_addr'] = ((x($arr,'addr')) ? escape_tags($arr['addr']) : ''); - $darray['app_price'] = ((x($arr,'price')) ? escape_tags($arr['price']) : ''); - $darray['app_page'] = ((x($arr,'page')) ? escape_tags($arr['page']) : ''); + $darray['app_sig'] = ((x($arr,'sig')) ? $arr['sig'] : ''); + $darray['app_author'] = ((x($arr,'author')) ? $arr['author'] : get_observer_hash()); + $darray['app_name'] = ((x($arr,'name')) ? escape_tags($arr['name']) : t('Unknown')); + $darray['app_desc'] = ((x($arr,'desc')) ? escape_tags($arr['desc']) : ''); + $darray['app_photo'] = ((x($arr,'photo')) ? $arr['photo'] : z_root() . '/' . get_default_profile_photo(80)); + $darray['app_version'] = ((x($arr,'version')) ? escape_tags($arr['version']) : ''); + $darray['app_addr'] = ((x($arr,'addr')) ? escape_tags($arr['addr']) : ''); + $darray['app_price'] = ((x($arr,'price')) ? escape_tags($arr['price']) : ''); + $darray['app_page'] = ((x($arr,'page')) ? escape_tags($arr['page']) : ''); $darray['app_requires'] = ((x($arr,'requires')) ? escape_tags($arr['requires']) : ''); $r = q("update app set app_sig = '%s', app_author = '%s', app_name = '%s', app_desc = '%s', app_url = '%s', app_photo = '%s', app_version = '%s', app_addr = '%s', app_price = '%s', app_page = '%s', app_requires = '%s' where app_id = '%s' and app_channel = %d limit 1", diff --git a/include/reddav.php b/include/reddav.php index 0650531dd..3c2801e89 100644 --- a/include/reddav.php +++ b/include/reddav.php @@ -892,7 +892,7 @@ class RedBrowser extends DAV\Browser\Plugin { $html .= "

    Index for " . $this->escapeHTML($path) . "/

    - +
    "; diff --git a/version.inc b/version.inc index 179d2646e..eb11b4158 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-05-26.687 +2014-05-27.688 diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index eeec051b5..29b11c4d5 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1186,6 +1186,9 @@ brain is weird like that */ margin-bottom: 15px; } +#cloud-index td { + padding:5px; +} /** From eb58ef883441ea917da11606ed850fbfbaa43a9a Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 27 May 2014 18:10:11 -0700 Subject: [PATCH 142/147] added note about the chunked-encoding fiasco. --- doc/cloud_desktop_clients.bb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/cloud_desktop_clients.bb b/doc/cloud_desktop_clients.bb index b715678d9..557acb472 100644 --- a/doc/cloud_desktop_clients.bb +++ b/doc/cloud_desktop_clients.bb @@ -13,4 +13,9 @@ [li][zrl=[baseurl]/help/dav_nautilus]Nautilus[/zrl][/li] [li][zrl=[baseurl]/help/dav_nemo]Nemo[/zrl][/li] + +[b]Server Notes[/b] + +Note: There have been reported issues with clients that use "chunked transfer encoding", which includes Apple iOS services, and also the "AnyClient" and "CyberDuck" tools. These work fine for downloads, but uploads often end up with files of zero size. This is caused by an incorrect implemention of chunked encoding in some current FCGI (fast-cgi) implementations. Apache running with PHP as a module does not have these issues, but when running under FCGI you may need to use alternative clients or use the web uploader. At the time of this writing the issue has been open and no updates provided for at least a year. If you encounter zero size files with other clients, please check the client notes; as there are occasional configuration issues which can also produce these symptoms. + Return to the [zrl=[baseurl]/help/main]Main documentation page[/zrl] \ No newline at end of file From f6de9c09fb34ed9eba9210e08097e1aecfaa5dad Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 27 May 2014 21:21:38 -0700 Subject: [PATCH 143/147] logging: include target url when reporting z_fetch_url and z_post_url errors. --- include/network.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/network.php b/include/network.php index 9f68328b7..03faf9957 100644 --- a/include/network.php +++ b/include/network.php @@ -121,8 +121,8 @@ function z_fetch_url($url, $binary = false, $redirects = 0, $opts = array()) { if(! $ret['success']) { $ret['error'] = curl_error($ch); $ret['debug'] = $curl_info; - logger('z_fetch_url: error:' . $ret['error'], LOGGER_DEBUG); - logger('z_fetch_url: debug:' . print_r($curl_info,true), LOGGER_DATA); + logger('z_fetch_url: error: ' . $url . ': ' . $ret['error'], LOGGER_DEBUG); + logger('z_fetch_url: debug: ' . print_r($curl_info,true), LOGGER_DATA); } $ret['body'] = substr($s,strlen($header)); $ret['header'] = $header; @@ -229,8 +229,8 @@ function z_post_url($url,$params, $redirects = 0, $opts = array()) { if(! $ret['success']) { $ret['error'] = curl_error($ch); $ret['debug'] = $curl_info; - logger('z_post_url: error:' . $ret['error'], LOGGER_DEBUG); - logger('z_post_url: debug:' . print_r($curl_info,true), LOGGER_DATA); + logger('z_post_url: error: ' . $url . ': ' . $ret['error'], LOGGER_DEBUG); + logger('z_post_url: debug: ' . print_r($curl_info,true), LOGGER_DATA); } $ret['body'] = substr($s,strlen($header)); From 80c5b540c7d918f24d850992a5eea04aaf479a57 Mon Sep 17 00:00:00 2001 From: Alexandre Hannud Abdo Date: Wed, 28 May 2014 04:43:17 -0300 Subject: [PATCH 144/147] fix links to doco regarding translation --- doc/developers.bb | 2 +- doc/main.bb | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/developers.bb b/doc/developers.bb index 0855852d2..ae3d4aa90 100644 --- a/doc/developers.bb +++ b/doc/developers.bb @@ -21,7 +21,7 @@ to notify us to merge your work. Our translations are managed through Transifex. If you wish to help out translating the Red Matrix to another language, sign up on transifex.com, visit [url=https://www.transifex.com/projects/p/red-matrix/]https://www.transifex.com/projects/p/red-matrix/[/url] and request to join one of the existing language teams or create a new one. Notify one of the core developers when you have a translation update which requires merging, or ask about merging it yourself if you're comfortable with git and PHP. We have a string file called 'messages.po' which is gettext compliant and a handful of email templates, and from there we automatically generate the application's language files. -[zrl=https://friendicared.net/pages/doc/translations]Translations - More Info[/zrl] +[zrl=[baseurl]/help/Translations]Translations - More Info[/zrl] [b]Important[/b] diff --git a/doc/main.bb b/doc/main.bb index 634bb524c..1d44188a8 100644 --- a/doc/main.bb +++ b/doc/main.bb @@ -42,6 +42,7 @@ [zrl=[baseurl]/help/plugins]Plugins[/zrl] [zrl=[baseurl]/help/DerivedTheme1]Creating Derivative Themes[/zrl] [zrl=[baseurl]/help/schema_development]Schemas[/zrl] +[zrl=[baseurl]/help/Translations]Translations[/zrl] [zrl=[baseurl]/help/developers]Developers[/zrl] [zrl=[baseurl]/help/intro_for_developers]Intro for Developers[/zrl] [zrl=[baseurl]/help/api_functions]API functions[/zrl] From 30eb1b494a403acf0bcad461907ece77c707d574 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 28 May 2014 17:58:49 -0700 Subject: [PATCH 145/147] moods: simplify 'xyz is tired' rather than 'xyz is currently tired'. This is possible now that we have translation contexts, as before '$1 is $2' was ambiguous without a context - in this case 'mood'. --- include/conversation.php | 2 +- mod/mood.php | 9 +-------- version.inc | 2 +- 3 files changed, 3 insertions(+), 10 deletions(-) diff --git a/include/conversation.php b/include/conversation.php index 2d72f3489..21ce3bb66 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -255,7 +255,7 @@ function localize_item(&$item){ $A = '[zrl=' . chanlink_url($Alink) . ']' . $Aname . '[/zrl]'; - $txt = t('%1$s is currently %2$s'); + $txt = t('%1$s is %2$s','mood'); $item['body'] = sprintf($txt, $A, t($verb)); } diff --git a/mod/mood.php b/mod/mood.php index 5075f622d..5508fcb5a 100755 --- a/mod/mood.php +++ b/mod/mood.php @@ -60,7 +60,7 @@ function mood_init(&$a) { $mid = item_message_id(); - $action = sprintf( t('%1$s is currently %2$s'), '[zrl=' . $poster['xchan_url'] . ']' . $poster['xchan_name'] . '[/zrl]' , $verbs[$verb]); + $action = sprintf( t('%1$s is %2$s','mood'), '[zrl=' . $poster['xchan_url'] . ']' . $poster['xchan_name'] . '[/zrl]' , $verbs[$verb]); $item_flags = ITEM_WALL|ITEM_ORIGIN|ITEM_UNSEEN; if(! $parent_mid) $item_flags |= ITEM_THREAD_TOP; @@ -93,14 +93,7 @@ function mood_init(&$a) { $item_id = $post['item_id']; if($item_id) { -// q("UPDATE `item` SET `plink` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1", -// dbesc($a->get_baseurl() . '/display/' . $poster['nickname'] . '/' . $item_id), -// intval($uid), -// intval($item_id) -// ); - proc_run('php',"include/notifier.php","activity", $item_id); - } call_hooks('post_local_end', $arr); diff --git a/version.inc b/version.inc index eb11b4158..f0552de10 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-05-27.688 +2014-05-28.689 From 2a6d7b6a079a565afc0200fe160cb2402ed7c0a3 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 28 May 2014 21:42:46 -0700 Subject: [PATCH 146/147] cleanup dead directory entries. This was a real b#tch, so keep your eye out for issues - which you shouldn't see until next weekend when this is scheduled to run. We're only setting flags, so if anything goes wrong we should be able to recover without too much pain. --- boot.php | 1 + include/Contact.php | 84 +++++++++++++++++++++++++++++++++++---------- include/poller.php | 3 +- include/zot.php | 18 ++++++++++ mod/post.php | 22 ++++++++++++ 5 files changed, 109 insertions(+), 19 deletions(-) diff --git a/boot.php b/boot.php index 768b703e9..5b6cea8b2 100755 --- a/boot.php +++ b/boot.php @@ -383,6 +383,7 @@ define ( 'NOTIFY_SYSTEM', 0x8000 ); define ( 'HUBLOC_FLAGS_PRIMARY', 0x0001); define ( 'HUBLOC_FLAGS_UNVERIFIED', 0x0002); +define ( 'HUBLOC_FLAGS_ORPHANCHECK', 0x0004); define ( 'HUBLOC_FLAGS_DELETED', 0x1000); define ( 'XCHAN_FLAGS_NORMAL', 0x0000); diff --git a/include/Contact.php b/include/Contact.php index 0cd4be72c..6e12652a5 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -141,24 +141,6 @@ function abook_toggle_flag($abook,$flag) { } - - - - - - - - - - - - - - - - - - // Included here for completeness, but this is a very dangerous operation. // It is the caller's responsibility to confirm the requestor's intent and // authorisation to do this. @@ -305,6 +287,72 @@ function channel_remove($channel_id, $local = true) { } +/** + * mark any hubs "offline" that haven't been heard from in more than 30 days + * Allow them to redeem themselves if they come back later. + * Then go through all those that are newly marked and see if any other hubs + * are attached to the controlling xchan that are still alive. + * If not, they're dead (although they could come back some day). + */ + + +function mark_orphan_hubsxchans() { + + $r = q("update hubloc set hubloc_status = (hubloc_status | %d) where not (hubloc_status & %d) + and hubloc_connected < utc_timestamp() - interval 30 day", + intval(HUBLOC_OFFLINE), + intval(HUBLOC_OFFLINE) + ); + + $r = q("select hubloc_id, hubloc_hash from hubloc where (hubloc_status & %d) and not (hubloc_flags & %d)", + intval(HUBLOC_OFFLINE), + intval(HUBLOC_FLAGS_ORPHANCHECK) + ); + + if($r) { + foreach($r as $rr) { + + // see if any other hublocs are still alive for this channel + + $x = q("select * from hubloc where hubloc_hash = '%s' and not (hubloc_status & %d)", + dbesc($rr['hubloc_hash']), + intval(HUBLOC_OFFLINE) + ); + if($x) { + + // yes - if the xchan was marked as an orphan, undo it + + $y = q("update xchan set xchan_flags = (xchan_flags ^ %d) where (xchan_flags & %d) and xchan_hash = '%s' limit 1", + intval(XCHAN_FLAGS_ORPHAN), + intval(XCHAN_FLAGS_ORPHAN), + dbesc($rr['hubloc_hash']) + ); + + } + else { + + // nope - mark the xchan as an orphan + + $y = q("update xchan set xchan_flags = (xchan_flags | %d) where xchan_hash = '%s' limit 1", + intval(XCHAN_FLAGS_ORPHAN), + dbesc($rr['hubloc_hash']) + ); + } + + // mark that we've checked this entry so we don't need to do it again + + $y = q("update hubloc set hubloc_flags = (hubloc_flags | %d) where hubloc_id = %d limit 1", + intval(HUBLOC_FLAGS_ORPHANCHECK), + dbesc($rr['hubloc_id']) + ); + } + } + +} + + + + function remove_all_xchan_resources($xchan, $channel_id = 0) { if(intval($channel_id)) { diff --git a/include/poller.php b/include/poller.php index 9592c29e4..35844e666 100644 --- a/include/poller.php +++ b/include/poller.php @@ -118,10 +118,11 @@ function poller_run($argv, $argc){ require_once('include/hubloc.php'); prune_hub_reinstalls(); + require_once('include/Contact.php'); + mark_orphan_hubsxchans(); } - // expire any read notifications over a month old q("delete from notify where seen = 1 and date < UTC_TIMESTAMP() - INTERVAL 30 DAY"); diff --git a/include/zot.php b/include/zot.php index 869943a24..303f4f4a7 100644 --- a/include/zot.php +++ b/include/zot.php @@ -840,6 +840,24 @@ function import_xchan($arr,$ud_flags = UPDATE_FLAGS_UPDATED) { intval($r[0]['hubloc_id']) ); } + if($r[0]['hubloc_status'] & HUBLOC_OFFLINE) { + q("update hubloc set hubloc_status = (hubloc_status ^ %d) where hubloc_id = %d limit 1", + intval(HUBLOC_OFFLINE), + intval($r[0]['hubloc_id']) + ); + if($r[0]['hubloc_flags'] & HUBLOC_FLAGS_ORPHANCHECK) { + q("update hubloc set hubloc_flags = (hubloc_flags ^ %d) where hubloc_id = %d limit 1", + intval(HUBLOC_FLAGS_ORPHANCHECK), + intval($r[0]['hubloc_id']) + ); + } + q("update xchan set xchan_flags = (xchan_flags ^ %d) where (xchan_flags & %d) and xchan_hash = '%s' limit 1", + intval(XCHAN_FLAGS_ORPHAN), + intval(XCHAN_FLAGS_ORPHAN), + dbesc($xchan_hash) + ); + + } // Remove pure duplicates if(count($r) > 1) { diff --git a/mod/post.php b/mod/post.php index 1f817aa40..05053e798 100644 --- a/mod/post.php +++ b/mod/post.php @@ -646,6 +646,28 @@ function post_post(&$a) { intval($hub['hubloc_id']) ); + // a dead hub came back to life - reset any tombstones we might have + + if($hub['hubloc_status'] & HUBLOC_OFFLINE) { + q("update hubloc set hubloc_status = (hubloc_status ^ %d) where hubloc_id = %d limit 1", + intval(HUBLOC_OFFLINE), + intval($hub['hubloc_id']) + ); + if($r[0]['hubloc_flags'] & HUBLOC_FLAGS_ORPHANCHECK) { + q("update hubloc set hubloc_flags = (hubloc_flags ^ %d) where hubloc_id = %d limit 1", + intval(HUBLOC_FLAGS_ORPHANCHECK), + intval($hub['hubloc_id']) + ); + } + q("update xchan set xchan_flags = (xchan_flags ^ %d) where (xchan_flags & %d) and xchan_hash = '%s' limit 1", + intval(XCHAN_FLAGS_ORPHAN), + intval(XCHAN_FLAGS_ORPHAN), + dbesc($hub['hubloc_hash']) + ); + } + + + /** * This hub has now been proven to be valid. * Any hub with the same URL and a different sitekey cannot be valid. From 1a58777daa0ab9394f38737a806a7a185ebceeb0 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 29 May 2014 00:55:34 -0700 Subject: [PATCH 147/147] this is an important bit - only mark dead hubs on directory servers. They shouldn't matter anywhere else. --- include/Contact.php | 4 ++++ version.inc | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/include/Contact.php b/include/Contact.php index 6e12652a5..b4583c358 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -298,6 +298,10 @@ function channel_remove($channel_id, $local = true) { function mark_orphan_hubsxchans() { + $dirmode = intval(get_config('system','directory_mode')); + if($dirmode == DIRECTORY_MODE_NORMAL) + return; + $r = q("update hubloc set hubloc_status = (hubloc_status | %d) where not (hubloc_status & %d) and hubloc_connected < utc_timestamp() - interval 30 day", intval(HUBLOC_OFFLINE), diff --git a/version.inc b/version.inc index f0552de10..a14b886b0 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-05-28.689 +2014-05-29.690
    NameTypeSizeLast modified